/* Opacity Animation  */
.heroBreadcrumbWrapper .breadcrumbs,
.heroBreadcrumbWrapper .title {
    opacity: 0;
    will-change: opacity;
}

/* Transform and Opacity Animation  */
.contacUsImageSection .imageBox,
.contactUsKeepInTochFormSection .contactBoxInfo,
.contactUsKeepInTochFormSection .contactForm,
.mapSection .map .mapBox,
.mapSection .infoBox {
    opacity: 0;
    transform: translateY(100px);
    will-change: transform, opacity;
}


.contacUsImageSection {
    margin-top: 200px;
}

.contacUsImageSection .imageBox {
    width: 100%;
    height: 500px;
}

.contacUsImageSection .imageBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contactUsKeepInTochFormSection {
    padding-top: 110px;
    padding-bottom: 100px;
}

.contactUsKeepInTochFormSection .contactBox {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.contactUsKeepInTochFormSection .contactBoxInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: .4 0 0px;
}

.contactUsKeepInTochFormSection .contactBoxInfo .title {
    font-family: "Helvetica", sans-serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 65px;
    color: #fcfcfc;
    margin: 0;
}

.contactUsKeepInTochFormSection .contactBoxInfo .description {
    font-family: "Helvetica", sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #858585;
}

.contactUsKeepInTochFormSection .contactForm {
    flex: .5 0 0px;
    transform: translateY(-100px);
}

.contactUsKeepInTochFormSection .contactForm #contact_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contactUsKeepInTochFormSection .contactForm #contact_form .inputRow {
    gap: 15px;
    display: flex;
}

.contactUsKeepInTochFormSection .contactForm #contact_form textarea,
.contactUsKeepInTochFormSection .contactForm #contact_form .inputRow input {
    background-color: #4f4f4f;
    padding: 15px;
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4rem;
    border: none;
    outline: none;
    color: #fcfcfc;
    border-radius: 0 !important;
}

.contactUsKeepInTochFormSection .contactForm #contact_form .textarea::placeholder,
.contactUsKeepInTochFormSection .contactForm #contact_form .inputRow input::placeholder {
    color: #fcfcfc;
}

.contactUsKeepInTochFormSection .contactForm #contact_form .inputRow input {
    flex: 1;
    width: 100%;
}

.contactUsKeepInTochFormSection .contactForm #contact_form textarea {
    height: 155px;
    width: 100%;
}

.contactUsKeepInTochFormSection .contactForm #contact_form .link {
    font-family: "Inter";
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #222;
    padding: 15px;
    background-color: #fcfcfc;
    border: none;
    border-radius: 0 !important;
}

.mapSection {
    width: 100%;
    height: auto;
    padding-top: 120px;
    padding-bottom: 100px;
}

.mapSection .map {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.mapSection .map .mapBox {
    flex: .9 0 0px;
    transform: translateY(-100px);
}

.mapSection .map .mapBox iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.mapSection .infoBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.mapSection .infoBox .contactItem {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mapSection .infoBox .contactItem .topRow {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mapSection .infoBox .contactItem .topRow .number {
    font-family: "inter";
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #858585;
}

.mapSection .infoBox .contactItem .topRow .titleLink {
    font-family: "Helvetica";
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    text-decoration: none;
    color: #222222;
    transition: 0.1s;
    margin: 0;
}

.mapSection .infoBox .contactItem .link:hover,
.mapSection .infoBox .contactItem .topRow .titleLink:hover {
    text-decoration: underline;
}

.mapSection .infoBox .contactItem .link {
    margin-left: 40px;
    font-family: "Inter";
    font-size: 16px;
    line-height: 20px;
    color: #222222;
    text-decoration: none;
    transition: 0.1s;
}

@media (max-width: 768px) {

    .contacUsImageSection {
        margin-top: 60px;
    }

    .contactUsKeepInTochFormSection .contactBox {
        flex-direction: column;
    }

    .mapSection {
        padding-top: 60px;
        padding-bottom: 0;
    }

    .mapSection .infoBox {
        display: flex;
        align-items: flex-start;
    }

    .mapSection .map {
        gap: 40px !important;
    }

    .contactUsKeepInTochFormSection .contactForm {
        flex: 1;
    }

    .contactUsKeepInTochFormSection {
        padding-block: 60px;
    }

    .contactUsKeepInTochFormSection .contactBoxInfo .title {
        font-size: 40px;
        line-height: 50px;
    }

    .contactUsKeepInTochFormSection .contactBoxInfo {
        gap: 60px;
    }

    .contactUsKeepInTochFormSection .contactBox {
        gap: 40px;
    }

    .mapSection .map .mapBox {
        flex: 1 1 100%;
        max-width: 100%;
    }
}