
body{
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.container{
    height: calc(100vh - 40px);
    max-width: 900px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 0 20px;
/*    border: 1px solid red;*/
}

.text,
.foto{
    height: 50%;
    width: 50%;
    max-width: 500px;
    max-height: 300px;
   /* border: 1px solid red; */
}
.text h1{
    color: #3c8dbc;
    text-transform: uppercase;
    font-size: 60px;
    margin-bottom: 5px;
    margin-top: 20px;
}
.text p{
    color: #999;
    font-size: 18px;
    margin-bottom: 45px;
}
.tel{
    font-size: 18px;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #FFAA00;
    padding: 10px 25px 10px 20px;
    border-radius: 25px;
    box-shadow: 1px 1px 10px rgb(0,0,0, 0.2);
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
    -o-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
}
.tel:hover{
    background-color: #FFAA00;
    box-shadow: 1px 1px 10px rgb(0,0,0, 0.4);
}
.foto{
    background-image: url(images/img_1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
@media (max-width: 790px) {
    .text h1 {
        font-size: 40px;
        margin-top: 5px;
    }
}
@media (max-width: 610px) {
   .container{
        display: block;
   }
   .text,
   .foto{
        width: 100%;
        min-height: 250px;
        text-align: center;

   }
}