#header-section {
    position: relative;
    background: #282364;
    padding: 10px 0;
}

#header-section::before {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    content: "";
    background: var(--secondary);
    -webkit-clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

.head-contact {
    position: relative;
}

.head-contact i {
    font-size: 16px;
    float: left;
}


.head-contact:hover i {
    font-size: 18px;
}

.head-social {
    position: relative;
}


.head-social ul {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.head-social ul li {
    list-style: none;
}

.head-social ul li a {
    width: 70px;
    height: 40px;
    background-color: #ffffff00;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    margin: 0px 0px 0 5px;
    display: block;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 30%);
    z-index: 1;
}

.head-social ul li a .icon {
    position: relative;
    color: #fff;
    transition: .5s;
    z-index: 3;
}

.head-social ul li a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
}

.head-social ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
}

.head-social ul li a:hover:before {
    top: 0;
}

.head-social ul li:nth-child(1) a:before {
    background: #06c755;
}

.head-social ul li:nth-child(2) a:before {
    background: #3b5999;
}

/* end */
@media (max-width: 992px) {}