.contact{
    /* margin-top: 5vh !important; */
    width: 100%;
    color: white;
    border-top-right-radius: 100px;
}
.contact div{
    border-top-right-radius: 100px;
}
.contact__map{
    max-width: 100% !important;
    width: 100%;
    height: 35vh;
    margin-bottom: -2.5vh !important;

}
.contact__image{
    display: none;
}
.contact__form{
    width: 100%;
    padding: 20px 6vw;
    border-top-right-radius: 100px;
}
.contact__form .title{
    align-items: center;
    display: flex;
    gap:15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact__form input[type="text"],
.contact__form input[type="tel"], 
.contact__form input[type="email"], 
.contact__form textarea{
    background-color: #163A59;
    border: none;
    border-bottom: 1px solid #fff;
    font-size: var(--wp--preset--font-size--p-3);
    font-family: var(--wp--present--font-family--poppins);
    width: 80%;
    color: white;
}
.contact__form textarea{
    height: 100px;
}
.contact__form input[type="text"]:focus,
.contact__form input[type="tel"]:focus, 
.contact__form input[type="email"]:focus, 
.contact__form textarea:focus{
    border: none; /* Remove all borders on focus */
    outline: none; /* Remove the default outline */
    border-bottom: 2px solid #fff;
}
.contact__form input[type="submit"]{
    background-color: transparent;
    color: white;
    border: 1px solid #ffffff4F;
    padding: 6px 32px;
    font-size: 18px;
    font-family: var(--wp--present--font-family--poppins);
    cursor: pointer;
    margin-top: 24px;
    border-radius: 25px;
    width: 100%;
    transition: all 0.4s;
    margin-bottom: 5vh !important;
}
.contact__form input[type="submit"]:hover{
    background-color: white;
    color: #163A59;
}

.contact__form--green {
    background-color: #558b38 !important;

    input,
    textarea {
        background-color: #558b38 !important;
    }
}

@media only screen and (min-width: 1200px) {
    .contact{
        width: 100vw;
        color: white;
    }

    .contact__image{
        margin: 0 !important;
        display: flex;
        width: 50%;
        background-image: url('../../../images/contact.jpg'); /* Adjust the path as needed */
        /* height: 100vh; */
    }

    .contact__form{
        width: 50%;
        padding: 4vh 6vw;
    }

    .contact__form input[type="submit"]{
        width: 240px;
        
    }

    .contact__map{
        height: 60vh;
    
    }
    
    .contact__form .title{
        
        margin-left: -30px;
    }
}

@media only screen and (min-width: 1800px) {
    .adv {
        padding-bottom: 96px;
    }

    .adv__list {
        padding-bottom: 64px;
    }

    .adv__li {
        padding: 24px;
        border-radius: 28px;
    }

    .adv__li-summary > div {
        gap: 24px;
    }

    .adv__li-content > p {
       font-size: 18px !important;
       margin-top: 24px !important;
    }


}