/* service section */
.about {
    padding: 40px 0 80px;
}

.about__title {
    max-width: 650px;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 160%;
    text-transform: uppercase;

    margin: 0 auto 24px;
}

.about__description {
    max-width: 871px;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;

    margin: 0 auto 80px;
}

.about__container {
    max-width: 1300px;

    margin: 0 auto 80px;
}

.about__container-wrapper {
    display: flex;
    align-items: stretch;
}

.about__container-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.about__illustration {
    flex-basis: 50%;
    min-height: 429px;
}

.about__illustration-item {
    height: 100%;
    object-fit: cover;
}

.about__container-wrapper:nth-child(odd) .about__info {
    background: #FFF9F3;
}

.about__info {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    padding: 30px 70px;
}

.about__info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 24px;
}

.about__info-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 160%;
    text-transform: uppercase;
}

.about__info-description {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

.about__team-title {
    max-width: 1300px;

    margin: 0 auto 80px;
}

.about__team-container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 24px;
    row-gap: 24px;
    flex-wrap: wrap;

    margin-bottom: 48px;
}

.about__team-item {
    max-width: 415px;
    background: #FFF;
    box-shadow: 0px 5.434px 27.171px 0px rgba(0, 0, 0, 0.10);
    padding: 24px;
}

.about__team-item-photo {
    max-height: 420px;
    object-fit: cover;
    margin-bottom: 16px;
}

.about__team-item-name {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 160%;
    text-transform: uppercase;

    margin-bottom: 8px;
}

.about__team-item-position {
    color: #333232;
    text-align: center;
    font-size: 16px;
    line-height: normal;
}

.about__team-description {
    max-width: 1008px;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;

    margin: 0 auto;
}

@media (max-width: 900px) {
    .about__container-wrapper {
        flex-direction: column;
    }

    .about__container-wrapper:nth-child(even) {
        flex-direction: column;
    }

    .about__illustration {
        min-height: unset;
    }

    .about__illustration-item {
        width: 100%;
        height: 320px;
    }

    .about__info {
        padding: 24px 16px;
    }
}

@media (max-width: 767px) {
    .about {
        padding: 24px 0 60px;
    }

    .about__description {
        margin-bottom: 40px;
    }

    .about__container {
        margin-bottom: 40px;
    }

    .about__illustration-item {
        height: 250px;
    }

    .about__team-title {
        margin-bottom: 48px;
    }

    .about__team-container {
        row-gap: 16px;
    }
}