/* ------------------------ */
/*           ABOUT          */
/* ------------------------ */

.about--content {
    padding-top: calc(100vw * 245 / 1440);
}

.about__title {
    width: calc(100vw * 968 / 1440);
}

.about__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 17px;
    row-gap: 28px;
    margin-top: calc(100vw * 170 / 1440);
    margin-bottom: calc(100vw * 80 / 1440);
}

.about__item {
    border-radius: 12px;
    padding: 50px 30px 30px;
    height: calc(100vw * 440 / 1440);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.person {
    background-color: #303030;
    color: #ffffff;
}

.about__item__link {
    display: block;
    width: max-content;
    border-bottom: 1px solid #7CF4E3;
    line-height: 1.1em;
}

.about__item__title {
    font-weight: unset;
}

.about__item__subtitle {
    margin-top: 10px;
}

@media(max-width: 1200px) {
    .about__items {
        grid-template-columns: 1fr 1fr;
    }
}


@media(max-width: 991px) {
    .about--content {
        padding-top: 210px;
    }

    .about__title {
        width: 100%;
    }

    .about__items {
        grid-template-columns: 1fr;
        margin-top: 65px;
        margin-bottom: 20px;
        row-gap: 15px;
    }

    .about__item {
        height: auto;
        padding: 30px 26px;
    }

    .about__item__subtitle {
        margin-top: 0px;
    }

    .about__item__text {
        margin-top: 56px;
    }

    .about__item__link {
        margin-top: 42px;
    }
}