.container {
    padding-top: 20px;
}

.container>h4 {
    margin-bottom: 30px;
}

.soc {
    display: block;
    padding: 18px;
    box-shadow: none;
    border-radius: 2px;
    text-align: center;
    padding-bottom: 0px;
    display: inline-block;
    min-height: 220px;
}

.soc:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
}

.soc:hover>div {
    transform: scale(1.05);
}

.soc>div {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .2s .1s ease-in;
}

.soc .socDownLink,
.soc .socDownLink:link,
.soc .socDownLinka:visited {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 20px auto;
    margin: 3px;
    margin-top: 10px;
}

.soc .socDownLink:hover {
    background-position: bottom center;
}


/*==============================[MEDIA]==================================*/

@media only screen and (min-width: 1400px) {
    .soc>div {
        width: 180px;
        height: 180px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .soc>div {
        width: 185px;
        height: 185px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .soc>div {
        width: 190px;
        height: 190px;
    }
}

@media only screen and (max-width: 991px) {
    .soc>div {
        width: 80vw;
        height: 80vw;
    }
}