.loader {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary-blue);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.download__btn .loader {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.download__btn:hover .loader {
    border-color: var(--color-primary-blue);
    border-bottom-color: transparent;
}

.show-custom {
    display: block !important;
}

.hidden-custom {
    display: none !important;
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-scrollbar,
html {
    max-width: 100%;
    overflow-x: hidden;
}

section.download,
.contact-form {
    scroll-margin-top: 130px;
}

/* Banner */
.banner {
    position: relative;
    width: 100%;
    height: 463px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    transform: scale(2.5) translateY(-10%);
    transform-origin: top center;
    object-fit: cover;
}

.banner img,
.banner .text {
    position: absolute;
}

.building8 {
    bottom: 23%;
    width: 154px;
    height: 257px;
    z-index: 1;
    object-fit: contain;
}

.text {
    bottom: 56%;
    margin-left: 40px;
    font-family: var(--font-family);
    font-size: var(--font-h2-size);
    font-weight: var(--font-h2-weight);
    line-height: var(--font-h2-line-height);
    color: white;
    max-width: 400px;
}

/* Location */
.location {
    margin-top: 40px;
}

.location__heading {
    font-family: var(--font-family);
    font-weight: var(--font-number-weight);
    font-size: var(--font-h4-size);
    color: var(--color-primary-blue);
    line-height: var(--font-h4-line-height);
    margin-bottom: 30px;
}

.location__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 0;
    padding: 0;
    overflow-x: visible;
}

.location__nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    justify-content: center;
}

.location__nav-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.location__content {
    max-width: none;
    display: flex;
    flex-direction: column;
}

.location__item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.location__image {
    min-width: 358px;
    height: 252px;
    margin-bottom: 24px;
    overflow: hidden;
}

    .location__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.location__title {
    font-family: var(--font-family);
    font-weight: var(--font-h3-weight);
    line-height: var(--font-h3-line-height);
    color: var(--color-primary-blue);
    margin-bottom: 24px;
    font-size: var(--font-h3-size);
}

.location__description {
    display: flex;
    flex-direction: column;
}

.location__address,
.location__phone {
    font-size: var(--font-body-md-size);
    font-family: var(--font-family);
    font-weight: var(--font-body-md-weight);
    color: var(--color-primary-blue);
    line-height: var(--font-h4-line-height);
}

.location__description p:first-of-type {
    margin-bottom: 24px;
}

/* Contact Form */
.contact-form {
    margin-top: 40px;
    background: #fff;
}

.contact-form__container {
    max-width: 1440px;
    margin: 0 auto;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 24px;
}

.contact-form__heading {
    font-family: var(--font-family);
    font-weight: var(--font-h4-weight);
    line-height: var(--font-h4-line-height);
    font-size: var(--font-h4-size);
    color: var(--color-primary-blue);
    padding-bottom: 6px;
}

.contact-form__left {
    background: #f6f9ff;
    padding: 30px 20px;
}

.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 33.6px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__label {
    font-family: var(--font-family);
    font-weight: var(--font-body-sm-weight);
    font-size: var(--font-body-sm-size);
    line-height: var(--font-body-sm-line-height);
    color: var(--color-primary-blue);
    margin-bottom: 7px;
}

.contact-form__input,
.contact-form__textarea {
    padding: 12px 14px;
    border: 1px solid #0047ba40;
    font-family: var(--font-family);
    font-size: var(--font-h5-size);
    line-height: var(--font-body-lg-line-height);
    font-weight: var(--font-body-sm-weight);
    color: var(--color-bg-primary);
    background: #fff;
    transition: border-color 0.3s ease;
}

    .contact-form__input:focus,
    .contact-form__textarea:focus {
        outline: none;
        border-color: var(--color-primary-blue);
    }

.contact-form__textarea {
    resize: vertical;
    height: 86px;
}

.contact-form__captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .contact-form__captcha-box input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 28px;
        height: 28px;
        border: 2px solid #c1c1c1;
        border-radius: 3px;
        background: #fff;
        position: relative;
        outline: none;
        cursor: pointer;
    }

    .contact-form__captcha-box.loading input[type="checkbox"]::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 18px;
        height: 18px;
        margin: -9px 0 0 -9px;
        border: 2px solid #8aa3d1;
        border-top-color: transparent;
        border-radius: 50%;
        animation: captcha-spin 0.9s linear infinite;
    }

/*flag country*/
.iti {
    width: 100%;
    font-family: var(--font-family);
    color: var(--color-bg-primary);
}

.iti__selected-flag {
    background-color: var(--color-bg-white) !important;
    padding: 0 10px;
}

.iti__arrow--up {
    border-top: none !important;
    border-bottom: 4px solid var(--color-bg-primary) !important;
}

.iti__arrow {
    border-top: 4px solid var(--color-bg-primary) !important;
    border-bottom: none !important;
}

.iti__country-list {
    width: 318px;
    box-sizing: border-box;
}

.iti__country-container {
    width: 100%;
}

.iti__selected-dial-code {
    font-size: var(--font-body-sm-size);
}



@keyframes captcha-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-form__captcha-box.success input[type="checkbox"] {
    border-color: #34a853;
    background: #34a853;
}

    .contact-form__captcha-box.success input[type="checkbox"]::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 12px;
        margin: -7px 0 0 -8px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center/contain;
    }

