.section-custom__slider {
    margin-top: 0;
    margin-left: -2rem;
    margin-right: -2rem;
}
.section-custom__slider .slick-track {
    display: flex;
    flex-direction: row;
}

.section-custom__item {
    height: unset;
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    padding: 0 2rem;
    position: relative;
    margin-right: 0;
}

@media (min-width: 768px) {
    .section-custom__item {
        flex-direction: row;
    }
}

.section-custom__item h3 {
    color: var(--moerk-primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-transform: none;
    line-height: 3.5rem;
    letter-spacing: initial;
}

.section-custom__image {
    display: inline-flex;
    flex: 1;
    width: 100%;
    height: 100%;
    background-color: var(--moerk-secondary);
    aspect-ratio: 5 / 4;
    justify-content: space-around;
    position: relative;
    margin-bottom: 8rem;
    padding: 3rem 1.5rem 8rem 1.5rem;
}

@media (min-width:425px) {
    .section-custom__image {
        aspect-ratio: 5 / 3;
    }
}

@media (min-width: 768px) {
    .section-custom__image {
        flex: unset;
        aspect-ratio: 5 / 3;
        width: 50%;
        margin-bottom: 0;
        padding: 3rem 8rem 3rem 2rem;
    }
}

@media (min-width: 992px) {
    .section-custom__image {
        padding: 3rem 11rem 3rem 2rem;
    }
}

.section-custom__image h2 {
    margin: auto;
    font-family: var(--moerk-font-family-heavy);
    color: var(--moerk-primary);
    width: 100%;
    text-align: center;

}

@media (min-width: 768px) {
    .section-custom__image h2 {
        width: auto;
        text-align: left;
    }
}

.section-custom__icon {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 16rem;
    height: auto;
    aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
    .section-custom__icon {
        top: 50%;
        left: 100%;
        transform: translate(-50%, -50%);
        max-width: 15rem;
    }
}
@media (min-width: 992px) {
    .section-custom__icon {
        max-width: 16rem;
    }
}

.section-custom__icon:before {
    content: '';
    position: absolute;
    display: block;
    height: 8rem;
    width: 8rem;
    transform: rotate(45deg);
    aspect-ratio: 1 / 1;
    /*background-color: var(--moerk-primary);*/
}

@media (min-width: 768px) {
    .section-custom__icon:before {
        height: 8rem;
        width: 8rem;
    }
}

@media (min-width: 992px) {
    .section-custom__icon:before {
        height: 11rem;
        width: 11rem;
    }
}

.section-custom__icon img {
    z-index: 2;
    position: absolute;
    padding: 0;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.section-custom__info {
    flex: 1;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    color: var(--moerk-body-color);
    font-size: 2rem;
    font-weight: 300;
    line-height: 3rem;
}

@media (min-width: 768px) {
    .section-custom__info {
        flex: unset;
        width: 50%;
        padding: 2rem 0 2rem 7rem;
    }
    .section-custom__info--inner {
        max-width: 30rem;
    }
}

@media (min-width: 992px) {
    .section-custom__info {
        padding: 2rem 2rem 2rem 12rem;
    }
}

.section-custom__info li {
    margin-bottom: 1.5rem;
}


.section-custom__info li:last-child {
    margin-bottom: 0 !important;
}