.top-bar .social-icon {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 80px;
    margin: 20px 0;
    gap: 30px;
}

.top-bar .social-icon li {
    position: relative;
    background: #fff;
    width: 50px;
    height: 50px;
    list-style: none;
    box-shadow: inset 5px 5px 10px rgba(245, 241, 241, 0.1),
        10px 15px 10px rgb(247, 240, 240, 0.2);
    border-radius: 15px;
    transition: 0.5s;
}

.top-bar .social-icon li::before {
    content: '';
    position: absolute;
    inset: 4;
    box-shadow: inset 4px 4px 0 #fff;
    z-index: 1;
    border-radius: 20px;
    filter: blur(2px);
    pointer-events: none;
}

.top-bar .social-icon li:hover {
    transform: translateY(20px);
}

.top-bar .social-icon li a {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 2em;
    color: var(--clr);
}

@media (max-width: 800px) {
  .top-bar .social-icon{
    padding-right: 20px;
  }
}