.module-benefits {
    padding-top: 75px;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

.module-benefits:before {
    content: "";
    background-color: var(--color-alternate);
    width: 5px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    transition: height 1.5s ease;
}

.module-benefits.animate:before {
    height: 0;
}

.module-benefits.animated:before {
    height: 100px;
}

.module-benefits h2 {
    text-transform: none;
    margin-bottom: 20px;
    line-height: 1.15;
    font-size: 2.5rem;
    color: var(--color-body-text);
}

.module-benefits h2 span {
    color: var(--color-primary);
}

.module-benefits h2 strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: 0.094rem;
}

.module-benefits-column {
    margin-bottom: 15px;
}

.benefit-item {
    position: relative;
    display: block;
    overflow: hidden;
}

.benefit-item-toggle {
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 44px;
    height: 44px;
    display: flex;
    font-size: 1.688rem;
    align-items: center;
    justify-content: center;
}

.benefit-item-toggle:hover,
.benefit-item-toggle:focus {
    color: var(--color-white);
    border-color: var(--color-alternate);
    background-color: var(--color-alternate);
}
.benefit-item-more {
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translateY(100%);
    color: var(--color-white);
    position: absolute;
    background-color: var(--color-dark);
    transition: transform 0.5s ease;
}

.benefit-item-more.is-active {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item-more-text {
    left: 0;
    width: 100%;
    top: 15px;
    padding: 0 15px;
    bottom: 40px;
    font-size: 0.938rem;
    position: absolute;
    max-height: calc(100% - 70px);
    overflow-y: auto;
}

.benefit-item-more-text p {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.benefit-item-image {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.benefit-item-image:before {
    content: '';
    position: absolute;
    background-color: var(--color-dark-alt);
    inset: 0;
    opacity: 0.66;
}

.benefit-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-item-text {
    position: absolute;
    top: 50%;
    z-index: 1;
    line-height: 1.4;
    font-size: 1.375rem;
    color: var(--color-white);
    transform: translateY(-50%);
    width: 100%;
    padding: 0 20px;
}

.benefit-item-text p:last-child {
    margin-bottom: 0;
}

.benefit-item-text strong {
    font-weight: 800;
}

@media screen and (min-width: 768px) {
    .module-benefits {
        padding-top: 130px;
        padding-bottom: 82px;
    }

    .module-benefits h2 {
        margin-bottom: 52px;
        font-size: 3.75rem;
    }

    .module-benefits h2 strong {
        letter-spacing: 4px;
    }

    .module-benefits:before {
        height: 135px;
        top: -68px;
    }

    .module-benefits.animate:before {
        height: 0;
    }

    .module-benefits.animated:before {
        height: 135px;
    }

    .module-benefits-holder {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
        justify-content: center;
    }

    .module-benefits-column {
        width: 50%;
        padding: 0 15px;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1025px) {
    .module-benefits-column {
        width: 33.33%;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1920px) {
    .module-benefits-holder {
        margin: 0 -8px;
    }

    .module-benefits-column {
        padding: 0 8px;
    }

    .benefit-item-more-text {
        top: 30px;
        padding: 0 30px;
        font-size: var(--font-size-base);
    }
}