/*
Theme Name: Template
Theme URI:  
Author: Fox
Author URI: 
Version: 2.40
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gpress
*/

/*
*
*

* 
*
*/

/* Shared radius for rectangular buttons across the site. */
button[type="submit"],
button[type="reset"],
button.button,
input[type="submit"],
input[type="button"],
input[type="reset"],
a[class*="button"],
.header__callback,
.text_main_link,
.main_projects_link,
.price_block_buttons_link,
.team_main_full_item_button a,
.team-card__request,
.pagination .page-numbers,
.article-listing__pagination .page-numbers,
.wp-block-button__link,
.cky-btn {
    border-radius: 5px !important;
}

/* Article content, table of contents, FAQ and related materials */
.article-entry {
    color: #454545;
    font-size: 16px;
    line-height: 1.75;
}

.article-entry::after {
    content: "";
    display: table;
    clear: both;
}

.article-entry p {
    margin-bottom: 22px;
}

.article-entry img:not(.emoji) {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    margin: 30px 0;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 14px 38px rgba(34, 34, 34, 0.12);
}

.article-entry img.alignleft,
.article-entry img[align="left"],
.article-entry img[style*="float: left"],
.article-entry img[style*="float:left"] {
    float: left !important;
    width: auto !important;
    max-width: min(46%, 520px) !important;
    margin: 8px 30px 22px 0 !important;
}

.article-entry img.alignright,
.article-entry img[align="right"],
.article-entry img[style*="float: right"],
.article-entry img[style*="float:right"] {
    float: right !important;
    width: auto !important;
    max-width: min(46%, 520px) !important;
    margin: 8px 0 22px 30px !important;
}

.article-entry figure {
    max-width: 100%;
    margin: 34px 0;
}

.article-entry figure img {
    margin: 0;
}

.article-entry figcaption,
.article-entry .wp-caption-text {
    margin-top: 10px;
    color: #858585;
    font-size: 12px;
    line-height: 1.5;
}

.article-toc {
    --article-toc-accent: #ff9f2e;
    --article-toc-text: #252525;
    margin: 4px 0 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dedede;
    color: var(--article-toc-text);
}

.article-toc__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 22px;
}

.article-toc__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 7px;
    color: #707070;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.article-toc__eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    flex: 0 0 30px;
    background: var(--article-toc-accent);
}

.article-entry .article-toc__title {
    position: static;
    margin: 0;
    padding: 0;
    color: var(--article-toc-text);
    font-size: clamp(29px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.08;
    text-transform: none;
}

.article-entry .article-toc__title::before {
    display: none;
}

.article-toc__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-toc__item {
    min-width: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e4e4e4;
}

.article-toc__link {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-height: 62px;
    padding: 18px 0 16px;
    color: var(--article-toc-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-toc__link:hover,
.article-toc__link:focus-visible {
    color: #b86500;
}

.article-toc__link:focus-visible {
    outline: 2px solid var(--article-toc-accent);
    outline-offset: 4px;
}

.article-toc__number {
    padding-top: 4px;
    color: var(--article-toc-accent);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
}

.article-toc__text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.article-toc__item--level-3 .article-toc__link {
    padding-left: 20px;
    color: #666;
}

.article-toc__item--level-3 .article-toc__number {
    color: #a5a5a5;
}

.article-entry > h2[id],
.article-entry > h3[id] {
    scroll-margin-top: 110px;
}

@media (prefers-reduced-motion: no-preference) {
    html:has(.article-toc) {
        scroll-behavior: smooth;
    }
}

.article-faq,
.article-related {
    --article-accent: #ff9f2e;
    --article-text: #252525;
    --article-muted: #747474;
    margin-top: 76px;
    color: var(--article-text);
}

.article-section-heading {
    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
    gap: 26px;
    align-items: end;
    margin-bottom: 30px;
}

.article-section-heading__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    color: #707070;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.article-section-heading__eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    flex: 0 0 30px;
    background: var(--article-accent);
}

.article-section-heading h2 {
    margin: 0;
    color: var(--article-text);
    font-size: clamp(30px, 3.15vw, 44px);
    font-weight: 500;
    line-height: 1.08;
    text-transform: none;
}

.article-faq__list {
    border-bottom: 1px solid #dedede;
}

.article-faq__item {
    border-top: 1px solid #dedede;
}

.article-faq__question {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    gap: 18px;
    align-items: center;
    min-height: 82px;
    padding: 20px 2px;
    color: var(--article-text);
    cursor: pointer;
    list-style: none;
}

.article-faq__question::-webkit-details-marker {
    display: none;
}

.article-faq__question:focus-visible {
    outline: 2px solid var(--article-accent);
    outline-offset: 4px;
}

.article-faq__number {
    color: var(--article-accent);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
}

.article-faq__question-text {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
}

.article-faq__toggle {
    position: relative;
    width: 28px;
    height: 28px;
    justify-self: end;
}

.article-faq__toggle::before,
.article-faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    background: #3d3d3d;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.article-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.article-faq__item[open] .article-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.article-faq__answer {
    padding: 0 50px 26px 56px;
    color: var(--article-muted);
    font-size: 15px;
    line-height: 1.72;
}

.article-faq__answer p {
    max-width: 720px;
    margin: 0;
}

.article-related {
    margin-top: 90px;
    margin-bottom: 24px;
}

.article-section-heading--related {
    display: block;
    margin-bottom: 30px;
}

.article-section-heading--related .article-section-heading__eyebrow {
    margin-bottom: 14px;
    padding-bottom: 0;
}

.article-section-heading--related h2 {
    max-width: 760px;
    font-size: clamp(32px, 3.4vw, 48px);
}

.article-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.article-related__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 260px;
    padding: 26px 24px 24px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    background: #fff;
    color: var(--article-text);
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.article-related__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--article-accent);
    transform: scaleX(0.22);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.article-related__card:hover,
.article-related__card:focus-visible {
    border-color: rgba(255, 159, 46, 0.62);
    box-shadow: 0 16px 34px rgba(37, 37, 37, 0.09);
    transform: translateY(-4px);
}

.article-related__card:hover::before,
.article-related__card:focus-visible::before {
    transform: scaleX(1);
}

.article-related__card:focus-visible {
    outline: 2px solid var(--article-accent);
    outline-offset: 3px;
}

.article-related__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.article-related__card:hover .article-related__title,
.article-related__card:focus-visible .article-related__title {
    color: #b86500;
}

.article-related__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 28px;
    color: #6f6f6f;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-related__action span {
    display: block;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    background: var(--article-accent) url(images/arrow_a.svg) no-repeat center;
    color: #fff;
    font-size: 0;
    transition: transform 0.2s ease;
}

.article-related__card:hover .article-related__action span,
.article-related__card:focus-visible .article-related__action span {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .article-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-related__card {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .article-entry img:not(.emoji),
    .article-entry img.alignleft,
    .article-entry img.alignright,
    .article-entry img[align="left"],
    .article-entry img[align="right"],
    .article-entry img[style*="float"] {
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 26px 0 !important;
    }

    .article-toc {
        margin-bottom: 40px;
        padding-bottom: 22px;
    }

    .article-toc__header {
        display: block;
        margin-bottom: 18px;
    }

    .article-toc__eyebrow {
        margin-bottom: 12px;
        padding-bottom: 0;
    }

    .article-entry .article-toc__title {
        font-size: clamp(28px, 9vw, 36px);
    }

    .article-toc__list {
        grid-template-columns: 1fr;
    }

    .article-toc__link {
        min-height: 56px;
        padding: 15px 0 14px;
    }

    .article-toc__item--level-3 .article-toc__link {
        padding-left: 14px;
    }

    .article-faq,
    .article-related {
        margin-top: 56px;
    }

    .article-section-heading {
        grid-template-columns: 1fr;
        gap: 13px;
        margin-bottom: 24px;
    }

    .article-section-heading h2 {
        font-size: clamp(29px, 9vw, 38px);
    }

    .article-faq__question {
        grid-template-columns: 28px minmax(0, 1fr) 26px;
        gap: 12px;
        min-height: 74px;
        padding: 18px 0;
    }

    .article-faq__question-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .article-faq__answer {
        padding: 0 0 23px 40px;
        font-size: 14px;
        line-height: 1.7;
    }

    .article-related__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .article-related__card {
        min-height: 0;
        padding: 22px 20px 20px;
    }

    .article-section-heading--related {
        margin-bottom: 22px;
    }

    .article-section-heading--related .article-section-heading__eyebrow {
        margin-bottom: 12px;
    }

    .article-related__title {
        font-size: 15px;
    }

    .article-related__action {
        padding-top: 26px;
    }
}

/* Articles categories archive */
.articles-categories {
    --articles-accent: #ffae42;
    --articles-text: #303030;
    --articles-muted: #505050;
    padding: 30px 0 100px;
    background: #fff;
}

.articles-categories *,
.articles-categories *::before,
.articles-categories *::after {
    box-sizing: border-box;
}

.articles-categories__container {
    width: calc(100% - 40px);
    max-width: 1290px;
    margin: 0 auto;
}

.articles-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 60px;
    color: var(--articles-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.articles-breadcrumbs a,
.articles-breadcrumbs span {
    color: inherit;
    text-decoration: none;
}

.articles-breadcrumbs a:hover,
.articles-breadcrumbs span[aria-current="page"] {
    color: #ffc061;
}

.articles-breadcrumbs img {
    display: block;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}

.articles-categories__layout {
    display: grid;
    grid-template-columns: minmax(0, 850px) 410px;
    gap: 30px;
    align-items: start;
}

.articles-categories__main {
    min-width: 0;
}

.articles-categories__heading {
    margin-bottom: 30px;
}

.articles-categories__heading h1 {
    margin: 0;
    color: var(--articles-text);
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: none;
}

.articles-categories__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 60px;
}

.articles-category-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 30px;
}

.articles-category-card__media {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 410 / 240;
    border-radius: 10px;
    background: #f9f9f9;
}

.articles-category-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.articles-category-card:hover .articles-category-card__media img {
    transform: scale(1.025);
}

.articles-category-card__content,
.articles-category-card__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.articles-category-card__content {
    gap: 20px;
}

.articles-category-card__copy {
    width: 100%;
    gap: 20px;
    color: var(--articles-text);
}

.articles-category-card h2 {
    width: 100%;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: none;
}

.articles-category-card h2 a {
    color: inherit;
    text-decoration: none;
}

.articles-category-card h2 a:hover {
    color: var(--articles-accent);
}