.contact-form__captcha-box .contact-form__captcha-label {
    user-select: none;
    cursor: pointer;
}

.contact-form__captcha-box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary-blue);
}

.contact-form__captcha-label {
    font-family: var(--font-family);
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.contact-form__captcha-logo {
    font-weight: bold;
    color: var(--color-primary-blue);
}

.contact-form__captcha-link {
    color: var(--color-primary-blue);
    text-decoration: none;
}

    .contact-form__captcha-link:hover {
        text-decoration: underline;
    }

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--color-bg-primary);
    color: var(--color-bg-primary);
    padding: 16px 24px;
    font-family: var(--font-family);
    font-size: var(--font-button-size);
    line-height: var(--font-button-line-height);
    font-weight: var(--font-button-weight);
    text-transform: uppercase;
    cursor: pointer;
    gap: 12px;
    transition: all 0.3s ease;
    align-self: flex-start;
    width: fit-content;
}

    .contact-form__submit img {
        width: 28px;
        height: 28px;
        transition: filter 0.3s ease;
    }

    .contact-form__submit:hover {
        background: var(--color-primary-blue);
        color: var(--color-bg-white);
    }

        .contact-form__submit:hover img {
            filter: brightness(0) invert(1);
        }

    .contact-form__submit:disabled {
        border: 1px solid var(--color-disabled-blue);
        color: var(--color-disabled-blue);
        cursor: not-allowed;
        background: transparent;
    }

        .contact-form__submit:disabled:hover {
            background: transparent;
            color: var(--color-disabled-blue);
        }

        .contact-form__submit:disabled img {
            filter: none;
        }

.contact-form__right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contact-form__image {
    width: 0;
    height: 0;
    overflow: hidden;
}

    .contact-form__image picture,
    .contact-form__image img {
        display: none;
    }

.contact-form__success {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-cyan);
    font-family: var(--font-family);
    font-size: var(--font-body-sm-size);
}

    .contact-form__success.show {
        display: inline-flex;
    }

.contact-form__success-icon {
    width: 24px;
    height: 24px;
}

.contact-form__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    /* margin-top: 8px; */
    flex-wrap: wrap;
}

.contact-form__label-container {
    display: flex;
    flex-direction: row;
}

.contact-form__field.has-error .contact-form__label {
    color: var(--color-primary-red);
    display: flex;
    align-items: center;
}

.contact-form__field.has-error .contact-form__input,
.contact-form__field.has-error .contact-form__textarea {
    border-color: #EC1E24;
    background: #ec1e2414;
    color: var(--color-primary-red);
}

/* .contact-form__field.has-error .contact-form__label::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: url("../../img/icon/alert-circle.svg") no-repeat center/contain;
} */

.contact-form__field .contact-form__error {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    display: none;
}

.contact-form__field.has-error .contact-form__error {
    display: block;
}

.contact-form__error-text {
    display: none;
    font-family: var(--font-family);
    margin-top: 4px;
    font-size: 13px;
    color: var(--color-primary-red);
}

.contact-form__field.has-error .contact-form__error-text {
    display: block;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.download {
    margin: 40px 0 60px;
}

.download__container {
    max-width: 1440px;
    margin: 0 auto;
}

.download__content {
    position: relative;
    /* background: url("../../img/banner/banner-download.jpg") center/cover no-repeat; */
    max-height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 33px 16px;
    overflow-x: clip;
}

.download__content-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 0;
}

.download__content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-stroke-blue);
}

.download__info {
    padding-top: 12px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.download__title {
    font-family: var(--font-family);
    font-weight: var(--font-h3-weight);
    font-size: var(--font-h3-size);
    line-height: var(--font-h3-line-height);
    margin-bottom: 24px;
    max-width: 238px;
}

.download__desc {
    font-family: var(--font-family);
    font-size: var(--font-body-md-size);
    line-height: var(--font-body-md-line-height);
    margin-bottom: 36px;
    max-width: 324px;
    font-weight: var(--font-body-sm-weight);
}

.download__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 29px;
    margin-left: 0;
}

.download__row {
    display: grid;
    grid-template-columns: 1fr;
    /* gap: 29px; */
    gap: 29.51px;
}

.download__label {
    font-family: var(--font-family);
    font-weight: var(--font-body-sm-weight);
    font-size: var(--font-body-sm-size);
    line-height: var(--font-body-sm-line-height);
    color: #fff;
}

.download__field {
    display: flex;
    flex-direction: column;
}

.download__input {
    margin-top: 7px;
    /* width: 100%; */
    width: 97.5%;
    /* padding: 14px 16px; */
    padding: 15px 0px 16px 16px;
    background: #fff;
    border: 1px solid #0047ba40;
    color: var(--color-primary-blue);
    font-size: var(--font-body-sm-size);
    font-family: var(--font-family);
    font-weight: var(--font-body-sm-weight);
    line-height: var(--font-body-lg-line-height);
}

.download__field.has-error .download__input {
    border: 1px solid #ec1e2414;
}

.download__field.has-error .download__label {
    color: var(--color-primary-red);
}



.download-form__input:focus,
.download-form__textarea:focus {
    outline: none;
    border-color: var(--color-primary-blue);
}

.download-form__textarea {
    resize: vertical;
    height: 86px;
}

.download__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    /* padding: 14px 18px; */
    padding: 16px 24px;
    cursor: pointer;
    align-self: flex-start;
    text-align: center;
    text-transform: uppercase;
    transition: ease 0.5s all;
}

