/*big tablets to 1200px (width smaller than 1140px row)*/
@media only screen and (max-width: 1200px) {
    .hero-text-box {
	   width: 100%;
       padding: 0 2%;
    }
    .row {padding: 0 2%;}
}

/*small tablets to big tablets: from 768px to 1023*/

@media only screen and (max-width: 1023px) {
    body { font-size: 18px; }
    section { padding: 60px 0;}
    
    }



/* small phones to small tablets from 481 to767px*/

@media only screen and (max-width: 767px) {
    body {
        font-size: 16px;
    }
    section { padding: 30px 0; }
    .row,
    .hero-text-box { padding: 0 4%;}
    .col { 
        width: 100%;
        margin: 0 0 4% 0;
    }
    .main-nav { display: none; }
    
    h1 { font-size: 150%; }
    h2 { font-size: 130%; }
    .discription {font-size: 80%;}
    .btn-full {font-size: 80%;}
    .box img {
    width: 50%;
    height: auto;
    margin-bottom: 15px;
    
}

}

/* small phones; from0 to 480px*/

@media only screen and (max-width: 480px) {
    section { padding: 25px 0;}
    h1 { font-size: 150%; }
    h2 { font-size: 120%; }
    td {font-size: 75%;}
    .btn-full {font-size: 60%;}
    p {font-size: 70%;}
    .footer{width: 100%}
}

















