/* media-icon-list start here */
.media-icons-wrapper {
    background-color: #ff5f00;
    padding: 20px 5px;
    border-radius: 20px;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
}

.media-icon-list {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.media-icon-link {
    color: #F65425;
    transition: 0.5s;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #fff;
    &:hover

{
    color: #FFF;
    background-color: #000;
}

}

@media (max-width: 768px) {
    .media-icons-wrapper {
        display: none;
    }
}

/* media-icon-list end here */
/* header start here */
.header {
    background-color: #F65425;
    padding: 10px 0px 0px 0px;
}

.header-logo {
    width: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 160px;
    border-radius: 15px 15px 0 0;
    background: #000;
    flex-grow: 1;
    flex-shrink: 0;
    padding: 10px;
}

.inner-header {
    display: flex;
    gap: 10px;
}

.header-content {
    padding-block: 10px;
    p

{
    font-family: "Tahoma", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    margin-bottom: 15px;
    &:last-child

{
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

}
}

.header-btns-group {
    text-align: center;
}

.black-btn {
    background-color: #000000;
    font-family: "Roboto", 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: 21px 21px 21px 21px;
    margin-bottom: 15px;
    padding: 12px 24px;
    &:hover

{
    background-color: #ff5f00;
    border: 2px solid #fdfdfd;
    color: #fff;
}

}

.white-btn {
    background-color: #FFFFFF;
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    fill: #000000;
    color: #000000;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #DFDFDF;
    border-radius: 21px 21px 21px 21px;
    &:hover

{
    background-color: #000;
    border: 2px solid #fdfdfd;
    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;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
}

.black-btn {
    margin-bottom: 0;
}

}

/* header end here */

/* nav bar start here */
.menu-wrapper {
    background: #000;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
}

.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

{
    border-right: 1px solid #F65425;
    text-align: center;
    padding-inline: 10px;
    &:last-child

{
    border: none;
}

}

.nav-link {
    text-transform: uppercase;
    font-family: "Lato", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    padding: 5px 12px;
    text-decoration: none;
    text-transform: capitalize;
    white-space: nowrap;
    &:hover

{
    color: #F65425;
}

}

.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;
}

}

&:hover {
    .dropdown-menu

{
    display: block;
}

}
}
}

.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: #F65425;
    background-color: #fff;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #F65425;
}

.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: url(../images/Leather-belt-BG.jpg) no-repeat center;
    background-size: cover;
}



    .main-banner-wrapper.image-banner-wrapper .banner-content-wrapper {
        height: 100%;
        min-height: 450px;
        display: flex;
        justify-content: end;
        align-items: end;
        h2

{
    display: inline-block;
    background-color: #ff5f00;
    padding: 45px;
    color: #FFF;
    line-height: 1;
    font-size: clamp(1.875rem, 1.3977rem + 2.3864vw, 3.1875rem);
    margin-bottom: 15px;
    width: 50%;
    text-align: center;
}

}

.video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Add this */
    video

{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

}

.book-btn-wrapper {
    width: 100%;
}

.book-a-stand-btn {
    font-family: "Roboto", Sans-serif;
    font-size: clamp(1.125rem, 0.9659rem + 0.7955vw, 1.5625rem);
    font-weight: 400;
    border-style: none;
    border-radius: 50px 50px 50px 50px;
    padding: 15px 45px 15px 45px;
    background-color: #ff5f00;
    color: #FFFFFF;
    animation: fadeInRight 1s infinite alternate;
    line-height: 1;
    ;
    &:hover

{
    background-color: #000;
    color: #FFF;
    animation: none;
}

}

@keyframes fadeInRight {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}



.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: 20px;
    margin-block: 10px;
    flex-wrap: wrap;
}

    .countdown div {
        background: #ff5f00;
        padding-block: 16px 0;
        border-radius: 15% 15% 0 0;
        text-align: center;
        min-width: 103px;
    }

    .countdown span {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        display: block;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

    .countdown small {
        line-height: 1;
        color: #fff;
        display: block;
        background-color: #ffaf80;
        padding-block: 5px;
    }

@media (max-width: 991px) {
    .main-banner-wrapper.image-banner-wrapper .banner-content-wrapper {
        height: 100%;
        min-height: 390px;
    }

    .countdown {
        display: none;
    }
}

/* 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;
}

.main-banner-wrapper.image-banner-wrapper .banner-content-wrapper {
    min-height: 450px;
    h2

{
    display: block;
    width: 100%;
}

}
}