.download__btn-text {
    font-family: var(--font-family);
    font-weight: var(--font-button-weight);
    font-size: var(--font-button-size);
    line-height: var(--font-button-line-height);
}

.download__btn:hover {
    background: #fff;
    color: var(--color-primary-blue);
}

.download__btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.download__btn:hover img {
    filter: none;
}

.download__error-text {
    display: none;
    font-family: var(--font-family);
    margin-top: 4px;
    font-size: 13px;
    color: var(--color-primary-red);
}

.download__field.has-error .download__error-text {
    display: block;
}


.toast-container {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
}

.toast {
    width: 100vw;
    min-height: 52px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: 52px 1fr 36px;
    align-items: center;
    overflow: hidden;
    animation: toast-slide-in 300ms ease-out;
}

    .toast.closing {
        animation: toast-slide-out 250ms ease forwards;
    }

.toast__icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .toast__icon svg {
        width: 22px;
        height: 22px;
    }

.toast__msg {
    padding: 0 16px;
    color: var(--color-primary-blue);
    font-family: var(--font-family);
    font-size: var(--font-body-sm-size);
}

.toast__close {
    background: none;
    border: none;
    cursor: pointer;
    padding-right: 10px;
    color: var(--color-primary-blue);
}

    .toast__close svg {
        width: 18px;
        height: 18px;
    }

