/* Widget hero-section */

.heritour-hero-section,
.heritour-hero-section * {
    box-sizing: border-box;
}

.heritour-hero-section {
    --heritour-hero-secondary: var(--e-global-color-secondary, #090e1a);
    --heritour-hero-secondary-foreground: var(--e-global-color-secondary-foreground, #ffffff);
    --heritour-hero-white: #ffffff;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    overflow: hidden;
    isolation: isolate;
}

.heritour-hero-section__media,
.heritour-hero-section__overlay {
    position: absolute;
    inset: 0;
}

.heritour-hero-section__media {
    z-index: 0;
}

.heritour-hero-section__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.heritour-hero-section__overlay {
    background: linear-gradient(90deg, rgba(9, 14, 26, 0.9) 0%, rgba(9, 14, 26, 0.6) 50%, rgba(9, 14, 26, 0) 100%);
}

.heritour-hero-section__logo-wrap {
    position: absolute;
    top: 35%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.heritour-hero-section__logo {
    width: min(82vw, 18rem);
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

.heritour-hero-section__content {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 10;
    width: 90%;
    transform: translateX(-50%);
    text-align: center;
}

.heritour-hero-section__since {
    margin: 0 0 1.5rem;
    color: var(--heritour-hero-white);
    font-family: var(--font-body, "Poppins", sans-serif);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.heritour-hero-section__title {
    margin: 0 0 1rem;
    color: var(--heritour-hero-secondary-foreground);
    font-family: var(--font-heading, "Lato", sans-serif);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.15;
}

.heritour-hero-section__title-line {
    display: block;
}

.heritour-hero-section__spacer {
    margin-bottom: 1.5rem;
}

.heritour-hero-section__scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    animation: heritour-hero-bounce 1s infinite;
}

.heritour-hero-section__scroll-icon {
    width: 2rem;
    height: 2rem;
    display: block;
}

.heritour-hero-section__scroll-fallback {
    color: var(--heritour-hero-white);
    font-size: 2rem;
    line-height: 1;
}

.heritour-hero-section__badge-wrap {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 20;
}

.heritour-hero-section__badge {
    width: 8rem;
    height: auto;
    display: block;
    object-fit: contain;
    opacity: 0.9;
}

@keyframes heritour-hero-bounce {
    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

    .heritour-hero-section__title {
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

    .heritour-hero-section {
        min-height: 100vh;
    }

    .heritour-hero-section__content {
        bottom: 4rem;
    }

    .heritour-hero-section__logo-wrap {
        top: 50%;
    }

    .heritour-hero-section__logo {
        width: min(60vw, 20rem);
    }

    .heritour-hero-section__title {
        font-size: 2.5rem;
    }

    .heritour-hero-section__badge-wrap {
        left: 2rem;
        bottom: 2rem;
    }

    .heritour-hero-section__badge {
        width: 10rem;
    }

}

/*mobile and tablet*/
@media (max-width: 1024px) {

    .heritour-hero-section__title-line {
        white-space: normal;
    }

}

/*desktop*/
@media (min-width: 1025px) {

    .heritour-hero-section {
        min-height: 100vh;
    }

    .heritour-hero-section__logo-wrap {
        top: 50%;
    }

    .heritour-hero-section__title {
        font-size: 2.5rem;
    }

    .heritour-hero-section__content {
        bottom: 2.5rem;
    }

    .heritour-hero-section__badge-wrap {
        left: 2.5rem;
        bottom: 2.5rem;
    }

    .heritour-hero-section__badge {
        width: 12rem;
    }

}

/*laptop 1*/
@media (min-width: 1025px) and (max-width: 1439px) {

    .heritour-hero-section__logo-wrap {
        top: 45%;
    }

    .heritour-hero-section__logo {
        width: min(36vw, 15rem);
    }

    .heritour-hero-section__badge {
        width: 10rem;
    }

}

/*laptop 2*/
@media (min-width: 1440px) and (max-width: 1700px) {

    .heritour-hero-section__logo {
        width: 25rem;
    }

}

/*RESPONSIVE*/

/* mobile paragraph minimum */
@media (max-width: 767px) {
    .heritour-hero-section p {
        font-size: max(0.9375rem, 1em);
    }
}
