:root {
    --promoGap: 50px;
    --promoGap_mob: 20px;
    --section-border-height: 23px;
    --elementsOffset: 5px;
    --elementShadowSpread: 2px;
    --color-silver: #BDBDBD;
    --color-matterhorn: #535353;
    --color-whisper: #e8e8e8;
}
button {
    background: none;
    border: none;
}
.is-furore {
    font-weight: normal;
    font-family: "Furore";
    line-height: 1;
}
.eva-banner img {
    height: 250px;
    object-fit: cover;
    display: block;
    width: 100%;
}
@media (max-width: 991px) {
    .eva-banner img {
        height: 20vw;
    }
}
@media (max-width: 575px) {
    .eva-banner img {
        height: 43vw;
    }
}

.section-minecraft {
    padding: calc(100px + var(--section-border-height)) 0 100px;
    position: relative;
}
.section-minecraft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--section-border-height);
    background: url(./img/border.png) repeat-x center / auto 100%;
}

.section-minecraft:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--section-border-height);
    background: url(./img/border.png) repeat-x center / auto 100%;
}
.section-minecraft--products {
    padding: calc(70px + var(--section-border-height)) 0 70px;
    background-color: var(--color-silver);
}
.section-minecraft--video {
    background: url(./img/bg-video.jpg) repeat-x 0 var(--section-border-height) / auto 100%;
}
.section-minecraft--intro {
    background: url(./img/bg-sky.jpg) no-repeat center / cover;
    overflow: hidden;
}
@media (max-width: 575px) {
    .section-minecraft {
        padding: calc(40px + var(--section-border-height)) 0 40px;
    }
}

.minecraft-features {
    position: relative;
    border: var(--elementsOffset) solid black;
    background-color: var(--color-silver);
    padding: 50px;
    text-align: center;
    color: black;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    box-shadow: calc(var(--elementShadowSpread) + var(--elementsOffset)) calc(var(--elementShadowSpread) + var(--elementsOffset)) 0px var(--elementShadowSpread) black;
}
.minecraft-features::before,
.minecraft-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-whisper);
}
.minecraft-features::before {
    width: 100%;
    height: var(--elementsOffset);
}
.minecraft-features::after {
    height: 100%;
    width: var(--elementsOffset);
}
@media (max-width: 767px) {
    .minecraft-features {
        padding: 20px;
        margin: 0 5px 0 15px;
    }
}

.minecraft-features__title {
    font-size: 48px;
}
@media (max-width: 991px) {
    .minecraft-features__title {
        font-size: 40px;
    }
}
@media (max-width: 575px) {
    .minecraft-features__title {
        font-size: 28px;
    }
}
.creeper {
    position: absolute;
    right: 0;
    top: -45px;
    transform: translateX(50%);
    pointer-events: none;
}
@media (max-width: 991px) {
    .creeper {
        width: 120px;
    }
}
@media (max-width: 767px) {
    .creeper {
        top: auto;
        bottom: -60px;
        transform: none;
        width: 22%;
    }
    .section-minecraft--intro {
        overflow: visible;
        z-index: 1;
    }
}
.minecraft-features__text {
    font-size: 16px;
}
.minecraft-features__small-title {
    font-size: 18px;
}
.minecraft-features__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.minecraft-feature {
    border: 5px solid black;
    background-color: var(--color-matterhorn);
    transition: background-color .3s ease-out;
    position: relative;
    padding: 10px 10px 20px;
    max-width: 190px;
    display: flex;
    align-items: center;
}
.minecraft-feature::before {
    content: '';
    position: absolute;
    right: 0;
    width: 5px;
    height: 100%;
    top: 0;
    background-color: var(--color-silver);
}
.minecraft-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5px;
    right: 0;
    background-color: var(--color-silver);
}
.minecraft-feature:hover {
    background-color: black;
}
.minecraft-feature__icon {
    position: absolute;
    top: calc(50% - 5px);
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 80%;
    max-height: 70%;
    transition: opacity .3s ease-out;
}
.minecraft-feature:hover .minecraft-feature__icon {
    opacity: 0;
}
.minecraft-feature__texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
    transition: opacity .3s ease-out;
    opacity: 0;
}
.minecraft-feature:hover .minecraft-feature__texts {
    opacity: 1;
}
.minecraft-feature__title {
    font-size: 14px;
    color: var(--bs-orange);
}
.minecraft-feature__text {
    font-size: 16px;
    color: white;
    line-height: 1;
}
@media (max-width: 575px) {
    /* .minecraft-feature {
        max-width: none;
        width: 100%;
        min-height: 130px;
    } */
    .minecraft-feature__title {
        font-size: 12px;
    }
    .minecraft-feature__text {
        font-size: 14px;
    }
    .minecraft-features__list {
        gap: 10px;
    }
}

