.wrapContacts{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: 0 auto;
    max-width: 1024px;
    width: 100%;
}
.wrapContacts > div:nth-child(-n+3){
    position: relative;
    padding: 25px;
    min-width: 200px;
    color: #fbfbfb;
    margin: 0 0 0 50px;
    color: #A9A9A9;
    flex-grow: 1;
}
.cName{
    font-size: 24pt;
    color: #fbfbfb;
    margin: 0;
}
.cName > i{
    position: absolute;
    left: -25px;
    top: 25px;
    color: #b22222;
}
.socials{
    font-size: 16pt;
}
.address > p:nth-child(n+2), .phones > p:nth-child(n+2), .socials > p:nth-child(n+2){
    line-height: 1.5em;
    margin-top: 10px;
}
.sign{
    color: #fbfbfb;
    font-size: 14pt;
}
.phones{
    font-size: 22pt;
    white-space: nowrap;
}
.sc{
    font-size: 28pt;
    margin: 0 2px;
    color: #fbfbfb;
    opacity: 0.6;
    transition: .1s ease-in;
}
.sc:hover{
    opacity: 1;
    transform: scale(1.2, 1.2);
    cursor: pointer;
}
.fa-lg{
    width: 38px;
    height: 38px;
    background-image: url(../images/LG-white-100x100.png);
    background-size: cover;
}

@media (max-width: 800px){
    .wrapContacts{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .wrapContacts > div:nth-child(-n+3){
        margin: 0 0 0 0;
    }
    .cName > i{
        left: 30px;
        top: 25px;
    }
    .map{
        width: calc(100% - 50px);
    }
}