img.about__bg {
    width: 100%;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    width: 100%;
    gap: 40px;
}

section {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 100px;
}

.about__info {
    position: absolute;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 120px;
}

section.about {
    justify-content: center;
}

h1.title {
    font-size: 64px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin: 0;
}

section.about .text {
    color: #fff;
    text-align: center;
}

h2.section__title {
    margin: 0;
}

.grid {
    display: grid;
    gap: 40px;
}

.grid__2 {
    grid-template-columns: repeat(2, 1fr);
}

.award__media {
    display: flex;
}

.award__media img {
    width: 100%;
}

.award__info {
    display: flex;
    align-items: center;
}

.award__info ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: square;
    max-width: 560px;
}

section.team {
    padding: 100px 0;
    background: #ecf3f3;
}

.swiper-slide.team__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.swiper-slide.team__item img {
    width: 100%;
    height: auto;
}

p.status {
    margin: 0;
    font-size: 14px;
    color: #434343;
    line-height: 1;
    margin-top: 10px;
}

p.name {
    font-size: 24px;
    margin: 0 0 10px 0;
    line-height: 1;
}

a.phone, a.mail {
    margin: 0;
    line-height: 1.25;
    color: #0c574d;
    transition: all .25s ease;
}

a.phone:hover, a.mail:hover {
    color: #2ead9d;
}

.swiper-slide.gallery__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ecf3f3;
    height: auto;
    padding-bottom: 20px;
}

p.gallery__item {
    margin: 0;
    color: #333;
    font-size: 18px;
    padding: 0 20px;
    line-height: 1.25;
}

.swiper-slide img {
    display: flex;
    transition: all .25s ease;
}

.gallery__wrapper, .team__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    align-items: center;
}

.section__content {
    width: 100%;
}

.swiper {
    width: 100%;
    cursor: grab;
}

.gallery__slider__nav, .team__slider__nav {
    display: flex;
    justify-content: center;
}

.team__slider__nav {
    display: none;
}

span.swiper-pagination-bullet {
    width: 20px;
    height: 5px;
    border-radius: 0;
    background: #000;
    transition: all .25s ease;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
}

.grid__3 {
    grid-template-columns: repeat(3, 1fr);
}

.road__item {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid #ecf3f3;
}

.road__item * {
    margin: 0;
}

p.road__item__item {
    font-size: 24px;
}

.road__item__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.road__item:nth-child(2n) {
    background: #ecf3f3;
}

.about__bg__mobile {
    display: none;
}

.swiper-slide.gallery__item a {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.swiper-slide.gallery__item a:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 1600px) {
    .container {
        padding: 0 20px;
        gap: 32px;
    }

    section {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 1200px) {
    h1.title {
        font-size: 48px;
    }
    
    .about__info {
        max-width: calc(100% - 40px);
        padding-top: 60px;
    }
    
    .award__info ul {
        max-width: 100%;
    }
    
    .grid {
        gap: 20px;
    }
    
    .team__slider__nav {
        display: flex;
    }
    
    section.team {
        padding: 80px 0;
    }
    
    .road__item {
        padding: 24px;
    }
    
    section.award .grid {
        align-items: flex-start;
    }
}

@media screen and (max-width: 992px) {
    .about__info {
        padding-top: 32px;
    }

    h1.title {
        font-size: 32px;
    }

    .grid__3 {
        grid-template-columns: repeat(2, 1fr);
    }

    section.team {
        padding: 60px 0;
    }

    .gallery__wrapper, .team__wrapper {
        gap: 32px;
    }
}

@media screen and (max-width: 768px) {
    .about__bg__mobile {
        display: block;
    }

    .about__bg {
        display: none;
    }

    h1.title {
        font-size: 26px;
    }

    .about__info {
        padding-top: 60px;
    }

    .grid {
        display: flex;
        flex-direction: column;
    }

    p.road__item__item {
        font-size: 20px;
    }

    .road__item {
        padding: 20px;
    }

    span.swiper-pagination-bullet {
        width: 16px;
        height: 3px;
    }

    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 32px;
    }

    p.name {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {

}