a{
    text-decoration: none;
}
.products_cover_video{
    width: 100%;
}
.products_cover_video_mobile{
    display: none;
}
.products{
    padding: 0 5%;
    margin-bottom: 25px;
}
.products_wrapper{
    display: flex;
    flex-direction: column;
    font-family: 'Oswald',sans-serif;
}
.products_wrapper::after{
    content: '';
    height: 260px;
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(29,10,97,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.products_title{
    color: #424242;
    text-align: center;
    font-size: 50px;
    margin-bottom: 55px;
}
.products_card_wrapper{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    font-family: 'Oswald',sans-serif;
}
.products_card_selector{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 326px;
    background-color: #1d0a97;
    padding: 33px 30px 14px;
    border-radius: 26.2px 26.2px 16px 16px;
    transition: background-color .5s ease;
    margin-bottom: 45px;
    transform: scale(.9);
}
.products_card_selector:hover{
    background-color: #2e23c1;
}
.product_text_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product_image{
    height: 160px;
    margin-bottom: 10px;
}
.product_name{
    display: inline-block;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0 10px 17px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
}
.product_description{
    font-weight: 300;
    font-size: 17px;
    letter-spacing: .7px;
}
.product_specs{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}
.bus_specs_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.specs_type_card{
    display: flex;
    align-items: center;
    width: fit-content;
    height: 44px;
    background-color: #12065e;
    padding: 8px;
    margin: 4px;
    border-radius: 4.3592px;
    color: #fff;
    font-weight: 300;
}
.specs_type_card.single{
    margin: 40px 0;
}
.passengers_icon{
    height: 31.5px;
}
.passengers_text,.bus_type_text{
    margin: 0 7px 0;
    font-size: 13px;
    letter-spacing: 0.8px;
}
.passengers_number{
    display: inline;
    color: #fff;
    font-size: 20px;
    padding: 4px 6px;
    background-color: #4734bd;
    border-radius: 3.2521px;
    font-weight: 500;
}
.dist_var{
    font-size: 15px;
}
.bus_type_icon{
    height: 27.5px;
}
.link_icon{
    width: 11.4px;
    margin-left: 7px;
}
.info_link{
    margin-top: 15px;
    display: flex;
    width: 100%;
}
.info_btn{
    border: none;
    outline: none;
    font-size: 15px;
    height: 44px;
    color: #1d0a97;
    background-color: #fff;
    padding: 9px;
    border-radius: 4.9px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

/* ---------------------- Image Slider --------------------- */

.image-slider,.image-slider_mobile {
    position: relative;
    width: 100%;
    max-height: 751px;
    overflow: hidden;
}

.image-slider_mobile {
    max-height: 1000px;
}

.images,.images_mb {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.image-slide,.image-slide_mobile {
    min-width: 100%;
}

.image-slider_mobile {
    display: none;
}

.image-slide img,.image-slide_mobile img {
    width: 100%;
}

@media screen and (max-width: 1200px){
    .products_cover_video{
        display: none;
    }
    .products_cover_video_mobile{
        display: flex;
        width: 100%;
    }
    .products_title{
        font-size: 33px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 1000px){
    .image-slider{
        display: none;
    }
    .image-slider_mobile{
        display: flex;
    }
}