.page-template-page-pro-nas .breadcrumbs {
    display: none !important;
}

.pro-nas-history {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 100px 40px;
    background: #f3f3f3;
}

.pro-nas-history__title,
.pro-nas-history__more-title {
    margin: 0;
    color: #2b2929;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.pro-nas-history__title {
    max-width: 1035px;
}

.pro-nas-history__timeline-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pro-nas-history__timeline {
    position: relative;
    display: flex;
    gap: 30px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.pro-nas-history__timeline::-webkit-scrollbar {
    display: none;
}

.pro-nas-history__timeline::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 19px;
    width: calc((437.5px + 30px) * 5 - 220px);
    border-top: 1px dashed #cac0b6;
}

.pro-nas-history-timeline-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 0 0 437.5px;
    flex-direction: column;
    gap: 20px;
    min-height: 298px;
    scroll-snap-align: start;
}

.pro-nas-history-timeline-card__dot {
    width: 40px;
    height: 40px;
    border: 8px solid #cac0b6;
    border-radius: 50%;
    background: #2b2929;
    box-shadow: inset 0 0 0 4px #f3f3f3;
}

.pro-nas-history-timeline-card__year {
    color: #cac0b6;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.pro-nas-history-timeline-card h3 {
    margin: 0 0 -10px;
    color: #2b2929;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.pro-nas-history-timeline-card p {
    margin: 0;
    color: #363636;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}

.pro-nas-history__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: -10px;
}

.pro-nas-history__pagination {
    display: flex;
    gap: 20px;
}

.pro-nas-history__pagination button {
    width: 12px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: #cac0b6;
    cursor: pointer;
    transition: width .2s ease, background-color .2s ease;
}

.pro-nas-history__pagination button.is-active {
    width: 36px;
    background: #2b2929;
}

.pro-nas-history__arrows {
    display: flex;
    gap: 10px;
}

.pro-nas-history__arrow {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #f6f4f2;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.pro-nas-history__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #2b2929;
    border-right: 1px solid #2b2929;
    transform: translate(-60%, -50%) rotate(45deg);
}

.pro-nas-history__arrow--prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.pro-nas-history__divider {
    width: 100%;
    height: 1px;
    background: #cac0b6;
}

.pro-nas-history__more {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    width: 100%;
}

.pro-nas-history__photo {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 870 / 580;
}

.pro-nas-history__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-nas-history__more-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.pro-nas-history__more-text,
.pro-nas-history__list li {
    color: #2b2929;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}

.pro-nas-history__more-text p {
    margin: 0 0 20px;
}

.pro-nas-history__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pro-nas-history__list li {
    position: relative;
    padding-left: 20px;
}

.pro-nas-history__list li::before {
    content: "";
    position: absolute;
    top: .7em;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2b2929;
    transform: translateY(-50%);
}

.pro-nas-history__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 50px;
    border: 1px solid #2b2929;
    border-radius: 27px;
    color: #2b2929;
    font-size: 17px;
    line-height: 1.4;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease;
}

.pro-nas-history__button:hover {
    background: #2b2929;
    color: #fff;
}

.pro-nas-history__quotes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.pro-nas-history-quote {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

.pro-nas-history-quote__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    padding: 20px 30px 30px;
}

.pro-nas-history-quote__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.pro-nas-history-quote__text {
    flex: 1 1 auto;
    color: #2b2929;
    font-size: 17px;
    line-height: 1.4;
}

.pro-nas-history-quote__author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pro-nas-history-quote__author strong {
    color: #2b2929;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.pro-nas-history-quote__author span {
    color: #cac0b6;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.22;
}

.pro-nas-history-quote__photo {
    padding: 10px;
}

.pro-nas-history-quote__photo img {
    display: block;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    object-fit: cover;
}

.page-template-page-pro-nas {
    max-width: 1920px;
}

.page-template-page-pro-nas .main-body {
    padding-top: 0;
}

.pro-nas-hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
    color: #ffffff;
    background: #2b2929;
}

.pro-nas-hero__bg,
.pro-nas-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pro-nas-hero__bg {
    display: block;
    object-fit: cover;
    object-position: center bottom;
}

.pro-nas-hero__overlay {
    background-image: linear-gradient(-71.567deg, rgba(0, 0, 0, 0.5) 5.921%, rgba(0, 0, 0, 0) 48.571%, rgba(0, 0, 0, 0.35) 90.881%);
    pointer-events: none;
}