.toast__close--success {
    color: var(--color-primary-blue);
    position: relative;
}

    .toast__close--success img {
        display: none;
    }

    .toast__close--success::after {
        content: "×";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        font-weight: bold;
        color: var(--color-primary-blue);
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.toast__close--error {
    color: #ff4d4d;
    position: relative;
}

    .toast__close--error img {
        display: none;
    }

    .toast__close--error::after {
        content: "×";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        font-weight: bold;
        color: #ff4d4d;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.toast__close--warning {
    color: #16c1b7;
    position: relative;
}

    .toast__close--warning img {
        display: none;
    }

    .toast__close--warning::after {
        content: "×";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        font-weight: bold;
        color: #16c1b7;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.toast--success {
    border-color: var(--color-primary-blue);
}

    .toast--success .toast__icon {
        background: var(--color-primary-blue);
        color: #fff;
    }

.toast--error {
    border-color: #ff6b6b;
}

    .toast--error .toast__icon {
        background: #ff4d4d;
        color: #fff;
    }

    .toast--error .toast__msg {
        color: #d7263d;
    }

.toast--warning {
    border-color: #16c1b7;
}

    .toast--warning .toast__icon {
        background: #16c1b7;
        color: #fff;
    }

    .toast--warning .toast__msg {
        color: #0aa89f;
    }

@keyframes toast-slide-in {
    from {
        transform: translateY(-16px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes toast-slide-out {
    to {
        transform: translateY(-16px);
        opacity: 0;
    }
}

.contact-form__captcha {
    overflow: hidden;
    max-width: 100%;
    padding-right: 0;
}

    .contact-form__captcha .g-recaptcha {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform-origin: 0 0;
        max-width: 100%;
        width: 304px;
    }

.location__list.location-swiper {
    position: relative;
    overflow: hidden;
}

.location__list .swiper-wrapper {
    display: flex;
}

.location__list .swiper-slide {
    width: 100% !important;
    padding-bottom: 32px;
}

.location-swiper__nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.location-swiper__prev,
.location-swiper__next {
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

    .location-swiper__prev::after,
    .location-swiper__next::after {
        display: none;
    }

/* .location-swiper__prev {
  background-image: url("../../img/icon/arrow-up-left.svg");
}

.location-swiper__next {
  background-image: url("../../img/icon/arrow-up-right.svg");
} */

@media only screen and (min-width: 768px) and (max-width: 1279px) {
    /* Banner */

    .text {
        bottom: 53%;
        margin-left: 40px;
        font-family: var(--font-family);
        font-size: var(--font-h2-size);
        font-weight: var(--font-h2-weight);
        line-height: var(--font-h2-line-height);
        color: white;
        max-width: 317px;
    }

    .location {
        margin-top: 60px;
    }

    .location__heading {
        font-size: 22px;
        line-height: 100%;
        margin-bottom: 40px;
    }

    .location__nav {
        display: none;
    }

    .location__image {
        height: 300px;
        margin-bottom: 40px;
        min-width: unset;
    }

    .location__title {
        font-size: var(--font-h2-size);
        line-height: var(--font-h2-line-height);
        margin-bottom: 24px;
    }

    .location__description {
        margin-bottom: 0;
    }

    /* Contact Form */
    .contact-form {
        margin-top: 60px;
    }

    .contact-form__heading {
        font-size: 22px;
    }

    .contact-form__grid {
        margin-top: 40px;
    }

    .contact-form__left {
        padding: 60px 30px;
        width: auto;
    }

    .contact-form__row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .contact-form__input,
    .contact-form__textarea {
        padding: 15px 16px;
        font-size: 16px;
    }

    .contact-form__actions {
        flex-wrap: nowrap;
    }

    .contact-form__image {
        width: unset;
        height: unset;
    }

        .contact-form__image picture,
        .contact-form__image img {
            display: none;
        }

    .contact-form__right {
        height: auto;
    }

    .iti__country-list {
        width: 336px;
        box-sizing: border-box;
    }

    .download {
        margin: 64px 0 60px;
    }

    .download__content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 60px 24px;
        max-height: 552px;
        overflow-x: visible;
    }

    .download__title {
        max-width: none;
    }

    .download__desc {
        font-size: 16px;
        line-height: normal;
        max-width: 536px;
    }

    .download__form {
        margin-left: 0;
    }

    .download__input {
        padding: 15px;
        font-size: var(--font-body-sm-size);
    }

    .download__btn {
        padding: 19px 24px;
        font-size: var(--font-button-size);
    }

    .toast {
        width: 390px;
    }

    .container {
        overflow-x: visible;
    }

    .contact-form__captcha {
        overflow: visible;
        max-width: none;
        padding-right: 0;
    }

        .contact-form__captcha .g-recaptcha {
            transform: none;
            -webkit-transform: none;
            transform-origin: initial;
            max-width: none;
            width: auto;
        }
}

@media only screen and (min-width: 1280px) {
    .banner {
        position: relative;
        width: 100%;
        height: 610px;
        overflow: hidden;
    }

        .banner img,
        .banner .text {
            position: absolute;
        }

    .banner-img {
        width: 100%;
        height: 100%;
        transform: unset;
        object-fit: cover;
        transform-origin: unset;
        object-position: 50% 17%;
    }

    .building8 {
        bottom: 6%;
        width: 244px;
        height: 375px;
        z-index: 1;
    }

    .text {
        bottom: 40%;
        margin-left: 45px;
        font-family: var(--font-family);
        font-size: var(--font-h1-size);
        font-weight: var(--font-h1-weight);
        line-height: var(--font-h1-line-height);
        color: var(--color-bg-white);
        max-width: 497px;
    }

    .location {
        margin-top: 60px;
    }

    .location__heading {
        margin-bottom: 40px;
    }

    .location__title {
        font-size: var(--font-h2-size);
        line-height: var(--font-h2-line-height);
        margin-bottom: 24px;
    }

    .location__content {
        max-width: 73%;
    }

    .location__address,
    .location__phone {
        line-height: var(--font-body-md-line-height);
    }

    .contact-form {
        margin-top: 60px;
    }

    .contact-form__image {
        width: 491px;
        height: 752px;
    }

    .contact-form__grid {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        margin-top: 40px;
        align-items: stretch;
    }

    .contact-form__left {
        padding: 60px 30px;
    }

    .contact-form__row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-form__heading {
        padding-bottom: 0px;
    }

    .contact-form__input,
    .contact-form__textarea {
        padding: 15px 16px;
    }

    .contact-form__actions {
        flex-wrap: nowrap;
    }

    .contact-form__right {
        height: 100%;
    }

    .contact-form__image {
        width: 100%;
        height: 100%;
    }

        .contact-form__image picture,
        .contact-form__image img {
            display: block;
            min-width: 491px;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .contact-form__actions {
        gap: 40px;
    }

    .iti__country-list {
        width: 366.5px;
        box-sizing: border-box;
    }

    .download {
        margin: 64px 0 60px;
    }

    .download__title {
        font-weight: var(--font-h2-weight);
        font-size: var(--font-h2-size);
        line-height: var(--font-h2-line-height);
        max-width: 612px;
    }

    .download__desc {
        line-height: var(--font-body-lg-line-height);
        max-width: 536px;
    }

    .download__content {
        align-items: start;
        padding: 100px 46px 68px 31px;
        grid-template-columns: 1fr 1fr;
    }

    .download__content-background {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: 50% 50%;
        z-index: 0;
    }

    .download__info {
        padding-top: 117px;
    }

    .download__form {
        margin-left: 258px;
    }

    .toast {
        width: 390px;
    }

    .location__nav {
        display: none;
    }

    .location__image {
        height: 300px;
        margin-bottom: 40px;
        min-width: unset;
    }

    .contact-form__captcha .g-recaptcha {
        transform: none;
        -webkit-transform: none;
        transform-origin: initial;
        width: auto;
        max-width: none;
    }

    .footer,
    .footer__contact {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 320px) {
    .contact-form__left {
        width: 90%;
    }

    .contact-form__left {
        padding: 16px 8px;
    }
}

@media only screen and (max-width: 768px) {
    .location__list {
        display: block;
        margin: 0;
        padding: 0 8px;
        overflow-x: clip;
        max-width: 100%;
    }
}

@media (width: 1440px) {
    .building8 {
        bottom: 6%;
        width: 244px;
        height: 375px;
        z-index: 1;
        left: 3%;
    }

    .text {
        bottom: 43%;
        font-family: var(--font-family);
        font-size: var(--font-h1-size);
        font-weight: var(--font-h1-weight);
        line-height: var(--font-h1-line-height);
        color: white;
        max-width: 497px;
    }
}


.contact-form__image picture {
    position: relative;
}

    .contact-form__image picture img {
        position: absolute;
    }

.contact-office-tel {
    text-decoration: none;
    color: var(--color-primary-blue);
}

    .contact-office-tel:hover {
        text-decoration: underline;
    }

.contact-form__sending {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-blue);
    font-family: var(--font-family);
    font-size: var(--font-body-sm-size);
}

    .contact-form__sending.show {
        display: inline-flex;
    }

.contact-form__error {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-red);
    font-family: var(--font-family);
    font-size: var(--font-body-sm-size);
}

    .contact-form__error.show {
        display: inline-flex;
    }

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary-blue);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.download__btn .loader {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.download__btn:hover .loader {
    border-color: var(--color-primary-blue);
    border-bottom-color: transparent;
}

.show-custom {
    display: block !important;
}

.hidden-custom {
    display: none !important;
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-scrollbar,
html {
    max-width: 100%;
    overflow-x: hidden;
}

section.download,
.contact-form {
    scroll-margin-top: 130px;
}

/* Banner */
.banner {
    position: relative;
    width: 100%;
    height: 463px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    transform: scale(2.5) translateY(-10%);
    transform-origin: top center;
    object-fit: cover;
}

.banner img,
.banner .text {
    position: absolute;
}

.building8 {
    bottom: 23%;
    width: 154px;
    height: 257px;
    z-index: 1;
    object-fit: contain;
}

.text {
    bottom: 56%;
    margin-left: 40px;
    font-family: var(--font-family);
    font-size: var(--font-h2-size);
    font-weight: var(--font-h2-weight);
    line-height: var(--font-h2-line-height);
    color: white;
    max-width: 400px;
}

/* Location */
.location {
    margin-top: 40px;
}

.location__heading {
    font-family: var(--font-family);
    font-weight: var(--font-number-weight);
    font-size: var(--font-h4-size);
    color: var(--color-primary-blue);
    line-height: var(--font-h4-line-height);
    margin-bottom: 30px;
}

.location__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 0;
    padding: 0;
    overflow-x: visible;
}

.location__nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    justify-content: center;
}

.location__nav-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.location__content {
    max-width: none;
    display: flex;
    flex-direction: column;
}

.location__item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.location__image {
    min-width: 358px;
    height: 252px;
    margin-bottom: 24px;
    overflow: hidden;
}

    .location__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.location__title {
    font-family: var(--font-family);
    font-weight: var(--font-h3-weight);
    line-height: var(--font-h3-line-height);
    color: var(--color-primary-blue);
    margin-bottom: 24px;
    font-size: var(--font-h3-size);
}

.location__description {
    display: flex;
    flex-direction: column;
}

.location__address,
.location__phone {
    font-size: var(--font-body-md-size);
    font-family: var(--font-family);
    font-weight: var(--font-body-md-weight);
    color: var(--color-primary-blue);
    line-height: var(--font-h4-line-height);
}

.location__description p:first-of-type {
    margin-bottom: 24px;
}

/* Contact Form */
.contact-form {
    margin-top: 40px;
    background: #fff;
}

.contact-form__container {
    max-width: 1440px;
    margin: 0 auto;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 24px;
}

.contact-form__heading {
    font-family: var(--font-family);
    font-weight: var(--font-h4-weight);
    line-height: var(--font-h4-line-height);
    font-size: var(--font-h4-size);
    color: var(--color-primary-blue);
    padding-bottom: 6px;
}

.contact-form__left {
    background: #f6f9ff;
    padding: 30px 20px;
}

.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 33.6px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__label {
    font-family: var(--font-family);
    font-weight: var(--font-body-sm-weight);
    font-size: var(--font-body-sm-size);
    line-height: var(--font-body-sm-line-height);
    color: var(--color-primary-blue);
    margin-bottom: 7px;
}

.contact-form__input,
.contact-form__textarea {
    padding: 12px 14px;
    border: 1px solid #0047ba40;
    font-family: var(--font-family);
    font-size: var(--font-h5-size);
    line-height: var(--font-body-lg-line-height);
    font-weight: var(--font-body-sm-weight);
    color: var(--color-bg-primary);
    background: #fff;
    transition: border-color 0.3s ease;
}

    .contact-form__input:focus,
    .contact-form__textarea:focus {
        outline: none;
        border-color: var(--color-primary-blue);
    }

.contact-form__textarea {
    resize: vertical;
    height: 86px;
}

.contact-form__captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .contact-form__captcha-box input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 28px;
        height: 28px;
        border: 2px solid #c1c1c1;
        border-radius: 3px;
        background: #fff;
        position: relative;
        outline: none;
        cursor: pointer;
    }

    .contact-form__captcha-box.loading input[type="checkbox"]::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 18px;
        height: 18px;
        margin: -9px 0 0 -9px;
        border: 2px solid #8aa3d1;
        border-top-color: transparent;
        border-radius: 50%;
        animation: captcha-spin 0.9s linear infinite;
    }

/*flag country*/
.iti {
    width: 100%;
    font-family: var(--font-family);
    color: var(--color-bg-primary);
}

.iti__selected-flag {
    background-color: var(--color-bg-white) !important;
    padding: 0 10px;
}

.iti__arrow--up {
    border-top: none !important;
    border-bottom: 4px solid var(--color-bg-primary) !important;
}

.iti__arrow {
    border-top: 4px solid var(--color-bg-primary) !important;
    border-bottom: none !important;
}

.iti__country-list {
    width: 318px;
    box-sizing: border-box;
}

.iti__country-container {
    width: 100%;
}

.iti__selected-dial-code {
    font-size: var(--font-body-sm-size);
}



@keyframes captcha-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-form__captcha-box.success input[type="checkbox"] {
    border-color: #34a853;
    background: #34a853;
}

    .contact-form__captcha-box.success input[type="checkbox"]::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 12px;
        margin: -7px 0 0 -8px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center/contain;
    }

