.inner .header{
    background: #fff;
}

.collections{
    margin: 50px auto 0 !important;
}
.collections-title{
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    text-align: center;
}
@media screen and (max-width: 992px){
    .collections-title{
        font-size: 38px;
        line-height: 40px;
    }
}
.collections-back{
    margin-top: 40px;
}
.collections-back__link{

}

/* SERIES */
.collections-series{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(120px, 1fr));
    grid-column-gap: 5px;
    align-items: center;
}
.collections-series__link{
    font-weight: 400;
    transition: opacity .3s ease;
    display: block;
    margin-bottom: 20px;
}
.collections-series__link:hover,
.collections-series__link.active{
    opacity: .5;
}
/* /SERIES */

/* TOP */
.collections-top{
    display: grid;
    grid-template-columns: 40% 60%;
    grid-column-gap: 20px;
    margin-top: 40px;
}
.collections-top__info{
    padding-bottom: 20px;
}
.collections-top__info-title{
    font-size: 64px;
    line-height: 64px;
    font-weight: 800;
    margin-bottom: 20px;
}
.collections-top__info-text{
    font-size: 25px;
    line-height: 30px;
    max-width: 830px;
    width: 100%;
}
.collections-top__images{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.collections-top__images-picture{
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}
@media screen and (max-width: 1200px){
    .collections-top__images-picture{
        height: 400px;
    }
}
@media screen and (max-width: 992px){
    .collections-top{
        grid-template-columns: 100%;
        grid-row-gap: 40px;
        margin-bottom: 40px;
    }
    .collections-top__info-title{
        font-size: 38px;
        line-height: 40px;
    }
    .collections-top__info-text{
        font-size: 20px;
        line-height: 22px;
    }
}
@media screen and (max-width: 576px){
    .collections-top__images{
        grid-template-columns: 100%;
    }
}
/* /TOP */

/* TABS */
.collections-tabs{

}
.collections-tabs__top{
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-column: 1/5;
    grid-column-gap: 20px;
    align-items: center;
    max-width: 350px;
    width: 100%;
}
.collections-tabs__top-btn{
    cursor: pointer;
    padding: 10px 0;
    border: none;
    outline: none;
    font-size: 15px;
    line-height: 16px;
    display: flex;
    align-items: center;
    background: #fff;
    transition: 0.5s;
}
.collections-tabs__top-btn svg{
    margin-left: 4px;
    width: 14px;
    height: 8px;
    display: block;
}
.collections-tabs__top-btn svg path{
    stroke: #B9B9B9;
}
.collections-tabs__top-btn.active, .accordion:hover{
    color: #000;
}
.collections-tabs__top-btn.active svg{
    transform: rotate(180deg);
}
.collections-tabs__top-btn.active svg path, .collections-tabs__top-btn:hover svg path{
    stroke: #000;
}

.collections-tabs__accordion{
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all .3s linear;
}
.collections-tabs__accordion.active{
    display: block;
    opacity: 1;
    visibility: visible;
}
/* /TABS */






