header{
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    transition: 0.6s;
    position: fixed;
    display: flex;
    z-index: 999;
    width: 100%;
    left: 0;
    top: 0;
}

header.sticky{
    background: #000;
}

header .menu{
    background-color: rgba(0, 0, 0, 0.7);
    transition-property: right;
    flex-direction: column;
    transition: 0.7s;
    position: fixed;
    min-width: 25%;
    height: 100vh;
    right: -100%;
    top: 0;
}

header .menu.active{
    right: 0;
}

header .menu .close-btn{
    position: absolute;
    margin: 25px;
    left: 0;
    top: 0;
}

header .menu a{
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    margin: 1rem;
    color: #fff;
}

header .menu_container{
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 90%;
}

header img{
    height: 50px;
}

header .menu a:hover{
    transition: 0.5s;
    color: #FDD863;
}

header .btn{
    font-size: 25px;
    cursor: pointer;
    display: block;
    color: #fff;
}

.social_icons ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.open{
    z-index: 99999;
}

.social_icons ul li .fab {
    line-height: 50px;
    color: #000000;
    font-size: 25px;
    transition: .5s;
}

.social_icons ul li .fab:hover {
    color: #ffffff; 
}

.social_icons ul li a{
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
    transform: translate(0,0px);
    background-color: white;
    position: relative;
    text-align: center;
    border-radius: 50%;
    transition: 0.5s;
    display: block;
    height: 50px;
    width: 50px;
}

.social_icons ul li a:hover {
    transform: rotate(0deg) skew(0deg) translate(0, -10px);
}

.social_icons ul li:nth-child(1) a:hover {
    background-color: #3b5999;
}

.social_icons ul li:nth-child(2) a:hover {
    background-color: #ee2a7b;
}

.social_icons ul li:nth-child(3) a:hover {
    background-color: #e4405f;
}

.social_icons ul li:nth-child(4) a:hover {
    background-color: #0077B5;
}

.menu_sa ul{
    display: flex;
    padding: 0;
    margin: 0;
}

.menu_sa ul li {
margin: 0 0.5rem;
}

.menu_sa ul li .fab {
    line-height: 50px;
    color: #000000;
    font-size: 25px;
    transition: .5s;
}

.menu_sa ul li .fab:hover {
    color: #ffffff; 
}

.menu_sa ul li a{
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
    transform: translate(0,0px);
    background-color: white;
    position: relative;
    text-align: center;
    border-radius: 50%;
    transition: 0.5s;
    display: block;
    height: 50px;
    width: 50px;
}

.menu_sa ul li:nth-child(1) a:hover {
    background-color: #3b5999;
}

.menu_sa ul li:nth-child(2) a:hover {
    background-color: #ee2a7b;
}

.menu_sa ul li:nth-child(3) a:hover {
    background-color: #e4405f;
}

.menu_sa ul li:nth-child(4) a:hover {
    background-color: #0077B5;
}

@media (max-width: 1060px){
    .menu_sa{
        visibility: hidden;
        z-index: -99999999;
    }

    header{
        padding: 10px 30px;
    }

    header img{
        height: 40px;
    }

    header .btn{
        display: block;
    }

    header .menu a{
        color: #000;
    }

    header .menu{
        transition-property: right;
        flex-direction: column;
        background: #FDD863;
        transition: 0.5s;
        position: fixed;
        min-width: 50%;
        height: 100vh;
        right: -100%;
        top: 0;
    }

    header .menu.active{
        right: 0;
    }

    header .menu .close-btn{
        position: absolute;
        margin: 25px;
        left: 0;
        top: 0;
    }

    header .menu a{
        font-size: 20px;
        padding: 0 15px;
        display: block;
        margin: 20px;
    }

    .menu_sa ul{
        width: 0;
        height: 0;
    }
    
    .menu_sa ul li {
    margin: 0;
    }
    
    .menu_sa ul li .fab {
        line-height: 0px;
        font-size: 0px;
        transition: .5s;
    }
    
    .menu_sa ul li a{
        box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
        transform: translate(0,0px);
        background-color: white;
        position: relative;
        text-align: center;
        border-radius: 50%;
        transition: 0.5s;
        display: block;
        height: 0px;
        width: 0px;
    }
}