.lateral-sidebar {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    padding: 5px;
    border-radius: 0 5px 5px 0;

    position: fixed;
    left: 0;
    top: 10%;

    
    background-color: rgb(32, 32, 32);
    z-index: 6;
    opacity: 1;
    transition: 1s opacity;
}

.hide-sidebar {
    opacity: 0;
    pointer-events: none;
    
}

.social-network-link {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    width: 24px;
    height: 24px;
    border-radius: 20%;
}

.icon.insta {
    padding: 0;
}

.icon {
    color: white;
    box-sizing: border-box;
    transition: 1s background;
    padding: 2px;
}


.insta {
    position: relative;
}

.insta svg {
    position: relative;
    justify-self: center;
    align-self: center;
}

.insta::before {
    content: "";
    position: absolute;
    background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: 1s opacity;
}

.icon.insta:hover::before, .social-pair.insta:hover .icon.insta::before {
    opacity: 1;
}

.icon.fb:hover, .social-pair.fb:hover .icon.fb {
    background: #3b579d;
}
.icon.linkedin:hover, .social-pair.linkedin:hover .icon.linkedin {
    background: #007ebb;
}
.icon.ytb:hover, .social-pair.ytb:hover .icon.ytb {
    background: #ff0000;
}