/************* CAROUSELS *************/
body:not(.finetune) .carousel {  
    overflow: hidden;  
}  
  
body:not(.finetune) .carousel-track {  
    will-change: transform;
}  
  
body:not(.finetune) .carousel-track .children {  
    display: flex!important;  
    transition: transform 0.3s ease; 
}  
  
body:not(.finetune) .carousel-slide { 
    flex: 0 0 100%;
    box-sizing: border-box;  
}

/* Media Queries */
@media screen and (max-width: 800px) {
body:not(.finetune) .carousel-slide { flex: 0 0 50%; }
}

@media screen and (max-width: 667px) {
body:not(.finetune) .carousel-slide { flex: 0 0 100%;}
}