.logos-wrapper {
    width: fit-content;
    flex-shrink: 0;
    gap: 20px;
}

/* media-icon-list start here */



.media-icon-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.media-icon-link {
    color: #fff;
    transition: 0.5s;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #fff;

    &:hover {
        color: #fff;
        background-color: #00391D;
    }

}

@media (max-width: 768px) {
    .media-icons-wrapper {
        width: 100%;
        justify-content: center;
    }

    .media-icon-list {
        margin-block: 0px 10px;
    }
}

/* media-icon-list end here */
/* header start here */
.header {
    padding: 10px 0px 0px 0px;
    background-color: #A9784E;
}

.header-logo {
    flex-grow: 1;
    flex-shrink: 0;

    img {
        height: 113px
    }
}

.inner-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-content {
    padding-block: 10px;

    p {
        font-family: "Tahoma", Sans-serif;
        font-size: 17px;
        font-weight: 500;
        line-height: 20px;
        color: #ffffff;
        margin-bottom: 15px;












        &:last-child {
            font-size: 16px;
            font-weight: 600;
            color: #FFFFFF;
        }

    }
}

.header-btns-group {
    text-align: center;
    padding-block: 10px;
}

.black-btn {
    background-color: #000000;
    font-family: 'Lato', Sans-serif;
    font-weight: 500;
    line-height: 20px;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #DFDFDF;
    border-radius: 26px;
    margin-bottom: 15px;
    padding: 7px 14px;
    min-width: 177px;
    position: relative;
    font-size: 18px;

    &:hover {
        background-color: #5CB2CB;
        border: 2px solid #ffffff;
        color: #ffffff;
    }

}

.ripple {
    position: relative;

    &::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        -webkit-animation: button-ripple 3s infinite;
        animation: button-ripple 3s infinite;
        inset: 0;
        border-radius: 21px;
    }

    &::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        -webkit-animation: button-ripple 1.5s infinite;
        animation: button-ripple 1.5s infinite;
        inset: 0;
        border-radius: 21px;
    }

}

@keyframes button-ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* For better browser compatibility */
@-webkit-keyframes button-ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.scalling {
    -webkit-animation: scale-up-down 2s infinite;
    animation: scale-up-down 2s infinite;
}

@keyframes scale-up-down {
    0% {
        scale: 1.2;
    }

    50% {
        scale: 1.4;
    }

    100% {
        scale: 1.2;
    }
}

.white-btn {
    background-color: #5cb2cb;
    font-family: "Lato", Sans-serif;
    font-weight: 500;
    color: #ffffff;
    line-height: 13px;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #ffffff;
    padding: 9px 12px 9px 12px;
    border-radius: 35px;


    &:hover {
        background-color: #000000;
        border: 2px solid #ffffff;
        color: #fff;
    }

}

@media(max-width:991px) {
    .header-logo {
        display: none;
    }
}

@media(max-width:767px) {
    .inner-header {
        flex-wrap: wrap;
    }

    .header-content {
        width: 100%;
    }

    .header-content {
        p {
            text-align: center;

            &:last-child {
                margin-bottom: 0;
            }

        }
    }

    .header-btns-group {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 10px;
    }

    .black-btn {
        margin-bottom: 0;
    }

}

/* header end here */

/* nav bar start here */
.menu-wrapper {
    background: #000000;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    padding-block: 0;
}

.navbar-brand {
    display: none;
}

.menu-wrapper:has(.navbar-collapse.collapse.show) {
    backdrop-filter: blur(10px);
}

.navbar-brand {
    padding: 0;

    img {
        max-width: 196px;
    }

}

.navbar-nav {
    width: 100%;
    justify-content: center;

    .nav-item {
        text-align: center;
        padding-inline: 10px;

        &:last-child {
            border: none;
        }

    }

    .nav-link {
        text-transform: uppercase;
        font-family: "Lato", Sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        padding: 13px 20px;
        line-height: 20px;
        text-decoration: none;
        text-transform: capitalize;
        white-space: nowrap;
        border-bottom: 3px solid #000000;

        &:hover {
            border-color: #8cc541;
        }

    }

    .nav-item.dropdown {
        .dropdown-menu {
            background: #f4f4f4;
            border-radius: 0;
            box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);

            .dropdown-item {
                padding-block: 15px;
                font-size: 14px;
                border-bottom: 1px solid #d1d1d1;
            }

        }

        &:hover {
            .dropdown-menu {
                display: block;
                padding-block: 0;
            }

        }
    }
}

