.contact {
    margin-top: 120px;
    display: flex;
}

.contact-container {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    opacity: 0.8;
    background: rgb(232, 239, 255);
    background: linear-gradient(23deg, rgba(232, 239, 255, 1) 0%, rgba(233, 240, 254, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    width: 60%;
    height: 100%;
    padding: 60px;
    display: flex;
    gap: 50px;
    flex-direction: column;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-img {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 85px;
}

.contact-heading h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0em;
    color: #056DFA;
}

.form-group {
    width: 100%;
    display: flex;
    gap: 20px;
}

.form-group input {
    width: 50%;
    height: 52px;
    border-radius: 16px;
    border: 1px solid #056DFA80;
    padding: 0 25px;
}

.form-group input::placeholder {
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #13307E;
    opacity: 0.5;
}

.form-group textarea::placeholder {
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    color: #13307E;
    opacity: 0.5;
}

.form-group textarea {
    width: 100%;
    height: 110px;
    border-radius: 16px;
    border: 1px solid #056DFA80;
    padding: 20px 25px;
    resize: none;
}

.contact-img img {
    width: 100%;
    height: auto;
}

.form-group-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.form-group-button button {
    width: 325px;
    height: 52px;
    border-radius: 16px;
    background-color: #056DFA;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    border: 1px solid transparent;
    transition: .3s;
    cursor: pointer;

}

.form-group-button button:hover{
    background-color: #13307E;
    border: 1px solid #13307E;
    color: #FFFFFF;
    transition: .3s;
}