
/*!*Стили страницы О НАС*!*/

.about-containers {
    height: auto;
    margin: 0 var(--margin-container-top) auto;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 5% 10%;
}

.main-title h2 {
    font: var(--title-new-page);
    color: var(--color-txt);
}

.main-txt-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 25px;
    padding: 20px;
}

.main-txt-about p {
    color: var(--color-txt);
    font: var(--p-all-txt);
}

.main-txt-about ul {
    color: var(--color-txt);
    font: var(--p-all-txt);
    text-align: center;
    list-style-position: inside;
}

.about-img {
    border-radius: 36px;
    overflow: hidden;
    margin: 25px 0;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

