#contact .title{
    text-align: left;
}

#contact{
    width: 100%;
    background-color: white;
    height: 400px;
    display: flex;
    align-items: center;
}

#contact > div{
    width: 75%;
    margin: 0 auto;
}

#contacts, #social-networks{
    display: flex;
    align-items: start;
    justify-content: space-around;
    width: 100%;
    line-height: 25px;
}

#contacts a:hover, #social-networks a:hover{
    color: #C01D1D;
}

.contact-icon{
    margin-right: 15px;
    margin-top: 15px;
}

.contact-icon, .contact-data{
    float: left;
}

.contact-icon img{
    width: 32px;
    height: auto;
}

@media only screen and (max-width: 599px) {
    #contact{
        height: auto;
    }

    #contact > div{
        width: 80%;
    }

    #contacts{
        flex-direction: column;
        line-height: initial;
    }
}