.contact-form__captcha-box .contact-form__captcha-label {
    user-select: none;
    cursor: pointer;
}

.contact-form__captcha-box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary-blue);
}

.contact-form__captcha-label {
    font-family: var(--font-family);
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.contact-form__captcha-logo {
    font-weight: bold;
    color: var(--color-primary-blue);
}

.contact-form__captcha-link {
    color: var(--color-primary-blue);
    text-decoration: none;
}

    .contact-form__captcha-link:hover {
        text-decoration: underline;
    }

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--color-bg-primary);
    color: var(--color-bg-primary);
    padding: 16px 24px;
    font-family: var(--font-family);
    font-size: var(--font-button-size);
    line-height: var(--font-button-line-height);
    font-weight: var(--font-button-weight);
    text-transform: uppercase;
    cursor: pointer;
    gap: 12px;
    transition: all 0.3s ease;
    align-self: flex-start;
    width: fit-content;
}

    .contact-form__submit img {
        width: 28px;
        height: 28px;
        transition: filter 0.3s ease;
    }

    .contact-form__submit:hover {
        background: var(--color-primary-blue);
        color: var(--color-bg-white);
    }

        .contact-form__submit:hover img {
            filter: brightness(0) invert(1);
        }

    .contact-form__submit:disabled {
        border: 1px solid var(--color-disabled-blue);
        color: var(--color-disabled-blue);
        cursor: not-allowed;
        background: transparent;
    }

        .contact-form__submit:disabled:hover {
            background: transparent;
            color: var(--color-disabled-blue);
        }

        .contact-form__submit:disabled img {
            filter: none;
        }