.pro-nas-hero__inner {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 800px;
    padding: 30px 40px 50px;
    gap: 30px;
}

.pro-nas-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}

.pro-nas-hero__breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
}

.pro-nas-hero__breadcrumbs span {
    color: #ffffff;
}

.pro-nas-hero__breadcrumbs span:last-child {
    color: #cac0b6;
}

.pro-nas-hero__content {
    display: flex;
    align-items: center;
    width: 100%;
}

.pro-nas-hero__left,
.pro-nas-hero__right {
    box-sizing: border-box;
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    min-width: 0;
    height: 650px;
}

.pro-nas-hero__left {
    align-items: flex-start;
    justify-content: space-between;
}

.pro-nas-hero__right {
    align-items: flex-end;
    justify-content: flex-end;
}

.pro-nas-hero__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    width: 720px;
    max-width: 100%;
    margin: 0;
    font-family: Inter, sans-serif;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.pro-nas-hero__brand {
    display: block;
    font-size: 70px;
    white-space: nowrap;
}

.pro-nas-hero__title {
    display: block;
    width: 470px;
    max-width: 100%;
    font-size: 36px;
}

.pro-nas-hero__video {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 231px;
}

.pro-nas-hero__play {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    padding: 15px 50px;
    border: 1px solid #ffffff;
    border-radius: 100000px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.pro-nas-hero__play img {
    display: block;
    width: 24px;
    height: 24px;
    max-width: none;
}

.pro-nas-hero__video-text,
.pro-nas-hero__cta p,
.pro-nas-hero__button {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    white-space: normal;
}

.pro-nas-hero__cta p {
    width: 100%;
    overflow-wrap: break-word;
}

.pro-nas-hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    width: 340px;
}

.pro-nas-hero__button {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 340px;
    min-height: 54px;
    padding: 15px 50px;
    border: 1px solid #ffffff;
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
}

