.main {
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.logo {

}

.contacts {
    font-size: 1.6em;
    color: #474747;
    margin-top: 40px;
    font-weight: 500;
    display: flex;
    justify-content: center;

}

.contacts img {
    width: 35px;
    margin-right: 5px;
}


.social-media {
    font-size: 1.6em;
    margin-top: 25px;
    font-weight: 300;
}

.social-media a {
    color: #484848;
    text-decoration: none;
}

.social-media .col-2 {
    display: flex;
    justify-content: center
}

.social-media img {
    width: 35px;
    margin-right: 5px;
}

.address {
    font-size: 1.6em;
    margin-top: 140px;
    font-weight: 300;
    color: #474747;
}

/*******************************/
/********MEDIA QUERY **********/
/******************************/
@media (max-width: 60em) {
    .logo img {
        width: 100%;
    }

    .col-2 {
        flex: 100%;
    }
    .social-media{
        margin-top: 60px;
    }
    .social-media .col-2{
        margin-bottom:10px;
    }
    .contacts p{
        margin-bottom:-40px;
    }
    .address{
        font-size:1.4em;
    }
}