header:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
@media (max-width: 576px){
    header .btn-group-lg>.btn, header .btn-lg {
        --bs-btn-font-size: 1rem;
    }
}

/*video*/
@media (min-width: 1920px) {
    .movie-box{
        width: 100%;
    }
}
video::-webkit-media-controls {
    display: none;
}

/* Could Use thise as well for Individual Controls */
video::-webkit-media-controls-play-button {}

video::-webkit-media-controls-volume-slider {}

video::-webkit-media-controls-mute-button {}

video::-webkit-media-controls-timeline {}

video::-webkit-media-controls-current-time-display {}

/*swiper*/
.swiper-pagination {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    width: auto;
    color: #abafc0;
}
.swiper-pagination-current {
    color: initial;
}
.swiper-button-next, .swiper-button-prev{
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    color: var(--bs-body-color);
    width: 40px;
    height: 40px;
    border: 1px solid;
    display: inline-block;
    margin: 0;
}
.swiper-button-next:hover svg, .swiper-button-prev:hover svg{
    color: #dd3554!important;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    border-color: #dd3554!important;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    display: none;
}
/*features*/
.features-card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 30, 30, 0)), to(#1e1e1e));
    background-image: -o-linear-gradient(top, rgba(30, 30, 30, 0), #1e1e1e);
    background-image: linear-gradient(180deg, rgba(30, 30, 30, 0), #1e1e1e);
    opacity: .5;
}

.nav-scroller .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}