section#contact-us-form {
    position: relative;
}
.contact-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-us-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}
.contact-detail-item {
    background: var(--third);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100%;
}
.contact-detail-item p, .contact-detail-item a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.contact-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}
.contact-detail-item h4 {
    color: var(--secondary);
    font-weight: 600;
}
section.contact-details > div > div:nth-child(2) {
    margin-bottom: 70px;
}
iframe{
    border-radius: 20px;
}
section#contact-us-faqs {
    background: var(--third);
}
.faq-item:not(:last-child) {
    border-bottom: 2px solid var(--primary);
    margin-bottom: 30px;
}
.faq-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
}
.form input, .form textarea {
    border: none !important;
    background: #EFF2F6 !important;
    border-radius: 10px !important;
    resize: none !important;
    color: var(--primary);
}
.form input::placeholder, .form textarea::placeholder {
    color: var(--primary) !important;
    font-weight: 500;
}
button#wpforms-submit-83 {
    width: 100%;
    background: #3087C0;
    border-radius: 10px;
    border: 1px solid #3087C0;
}
button#wpforms-submit-83:hover {
    color: #3087C0;
    background: transparent;
}
div.overlay{
    background: #0009;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
@media only screen and (max-width: 991.5px){
    section#contact-us-form > div > div:first-child {
        position: relative;
        z-index: 1;
    }
    div.overlay{
        display: block;
    }
    h1{
        color: #fff;
        text-align: center;
    }
    .contact-us-img {
        width: 100% ;
    }
}
@media only screen and (max-width: 767.5px){
    section.contact-details .row:nth-child(2) {
        gap: 30px;
    }
    .location-details {
        margin-bottom: 30px;
    }
    .location-details div {
        display: flex;
        justify-content: center;
    }
    .location-details * {
        text-align: center;
    }
    section#contact-us-faqs h2 {
        text-align: center;
    }
    
}