.articles-category-card__description {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.articles-category-card__description p {
    margin: 0;
}

.articles-category-card__description p + p {
    margin-top: 12px;
}

.articles-category-card__button,
.articles-mission__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 14px 24px;
    border: 0;
    border-radius: 6px;
    background: var(--articles-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.articles-category-card__button:hover,
.articles-mission__button:hover {
    background: #e99a31;
    color: #fff;
    transform: translateY(-1px);
}

.articles-categories__sidebar {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .post-type-archive-stati .articles-categories__sidebar,
    .post-type-archive-novosti .articles-categories__sidebar {
        position: sticky;
        top: var(--articles-sidebar-sticky-top, 24px);
        align-self: start;
    }
}

.articles-services {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    background: #f9f9f9;
}

.articles-services__link {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 10px;
    color: var(--articles-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    text-decoration: none;
}

.articles-services__link:hover {
    color: var(--articles-accent);
}

.articles-services__icon {
    display: grid;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    place-items: center;
}

.articles-services__icon img {
    grid-area: 1 / 1;
    display: block;
    width: 16px;
    height: 13px;
}

.articles-services__icon img:last-child {
    display: none;
}

.articles-services__link:hover .articles-services__icon img:first-child,
.articles-services__link.is-active .articles-services__icon img:first-child {
    display: none;
}

.articles-services__link:hover .articles-services__icon img:last-child,
.articles-services__link.is-active .articles-services__icon img:last-child {
    display: block;
}

.articles-services__link.is-active {
    color: var(--articles-accent);
    font-weight: 700;
}

.articles-mission {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    background: #505050;
    color: #fff;
}

.articles-mission h2 {
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--articles-accent);
    color: var(--articles-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
}

.articles-mission p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.articles-categories__empty {
    margin: 0;
    color: var(--articles-muted);
    font-size: 16px;
}

@media (max-width: 1199px) {
    .articles-categories__layout {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .articles-services,
    .articles-mission {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .articles-breadcrumbs {
        margin-bottom: 40px;
    }

    .articles-categories__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .articles-categories__sidebar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
        align-items: start;
    }
}

@media (max-width: 767px) {
    .articles-categories {
        padding-top: 24px;
        padding-bottom: 70px;
    }

    .articles-categories__container {
        width: calc(100% - 30px);
    }

    .articles-breadcrumbs {
        font-size: 14px;
    }

    .articles-categories__heading h1 {
        font-size: 30px;
    }

    .articles-categories__grid,
    .articles-categories__sidebar {
        grid-template-columns: 1fr;
    }

    .articles-categories__grid {
        row-gap: 48px;
    }

    .articles-category-card {
        gap: 24px;
    }
}

@media (max-width: 479px) {
    .articles-categories__heading h1 {
        font-size: 26px;
    }

    .articles-services,
    .articles-mission {
        padding: 25px;
    }
}

.content_h2 {
    position: relative;
    padding-bottom: 10px;
}

.content_h2:before {
    content: "";
    width: 60px;
    height: 2px;
    background: #ffae42;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.section {
    min-height: 981px;
}

ul {}

ul:not([class]) li+li {
    margin-top: 10px;
}

h3 {
    color: #ffc061;
}

:active,
:hover,
:focus {
    outline: 0;
    outline-offset: 0;
}

:root {
    --scrollbarBg: #e9e9e9;
    --scrollbarThumb: #ffc061;
    --scrollbarWidth: 12px;
    --scrollbarBorder: 3px solid var(--scrollbarBg);
}

.scroll_page_text {
    scrollbar-width: var(--scrollbarWidth);
    scrollbar-color: var(--scrollbarThumb) var(--scrollbarBg);
}

.scroll_page_text::-webkit-scrollbar {
    width: var(--scrollbarWidth);
}

.scroll_page_text::-webkit-scrollbar-track {
    background: var(--scrollbarBg);
    border-radius: var(--scrollbarBorderRadius);
}

.scroll_page_text::-webkit-scrollbar-thumb {
    background-color: var(--scrollbarThumb);
    border-radius: var(--scrollbarBorderRadius);
    border: var(--scrollbarBorder);
}

.nofound-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 750px;
    text-align: center;
}

.content_404_title {
    font-size: 187.636px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFAE42;
    line-height: 228.73px;
}

.content_404_text {
    font-size: 40px;
    font-weight: 500;
    line-height: 48.76px;
}

.content_404_button {
    width: 100%;
    max-width: 350px;
    height: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 34.5px;
    text-transform: uppercase;
    text-decoration: none;
    background: #FFAE42;
    margin-top: 46px;
}

.form_popup {
    width: 100%;
    max-width: 500px;
}

.modal-title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffae42;
    font-weight: bold;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.fix_button {
    background: #141414;
    border: 1px solid #ffae42;
    width: 100%;
    max-width: 277px;
    height: 54px;
    position: fixed;
    top: 280px;
    right: -110px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px 10px 10px;
    align-items: center;
    text-decoration: none;
    transform: rotate(270deg);
    border-top-right-radius: 20px;
    z-index: 111;
    border-bottom-left-radius: 20px;
}

.fix_button_text {
    color: #fff;
    font-weight: 700;
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 16px;
}

.fix_button_icon {
    background: #ffae42;
    padding: 0px 16px;
    border-top-right-radius: 20px;
    height: inherit;
    display: flex;
    align-items: center;
}

.fix_button_icon svg {
    transform: rotate(90deg);
}

.wpcf7-spinner {
    display: none;
}

.form_archive {
    margin: 0 auto;
}

.header_fix.--fixed {
    position: fixed !important;
    top: -100%;
    width: 100%;
    z-index: 100;
    min-height: 100px !important;
}

.header_fix.--fixed .breadcrumbs {
    display: none !important;
}

.header_fix.--fixed .header__logo {
    margin-bottom: 10px;
}

.header_fix.--fixed .header__logo img {
    height: 110px;
}

.mb-50 {
    margin-bottom: 50px;
}

.slider__title {
    margin-top: 30px;
    font-weight: 600;
    font-size: 56px;
    line-height: 72px;
    max-width: 1116px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.slider__title span {
    color: #ffae42;
}

.slider__title:before {
    content: "";
    width: 108px;
    height: 3px;
    background: #ffae42;
    position: absolute;
    bottom: 0px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.slider__text {
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
}

.slider__button {
    border: 1.61905px solid #ffae42;
    border-radius: 8.09524px;
    width: 100%;
    max-width: 290px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 21.0476px;
    line-height: 34px;
    color: #fff;
    text-decoration: none;
    margin-top: 44px;
    background-image: linear-gradient(#ffae42, #ffae42);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition:
        background-size 0.5s,
        color 0.5s;
}

.slider__button:hover {
    background-size: 100% 100%;
}

.slider_block_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
    margin: 40px 0px;
}

.slider_block_item {
    min-height: 226px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 15px;
    border-right: 1px solid #ffae42;
    text-decoration: none;
}

.slider_block_item:hover .slider_block_item_title {
    color: #ffae42;
}

.slider_block_item_title {
    margin-top: 24px;
    font-size: 18px;
    font-weight: 700;
    line-height: 20.7px;
    text-transform: uppercase;
    width: 100%;
    max-width: 200px;
    color: #fff;
}

.slider_block_list .slider_block_item:last-child {
    border: none;
}

/*breadcrumbs*/

.breadcrumbs {
    position: absolute;
    bottom: 20px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    max-width: 700px;
    line-height: 20px;
}

.breadcrumbs__link {
    color: #ffae42;
}

.breadcrumbs__link:hover {}

.breadcrumbs__separator {
    padding: 0px 10px;
}

.breadcrumbs__current {}

/*/ breadcrumbs*/

.pagination {
    text-align: center;
}

.pagination .current {
    background: #505050 !important;
}

.pagination .page-numbers {
    background: #ffae43;
    color: #fff;
    padding: 5px 10px;
    display: inline-flex;
    text-decoration: none;
}

.dashed_button {
    font-size: 18px;
    color: #ffae42;
    text-transform: uppercase;
    width: 100%;
    border: 1px dashed #ffae42;
    padding: 20px 50px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.dashed_button:hover {
    background: #ffae42;
    color: #fff;
}

#fullpage {
    max-width: 100%;
    margin: 0 auto;
}

.content_section {
    overflow: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #505050;
    font-size: 18px;
    opacity: 0;
    transition: opacity 1.5s;
}

.fp-tooltip {
    font-family: "Montserrat", sans-serif !important;
}

.container {
    max-width: 1570px;
}

.relative {
    position: relative;
}

.page_title {
    font-size: 36px;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    margin: 0px 0px 30px 0px;
}

.page_title:before {
    content: "";
    position: absolute;
    width: 119px;
    height: 3px;
    background: #ffbe42;
    bottom: 0px;
}

.page_title_contact {
    color: #505050;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    line-height: 41.4px;
    text-transform: uppercase;
}

.page_title_contact span {
    color: #f90;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.relative {
    position: relative;
}

.title {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.title span {
    color: #ffae42;
}

h2.title,
h2.callback_main_title,
h2.work_main_title {
    margin-top: 0;
}

.title_roman {
    font-size: 40px;
    line-height: 1.5;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.title_roman p {
    margin: 0;
}

.page_content {
    margin: 50px 0px;
}

.button_s {
    border: 1px solid #ffae42;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 13px 20px;
    background-image: linear-gradient(#ffae42, #ffae42);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.5s, color 0.5s;
    color: #505050;
    text-decoration: none;
}

.button_s:hover {
    background-size: 100% 100%;
}

@-moz-keyframes cycle {
    35% {
        transform: rotate(0) translate(0, 0);
    }

    40% {
        transform: rotate(5deg) translate(0, -4px);
    }

    45% {
        transform: rotate(-3deg) translate(0, -4px);
    }

    50% {
        transform: rotate(5deg) translate(0, -4px);
    }

    55% {
        transform: rotate(-3deg) translate(0, -4px);
    }

    60% {
        transform: rotate(5deg) translate(0, -4px);
    }

    65% {
        transform: rotate(-3deg) translate(0, -4px);
    }

    70% {
        transform: rotate(0) translate(0, 0);
    }
}

@-webkit-keyframes cycle {
    35% {
        transform: rotate(0) translate(0, 0);
    }

    40% {
        transform: rotate(5deg) translate(0, -4px);
    }

    45% {
        transform: rotate(-3deg) translate(0, -4px);
    }

    50% {
        transform: rotate(5deg) translate(0, -4px);
    }

    55% {
        transform: rotate(-3deg) translate(0, -4px);
    }

    60% {
        transform: rotate(5deg) translate(0, -4px);
    }

    65% {
        transform: rotate(-3deg) translate(0, -4px);
    }

    70% {
        transform: rotate(0) translate(0, 0);
    }
}

@-webkit-keyframes swing {
    15% {
        -webkit-transform: translateX(9px);
        transform: translateX(9px);
    }

    30% {
        -webkit-transform: translateX(-9px);
        transform: translateX(-9px);
    }

    40% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }

    50% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }

    65% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes swing {
    15% {
        -webkit-transform: translateY(9px);
        transform: translateY(9px);
    }

    30% {
        -webkit-transform: translateY(-9px);
        transform: translateY(-9px);
    }

    40% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

    50% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    65% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.scroll_page_text {
    height: 720px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 30px;
}

.button_callback_gray {
    width: 316px;
    height: 54px;
    border: 1px dashed #585a5e;
    text-align: center;
    color: #505050;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
}

/*slide*/

.full_slider_main {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.full_slider_main video,
.full_slider_main img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#fp-nav ul li,
.fp-slidesNav ul li {
    width: 16px;
    height: 16px;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    width: 6px;
    height: 6px;
    background-color: #ffae42;
    opacity: 1;
    border-radius: 0;
    margin: -3px 0 0 -3px;
}

#fp-nav ul li a.active,
.fp-slidesNav ul li a.active {
    border: 1px solid #ffae43;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    height: 6px;
    width: 6px;
    margin: -3px 0 0 -3px;
    border-radius: unset;
}

.mouse_block {
    position: absolute;
    bottom: 38px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 52px;
    height: 52px;
    -webkit-animation: swing 4s ease infinite;
    animation: swing 4s ease infinite;
    z-index: 3;
}

.full_slider_content {
    z-index: 3;
    position: relative;
}

.search_link_wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search_link {
    color: #ffae42;
    font-weight: 500;
}

#search {
    display: none;
    width: 100%;
    max-width: 800px;
    background: transparent;
}

#search .form-inline {
    display: flex;
}

#search .form-control {
    width: 100%;
    min-height: 50px;
    background: #505050;
    border: none;
    color: #fff;
    padding: 5px 20px;
}

#search .fancybox-close-small {
    color: #fff;
}

#search .search_button {
    padding: 0px 20px;
    background: #ffae42;
    border: none;
}

/*slide*/

.section__map_main {
    padding: 40px 0px;
}

/*header_main*/

.header_icons {
    padding-left: 20px;
    display: flex;
}

.header_icons a {
    text-decoration: none;
}

.header_icons a+a {
    margin-left: 15px;
}

#header {
    background: url(images/bg_page.jpg) center top/cover no-repeat;
    position: relative;
    min-height: 180px;
}

.section__header {
    color: #fff;
    position: relative;
}

.full_slider_main:before {
    content: "";
    background: url(images/dots_slider.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.header_left__block {
    margin-top: 43px;
    border-bottom: 1px solid #585858;
    min-height: 60px;
}

.header__menu {}

.header__menu .menu-item-has-children {
    padding-bottom: 15px;
    position: relative;
}

.header__menu .menu-item-has-children:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    color: #ffae42;
    padding-left: 5px;
    display: inline-flex;
    transition: 0.5s ease;
}

.header__menu .menu-item-has-children:hover::after {
    transform: rotate(92deg);
}

.header__menu ul {
    display: flex;
    padding-left: 0px;
    flex-wrap: wrap;
    margin: 0px;
    position: relative;
    gap: 40px;
}

.header__menu ul li {
    list-style-type: none;
}

.header__menu ul li:last-child {
    margin-right: 0px;
}

.header__menu ul li a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
}

.header__menu ul li a:hover {
    color: #ffae42;
}

.header__menu ul ul {
    display: none;
    position: absolute;
    top: 100%;
    list-style-type: none;
    padding: 11px 25px 11px 10px;
    min-height: 200px;
    z-index: 111;
}

.header__menu ul li:hover>ul {
    display: flex;
    gap: 10px;
    background: rgba(20, 20, 20, 0.6);
}

.header__menu ul ul li {
    min-width: 170px;
    display: list-item;
    position: relative;
}

.header__menu ul ul li.nav-item-5695 {
    white-space: nowrap;
}

.header__menu ul ul li:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f0da";
    color: #ffae42;
    padding-right: 5px;
    display: inline-flex;
    font-weight: bold;
}

.header__logo {
    margin-top: 10px;
}

.header__logo__text {
    color: #ffae42;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}

.header__logo img {}

.header_right__block {
    margin-top: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid #585858;
    min-height: 60px;
    padding-bottom: 30px;
    gap: 15px;
    color: #fff;
    justify-content: space-between;
    align-items: center;
}

.header_right__block_info_block {
    width: 100%;
    max-width: 455px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 21px;
    text-align: right;
}

.header_right__block_email a {
    color: #fff;
    text-decoration: none;
}

.header__time_work span {
    color: #ffae42;
}

.header_right__block_phone {
    display: flex;
    gap: 15px;
}

.header__phone {}

.header__phone a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    line-height: 21px;
    font-family: "Montserrat";
}

.header__phone a:hover {}

.header__callback {
    border: 1px solid #ffae42;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 13px 20px;
    background-image: linear-gradient(#ffae42, #ffae42);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition:
        background-size 0.5s,
        color 0.5s;
}

.header__callback:hover {
    background-size: 100% 100%;
}

.header__callback a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.header__callback a:hover {}

.header_title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 246px;
    position: relative;
    padding-bottom: 40px;
    line-height: 1.2;
}

.header_title:before {
    content: "";
    width: 120px;
    height: 3px;
    background-color: #ffbf42;
    position: absolute;
    bottom: 0px;
    margin: 0 auto;
    left: 0px;
    right: 0px;
}

.header_title p {
    margin: 0;
}

.header_subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 30px;
}

/*single_project_main*/
.section__single_project {
    padding: 68px 0px 114px 0px;
    min-height: fit-content;
}

.main_single_project_wrap {
    display: flex;
    gap: 40px;
}

.main_single_project_img img {
    max-width: 100%;
    height: auto;
}

.main_single_project_left {
    flex: 0 0 57%;
}

.main_single_project_title {
    font-size: 39px;
    font-weight: 500;
    line-height: 55px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.main_single_project_text {
    margin-bottom: 30px;
    font-size: 16px;
}

/*single_project_main*/

/*text_main*/

.section__text_main {
    padding: 40px 0px;
    min-height: auto;
    background: #E9E9E9;
}

.text_main_title {}

.text_main_title p {}

.text_main_text {
    width: 100%;
    max-width: 500px;
    margin-top: 15px;
    text-align: justify;
    letter-spacing: 0.03em;
    font-size: 16px;
    line-height: 21px;
}

.text_main_text__wrap {
    color: #505050;
}

.text_main_link {
    font-size: 18px;
    color: #505050;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #585a5e;
    padding: 15px 25px;
    display: inline-flex;
    margin: 50px 0px;
}

.text_main_link:hover {}

.text_main_img__wrap {
    padding-top: 100px;
}

.text_main_img__wrap img {
    max-width: 100%;
    height: auto;
}

.text_main__counter_wrap {
    position: absolute;
    right: 0px;
    height: 100%;
    width: 100%;
    max-width: 576px;
    background-color: #505050;
    color: #fff;
    display: flex;
    align-items: center;
}

.text_main__counter_list {
    margin-left: 57px;
    width: 100%;
}

.text_main__counter_item {
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
}

.text_main__counter_content {
    max-width: 200px;
}

.text_main__counter_value {
    color: #ffae42;
    font-size: 48px;
    line-height: 30px;
    margin-bottom: 25px;
    font-weight: 400;
}

.text_main__counter_label {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: lowercase;
}

/*/text_main*/

/*uslugi_main*/

.usligi_title {
    margin-bottom: 50px;
}

.uslugi_block {
    min-height: 370px;
    width: 100%;
    text-align: center;
    padding: 30px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.uslugi_block_img {
    margin-bottom: 40px;
}

.uslugi_block_img img {
    height: auto;
    transition: .5s;
}

.uslugi_block:hover .uslugi_block_img img {
    transform: scale(1.2);
}

.uslugi_block_title {
    text-transform: uppercase;
}

.uslugi_block_title a {
    font-size: 18px;
    color: #505050;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

.uslugi_block_title a:hover {}

.uslugi_main_1,
.uslugi_main_2,
.uslugi_main_3,
.uslugi_main_4 {
    background-position: bottom center;
}

.uslugi_main_5,
.uslugi_main_6,
.uslugi_main_7,
.uslugi_main_8 {
    background-position: top center;
}

/*/uslugi_main*/

/*work*/

.section__work_main {
    background-color: #e9e9e9;
    padding: 30px 0px;
}

.work_main_title {}

.work_main_text {}

.work_main_step_wrap {
    position: absolute;
    left: 0px;
    height: 100%;
    width: 100%;
    max-width: 576px;
    background-color: #505050;
    color: #fff;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    padding-right: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
    justify-content: center;
    top: 0px;
}

.work_main_step_list {
    position: relative;
}

.work_main_step_list:before {
    content: "";
    height: 74%;
    width: 1px;
    position: absolute;
    left: -65px;
    border: 1px dashed #9d9d9d;
    top: 43px;
}

.work_main_step_item {
    margin-bottom: 50px;
}

.work_main_step_value {
    font-size: 72px;
    font-weight: 700;
    margin-right: 40px;
    color: #ffae42;
    position: relative;
}

.work_main_step_value:before {
    content: "";
    position: absolute;
    width: 50px;
    left: -65px;
    top: 40px;
    height: 1px;
    border: 1px dashed #9d9d9d;
}

.work_main_step_label {
    font-weight: 700;
    text-transform: uppercase;
}

.work_main_step_label p {
    margin: 0;
}

.work_main_title_step {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 100px;
}

.work_main_title_step p {
    margin: 0;
}

.review_main_slider_wrap {
    margin-top: 50px;
    position: relative;
}

.review_main_slider {
    overflow: hidden;
}

.review_main_slider_item {}

.review_main_slider_item_content {
    width: 100%;
    max-width: 542px;
    background-color: #f6f6f6;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 260px;
    height: 100%;
    margin-top: 50px;
    font-size: 18px;
}

.review_main_slider_item_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.review_main_slider_item_text {
    font-style: italic;
}

.review_main_slider_item_img {}

.review_main_slider_item_img img {
    width: 100%;
    border: 5px solid #ffae43;
    max-width: 350px;
    height: auto;
}

.review_main_slider_title {
    display: flex;
    flex-direction: column;
    writing-mode: tb-rl;
    transform: rotate(179deg);
    align-items: flex-end;
    font-size: 36px;
    color: #bebebe;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 50px;
}

.review_main_slider_title .review_main_slider_title_big {
    font-size: 90px;
}

.arrow_review_wrap {
    position: absolute;
    top: 0;
    left: 0px;
    display: flex;
    font-size: 40px;
    color: #505050;
    width: 100%;
    max-width: 100px;
    justify-content: space-between;
    z-index: 1;
}

.arrow_review {}

.arrow_review:hover {
    color: #bebebe;
    cursor: pointer;
}

.arrow_review_prev {}

.arrow_review_next {}

.all_review_button {
    position: absolute;
    bottom: 0px;
    font-size: 18px;
    padding: 10px 40px;
    color: #505050;
    text-decoration: none;
    background: #e9e9e9;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px dashed #585a5e;
    left: 0px;
    z-index: 1;
}

.all_review_button:hover {}

/*/work*/

/*main_projects*/
.section__projects_main {
    padding: 70px 0px;
}

.main_projects_block {
    height: 325px;
    width: 100%;
    margin-bottom: 30px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    max-width: 755px;
}

.main_projects_block_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

.main_projects_block_title a {
    color: #fff;
    text-decoration: none;
    transition: .5s ease;
}

.main_projects_block_title a:hover {
    color: #FFAE42;
}

.main_projects_block_desc {
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
}

.main_projects_block_link {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.main_projects_block_link_icon {
    position: absolute;
    right: 25px;
    bottom: 20px;
    transition: 0.5s ease;
    z-index: 3;
}

.main_projects_block_link_icon:hover {
    right: 35px;
}

.main_projects_block_content {
    width: 100%;
    max-width: 570px;
    padding: 50px 35px 35px 50px;
    z-index: 2;
}

/*main_projects*/

/*main_callback*/
.section__callback_main {
    background: #F1F5F8;
    padding-top: 50px;
}

.callback_main_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.callback_main_title {
    color: #FFAE42;
    font-weight: 600;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 66px;
    margin-bottom: 20px;
}

.callback_main_text {
    font-size: 24px;
    line-height: 20.7px;
    margin-bottom: 40px;
}

.callback_main_form {
    width: 100%;
    max-width: 500px;
}

.callback_main_form_block {
    margin-bottom: 35px;
}

.callback_main_form_block .wpcf7-not-valid-tip {
    margin-top: 5px;
    text-align: center;
}

.callback_main_input {
    width: 100%;
    max-width: 500px;
    height: 54px;
    text-align: center;
    background: #FFF;
    border: none;
}

.callback_main_button {
    height: 54px;
    width: 100%;
    max-width: 500px;
    background: #FFAE42;
    text-align: center;
    color: #FFF;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
}

.callback_main_button:hover {
    cursor: pointer;
    background: #d38c2d;
}

.wpcf7-form-control-wrap[data-name="acceptance-199"] {
    font-size: 14px;
}

.wpcf7-form-control-wrap[data-name="acceptance-199"] label {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wpcf7-form-control-wrap[data-name="acceptance-199"] input {
    margin-top: 3px;
}

.callback_main_right_block {
    position: relative;
}

.callback_main_img {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.callback_main_img img {
    max-width: 100%;
    height: auto;
}

.callback_main_question {
    width: 214px;
    height: 214px;
    border-radius: 50%;
    background: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

/*main_callback*/

.section__sert_main {
    padding: 30px 0px;
}

/*main licence*/
.main_licence {
    display: flex;
    align-items: center;
    height: max-content;
}

.main_licence_item {
    display: flex !important;
    justify-content: center;
}

.licence_arrow i {
    font-size: 50px;
    font-weight: 500;
}

.licence_arrow i:hover {
    cursor: pointer;
    color: #ffae42;
}

.main_licence_title {
    margin-top: 20px;
    margin-bottom: 50px;
}

h2.main_licence_title {
    margin-top: 20px;
}

.main_projects_link {
    font-size: 18px;
    padding: 10px 40px;
    color: #505050;
    text-decoration: none;
    margin: 20px 0px;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px dashed #585a5e;
    display: inline-flex;
}

.main_projects_link:hover {
    background: #ffae42;
    color: #fff;
}

/*main licence*/

/*team*/

.section__team_main {
    background: url(images/team_bg.jpg) top center/cover no-repeat;
    padding: 30px 0px;
}

.team_title {
    color: #fff;
}

.team_main_full {
    height: 100%;
    position: relative;
    padding-top: 60px;
}

.team_main_full:before {
    content: "";
    width: 630px;
    height: 100%;
    position: absolute;
    right: 0px;
    border: 1px dashed #ffae42;
    top: 0px;
}

.team_main_active {}

.team_main_carousel {}

.team_main_active_item {
    display: none;
}

.active_slide {
    display: flex;
}

.team_main_active_item_img {
    width: 500px;
    height: 500px;
    margin-bottom: 40px;
}

.team_main_active_item_img img {
    border: 10px solid #ffae42;
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.team_main_full_item_button {
    display: flex;
    justify-content: center;
}

.team_main_full_item_button a {
    width: 100%;
    max-width: 370px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: #FFAE42;
    transition: .5s ease;
    color: #fff;
    text-decoration: none;
}

.team_main_full_item_button a:hover {
    background: #d38c2d;
}

.team_main_full_item_content {
    margin-right: 30px;
}

.team_main_full_item_title {
    color: #ffae42;
    font-size: 36px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
}

.team_main_full_item_text {
    color: #fff;
    padding-right: 20px;
    line-height: 24.02px;
}

.team_main_carousel_item {
    margin-bottom: 30px;
    width: 100%;
    max-width: 240px;
    height: 240px;
}

.team_main_carousel_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px solid #fff;
}

.active_mini_slide img {
    border: 10px solid #ffae42;
}

.team_main_carousel {}

.team_main_carousel_item {}

.team_main_carousel_all {
    background: rgba(255, 255, 255, 0.15);
    width: 100%;
    height: 240px;
    text-decoration: none;
}

.team_main_carousel_all_text {
    font-weight: 700;
    color: #ffae42;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.team_main_carousel_all_img {}

.team_main_carousel_all_img img {
    -moz-animation: cycle 4s linear infinite;
    -webkit-animation: cycle 4s linear infinite;
}

.team_main_carousel_item_5 {
    margin-bottom: 0;
}

/*/team*/

/*/map_main*/
.main_clients_logo {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 30px;
    height: max-content;
}

.main_clients_logo_item {
    display: flex !important;
    justify-content: center;
}

.main_clients_logo .slick-track {
    display: flex;
    align-items: center;
}

.main_clients_logo_item img {
    max-height: 80px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.main-map-static {
    width: 100%;
    max-width: 1201px;
    margin: 0 auto;
}

.main-map-static img {
    display: block;
    width: 100%;
    height: auto;
}

/*/map_main*/

/*/footer*/

.section__footer_main {
    background: #f4f4f4 url(images/footer_bg.jpg) right top no-repeat;
    position: relative;
}

.section__footer_main:before {
    content: "";
    width: 576px;
    background: #f4f4f4;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
}

.left_contact_wrap {
    width: 100%;
    max-width: 380px;
    background: #f4f4f4;
}

.left_contact_title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.left_contact_title span {
    color: #ffae42;
}

.left_contact_item {
    margin-bottom: 20px;
}

.left_contact_item p {
    margin: 0;
}

.left_contact_item i {
    margin-right: 20px;
}

.left_contact_address {}

.left_contact_timework {}

.left_contact_phone {}

.left_contact_phone_wrap {}

.left_contact_phone_wrap .left_contact_phone_item {
    font-size: 24px;
    text-decoration: none;
    color: #505050;
    font-weight: 500;
}

.left_contact_phone_wrap .left_contact_phone_item:hover {}

.left_contact_email {}

.left_contact_email_link {
    color: #505050;
    text-decoration: none;
    font-weight: 500;
}

.left_contact_email_link:hover {}

.left_contact_logo {
    margin-top: 30px;
    margin-bottom: 50px;
    position: relative;
}

.left_contact_logo img {
    position: absolute;
}

.copyrite {
    font-size: 12px;
    padding: 15px 0px;
}

.footer_map_site {
    color: #505050;
    font-size: 14px;
    line-height: 21px;
    text-decoration: none;
}

.footer_contact_title {
    margin-bottom: 40px;
}

.footer_contact_form {
    width: 100%;
    max-width: 500px;
}

.form_block_item {
    margin-bottom: 23px;
}

.form_block_item textarea {
    border: 1px dashed #585a5e;
    padding: 20px;
    width: 100%;
}

.form_block_item a {
    color: #505050;
}

.form_block_item a:hover {}

.form_block_file {
    display: flex;
    align-items: center;
    gap: 30px;
}

#custom_file {
    display: none;
}

#falseinput {
    border: 1px solid #585a5e;
    padding: 10px 30px;
}

#falseinput:hover {
    cursor: pointer;
}

.form_select {
    width: 100%;
    background: transparent;
    min-height: 54px;
    border: 1px dashed #585a5e;
}

.form_input {
    width: 100%;
    min-height: 54px;
    background: transparent;
    border: 1px dashed #585a5e;
    padding: 0px 20px;
}

.form_file {}

.form_button {
    width: 100%;
    height: 54px;
    background-color: #ffae42;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
}

.form_button:hover {
    cursor: pointer;
}

.soglasie {
    text-align: center;
    font-size: 14px;
}

.copyrite__link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_menu_wrap {
    display: flex;
    width: 100%;
    max-width: 500px;
    justify-content: space-between;
}

.footer_menu {
    width: 100%;
    max-width: 200px;
}

.footer_menu ul {
    list-style-type: none;
    padding-left: 0px;
    text-align: left;
}

.footer_menu ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.footer_menu ul li:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    font-size: 20px;
    position: absolute;
    left: 0px;
    top: 0px;
    color: #000;
}

.footer_menu ul li a {
    color: #505050;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    line-height: 21px;
}

.footer_menu ul li a:hover {}

.footer_menu_with_logo_title {
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
}

.footer_menu_with_logo {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    min-height: 370px;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.footer__callback {
    text-align: center;
    width: fit-content;
    margin-left: 39px;
    margin-bottom: 20px;
}

.footer__callback a {
    color: inherit;
}

.section__footer_page {
    padding: 150px 0px 50px 0px;
}

/*/footer*/

/*sidebar*/

.right_sidebar {
    height: 100%;
    position: relative;
    background-color: #505050;
    display: flex;
    flex-direction: column;
    padding: 50px 0px 50px 35px;
}

.right_sidebar:before {
    content: "";
    background-color: #505050;
    position: absolute;
    display: block;
    width: 2500px;
    content: "";
    top: 0;
    bottom: 0;
    z-index: -2;
}

.right_sidebar .menu {
    list-style-type: none;
    padding-left: 0px;
}

.right_sidebar .menu li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.right_sidebar .menu li.active a,
.right_sidebar .menu li.active:before {
    color: #ffae42;
}

.right_sidebar .menu li:before {
    content: "\f178";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 20px;
    position: absolute;
    left: 0px;
    top: 0px;
    color: #838383;
}

.right_sidebar .menu li a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.right_sidebar .menu li:hover a {
    color: #ffae42;
}

.right_sidebar .menu li:hover::before {
    color: #ffae42;
}

.promo_sidebar {
    color: #fff;
    border: 5px solid #ffae42;
    padding: 25px 25px 35px 25px;
    margin: 50px 0px;
    position: relative;
    border-right: 10px solid transparent;
    margin-left: 30px;
}

.promo_sidebar:before {
    content: "";
    position: absolute;
    width: 155px;
    right: -55px;
    height: 220px;
    background: url(images/sidebar_logo.png) no-repeat center center;
}

.promo_sidebar_title {
    text-transform: uppercase;
    color: #ffae42;
    font-weight: bold;
    border-bottom: 2px solid #ffae42;
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: inline-flex;
}

.promo_sidebar_text {
    width: 100%;
    max-width: 157px;
    font-size: 16px;
    line-height: 24px;
}

.promo_sidebar_button {
    margin-left: 30px;
}

.promo_sidebar_button:hover {}

/*/sidebar*/

/*team*/

.team_item {
    margin-bottom: 30px;
}

.team_item:hover .team_item_title {
    background-color: #ffae42;
    color: #fff;
}

.team_item:hover .team_photo {
    outline: 10px solid #ffae42;
    outline-offset: -10px;
}

.team_item_left {
    width: 100%;
    max-width: 371px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team_photo {
    margin-bottom: 30px;
    display: flex;
    width: 100%;
    height: 350px;
}

.team_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team_item_right {
    width: 100%;
}

.team_item_title {
    background-color: #e9e9e9;
    color: #505050;
    font-size: 36px;
    padding: 10px 20px;
    margin-top: 20px;
    font-family: "Montserrat", sans-serif;
    transition: background 0.5s ease;
}

.team_item_text {
    padding: 30px 0px 0px 30px;
}

.team_item_phone_wrap {
    font-size: 30px;
    color: #505050;
    font-weight: bold;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 30px;
}

.team_item_phone_wrap span {
    margin-right: 5px;
}

.team_item_phone {
    display: flex;
    color: #505050;
    text-decoration: none;
}

.team_item_phone:hover {}

.team_item_callback {
    color: #ffae42;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border: 1px dashed #ffae42;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    padding: 20px 0px;
}

.team_item_callback:hover {}

.myvertical-tabs-content_img {
    margin-bottom: 100px;
}

.myvertical-tabs-content_img img {}

.myvertical-tabs-content_title {
    font-size: 24px;
    color: #ffae42;
    margin-bottom: 30px;
}

.myvertical-tabs-content_text {}

/*/team*/

/*contact*/

.left_block_contact {
    margin-bottom: 40px;
}

.right_block_contact {
    margin-bottom: 40px;
}

.right_block_contact_photo_fasad {}

.right_block_contact_photo_fasad img {
    width: 100%;
    height: auto;
}

.page__icon_size_30 {
    width: 1.875rem;
    height: 1.875rem;
}

.left_block_contact__wrap {
    background: #e9e9e9;
    display: flex;
    padding: 30px;
    gap: 35px;
}

.left_block_contact_logo {}

.left_block_contact_logo img {}

.left_block_contact_title {
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.left_block_contact_title:before {
    content: "";
    position: absolute;
    width: 177px;
    height: 1px;
    bottom: 0px;
    background: #f90;
}

.left_block_contact_text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

.left_block_contact_bottom_text {
    margin-bottom: 20px;
}

.left_block_contact_bottom_content p {
    margin: 0px 0px 0px 0px;
}

.left_content {
    font-size: 16px;
    line-height: 24px;
}

.left_content h2 {
    font-size: 24px;
    line-height: 41px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
}

.left_content h2:before {
    content: '';
    width: 124px;
    height: 28px;
    position: absolute;
    left: -140px;
    top: 7px;
    background: #FFAE42;
}

.left_block_contact_bottom_content h3,
.left_content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #505050;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    line-height: 36px;
}

.left_block_contact_bottom_content h3:before,
.left_content h3:before {
    content: '';
    position: absolute;
    width: 177px;
    height: 1px;
    bottom: 0px;
    left: 0px;
    background: #F90;
}

.left_block_contact_bottom_content {
    line-height: 24px;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.left_block_contact_social {
    display: flex;
    gap: 30px;
}

.left_block_contact_link_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.left_block_contact_link {
    text-decoration: none;
}

.left_block_contact_link .contact__icon {}

.left_block_contact_phone {
    font-size: 32px;
}

.left_block_contact_phone a {
    color: #505050;
    line-height: 27.6px;
    text-decoration: none;
}

.left_block_contact_phone a:hover {}

.left_block_contact_bottom_phone_wrap {
    border: 1px solid #f90;
    display: flex;
    padding: 20px 30px;
    margin-top: 50px;
    align-items: center;
    gap: 20px;
}

.left_block_contact_bottom_phone_content {}

.left_block_contact_bottom_phone_text {
    font-size: 16px;
}

.left_block_contact_bottom_phone {
    font-size: 24px;
    color: inherit;
    text-decoration: none;
    margin-top: 10px;
    display: flex;
}

.left_block_contact_bottom_phone_icon_wrap {}

.left_block_contact_bottom_phone_icon {
    width: 52.482px;
    height: 75.461px;
}

.left_block_contact_bottom_button_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 30px;
    margin-top: 30px;
}

.left_block_contact_bottom_button {
    background: #D9D9D9;
    color: inherit;
    text-decoration: none;
    padding: 8px 10px;
    line-height: 14px;
    font-size: 14px;
    text-transform: uppercase;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left_block_contact_bottom_button:hover {
    background: #FFAE43;
}

.left_block_contact_bottom_button:first-child {
    background: #FFAE43;
}

.left_block_contact_bottom_button:first-child:hover {
    background: #D9D9D9;
}

/*contact*/

/*cases*/

.cases_item {}

.cases_item_content {
    min-height: 170px;
    padding-left: 140px;
    margin-bottom: 50px;
    background: url(images/logo.png) left top no-repeat;
    padding-right: 20px;
}

.cases_item_title {
    font-size: 24px;
    color: #ffae42;
    margin-bottom: 25px;
}

.cases_item_text {
    margin-bottom: 25px;
}

.cases_item_link {
    font-weight: bold;
    color: #505050;
    text-decoration: none;
    position: relative;
    padding-right: 50px;
}

.cases_item_link:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 18px;
    background: url(images/cases_link.png) no-repeat center center;
    right: 0px;
}

.cases_item_link:hover {
    color: #ffae42;
}

/*/cases*/

/*news*/

.page_licence {
    margin-top: 40px;
}

.news_item {}

.news_item_img {
    margin-right: 20px;
    margin-bottom: 20px;
}

.news_item_img img {
    width: 200px;
    height: auto;
}

.news_item_content {
    margin-bottom: 50px;
    padding-right: 20px;
}

.news_item_title {
    font-size: 24px;
    color: #ffae42;
    margin-bottom: 25px;
    text-decoration: none;
}

.news_item_text {
    margin-bottom: 25px;
}

.news_item_link {
    font-weight: bold;
    color: #505050;
    text-decoration: none;
    position: relative;
    padding-right: 50px;
}

.news_item_link:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 18px;
    background: url(images/cases_link.png) no-repeat center center;
    right: 0px;
}

.news_item_link:hover {
    color: #ffae42;
}

.news_item_date {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 104px;
    height: 104px;
    background: #ffae42;
    color: #fff;
    width: 100%;
    justify-content: center;
    margin-right: 30px;
}

.news_item_day {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.news_item_mounth {
    color: #505050;
    font-size: 16px;
    margin-bottom: 5px;
}

.news_item_year {
    font-size: 16px;
    font-weight: bold;
}

/*/news*/

/*tech*/

.wrap-myvertical-tabs {
    display: flex;
    justify-content: space-between;
}

.myvertical-tabs-content-wrap {
    width: 100%;
    max-width: 590px;
}

.myvertical-tabs {
    list-style: none;
    background: #fff;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 460px;
}

.myvertical-tabs li {
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    padding-left: 45px;
}

.myvertical-tabs li:before {
    content: "\f178";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 20px;
    position: absolute;
    left: 0px;
    top: -3px;
}

.myvertical-tabs li:hover {
    color: #ffae42;
}

.myvertical-tabs li.chosen {
    color: #ffae42;
}

.myvertical-tabs-content {
    display: none;
    padding: 50px;
    margin-left: -1px;
    height: 100%;
    border: 1px solid #ffae42;
}

.myvertical-tabs-content.active {
    display: block;
    height: 100%;
}

.myvertical-tabs-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/*/tech*/

/*objects*/

.object_item {
    background: #e9e9e9;
    margin-bottom: 30px;
}

.object_item:hover {
    background: #ffae42;
    color: #fff;
}

.object_item_left {
    padding: 10px;
    width: 100%;
    flex: 0 0 500px;
    max-height: 250px;
}

.object_photo {
    width: 100%;
    height: 100%;
}

.object_photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.object_item_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 40px;
}

.object_item_title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 50px;
}

.object_item_link {
    position: relative;
    text-transform: uppercase;
    display: inline-flex;
    font-weight: bold;
    color: #505050;
    text-decoration: none;
    width: fit-content;
}

.object_item_link:before {
    content: "\f178";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 30px;
    position: absolute;
    right: -40px;
    top: -8px;
    color: #505050;
}

.object_item_link:hover {}

/*/objects*/

/*company*/

.about_team_project_wrap {
    display: flex;
    justify-content: center;
    background: #E9E9E9;
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative;
}

.about_team_project_wrap:before {
    content: '';
    background: #e9e9e9;
    top: 0;
    bottom: 0;
    position: absolute;
    height: 100%;
    width: 3000px;
    right: 0px;
}

.about_team_project_wrap:after {
    content: '';
    background: #e9e9e9;
    top: 0;
    bottom: 0;
    position: absolute;
    height: 100%;
    width: 30px;
    z-index: 0;
    right: -30px;
}

.about_team_project_slick {
    display: flex;
    align-items: center;
    height: max-content;
    gap: 50px;
    max-width: 892px;
    width: 100%;
}

.about_top_text_wrap {
    display: flex;
    gap: 45px;
    margin-top: 50px;
}

.about_top_img {}

.about_top_img img {}

.about_top_text {}

.about_team_pribor {
    margin-bottom: 50px;
    margin-top: 30px;
}

.about_team_pribor_slider {
    display: flex;
    align-items: center;
    height: max-content;
    gap: 50px;
}

.about_team_pribor_slider .slick-track {
    display: flex;
    gap: 30px;
}

.about_team_pribor_slick {}

.about_team_slider_pribor_item {}

.about_team_slider_pribor_item_img {
    border: 1px solid #BEBEBE;
    height: 345px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_team_slider_pribor_item_img img {}

.about_team_slider_pribor_item_title {
    text-align: center;
    margin-top: 15px;
    line-height: 30px;
}

.about_mission_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about_mission_block {
    background: #E9E9E9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.about_mission_block_title {
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.about_mission_block_title:before {
    content: '';
    width: 141.99px;
    height: 3px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #FFAE42;
}

.about_mission_block_text {
    line-height: 30px;
}

.about_mission_img {}

.about_mission_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_team {
    margin-top: 30px;
}

.about_team_slider {
    display: flex;
    align-items: center;
    height: max-content;
}

.about_team_slider_item_img img {
    width: 240px;
    height: 240px;
    border: 10px solid #E9E9E9;
}

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

.about_list_item_icon {
    width: 24px;
    height: 25px;
    flex: 0 0 auto;
}

.about_list_item_text {
    font-size: 16px;
}

.about_list_item {
    display: flex;
    gap: 17px;
    margin-bottom: 25px;
}

.about_sale_block {
    display: flex;
    background: #fff3c8;
    align-items: center;
    justify-content: space-between;
    border-left: 24px solid #ffae42;
    padding: 10px 40px 10px 30px;
    margin-bottom: 90px;
    gap: 100px;
    margin-top: 20px;
}

.about_sale_block_text {
    line-height: 24px;
    font-size: 16px;
}

.about_sale_block_icon {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
}

.company_infografika_title_wrap {}

.company_infografika_title {
    font-size: 24px;
    border-bottom: 1px solid #f90;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: inline-flex;
}

.company_infografika_text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 60px;
}

.company_licence {
    padding: 30px 0px 50px 0px;
}

.about_licence_title {}

.about_licence_title span {}

.about_team_block {
    border: 1px solid #FFAE42;
    padding: 30px;
    margin-bottom: 30px;
}

.about_team_slider_item_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_team_slider_item_title {
    padding: 15px 30px 0px 30px;
    text-align: center;
}

/*/company*/

/*price*/

.page_price {
    text-align: center;
    margin: 70px 0px 50px 0px;
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 800;
}

.page_price span {
    color: #ffae42;
}

.price_block_buttons {
    display: flex;
    margin-bottom: 40px;
}

.price_block_buttons_link {
    width: 100%;
    max-width: 500px;
    border: 2px solid #ffae42;
    text-align: center;
    padding: 15px 30px;
    margin-bottom: 20px;
    margin-right: 30px;
    text-decoration: none;
    color: #505050;
    text-transform: uppercase;
}

.price_block_buttons_link:hover {
    background: #ffae42;
    color: #fff;
}

.header_table,
.row_table {
    display: flex;
}

.row_table_line {
    padding: 18px 0px;
    border-bottom: 1px dashed #505050;
}

.header_table {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

.header_table .col_table {
    flex: 1;
    text-align: center;
}

.header_table .col_table:first-child {
    text-align: left;
}

.acor-container {
    margin: 50px 0 80px 0px;
}

.acor-body {
    display: none;
}

.acor-container .acor-body p {
    margin: 0 0 10px;
}

.acor-container .acor-container-title {
    cursor: pointer;
    display: flex;
    padding: 20px 0px 20px 0px;
    width: 100%;
    color: #ffae42;
    z-index: 100;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
    margin: 0 0 0px;
    border-bottom: 1px dashed #505050;
}

.price_bottom_text {
    min-height: 1080px;
    background-color: #e9e9e9;
    display: flex;
    padding: 50px 0px;
    align-items: center;
}

.price_bottom_text_left {
    margin-top: -1rem;
}

.price_bottom_text_right {
    border: 7px solid #ffae42;
    padding: 25px;
}

.price_bottom_title {
    margin-bottom: 40px;
}

.price_bottom_text_right ul {
    list-style-type: none;
    padding-left: 0px;
}

.price_bottom_text_right ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.price_bottom_text_right ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #ffae42;
    position: absolute;
    left: 0px;
    top: 6px;
}

/*/price*/

/*single post*/

.single_post_letter_title {
    margin-bottom: 50px;
}

.single_post_letter_item {
    margin-bottom: 30px;
}

.single_post_section {
    position: relative;
    background: #e9e9e9;
    padding: 50px 0px;
}

.work_step_wraper {
    min-height: 1080px;
}

.single_post_price_section {
    padding-top: 80px;
}

.content_title_section {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: top center;
}

.content_title_section_page {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 56px;
    line-height: 72px;
    padding: 20px 50px;
    text-transform: uppercase;
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
}

.content_title_section_page p {
    margin: 0;
}

.single_post_work_step_title {
    margin-bottom: 30px;
}

.single_post_work_step_slide_wrap {
    margin-bottom: 50px;
}

.single_post_work_step_slide_item {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.single_post_work_step_slide_item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.single_post_work_step_slide_item_title {
    width: 100%;
    max-width: 750px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    z-index: 1;
}

.single_post_work_step_slide_item_button {
    z-index: 1;
}

.single_post_work_step_slide_item_button i {
    color: #ffae42;
    font-size: 20px;
    margin-left: 18px;
}

.single_post_work_step_slide_item_button a {
    color: #ffae42;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

.single_post_work_step_slide_item_button a:hover {}

.arrow_obj_single_post {
    position: absolute;
    bottom: 20px;
    z-index: 2;
    font-size: 40px;
    color: #ffae42;
}

.arrow_obj_single_post:hover {
    cursor: pointer;
}

.arrow_obj_single_post_next {
    right: 30px;
}

.arrow_obj_single_post_prev {
    left: 30px;
}

.single_post_work_step_slide_wrap .slick-slide {
    height: auto !important;
}

/*/single post*/

/*client*/

.client_page_list {}

.client_page_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    border: 5px solid #e9e9e9;
    padding: 30px;
    justify-content: center;
    -webkit-transition: border 0.5s ease-out;
    -moz-transition: border 0.5s ease-out;
    -o-transition: border 0.5s ease-out;
    transition: border 0.5s ease-out;
}

.client_page_item:hover {
    border: 5px solid #ffae42;
}

.client_page_item_img {
    margin-bottom: 30px;
}

.client_page_item_text {}

/*/client*/

/*reviews*/

.reviews_item {}

.reviews_item_content {
    margin-bottom: 60px;
}

.reviews_item_title {
    font-size: 24px;
    color: #ffae42;
    margin-bottom: 30px;
}

.reviews_item_text {}

.reviews_item_link {
    text-decoration: none;
    color: #505050;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 23px;
    display: inline-flex;
    position: relative;
    padding-left: 35px;
}

.reviews_item_link:hover {
    color: #ffbe42;
}

.reviews_item_link:before {
    content: "\f316";
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
    font-size: 25px;
    position: absolute;
    left: 0px;
    top: -4px;
    color: #ffbe42;
}

/*/reviews*/

/*menu_catalog*/

.list_subcat {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.list_subcat_item {
    background: #E9E9E9;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    text-align: center;
    align-items: center;
    min-height: 257px;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
}

.list_subcat_item:hover img {
    filter: brightness(0) invert(1);
}

.list_subcat_item:hover {
    background: #FFAE42;
}

.list_subcat_item:hover .item_subcat {
    color: #fff;
}

.list_subcat_item:hover .list_subcat_icon {
    fill: #fff;
}


.list_subcat_icon {
    width: 82px;
    height: 82px;
    margin-top: 20px;
}

.item_subcat {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

/*/menu_catalog*/

/*faq*/
.acordeon {
    background: white;

    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

.acordeon-cabecera {
    border-bottom: 1px solid #dde0e7;
    color: #222222;
    cursor: pointer;
    font-weight: 600;
    padding: 1.5rem 3rem 1.5rem 1.5rem; /* увеличили справа */
    background: #f6f7f9;

    position: relative; /* ВАЖНО */
}

.acordeon-cabecera:hover {
    background: #fdf8d7;
}

.acordeon-cabecera.active {
    background-color: #fdf8d7;
}

.acordeon-cabecera::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.acordeon-cabecera.active::after {
    transform: translateY(-50%) rotate(180deg);
}


.acordeon-contenido {
    display: none;
    border-bottom: 1px solid #dde0e7;
    background: #fff;
    padding: 1.4rem;
    color: #4a5666;
}

/*/faq*/

/*mobile*/

/* menu button */

.menuBtn {
    height: 30px;
    width: 30px;
    position: absolute;
    z-index: 101;
    left: 30px;
    top: 30px;
    display: none;
}

.menuBtn>span {
    background-color: #fff;
    border-radius: 1px;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -15px;
    -webkit-transition: height 100ms;
    -o-transition: height 100ms;
    transition: height 100ms;
}

.menuBtn>span:after,
.menuBtn>span:before {
    content: "";
    background-color: #fff;
    border-radius: 1px;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
}

.menuBtn>span:after {
    top: -7px;
}

.menuBtn>span:before {
    bottom: -7px;
}

.menuBtn.act>span {
    height: 0;
}

.menuBtn.act>span:after,
.menuBtn.act>span:before {
    background-color: #ffae42;
    top: 1px;
}

.menuBtn.act>span:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menuBtn.act>span:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* main menu block */

.mainMenu {
    position: absolute;
    background-color: rgba(0, 0, 0);
    left: 0;
    top: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    display: table;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.mainMenu.act {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mainMenu.act ul li {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mainMenu>ul {
    display: table-cell;
    vertical-align: middle;
    list-style-type: none;
    padding-left: 0px;
}

.mainMenu li {
    padding: 8px 0;
    -webkit-transition: all 400ms 510ms;
    -o-transition: all 400ms 510ms;
    transition: all 400ms 510ms;
    opacity: 0;
}

.mainMenu li:nth-child(odd) {
    -webkit-transform: translateX(30%);
    -ms-transform: translateX(30%);
    transform: translateX(30%);
}

.mainMenu li:nth-child(even) {
    -webkit-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    transform: translateX(-30%);
}

.mainMenu li:last-child {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.mainMenu a {
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.mainMenu a.suBtn {
    color: #fff;
}

.mainMenu .dropdown-menu {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
}

/* sign up button */

.suBtn {
    background-color: #19b698;
    border-radius: 5px;
    padding: 10px 20px;
}

/*flat*/
.flat_template {
    padding: 50px 0px;
}

.flat_step_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 22px;
}

.flat_template_title {
    font-size: 36px;
    font-weight: 700;
    line-height: 41.4px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.flat_template_subtitle {
    color: #ffae42;
    font-size: 21px;
    font-weight: 400;
    line-height: 24.219px;
    margin-bottom: 40px;
}

.flat_step {
    background: #ffe0b7;
    padding: 20px;
    position: relative;
    min-height: 342px;
}

.flat_step:hover {
    cursor: pointer;
}

.flat_step_1 {
    background: #ffe0b7;
}

.flat_step_2 {
    background: #ffc475;
}

.flat_step_3 {
    background: #ffae42;
}

.flat_step_4 {
    background: #505050;
}

.flat_step a {
    color: inherit;
    text-decoration: none;
}

.flat_step_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.flat_step_num {
    font-weight: 700;
    font-size: 128px;
    line-height: 98px;
}

.flat_step_num_text {
    font-weight: 700;
    font-size: 24px;
}

.flat_step_bottom {}

.flat_step_title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.flat_step_text {
    font-size: 16px;
    padding-right: 25px;
}

.flat_step_icon {
    width: 21px;
    height: 38px;
    position: absolute;
    bottom: 15px;
    right: 20px;
}

.flat_step_4 .flat_step_icon {
    fill: #ffae42;
}

.flat_step_4 {
    color: #fff;
}

.flat_step_4 .flat_step_title {
    color: #ffae42;
}

.tab-content__item {
    display: none;
    padding: 30px;
    margin-top: 40px;
    border: 6px solid #ffae42;
    position: relative;
    min-height: 750px;
}

.tab-content__item.active {
    display: block;
}

.tab-content {
    margin-bottom: 50px;
    position: relative;
}

.tab-content:before {
    width: 349px;
    height: 486px;
    content: "";
    background: url(images/table_bg.png) center center/cover no-repeat;
    position: absolute;
    right: 60px;
    bottom: 0px;
}

.flat_editor {
    font-size: 16px;
}

.flat_editor a {
    color: #ffae42;
}

.flat_editor h3 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    text-transform: uppercase;
    margin: 10px 0px 35px 0px;
    color: #505050;
}

.flat_editor ul {
    list-style-type: none;
    padding-left: 0px;
}

.flat_editor ul li {
    position: relative;
    padding-left: 36px;
}

.flat_editor ul li:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: url(images/flat_li.svg) center center no-repeat;
    left: 0px;
    top: 5px;
}

.flat_step.active:before {
    content: "";
    display: inline-flex;
    border: 23px solid transparent;
    border-bottom: 23px solid #ffae42;
    bottom: -40px;
    position: absolute;
    left: calc(50% - 23px);
}

.flat_middle_text {
    margin-bottom: 35px;
}

.flat_priem_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.flat_priem_item {}

.flat_priem_item__img {
    margin-bottom: 30px;
}

.flat_priem_item__img img {}

.flat_priem_item__text {}

.flat_snoska_text {
    border: 6px solid #ffae42;
    padding: 15px 30px;
    margin: 30px 0px;
}

.flat_bottom_text_section {
    background: url(images/flat_bg.jpg) no-repeat top center/cover;
    padding: 50px 0px;
}

.flat_bottom_text_wrap {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.flat_bottom_text {
    width: 100%;
    max-width: 800px;
}

.flat_bottom_text_img {}

.flat_bottom_text_img img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.flat_table {
    margin: 50px 0px 20px 0px;
}

.flat_table table {
    width: 100%;
    max-width: 1000px;
}

.flat_table table tr {}

.flat_table table tr td {
    background: #ffe0b7;
    padding: 10px 30px;
    width: 25%;
}

.flat_mini_table {
    max-width: 500px;
    margin-top: 20px;
}

/*flat*/

.stati_cat_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
}

.stati_cat_block_content {
    background: #e9e9e9;
    padding: 40px;
}

.stati_cat_block_title {}

.stati_cat_block_title a {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #505050;
    text-decoration: none;
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 30px;
    display: flex;
    transition: ease 0.5s;
}

.stati_cat_block_title a:before {
    content: "";
    width: 140px;
    position: absolute;
    height: 4px;
    background: #ffae42;
    bottom: 0px;
}

.stati_cat_block_title a:hover {
    color: #ffae42;
}

.stati_cat_block_desc {
    line-height: 30px;
    margin-bottom: 30px;
}

.stati_cat_block_link {
    color: #505050;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: ease 0.5s;
}

.stati_cat_block_link:hover {
    color: #ffae42;
}

.stati_cat_block_link:hover svg {
    margin-left: 5px;
}

.stati_cat_block_link svg {
    transition: ease 0.3s;
}

.stati_cat_block_img {}

.stati_cat_block_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*mobile*/

.service_single_wrapper p {
    margin: 0;
}


.service_single_wrapper p+p {
    margin-top: 30px;
}

.service_single_block_title {
    position: relative;
    margin: 0 0 35px 0;
}

.service_single_block_title:before {
    content: '';
    width: 124px;
    height: 28px;
    position: absolute;
    left: -140px;
    top: 7px;
    background: #FFAE42;
}

.service_single_block_title h2 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 41px;
}

.service_single_title {
    font-size: 35px;
    line-height: 41px;
    text-transform: uppercase;
    border-bottom: 3px solid #FFAE42;
    padding-bottom: 15px;
    margin: 36px 0px;
    display: inline-flex;
    font-weight: 400;
}

.service_single_block_text_wrap {
    margin-bottom: 48px;
}

.service_single_block_text_wrap_img {
    display: flex;
    gap: 30px;
}

.service_single_block_text_img {
    width: 100%;
    max-width: 500px;
    flex: 0 0 100%;
}

.service_single_block_text_img img {
    max-width: 100%;
    height: auto;
}

.service_single_block_text_wrap_img_right {
    margin-left: 0;
}

.service_single_block_text_wrap_img_right .service_single_block_text_img,
.service_single_block_text_wrap_img_right .service_single_block_text_video {
    order: 2;
}

.service_single_block_text_video {
    flex: 0 0 50%;
}

.service_single_block_text_video iframe {
    width: 100%;
}


.service_single_block_text_wrap_video {
    display: flex;
    gap: 30px;
}

.service_single_block_text_content {
    line-height: 24px;
    font-size: 16px;
}

.service_single_block_text_content ul li+li {
    margin-top: 5px;
}

.service_single_block_list_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
}

.service_single_block_list_img_left .service_single_block_list {
    order: 2;
}

.service_single_block_list_img_left .service_single_block_list_img {
    order: 1;
}

.service_single_block_list {
    background: #E9E9E9;
    padding: 36px 30px;
}

.service_single_block_list ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service_single_block_list ul li {
    display: flex;
    gap: 17px;
    line-height: 30px;
}

.service_single_block_icon {
    width: 24px;
    height: 24px;
    fill: #505050;
    flex: 0 0 auto;
    margin-top: 10px;
}

.service_single_block_list_img {
    position: relative;
}

.service_single_block_list_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.service_single_step_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 45px;
}

.service_single_step_item {
    display: flex;
    gap: 24px;
}

.service_single_step_item_num {
    font-size: 48px;
    color: #FFAE42;
}

.service_single_step_item_text {
    font-size: 16px;
    line-height: 24px;
}

.services_projects_wrapper {
    margin-bottom: 48px;
}

.service_single_block_text_button_wrapper {
    margin-top: 30px;
}

.service_single_block_text_button {
    width: 100%;
    display: flex;
    max-width: 500px;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 54px;
    background: #FFAE42;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
}

.service_single_block_text_button:hover {
    background: #d38c2d;
}

.services_promo_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
}

.services_promo_content {
    background: #E9E9E9;
    padding: 36px;
    line-height: 30px;
}

.services_promo_img {
    min-height: 450px;
    position: relative;
}

.services_promo_img img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.services_promo_content_title {
    font-size: 24px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.services_promo_content_title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 143px;
    height: 3px;
    background: #FFAE42;
}

.services_gallery_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 0 0 100%;
}

.services_gallery_item_6 .services_gallery_item_text {
    order: 1;
}

.services_gallery_item_width_50 {
    flex: 0 0 calc(50% - 15px);
}

.services_gallery_item_img_right .services_gallery_item_img {
    order: 2;
}

.services_gallery_item_img_right .services_gallery_item_text {
    order: 1;
}

.services_gallery_item_text {
    padding: 30px 30px 45px 30px;
    background: #E9E9E9;
    line-height: 30px;
}

.services_gallery_item_img {
    position: relative;
}

.services_gallery_item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services_gallery_wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.services_yellow_block {
    background: #FFF3C8;
    border-left: 24px solid #FFAE42;
    display: flex;
    gap: 30px;
    padding: 30px;
    margin-bottom: 50px;
}

.services_yellow_block_right {
    width: 100%;
    max-width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services_yellow_block_file {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    background: #FFAE42;
    color: #fff;
    text-decoration: none;
    padding: 9px 15px;
    margin-top: 30px;
}

.services_yellow_block_img img {
    max-width: 100%;
    height: auto;
}

.services_yellow_block_text {
    font-size: 16px;
}

.services_yellow_block_text ul {
    margin: 20px 0;
}

.services_yellow_block_title {
    font-size: 24px;
    line-height: 41px;
    text-transform: uppercase;
    margin-bottom: 21px;
}

@media (min-width: 1840px) {
    .service_single_block_text_wrap_img {
        margin-left: -140px;
    }
}

@media (max-width: 1680px) {
    .text_main__counter_wrap {
        max-width: 400px;
    }

    .section__footer_main:before {
        width: 480px;
    }
}

@media (max-width: 1680px) {

    .team_main_carousel_all,
    .team_main_carousel_item {
        height: 200px;
    }

    .team_main_full_item_title {
        font-size: 25px;
    }

    .team_main_full_item_text {
        font-size: 16px;
    }

    .work_main_step_wrap {
        max-width: 470px;
        padding-right: 50px;
    }
}

@media (max-width: 1560px) {
    .header_right__block {
        flex-direction: column;
        align-items: flex-end;
    }

    .service_single_block_title {
        margin-left: 140px;
    }

    .left_content h2 {
        margin-left: 140px;
    }
}

@media (max-width: 1440px) {
    .title_roman {
        font-size: 30px;
        line-height: 45px;
    }

    .text_main_text {
        margin-top: 20px;
    }

    .uslugi_block {
        min-height: 280px;
    }

    .team_main_full_item_content {
        max-height: 600px;
        overflow: hidden;
        overflow-y: scroll;
    }

    .work_main_step_wrap {
        max-width: 400px;
        padding-right: 30px;
    }

    .section__footer_main:before {
        width: 420px;
    }

    .header__callback {
        margin-top: 20px;
    }

    .header__menu ul {
        gap: 20px;
    }

    .header_right__block,
    .header_left__block {
        border: none;
    }

    .object_item_left {
        flex: 1 0 400px;
    }
}

@media (max-width: 1366px) {
    .title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .team_main_carousel_item {
        margin-bottom: 10px;
    }

    .team_main_full {
        padding-top: 20px;
    }

    .left_contact_logo img {
        max-width: 200px;
    }

    .main_projects_block_title {
        font-size: 16px;
        line-height: 20px;
    }

    .main_projects_block_desc {
        font-size: 13px;
        line-height: 16px;
    }

    .review_main_slider_title .review_main_slider_title_big {
        font-size: 60px;
    }

    .all_review_button {
        display: none;
    }

    .main_projects_block {
        height: auto;
    }

    .main_projects_link {
        display: none;
    }

    .footer_menu_with_logo {
        min-height: unset;
    }

    .form_select {
        min-height: 40px;
    }

    .form_input {
        min-height: 40px;
    }

    .left_contact_logo {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .left_block_contact_phone {
        font-size: 22px;
    }


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


    .callback_main_question {
        width: 107px;
        height: 107px;
        font-size: 90px;
    }

    .promo_sidebar_button {
        margin-left: 0;
        padding: 15px 15px;
    }

    .promo_sidebar {
        margin-left: 0;
    }

    .callback_main_title {
        font-size: 30px;
        line-height: 34px;
    }

    .promo_sidebar:before {
        content: none;
    }
}

@media (max-width: 1280px) {
    .header_right__block_phone {
        gap: 5px 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .header__menu {
        display: none;
    }

    .menuBtn {
        display: block;
    }

    .header_left__block {
        margin-top: 35px;
    }

    .header_icons {
        padding-left: 65px;
    }

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

    .object_item_left {
        flex: 1 0 300px;
    }
}

@media (max-width: 1200px) {
    .flat_priem_wrap {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .text_main_img__wrap {
        display: none;
    }

    .review_main_slider_title {
        display: none;
    }

    .work_main_text {
        height: 135px;
        overflow: hidden;
        overflow-y: scroll;
    }

    .work_main_step_value {
        font-size: 55px;
    }

    .work_main_step_wrap {
        max-width: 360px;
    }

    .section__footer_main:before {
        width: 220px;
    }

    .team_main_carousel_all,
    .team_main_carousel_item {
        height: 170px;
    }

    .review_main_slider_wrap {
        padding-bottom: 60px;
    }

    .flat_step_num {
        font-weight: 700;
        font-size: 80px;
        line-height: 70px;
    }

    .left_block_contact_logo {
        display: none;
    }

    .services_gallery_item_2,
    .services_gallery_item_3,
    .services_gallery_item_4,
    .services_gallery_item_5 {
        flex: 0 0 100%;
    }

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

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

    .service_single_block_text_wrap_img {
        flex-direction: column;
        margin-left: 0px;
    }

    .service_single_block_text_wrap_video {
        flex-direction: column;
    }
}




@media (max-width: 992px) {

    .main_single_project_wrap {
        flex-direction: column;
    }

    .main_projects_block_title {
        font-size: 16px;
        line-height: 20px;
    }

    .main_projects_block_desc {
        font-size: 11px;
        line-height: 15px;
    }

    .header_right__block_phone {
        flex-direction: column;
    }

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

    .content_title_section_page {
        font-size: 23px;
        line-height: 33px;
        padding: 10px 20px;
    }

    .content_title_section {
        height: 200px;
    }

    .header__logo {
        margin-top: 20px;
    }

    .header_title {
        font-size: 25px;
        padding-top: 30px;
    }

    .text_main__counter_list {
        margin-left: 30px;
    }

    .text_main__counter_wrap {
        max-width: 300px;
    }

    .section__footer_main {
        background: #f4f4f4;
    }

    .team_main_carousel_all,
    .team_main_carousel_item {
        height: 140px;
    }

    .work_main_step_wrap {
        max-width: 300px;
    }

    .work_main_step_label {
        font-size: 16px;
    }

    .work_main_title_step {
        font-size: 25px;
        margin-bottom: 50px;
        margin-left: 30px;
    }

    .work_main_step_value {
        font-size: 30px;
    }

    .work_main_step_value:before {
        top: 20px;
    }

    .team_main_carousel_all_text {
        font-size: 14px;
    }

    .footer_menu ul {
        margin-top: 0px;
    }

    .footer_menu ul li a {
        font-size: 14px;
    }

    .flat_step_title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .flat_step_num {
        font-size: 45px;
        line-height: 35px;
    }

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

    .about_top_text_wrap {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .services_yellow_block {
        flex-direction: column;
    }

    .callback_main_block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .callback_main_form {
        margin: 0 auto;
    }

    .callback_main_title {
        text-align: center;
        font-size: 22px;
        font-size: 26px;
    }

    .callback_main_text {
        text-align: center;
        font-size: 18px;
        line-height: 16px;
    }

    .about_mission_img {
        height: 300px;
    }

    .object_item {
        flex-direction: column;
    }

    .object_item_left {
        height: 250px;
    }
}

@media (max-width: 768px) {

    .main_single_project_title {
        font-size: 19px;
        line-height: 35px;
    }

    .nofound-container {
        min-height: 400px;
    }

    .content_404_title {
        font-size: 50px;
        line-height: 70px;
    }

    .content_404_text {
        font-size: 25px;
        line-height: 30px;
    }

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

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

    .flat_step.active:before {
        content: none;
    }

    .tab-content__item.active:before {
        content: "";
        display: inline-flex;
        border: 23px solid transparent;
        border-bottom: 23px solid #ffae42;
        top: -51px;
        position: absolute;
        left: calc(50% - 23px);
    }

    .flat_bottom_text_wrap {
        flex-direction: column;
    }

    .flat_step {
        min-height: max-content;
    }

    .flat_table {
        overflow-y: scroll;
    }

    .tab-content:before {
        content: none;
    }

    .page_content iframe {
        width: 100%;
    }

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

    .header_left__block {
        margin-top: 10px;
    }

    .header__callback {
        margin: 0 auto;
    }

    .footer__callback {
        margin: 0px 0px 20px 0px;
        width: 100%;
    }

    .header_right__block_info_block {
        text-align: center;
        margin: 0 auto;
    }

    .header_icons {
        margin-left: auto;
    }

    .section__text_main {
        min-height: auto;
    }

    .section {
        min-height: max-content;
        padding: 30px 0px;
    }

    .slider__title {
        font-size: 24px;
        line-height: 40px;
        margin-top: 0px;
    }

    .slider_block_item {
        border-right: none;
        border-bottom: 1px solid #ffae42;
    }

    .slider__text {
        font-size: 18px;
        line-height: 24px;
    }

    .header_left__block {
        min-height: inherit;
    }

    .header_left__block {
        display: none;
    }

    #fp-nav.right {
        display: none;
    }

    .text_main_title {
        font-size: 25px;
        line-height: 35px;
        text-align: center;
    }

    .text_main_img__wrap {
        display: none;
    }

    .text_main_text {
        margin-top: 20px;
        max-width: 100%;
    }

    .left_contact_wrap {
        max-width: 100%;
    }

    .left_contact_wrap .copyrite {
        display: none;
    }

    .text_main_link {
        margin: 20px 0px;
    }

    .text_main__counter_value {
        font-size: 30px;
    }

    .uslugi_block_img img {
        max-width: 50px;
    }

    .uslugi_block {
        min-height: 150px;
        padding: 10px;
    }

    .usligi_title {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .uslugi_block_title a {
        font-size: 12px;
    }

    .uslugi_block_img {
        margin-bottom: 10px;
    }

    .text_main__counter_wrap {
        display: none;
    }

    .team_main_carousel {
        display: none;
    }

    .team_main_full_item_content {
        max-height: 150px;
        margin-top: 20px;
    }

    .team_main_full:before {
        content: none;
    }

    .team_main_full {
        z-index: 99;
    }

    .team_main_full_item_title {
        font-size: 20px;
    }

    .work_main_step_wrap {
        display: none;
    }

    .review_main_slider_item_img {
        max-width: 100%;
    }

    .work_main_title,
    .work_main_text {
        display: none;
    }

    .review_main_slider_wrap {
        flex-direction: column;
    }

    .arrow_review_wrap {
        order: 2;
    }

    .review_main_slider {
        order: 3;
    }

    .review_main_slider_title {
        display: flex;
        transform: unset;
        writing-mode: unset;
        order: 1;
    }

    .review_main_slider_title .review_main_slider_title_big {
        font-size: 30px;
    }

    .review_main_slider_title {
        font-size: 20px;
    }

    .all_review_button {
        position: relative;
        order: 4;
        left: unset;
        bottom: unset;
        display: flex;
        justify-content: center;
    }

    .review_main_slider_item_content {
        margin-top: 10px;
    }

    .review_main_slider_item_img img {
        max-height: 300px;
        width: auto;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .left_contact_title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .left_contact_logo {
        text-align: center;
    }

    .left_contact_logo img {
        display: none;
    }

    .footer_menu_with_logo_title {
        margin-bottom: 20px;
        font-size: 18px;
        text-align: left;
    }

    .footer_menu_with_logo {
        min-height: fit-content;
    }

    .breadcrumbs {
        display: none;
    }

    .section__map_main {
        height: auto !important;
    }

    .section__footer_main {
        padding-top: 50px;
    }

    .page_title {
        font-size: 25px;
    }

    .price_block_buttons {
        flex-direction: column;
    }

    .acor-container .acor-container-title {
        font-size: 15px;
    }

    .acor_price_block_name {
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .row_table_line {
        font-size: 14px;
    }

    .acor-container {
        margin: 20px 0 20px 0px;
    }

    .header_table {
        font-size: 11px;
        text-align: center;
    }

    .fix_button,
    .mouse_block {
        display: none;
    }

    .review_main_slider_item_content {
        max-height: max-content;
        height: max-content;
    }

    .review_main_slider_item {
        height: max-content;
    }

    .full_slider_main video {
        display: none;
    }

    .full_slider_main img {
        display: block;
    }

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

    .about_team_project_slick {
        gap: 10px;
    }

    .about_team_project_slick .main_projects_block_desc {
        display: none;
    }

    .main_projects_block_title {
        font-weight: 400;
    }

    .about_team_pribor_slider {
        gap: 10px;
    }

    .about_sale_block {
        gap: 10px;
        flex-direction: column;
    }

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

    .services_gallery_item_img {
        min-height: 300px;
    }

    .service_single_block_title {
        margin-left: 0;
    }

    .service_single_block_title h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .news_item {
        flex-direction: column;
    }

    .news_item_title {
        font-size: 18px;
    }

    .news_item_text {
        font-size: 16px;
    }

    .right_sidebar:before {
        content: none;
    }

    .right_sidebar {
        padding: 30px 15px 30px 15px;
    }

    .content_h2 {
        font-size: 16px;
    }

    .news_item_link {
        font-size: 14px;
    }

    .object_item_right {
        padding: 10px;
    }

    .object_item_title {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .object_item_link {
        font-size: 16px;
    }
}

@media (max-width: 545px) {
    .flat_priem_wrap {
        grid-template-columns: 1fr;
    }

    .flat_template_title {
        font-size: 25px;
        line-height: 30px;
    }

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

    .team_main_active_item_img {
        width: 100%;
        height: 400px;
    }

    .text_main_title h1 span {
        font-size: 18px !important;
    }

    .text_main_link {
        font-size: 14px;
        padding: 10px;
    }

    .callback_main_question {
        display: none;
    }

    .about_mission_img {
        height: 150px;
    }
}



/* typography */

.typography {
    font-size: 16px;
    line-height: 1.65;
    color: #505050;
}

.typography > *:first-child {
    margin-top: 0;
}

.typography > *:last-child {
    margin-bottom: 0;
}

.typography p {
    margin: 0 0 22px;
}

.typography a {
    color: #ffae42;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.typography a:hover {
    color: #d38c2d;
}

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    font-family: "Montserrat", sans-serif;
    color: #505050;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.25;
    margin: 42px 0 22px;
}

.typography h1 {
    font-size: 40px;
}

.typography h2 {
    font-size: 32px;
    position: relative;
    padding-bottom: 15px;
}

.typography h2:before {
    content: "";
    width: 120px;
    height: 3px;
    background: #ffae42;
    position: absolute;
    left: 0;
    bottom: 0;
}

.typography h3 {
    font-size: 26px;
    color: #505050;
    position: relative;
    padding-bottom: 12px;
}

.typography h3:before {
    content: "";
    width: 90px;
    height: 2px;
    background: #ffae42;
    position: absolute;
    left: 0;
    bottom: 0;
}

.typography h4 {
    font-size: 22px;
}

.typography h5 {
    font-size: 18px;
    font-weight: 700;
}

.typography h6 {
    font-size: 16px;
    font-weight: 700;
}

.typography ul,
.typography ol {
    margin: 0 0 28px;
    padding-left: 0;
}

.typography ul {
    list-style: none;
}

.typography ul li,
.typography ol li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.typography ul li {
    position: relative;
    padding-left: 28px;
}

.typography ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ffae42;
    position: absolute;
    left: 0;
    top: 10px;
}

.typography ol {
    counter-reset: typography-counter;
    list-style: none;
}

.typography ol li {
    counter-increment: typography-counter;
    position: relative;
    padding-left: 38px;
}

.typography ol li:before {
    content: counter(typography-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffae42;
    font-weight: 700;
}

.typography blockquote {
    margin: 35px 0;
    padding: 25px 30px;
    border-left: 6px solid #ffae42;
    background: #fff3c8;
    font-size: 18px;
    line-height: 1.6;
}

.typography table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    font-size: 15px;
}

.typography table th,
.typography table td {
    border: 1px solid #e0e0e0;
    padding: 14px 18px;
    text-align: left;
}

.typography table th {
    background: #ffae42;
    color: #fff;
    font-weight: 700;
}

.typography table tr:nth-child(even) td {
    background: #f6f6f6;
}

.typography img {
    max-width: 100%;
    height: auto;
}

.typography .alignleft {
    float: left;
    margin: 0 25px 20px 0;
}

.typography .alignright {
    float: right;
    margin: 0 0 20px 25px;
}

.typography .aligncenter {
    display: block;
    margin: 30px auto;
}

.typography strong,
.typography b {
    font-weight: 700;
}

.typography em,
.typography i {
    font-style: italic;
}

@media (max-width: 768px) {
    .typography {
        font-size: 15px;
        line-height: 1.6;
    }

    .typography h1 {
        font-size: 28px;
    }

    .typography h2 {
        font-size: 24px;
    }

    .typography h3 {
        font-size: 21px;
    }

    .typography h4 {
        font-size: 18px;
    }

    .typography blockquote {
        padding: 18px 20px;
        font-size: 16px;
    }

    .typography table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .typography .alignleft,
    .typography .alignright {
        float: none;
        display: block;
        margin: 25px auto;
    }
}

/* Article taxonomy listing */
.article-listing {
    --article-accent: #ffae42;
    --article-text: #303030;
    --article-muted: #676767;
    padding: 30px 0 110px;
    background: #fff;
}

.article-listing *,
.article-listing *::before,
.article-listing *::after {
    box-sizing: border-box;
}

.article-listing__container {
    width: calc(100% - 40px);
    max-width: 1290px;
    margin: 0 auto;
}

.article-listing__breadcrumbs {
    margin-bottom: 30px;
}

.article-listing__hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-end;
    gap: 80px;
    margin-bottom: 50px;
    padding: 18px 0 54px;
}

.article-listing__hero::before {
    display: none;
}

.article-listing__hero-copy {
    position: relative;
    max-width: 850px;
}

.article-listing__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #d98312;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.article-listing__eyebrow::before {
    width: 42px;
    height: 2px;
    background: var(--article-accent);
    content: "";
}

.article-listing__hero h1 {
    max-width: 940px;
    margin: 0;
    color: var(--article-text);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 3.4vw, 54px);
    font-weight: 700;
    line-height: 1.08;
    text-transform: none;
}

.article-listing__hero p {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--article-muted);
    font-size: 17px;
    line-height: 1.5;
}

.article-listing__count {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    min-width: 120px;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 4px;
    color: var(--article-text);
}

.article-listing__count strong {
    color: var(--article-text);
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.article-listing__count span {
    margin-top: 11px;
    color: #d98312;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-listing__layout {
    display: grid;
    grid-template-columns: minmax(0, 850px) 410px;
    gap: 30px;
    align-items: start;
}

.article-listing__main {
    min-width: 0;
}

.article-listing__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.article-list-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 330px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(27, 27, 27, 0.055);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.article-list-card::before {
    position: absolute;
    top: -1px;
    right: 28px;
    left: 28px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: var(--article-accent);
    content: "";
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.article-list-card:hover {
    border-color: rgba(255, 174, 66, 0.7);
    box-shadow: 0 18px 42px rgba(27, 27, 27, 0.1);
    transform: translateY(-4px);
}

.article-list-card:hover::before {
    transform: scaleX(1);
}

.article-list-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    color: #7a7a7a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.article-list-card__meta time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-list-card__meta time::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--article-accent);
    content: "";
}

.article-list-card__meta > span {
    padding: 6px 9px;
    border-radius: 20px;
    background: #fff5e8;
    color: #b96c08;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-list-card h2 {
    margin: 0 0 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.28;
    text-transform: none;
}

.article-list-card h2 a {
    color: var(--article-text);
    text-decoration: none;
}

.article-list-card h2 a:hover {
    color: #d98312;
}

.article-list-card__excerpt {
    margin: 0 0 28px;
    color: var(--article-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.article-list-card__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    color: #b96c08;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-decoration: none;
    text-transform: uppercase;
}

.article-list-card__link span {
    position: relative;
    display: grid;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--article-accent) url(images/arrow_a.svg) no-repeat center;
    color: #fff;
    font-size: 0;
    line-height: 1;
    transition: transform 0.2s ease;
}

.article-list-card__link:hover {
    color: #8b5004;
}

.article-list-card__link:hover span {
    transform: translateX(4px);
}

.article-listing__sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 30px;
}

.article-sections {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 34px;
    border: 1px solid #ededed;
    border-radius: 14px;
    background: #f9f9f9;
}

.article-sections h2 {
    margin: 0 0 10px;
    color: var(--article-text);
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: none;
}

.article-sections__link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    color: #505050;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none;
}

.article-sections__link:hover,
.article-sections__link.is-active {
    color: #d98312;
}

.article-sections__link.is-active {
    font-weight: 700;
}

.article-sections__icon {
    display: grid;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    place-items: center;
}

.article-sections__icon img {
    grid-area: 1 / 1;
    display: block;
    width: 16px;
    height: 13px;
}

.article-sections__icon img:last-child {
    display: none;
}

.article-sections__link:hover .article-sections__icon img:first-child,
.article-sections__link.is-active .article-sections__icon img:first-child {
    display: none;
}

.article-sections__link:hover .article-sections__icon img:last-child,
.article-sections__link.is-active .article-sections__icon img:last-child {
    display: block;
}

.article-listing__mission {
    display: flex;
    overflow: hidden;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    border-radius: 14px;
    background: #505050;
    color: #fff;
}

.article-listing__mission h2 {
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--article-accent);
    color: var(--article-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
}

.article-listing__mission p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.article-listing__mission .articles-mission__button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 0;
    border-radius: 6px;
    background: var(--article-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.article-listing__mission .articles-mission__button:hover {
    background: #e99a31;
    color: #fff;
}

.article-listing__pagination {
    margin-top: 50px;
}

.article-listing__pagination .navigation.pagination {
    margin: 0;
}

.article-listing__pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.article-listing__pagination .page-numbers {
    display: inline-flex;
    min-width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    background: #fff;
    color: var(--article-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.article-listing__pagination .page-numbers:hover {
    border-color: var(--article-accent);
    background: var(--article-accent);
    color: #fff;
}

.article-listing__pagination .page-numbers.current {
    border: 0;
    background: var(--article-accent) !important;
    color: #fff;
}

.article-listing__empty {
    padding: 50px;
    border-radius: 14px;
    background: #f9f9f9;
}

.article-listing__empty h2 {
    margin: 0 0 14px;
    color: var(--article-text);
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    text-transform: none;
}

.article-listing__empty p {
    margin: 0 0 20px;
    color: var(--article-muted);
}

.article-listing__empty a {
    color: #b96c08;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .article-listing__layout {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .article-list-card {
        padding: 26px;
    }

    .article-sections {
        padding: 28px;
    }
}

@media (max-width: 991px) {
    .article-listing__layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .article-listing__sidebar {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
        align-items: start;
    }
}

@media (max-width: 767px) {
    .article-listing {
        padding-top: 24px;
        padding-bottom: 70px;
    }

    .article-listing__container {
        width: calc(100% - 30px);
    }

    .article-listing__hero {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
        padding: 8px 0 38px;
    }

    .article-listing__hero h1 {
        font-size: 36px;
    }

    .article-listing__count {
        min-width: 0;
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
        padding: 0;
    }

    .article-listing__count strong {
        font-size: 40px;
    }

    .article-listing__count span {
        margin: 0;
    }

    .article-listing__grid,
    .article-listing__sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    .article-listing__breadcrumbs {
        margin-bottom: 24px;
    }

    .article-listing__hero {
        margin-bottom: 35px;
        padding: 6px 0 32px;
    }

    .article-listing__hero h1 {
        font-size: 32px;
    }

    .article-listing__hero p {
        font-size: 15px;
    }

    .article-listing__grid {
        gap: 20px;
    }

    .article-list-card {
        min-height: 0;
        padding: 24px;
    }

    .article-list-card h2 {
        font-size: 20px;
    }

    .article-list-card__excerpt {
        font-size: 14px;
    }

    .article-sections {
        padding: 25px;
    }

    .article-listing__mission {
        padding: 25px;
    }
}

/* News archive */
.news-archive {
    --article-accent: #ffae42;
    --article-text: #303030;
}

.news-archive-card__media {
    position: relative;
}

.news-archive-card__media > span {
    display: grid;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    color: #c87509;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    place-items: center;
    text-transform: uppercase;
}

.news-archive-card__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.news-archive-card__date::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffae42;
    content: "";
}

.news-archive-card .articles-category-card__copy {
    gap: 16px;
}

.news-archive-card .articles-category-card__description {
    color: #595959;
    line-height: 1.45;
}

.news-archive__pagination {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .news-archive__pagination {
        margin-top: 45px;
    }
}

/* Projects archive */
.projects-archive {
    --articles-accent: #ffae42;
    --articles-text: #303030;
    --articles-muted: #626262;
    --article-accent: #ffae42;
    --article-text: #303030;
}

.projects-archive__breadcrumbs {
    margin-bottom: 42px;
}

.projects-archive__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 70px;
    margin-bottom: 56px;
    padding: 14px 0 18px;
}

.projects-archive__hero-copy {
    max-width: 850px;
}

.projects-archive__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #c87509;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.projects-archive__eyebrow::before {
    width: 42px;
    height: 2px;
    background: #ffae42;
    content: "";
}

.projects-archive__hero h1 {
    max-width: 920px;
    margin: 0;
    color: #303030;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-transform: none;
}

.projects-archive__hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: #626262;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
}

.projects-archive__count {
    display: flex;
    min-width: 118px;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 4px;
}

.projects-archive__count strong {
    color: #303030;
    font-family: "Montserrat", sans-serif;
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.85;
}

.projects-archive__count span {
    margin-top: 13px;
    color: #c87509;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.projects-archive__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.projects-card {
    display: flex;
    overflow: hidden;
    min-width: 0;
    min-height: 475px;
    flex-direction: column;
    border-radius: 14px;
    background: #f5f5f5;
    box-shadow: 0 12px 36px rgba(35, 35, 35, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.projects-card:hover {
    box-shadow: 0 18px 45px rgba(35, 35, 35, 0.12);
    transform: translateY(-4px);
}

.projects-card__media {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 410 / 265;
    background: #dedede;
}

.projects-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.projects-card:hover .projects-card__media img {
    transform: scale(1.035);
}

.projects-card__fallback {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #e8e8e8;
    color: #505050;
}

.projects-card__fallback > span {
    color: #c87509;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
}

.projects-card__fallback small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.projects-card__content {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 27px 28px 30px;
}

.projects-card__number {
    margin-bottom: 16px;
    color: #b96c08;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.projects-card h2 {
    margin: 0 0 28px;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.28;
    text-transform: none;
}

.projects-card h2 a {
    color: #303030;
    text-decoration: none;
}

.projects-card h2 a:hover {
    color: #b96c08;
}

.projects-card__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    color: #303030;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.projects-card__link i {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: #ffae42 url(images/arrow_a.svg) no-repeat center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.projects-card__link:hover {
    color: #b96c08;
}

.projects-card__link:hover i {
    background: #e99a31;
    transform: translateX(4px);
}

.projects-card--featured {
    grid-column: 1 / -1;
    display: grid;
    min-height: 390px;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    background: #353535;
}

.projects-card--featured .projects-card__media {
    height: 100%;
    aspect-ratio: auto;
    background: #444;
}

.projects-card--featured .projects-card__fallback {
    background: #454545;
    color: #d6d6d6;
}

.projects-card--featured .projects-card__content {
    padding: 42px 38px;
}

.projects-card--featured .projects-card__number {
    color: #ffae42;
}

.projects-card--featured h2 {
    font-size: 25px;
    line-height: 1.25;
}

.projects-card--featured h2 a,
.projects-card--featured .projects-card__link {
    color: #fff;
}

.projects-card--featured h2 a:hover,
.projects-card--featured .projects-card__link:hover {
    color: #ffae42;
}

.projects-archive__sidebar {
    position: sticky;
    top: 20px;
}

.projects-archive__pagination {
    margin-top: 58px;
}

@media (max-width: 1199px) {
    .projects-card--featured {
        grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    }

    .projects-card--featured .projects-card__content {
        padding: 36px 32px;
    }
}

@media (max-width: 991px) {
    .projects-archive__sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .projects-archive__breadcrumbs {
        margin-bottom: 30px;
    }

    .projects-archive__hero {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
        margin-bottom: 42px;
        padding: 8px 0 12px;
    }

    .projects-archive__hero h1 {
        font-size: 40px;
    }

    .projects-archive__count {
        min-width: 0;
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
    }

    .projects-archive__count strong {
        font-size: 42px;
    }

    .projects-archive__count span {
        margin-top: 0;
    }

    .projects-archive__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .projects-card,
    .projects-card--featured {
        grid-column: auto;
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .projects-card--featured .projects-card__media {
        height: auto;
        aspect-ratio: 410 / 265;
    }

    .projects-card--featured .projects-card__content {
        padding: 30px 28px 32px;
    }

    .projects-card--featured h2 {
        font-size: 23px;
    }

    .projects-archive__pagination {
        margin-top: 45px;
    }
}

@media (max-width: 479px) {
    .projects-archive__eyebrow {
        margin-bottom: 16px;
    }

    .projects-archive__hero h1 {
        font-size: 34px;
    }

    .projects-archive__hero p {
        margin-top: 18px;
        font-size: 15px;
    }

    .projects-card__content,
    .projects-card--featured .projects-card__content {
        padding: 25px 24px 28px;
    }

    .projects-card h2,
    .projects-card--featured h2 {
        font-size: 20px;
    }
}

/* Legacy team archive styles */
.team-archive {
    --articles-accent: #ffae42;
    --articles-text: #303030;
    --articles-muted: #626262;
    --article-accent: #ffae42;
    --article-text: #303030;
}

/* Team showcase */
.team-showcase {
    --team-ink: #202a2e;
    --team-ink-soft: #2d383c;
    --team-paper: #f1f2ef;
    --team-white: #ffffff;
    --team-accent: #ffae42;
    --team-muted: #737978;
    overflow: hidden;
    padding: 54px 0 120px;
    background: var(--team-paper);
    color: var(--team-ink);
}

.team-showcase,
.team-showcase * {
    box-sizing: border-box;
}

.team-showcase__container {
    width: min(1290px, calc(100% - 48px));
    margin: 0 auto;
}

.team-showcase__hero {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 690px;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    background: var(--team-ink);
    color: var(--team-white);
}

.team-showcase__hero::before {
    position: absolute;
    bottom: -0.18em;
    left: -0.04em;
    color: rgba(255, 255, 255, 0.035);
    content: "TEAM";
    font-family: "Montserrat", sans-serif;
    font-size: clamp(150px, 19vw, 290px);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 0.8;
    pointer-events: none;
}

.team-showcase__hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 76px 70px 64px;
}

.team-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
    color: #bd6d06;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.team-showcase__eyebrow::before {
    width: 44px;
    height: 2px;
    flex: 0 0 44px;
    background: var(--team-accent);
    content: "";
}

.team-showcase__hero .team-showcase__eyebrow {
    color: var(--team-accent);
}

.team-showcase__hero h1 {
    max-width: 680px;
    margin: 0;
    color: var(--team-white);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(56px, 5.5vw, 82px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.96;
    text-transform: none;
}

.team-showcase__lead {
    max-width: 620px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.62;
}

.team-showcase__hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px 30px;
    margin-top: 38px;
}

.team-showcase__button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.team-showcase__button:hover {
    transform: translateY(-2px);
}

.team-showcase__button--accent {
    background: var(--team-accent);
    color: #202020;
}

.team-showcase__button--accent:hover {
    background: #ffffff;
    color: #202020;
}

.team-showcase__button--dark {
    background: var(--team-ink);
    color: #ffffff;
}

.team-showcase__button--dark:hover {
    background: #3a464a;
    color: #ffffff;
}

.team-showcase__text-link,
.team-showcase__featured-more,
.team-person__more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.team-showcase__text-link i,
.team-showcase__featured-more i,
.team-person__more i {
    display: block;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    background: var(--team-accent) url(images/arrow_a.svg) no-repeat center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.team-showcase__text-link:hover {
    color: var(--team-accent);
}

.team-showcase__text-link:hover i,
.team-showcase__featured:hover .team-showcase__featured-more i,
.team-person__link:hover .team-person__more i {
    background-color: #e99a31;
    transform: translateX(4px);
}

.team-showcase__facts {
    display: grid;
    max-width: 560px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin: auto 0 0;
    padding: 48px 0 0;
}

.team-showcase__facts div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: 13px;
}

.team-showcase__facts dt {
    color: var(--team-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.8;
}

.team-showcase__facts dd {
    max-width: 150px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1.35;
}

.team-showcase__featured {
    position: relative;
    z-index: 2;
    display: grid;
    min-width: 0;
    grid-template-rows: minmax(0, 1fr) auto;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background: #d7d9d6;
    color: #ffffff;
    text-decoration: none;
}

.team-showcase__featured-index,
.team-person__number {
    position: absolute;
    z-index: 3;
    top: 24px;
    right: 24px;
    display: grid;
    width: 48px;
    height: 48px;
    background: var(--team-accent);
    color: #202020;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    place-items: center;
}

.team-showcase__featured-media {
    display: block;
    overflow: hidden;
    min-height: 0;
}

.team-showcase__featured-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 455px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.team-showcase__featured:hover .team-showcase__featured-image {
    transform: scale(1.025);
}

.team-showcase__featured-caption {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 29px 34px 32px;
    background: var(--team-ink-soft);
}

.team-showcase__featured-kicker,
.team-person__meta {
    margin-bottom: 11px;
    color: var(--team-accent);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.team-showcase__featured-caption strong {
    max-width: 460px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.08;
}

.team-showcase__featured-role {
    display: -webkit-box;
    overflow: hidden;
    max-width: 470px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.team-showcase__featured-more {
    margin-top: 22px;
    color: #ffffff;
}

.team-showcase__directions {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 70px;
    padding: 56px 64px;
    background: #ffffff;
}

.team-showcase__directions-heading > span {
    color: #bd6d06;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.team-showcase__directions-heading h2 {
    max-width: 420px;
    margin: 13px 0 0;
    color: var(--team-ink);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(29px, 2.7vw, 42px);
    font-weight: 600;
    line-height: 1.03;
    text-transform: none;
}

.team-showcase__directions-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-showcase__directions-list li {
    display: flex;
    min-width: 0;
    min-height: 124px;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 4px 26px 4px;
    border-left: 1px solid #dedfda;
}

.team-showcase__directions-list li:first-child {
    padding-left: 0;
    border-left: 0;
}

.team-showcase__directions-list span {
    color: var(--team-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.team-showcase__directions-list strong {
    color: var(--team-ink);
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
}

.team-showcase__people {
    padding: 112px 0 0;
    scroll-margin-top: 24px;
}

.team-showcase__section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 48px;
}

.team-showcase__section-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--team-ink);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 4.4vw, 66px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.98;
    text-transform: none;
}

.team-showcase__section-heading p {
    max-width: 390px;
    margin: 0 0 6px;
    color: var(--team-muted);
    font-size: 14px;
    line-height: 1.58;
}

.team-showcase__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.team-person {
    position: relative;
    overflow: hidden;
    min-width: 0;
    background: var(--team-ink);
}

.team-person--1,
.team-person--4 {
    grid-column: span 7;
    min-height: 650px;
}

.team-person--2,
.team-person--3 {
    grid-column: span 5;
    min-height: 650px;
}

.team-person--3,
.team-person--4 {
    min-height: 570px;
}

.team-person__link {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-rows: minmax(0, 1fr) auto;
    color: #ffffff;
    text-decoration: none;
}

.team-person__media {
    display: grid;
    overflow: hidden;
    min-height: 0;
    background: #d7d9d6;
    place-items: center;
}

.team-person__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.team-person__link:hover .team-person__image {
    transform: scale(1.03);
}

.team-person__placeholder {
    color: #a36b22;
    font-family: "Montserrat", sans-serif;
    font-size: 90px;
    font-weight: 600;
}

.team-person__caption {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 32px 31px;
    background: var(--team-ink-soft);
}

.team-person__caption strong {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(23px, 2.1vw, 31px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.team-person__role {
    display: -webkit-box;
    overflow: hidden;
    max-width: 610px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.team-person__more {
    margin-top: 22px;
    color: #ffffff;
}

.team-showcase__pagination {
    margin-top: 52px;
}

.team-showcase__pagination:empty {
    display: none;
}

.team-showcase__pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.team-showcase__pagination .page-numbers {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: #ffffff;
    color: var(--team-ink);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.team-showcase__pagination .page-numbers.current {
    background: var(--team-accent);
    color: #202020;
}

.team-showcase__cta {
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: 160px minmax(0, 1fr) auto;
    align-items: center;
    gap: 46px;
    margin-top: 112px;
    padding: 58px 64px;
    background: var(--team-accent);
}

.team-showcase__cta-mark {
    color: rgba(32, 42, 46, 0.18);
    font-family: "Montserrat", sans-serif;
    font-size: 150px;
    font-weight: 600;
    line-height: 0.72;
}

.team-showcase__cta .team-showcase__eyebrow {
    margin-bottom: 14px;
    color: #5c3a0d;
}

.team-showcase__cta .team-showcase__eyebrow::before {
    background: var(--team-ink);
}

.team-showcase__cta h2 {
    margin: 0;
    color: var(--team-ink);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 3.4vw, 49px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: none;
}

.team-showcase__cta p {
    max-width: 620px;
    margin: 17px 0 0;
    color: rgba(32, 42, 46, 0.76);
    font-size: 14px;
    line-height: 1.55;
}

.team-profile-modal-shell {
    overflow: hidden;
    width: min(980px, calc(100vw - 40px));
    max-width: 980px;
    padding: 0 !important;
    background: #ffffff;
}

.team-profile-modal {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    min-height: 590px;
    background: #ffffff;
}

.team-profile-modal__visual {
    min-height: 590px;
    background-color: #d7d9d6;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.team-profile-modal__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 52px;
}

.team-profile-modal__label {
    margin-bottom: 14px;
    color: #bd6d06;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.team-profile-modal__content h2 {
    margin: 0 0 26px;
    color: var(--team-ink);
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-transform: none;
}

.team-profile-modal__text {
    color: #5f6665;
    font-size: 14px;
    line-height: 1.6;
}

.team-profile-modal__text p {
    margin: 0 0 16px;
}

.team-profile-modal__phone {
    margin: 4px 0 24px;
    color: var(--team-ink);
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 600;
    text-decoration: none;
}

.team-profile-modal__phone:hover {
    color: #bd6d06;
}

@media (max-width: 1100px) {
    .team-showcase__hero {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    }

    .team-showcase__hero-copy {
        padding: 60px 48px 52px;
    }

    .team-showcase__hero h1 {
        font-size: 58px;
    }

    .team-showcase__directions {
        gap: 40px;
        padding: 48px;
    }

    .team-showcase__cta {
        grid-template-columns: 110px minmax(0, 1fr) auto;
        padding: 50px 48px;
    }

    .team-showcase__cta-mark {
        font-size: 120px;
    }
}

@media (max-width: 900px) {
    .team-showcase {
        padding-top: 36px;
    }

    .team-showcase__hero {
        grid-template-columns: 1fr;
    }

    .team-showcase__hero-copy {
        min-height: 610px;
        padding: 64px 54px 54px;
    }

    .team-showcase__featured {
        grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
        grid-template-rows: 1fr;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .team-showcase__featured-image {
        min-height: 420px;
    }

    .team-showcase__featured-caption {
        justify-content: center;
        padding: 38px;
    }

    .team-showcase__directions {
        grid-template-columns: 1fr;
    }

    .team-showcase__section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-person--1,
    .team-person--2,
    .team-person--3,
    .team-person--4 {
        grid-column: span 6;
        min-height: 570px;
    }

    .team-showcase__cta {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .team-showcase__cta-mark {
        display: none;
    }
}

@media (max-width: 640px) {
    .team-showcase {
        padding: 18px 0 72px;
    }

    .team-showcase__container {
        width: calc(100% - 28px);
    }

    .team-showcase__hero-copy {
        min-height: 0;
        padding: 42px 24px 38px;
    }

    .team-showcase__hero h1 {
        font-size: clamp(40px, 12.6vw, 52px);
        line-height: 0.98;
    }

    .team-showcase__lead {
        margin-top: 24px;
        font-size: 15px;
    }

    .team-showcase__hero-actions {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 30px;
    }

    .team-showcase__facts {
        gap: 18px;
        padding-top: 48px;
    }

    .team-showcase__facts div {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 10px;
    }

    .team-showcase__facts dt {
        font-size: 42px;
    }

    .team-showcase__featured {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .team-showcase__featured-image {
        height: auto;
        min-height: 0;
        max-height: 440px;
        aspect-ratio: 4 / 4.45;
    }

    .team-showcase__featured-caption {
        padding: 27px 24px 30px;
    }

    .team-showcase__featured-caption strong {
        font-size: 25px;
    }

    .team-showcase__directions {
        gap: 36px;
        padding: 38px 24px;
    }

    .team-showcase__directions-heading h2 {
        font-size: 32px;
    }

    .team-showcase__directions-list {
        grid-template-columns: 1fr;
    }

    .team-showcase__directions-list li,
    .team-showcase__directions-list li:first-child {
        min-height: 0;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        padding: 19px 0;
        border-top: 1px solid #dedfda;
        border-left: 0;
    }

    .team-showcase__directions-list strong {
        font-size: 16px;
    }

    .team-showcase__people {
        padding-top: 78px;
    }

    .team-showcase__section-heading {
        margin-bottom: 34px;
    }

    .team-showcase__section-heading h2 {
        font-size: 40px;
    }

    .team-showcase__grid {
        gap: 16px;
    }

    .team-person--1,
    .team-person--2,
    .team-person--3,
    .team-person--4 {
        grid-column: 1 / -1;
        min-height: 555px;
    }

    .team-person__caption {
        padding: 25px 24px 28px;
    }

    .team-person__caption strong {
        font-size: 25px;
    }

    .team-showcase__cta {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 78px;
        padding: 42px 24px;
    }

    .team-showcase__cta h2 {
        font-size: 35px;
    }

    .team-showcase__cta .team-showcase__button {
        width: 100%;
    }

    .team-profile-modal-shell {
        width: calc(100vw - 24px);
    }

    .team-profile-modal {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .team-profile-modal__visual {
        min-height: 350px;
    }

    .team-profile-modal__content {
        padding: 30px 24px 34px;
    }

    .team-profile-modal__content h2 {
        font-size: 29px;
    }
}

.team-archive__breadcrumbs {
    margin-bottom: 42px;
}

.team-archive__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 70px;
    margin-bottom: 56px;
    padding: 14px 0 18px;
}

.team-archive__hero-copy {
    max-width: 850px;
}

.team-archive__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #c87509;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.team-archive__eyebrow::before {
    width: 42px;
    height: 2px;
    background: #ffae42;
    content: "";
}

.team-archive__hero h1 {
    max-width: 920px;
    margin: 0;
    color: #303030;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-transform: none;
}

.team-archive__hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: #626262;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
}

.team-archive__count {
    display: flex;
    min-width: 118px;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 4px;
}

.team-archive__count strong {
    color: #303030;
    font-family: "Montserrat", sans-serif;
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.85;
}

.team-archive__count span {
    margin-top: 13px;
    color: #c87509;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.team-archive__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.team-card {
    display: flex;
    overflow: hidden;
    min-width: 0;
    flex-direction: column;
    border-radius: 14px;
    background: #f5f5f5;
    box-shadow: 0 12px 36px rgba(35, 35, 35, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.team-card:hover {
    box-shadow: 0 18px 45px rgba(35, 35, 35, 0.12);
    transform: translateY(-4px);
}

.team-card__media {
    display: grid;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 410 / 420;
    background: #dedede;
    color: #c87509;
    font-family: "Montserrat", sans-serif;
    font-size: 56px;
    font-weight: 700;
    place-items: center;
}

.team-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
}

.team-card:hover .team-card__media img {
    transform: scale(1.025);
}

.team-card__content {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 28px 30px;
}

.team-card__label,
.team-profile-modal__label {
    margin-bottom: 14px;
    color: #b96c08;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.team-card h2 {
    margin: 0 0 18px;
    color: #303030;
    font-family: "Montserrat", sans-serif;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    overflow-wrap: anywhere;
    text-transform: none;
}

.team-card__summary {
    margin: 0 0 24px;
    color: #5f5f5f;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.team-card__phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: auto 0 24px;
    color: #303030;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.team-card__phone span {
    color: #8a8a8a;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.team-card__phone:hover {
    color: #b96c08;
}

.team-card__actions {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
}

.team-card__details {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #303030;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.team-card__details i {
    display: block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: #ffae42 url(images/arrow_a.svg) no-repeat center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.team-card__details:hover {
    color: #b96c08;
}

.team-card__details:hover i {
    background-color: #e99a31;
    transform: translateX(4px);
}

.team-card__request {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 13px 17px;
    border-radius: 6px;
    background: #353535;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.team-card__request:hover {
    background: #ffae42;
    color: #fff;
    transform: translateY(-1px);
}

.team-archive__sidebar {
    position: sticky;
    top: 20px;
}

.team-archive__pagination:empty {
    display: none;
}

.team-profile-modal-shell {
    overflow: hidden;
    width: min(940px, calc(100vw - 40px));
    max-width: 940px;
    padding: 0 !important;
    border-radius: 14px;
}

.team-profile-modal {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    background: #fff;
}

.team-profile-modal__media {
    min-height: 100%;
    background: #e9e9e9;
}

.team-profile-modal__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    object-position: center top;
}

.team-profile-modal__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 44px;
}

.team-profile-modal__content h2 {
    margin: 0 0 25px;
    color: #303030;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
    overflow-wrap: anywhere;
    text-transform: none;
}

.team-profile-modal__text {
    color: #555;
    font-size: 15px;
    line-height: 1.55;
}

.team-profile-modal__text p {
    margin: 0 0 16px;
}

.team-profile-modal__phone {
    margin: 8px 0 24px;
    color: #303030;
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 600;
    text-decoration: none;
}

.team-profile-modal__phone:hover {
    color: #b96c08;
}

.team-profile-modal .articles-mission__button {
    background: #ffae42;
    color: #fff;
}

.team-profile-modal .articles-mission__button:hover {
    background: #e99a31;
    color: #fff;
}

@media (max-width: 991px) {
    .team-archive__sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .team-archive__breadcrumbs {
        margin-bottom: 30px;
    }

    .team-archive__hero {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
        margin-bottom: 42px;
        padding: 8px 0 12px;
    }

    .team-archive__hero h1 {
        font-size: 40px;
    }

    .team-archive__count {
        min-width: 0;
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
    }

    .team-archive__count strong {
        font-size: 42px;
    }

    .team-archive__count span {
        margin-top: 0;
    }

    .team-archive__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-profile-modal {
        grid-template-columns: 1fr;
    }

    .team-profile-modal__media {
        max-height: 380px;
    }

    .team-profile-modal__media img {
        min-height: 0;
        max-height: 380px;
    }

    .team-profile-modal__content {
        padding: 30px;
    }
}

@media (max-width: 479px) {
    .team-archive__eyebrow {
        margin-bottom: 16px;
    }

    .team-archive__hero h1 {
        font-size: 34px;
    }

    .team-archive__hero p {
        margin-top: 18px;
        font-size: 15px;
    }

    .team-card__content {
        padding: 25px 24px 28px;
    }

    .team-card h2 {
        font-size: 22px;
    }

    .team-card__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-card__request {
        width: 100%;
    }

    .team-profile-modal-shell {
        width: calc(100vw - 24px);
    }

    .team-profile-modal__content {
        padding: 25px 22px 28px;
    }

.team-profile-modal__content h2 {
        font-size: 24px;
    }
}

/* Team showcase modal overrides */
.team-showcase .team-profile-modal-shell {
    overflow: hidden;
    width: min(980px, calc(100vw - 40px));
    max-width: 980px;
    padding: 0 !important;
    border-radius: 0;
    background: #ffffff;
}

.team-showcase .team-profile-modal {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    min-height: 590px;
    background: #ffffff;
}

.team-showcase .team-profile-modal__visual {
    min-height: 590px;
    background-color: #d7d9d6;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.team-showcase .team-profile-modal__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 52px;
}

.team-showcase .team-profile-modal__content h2 {
    margin: 0 0 26px;
    color: var(--team-ink);
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-transform: none;
}

@media (max-width: 640px) {
    .team-showcase .team-profile-modal-shell {
        width: calc(100vw - 24px);
    }

    .team-showcase .team-profile-modal {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .team-showcase .team-profile-modal__visual {
        min-height: 350px;
    }

    .team-showcase .team-profile-modal__content {
        padding: 30px 24px 34px;
    }

    .team-showcase .team-profile-modal__content h2 {
        font-size: 29px;
    }
}

/* Modern about page */
.about-modern {
    --about-accent: #ffae42;
    --about-ink: #252a2e;
    --about-muted: #687077;
    --about-soft: #f2f4f4;
    overflow: hidden;
    color: var(--about-ink);
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

.about-modern * {
    box-sizing: border-box;
}

.about-modern > section .container {
    max-width: 1360px;
}

.about-modern__section {
    padding: 105px 0;
}

.about-modern__hero {
    position: relative;
    padding: 86px 0 0;
    background: var(--about-soft);
}

.about-modern__hero::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    background: var(--about-accent);
    content: "";
}

.about-modern__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: 86px;
}

.about-modern__hero-content {
    padding-bottom: 74px;
}

.about-modern__eyebrow,
.about-modern__section-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
    color: #bc6f0c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-modern__eyebrow::before,
.about-modern__section-label::before {
    width: 34px;
    height: 2px;
    flex: 0 0 34px;
    background: var(--about-accent);
    content: "";
}

.about-modern__hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--about-ink);
    font-size: clamp(54px, 5vw, 78px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-transform: none;
}

.about-modern__hero-lead {
    max-width: 650px;
    margin: 32px 0 0;
    color: #4e565d;
    font-size: 20px;
    line-height: 1.55;
}

.about-modern__hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 40px;
}

.about-modern__button,
.about-modern__text-link,
.about-modern__project-link,
.about-modern__team-more {
    text-decoration: none;
}

.about-modern__button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 15px 22px 15px 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.about-modern__button i,
.about-modern__text-link i,
.about-modern__project-link i,
.about-modern__team-more i {
    display: block;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: var(--about-accent) url(images/arrow_a.svg) no-repeat center;
    transition: transform .2s ease, background-color .2s ease;
}

.about-modern__button--primary {
    color: #fff;
    background: var(--about-ink);
}

.about-modern__button--primary:hover {
    color: #fff;
    background: #111518;
}

.about-modern__button--primary:hover i,
.about-modern__button:hover i,
.about-modern__text-link:hover i,
.about-modern__project-link:hover i,
.about-modern__team-more:hover i {
    transform: translateX(4px);
}

.about-modern__button--link {
    padding-right: 0;
    padding-left: 0;
    color: var(--about-ink);
}

.about-modern__button--link:hover {
    color: #a95e00;
}

.about-modern__hero-visual {
    position: relative;
    min-height: 480px;
    align-self: end;
    background: var(--about-ink);
}

.about-modern__hero-visual > img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.about-modern__mission {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: start;
    gap: 34px;
    padding: 34px 38px 38px;
    color: #fff;
}

.about-modern__mission span {
    color: var(--about-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.45;
    text-transform: uppercase;
}

.about-modern__mission p {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
}

.about-modern__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff;
}

.about-modern__fact {
    position: relative;
    display: flex;
    min-height: 145px;
    flex-direction: column;
    justify-content: center;
    padding: 24px 38px;
}

.about-modern__fact + .about-modern__fact::before {
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 0;
    width: 1px;
    background: #dde0e1;
    content: "";
}

.about-modern__fact strong {
    color: var(--about-ink);
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1;
}

.about-modern__fact span {
    margin-top: 10px;
    color: var(--about-muted);
    font-size: 14px;
    line-height: 1.35;
}

.about-modern__intro-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 100px;
}

.about-modern__founder {
    position: relative;
    max-width: 430px;
    margin: 0;
    padding: 42px 0 0 42px;
}

.about-modern__founder-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 82%;
    background: var(--about-accent);
}

.about-modern__founder img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    background: #d8dcda;
}

.about-modern__founder figcaption {
    position: relative;
    z-index: 2;
    display: flex;
    width: calc(100% - 42px);
    min-height: 94px;
    flex-direction: column;
    justify-content: center;
    margin: -1px 0 0 auto;
    padding: 18px 24px;
    color: #fff;
    background: var(--about-ink);
}

.about-modern__founder figcaption strong {
    font-size: 18px;
    font-weight: 600;
}

.about-modern__founder figcaption span {
    margin-top: 5px;
    color: #c7cbcd;
    font-size: 13px;
}

.about-modern__intro-copy {
    padding-top: 18px;
}

.about-modern__editor-content h2,
.about-modern__section-heading h2,
.about-modern__infographic-copy h2 {
    margin: 0;
    color: var(--about-ink);
    font-size: clamp(36px, 3.4vw, 54px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.06;
    text-transform: none;
}

.about-modern__editor-content h2 {
    margin-bottom: 30px;
}

.about-modern__editor-content h2::after {
    display: none;
}

.about-modern__editor-content p {
    max-width: 780px;
    margin: 0 0 19px;
    color: #5e666c;
    font-size: 17px;
    line-height: 1.7;
}

.about-modern__editor-content p:last-child {
    margin-bottom: 0;
}

.about-modern__section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 58px;
}

.about-modern__section-heading > p {
    max-width: 510px;
    margin: 0 0 3px;
    color: var(--about-muted);
    font-size: 16px;
    line-height: 1.65;
}

.about-modern__principles {
    background: var(--about-soft);
}

.about-modern__principle-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-modern__principle-list .about-modern__principle:only-child {
    grid-column: 1 / -1;
}

.about-modern__principle {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 26px;
    min-height: 150px;
    margin: 0;
    padding: 34px 38px;
    background: #fff;
}

.about-modern__principle-number {
    color: var(--about-accent);
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.about-modern__principle .about_list_item_text {
    color: #4f575c;
    font-size: 17px;
    line-height: 1.55;
}

.about-modern__projects {
    color: #fff;
    background: var(--about-ink);
}

.about-modern__section-heading--light h2 {
    color: #fff;
}

.about-modern__project-slider,
.about-modern__equipment-slider,
.about-modern__team-slider,
.about-modern__licenses .main_licence {
    position: relative;
}

.about-modern__project-slider {
    display: block;
    width: 100%;
    max-width: none;
    gap: 0;
}

.about-modern__project-slide {
    padding: 0 1px;
}

.about-modern__project-card {
    position: relative;
    display: flex;
    min-height: 520px;
    align-items: flex-end;
    overflow: hidden;
    background-color: #171a1d;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-modern__project-card::before {
    position: absolute;
    inset: 0;
    background: rgba(18, 21, 24, .64);
    content: "";
}

.about-modern__project-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 64px 70px;
}

.about-modern__project-content > span {
    color: var(--about-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.about-modern__project-content h3 {
    margin: 18px 0 20px;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 600;
    line-height: 1.1;
}

.about-modern__project-content h3 a {
    color: #fff;
    text-decoration: none;
}

.about-modern__project-content p {
    max-width: 650px;
    margin: 0;
    color: #d7d9da;
    font-size: 15px;
    line-height: 1.65;
}

.about-modern__project-link,
.about-modern__team-more,
.about-modern__text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.about-modern__project-link {
    margin-top: 28px;
}

.about-modern__project-link:hover,
.about-modern__text-link:hover {
    color: var(--about-accent);
}

.about-modern .licence_arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--about-accent) url(images/arrow_a.svg) no-repeat center;
    box-shadow: 0 10px 28px rgba(31, 34, 37, .18);
    cursor: pointer;
    font-size: 0;
    transition: background-color .2s ease, transform .2s ease;
}

.about-modern .licence_arrow i {
    display: none;
}

.about-modern .licence_arrow_prev {
    left: -25px;
    transform: translateY(-50%) rotate(180deg);
}

.about-modern .licence_arrow_next {
    right: -25px;
    transform: translateY(-50%);
}

.about-modern .licence_arrow_prev:hover {
    background-color: #e9962a;
    transform: translateY(-50%) rotate(180deg) translateX(3px);
}

.about-modern .licence_arrow_next:hover {
    background-color: #e9962a;
    transform: translateY(-50%) translateX(3px);
}

.about-modern__capabilities {
    background: #fff;
}

.about-modern__benefit-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 100px;
}

.about-modern__benefit {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 18px;
    min-height: 176px;
    margin: 0;
    padding: 30px;
    background: var(--about-soft);
}

.about-modern__check {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: var(--about-accent);
}

.about-modern__check::after {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 13px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    transform: rotate(-45deg);
}

.about-modern__benefit .about_list_item_text,
.about-modern__team-guarantee .about_list_item_text {
    color: #555e64;
    font-size: 15px;
    line-height: 1.55;
}

.about-modern__equipment-slider .slick-track,
.about-modern__team-slider .slick-track {
    display: flex;
    gap: 0;
}

.about-modern__equipment-slider .slick-list,
.about-modern__team-slider .slick-list {
    margin: 0 -10px;
}

.about-modern__equipment-item {
    height: auto;
    margin: 0 10px;
    background: #fff;
}

.about-modern__equipment-image {
    display: flex;
    height: 300px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--about-soft);
}

.about-modern__equipment-image img {
    width: auto;
    max-width: 82%;
    height: auto;
    max-height: 235px;
    object-fit: contain;
}

.about-modern__equipment-title {
    display: flex;
    min-height: 95px;
    align-items: flex-start;
    margin: 0;
    padding: 22px 15px 0;
    color: #50585e;
    font-size: 15px;
    line-height: 1.5;
}

.about-modern__benefit-list--compact {
    margin: 90px 0 0;
}

.about-modern__team {
    background: var(--about-soft);
}

.about-modern__text-link--dark,
.about-modern__team-more {
    color: var(--about-ink);
}

.about-modern__team-card {
    display: flex !important;
    height: auto;
    flex-direction: column;
    margin: 0 10px;
    background: #fff;
}

.about-modern__team-image {
    display: block;
    aspect-ratio: 1 / 1.06;
    overflow: hidden;
    background: #d8dcda;
}

.about-modern__team-image img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center top;
    transition: transform .35s ease;
}

.about-modern__team-card:hover .about-modern__team-image img {
    transform: scale(1.025);
}

.about-modern__team-card-content {
    display: flex;
    min-height: 150px;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 23px 23px;
}

.about-modern__team-card-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.about-modern__team-card-content h3 a {
    color: var(--about-ink);
    text-decoration: none;
}

.about-modern__team-more {
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    font-size: 11px;
}

.about-modern__team-more i {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
}

.about-modern__team-guarantees {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 55px;
}

.about-modern__team-guarantee {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.about-modern__guarantee {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    align-items: center;
    gap: 42px;
    margin-top: 55px;
    padding: 38px 42px;
    color: #fff;
    background: var(--about-ink);
}

.about-modern__guarantee-mark {
    color: var(--about-accent);
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1;
}

.about-modern__guarantee-text {
    color: #e4e5e6;
    font-size: 15px;
    line-height: 1.6;
}

.about-modern__guarantee-text p {
    margin: 0;
}

.about-modern__guarantee .about-modern__button--primary {
    color: var(--about-ink);
    background: #fff;
}

.about-modern__guarantee .about-modern__button--primary:hover {
    background: #f3f3f3;
}

.about-modern__infographic {
    background: #fff;
}

.about-modern__infographic-grid {
    display: grid;
    grid-template-columns: minmax(320px, .62fr) minmax(0, 1.38fr);
    align-items: start;
    gap: 78px;
}

.about-modern__infographic-copy {
    position: sticky;
    top: 30px;
}

.about-modern__infographic-text {
    margin-top: 30px;
    color: var(--about-muted);
    font-size: 16px;
    line-height: 1.65;
}

.about-modern__infographic-text p {
    margin: 0 0 18px;
}

.about-modern__infographic-image {
    padding: 20px;
    background: var(--about-soft);
}

.about-modern__infographic-image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-modern__licenses {
    background: var(--about-soft);
}

.about-modern__licenses .main_licence_item {
    padding: 0 10px;
}

.about-modern__licenses .main_licence_item a {
    display: flex;
    width: 100%;
    min-height: 390px;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fff;
}

.about-modern__licenses .main_licence_item img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 335px;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .about-modern__hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
        gap: 55px;
    }

    .about-modern__intro-grid {
        gap: 65px;
    }

    .about-modern__guarantee {
        grid-template-columns: 120px 1fr;
    }

    .about-modern__guarantee .about-modern__button {
        grid-column: 2;
        width: fit-content;
    }
}

@media (max-width: 991px) {
    .about-modern__section {
        padding: 82px 0;
    }

    .about-modern__hero {
        padding-top: 70px;
    }

    .about-modern__hero-grid,
    .about-modern__intro-grid,
    .about-modern__infographic-grid {
        grid-template-columns: 1fr;
    }

    .about-modern__hero-grid {
        gap: 0;
    }

    .about-modern__hero-content {
        padding-bottom: 58px;
    }

    .about-modern__hero-visual {
        min-height: 0;
    }

    .about-modern__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-modern__fact:nth-child(3)::before {
        display: none;
    }

    .about-modern__fact:nth-child(n+3) {
        border-top: 1px solid #dde0e1;
    }

    .about-modern__intro-grid {
        gap: 60px;
    }

    .about-modern__founder {
        max-width: 390px;
        margin: 0 auto;
    }

    .about-modern__section-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-modern__benefit-list {
        grid-template-columns: 1fr;
        margin-bottom: 80px;
    }

    .about-modern__benefit {
        min-height: 0;
    }

    .about-modern__benefit-list--compact {
        margin: 70px 0 0;
    }

    .about-modern__infographic-grid {
        gap: 50px;
    }

    .about-modern__infographic-copy {
        position: static;
    }
}

@media (max-width: 767px) {
    .about-modern__section {
        padding: 68px 0;
    }

    .about-modern__hero {
        padding-top: 52px;
    }

    .about-modern__hero::before {
        width: 5px;
    }

    .about-modern__hero h1 {
        font-size: 46px;
    }

    .about-modern__hero-lead {
        margin-top: 24px;
        font-size: 17px;
    }

    .about-modern__hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .about-modern__hero-content {
        padding-bottom: 44px;
    }

    .about-modern__hero-visual > img {
        height: 225px;
    }

    .about-modern__mission {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 28px 25px 30px;
    }

    .about-modern__mission p {
        font-size: 15px;
    }

    .about-modern__fact {
        min-height: 118px;
        padding: 20px;
    }

    .about-modern__fact + .about-modern__fact::before {
        top: 25px;
        bottom: 25px;
    }

    .about-modern__fact strong {
        font-size: 31px;
    }

    .about-modern__fact span {
        font-size: 12px;
    }

    .about-modern__founder {
        max-width: 345px;
        padding: 30px 0 0 30px;
    }

    .about-modern__founder figcaption {
        width: calc(100% - 30px);
    }

    .about-modern__editor-content h2,
    .about-modern__section-heading h2,
    .about-modern__infographic-copy h2 {
        font-size: 36px;
    }

    .about-modern__editor-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .about-modern__section-heading {
        margin-bottom: 38px;
    }

    .about-modern__section-heading > p {
        font-size: 15px;
    }

    .about-modern__principle-list {
        grid-template-columns: 1fr;
    }

    .about-modern__principle {
        grid-template-columns: 48px 1fr;
        gap: 15px;
        min-height: 0;
        padding: 27px 24px;
    }

    .about-modern__principle .about_list_item_text {
        font-size: 15px;
    }

    .about-modern__project-card {
        min-height: 500px;
    }

    .about-modern__project-content {
        padding: 42px 28px;
    }

    .about-modern__project-content h3 {
        font-size: 30px;
    }

    .about-modern__project-content p {
        font-size: 14px;
    }

    .about-modern .licence_arrow {
        width: 42px;
        height: 42px;
    }

    .about-modern .licence_arrow_prev {
        left: 4px;
    }

    .about-modern .licence_arrow_next {
        right: 4px;
    }

    .about-modern__benefit-list {
        gap: 12px;
        margin-bottom: 60px;
    }

    .about-modern__benefit {
        padding: 25px 22px;
    }

    .about-modern__equipment-image {
        height: 285px;
    }

    .about-modern__benefit-list--compact {
        margin-top: 55px;
    }

    .about-modern__team-card-content {
        min-height: 138px;
    }

    .about-modern__team-guarantees,
    .about-modern__guarantee {
        margin-top: 42px;
    }

    .about-modern__guarantee {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 26px;
    }

    .about-modern__guarantee .about-modern__button {
        grid-column: auto;
        width: 100%;
    }

    .about-modern__guarantee-mark {
        font-size: 48px;
    }

    .about-modern__infographic-image {
        margin: 0 -15px;
        padding: 8px;
    }

    .about-modern__licenses .main_licence_item a {
        min-height: 410px;
        margin: 0 44px;
    }
}

@media (max-width: 479px) {
    .about-modern__hero h1 {
        font-size: 40px;
    }

    .about-modern__eyebrow,
    .about-modern__section-label {
        font-size: 10px;
    }

    .about-modern__button {
        width: 100%;
    }

    .about-modern__button--link {
        width: auto;
    }

    .about-modern__editor-content h2,
    .about-modern__section-heading h2,
    .about-modern__infographic-copy h2 {
        font-size: 32px;
    }

    .about-modern__project-content h3 {
        font-size: 27px;
    }
}

/* Clean licenses page */
.licenses-modern {
    --licenses-accent: #ffae42;
    --licenses-text: #2e2e2e;
    --licenses-muted: #6f6f6f;
    --licenses-line: #dedede;
    color: var(--licenses-text);
    background: #fff;
    overflow: hidden;
}

.licenses-modern *,
.licenses-modern *::before,
.licenses-modern *::after {
    box-sizing: border-box;
}

.licenses-modern__hero {
    padding: 46px 0 0;
    border-bottom: 1px solid var(--licenses-line);
}

.licenses-modern__hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.55fr);
    gap: clamp(48px, 6vw, 90px);
    align-items: start;
    padding-bottom: 34px;
}

.licenses-modern__title-block {
    min-width: 0;
}

.licenses-modern__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--licenses-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.licenses-modern__eyebrow::before {
    content: "";
    flex: 0 0 34px;
    width: 34px;
    height: 2px;
    background: var(--licenses-accent);
}

.licenses-modern__title-block h1 {
    margin: 0;
    color: var(--licenses-text);
    font-size: clamp(46px, 4.8vw, 68px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-transform: none;
}

.licenses-modern__intro-content {
    max-width: 790px;
    color: #525252;
    font-size: 16px;
    line-height: 1.62;
}

.licenses-modern__intro-content > :first-child {
    margin-top: 0;
}

.licenses-modern__intro-content > :last-child {
    margin-bottom: 0;
}

.licenses-modern__intro-content p {
    margin: 0;
}

.licenses-modern__intro-details {
    margin-top: 17px;
    border-top: 1px solid var(--licenses-line);
}

.licenses-modern__intro-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0 0;
    color: var(--licenses-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    list-style: none;
    text-transform: uppercase;
    cursor: pointer;
}

.licenses-modern__intro-details summary::-webkit-details-marker {
    display: none;
}

.licenses-modern__intro-details-icon {
    flex: 0 0 auto;
    color: #d87f00;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}

.licenses-modern__intro-details[open] .licenses-modern__intro-details-icon {
    transform: rotate(45deg);
}

.licenses-modern__intro-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 32px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.licenses-modern__intro-content li {
    position: relative;
    margin: 0;
    padding-left: 23px;
    font-size: 14px;
    line-height: 1.55;
    break-inside: avoid;
}

.licenses-modern__intro-content li::before {
    content: "";
    position: absolute;
    top: 0.76em;
    left: 0;
    width: 11px;
    height: 2px;
    background: var(--licenses-accent);
}

.licenses-modern__sections-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 38px;
    min-height: 64px;
    border-top: 1px solid var(--licenses-line);
}

.licenses-modern__sections-nav > span {
    margin-right: 10px;
    color: #858585;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.licenses-modern__sections-nav button {
    appearance: none;
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--licenses-text);
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.licenses-modern__sections-nav button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--licenses-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.licenses-modern__sections-nav button:hover::after,
.licenses-modern__sections-nav button:focus-visible::after {
    transform: scaleX(1);
}

.licenses-modern__sections-nav sup {
    margin-left: 4px;
    color: var(--licenses-accent);
    font-size: 9px;
    line-height: 0;
}

.licenses-modern__catalog {
    padding: 44px 0 106px;
}

.licenses-modern__group {
    scroll-margin-top: 130px;
}

.licenses-modern__group + .licenses-modern__group {
    margin-top: 105px;
}

.licenses-modern__group-header {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding-bottom: 27px;
    border-bottom: 1px solid #bdbdbd;
}

.licenses-modern__group-number {
    color: var(--licenses-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.licenses-modern__group-header h2 {
    margin: 0;
    color: var(--licenses-text);
    font-size: clamp(30px, 3.1vw, 46px);
    font-weight: 500;
    line-height: 1.08;
    text-transform: none;
}

.licenses-modern__group-count {
    padding-bottom: 4px;
    color: var(--licenses-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.licenses-modern__document {
    display: grid;
    grid-template-columns: 64px minmax(220px, 310px) minmax(0, 1fr);
    gap: 36px 24px;
    align-items: start;
    padding: 42px 0;
    border-bottom: 1px solid var(--licenses-line);
}

.licenses-modern__document--without-image {
    grid-template-columns: 64px minmax(0, 1fr);
}

.licenses-modern__document-number {
    padding-top: 3px;
    color: #9b9b9b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.licenses-modern__document-visual {
    margin: 0;
}

.licenses-modern__document-visual a {
    display: block;
    width: fit-content;
    max-width: 100%;
    color: inherit;
    text-decoration: none;
}

.licenses-modern__document-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 390px;
    object-fit: contain;
    object-position: left top;
    transition: transform 0.3s ease;
}

.licenses-modern__document-visual a:hover .licenses-modern__document-image,
.licenses-modern__document-visual a:focus-visible .licenses-modern__document-image {
    transform: translateY(-5px);
}

.licenses-modern__document-visual figcaption {
    margin-top: 13px;
    color: #8a8a8a;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.licenses-modern__document-content {
    max-width: 720px;
    padding-top: 1px;
}

.licenses-modern__document-content h3 {
    margin: 0 0 22px;
    font-size: clamp(22px, 2.1vw, 30px);
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.025em;
}

.licenses-modern__document-content h3 a {
    color: var(--licenses-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.licenses-modern__document-content h3 a:hover,
.licenses-modern__document-content h3 a:focus-visible {
    color: #d87f00;
}

.licenses-modern__document-content p {
    max-width: 680px;
    margin: 0;
    color: var(--licenses-muted);
    font-size: 16px;
    line-height: 1.68;
}

.licenses-modern__document-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 34px;
    margin-top: 31px;
}

.licenses-modern__document-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--licenses-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.licenses-modern__document-links a:first-child {
    color: #cf7600;
}

.licenses-modern__document-links span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}

.licenses-modern__document-links a:hover span,
.licenses-modern__document-links a:focus-visible span {
    transform: translate(3px, -1px);
}

@media (max-width: 991px) {
    .licenses-modern__hero {
        padding-top: 42px;
    }

    .licenses-modern__hero-grid {
        grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
        gap: 50px;
    }

    .licenses-modern__intro-content ul {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .licenses-modern__document {
        grid-template-columns: 48px minmax(190px, 240px) minmax(0, 1fr);
        gap: 28px 20px;
    }

    .licenses-modern__document--without-image {
        grid-template-columns: 48px minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .licenses-modern__hero {
        padding-top: 34px;
    }

    .licenses-modern__hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 28px;
    }

    .licenses-modern__title-block h1 {
        font-size: clamp(40px, 12vw, 54px);
    }

    .licenses-modern__intro-content {
        font-size: 15px;
        line-height: 1.58;
    }

    .licenses-modern__intro-details {
        margin-top: 14px;
    }

    .licenses-modern__sections-nav {
        gap: 16px 26px;
        padding: 23px 0 25px;
    }

    .licenses-modern__sections-nav > span {
        flex: 0 0 100%;
    }

    .licenses-modern__catalog {
        padding: 38px 0 86px;
    }

    .licenses-modern__group + .licenses-modern__group {
        margin-top: 78px;
    }

    .licenses-modern__group-header {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 14px;
        padding-bottom: 21px;
    }

    .licenses-modern__group-header h2 {
        font-size: 31px;
    }

    .licenses-modern__group-count {
        grid-column: 2;
        padding: 0;
    }

    .licenses-modern__document,
    .licenses-modern__document--without-image {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 19px 14px;
        padding: 32px 0 38px;
    }

    .licenses-modern__document-number {
        grid-column: 1;
        grid-row: 1;
    }

    .licenses-modern__document-visual {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .licenses-modern__document-content {
        grid-column: 2;
        padding-top: 4px;
    }

    .licenses-modern__document-visual + .licenses-modern__document-content {
        grid-row: 3;
    }

    .licenses-modern__document-image {
        max-height: 430px;
    }

    .licenses-modern__document-content h3 {
        font-size: 22px;
        line-height: 1.32;
    }
}

@media (max-width: 479px) {
    .licenses-modern__hero {
        padding-top: 30px;
    }

    .licenses-modern__eyebrow {
        margin-bottom: 20px;
        font-size: 10px;
    }

    .licenses-modern__title-block h1 {
        font-size: 39px;
    }

    .licenses-modern__sections-nav button {
        font-size: 13px;
    }

    .licenses-modern__catalog {
        padding-top: 32px;
    }

    .licenses-modern__group-header h2 {
        font-size: 27px;
    }

    .licenses-modern__document,
    .licenses-modern__document--without-image {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 19px 12px;
    }

    .licenses-modern__document-content h3 {
        font-size: 20px;
    }

    .licenses-modern__document-content p {
        font-size: 15px;
    }

    .licenses-modern__document-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-top: 26px;
    }
}

/* Clean single license page */
.license-single {
    --license-single-accent: #ffae42;
    --license-single-text: #2e2e2e;
    --license-single-muted: #6f6f6f;
    --license-single-line: #dedede;
    color: var(--license-single-text);
    background: #fff;
    overflow: hidden;
}

.license-single *,
.license-single *::before,
.license-single *::after {
    box-sizing: border-box;
}

.license-single__hero {
    padding: 46px 0 48px;
    border-bottom: 1px solid var(--license-single-line);
}

.license-single__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: var(--license-single-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.license-single__back span {
    color: #d87f00;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}

.license-single__back:hover,
.license-single__back:focus-visible {
    color: var(--license-single-text);
}

.license-single__back:hover span,
.license-single__back:focus-visible span {
    transform: translateX(-3px);
}

.license-single__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 19px;
    color: var(--license-single-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.license-single__eyebrow::before {
    content: "";
    flex: 0 0 34px;
    width: 34px;
    height: 2px;
    background: var(--license-single-accent);
}

.license-single__hero h1 {
    max-width: 1260px;
    margin: 0;
    color: var(--license-single-text);
    font-size: clamp(38px, 4.1vw, 58px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-transform: none;
}

.license-single__main {
    padding: 58px 0 112px;
}

.license-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    gap: clamp(50px, 6vw, 96px);
    align-items: start;
}

.license-single__layout--without-image {
    grid-template-columns: minmax(0, 820px);
}

.license-single__visual {
    min-width: 0;
    margin: 0;
}

.license-single__visual > a {
    display: block;
    width: fit-content;
    max-width: 100%;
    color: inherit;
    text-decoration: none;
}

.license-single__image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 760px;
    object-fit: contain;
    object-position: left top;
    transition: transform 0.3s ease;
}

.license-single__visual > a:hover .license-single__image,
.license-single__visual > a:focus-visible .license-single__image {
    transform: translateY(-5px);
}

.license-single__visual figcaption {
    margin-top: 14px;
    color: #858585;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.license-single__content {
    position: sticky;
    top: 115px;
    padding-top: 18px;
    border-top: 2px solid var(--license-single-accent);
}

.license-single__content-label {
    margin-bottom: 24px;
    color: var(--license-single-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.license-single__description {
    color: #505050;
    font-size: 17px;
    line-height: 1.72;
}

.license-single__description > :first-child {
    margin-top: 0;
}

.license-single__description > :last-child {
    margin-bottom: 0;
}

.license-single__description p {
    margin: 0 0 20px;
}

.license-single__description .su-custom-gallery {
    display: none;
}

.license-single__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 36px;
}

.license-single__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 52px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.license-single__open {
    min-width: 245px;
    padding: 14px 18px;
    color: #2e2e2e;
    background: var(--license-single-accent);
    transition: background-color 0.2s ease;
}

.license-single__open:hover,
.license-single__open:focus-visible {
    color: #2e2e2e;
    background: #ff9d1a;
}

.license-single__all {
    min-height: auto !important;
    padding: 0;
    color: var(--license-single-text);
}

.license-single__all:hover,
.license-single__all:focus-visible {
    color: #d87f00;
}

.license-single__actions span {
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}

.license-single__actions a:hover span,
.license-single__actions a:focus-visible span {
    transform: translate(3px, -1px);
}

@media (max-width: 991px) {
    .license-single__layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
        gap: 42px;
    }

    .license-single__hero h1 {
        font-size: clamp(36px, 5vw, 48px);
    }
}

@media (max-width: 767px) {
    .license-single__hero {
        padding: 34px 0 38px;
    }

    .license-single__back {
        margin-bottom: 27px;
    }

    .license-single__eyebrow {
        margin-bottom: 16px;
        font-size: 10px;
    }

    .license-single__hero h1 {
        font-size: clamp(31px, 9.4vw, 42px);
        line-height: 1.12;
    }

    .license-single__main {
        padding: 38px 0 82px;
    }

    .license-single__layout,
    .license-single__layout--without-image {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .license-single__image {
        width: 100%;
        max-height: none;
    }

    .license-single__content {
        position: static;
        padding-top: 16px;
    }

    .license-single__description {
        font-size: 16px;
        line-height: 1.68;
    }

    .license-single__actions {
        margin-top: 30px;
    }
}

@media (max-width: 479px) {
    .license-single__hero {
        padding-top: 30px;
    }

    .license-single__back {
        font-size: 10px;
    }

    .license-single__hero h1 {
        font-size: 30px;
    }

    .license-single__visual figcaption {
        font-size: 9px;
    }

    .license-single__actions,
    .license-single__actions a {
        width: 100%;
    }

    .license-single__all {
        justify-content: flex-start !important;
    }
}