@media (max-width: 1240px) {
    .pro-nas-hero,
    .pro-nas-hero__inner {
        min-height: 720px;
    }

    .pro-nas-hero__left,
    .pro-nas-hero__right {
        height: 570px;
    }

    .pro-nas-hero__brand {
        font-size: 58px;
    }

    .pro-nas-hero__title {
        max-width: 430px;
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    .pro-nas-hero,
    .pro-nas-hero__inner {
        min-height: 680px;
    }

    .pro-nas-hero__inner {
        justify-content: flex-start;
        padding: 24px 20px 34px;
        gap: 22px;
    }

    .pro-nas-hero__content {
        flex-direction: column;
        align-items: stretch;
        flex: 1 1 auto;
        gap: 28px;
    }

    .pro-nas-hero__left,
    .pro-nas-hero__right {
        flex: none;
        width: 100%;
        height: auto;
    }

    .pro-nas-hero__left {
        flex: 1 1 auto;
    }

    .pro-nas-hero__right {
        align-items: flex-start;
    }

    .pro-nas-hero__brand {
        font-size: 42px;
        white-space: normal;
    }

    .pro-nas-hero__title {
        width: 430px;
        max-width: 500px;
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .pro-nas-hero,
    .pro-nas-hero__inner {
        min-height: 640px;
    }

    .pro-nas-hero__breadcrumbs,
    .pro-nas-hero__video-text,
    .pro-nas-hero__cta p,
    .pro-nas-hero__button {
        font-size: 15px;
    }

    .pro-nas-hero__brand {
        font-size: 34px;
    }

    .pro-nas-hero__title {
        width: 100%;
        font-size: 20px;
    }

    .pro-nas-hero__cta,
    .pro-nas-hero__button {
        width: 100%;
    }

    .pro-nas-hero__play {
        width: 70px;
        height: 70px;
    }
}

.pro-nas-approach {
    box-sizing: border-box;
    padding: 100px 40px;
    border-bottom: 1px solid #f3f3f3;
    background: #ffffff;
    color: #2b2929;
}

.pro-nas-approach__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.pro-nas-approach__title {
    width: 600px;
    max-width: 100%;
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #2b2929;
}

.pro-nas-approach__content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

.pro-nas-approach__text {
    display: flex;
    flex: 0 0 600px;
    align-items: center;
    height: 236px;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #2b2929;
    overflow-wrap: break-word;
    white-space: normal;
}

.pro-nas-approach__cards-wrap {
    flex: 1 1 auto;
    min-width: 0;
    align-self: stretch;
    overflow: hidden;
}

.pro-nas-approach__cards {
    display: flex;
    gap: 20px;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.pro-nas-approach__cards::-webkit-scrollbar {
    display: none;
}

.pro-nas-approach-card {
    box-sizing: border-box;
    display: flex;
    flex: 0 0 600px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-height: 236px;
    padding: 30px;
    border-radius: 10px;
    background: #2b2929;
    color: #ffffff;
    scroll-snap-align: start;
}

.pro-nas-approach-card__head {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 60px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
}

.pro-nas-approach-card__icon {
    display: block;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
}

.pro-nas-approach-card h3 {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    overflow-wrap: break-word;
    white-space: normal;
}

.pro-nas-approach-card p {
    width: 100%;
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    overflow-wrap: break-word;
    white-space: normal;
}

.pro-nas-approach__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.pro-nas-approach__pagination {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pro-nas-approach__pagination button {
    display: block;
    width: 12px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: #cac0b6;
    cursor: pointer;
    transition: width .25s ease, background-color .25s ease;
}

.pro-nas-approach__pagination button.is-active {
    width: 36px;
    background: #2b2929;
}

.pro-nas-approach__arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-nas-approach__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #f6f4f2;
    border-radius: 40px;
    background: #ffffff;
    cursor: pointer;
}

.pro-nas-approach__arrow img {
    display: block;
    width: 30px;
    height: 30px;
    transform: rotate(-90deg);
}

.pro-nas-approach__arrow--prev img {
    transform: rotate(90deg);
}

@media (max-width: 1240px) {
    .pro-nas-approach__text {
        flex-basis: 420px;
    }

    .pro-nas-approach-card {
        flex-basis: 520px;
    }
}

@media (max-width: 900px) {
    .pro-nas-approach {
        padding: 70px 20px;
    }

    .pro-nas-approach__inner {
        gap: 34px;
    }

    .pro-nas-approach__title {
        font-size: 42px;
    }

    .pro-nas-approach__content {
        flex-direction: column;
        align-items: stretch;
        overflow: visible;
    }

    .pro-nas-approach__text {
        flex: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        font-size: 16px;
    }

    .pro-nas-approach__cards-wrap {
        overflow: visible;
    }

    .pro-nas-approach__cards {
        margin-right: -20px;
        padding-right: 20px;
    }

    .pro-nas-approach-card {
        flex-basis: min(600px, calc(100vw - 40px));
        min-height: 236px;
    }
}

@media (max-width: 575px) {
    .pro-nas-approach {
        padding: 52px 20px;
    }

    .pro-nas-approach__title {
        font-size: 34px;
    }

    .pro-nas-approach-card {
        padding: 22px;
    }

    .pro-nas-approach-card__head {
        height: auto;
        min-height: 60px;
    }

    .pro-nas-approach-card h3 {
        font-size: 18px;
    }

    .pro-nas-approach-card p {
        font-size: 15px;
    }
}

.pro-nas-why {
    box-sizing: border-box;
    padding: 100px 40px;
    background: #f3f3f3;
    color: #363636;
}

.pro-nas-why__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.pro-nas-why__title {
    width: 100%;
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #363636;
    text-align: center;
}

.pro-nas-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.pro-nas-why-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-height: 224px;
    padding: 30px;
    border-radius: 10px;
    background: #ffffff;
}

.pro-nas-why-card__icon {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.pro-nas-why-card h3 {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    color: #2b2929;
}

.pro-nas-why-card p {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    color: #363636;
    overflow-wrap: break-word;
    white-space: normal;
}

@media (max-width: 1100px) {
    .pro-nas-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .pro-nas-why {
        padding: 70px 20px;
    }

    .pro-nas-why__inner {
        gap: 34px;
    }

    .pro-nas-why__title {
        font-size: 42px;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .pro-nas-why {
        padding: 52px 20px;
    }

    .pro-nas-why__title {
        font-size: 34px;
    }

    .pro-nas-why__grid {
        grid-template-columns: 1fr;
    }

    .pro-nas-why-card {
        min-height: 0;
        padding: 22px;
    }

    .pro-nas-why-card h3 {
        font-size: 18px;
    }

    .pro-nas-why-card p {
        font-size: 15px;
    }
}

.pro-nas-services {
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    padding: 100px 40px;
    background: #363636;
    color: #ffffff;
}

.pro-nas-services__info {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    min-width: 0;
    align-self: stretch;
}

.pro-nas-services__title {
    width: 100%;
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
}

.pro-nas-services__text {
    width: 870px;
    max-width: 100%;
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    color: #ffffff;
    overflow-wrap: break-word;
    white-space: normal;
}

.pro-nas-services__button {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    min-height: 54px;
    padding: 15px 50px;
    border: 1px solid #ffffff;
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.3);
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.pro-nas-services__accordion {
    display: flex;
    flex: 0 0 870px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 870px;
    font-family: Inter, sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.pro-nas-services-item {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #cac0b6;
    border-radius: 10px;
    background: #2b2929;
    overflow: hidden;
}

.pro-nas-services-item__header {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 94px;
    padding: 30px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
}

.pro-nas-services-item__number {
    flex: 0 0 auto;
    color: #cac0b6;
    white-space: nowrap;
}

.pro-nas-services-item__title {
    flex: 1 1 auto;
    min-width: 0;
    color: #ffffff;
    overflow-wrap: break-word;
}

.pro-nas-services-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.pro-nas-services-item__content {
    padding: 0 30px 30px 87px;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    overflow-wrap: break-word;
    white-space: normal;
}

.pro-nas-services-item.is-active .pro-nas-services-item__body {
    max-height: 260px;
}

@media (max-width: 1440px) {
    .pro-nas-services {
        gap: 40px;
    }

    .pro-nas-services__accordion {
        flex-basis: 680px;
        width: 680px;
    }
}

@media (max-width: 1100px) {
    .pro-nas-services {
        flex-direction: column;
        gap: 50px;
    }

    .pro-nas-services__accordion {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .pro-nas-services {
        padding: 70px 20px;
    }

    .pro-nas-services__title {
        font-size: 42px;
    }

    .pro-nas-services__info {
        gap: 34px;
    }

    .pro-nas-services-item__header {
        min-height: 78px;
        padding: 24px;
        font-size: 21px;
    }

    .pro-nas-services-item__content {
        padding: 0 24px 24px 72px;
    }
}

@media (max-width: 575px) {
    .pro-nas-services {
        padding: 52px 20px;
    }

    .pro-nas-services__title {
        font-size: 34px;
    }

    .pro-nas-services__text,
    .pro-nas-services__button,
    .pro-nas-services-item__content {
        font-size: 15px;
    }

    .pro-nas-services__button {
        width: 100%;
    }

    .pro-nas-services-item__header {
        gap: 12px;
        padding: 20px;
        font-size: 18px;
    }

    .pro-nas-services-item__content {
        padding: 0 20px 20px;
    }
}

.pro-nas-team {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 100px 40px;
    background: #ffffff;
    color: #2b2929;
}

.pro-nas-team__head {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    width: 100%;
}

.pro-nas-team__title {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #2b2929;
}

.pro-nas-team__text {
    flex: 0 0 870px;
    width: 870px;
    max-width: 100%;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    color: #2b2929;
    overflow-wrap: break-word;
    white-space: normal;
}

.pro-nas-team__cards {
    display: grid;
    grid-template-columns: repeat(5, 352px);
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    overflow: visible;
}

.pro-nas-team-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 352px;
    border: 2px solid #f3f3f3;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
}

.pro-nas-team-card__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 350 / 350;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f3f3;
}

.pro-nas-team-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-nas-team-card__body {
    box-sizing: border-box;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    width: 100%;
    padding: 20px 20px 30px;
}

.pro-nas-team-card h3 {
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
    color: #2b2929;
    overflow-wrap: break-word;
}

.pro-nas-team-card__position {
    min-height: 40px;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
    color: rgba(43, 41, 41, .5);
    overflow-wrap: break-word;
    white-space: normal;
}

.pro-nas-team-card__link,
.pro-nas-team__button {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 50px;
    border: 1px solid #2b2929;
    border-radius: 27px;
    background: transparent;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #2b2929;
    text-decoration: none;
    white-space: nowrap;
}

.pro-nas-team-card__link {
    width: 158px;
}

.pro-nas-team__button {
    width: 278px;
}

@media (max-width: 1440px) {
    .pro-nas-team__head {
        gap: 60px;
    }

    .pro-nas-team__text {
        flex-basis: 680px;
        width: 680px;
    }

    .pro-nas-team__cards {
        grid-template-columns: repeat(3, 352px);
    }
}

@media (max-width: 1100px) {
    .pro-nas-team__head {
        flex-direction: column;
        gap: 34px;
    }

    .pro-nas-team__text {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .pro-nas-team {
        padding: 70px 20px;
    }

    .pro-nas-team__title {
        font-size: 42px;
    }

    .pro-nas-team__cards {
        grid-template-columns: repeat(2, minmax(0, 352px));
    }
}

@media (max-width: 575px) {
    .pro-nas-team {
        padding: 52px 20px;
    }

    .pro-nas-team__title {
        font-size: 34px;
    }

    .pro-nas-team__text,
    .pro-nas-team-card__position,
    .pro-nas-team-card__link,
    .pro-nas-team__button {
        font-size: 15px;
    }

    .pro-nas-team-card {
        width: 100%;
    }

    .pro-nas-team__cards {
        grid-template-columns: 1fr;
    }

    .pro-nas-team-card h3 {
        font-size: 18px;
    }

    .pro-nas-team__button {
        width: 100%;
    }
}

.pro-nas-equipment {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 100px 40px;
    background: #f3f3f3;
    color: #2b2929;
}

.pro-nas-equipment__title {
    width: 100%;
    margin: 0;
    font-family: Inter, sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #2b2929;
}

.pro-nas-equipment__content {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    width: 100%;
}

.pro-nas-equipment__photo {
    position: sticky;
    top: 0;
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 870 / 580;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
}

.pro-nas-equipment__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.pro-nas-equipment__body {
    position: sticky;
    top: 0;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    min-width: 0;
    align-self: stretch;
}

.pro-nas-equipment__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    color: #2b2929;
}

.pro-nas-equipment__text p {
    margin: 0;
    overflow-wrap: break-word;
    white-space: normal;
}

.pro-nas-equipment__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pro-nas-equipment__list li {
    position: relative;
    margin: 0;
    padding-left: 20px;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #2b2929;
    overflow-wrap: break-word;
    white-space: normal;
}

.pro-nas-equipment__list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 150px;
    background: #2b2929;
}

.pro-nas-equipment__list span {
    font-weight: 700;
}

.pro-nas-equipment__button {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 278px;
    min-height: 54px;
    padding: 15px 50px;
    border: 1px solid #2b2929;
    border-radius: 27px;
    background: transparent;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: #2b2929;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 1440px) {
    .pro-nas-equipment__content {
        gap: 40px;
    }
}

@media (max-width: 1100px) {
    .pro-nas-equipment__content {
        flex-direction: column;
    }

    .pro-nas-equipment__photo,
    .pro-nas-equipment__body {
        position: relative;
        top: auto;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .pro-nas-equipment {
        padding: 70px 20px;
    }

    .pro-nas-equipment__title {
        font-size: 42px;
    }

    .pro-nas-equipment__body {
        gap: 34px;
    }
}

@media (max-width: 575px) {
    .pro-nas-equipment {
        padding: 52px 20px;
    }

    .pro-nas-equipment__title {
        font-size: 34px;
    }

    .pro-nas-equipment__text,
    .pro-nas-equipment__list li,
    .pro-nas-equipment__button {
        font-size: 15px;
    }

    .pro-nas-equipment__photo {
        border-radius: 10px;
    }

    .pro-nas-equipment__photo img {
        border-radius: 10px;
    }

    .pro-nas-equipment__button {
        width: 100%;
    }
}

.pro-nas-certificates {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 100px 40px;
    background: #fff;
}

.pro-nas-certificates__head {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    width: 100%;
}

.pro-nas-certificates__title {
    flex: 1 1 0;
    margin: 0;
    color: #2b2929;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.pro-nas-certificates__text {
    width: 870px;
    color: #2b2929;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}

.pro-nas-certificates__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 600px));
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.pro-nas-certificates__cards::-webkit-scrollbar {
    display: none;
}

.pro-nas-certificate-card {
    display: flex;
    width: 100%;
    max-width: 600px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f3f3;
}

.pro-nas-certificate-card__photo,
.pro-nas-certificate-card__body {
    flex: 1 1 0;
    min-width: 0;
}

.pro-nas-certificate-card__photo {
    padding: 10px;
}

.pro-nas-certificate-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.pro-nas-certificate-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 30px 20px;
}

.pro-nas-certificate-card__body h3 {
    margin: 0;
    color: #2b2929;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.pro-nas-certificate-card__body p {
    flex: 1 1 auto;
    min-height: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 16px;
    color: #363636;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    scrollbar-color: #363636 transparent;
    scrollbar-width: thin;
}

.pro-nas-certificate-card__body p::-webkit-scrollbar {
    width: 16px;
}

.pro-nas-certificate-card__body p::-webkit-scrollbar-track {
    background: transparent;
}

.pro-nas-certificate-card__body p::-webkit-scrollbar-thumb {
    min-height: 73px;
    border: 5px solid transparent;
    border-radius: 100px;
    background: #363636;
    background-clip: content-box;
}

.pro-nas-certificates__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 278px;
    min-height: 54px;
    padding: 15px 50px;
    border: 1px solid #2b2929;
    border-radius: 27px;
    color: #2b2929;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease;
}

.pro-nas-certificates__button:hover {
    background: #2b2929;
    color: #fff;
}

@media (max-width: 1199px) {
    .pro-nas-certificates__head {
        gap: 40px;
    }

    .pro-nas-certificates__text {
        width: 48%;
    }

    .pro-nas-certificates__cards {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .pro-nas-certificate-card {
        flex: 0 0 600px;
        width: 600px;
        scroll-snap-align: start;
    }
}

@media (max-width: 991px) {
    .pro-nas-certificates {
        padding: 70px 20px;
    }

    .pro-nas-certificates__head {
        flex-direction: column;
        gap: 24px;
    }

    .pro-nas-certificates__title {
        font-size: 42px;
    }

    .pro-nas-certificates__text {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .pro-nas-certificates {
        gap: 32px;
        padding: 50px 10px;
    }

    .pro-nas-certificates__title {
        font-size: 32px;
    }

    .pro-nas-certificates__text,
    .pro-nas-certificate-card__body p,
    .pro-nas-certificates__button {
        font-size: 15px;
    }

    .pro-nas-certificate-card {
        flex-basis: calc(100vw - 20px);
        width: calc(100vw - 20px);
        height: 520px;
        flex-direction: column;
    }

    .pro-nas-certificate-card__photo {
        height: 300px;
    }

    .pro-nas-certificate-card__body {
        min-height: 0;
        justify-content: flex-start;
        padding: 20px;
    }

    .pro-nas-certificate-card__body h3 {
        font-size: 18px;
    }

    .pro-nas-certificates__button {
        width: 100%;
    }
}

@media (max-width: 1440px) {
    .pro-nas-history__more {
        gap: 40px;
    }

    .pro-nas-history-quote {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}

@media (max-width: 1100px) {
    .pro-nas-history__more,
    .pro-nas-history__quotes {
        grid-template-columns: 1fr;
    }

    .pro-nas-history-quote {
        grid-template-columns: minmax(0, 1fr) 360px;
    }
}

@media (max-width: 900px) {
    .pro-nas-history {
        gap: 40px;
        padding: 70px 20px;
    }

    .pro-nas-history__title,
    .pro-nas-history__more-title {
        font-size: 42px;
    }

    .pro-nas-history-timeline-card {
        flex-basis: 360px;
    }

    .pro-nas-history__timeline::before {
        width: calc((360px + 30px) * 5 - 180px);
    }
}

@media (max-width: 575px) {
    .pro-nas-history {
        gap: 32px;
        padding: 50px 10px;
    }

    .pro-nas-history__title,
    .pro-nas-history__more-title {
        font-size: 32px;
    }

    .pro-nas-history-timeline-card {
        flex-basis: calc(100vw - 20px);
        min-height: auto;
    }

    .pro-nas-history__timeline::before {
        width: calc((100vw + 10px) * 5 - 50vw);
    }

    .pro-nas-history__controls {
        align-items: flex-start;
        gap: 20px;
    }

    .pro-nas-history__pagination {
        flex-wrap: wrap;
        gap: 14px;
    }

    .pro-nas-history__photo {
        border-radius: 12px;
    }

    .pro-nas-history__more-text,
    .pro-nas-history__list li,
    .pro-nas-history__button,
    .pro-nas-history-quote__text {
        font-size: 15px;
    }

    .pro-nas-history__button {
        width: 100%;
    }

    .pro-nas-history-quote {
        grid-template-columns: 1fr;
    }

    .pro-nas-history-quote__content {
        padding: 20px;
    }

    .pro-nas-history-quote__icon {
        width: 56px;
        height: 56px;
    }

    .pro-nas-history-quote__author strong {
        font-size: 18px;
    }

    .pro-nas-history-quote__photo img {
        height: 360px;
    }
}
