.about-leadership {
    padding: 120px 0;
    background-color: #E6EBF0;
}

.about-leadership__title {
    font-size: 64px;
    font-weight: 350;
    line-height: 82px;
    color: #000;
    font-family: 'ABC Favorit';
}

.about-leadership__description {
    font-size: 20px;
    line-height: 34px;
    margin-top: 24px;
    color: #000;
}

.about-leadership__cards-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 32px;
    margin-top: 64px;
}

.about-leadership__flex-row {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
}

.about-leadership__card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-leadership__card-text-wrapper {
    width: 100%;
    padding: 16px 0;
    background: white;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-leadership__card__description {
    font-size: 16px;
    line-height: 27px;
    color: #000;
}

.about-leadership__card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 8px;
    text-align: center;
    color: #000;
}

.about-leadership__card__logo {
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.about-leadership__card__image {
    width: 248px;
    height: 248px;
    min-width: 248px;
    margin: auto;
}

@media only screen and (max-width: 1120px) {
    .about-leadership__flex-row {
        flex-direction: column;
    }
    .about-leadership__card-text-wrapper {
        max-width: 248px;
    }
}

@media only screen and (max-width: 998px) {
    .about-leadership {
       padding: 40px 0;
    }
    .about-leadership__cards-wrapper {
        flex-direction: column;
        gap: 0;
        margin-top: 64px;
    }

    .about-leadership__flex-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .about-leadership__card {
        margin-bottom: 40px;
    }

    .about-leadership__card:last-child {
        margin-bottom: 0;
    }

    .about-leadership__card-text-wrapper {
        max-width: 248px;
    }

    .about-leadership__title {
        font-size: 40px;
        line-height: 52px;
    }
}