.benefits-interior {
    margin: 60px 0;
    overflow: hidden;
}

.benefits-interior__container {
    display: grid;
    gap: 40px;
}

.benefits-interior__heading {
    display: grid;
    gap: 12px;
}

h2.benefits-interior__title {
    margin: 0;
    padding: 0;
    border: 0;
}

.benefits-interior__subtitle {
    font: 400 18px/1.2 'Cera Pro', sans-serif;
    padding: 0;
}

.benefits-interior__slider {
    min-width: 0;
    padding-bottom: 60px;
}

.benefits-interior .slick-list {
    margin: 0 -16px;
    overflow: visible;
}

.benefits-interior .slick-slide {
    margin: 0 16px;
}

.benefits-interior .arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid transparent;
    border-radius: 100%;
    cursor: pointer;
    bottom: 0;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    transition-property: opacity, background, background-size, border-color;
}

.benefits-interior .arrow.prev {
    background: #EBF7FD url(../../img/Chevron_Left.svg) no-repeat center center;
    background-size: 1rem 1rem;
    right: calc(50% + 6px);
}

.benefits-interior .arrow.prev:hover {
    background: #5CA3E9 url(../../img/Chevron_Left_White.svg) no-repeat center center;
    background-size: 1rem 1rem;
}

.benefits-interior .arrow.prev.slick-disabled {
    background: #FEFEFE url(../../img/Chevron_Left.svg) no-repeat center center;
    background-size: 1rem 1rem;
    cursor: not-allowed;
    border-color: #E5E5E5;
}

.benefits-interior .arrow.next {
    background: #EBF7FD url(../../img/Chevron_Right.svg) no-repeat center center;
    background-size: 1rem 1rem;
    left: calc(50% + 6px);
}

.benefits-interior .arrow.next:hover {
    background: #5CA3E9 url(../../img/Chevron_Right_White.svg) no-repeat center center;
    background-size: 1rem 1rem;
}

.benefits-interior .arrow.next.slick-disabled {
    background: #FEFEFE url(../../img/Chevron_Right.svg) no-repeat center center;
    background-size: 1rem 1rem;
    cursor: not-allowed;
    border-color: #E5E5E5;
}

.benefits-interior.animated .arrow.prev {
    transition-delay: 2.6s, 0s, 0s;
    opacity: 1;
}

.benefits-interior.animated .arrow.next {
    transition-delay: 2.8s, 0s, 0s;
    opacity: 1;
}

.benefits-interior__img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
    margin-bottom: 24px;
}

.benefits-interior__description {
    display: grid;
    gap: 12px;
}

.benefits-interior__description p {
    padding: 0;
    margin: 0;
}

.benefits-interior__description p strong {
    font-weight: 700;
}

@media only screen and (min-width: 1280px) {
    .benefits-interior {
        margin: 120px 0;
    }

    .benefits-interior__slider {
        padding: 0;
    }

    .benefits-interior .arrow {
        width: 96px;
        height: 96px;
    }

    .benefits-interior .arrow.prev,
    .benefits-interior .arrow.next {
        bottom: auto;
        top: 0;
        left: auto;
        transform: translateY(-50%);
    }

    .benefits-interior .arrow.prev {
        right: 104px;
    }

    .benefits-interior .arrow.next {
        right: 0;
    }
}