.about-intro {
    text-align: center;
    margin-top: 80px;
}
.about-intro__title {
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 30px;
}
.about-intro__title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 165px;
    height: 2px;
    background: var(--color-primary);
}
.about-intro__text {
    font-size: 16px;
}
@media screen and (min-width: 768px) {
    .about-intro__title {
        font-size: 30px;
    }
}


.about-gallery {
    margin-top: 60px;
    position: relative;
}
.about-gallery__container {
    overflow: visible;
}
.about-gallery__slide {
    display: block;
}
.about-gallery__img {
    display: block;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 991px) {
    .about-gallery .swiper-button-prev {
        right: calc(100% - 60px);
    }
    .about-gallery .swiper-button-next {
        left: calc(100% - 60px);
    }
}

.about-director {
    margin-top: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.about-director__img-wrapper {
    flex: 0 0 auto;
}
.about-director__img {
    max-width: 70vw;
}
.about-director__text {
    font-size: 16px;
    position: relative;
    padding-left: 30px;
}
.about-director__text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
}
@media screen and (min-width: 768px) {
    .about-director {
        flex-direction: row;
    }
    .about-director:after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        width: 120vw;
        height: 2px;
        background: #fff;
        opacity: 0.2;
    }
}

.about-team {
    margin-top: 70px;
    margin-bottom: 100px;
}
.about-team__text {
    font-size: 16px;
    text-align: center;
}
.about-team__img {
    margin: 70px auto 0;
}