.contact-form__right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contact-form__image {
    width: 0;
    height: 0;
    overflow: hidden;
}

    .contact-form__image picture,
    .contact-form__image img {
        display: none;
    }

.contact-form__success {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-cyan);
    font-family: var(--font-family);
    font-size: var(--font-body-sm-size);
}

    .contact-form__success.show {
        display: inline-flex;
    }

.contact-form__success-icon {
    width: 24px;
    height: 24px;
}

.contact-form__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    /* margin-top: 8px; */
    flex-wrap: wrap;
}

.contact-form__label-container {
    display: flex;
    flex-direction: row;
}

.contact-form__field.has-error .contact-form__label {
    color: var(--color-primary-red);
    display: flex;
    align-items: center;
}

.contact-form__field.has-error .contact-form__input,
.contact-form__field.has-error .contact-form__textarea {
    border-color: #EC1E24;
    background: #ec1e2414;
    color: var(--color-primary-red);
}

/* .contact-form__field.has-error .contact-form__label::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: url("../../img/icon/alert-circle.svg") no-repeat center/contain;
} */

.contact-form__field .contact-form__error {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    display: none;
}

.contact-form__field.has-error .contact-form__error {
    display: block;
}

.contact-form__error-text {
    display: none;
    font-family: var(--font-family);
    margin-top: 4px;
    font-size: 13px;
    color: var(--color-primary-red);
}

.contact-form__field.has-error .contact-form__error-text {
    display: block;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.download {
    margin: 40px 0 60px;
}

.download__container {
    max-width: 1440px;
    margin: 0 auto;
}

.download__content {
    position: relative;
    /* background: url("../../img/banner/banner-download.jpg") center/cover no-repeat; */
    max-height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 33px 16px;
    overflow-x: clip;
}

.download__content-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 0;
}

.download__content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-stroke-blue);
}

.download__info {
    padding-top: 12px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.download__title {
    font-family: var(--font-family);
    font-weight: var(--font-h3-weight);
    font-size: var(--font-h3-size);
    line-height: var(--font-h3-line-height);
    margin-bottom: 24px;
    max-width: 238px;
}

.download__desc {
    font-family: var(--font-family);
    font-size: var(--font-body-md-size);
    line-height: var(--font-body-md-line-height);
    margin-bottom: 36px;
    max-width: 324px;
    font-weight: var(--font-body-sm-weight);
}

.download__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 29px;
    margin-left: 0;
}

.download__row {
    display: grid;
    grid-template-columns: 1fr;
    /* gap: 29px; */
    gap: 29.51px;
}

.download__label {
    font-family: var(--font-family);
    font-weight: var(--font-body-sm-weight);
    font-size: var(--font-body-sm-size);
    line-height: var(--font-body-sm-line-height);
    color: #fff;
}

.download__field {
    display: flex;
    flex-direction: column;
}

.download__input {
    margin-top: 7px;
    /* width: 100%; */
    width: 97.5%;
    /* padding: 14px 16px; */
    padding: 15px 0px 16px 16px;
    background: #fff;
    border: 1px solid #0047ba40;
    color: var(--color-primary-blue);
    font-size: var(--font-body-sm-size);
    font-family: var(--font-family);
    font-weight: var(--font-body-sm-weight);
    line-height: var(--font-body-lg-line-height);
}

.download__field.has-error .download__input {
    border: 1px solid #ec1e2414;
}

.download__field.has-error .download__label {
    color: var(--color-primary-red);
}



.download-form__input:focus,
.download-form__textarea:focus {
    outline: none;
    border-color: var(--color-primary-blue);
}

.download-form__textarea {
    resize: vertical;
    height: 86px;
}

.download__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    /* padding: 14px 18px; */
    padding: 16px 24px;
    cursor: pointer;
    align-self: flex-start;
    text-align: center;
    text-transform: uppercase;
    transition: ease 0.5s all;
}

