.index-slider-wrapper {
    width: 100%;
}
.index-slider__container{
    max-height: 320px;
    overflow: hidden;
}
.index-slide {
    width: 100%;
    max-width: 100%;
    display: block;
    min-height: 320px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 30%;
    position: relative;
    overflow: hidden;
    /*border: 2px solid #DBDEE0;*/
    box-sizing: border-box;
    border-radius: 10px;
}
.index-slide.gray{
    /*background-position: calc(100% - 22px) calc(100% - 57px);
    background-repeat: no-repeat;
    background-size: 38%;*/
    background-position: right center;
    background-size: cover;
}

.index-slide.red {
    background-position: right center;
    background-size: cover;
}
.index-slide-bg {
    position: absolute;
    width: 60%;
    height: 100%;
    left: -61px;
    top: 0;
    background: #EFF4F7;
    transform: skewX(-21deg);
}

.index-slide.red .index-slide-bg {
    transform: skewX(21deg);
    background: linear-gradient(133.91deg, #EC1C23 18.85%, #EE343A 100.45%, #EF464B 100.46%);
}

.index-slide.red .index-slide-bg:before {
    content: "";
    position: absolute;
    width: 96px;
    height: 158px;
    display: block;
    background-image: url("image/wood.svg");
    bottom: 7px;
    left: 31px;
    transform: skewX(-21deg);
}

.index-slide.red .index-slide-bg:after {
    content: "";
    position: absolute;
    width: 94px;
    height: 94px;
    display: block;
    background-image: url("image/grid.svg");
    transform: skewX(-21deg);
    top: 23px;
    right: 0;
}

.index-slide__text {
    position: relative;
    margin-top: 65px;
    margin-left: 60px;
}

.index-slide__name {
    font-weight: bold;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #9EB4C3;
    margin-bottom: 19px;
    text-transform: uppercase;
}

.index-slide.red .index-slide__name {
    color: #FFFFFF;
}

.index-slide__additional_text {
    font-size: 16px;
    line-height: 130%;
    color: #222222;
}

.index-slide.red .index-slide__additional_text{
    color: #FFFFFF;
}

.index-slide__image{
    position: absolute;
    right: 25px;
    top: 57%;
    transform: translateY(-50%);
    max-height: 80%;
    max-width: 40%;
    object-fit: contain;
    object-position: center;
}

.index-slider{
    max-height: 320px;
}

.swiper-pagination.index-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: static;
    padding: 0;
    height: 40px;
    box-sizing: border-box;
}

.index-slider__dots .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    margin: 0 4px;
    outline: none;
}

@media (max-width: 600px) {
    .index-slide{
        min-height: 100px;
        border-radius: unset;
    }
    .index-slide__name{
        font-size: 16px;
    }
    .index-slide__text {
        margin: 0px 23px;
    }
    .index-slide__additional_text{
        font-size: 12px;
    }
    .index-slide-bg{
        width: 70%;
    }
    .index-slider{
        max-height: 163px;
    }
    .index-slide__image{
        max-width: 35%;
    }

    .index-slide.red .index-slide-bg::before{
        width: 40px;
        height: 65px;
        background-size: contain;
    }

    .index-slide.red .index-slide-bg::after{
        width: 40px;
        height: 40px;
        background-size: contain;
        right: 7px;
    }
}