.kolonki{
    box-sizing: border-box;
    width:  100vw;
    text-align: center;
    position: absolute;
    overflow: hidden;
    display: flex;
    margin: 1vw;
    z-index: 1;
    justify-content: center;
}
@media screen and (min-width: 320px) and (max-width:480px) {
	.kolonki{
        padding: 0;
        display: inline-flex;
        width: 100vw;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
	}  
}
.kolonki ul{
    width: 90%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 22vw;
    display: inline-flex;
    gap: 5vw;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
}
@media screen and (min-width: 320px) and (max-width:480px) {
    .kolonki ul{
        gap: 5vw;
    }
}
.kolonki li{
    position: relative;
    display: inline-block;
    text-align: left;
}
@media screen and (min-width: 320px) and (max-width:480px) {
	.kolonki li{
        width: 100%;
	}  
}
.kolonki a{
    font-size: 1.5vw;
    display: flex;
    padding: 1vw;
    gap: 2vw;
    text-decoration: none;
    border-radius: 10%;
    background: linear-gradient( silver, 10%, grey );
    color: white;
    box-shadow: 0px 10px 10px #dbd7d2;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 320px) and (max-width: 480px){
.kolonki a {
    font-size: 2vw;
    padding: 1vw;
    gap: 2vw;
}
}
.kolonki img{
    width: 5vw;
}
@media screen and (min-width: 320px) and (max-width:480px) {
    .kolonki img {
        width: 5vw;
    }
}
@media screen and (min-width: 480px) and (max-width:960px) {
    .kolonki img {
        width: 5vw;
    }
}
 @media screen and (min-width: 960px) and (max-width:1920px) {
        .kolonki img {
            width: 2vw;
        }
}
.kolonki a:hover{
    background: linear-gradient( grey,  30%, silver);
    color: gray;
    cursor: pointer;
}

.library-content{
    display: none;
    position: absolute;
    background-color: none;
    min-width: 130px;
    left: 0;
    z-index: 10;
}
.library-content_2{
    display: none;
    position: absolute;
    background-color: none;
    min-width: 100px;
    right: -19vw;
    top: 73px;
    z-index: 15;
}

@media screen and (min-width: 320px) and (max-width:480px) {
    .library-content {
        min-width: 50px;
    }
}
@media screen and (min-width: 480px) and (max-width:960px) {
    .library-content {
        min-width: 50px;
    }
}
@media screen and (min-width: 960px) and (max-width: 1024px) {
    .library-content {
        min-width: 100px;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1920px) {
    .library-content {
        min-width: 26vw;
    }
}
.library-content a{
    border-radius: 0;
    color: white;
    padding: 20px;
    text-decoration: none;
    display: block;
    text-align: right;
  }
  @media screen and (min-width: 320px) and (max-width: 480px) {
    .library-content a{ 
    padding: 8px;
    }
  }
  .library-content a:hover {background-color: none;}
  .library:hover .library-content {
    display: block;
  }
.library_2{
    display: none;
}
  .library:hover .library_2{
    display: block;
  }
  .library_2:hover .library-content_2 {
    display: block;
  }