﻿.main-social-wrapper {
    display: flex;
    justify-content: center;
    align-content: center;
}

.social-wrapper {
    border-radius: 100%;
    width: 60px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: #fff;
    box-shadow: 0 0 15px 0px #fff;
    margin: 10px 25px;
}

.social-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all ease-in-out 0.35s;
    background-color: #44678d;
}

.social-wrapper button {
    overflow: hidden;
    position: relative;
    border-radius: 100%;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
}

.social-icon {
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all ease-in-out 0.35s;
}

.iins {
    font-size: 2rem;
    transition: all ease-in-out 0.5s;
    color: #fd1d1d;
}

.ifb {
    font-size: 2rem;
    transition: all ease-in-out 0.5s;
    color: #3b5998;
}

.iin {
    font-size: 2rem;
    transition: all ease-in-out 0.5s;
    color: #0e76a8;
}

.social-wrapper:hover .social-overlay {
    transform: translateY(-100%);
}

.social-wrapper:hover .iins {
    color: #fff;
}

.social-wrapper:hover .ifb {
    color: #fff;
}

.social-wrapper:hover .iin {
    color: #fff;
}

.social-wrapper:hover .social-icon {
    transform: rotateY(360deg);
}

@media only screen and (max-width: 480px) {
    .social-wrapper {
        width: 60px;
        height: 55px;
    }

    .ifb, .iin, .iins{
        font-size:2rem;
    }
}