/*
<576px	Extra small
≥576px	sm
≥768px	md
≥992px	lg
≥1200px xl
*/

/* lg */
@media (max-width: 1199px){
}

/* md */
@media (max-width: 991px){
    body > header .logo{top: 5px;}
    body > header .logo img{max-height: 100px;}
}

/* sm */
@media (max-width: 767px){
    body > footer{text-align: center;}
    body > footer .container iframe{margin: 0 auto; width: auto;}
    
    body > header .top ul li{margin-right: 20px;}    
    body.home #about-us{background-image: none; text-align: center;}
    body.home #about-us .left .text{padding-right: 0;}
    body.home #about-us .left .points{margin-bottom: 25px;}
}

/* xs */
@media (max-width: 575px){
    body > header .logo{top: 45px;}
    body > header .logo img{max-height: 55px;}
}