.download__btn-text {
    font-family: var(--font-family);
    font-weight: var(--font-button-weight);
    font-size: var(--font-button-size);
    line-height: var(--font-button-line-height);
}

.download__btn:hover {
    background: #fff;
    color: var(--color-primary-blue);
}

.download__btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.download__btn:hover img {
    filter: none;
}

.download__error-text {
    display: none;
    font-family: var(--font-family);
    margin-top: 4px;
    font-size: 13px;
    color: var(--color-primary-red);
}

.download__field.has-error .download__error-text {
    display: block;
}


.toast-container {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
}

.toast {
    width: 100vw;
    min-height: 52px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: 52px 1fr 36px;
    align-items: center;
    overflow: hidden;
    animation: toast-slide-in 300ms ease-out;
}

    .toast.closing {
        animation: toast-slide-out 250ms ease forwards;
    }

.toast__icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .toast__icon svg {
        width: 22px;
        height: 22px;
    }

.toast__msg {
    padding: 0 16px;
    color: var(--color-primary-blue);
    font-family: var(--font-family);
    font-size: var(--font-body-sm-size);
}

.toast__close {
    background: none;
    border: none;
    cursor: pointer;
    padding-right: 10px;
    color: var(--color-primary-blue);
}

    .toast__close svg {
        width: 18px;
        height: 18px;
    }

