.hero-banner.hero-banner-initialized > div:not(.swiper) {
    display: none;
}

.hero-banner-initialized {
    position: relative;
}

.hero-swiper {
    position: relative;
    overflow: hidden;
    margin-top: -80px;
}

.hero-swiper .swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
}

.hero-slide {
    flex-shrink: 0;
    width: 100%;
    position: relative;
    padding: 0 0 47%;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-media img,
.hero-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5rem 0 10rem;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--black);
    background: linear-gradient(
        60deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    font-size: var(--fs-medium);
    font-weight: 300;
}
.site-nagpur .hero-content {
    padding: 5rem 0;
}
.site-bhogapuram .hero-swiper .swiper-wrapper { height: 550px; }

.hero-content-inner {
    max-width: 700px;
}

.hero-content h3 {
    font-family: var(--font-secondary);
    font-weight: var(--fw-light);
    font-style: italic;
}

.hero-content h2,
.hero-content h1 {
    font-weight: var(--fw-light);
    font-size: var(--fs-xxxl);
}

.hero-content p {
    color: var(--light-grey); margin-bottom: 0;
}

.hero-actions {
    display: inline-flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-actions .btn {
    min-width: 180px;
}

.hero-nav {
    position: absolute;
    bottom: 7rem;
    left: 0;
    width: 100%;
    z-index: 5;
}
.site-nagpur .hero-nav {
    bottom: 2rem;
}

.hero-nav .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Arrows */
.hero-nav .swiper-button-prev,
.hero-nav .swiper-button-next {
    width: 2.75rem !important;
    height: 2.75rem !important;
    border: solid 2px var(--yellow);
    background: none;
    border-radius: 0.75rem;
    margin: 0;
    min-width: inherit !important;
}

.hero-nav .swiper-button-next:before,
.hero-nav .swiper-button-prev:before {
    background: url(../../icons/nav-arrow-yellow.svg) no-repeat center;
    background-size: 1rem;
}

.hero-numbers {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.hero-num {
    font-weight: 600;
    color: var(--lorange);
    cursor: pointer;
    position: relative;
    transition-duration: 0.4s;
}

.hero-num.active {
    color: var(--text-white);
    padding-right: 60px;
}

.hero-num:before,
.hero-num:after {
    content: "";
    width: 45px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    left: 30px;
    display: none;
}

.hero-num:after {
    background: var(--yellow);
    animation: myAnimation 20s alternate;
}

.hero-num.active:before,
.hero-num.active:after {
    display: block;
}

@keyframes myAnimation {
    0% {
        width: 0;
    }

    100% {
        width: 45px;
    }
}

/* Wrapper */
.quick-links-wrapper {
    position: absolute;
    bottom: 112px;
    display: block !important;
    right: 20px;
    z-index: 50;
}

/* Dropdown */
.quick-links-dropdown {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 250px;
    background: var(--bg-white);
    border: 1px solid var(--yellow);
    border-radius: 8px;
    padding: 20px 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.3s ease;
}

/* Show dropdown */
.quick-links-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Links */
.quick-links-dropdown a {
    display: flex;
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    font-size: var(--fs-normal);
    justify-content: space-between;
}

.quick-links-dropdown a:hover {
    color: var(--yellow);
}

.site-nagpur .quick-links-wrapper {
    display: none !important;
}
.nagpur-site .hero-media img{
    height: auto;
}

@media screen and (max-width: 1399px) {
.nagpur-site .hero-media img{
    height: 82%;
}
}
@media screen and (max-width: 1199px) {
    .hero-swiper {
        margin-top: 0;
    }
    .hero-slide {
        padding: 0 0 70%;
    }
    .nagpur-site .hero-media img{
    height: 100%;
}
}

@media screen and (max-width: 991.5px) {
    .hero-slide {
        padding: 0 0 85%;
    }
}

@media screen and (max-width: 767px) {
    #heroVideoModal .ratio:before {
        padding-top: 131.25%;
    }
    .hero-slide {
        padding: 0 0 130%;
    }
    

    .hero-content h2,
    .hero-content h1 {
        font-weight: var(--fw-light);
        font-size: var(--fs-xlarge);
    }
    
    .hero-content h3 {
        font-size: var(--fs-normal);
    }
    /* .hero-content p {
        font-size: var(--fs-small);
    } */

    .hero-actions .btn {
        min-width: inherit;
    }

    .hero-nav .swiper-button-prev,
    .hero-nav .swiper-button-next {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    .hero-content {
        padding-top: 2rem;
        justify-content: flex-start;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0) 100%
        );
    }
    .site-nagpur .hero-content {
        padding: 2rem 0;
    }
    .hero-nav .container {
        justify-content: center;
    }
    .quick-links-wrapper {
        bottom: 60px;
        right: 0;
        width: 90%;
        left: 0;
        margin: auto;
    }
    .quick-links-wrapper .btn-primary.quick-links-btn {
        width: 100%;
        justify-content: space-between;
    }
    .quick-links-dropdown {
        width: 100%;
    }
}
