.blur {
    height: 100% !important;
    background: rgba(15, 77, 77, 0.8) !important;
}

.main-slider__inner {
    position: relative;
    display: flex;
    height: 450px;
}

.main-slider-mobile__inner {
    display: none;
}

.main-slider__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
}

.main-slider__part {
    position: relative;
    display: inline-flex;
    flex-basis: 25%;
    flex-wrap: wrap;
    padding: 25px;
    height: 100%;
    border-right: 2px solid #fff;
    overflow: hidden;
    z-index: 20;
}

.main-slider__gradient {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
    background: linear-gradient(180deg, rgba(26, 53, 50, 0.4) 0%, rgba(26, 53, 50, 0) 100%);
    z-index: 10;
}

.main-slider__part:last-child {
    border-right: none;
}

.main-slider__slide-header {
    width: 100%;
    font-weight: bold;
    font-size: 1.625rem;
    line-height: 93%;
    color: #fff;
    z-index: 20;
}

.main-slider__list {
    display: none;
    padding: 0;
    width: 100%;
    list-style: none;
    z-index: 20;
}

.main-slider__item {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: #fff;
    z-index: 20;
}

.main-slider__item:last-child {
    margin-bottom: 0;
}

.main-slider__item:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #fff;
    margin-right: 10px;
    transform: translate(0, -50%) scaleY(1) rotate(45deg);
  }