.contact {
    padding: 320px 0 240px;
    background: linear-gradient(90deg, #1D2554 13.46%, #305CDE 100%);
}

.contact_hero {
    max-width: 496px;
}

.contact_hero h1 {
    font-size: 55px;
    font-weight: 400;
    line-height: 76px;
    color: white;
}

.contact_hero p {
    font-size: 18px;
    color: white;
}

.contact_content {
    padding: 60px 0 120px;
    background: #E9E9E9;
}

.contact_content_title_text h2 {
    color: #02388F;
    text-align: center;
    font-family: Montserrat;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}

.contact_box_container .col-md-6{
    margin-bottom: 40px;
}
.contact_box {
    border-radius: 20px;
    background: #020C47;
    min-height: 250px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact_box h3 {
    color: #FFF;
    font-size: 30px;
}

.contact_box p {
    color: #FFF;
    line-height: normal;
    font-weight: 300;
}

.contact_box p a {
    color: #FFF;
    font-weight: 400;
}

.contact_box_content {
    display: flex;
    align-items: center;
}

.contact_box_content div {
    margin-right: 20px;
}

.contact_box_content span {
    font-size: 14px;
}

.contact_form_content_container {
    border-radius: 20px;
    border: 2px solid #039;
    padding: 40px 30px;
    background: #FFF;
    display: flex;
    gap: 30px;
}

.contact_form_content_text {
    display: flex;
    align-items: center;
}

.contact_form_content_text svg {
    margin-right: 20px;
}
.contact_form_content_container h2{
    color: #039;

font-family: Montserrat;
font-size: 30px;
font-weight: 400;
line-height: normal;
}
.contact_form,
.contact_form_content {
    width: 50%;
}

.contact_form {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.contact_form_content_input {
    display: flex;
    gap: 20px;
}

.contact_form input,
.contact_form textarea {
    border-radius: 10px;
    border-radius: 6px;
    border: 1.5px solid #039;
    padding: 10px 20px;
    width: 100%;

}
.contact_form_content_input .name-field,
.contact_form_content_input .phone-field{
    width: 50%;
}
.contact_form_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact_form textarea {
    height: 150px;
}

.contact_form_content_button button {
    border-radius: 5px;
    background: #039;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}
.contact_form_content_container{
    margin-top: 60px;
}
.contact_form input::placeholder,
.contact_form textarea::placeholder {
    opacity: 0.3;
}


@media screen and (max-width: 991px) {
    .contact_form_content_container {
        flex-direction: column;
    }
    .contact_form, .contact_form_content {
        width: 100%;
    }
    .contact_form_content h2{
        margin-bottom: 30px;
    }
    .contact {
        padding: 150px 0 100px;
    }
    
}

@media screen and (max-width: 767px) {
    .contact_form_content_input{
        flex-direction: column;
    }
    .contact_form_content_text{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
     .contact_form_content_input .name-field,
     .contact_form_content_input .phone-field{
         width: 100%;
     }
}
@media screen and (max-width: 575px) {
    .contact {
        padding: 128px 0 75px;
    }
  
    .contact_form_content_button button{
        width: 100%;
    }
    .contact_form_content_container{
        margin: 0px;
    }
    .contact_box_container .col-md-6 {
        margin-bottom: 30px;
    }
  
    .contact_hero h1{
        font-size: 30px;
        margin-bottom: 20px;
        line-height: normal;
    }
    .contact_content_title_text h2{
        font-size: 30px;
        margin-bottom: 40px;
        line-height: normal;
    }
    .contact_hero p{
        font-size: 16px;
    }
    .contact_box_content{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .contact_box_content div{
        margin-right: 0px;
    }
    .contact_box_content p{
        font-size: 14px;
    }
}