.aboutSection__wrapper{
    background: var(--New, linear-gradient(263deg, #BDD9FF 0.75%, #F7FAFF 82.09%, #FFF 149.49%));
    width: 100%;
    display: flex;
    justify-content: center;
}
.about{
    /* display: grid; */
    align-items: center;
    justify-content: center;
    width: 90%;
    gap:1rem;
    max-width: var(--max-sm-width); 
    grid-auto-rows: min-content;
    margin:8rem auto 8rem;
}
.about__headline{
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}
.about__subheadline{
    color: var(--gray-50);
    text-align: center;
    font-size: var(--fs-smaller);
    font-weight: 500;
    line-height: 1.6;
    width: 100%;
    margin-bottom: 3rem;
}
.about__wrapper{
    display: flex;
    gap:1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.about__card{
    border-radius: 0px 30px;
    width: 30%;
    min-width: 20rem;
    height: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:1rem;
    min-height: 300px;
    transition: transform 0.25s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.25s cubic-bezier(0.33, 1, 0.68, 1);
}
.about__card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 42, 121, 0.15);
}
.about__card--white{
    background: var(--white);
}
.about__card--blue{
    background: var(--blue);
}
.about .card__title{
    font-size: var(--fs-medium);
    font-weight: 600;
    text-transform: uppercase;
}
.about .card__title--white{
    color:var(--white);
}
.about .card__subtitle{
    color: #000;
    font-size: var(--fs-smaller);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}
.about .card__subtitle--white{
    color:var(--white);
}
.about .description{
    color: var(--gray-60);
    font-size: var(--fs-smaller);
    font-weight: 400;
    text-transform: uppercase;
}
.about .card__description{
    line-height: 1.6;
    text-align: center;
}
.about .card__description--white{
    color:var(--white);
}
@media (min-width: 768px) {
    .about{
        grid-template-columns: repeat(4,1fr);
    }
    .about__headline{
        grid-column: 1 / 5;
    }
    .about__wrapper{
        grid-column: 1 / 5;
    }
}