/* О компании */
.about {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    align-items: center;
    place-self: center;
}

.about__title {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.cup__container {
    display: flex;
    place-self: center;
}

.cup__container img {
    width: 280px;
    height: 280px;
}

.about__table {
    display: flex;
    width: 100%;
    border: 2px solid rgb(26, 60, 165);
    border-radius: 10px;
    max-width: 840px;
}

.about__table span[alt="left__block"] {
    width: 100%;
    padding: 20px;
    border-right: 2px solid rgb(26, 60, 165);
}

.about__table span[alt="right__block"] {
    width: 100%;
    padding: 20px;
}

.about p {
    margin-bottom: 15px;
    text-align: justify;
}

.about ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about li {
    margin-bottom: 10px;
}

/*Уже обучили*/
.trained {
    background-color: var(--light-gray);
}

.trained__content {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: unset;
    padding: 0 20px;
}

.trained__content img {
    height: 200px;
    width: 200px;
}

/*=================================МОБИЛЬНЫЙ АДАПТИВ==========================================*/

@media (max-width: 1024px) {
    .about__table {
        flex-direction: column;
    }

    .about__table span[alt="left__block"] {
        border-right: none;
        border-bottom: 2px solid rgb(26, 60, 165);
    }

    .trained__content {
        flex-direction: column;
        height: auto;
        gap: 20px;
        max-width: 100%;
    }

    .trained__content img {
        height: 200px;
        width: 200px;
    }
}

@media (max-width: 1200px) {
    .trained__content img {
        height: 150px;
        width: 150px;
    }
}