.toast__close--success {
    color: var(--color-primary-blue);
    position: relative;
}

    .toast__close--success img {
        display: none;
    }

    .toast__close--success::after {
        content: "×";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        font-weight: bold;
        color: var(--color-primary-blue);
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.toast__close--error {
    color: #ff4d4d;
    position: relative;
}

    .toast__close--error img {
        display: none;
    }

    .toast__close--error::after {
        content: "×";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        font-weight: bold;
        color: #ff4d4d;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.toast__close--warning {
    color: #16c1b7;
    position: relative;
}

    .toast__close--warning img {
        display: none;
    }

    .toast__close--warning::after {
        content: "×";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        font-weight: bold;
        color: #16c1b7;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.toast--success {
    border-color: var(--color-primary-blue);
}

    .toast--success .toast__icon {
        background: var(--color-primary-blue);
        color: #fff;
    }

.toast--error {
    border-color: #ff6b6b;
}

    .toast--error .toast__icon {
        background: #ff4d4d;
        color: #fff;
    }

    .toast--error .toast__msg {
        color: #d7263d;
    }

.toast--warning {
    border-color: #16c1b7;
}

    .toast--warning .toast__icon {
        background: #16c1b7;
        color: #fff;
    }

    .toast--warning .toast__msg {
        color: #0aa89f;
    }

@keyframes toast-slide-in {
    from {
        transform: translateY(-16px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes toast-slide-out {
    to {
        transform: translateY(-16px);
        opacity: 0;
    }
}

.contact-form__captcha {
    overflow: hidden;
    max-width: 100%;
    padding-right: 0;
}

    .contact-form__captcha .g-recaptcha {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform-origin: 0 0;
        max-width: 100%;
        width: 304px;
    }

.location__list.location-swiper {
    position: relative;
    overflow: hidden;
}

.location__list .swiper-wrapper {
    display: flex;
}

.location__list .swiper-slide {
    width: 100% !important;
    padding-bottom: 32px;
}

.location-swiper__nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.location-swiper__prev,
.location-swiper__next {
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

    .location-swiper__prev::after,
    .location-swiper__next::after {
        display: none;
    }

/* .location-swiper__prev {
  background-image: url("../../img/icon/arrow-up-left.svg");
}

.location-swiper__next {
  background-image: url("../../img/icon/arrow-up-right.svg");
} */

@media only screen and (min-width: 768px) and (max-width: 1279px) {
    /* Banner */

    .text {
        bottom: 53%;
        margin-left: 40px;
        font-family: var(--font-family);
        font-size: var(--font-h2-size);
        font-weight: var(--font-h2-weight);
        line-height: var(--font-h2-line-height);
        color: white;
        max-width: 317px;
    }

    .location {
        margin-top: 60px;
    }

    .location__heading {
        font-size: 22px;
        line-height: 100%;
        margin-bottom: 40px;
    }

    .location__nav {
        display: none;
    }

    .location__image {
        height: 300px;
        margin-bottom: 40px;
        min-width: unset;
    }

    .location__title {
        font-size: var(--font-h2-size);
        line-height: var(--font-h2-line-height);
        margin-bottom: 24px;
    }

    .location__description {
        margin-bottom: 0;
    }

    /* Contact Form */
    .contact-form {
        margin-top: 60px;
    }

    .contact-form__heading {
        font-size: 22px;
    }

    .contact-form__grid {
        margin-top: 40px;
    }

    .contact-form__left {
        padding: 60px 30px;
        width: auto;
    }

    .contact-form__row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .contact-form__input,
    .contact-form__textarea {
        padding: 15px 16px;
        font-size: 16px;
    }

    .contact-form__actions {
        flex-wrap: nowrap;
    }

    .contact-form__image {
        width: unset;
        height: unset;
    }

        .contact-form__image picture,
        .contact-form__image img {
            display: none;
        }

    .contact-form__right {
        height: auto;
    }

    .iti__country-list {
        width: 336px;
        box-sizing: border-box;
    }

    .download {
        margin: 64px 0 60px;
    }

    .download__content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 60px 24px;
        max-height: 552px;
        overflow-x: visible;
    }

    .download__title {
        max-width: none;
    }

    .download__desc {
        font-size: 16px;
        line-height: normal;
        max-width: 536px;
    }

    .download__form {
        margin-left: 0;
    }

    .download__input {
        padding: 15px;
        font-size: var(--font-body-sm-size);
    }

    .download__btn {
        padding: 19px 24px;
        font-size: var(--font-button-size);
    }

    .toast {
        width: 390px;
    }

    .container {
        overflow-x: visible;
    }

    .contact-form__captcha {
        overflow: visible;
        max-width: none;
        padding-right: 0;
    }

        .contact-form__captcha .g-recaptcha {
            transform: none;
            -webkit-transform: none;
            transform-origin: initial;
            max-width: none;
            width: auto;
        }
}

@media only screen and (min-width: 1280px) {
    .banner {
        position: relative;
        width: 100%;
        height: 610px;
        overflow: hidden;
    }

        .banner img,
        .banner .text {
            position: absolute;
        }

    .banner-img {
        width: 100%;
        height: 100%;
        transform: unset;
        object-fit: cover;
        transform-origin: unset;
        object-position: 50% 17%;
    }

    .building8 {
        bottom: 6%;
        width: 244px;
        height: 375px;
        z-index: 1;
    }

    .text {
        bottom: 40%;
        margin-left: 45px;
        font-family: var(--font-family);
        font-size: var(--font-h1-size);
        font-weight: var(--font-h1-weight);
        line-height: var(--font-h1-line-height);
        color: var(--color-bg-white);
        max-width: 497px;
    }

    .location {
        margin-top: 60px;
    }

    .location__heading {
        margin-bottom: 40px;
    }

    .location__title {
        font-size: var(--font-h2-size);
        line-height: var(--font-h2-line-height);
        margin-bottom: 24px;
    }

    .location__content {
        max-width: 73%;
    }

    .location__address,
    .location__phone {
        line-height: var(--font-body-md-line-height);
    }

    .contact-form {
        margin-top: 60px;
    }

    .contact-form__image {
        width: 491px;
        height: 752px;
    }

    .contact-form__grid {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        margin-top: 40px;
        align-items: stretch;
    }

    .contact-form__left {
        padding: 60px 30px;
    }

    .contact-form__row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-form__heading {
        padding-bottom: 0px;
    }

    .contact-form__input,
    .contact-form__textarea {
        padding: 15px 16px;
    }

    .contact-form__actions {
        flex-wrap: nowrap;
    }

    .contact-form__right {
        height: 100%;
    }

    .contact-form__image {
        width: 100%;
        height: 100%;
    }

        .contact-form__image picture,
        .contact-form__image img {
            display: block;
            min-width: 491px;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .contact-form__actions {
        gap: 40px;
    }

    .iti__country-list {
        width: 366.5px;
        box-sizing: border-box;
    }

    .download {
        margin: 64px 0 60px;
    }

    .download__title {
        font-weight: var(--font-h2-weight);
        font-size: var(--font-h2-size);
        line-height: var(--font-h2-line-height);
        max-width: 612px;
    }

    .download__desc {
        line-height: var(--font-body-lg-line-height);
        max-width: 536px;
    }

    .download__content {
        align-items: start;
        padding: 100px 46px 68px 31px;
        grid-template-columns: 1fr 1fr;
    }

    .download__content-background {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: 50% 50%;
        z-index: 0;
    }

    .download__info {
        padding-top: 117px;
    }

    .download__form {
        margin-left: 258px;
    }

    .toast {
        width: 390px;
    }

    .location__nav {
        display: none;
    }

    .location__image {
        height: 300px;
        margin-bottom: 40px;
        min-width: unset;
    }

    .contact-form__captcha .g-recaptcha {
        transform: none;
        -webkit-transform: none;
        transform-origin: initial;
        width: auto;
        max-width: none;
    }

    .footer,
    .footer__contact {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 320px) {
    .contact-form__left {
        width: 90%;
    }

    .contact-form__left {
        padding: 16px 8px;
    }
}

@media only screen and (max-width: 768px) {
    .location__list {
        display: block;
        margin: 0;
        padding: 0 8px;
        overflow-x: clip;
        max-width: 100%;
    }
}

@media (width: 1440px) {
    .building8 {
        bottom: 6%;
        width: 244px;
        height: 375px;
        z-index: 1;
        left: 3%;
    }

    .text {
        bottom: 43%;
        font-family: var(--font-family);
        font-size: var(--font-h1-size);
        font-weight: var(--font-h1-weight);
        line-height: var(--font-h1-line-height);
        color: white;
        max-width: 497px;
    }
}


.contact-form__image picture {
    position: relative;
}

    .contact-form__image picture img {
        position: absolute;
    }

.contact-office-tel {
    text-decoration: none;
    color: var(--color-primary-blue);
}

    .contact-office-tel:hover {
        text-decoration: underline;
    }

.contact-form__sending {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-blue);
    font-family: var(--font-family);
    font-size: var(--font-body-sm-size);
}

    .contact-form__sending.show {
        display: inline-flex;
    }

.contact-form__error {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-red);
    font-family: var(--font-family);
    font-size: var(--font-body-sm-size);
}

    .contact-form__error.show {
        display: inline-flex;
    }