.sub-menu {
    position: relative;

    .sub-dropdown-menu {
        position: absolute;
        box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
        background: #f4f4f4;
        display: none;
        top: 0;
        right: -176px;
        width: 195px;
    }

    &:hover {
        .sub-dropdown-menu {
            display: block;
        }

    }
}

.dropdown-item:hover {
    color: #fff;
    background-color: #000000;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    border-color: #8cc541;
    color: #fff;
}

.navbar-toggler {
    padding: 0px 10px;
    border-radius: 3px;
}

@media (max-width: 991px) {
    .nav-link {
        text-align: center;
    }

    .navbar-brand {
        display: block;
        width: 89px;

        img {
            width: 100%;
        }

    }

    .navbar-nav {
        .nav-item {
            border-right: 0;
            text-align: center;
            padding-inline: 10px;
        }

    }
}

/* nav bar end here */

/* banner start here */
.main-banner-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;

    .container {
        height: 100%;
    }

}

.main-banner-wrapper.image-banner-wrapper {
    height: auto;
    min-height: auto;
    background: #d0eaa1;
    background-size: cover;
}



.main-banner-wrapper.image-banner-wrapper .banner-content-wrapper {
    height: 100%;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;

    h2 {
        display: inline-block;
        font-family: 'Lato';
        color: #000000;
        line-height: 1;
        font-size: clamp(1.875rem, 1.3977rem + 2.3864vw, 3.1875rem);
        text-align: center;
        text-transform: uppercase;
        font-weight: 600;
    }

    p {
        display: inline-block;
        max-width: 767px;
        font-family: 'Lato';
        color: #FFF;
        line-height: 25px;
        text-align: center;
        font-size: 15px;
        text-wrap: balance;
        margin-block: 1.6em;
    }

}

.main-banner-wrapper.image-banner-wrapper .banner-content-wrapper:has(p) {
    min-height: auto;
    padding: 40px 0;
}

.video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;

    /* Add this */
    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}




.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.25;
    z-index: 2;
    /* Increase this */
}

/* countDown start here */
.countdown-box {
    max-width: 600px;
    width: 100%;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-block: 10px;
    flex-wrap: wrap;
}

.countdown div {
    background: radial-gradient(at top right, #DFDFDF 15%, #c18a54 62%);
    padding-block: 26px;
    border-radius: 12px;
    text-align: center;
    min-width: 132px;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 5px;
}

.countdown span {
    font-size: 35px;
    font-weight: 400;
    line-height: 0.7;
    color: #000;
    display: block;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    font-family: "Lato", sans-serif;
}

.countdown small {
    line-height: 1;
    color: #fff;
    display: block;
    font-family: 'Lato';
}



/* banner end here */


/* banner-content-wrapper start here */
.banner-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    width: 100%;
    margin-inline: auto;
    height: 100%;
    min-height: 90vh;
    z-index: 3;
}

/* banner-content-wrapper end here */


@media (max-width: 767px) {
    .warp-up-wrapper iframe {
        width: 100%;
        height: auto;
    }

    .navbar-brand {
        img {
            max-width: 102px;
        }

    }

    .main-banner-wrapper {
        height: 35vh;
    }

    .banner-content-wrapper {
        min-height: 35vh;
    }

    .book-a-stand-btn {
        padding: 9px;
        margin-bottom: 10px;
    }

}


@media (max-width: 768px) {
    .sub-menu {
        .sub-dropdown-menu {
            position: static;
            box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
            background: #f4f4f4;
            display: none;
            top: 0;
            right: -176px;
            width: 100%;
            padding-left: 15px;
        }

    }

    .countdown div {
        flex-direction: column;
        align-items: center;
        min-width: 65px;
        flex-grow: 1;
        padding-block: 15px;
    }

    .countdown span {
        font-size: 15px;
    }

    .countdown small {
        font-size: 12px;
    }
}