/* Sec Home Header */

.sec-home-header {
    width: 100%;
    height: auto;
    margin: 100px auto;
    margin-top: 0;
}

.header-banner {
    width: 100%;
    height: 62vh;
    clip-path: ellipse(100% 100% at 50% 100%);
    position: relative;
    background: url(../../media/imgae/webp/header-poster-video.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: visible;
}

/* Fire Sparks Container */
.fire-sparks {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

#fireCanvas {
    position: absolute;
    bottom: 0;
    right: 16%;
    width: 45%;
    height: 75%;
    pointer-events: none;
}

#scroll-bottom {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: transparent;
    z-index: 10;
    display: block;
    cursor: pointer;
    pointer-events: auto;
}

.header-banner::before {
    content: url(../../media/imgae/svg/header-poster-icon.svg);
    width: 180px;
    position: absolute;
    height: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.header-banner::after {
    content: url(../../media/imgae/svg/icon/icon-chevron-Up.svg);
    position: absolute;
    left: 50%;
    bottom: -10%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-color-orange);
    box-shadow: 0px 7.07px 30.62px 0px #f582204D;
    line-height: 0;
    cursor: pointer;
    animation: bounce 2s infinite ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, -20%);
    }

    50% {
        transform: translate(-50%, -10%);
    }
}

.home-header-text {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 50px auto;
    gap: 15px;
    overflow: hidden;
}

.home-header-text .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 5px 0;
    padding-right: 25px;
}

.home-header-text .header-logo h1 {
    font-size: clamp(18px, 9vw, 50px);
    letter-spacing: 3px;
    font-weight: 500;
    font-family: var(--font-secondary);
    color: var(--color-heading-dark);
    text-transform: uppercase;
    margin-left: 20px;
    padding-right: .25rem;
    padding-top: .25rem;
}

.home-header-text .header-tagline h1 {
    font-size: clamp(20px, 5vw, 24px);
    letter-spacing: 3px;
    font-weight: 500;
    font-family: "Aldrich-Regular";
    color: var(--color-heading-dark);
    text-transform: uppercase;
    margin-left: 10px;
}

.home-header-text .header-tagline .header-tagline-line {
    width: 28rem;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.letter {
    float: left;
    overflow: hidden;
    visibility: hidden;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* All Media Queris Sec Home Header */

@media screen and (min-width: 1400px) {
    .header-banner::before {
        bottom: 63px;
    }
}

@media screen and (max-width: 1399px) {
    .header-banner::before {
        bottom: 62px;
    }
}

@media screen and (max-width: 1200px) {
    .header-banner::after {
        top: 100%;
        width: 65px;
        height: 65px;
    }

    .header-banner {
        clip-path: ellipse(150% 100% at 50% 100%);
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translate(-50%, -60%);
        }

        50% {
            transform: translate(-50%, -40%);
        }
    }
}

@media screen and (max-width: 998px) {
    .header-banner {
        height: 55vh;
    }
}

@media screen and (max-width: 576px) {
    .sec-home-header {
        height: auto;
    }

    .header-banner {
        height: 350px;
        background-attachment: unset;
    }
}

@media screen and (max-width: 375px) {
    .home-header-text .header-logo {
        padding-right: 0;
    }

    .home-header-text .header-logo h1 {
        margin-left: 0;
        padding-right: 14px;
    }
}