.promo-video {
    position: relative;
    aspect-ratio: 1198/679;
    border: var(--elementsOffset) solid black;
}
.promo-video::before,
.promo-video::after {
    content: '';
    position: absolute;
    background-color: var(--color-silver);
    bottom: 0;
    right: 0;
    z-index: 5;
    box-shadow: calc(0px + var(--elementsOffset)) calc(0px + var(--elementsOffset)) 0px 5px black;
}
.promo-video::before {
    height: 100%;
    width: var(--elementsOffset);
}
.promo-video::after {
    width: 100%;
    height: var(--elementsOffset);
}
.promo-video__poster,
.promo-video__frame {
    position: absolute;
    top: 0;
    height: 100%;
}
.promo-video__poster {
    object-fit: cover;
    /* left: 0.3%;
    width: 98.8%; */
    left: 0;
    width: 100%;
    z-index: 1;
}
.promo-video__frame {
    z-index: 2;
    pointer-events: none;
}
.promo-video iframe {
    /* opacity: 0; */
    position: relative;
    /* left: 0.3%;
    width: 98.8%; */
    left: 0;
    width: 100%;
}
.promo-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 142px;
    aspect-ratio: 142/140;
    cursor: pointer;
    z-index: 3;
}
.promo-video__play .play-btn {
    transition: opacity 0s ease-out;
}
.promo-video__play .play-btn-hover {
    transition: opacity .15s ease-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.promo-video__play:hover .play-btn {
    opacity: 0;
    transition-duration: .5s;
}
.promo-video__play:hover .play-btn-hover {
    opacity: 1;
}
.promo-video__decor {
    position: absolute;
    top: 45px;
    left: 0;
    transform: translateX(-60%);
    z-index: 4;
    pointer-events: none;
}
@media (max-width: 1400px) {
    .promo-video__decor {
        width: 115px;
    }
}
@media (max-width: 757px) {
    .play-btn-hover {
        width: 92.95%;
    }
    .promo-video__play {
        width: 70px;
    }
}
@media (max-width: 575px) {
    .promo-video__decor {
        transform: none;
        left: 0;
        top: -88px;
    }
}

.minecraft-button {
    box-shadow: calc(var(--elementShadowSpread) + var(--elementsOffset)) calc(var(--elementShadowSpread) + var(--elementsOffset)) 0px var(--elementShadowSpread) black;
    font-size: 20px;
    font-weight: normal;
    font-family: "Furore";
    line-height: 1;
    color: black;
    height: 72px;
    display: flex;
    width: 100%;
    align-items: center;
    border: var(--elementsOffset) solid black;
    position: relative;
    background-color: var(--color-silver);
    justify-content: center;
    padding: var(--elementsOffset) 0 0 var(--elementsOffset);
    transition-property: background-color, box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}
.minecraft-button::before,
.minecraft-button::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color-whisper);
    transition: background-color .2s ease-out;
}
.minecraft-button::before {
    width: var(--elementsOffset);
    height: 100%;
    
}
.minecraft-button::after {
    width: 100%;
    height: var(--elementsOffset);
}
.minecraft-button:hover {
    background-color: var(--bs-orange);
    box-shadow: calc(var(--elementShadowSpread) + var(--elementsOffset)) calc(var(--elementShadowSpread) + var(--elementsOffset)) 0px var(--elementShadowSpread) transparent;
}
.minecraft-button:hover::before,
.minecraft-button:hover::after {
    background-color: white;
}
.eva-product-controls {
    --gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 15px var(--gap);
    justify-content: center;
}
.eva-product-button-wrapper {
    width: 314px;
    flex-shrink: 0;
}
.zone__product__price__value {
    color: black;
}
.zone__product__price__value .b-rub {
    font-weight: bold;
}
.zone__product__price__old-value {
    color: black;
    text-decoration: none;
    position: relative;
}
.zone__product__price__old-value::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
}
.evo-promocode {
    text-align: center;
    font-size: 16px;
    color: black;
    font-weight: bold;
    margin-top: 13px;
    position: relative;
}
.evo-promocode__success {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 16px;
    font-weight: bold;
    color: var(--bs-orange);
    opacity: 0;
    animation: pop 3s ease forwards;
}
@keyframes pop {
    0% {
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.evo-promocode__code {
    color: var(--bs-orange);
    margin-left: .5em;
}
.zone__product__price {
    padding-top: 10px;
}
.eva-products {
    display: grid;grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.eva-product {
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--promoGap);
}
.eva-product-gallery {
    max-width: 100%;
    position: relative;
    background-color: var(--color-matterhorn);
    border: var(--elementsOffset) solid black;
}
.eva-product-gallery::before,
.eva-product-gallery::after {
    content: '';
    position: absolute;
    background-color: var(--color-silver);
    bottom: 0;
    right: 0;
}
.eva-product-gallery::before {
    width: var(--elementsOffset);
    height: 100%;
}
.eva-product-gallery::after {
    height: var(--elementsOffset);
    width: 100%;
}
.eva-product-gallery .swiper-slide {
    padding: 40px 0 70px;
}

.list-plused {
    margin: 0;
    padding: 0;
    color: black;
}
.list-plused li {
    position: relative;
    padding-left: 1.8em;
    list-style-type: none;
    line-height: 1.125;
    font-size: 16px;
    margin-bottom: 1.67em;
    font-weight: bold;
}
.list-plused li:last-child {
    margin-bottom: 0;
}
.list-plused li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMyAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuMDgwMDggNS40NzM2M0gxMi40Mzc1VjcuMjUyOTNINy4wODAwOFYxMi40Mjk3SDUuMjkzOTVWNy4yNTI5M0gwLjA5OTYwOTRWNS40NzM2M0g1LjI5Mzk1VjAuMTM1NzQySDcuMDgwMDhWNS40NzM2M1oiIGZpbGw9IiNEQUZDMDEiLz4KPC9zdmc+Cg==) no-repeat center/13px;
}
.eva-product__title {
    color: black;
    font-weight: normal;
    font-family: "Furore";
    font-size: 48px;
    line-height: 1;
    text-align: center;
}
.product-carousel-nav-wrapper {
    position: absolute;
    bottom: calc(-1 * var(--elementsOffset));
    right: calc(-1 * var(--elementsOffset));
    z-index: 10;
    display: flex;
}
.product-carousel-nav {
    transform: none;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--elementsOffset) solid black;
    background-color: var(--color-silver);
    transition: background-color .2s ease-out;
    width: 63px;
    height: 75px;
}
.product-carousel-nav_prev {
    border-right-width: calc(var(--elementsOffset)  / 2);
}
.product-carousel-nav_next {
    border-left-width: calc(var(--elementsOffset)  / 2);
}
.product-carousel-nav:hover {
    background-color: var(--bs-orange);
}
.product-carousel-nav img {
    width: 20px;
    height: auto;
}
.product-carousel-nav_prev img {
    transform: translateX(-1);
}

@media (max-width: 991px) {
    .eva-product__title {
        font-size: 36px;
    }
    .eva-product-button-wrapper {
        width: 315px;
        margin: auto;
    }
}
@media (max-width: 767px) {
    .eva-products {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .eva-product {
        gap: var(--promoGap_mob);
    }
}
@media (max-width: 575px) {
    .eva-products {
        padding: 0 5px;
    }
}

.section-promo {
    margin-top: 80px;
}
@media (max-width: 1200px) {
    .section-promo {
        margin-top: 50px;
    }
}