.social-icons {
    display: flex;
    justify-content: space-around;
    align-content: center;
    padding-top: 20px;
}

.social-icons .circle-cont {
    width: 45px;
    height: 45px;
    position: relative;
}

.social-icons .circle-cont img {
    position: absolute;
    bottom: 10px;
    right: 0;
    height: 101%;
    width: 101%;
    pointer-events: none;
}

@media (min-width: 1025px) {
    .social-icons .circle-cont {
        width: 75px;
        height: 75px;
    }

    .social-icons .circle-cont img {
        bottom: 15px;
    }
}

.social-icons .circle-cont:nth-child(2n + 1) img {
    transform: rotate(45deg);
}

.social-icons .circle-cont:nth-child(2n + 2) img {
    transform: rotate(-45deg);
}

.social-icons .social-icon {
    font-weight: normal;
}

.social-icons .social-icon i {
    color: #fff;
    font-size: 25px;
}

@media (min-width: 1025px) {
    .social-icons .social-icon i {
        font-size: 42px;
    }
}
