/* form section start */
.contact-us {
    background-image: url(../img/contact/contact-banner-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 60px;
}
section.contact-us h1 {
    font-weight: 700;
}
.contact-us .heading.section-one-heading {
    padding-top: 120px;
    text-align: center;
}

.contact-us .contact-details-main {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
}

.contact-us .contact-details-main h2 {
    font-size: 38px;
    font-weight: 700;
}

.contact-us .contact-details-main .contact-list {
    align-items: center;
    border-radius: 12px;
    background: linear-gradient(90deg,
            rgba(230, 240, 255, 0.05) 0%,
            rgba(138, 144, 153, 0) 100%);
}

.contact-us .contact-list-images figure {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 0.95px solid #ffffff27;
    border-radius: 15px;
    position: relative;
    box-shadow:
        inset 20px -17px 60px -12px #7d7d7d05,
        inset -19px 20px 36px -18px #69696947;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us .contact-list-images figure img {
    width: 30px;
    height: 30px;
}

.contact-us .contact-list-images figure:before {
    content: "";
    pointer-events: none;
    background: linear-gradient(16deg, #fff0 0%, #ffffff59 10%, #fff0 100%);
    border-radius: 15px;
    padding: 1px;
    position: absolute;
    inset: 0;
    -webkit-mask-image:
        linear-gradient(#000, #000), linear-gradient(#000, #000);
    -webkit-mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
    -webkit-mask-source-type: auto, auto;
}

.contact-us .contact-list-text p {
    color: #ffffffbf;
    font-size: 18px;
    font-weight: 400;
    padding: 0;
}

.contact-us .contact-list-text a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.contact-us .contact-us-part-right.contact-us-part-right-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 22px;
}

.contact-us .form-group label {
    color: rgba(18, 18, 18, 0.45);
    font-size: 16px;
    font-weight: 500;
}

.contact-us .form-group input,
.contact-us ul#social_select,
.contact-us textarea.form-control {
    border-radius: 10px;
    border: 1.59px solid rgb(197 198 204 / 53%);
    background: rgb(230 230 230);
    color: #000 !important;
    font-size: 16px !important;
}

@media (max-width: 991.98px) {
    .contact-us .row {
        flex-direction: column-reverse;
        gap: 30px;
    }
}

/* form section end */

/* map section start */
.contact-us-map {
    padding: 100px 0;
    background: url(../img/contact/map.webp);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-us-map:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    z-index: -1;
}

section.contact-us-map header.heading {
    max-width: 1000px;
    margin: 0 auto;
}

/* map section end */

/* reach-section start */
section.reach-section {
    padding: 60px 0;
    text-align: center;
}

section.reach-section .contact-list-text {
    max-width: none;
    padding: 30px 15px 20px 15px;
}

/* section.reach-section .contact-list-text p span {
    font-size: 20px;
    font-weight: 500;
} */

section.reach-section .contact-list-text p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 10px;
}

section.reach-section .contact-list-text a {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.reach-section-content {
    border-radius: 24px;
    border: 1px solid rgba(102, 102, 102, 0.1);
    background: linear-gradient(0deg, rgba(11, 11, 11, 0) 0%, #040409 100%);
    padding: 10px;
    text-align: center;
    position: relative;
    flex: 1;
}

.reach-section-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 44px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .85), transparent);
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
    transition: opacity .45s ease, transform .65s cubic-bezier(.22, .61, .36, 1);
    pointer-events: none;
}

.reach-section-content:hover::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.reach-section-icon {
    padding: 12px
}

.reach-section-icon,
section.reach-section .contact-list-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;

}

section.reach-section .contact-list-flex:after {
    content: "";
    position: absolute;
    height: 100px;
    width: 2px;
    background: radial-gradient(ellipse at center, #6B7079 -8.34%, #A7ADB9 11.21%, #c6ccd62e 37.77%, #dce1eb00 45.65%, #c0c5d000 54.31%, #a7adb900 74.91%, #888D96 95.91%);
    z-index: -1;

}

.reach-section-icon figure {
    width: 185px;
}

@media (max-width: 991px) {

    .reach-section-icon,
    section.reach-section .contact-list-flex {
        flex-direction: column;
    }

    section.reach-section .row {
        gap: 20px;
    }
}

/* reach-section end */