/* Portrait tablet to landscape and desktop */
@media (min-width: 1200px) { 

    .touchedup{
    background-image: url(/images/2021/08/08/croque-touch2.png);
        background-repeat: no-repeat;
        background-position: right center;
        background-size: contain;
    }
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 992px) and (max-width: 1199px) { 
 .touchedup{
    background-image: url(/images/2021/08/08/croque-touch2.png);
        background-repeat: no-repeat;
        background-position: right center;
        background-size: contain;
    }
}

/* Portrait tablet to landscape and desktop */

@media (min-width: 768px) and (max-width: 991px) {

}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
.sp-page-builder .page-content #section-id-1547614761865{
        background-image: none;
    }
}

/* Landscape phones and down */
@media (max-width: 480px) {
}
/*iPhone 8  in landscape*/
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) { 

}



/*iPhone 8 plus in landscape*/
@media only screen 
and (min-device-width : 414px) 
and (max-device-width : 736px) 
and (orientation : landscape) { 
}
/*iPad 1 & 2 in portrait*/
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) 
and (-webkit-min-device-pixel-ratio: 1) { }