body {
    background: #EFF0F3;
    color: #101010;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin: 0;
}

h1 {
    font-size: 60px;
    margin: 10px 0 20px;
}

h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
}

p {
    font-size: 22px;
}

ul {
    margin: 15px auto;
    list-style: none;
    padding: 0;
}

li {
    padding: 5px 0;
}


.logo {
    display: block;
    margin: 20px auto 0;
    width: 280px;
    height: 190px;
    background: url(../img/logo-master-immobiliare.png) center center no-repeat;
    background-size: contain;
}

.sezione {
    background: #fff;
    margin: 50px 0 30px;
    padding: 30px 0;
}

.content {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
}

.col-6 {
    padding: 0px 50px;
    flex: 1;
}

.col-6:first-child {
    border-right: 2px solid #EFF0F3;
}

.social {
    margin-bottom: 45px;
}

.social .icon {
    display: block;
    width: 40px;
    height: 40px;
    background-size: contain;
    margin: 0 15px;
}

.social .icon:hover {
    opacity: .7;
}

.icon-fb {
    background: url(../img/facebook.png) center center no-repeat;
}

.icon-casa {
    background: url(../img/casa.png) center center no-repeat;
}


@media only screen and (max-width: 824px) {

    h1 {
        font-size: 50px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    p {
        font-size: 20px;
        padding: 0 20px;
    }

    .sezione .content {
        flex-direction: column;
    }

    .col-6:first-child {
        border: none;
        margin-bottom: 40px;
    }

}

@media only screen and (max-width: 600px) {

    h1 {
        font-size: 40px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    p {
        font-size: 18px;
    }

}