.cards {
    position: relative;
}

.cards__top-content {
    margin-bottom: 24px;
}

.cards__wrap .row {
    row-gap: 32px;
    justify-content: center;
}

.card {
    padding: 12px;
    background: var(--off-white);
    border-radius: var(--border-radius);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.bg-light-gray .card,
.bg-light-blue .card {
    background: var(--white);
}

.card__image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.card--logo .card__image {
    width: auto;
    height: auto!important;
}

.card__image img {
    border-radius: 10px;
    margin: 0 auto;
}

.card--logo .card__image img {
    border-radius: 0;
}

.card__desciption h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.card__desciption p {
    margin-bottom: 18px;
}

.card__bottom {
    margin-bottom: 12px;
}

.card--logo .card__bottom {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .cards__top-content {
        margin-bottom: 34px;
    }

    .card {
        padding: 20px;
    }

    .card__image {
        margin-bottom: 20px;
    }

    .card__desciption h4 {
        font-size: 20px;
    }

    .card__bottom {
        margin-bottom: 20px;
    }
}

@media (min-width: 1200px) {
    .cards--padding-bottom {
        padding-bottom: 76px;
    }

    .cards__top-content {
        margin-bottom: 50px;
    }

    .card {
        padding: 32px;
    }

    .card__image {
        margin-bottom: 30px;
    }

    .card--logo .card__image {
        margin-bottom: 20px;
    }

    .card__desciption h4 {
        font-size: 24px;
    }

    .card__bottom {
        margin-bottom: 14px;
    }

    .card .card__image {
        height: 316px;
        display: flex;
        align-items: center;
        overflow: hidden;
        position: relative;
    }
}