.new-slider {
    margin-top: .7em;
    margin-bottom: 1em;
}

.new-slider .container {
    max-width: 1300px;
}

.new-slider-container {
    display: flex;
    flex-direction: row;
    flex-basis: 100%;
    width: 100%;
    min-width: 0;
}

.new-home-swiper {
    margin-bottom: 0;
}

.new-slider-left,
.new-slider-right {
    min-width: 0;
}

.new-slider-left {
    position: relative;
    flex-shrink: 1;
}

.new-slider-right {
    flex-shrink: 0;
}

.new-slider-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
}

.new-slider-inner-shadow {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, rgba(27, 31, 42, .7), rgba(27, 31, 42, .4), rgba(27, 31, 42, 0));
}

.new-slider-text {
    position: relative;
    padding: 5em 1em 1em 1em;
    line-height: 1.2;
    background: linear-gradient(rgba(27, 31, 42, 0), rgba(27, 31, 42, .6), rgba(27, 31, 42, .8), rgba(27, 31, 42, .9));
    z-index: 2;
}

.new-slider-text h4 {
    font-weight: 600;
    color: white;
}

.new-slider-text > * {
    margin-bottom: .7em;
    max-width: 450px;
}

.new-slider-text > *:last-child {
    margin-bottom: 0;
    /* color: rgba(222, 225, 234, .5); */
}

.new-slider-text li {
    list-style: disc inside;
}

.new-slider-campaign-info small {
    display: block;
}

.new-slider-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 15px -5px rgba(0,0,0,.2), 0 5px 7px -6px rgba(0,0,0,.1);
}

.new-miniSlider {
    padding: 0;
    margin: 0;
}

.new-mini-slider {
    display: none;
    flex-direction: column;
    gap: 0;
}

.new-mini-slider a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 1em 1em 1em calc(100px + 1.5em);
    width: 350px;
    min-height: 75px;
    height: 100%;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    background-color: none;
    color: var(--textColorDark);
}

.new-mini-slider span {
    display: inline-block;
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: .5;
    transition: all .3s ease-in-out;
}

.new-home-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--colorPrimary);
}

@media screen and (min-width: 640px) {
    .new-home-swiper {
        padding-bottom: 2em;
    }
}

@media screen and (min-width: 768px) {
    .new-home-swiper {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 2em;
    }
    .new-slider-text {
        padding: 5em 2em 2em 2em;
    }
}

@media screen and (min-width: 1024px) {
    .new-home-swiper {
        padding-bottom: 0;
    }
    .new-slider-container {
        border: 1px solid var(--btnColorBorder);
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 10px 15px -5px rgba(0,0,0,.2), 0 5px 7px -6px rgba(0,0,0,.1);
    }
    .new-mini-slider {
        display: flex;
        align-self: stretch;
        justify-content: space-between;
    }
    .new-mini-slider li {
        flex-grow: 1;
    }
    .new-slider-text {
        padding: 5em 3.2em 3.2em 3.2em;
    }
    .new-slider-left:before {
        content: "";
        display: block;
        width: 15px;
        height: 100%;
        background: linear-gradient(to left, rgba(43, 48, 64, .4), rgba(43, 48, 64, 0));
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        pointer-events: none;
    }
    .new-slider-right {
        display: inline-flex;
        height: inherit;
    }
    .new-slider-wrapper {
        border-radius: 0;
        box-shadow: 0;
    }
    .new-mini-slider a {
        transition: all .2s ease-in-out;
    }
    .new-mini-slider .swiper-slide-thumb-active span,
    .new-mini-slider .swiper-slide-thumb-active a,
    .new-mini-slider a:hover {
        opacity: 1;
        /* color: var(--textColorLight); */
        color: white;
        background-color: var(--colorPrimary);
    }
    .new-mini-slider a:hover span {
        opacity: 1;
    }
    .new-home-swiper .swiper-pagination {
        display: block;
        text-align: right;
        padding: .7em 1em;
    }
}