/*local CSS DTS samplings 2024 - 19-09-2024 */
 body, html { overflow-x: clip !important; } 

   .for-mobile{
 	    	display: none;
 	    }

 	    .dp-faq__answer-content {
    font-size: 15px;
     }

 @media (max-width: 480px) {
 	    h1.samplings-header__title, .samplings-header__title {
 	    	font-size: 11vw;
 	    }
 	    .for-mobile{
 	    	display: block;
 	    }
 }

 @media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) {
 .for-mobile{
 	    	display: none;
 	    }
 	     h1.samplings-header__title, .samplings-header__title {
 	    	font-size: 55px;
 	    }

}
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) {
	 .for-mobile{
 	    	display: none;
 	    }
 	      h1.samplings-header__title, .samplings-header__title {
 	    	font-size: 70px;
 	    }


}