/* 
  ##Device = Desktops
*/
@media (min-width: 1281px) {
    /* CSS */
}

/* 
  ##Device = Laptops, Desktops
*/
@media (min-width: 1025px) and (max-width: 1280px) {
    /* CSS */
}

/* 
  ##Device = Tablets, Ipads (portrait)
*/
@media (min-width: 768px) and (max-width: 1024px) {
    /* CSS */
}

/* 
  ##Device = Tablets, Ipads (landscape)
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* CSS */
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
*/
@media (min-width: 481px) and (max-width: 767px) {
    #hero-banner {
        background-position: left;
    }

    #destinations {
        background-attachment: local;
    }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
*/
@media (min-width: 320px) and (max-width: 480px) {
    #hero-banner {
        background-position: left;
    }

    #destinations {
        background-attachment: local;
    }

    .swiper .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset, 12px) !important;
    }

    .swiper .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 12px) !important;
    }
}
