:root {
    --header-height: 60px;
}

.hero-wrapper {
    margin-top: var(--header-height, 60px);
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.simple-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
}

.simple-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-wrapper {
    height: auto;
    aspect-ratio: 2000 / 912;
}

.hero-image {
    background-size: contain;
    background-position: center;
}

.ft-contact-bx {
    position: relative;
    padding-left: 70px;
}

.ft-contact-bx img {
    position: absolute;
    left: 0;
    top: 5px;
    width: 36px;
}

.ft-contact-content {
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-block;
}

.ft-contact-content .title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: black;
}

.ft-contact-content p:not(:empty) {
    margin: 0;
    font-size: 14px !important;
    font-weight: bold;
    line-height: 1.6;
    color: black;
}

.ft-contact-content p + p {
    margin-top: 6px;
}

.ft-contact .contact-address {
    flex: 0 0 42%;
    max-width: 42%;
}

.ft-contact .contact-phone,
.ft-contact .contact-email {
    flex: 0 0 29%;
    max-width: 29%;
}

.address-span {
    font-weight: bold;
}

.ft-contact .ft-contact-bx .title {
    font-weight: 1000;
}

.ft-contact .address-span {
    color: black;
    font-size: 16px;
}

.ft-contact .address-element {
    margin-top: 4px;
    color: black;
}

.ft-contact ul {
    list-style: none;
    padding-left: 0;
}

.address-element p[dir="auto"] {
    unicode-bidi: isolate;
}

.send-us-message-button {
    color: black;
}

.lang-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.lang-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.header-nav .nav > li > a {
    border: 0px !important;
}

@media (max-width: 991px) {
    .ft-contact {
        flex-direction: column;
    }

    .ft-contact .contact-address,
    .ft-contact .contact-phone,
    .ft-contact .contact-email {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ft-contact-bx {
        padding-left: 60px;
        margin-bottom: 14px;
    }

    .ft-contact-bx img {
        width: 32px;
        top: 8px;
    }

    .ft-contact-content {
        display: block;
    }

    .ft-contact-content .title {
        font-size: 13px;
    }

    .ft-contact-content p:not(:empty) {
        font-size: 13px !important;
    }

    .ft-contact-bx::after {
        display: none !important;
    }
}