body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background: #FFFFFF url(img/background.png) left top;
    background-repeat:  repeat-x;
}

a {
    text-decoration: none;
    color: #000;
}

.container {
    width: 960px;
    margin: 0 auto;
}

.header_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px;
}

.logo {
    width: 70px;
    height: auto;
}

h1 {
    font-size: 25px;
}

.phone {
    text-decoration: none;
    font-size: 20px;
    color: #000;
    -webkit-transition: .2s;
    transition: .2s;
}

.phone:hover {
    border-bottom: 2px solid #F7B900;
    color: #F7B900;
}

/* MAIN */

.img_container {
    width: 100%;
    max-width: 960px;
}

.banner {
    margin-top: 30px;
    width: 100%;
    max-width: 960px;
    height: auto;
    overflow: hidden;
}

.scuare {
    margin: 5px auto;
    background-color: #F7DF97;
    border: 2px dashed #000;
}

.tel_2:hover {
    color: #fff;
}

p {
    font-size: 26px;
    text-align: center;
}

/* ABOUT  */

.about {
    background-color: #E2ECA7;
}

h2 {
    text-align: center;
    padding-top: 20px;
}

hr {
    color: #fff;
}

.benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; 
}

.text {
    font-weight: 600;
}

.benefits_1,
.benefits_2,
.benefits_3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 33.33%;
    padding: 25px;
}

.icon {
    width: 100px;
    height: 100px;
}

span {
    text-align: center;
}


/* FOOTER */

footer {
    margin-top: 10px;
    background-color: #F7DF97;
    text-align: center;
    padding: 15px;
}


@media screen and (max-width: 600px) {
    
    body {
        
    }
    .container {
        width: 100%;
        max-width: 550px;
}
    
    .logo {
        width: 80px;
        height: auto;
   }
    
    .header_content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    h1 {
    font-size: 25px;
    text-align: center;
}
    
    .phone {
        font-size: 30px;
    }
    .benefits {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }  
    
    p {
        font-size: 18px;
        text-align: center;
        padding: 0 10px;
}
    
    .icon {
    width: 100px;
    height: 100px;
}
    h2 {
    font-size: 22px;
    padding: 10px 10px 0 10px;
}
    
    span {
       font-size: 20px; 
    }
    .benefits_1,
    .benefits_2,
    .benefits_3 {
         width: 70%;
    }
    
    footer {
        font-size: 15px;
    }
   
}

