.advantages__container{
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.advantages__title{
    font-family: 'Involve', sans-serif;
    color: var(--c1);
}

.advantages__wrapper{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.advantage__card{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 320px;
    height: 420px;
    background: var(--c1);
    border-radius: 36px;
}

.image__container{
    width: 100%;
    border-radius: 36px;
    text-align: center;
    height: 190px;
    overflow: hidden;

    position: relative;

    display: flex;
    justify-content: center;
    flex-shrink: 0;
}
.image{
    width: 100%;
    height: 100%;
}

.title{
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--c2);
    padding: 5px 30px;
    border-radius: 20px;
    color: var(--text);

    position: absolute;
    bottom: 30px;
}
.card__text{
    text-align: left;
    padding: 20px 20px 90px;
    color: var(--c2);
    font-size: 1.125rem;
}

.subtext{
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}