.library-page {
    width: 100%;
    margin: 0 auto;
}
.library_container {
    width: 100%;
}
.library__desc {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 328px;
}
.library__desc-img{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 300;
}
.library__desc-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.library__desc h3 {
    display: block;
    position: absolute;
    z-index: 400;
    color: #fff;
    font-size: 39px;
    font-weight: 600;
}
.library__wrapper {
    width: 1400px;
    margin: 0 auto;
}
.library-tabs {
    margin-top: 40px;
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
}
.library-tab {
    height: 100%;
    font-size: 13px;
    margin-right: 15px;
    padding: 0px 20px;
    padding-top: 20px;
    border-bottom: 2px solid #fff;
}
.library-tab.active{
    border-bottom: 2px solid #005bac}
.library__content {
}
.library__tab-content {
}
.library__tab-wrapper {
}
.library__tab-element {
}
.library-tab {
    cursor: pointer;
    user-select: none;
    color: #777;
}

.library-tab.active {
    color: #005bac;
    border-bottom: 2px solid #005bac;
}

.library__tab-content {
    display: none;
    margin-top: 30px;
}

.library__tab-content.active {
    display: block;
}


@media (max-width: 1450px) {
     .library__wrapper {
        width: 1200px;
     }
}
@media (max-width: 900px) {
         .library__wrapper {
        width: 95%;
        margin: 0 auto;
     }
     .library-tabs{

        height: initial;
        flex-wrap: wrap;
        justify-content: space-between;
     }
     .library-tab{
        width: 45%;
        margin-right: 0;
            padding-top: 10px;
            
            padding-bottom: 10px;
     }
     .library-tab.active{
        border: 2px solid #005bac;
     }
}