.divider-section {
    padding: 2rem 2rem;
    background-color: var(--color--light-gray-alt);
}

.divider-section:last-of-type {
    padding-bottom: 4rem;
}

.divider-section__title {
    z-index: 1;
    background-color: var(--color--light-gray-alt);
    margin-bottom: 0;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4em;
    position: relative;
}

.divider-section__divider {
    background-color: black;
    width: 100%;
    height: 1px;
    position: absolute;
}

.container .divider-section__heading {
    justify-content: center;
    align-items: center;
    width: 40%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

.divider-section__image-card img {
    width: auto;
    height: 100px;
    max-width: 250px;
    object-fit: contain;
}

.divider-section__content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.divider-section__image-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: none;
    background-color: var(--color--light-gray-alt);
    padding: 20px 16px;
    max-width: 250px;
}

.divider-section__link {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*----------------------------------------*/
/*             REVAMP - START             */
/*----------------------------------------*/

.revamp .divider-section {
    padding: 3rem 2rem;
}
.revamp .divider-section:last-of-type {
    padding-bottom: 4rem;
}

.revamp .divider-section__title {
    text-transform: uppercase;
}

.revamp .divider-section__content {
    justify-content: space-between;
}

.revamp .divider-section__image-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 6px #00000022;
}

.revamp .divider-section__image-card .divider-section__link {
    transition: all 0.2s ease;
}
.revamp .divider-section__image-card:hover .divider-section__link {
    transform: scale(1.03);
    transition: all 0.2s ease;
}

.revamp span.divider-section__image-card__title {
    margin-top: 10px;
}

.revamp .divider-section__image-card img {
    max-width: 170px;
    min-width: 150px;
}

/*----------------------------------------*/
/*             REVAMP - END               */
/*----------------------------------------*/

@media (max-width: 600px) {
    .divider-section__title {
        text-align: center;
        font-size: 30px;
        font-weight: bold;
    }

    .divider-section__divider {
        transform: translateY(55px);
    }

    /*----------------------------------------*/
    /*             REVAMP - START             */
    /*----------------------------------------*/

    .revamp .divider-section {
        padding: 40px 0;
    }

    .revamp .divider-section__content {
        justify-content: center;
    }

    .revamp .divider-section__image-card {
        width: 100%;
        margin-bottom: 20px;
    }

    /*----------------------------------------*/
    /*             REVAMP - END               */
    /*----------------------------------------*/
}
