.about__container {
    margin: 20px auto;
    width: 95%;
    max-width: 1200px;
}

.about__container p {
    font-size: 16px;
    color: rgb(50, 50, 50);
    font-weight: normal;
}

.about__info {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 10px;
}

.about__info,
.about__info p {
    font-size: 18px;
}

.about-info__video {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.about-info__video iframe {
    width: 90%;
    height: 80%;
}

.about__container section h2 {
    text-align: center;
}

.about__benefits {
    margin-top: 50px;
}

.about_benefits__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-row-gap: 40px;
    grid-column-gap: 10px;
}


.about_benefits__items img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
}

.about_benefits__items h3 {
    text-align: center;
}

.about_benefits__items div {
    text-align: center;
}

.about__contacts {
    margin-top: 50px;
    margin-bottom: 30px;
    margin-right: 20px;
    font-size: 22px;
}

.about-contacts__group {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: right;
}

.about__contacts img {
    height: 80px;
    width: 80px;
}

.about__contacts h3 {
    font-size: 28px;
}


@media (max-width: 768px) {
    .about__info {
        display: flex;
        flex-direction: column-reverse;
        padding: 5px 10px;
    }

    .about_benefits__items {
        grid-template-columns: 1fr;
    }

    .about__contacts h3 {
        text-align: center;
        margin-right: 0px;
    }

    .about-contacts__group {
        justify-content: center;
    }

}
