.gap-3{
    gap: 16px;
}

.lh-1{
    line-height: 3rem;
}

.fs-18-semi{
    font-size: 18px;
    font-weight: 600;
}

.color-light-black{
    color: #323232;
}

.fs-16{
    font-size: 16px;
    font-weight: 400;
    color: #323232;
    margin-bottom: 0;
}

.pt-32{
    padding-top: 32px;
}

.pb-32{
    padding-bottom: 32px;
}

.mb-20{
    margin-bottom: 20px;
}

p{
    margin-bottom: 0;
}

.cover__title{
    margin-bottom: 36px;
}

.cover__section{
    margin-top: 38px;
}

.cover__list{
    gap: 80px;
    overflow-x: scroll;
}

.cover__list::-webkit-scrollbar{
    display: none;
}

.cover__list-item{
    width: 160px;
}

.cover__list-item-img{
    position: relative;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in-out;
    transform-origin: top;
    border-radius: 16px;
}

.cover__list-item-material{
    width: 90px;
    height: 90px;
    position: absolute;
    left: 50%;
    top: calc(100%);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-in-out;
    z-index: 3;
}

.cover__list-item-material img{
    width: 100%;
    height: 100%;
}

.cover__list-item-text{
    font-size: 18px;
    font-weight: 500;
    margin-top: 45px;
    color: #323232;
    text-align: center;
}

.cover__list-item-img::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.cover__list--horizontal .cover__list-item-img {
    height: 210px;
    width: 100%;
    transition: none;
}

.cover__list--horizontal .cover__list-item {
    display: block;
    width: 100%;
}

.cover__list--horizontal .cover__list-item-material {
    display: none;
}

.cover__list--horizontal .cover__list-item-text {
    margin-top: 15px;
}

.cover__list-item:hover .cover__list-item-img {
    transform: scaleY(0.95);
}

.cover__list-item:hover .cover__list-item-img::after {
    opacity: 1;
}

.cover__list-item:hover .cover__list-item-material {
    transform: translate(-50%, -50%) scale(1.3);
}

.cover__banner{
    position: relative;
    background: url('../cover-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 160px;
    border-radius: 16px;
    margin-top: 40px;
}

.cover__banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    pointer-events: none;
}

.cover__banner p{
    font-size: 32px;
    color: white;
    z-index: 2;
}

.cover__description{
    margin-top: 64px;
}

.cover__description-title{
    font-size: 24px;
    font-weight: 600;
    color: black;
}

.cover__description-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.cover__description-content-item-text{
    font-size: 16px;
    font-weight: 400;
    color: #323232;
    margin-bottom: 0;
}

.cover__table{
    width: fit-content;
}

.cover__table-row{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cover__table-row div:first-child{
    padding-bottom: 8px;
    border-bottom: 1px solid #E7E7E7
}

.cover__table-row div{
    padding: 0 8px;
}

.cover__table-row p{
    margin-bottom: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #323232;
}

.cover__table-item{
    padding: 8px;
}

.cover__colors{
    gap: 32px;
}

.cover__colors-item{
    width: 90px;
}

.cover__colors-item-color{
    width: 90px;
    height: 45px;
    border-radius: 8px;
    box-shadow: 0px 0px 16px 0px #5F5F5F1A;
    margin-bottom: 12px;
}

.social-btn{
    height: 42px;
    width: 100%;
    max-width: 180px;
    border: none;
    color: white!important;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram{
    background: #189CDE;
}

.vk{
    background: #147BFF;
}

.cover__video{
    margin-bottom: 110px;
}


@media screen and (max-width: 1024px) {
    .cover__list{
        gap: 40px;
    }
    .cover__list-item-img{
        width: 160px;
    }
    .cover__description-content{
        grid-template-columns: repeat(1, 1fr);
    }
}