:root {
    --color-black: #000;
    --color-white: #fff;
    /* --accent-color: #2f3693; */
    --accent-color: #002b54;
    --accent-color-2: #68ab0c;
    --accent-color-3: #10377a;
    --accent-dark-color: #4f4f4f;
    --accent-background-color: #fafafb;
    --page-max-width: 1920px;
    --container-padding: 123px;
    --container-block-padding: 40px;
    --container-margin-bottom: 80px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --input-error-background-color: #fce7e7;
    --input-error-border-color: #faababbd;
    --tooltip-background-color: #fff;
}

@media (max-width: 1260px) {
    :root {
        --container-padding: 5%;
    }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    background-color: var(--accent-background-color);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

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

.is-hidden {
    display: none !important;
}

.btn-reset {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* || HEADER start|| */
.h-nav {
    display: grid;
}

.header {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9;
    transition: 0.3s ease;
    /* background-color: #fff; */
    background-color: var(--accent-background-color);
}

.top-nav {
    display: grid;
    grid-template-columns: 0.7fr auto;
    padding: 0 5%;
    gap: 10px 10px;
    grid-auto-flow: row;
    grid-template-areas: 'top-nav__logo top-nav__top' 'top-nav__logo top-nav__bottom';
}
.top-nav.top-nav--small {
    gap: 0 10px;
}
.top-nav__logo {
    grid-area: top-nav__logo;
    display: flex;
    align-items: center;
}
.top-nav__logo > a {
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    max-height: 80%;
    align-items: baseline;
}
.top-nav__logo > a > img {
    display: block;
    max-height: 100%;
    height: 140px;
}
@media (max-width: 1200px) {
    .top-nav__logo > a {
        width: 100%;
        min-width: 120px;
        align-items: center;
    }

    .top-nav__logo > a > img {
        max-width: 100%;
        height: auto;
    }
}
.top-nav__top {
    grid-area: top-nav__top;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-nav__top-certificates {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 10px;
    column-gap: 5px;
    padding-right: 35px;
    position: relative;
}
.top-nav__top-certificates::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background-color: #e6e6e6;
}
@media (max-width: 1500px) {
    .top-nav__top-certificates {
        padding-right: 15px;
    }
}
@media (max-width: 1080px) {
    .top-nav__top-certificates {
        display: none;
    }
}
@media (max-width: 1025px) {
    .top-nav__top-certificates {
        display: initial;
    }
}
@media (max-width: 660px) {
    .top-nav__top-certificates {
        display: none;
    }
}

.top-nav__top-certificates-text {
    color: #828282;
}
@media (max-width: 1400px) {
    .top-nav__top-certificates-text {
        display: none;
    }
}
.top-nav__top-certificates-items {
    display: flex;
    column-gap: 10px;
}
.top-nav__top-certificates-item {
}
.top-nav__top-certificates-item img {
    display: block;
    max-width: 35px;
    max-height: 35px;
}
.top-nav__top-link.top-nav__top-link--env {
    color: var(--accent-color-2);
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    row-gap: 5px;
    margin-left: 15px;
    padding-right: 35px;
    border-right: 1px solid #e6e6e6;
}
.top-nav__top-link.top-nav__top-link--env > img {
    display: block;
    max-width: 41px;
    max-height: 26px;
}
@media (max-width: 1500px) {
    .top-nav__top-link.top-nav__top-link--env {
        padding-right: 15px;
    }
}
@media (max-width: 1024px) {
    .top-nav__top-link.top-nav__top-link--env > span {
        display: none;
    }
}
@media (max-width: 550px) {
    .top-nav__top-link.top-nav__top-link--env {
        padding-right: 15px;
    }
}
@media (max-width: 450px) {
    .top-nav__top-link.top-nav__top-link--env {
        display: none;
    }
}
.top-nav__top-link.top-nav__top-link--tel {
    display: flex;
    align-items: center;
    -moz-column-gap: 5px;
    column-gap: 5px;
    row-gap: 5px;
    color: var(--accent-color);
    margin-left: 35px;
}
.top-nav__top-link.top-nav__top-link--tel > img {
    display: block;
    max-width: 26px;
    max-height: 26px;
}
@media (max-width: 1500px) {
    .top-nav__top-link.top-nav__top-link--tel {
        margin-left: 15px;
    }
}
@media (max-width: 1024px) {
    .top-nav__top-link.top-nav__top-link--tel > span {
        display: none;
    }
}
@media (max-width: 550px) {
    .top-nav__top-link.top-nav__top-link--tel {
        margin-left: 15px;
    }
}
.top-nav__top-link.top-nav__top-link--quote {
    font-size: clamp(16px, 1.3vw, 22px);
    font-weight: 300;
    padding: 15px;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: var(--accent-color);
    margin-left: 35px;
}
@media (max-width: 550px) {
    .top-nav__top-link.top-nav__top-link--quote {
        padding: 10px 10px;
        margin-left: 15px;
    }
}
.top-nav__bottom {
    grid-area: top-nav__bottom;
}
.top-nav__bottom-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
@media (max-width: 1730px) {
    .top-nav__bottom-menu {
        -moz-column-gap: 5px;
        column-gap: 5px;
    }
}
@media (max-width: 1024px) {
    .top-nav__bottom-menu-item {
        display: none;
    }
}
.top-nav__bottom-menu-item--mobile-trigger {
    display: none;
    width: 34px;
    height: 24px;
    margin: 10px 0;
}
.top-nav__bottom-menu-item--mobile-trigger .m-menu-toggle__button {
    background: none;
    border: none;
}
@media (max-width: 1024px) {
    .top-nav__bottom-menu-item--mobile-trigger {
        display: block;
    }
}
.top-nav__bottom-menu-link {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-size: 16px;
    transition: 0.3s ease;
    padding: 10px 0;
    margin: 0 15px;
    border-top: 4px solid transparent;
    transition: 0.3s ease;
    color: var(--accent-color);
}
.top-nav__bottom-menu-link.top-nav__bottom-menu-link--active {
    border-top: 4px solid var(--accent-color);
}
.top-nav__bottom-menu-link:hover {
    background-color: var(--accent-color);
    color: var(--accent-background-color);
    padding: 10px 15px;
    margin: 0;
}
@media (max-width: 1420px) {
    .top-nav__bottom-menu-link {
        font-size: 14px;
        margin: 0 5px;
    }
    .top-nav__bottom-menu-link:hover {
        padding: 10px 5px;
    }
}
.top-nav__bottom-menu-submenu {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #fafafb;
    box-shadow: 0 25px 25px -15px rgba(0, 0, 0, 0.3);
    padding: 41px 4%;
    display: none;
}
@media (max-width: 1200px) {
    .top-nav {
        grid-template-columns: 0.4fr auto;
    }
}
@media (max-width: 550px) {
    .top-nav {
        -moz-column-gap: 10px;
        column-gap: 10px;
        row-gap: 0;
    }
}

.cp-menu {
    display: grid;
    max-width: 1920px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(200px, 275px));
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
    align-items: center;
    max-height: 80vh;
    overflow-y: auto;
    grid-auto-flow: row;
}
.cp-menu__item {
    transition: 0.3s ease;
    padding: 15px;
    position: relative;
}
.cp-menu__item:hover {
    background-color: var(--accent-background-color);
}
.cp-menu__item:not(:last-child) {
    padding: 15px;
}
.cp-menu__item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background-color: #e0e0e0;
}
.cp-menu__item-ttl {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}
.cp-menu__item-txt {
    color: #333333;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cp-menu__item-link {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--accent-color);
    text-transform: uppercase;
    padding-right: 15px;
}
.cp-menu__item.cp-menu__item--accent > .cp-menu__item-ttl {
    color: var(--accent-color-2);
}
.cp-menu__item.cp-menu__item--accent > .cp-menu__item-link {
    color: var(--accent-color-2);
}

.industries-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
    max-width: 1920px;
    margin: 0 auto;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 40px;
    justify-content: center;
    align-items: center;
    max-height: 80vh;
    overflow-y: auto;
    grid-auto-flow: row;
}
.industries-menu__item {
    position: relative;
    display: block;
}
.industries-menu__item-media {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}
.industries-menu__item-img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.industries-menu__item-ttl-block {
    padding: 10px;
    width: 100%;
    min-height: 52px;
    background-color: rgba(255, 255, 255, 0.795);
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease 0.2s;
}
.industries-menu__item-ttl {
    font-weight: 500;
    font-size: 14.1662px;
    line-height: 110%;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: var(--accent-color);
}
.industries-menu__item:hover .industries-menu__item-ttl-block {
    top: 50%;
    transform: translateY(-50%);
    max-height: 100%;
    color: var(--accent-color);
    background-color: white;
    box-shadow: 0 0 55px rgba(255, 255, 255, 0.795);
}

.profiles-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 30%));
    max-width: 1920px;
    margin: 0 auto;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 40px;
    justify-content: center;
    align-items: center;
    max-height: 80vh;
    overflow-y: auto;
    grid-auto-flow: row;
}
.profiles-menu__item {
    position: relative;
    display: grid;
    grid-template-areas: 'profiles-menu__item-img profiles-menu__item-ttl' 'profiles-menu__item-img profiles-menu__item-txt' 'profiles-menu__item-img profiles-menu__item-link';
    grid-template-columns: auto 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding: 15px;
    transition: 0.3s ease;
}
.profiles-menu__item:hover {
    background-color: var(--accent-background-color);
}
.profiles-menu__item-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 210px;
    max-height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
    grid-area: profiles-menu__item-img;
}
.profiles-menu__item-ttl {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
    grid-area: profiles-menu__item-ttl;
}
.profiles-menu__item-txt {
    font-size: 16px;
    line-height: 150%;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    grid-area: profiles-menu__item-txt;
}
.profiles-menu__item-link {
    font-weight: 500;
    font-size: 14.1662px;
    line-height: 110%;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    -moz-column-gap: 5px;
    column-gap: 5px;
    color: var(--accent-color);
    grid-area: profiles-menu__item-link;
}

/* || HEADER end || */
/* || HOME SLIDER start || */
.home-slider {
    width: 100%;
    height: 690px;
    overflow: hidden;
    position: relative;
}
.home-slider .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: #1b31579c; */
    background-color: #002b546e;
    background-blend-mode: soft-light;
}
.home-slider .swiper-slide .slide-content {
    margin-left: 5%;
    margin-right: 5%;
    width: 100%;
    justify-content: center;
}
.home-slider .swiper-slide .slide-content__text-side {
    width: 100%;
    max-width: 1070px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 15px;
}
.home-slider .swiper-slide .slide-content__title {
    color: #fff;
    font-weight: 300;
    font-size: clamp(35px, 4vw, 41.4835px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.home-slider .swiper-slide .slide-content__sub-title {
    color: #fff;
    font-weight: 600;
    font-size: clamp(33px, 6vw, 60px);
    line-height: 105%;
    margin-bottom: 15px;
    max-width: 90%;
}
.home-slider .swiper-slide .slide-content__accent-title {
    color: #fff;
    font-size: clamp(35px, 3vw, 55px);
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 15px;
    background-color: var(--accent-color);
    padding: 10px;
}
.home-slider .swiper-slide .slide-content__text {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
}
.home-slider .swiper-slide .slide-content__buttons {
    display: flex;
    justify-content: center;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px;
}
@media (max-width: 550px) {
    .home-slider .swiper-slide .slide-content__buttons .btn {
        padding: 5px;
        font-size: 16px;
        display: flex;
        align-items: center;
    }
}
@media (max-width: 1600px) {
    .home-slider .swiper-slide .slide-content {
        grid-template-columns: 1.2fr minmax(0px, 1fr);
        margin-top: 0;
    }
}
@media (max-width: 1200px) {
    .home-slider .swiper-slide .slide-content {
        grid-template-columns: 1fr;
    }
}
.home-slider .swiper-slide .slide-content__link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23.4px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
    padding: 40px 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease-in-out;
}
.home-slider .swiper-slide .slide-content__link:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.5);
}
@media (max-width: 500px) {
    .home-slider .swiper-slide .slide-content__link {
        font-size: 18px;
        margin: 20px auto;
        padding: 20px 15px;
    }
}
.home-slider .swiper-slide .slide-content img {
    margin-left: 10px;
}
.home-slider .swiper-button-next {
    width: 42px;
    height: 66px;
    right: 10vw;
    color: #fff;
    background-color: #4f4f4f;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-next {
        right: 3%;
    }
}
.home-slider .swiper-button-prev {
    width: 42px;
    height: 66px;
    left: 10vw;
    color: #fff;
    background-color: #4f4f4f;
}
@media (max-width: 2000px) {
    .home-slider .swiper-button-prev {
        left: 3%;
    }
}
.home-slider .swiper-pagination-bullets {
    bottom: 100px;
}
.home-slider .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
}
.home-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #828282;
}
@media (max-width: 768px) {
    .home-slider .swiper-slide .slide-content__text-side {
        width: auto;
    }
    .home-slider .swiper-slide .slide-content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .home-slider .swiper-slide .slide-content__text-side {
        padding-left: 36px;
        padding-right: 36px;
    }

    .home-slider .swiper-button-next,
    .home-slider .swiper-button-prev {
        width: 32px;
        height: 52px;
        margin-top: -26px;
    }

    .home-slider .swiper-button-next::after,
    .home-slider .swiper-button-prev::after {
        font-size: 24px;
    }

    .home-slider .swiper-button-next {
        right: 10px;
    }

    .home-slider .swiper-button-prev {
        left: 10px;
    }
}
@media (max-width: 480px) {
    .home-slider .swiper-slide .slide-content {
        margin-left: 14px;
        margin-right: 14px;
    }

    .home-slider .swiper-slide .slide-content__text-side {
        padding-left: 44px;
        padding-right: 44px;
    }

    .home-slider .swiper-button-next,
    .home-slider .swiper-button-prev {
        width: 28px;
        height: 44px;
        margin-top: -22px;
    }

    .home-slider .swiper-button-next::after,
    .home-slider .swiper-button-prev::after {
        font-size: 20px;
    }

    .home-slider .swiper-button-next {
        right: 6px;
    }

    .home-slider .swiper-button-prev {
        left: 6px;
    }
}
@media (max-width: 1200px) {
    .home-slider {
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
    }
}

/* || HOME SLIDER end || */
/* || FOOTER start|| */
.footer {
    background-color: var(--accent-background-color);
    padding-top: 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.7fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-auto-columns: 1fr;
    gap: 0px 20px;
    grid-auto-flow: row;
    grid-template-areas: 'footer-grid__logo footer-grid__info footer-grid__process-capabilities footer-grid__categories footer-grid__contacts';
    padding: 0 5% 25px 5%;
}
@media (max-width: 1500px) {
    .footer-grid {
        grid-template-columns: 0.8fr 1fr 1fr;
        grid-template-areas: 'footer-grid__logo footer-grid__info footer-grid__categories' 'footer-grid__logo footer-grid__process-capabilities footer-grid__contacts';
        gap: 20px 50px;
    }
}
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 'footer-grid__logo ' 'footer-grid__info' 'footer-grid__process-capabilities' 'footer-grid__categories' 'footer-grid__contacts';
        gap: 20px 50px;
    }
}
.footer-grid__logo {
    grid-area: footer-grid__logo;
}
.footer-grid__logo-link {
    display: block;
    margin-bottom: 40px;
}
.footer-grid__logo-socials {
    display: flex;
    align-items: center;
}
.footer-grid__logo-socials a {
    margin-right: 15px;
}
.footer-grid__process-capabilities {
    grid-area: footer-grid__process-capabilities;
}
.footer-grid__info {
    grid-area: footer-grid__info;
}
.footer-grid__categories {
    grid-area: footer-grid__categories;
}
.footer-grid__contacts {
    grid-area: footer-grid__contacts;
}
.footer-grid__ttl {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-grid__list,
.footer-grid__list--2col {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-grid__list--2col {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    gap: 0 20px;
}
@media (max-width: 600px) {
    .footer-grid__list--2col {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}
.footer-grid__list-item > {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    text-transform: uppercase;
}
.footer-grid__list-item > a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
    transition: 0.3s ease;
}
.footer-grid__list-item > a.footer-contact {
    padding-left: 25px;
    position: relative;
}
.footer-grid__list-item > a.footer-contact.footer-contact--pin::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/cg_pin-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-grid__list-item > a.footer-contact.footer-contact--phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url(/img/icons/cg_phone_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-grid__list-item > a:hover {
    color: var(--accent-color);
}
.footer-grid__list-item > p {
    font-size: 16px;
    line-height: 150%;
    color: #333333;
}

.footer-bottom-wrapper {
    background-color: #fff;
}

.footer-bottom {
    padding: 30px;
    position: relative;
    font-size: 14px;
    color: #828282;
}
.footer-bottom a {
    color: #828282;
}
.footer-bottom > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* || FOOTER end|| */
/* [_paragraph start] */
.par {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'par__img par__txt';
    max-width: var(--page-max-width);
    margin: auto;
}
.par__txt {
    grid-area: par__txt;
    display: flex;
    flex-direction: column;
    padding: 0 5%;
}
.par__txt .btn {
    margin-top: 30px;
}
.par__txt ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}
.par__txt li {
    position: relative;
    color: #000;
    line-height: 1.7;
}
.par__txt li + li {
    margin-top: 14px;
}
.par__txt ul > li {
    padding-left: 30px;
}
.par__txt ul > li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #007bee, var(--accent-color));
    box-shadow: 0 0 0 4px rgba(16, 55, 122, 0.08);
    transform: translateY(-50%);
}
.par__txt li > ul {
    margin: 14px 0 0;
    padding: 16px 0 0 18px;
    border-left: 1px solid rgba(0, 43, 84, 0.12);
}
.par__txt li > ul > li {
    font-size: 0.95em;
    padding-left: 24px;
}
.par__txt li > ul > li::before {
    width: 9px;
    height: 9px;
    border-radius: 3px;
    background: var(--accent-color);
    box-shadow: none;
}
.par__img {
    grid-area: par__img;
    max-width: calc(var(--page-max-width) / 2);
    position: relative;
}

.par__img img {
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
}
.par__ttl {
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--accent-color);
}
.par__subttl {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    font-size: clamp(18px, 3vw, 28px);
    margin-bottom: 35px;
    color: var(--accent-color);
}
.par__link {
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-color);
    transition: 0.3s ease;
}
.par__link:hover {
    box-shadow: 0 2px 0 -1px var(--accent-color);
}
.par__link_2 {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    margin-top: 25px;
}

.par__link_2:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 2px 0 -1px var(--accent-color);
}

@media (max-width: 768px) {
    .par {
        grid-template-columns: 1fr !important;
        grid-template-areas: 'par__img' 'par__txt' !important;
        row-gap: 20px;
    }
}

.par.par--left {
    grid-template-areas: 'par__img par__txt';
}

.par.par--right {
    grid-template-areas: 'par__txt par__img';
}

.par.par--center {
    grid-template-columns: 100%;
    grid-template-areas: 'par__img' 'par__txt';
}

.par.par--center .par__img {
    display: block;
    max-width: 100%;
    margin: 0 auto 15px auto;
}

.par.par--padding-large {
    padding: 50px 0;
}

.par__txt.par__txt--left {
    text-align: left;
    justify-content: flex-start;
}

.par__txt.par__txt--center {
    justify-content: center;
}

.par__txt.par__txt--right {
    text-align: right;
    justify-content: flex-end;
}

/* [_paragraph end] */
.floating-par {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.floating-par.par--left--floating .floating-par__wrapper {
    display: flex;
    justify-content: flex-start;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
.floating-par.par--right--floating .floating-par__wrapper {
    display: flex;
    justify-content: flex-end;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
.floating-par.par--center--floating .floating-par__wrapper {
    display: flex;
    justify-content: center;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
.floating-par__wrapper {
    display: flex;
    justify-content: flex-end;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
.floating-par__block {
    max-width: 835px;
    width: 100%;
    margin: 78px 5%;
    padding: 50px 75px;
    background-color: #fafafbd9;
}
.floating-par__block p {
    line-height: 150%;
}
.floating-par__block ul,
.floating-par__block ol {
    margin: 0 0 24px;
    padding: 0;
}
.floating-par__block ul {
    list-style: none;
}
.floating-par__block ol {
    list-style: none;
    counter-reset: floating-par-list;
}
.floating-par__block li {
    position: relative;
    color: var(--accent-dark-color);
    line-height: 1.7;
}
.floating-par__block li + li {
    margin-top: 14px;
}
.floating-par__block ul > li {
    padding-left: 30px;
}
.floating-par__block ul > li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #007bee, var(--accent-color));
    box-shadow: 0 0 0 4px rgba(16, 55, 122, 0.08);
    transform: translateY(-50%);
}
.floating-par__block ol > li {
    padding-left: 42px;
}
.floating-par__block ol > li::before {
    counter-increment: floating-par-list;
    content: counter(floating-par-list);
    position: absolute;
    top: 0.15em;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background-color: rgba(0, 43, 84, 0.1);
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}
.floating-par__block li > ul,
.floating-par__block li > ol {
    margin: 14px 0 0;
    padding: 16px 0 0 18px;
    border-left: 1px solid rgba(0, 43, 84, 0.12);
}
.floating-par__block li > ul > li,
.floating-par__block li > ol > li {
    font-size: 0.95em;
}
.floating-par__block li > ul > li {
    padding-left: 24px;
}
.floating-par__block li > ul > li::before {
    width: 9px;
    height: 9px;
    border-radius: 3px;
    background: var(--accent-color);
    box-shadow: none;
}
.floating-par__block li > ol > li {
    padding-left: 38px;
}
.floating-par__block li > ol > li::before {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background-color: rgba(104, 171, 12, 0.14);
    color: var(--accent-color-3);
    font-size: 12px;
}
@media (max-width: 550px) {
    .floating-par__block {
        padding: 50px 25px;
    }
    .floating-par__block ol > li {
        padding-left: 38px;
    }
    .floating-par__block ol > li::before {
        width: 24px;
        height: 24px;
    }
    .floating-par__block li > ul,
    .floating-par__block li > ol {
        padding-left: 14px;
    }
}
.floating-par__text {
    margin-bottom: 30px;
}
.floating-par__text * {
    background: none !important;
    background-color: transparent !important;
}
.floating-par__link {
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-color);
    transition: 0.3s ease;
}
.floating-par__link:hover {
    box-shadow: 0 2px 0 -1px var(--accent-color);
}
.floating-par__icon-links {
    margin: 40px 0 0;
    display: flex;
    justify-content: space-around;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 40px;
    flex-wrap: wrap;
}
.floating-par__icon-links .floating-par__icon-link:first-of-type {
    border-left: 1px solid #9fafce81;
}
.floating-par__icon-links .floating-par__icon-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 20px;
    border-right: 1px solid #9fafce81;
    transition: 0.3s ease;
}
.floating-par__icon-links .floating-par__icon-link:hover .floating-par__icon-link-txt {
    text-decoration: underline;
}
.floating-par__icon-links .floating-par__icon-link-img {
    display: block;
    margin: 0 auto 15px auto;
    /* width: 100%; */
    width: 70px;
    height: 70px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .floating-par__icon-links .floating-par__icon-link-img {
        width: 50px;
        height: 50px;
    }
}
.floating-par__icon-links .floating-par__icon-link-txt {
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* floating orderder list */
.floating-par ol {
    list-style: none;
    display: grid;
    grid-template-columns: 100%;
    -moz-column-gap: 90px;
    column-gap: 90px;
    row-gap: 25px;
    margin-bottom: 35px;
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.floating-par ol .numbered-list--small {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.floating-par ol li {
    padding-left: 70px;
    position: relative;
}
.numbered-list__item-number {
    position: absolute;
    top: 5px;
    left: 0;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 29px;
}
.numbered-list__item-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 15px;
    color: var(--accent-color);
}
.numbered-list__item-text {
    font-size: 16px;
    line-height: 150%;
}

/* floating unordered list */
.floating-par ul {
    list-style: none;
    display: grid;
    grid-template-columns: 100%;
    -moz-column-gap: 90px;
    column-gap: 90px;
    row-gap: 5px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.floating-par ul.unordered-list--2col {
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
    .floating-par ul.unordered-list--2col {
        grid-template-columns: 1fr;
    }
}
.floating-par ul.unordered-list--3col {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    margin-bottom: 0;
    margin-top: 30px;
    row-gap: 15px;
}
@media (max-width: 768px) {
    .floating-par ul.unordered-list--3col {
        grid-template-columns: 1fr;
    }
}
.floating-par ul.unordered-list--no-row-gap {
    row-gap: 15px;
}
.floating-par ul.unordered-list--row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 35px;
}
.floating-par ul li {
    padding-left: 30px;
    position: relative;
}
.floating-par ul li a {
    color: #000;
}
.floating-par ul li:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: var(--accent-color);
}
.floating-par ul .unordered-list__item-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: var(--accent-color);
}
.floating-par ul .unordered-list__item-text {
    font-size: 16px;
    line-height: 150%;
}
.floating-par ul.unordered-list--green > li:before {
    background-color: var(--accent-color-2);
}

/* [index-gallery start] */
.index-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2.3fr;
    background-color: var(--accent-color);
    gap: 100px;
    padding: 60px 0 60px 5%;
    color: #fff;
}
.index-gallery__swiper-wrapper {
    width: 100%;
    height: max-content;
    display: inherit;
    position: relative;
    --swiper-navigation-color: #fff;
}
.index-gallery__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.index-gallery__content-ttl {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.index-gallery__content-subttl {
    font-weight: 300;
    font-size: clamp(35px, 3vw, 46px);
    line-height: 120%;
    color: #fff;
    position: relative;
    margin-bottom: 50px;
}
.index-gallery__content-subttl:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #fff;
}
.index-gallery__content-txt {
    font-weight: 300;
    font-size: clamp(16px, 3vw, 24px);
    line-height: 150%;
    margin-bottom: 25px;
}
.index-gallery__content-link {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 7px 15px;
    border: 2px solid #9fafce;
    color: #9fafce;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.index-gallery__content-link:hover {
    border-color: #fff;
    color: #fff;
}
@media (max-width: 900px) {
    .index-gallery {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0;
    }
    .index-gallery .index-gallery__content {
        padding: 0 5% 40px 5%;
    }
}

.index-gallery__swiper.swiper {
    width: 100%;
    height: 100%;
}
.index-gallery__swiper.swiper .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item {
    display: block;
    height: 290px;
    width: 415px;
    outline: 10px solid rgba(255, 255, 255, 0.582);
    margin: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
@media (max-width: 500px) {
    .index-gallery__swiper.swiper .swiper-slide .index-gallery__item {
        margin: 10px auto;
        width: 90%;
    }
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item * {
    box-sizing: border-box;
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item-ttl {
    font-weight: 500;
    font-size: 22px;
    line-height: 110%;
    text-transform: uppercase;
    position: absolute;
    text-align: center;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.582);
    color: #000;
    width: 100%;
    left: 0;
    bottom: 0;
    transition: 0.3s ease;
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item-descr {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5%;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.795);
    transition: 0.3s ease;
    transition-delay: 0.2s;
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item-descr-ttl {
    font-weight: 500;
    font-size: 22px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item-descr-txt {
    color: #000;
    text-align: center;
    margin: 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item-descr-link {
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-color);
    transition: 0.3s ease;
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item-descr-link:hover {
    box-shadow: 0 2px 0 -1px var(--accent-color);
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item:hover .index-gallery__item-ttl {
    bottom: -100%;
}
.index-gallery__swiper.swiper .swiper-slide .index-gallery__item:hover .index-gallery__item-descr {
    opacity: 1;
}
.index-gallery__swiper.swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* [index-gallery end] */
.index-welcome__text {
    text-align: center;
    /* max-width: 1330px; */
    margin: 0 auto;
    margin-bottom: 50px;
}
.index-welcome .btn {
    margin: 0 auto 30px auto;
}
.index-welcome__footer {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}

.index-cer-pr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    grid-auto-flow: row;
    grid-template-areas: 'index-cer-pr__cert-block index-cer-pr__pr-block';
    padding: 88px 0 64px;
}
.index-cer-pr__cert-block {
    grid-area: index-cer-pr__cert-block;
}
.index-cer-pr__pr-block {
    grid-area: index-cer-pr__pr-block;
}
.index-cer-pr__cert-head {
    margin-bottom: 35px;
}
.index-cer-pr__cert-items {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}
.index-cer-pr__cert-item {
    display: flex;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.index-cer-pr__cert-item-link {
    display: flex;
    flex: 1 0 100%;
    max-width: 115px;
}
.index-cer-pr__cert-item-link img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
.index-cer-pr__cert-item-content b {
    display: block;
    margin-bottom: 10px;
}
.index-cer-pr__pr-head {
    margin-bottom: 30px;
}
.index-cer-pr__pr-head-text ul {
    list-style-position: inside;
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 20px;
}
.index-cer-pr__pr-head-text ul > li a {
    color: #000;
}
.index-cer-pr__pr-head-text ul > li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}
@media (max-width: 1350px) {
    .index-cer-pr__pr-head-text ul {
        -moz-column-count: 2;
        column-count: 2;
    }
}
@media (max-width: 550px) {
    .index-cer-pr__pr-head-text ul {
        -moz-column-count: unset;
        column-count: unset;
    }
}
.index-cer-pr__pr-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 1fr;
    grid-auto-flow: row;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
}
.index-cer-pr__pr-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.index-cer-pr__pr-media {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 62.5%;
    overflow: hidden;
}
.index-cer-pr__pr-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.index-cer-pr__pr-title {
    display: block;
    margin-top: 12px;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}
@media (max-width: 1000px) {
    .index-cer-pr {
        grid-template-columns: 100%;
        grid-template-areas: 'index-cer-pr__cert-block' 'index-cer-pr__pr-block';
    }

    .index-cer-pr__pr-title {
        display: none;
    }
}

.index-banner {
    background-image: url(/img/backgrounds/cg_green_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 226px;
    display: flex;
    align-items: center;
    padding: 40px 0;
}
.index-banner__wrapper {
    padding: 0 5%;
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    -moz-column-gap: 50px;
    column-gap: 50px;
    align-items: center;
    align-self: center;
}
.index-banner__wrapper h2 {
    font-weight: 300;
    font-size: clamp(20px, 4vw, 46px);
    line-height: 120%;
    color: #ffffff;
}
.index-banner__wrapper .btn {
    white-space: nowrap;
}
@media (max-width: 768px) {
    .index-banner__wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .index-banner__wrapper h2 {
        font-size: clamp(20px, 4vw, 46px);
        text-align: center;
        margin: 40px 0;
    }
}

/* [_register-login-popups start] */
#register-dialog,
#login-dialog {
    position: relative;
    background-color: var(--accent-color);
    color: #fff;
    padding: clamp(40px, 5%, 60px) 5%;
    width: 80%;
}

#login-dialog {
    max-width: 660px;
}

#login-dialog .requestInfo--content {
    overflow: hidden;
    padding: 0 30px;
    padding: 30px;
}

.requestInfo--content {
    width: 100%;
    height: 100%;
    position: relative;
}

#login-dialog .carousel__button,
#register-dialog .carousel__button {
    border: 2px solid #fff;
    top: 15px;
    right: 15px;
    color: #fff;
}

.login-form__block {
    margin-bottom: 15px;
}

#register-dialog {
    background-image: url(/img/backgrounds/cg_request-form-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#register-dialog h1 {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
}

#login-dialog h1 {
    font-weight: 500;
    font-size: 36px;
    letter-spacing: -0.04em;
}

#register-dialog .requestInfo--content > p {
    font-size: 16px;
    margin-bottom: 50px;
}

#register-dialog form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

#register-dialog .requestInfo--2col {
    grid-column: 1/-1;
}

#register-dialog input,
#login-dialog input {
    height: auto;
    width: 100%;
    border: none;
    padding: 15px;
}

#register-dialog input:not(:first-of-type) {
    margin-left: 15px;
}

#register-dialog form .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 15px;
    margin-top: 25px;
}

#login-dialog form .btn {
    /* padding: 23px 30px; */
    /* height: max-content; */
    margin-top: 35px;
}

.login-form-row {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

#login-dialog input,
#login-dialog .btn {
    display: flex;
    align-items: center;
    height: 50px;
    margin-bottom: 10px;
}

.login-form-row > *:not(.btn) {
    flex: 1;
}

.login-form-row > div input {
    height: 100%;
}

#register-dialog a,
#login-dialog a {
    color: #fff;
    text-decoration: underline;
}

/* REGISTER DIALOG */
#register-dialog form > div {
    display: flex;
}

@media only screen and (max-width: 1100px) {
    #login-dialog {
        width: 100%;
    }
}
@media only screen and (max-width: 780px) {
    #register-dialog,
    #login-dialog {
        width: 100%;
    }

    .login-form-row {
        flex-direction: column;
    }
}
@media only screen and (max-width: 550px) {
    .contact-form form,
    #register-dialog form,
    #register-dialog .grid-2col {
        display: flex;
        flex-direction: column;
    }

    #register-dialog form {
        gap: 0;
    }

    #register-dialog form > div {
        flex-direction: column;
    }

    #register-dialog input:not(:first-of-type) {
        margin-left: 0;
    }

    #register-dialog input {
        margin-bottom: 15px;
    }
}
/* [_register-login-popups end] */
.page-header {
    padding: 50px 0 30px 0;
    background-color: var(--accent-background-color);
}

.contact-grid {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-rows: auto;
    gap: 60px 60px;
    align-items: start;
    grid-auto-flow: row;
    grid-template-areas: 'contact-grid__contacts-container contact-grid__map-container' 'contact-grid__form-container contact-grid__map-container';
}
.contact-grid__form-container {
    grid-area: contact-grid__form-container;
    padding: 38px;
    border: 1px solid #d8e0ea;
    background-color: #fff;
}
.contact-grid__form-container > .title {
    margin-bottom: 16px;
}
.contact-grid__form-container > p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--accent-dark-color);
}
.contact-grid__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}
.contact-grid__form input,
.contact-grid__form textarea,
.contact-grid__form > .jfilestyle,
.contact-grid__form > .jfilestyle input {
    border: 1px solid #cfd8e3;
    background-color: #ffffff;
    color: #1f2a36;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}
.contact-grid__form input,
.contact-grid__form > .jfilestyle input {
    min-height: 56px;
}
.contact-grid__form textarea,
.contact-grid__form > .jfilestyle {
    grid-column: 1/-1;
}
.contact-grid__form textarea {
    min-height: 180px;
    resize: vertical;
}
.contact-grid__form input::placeholder,
.contact-grid__form textarea::placeholder,
.contact-grid__form > .jfilestyle input::placeholder {
    color: #6d7782;
}
.contact-grid__form input:focus,
.contact-grid__form textarea:focus,
.contact-grid__form > .jfilestyle input:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fcfdff;
}
.contact-grid__form .btn {
    text-transform: capitalize;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 180px;
    padding-inline: 30px;
    justify-self: start;
}
@media (max-width: 500px) {
    .contact-grid__form-container {
        padding: 26px 22px;
    }
    .contact-grid__form {
        grid-template-columns: 100%;
    }
    .contact-grid__form .btn {
        width: 100%;
    }
}
.contact-grid__contacts-container {
    grid-area: contact-grid__contacts-container;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.contact-grid__contacts-container-item {
    padding: 34px 30px;
    border: 1px solid #d8e0ea;
    background-color: #fff;
}
.contact-grid__contacts-container-item h2 {
    font-weight: 600;
    font-size: clamp(18px, 2.4vw, 26px);
    line-height: 120%;
    color: var(--accent-color);
    margin-bottom: 24px;
}
.contact-grid__contacts-container-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.contact-grid__contacts-container-item ul li + li {
    margin-top: 18px;
}
.contact-grid__contacts-container-item ul a {
    display: block;
    color: #1f2a36;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 42px;
    white-space: normal;
    transition: color 0.3s ease;
}
.contact-grid__contacts-container-item ul a:hover {
    color: var(--accent-color);
}
.contact-grid__contacts-container-item ul a.phone-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url(/img/icons/cg_phone-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.contact-grid__contacts-container-item ul a.pin-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url(/img/icons/cg_pin-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 700px) {
    .contact-grid__contacts-container {
        grid-template-columns: 100%;
    }
    .contact-grid__contacts-container-item {
        padding: 26px 22px;
    }
}
.contact-grid__map-container {
    grid-area: contact-grid__map-container;
    min-height: 100%;
}
.contact-grid__map-container a {
    display: block;
    height: 100%;
    min-height: 420px;
    border: 1px solid #d8e0ea;
    background-color: #fff;
    overflow: hidden;
}
.contact-grid__map-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 100%;
        grid-template-areas: 'contact-grid__contacts-container' 'contact-grid__map-container' 'contact-grid__form-container';
    }
    .contact-grid__map-container a {
        min-height: 360px;
    }
}

.contact-contacts {
    background-color: #f6f8fd;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    -moz-column-gap: 80px;
    column-gap: 80px;
    row-gap: 100px;
    padding: 20px;
}
.contacts-grid__item-titles {
    border-left: 4px solid #9fafce;
    padding: 0 9px;
    margin-bottom: 20px;
}
.contacts-grid__item-titles h3 {
    font-weight: 600;
    font-size: 18px;
    color: var(--accent-color);
}
.contacts-grid__item-titles h4 {
    font-weight: 400;
    font-size: 16px;
    color: #9fafce;
}
.contacts-grid__item-phone {
    display: flex;
    font-size: 16px;
    line-height: 150%;
    color: #161616;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.contacts-grid__item-phone::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/cg_phone-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.contacts-grid__item-mail {
    display: flex;
    font-size: 16px;
    line-height: 150%;
    color: #161616;
    position: relative;
    padding-left: 30px;
}
.contacts-grid__item-mail::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(/img/icons/cg_mail-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cpg-head-text {
    background-color: var(--accent-background-color);
    text-align: center;
}
.cpg-head-text > div {
    max-width: 1332px;
    margin: 0 auto;
    padding: 0 15px;
}

.cpg-links {
    background-color: var(--accent-background-color);
}
.cpg-links__block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: center;
    padding: 30px 0 70px 0;
}
.cpg-links__link {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 5px 10px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
}
.cpg-links__link img {
    margin-right: 5px;
}
.cpg-links__link:hover {
    color: #fff;
    background-color: var(--accent-color);
}
.cpg-links__link.cpg-links__link--active {
    color: #fff;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
}
.cpg-links__link.cpg-links__link--env {
    column-gap: 10px;
    /* background-color: var(--accent-color); */
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/*.cpg-links__link.cpg-links__link--env {
     background-color: var(--accent-color);
    color: #fff;
}*/
.cpg-links__link.cpg-links__link--env img {
    filter: invert();
}
.cpg-links__link.cpg-links__link--env.cpg-links__link--active img {
    filter: none;
}

.cpg-links__link.cpg-links__link--env .leaf {
    fill: var(--accent-color-2);
    transition: 0.3s ease;
}
.cpg-links__link.cpg-links__link--env:hover {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
    color: #fff;
}
.cpg-links__link.cpg-links__link--env:hover .leaf {
    fill: #fff;
}
.cpg-links__link.cpg-links__link--env.cpg-links__link--active {
    background-color: var(--accent-color-2);
    border-color: var(--accent-color-2);
    color: #fff;
}
.cpg-links__link.cpg-links__link--env.cpg-links__link--active .leaf {
    fill: #fff;
}

/* .cg-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #e5e5e5;
}
.cg-table__thead-global {
    background-color: var(--accent-color);
    color: #fff;
    text-align: center;
}
.cg-table__thead-global th {
    padding: 15px;
}
.cg-table__thead-subhead {
    background-color: #9fafce;
    color: #fff;
}
.cg-table__thead-subhead th {
    padding: 15px;
}
.cg-table__thead-subhead th:not(:last-of-type) {
    border-right: 1px solid #e5e5e5;
}
.cg-table__thead-bold {
    font-weight: bold;
}
.cg-table__thead-bold th {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e5e5;
}
.cg-table__thead-bold th:not(:last-of-type) {
    border-right: 1px solid #e5e5e5;
}
.cg-table__tr:nth-child(odd) {
    background-color: #fafafa;
}
.cg-table__tr td {
    padding: 12px 15px;
}
.cg-table__tr td:not(:last-of-type) {
    border-right: 1px solid #e5e5e5;
}
.cg-table__footer {
    border-top: 1px solid #e5e5e5;
}
.cg-table__footer td {
    padding: 24px 30px;
    background-color: #fafafb;
} */

.cg-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #e5e5e5;
    margin-bottom: 25px;
    font-size: clamp(12px, 1.5vw, 18px);
}
/* table head */

.cg-table thead:nth-child(1) {
    background-color: var(--accent-color);
    color: #fff;
    text-align: center;
}
.cg-table thead:nth-child(1) th {
    padding: 15px;
}
.cg-table thead:nth-child(2) {
    background-color: #9fafce;
    color: #fff;
}
.cg-table thead:nth-child(2) th {
    padding: 15px;
}
.cg-table thead:nth-child(2) th:not(:last-of-type) {
    border-right: 1px solid #e5e5e5;
}
.cg-table thead:nth-child(3) {
    font-weight: bold;
}
.cg-table thead:nth-child(3) th {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e5e5;
}
.cg-table thead:nth-child(3) th:not(:last-of-type) {
    border-right: 1px solid #e5e5e5;
}

/* table body */
.cg-table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}
.cg-table tbody tr:nth-child(even) {
    background-color: #fff;
}
.cg-table tbody tr td {
    padding: 12px 15px;
}
.cg-table tbody tr td:not(:last-of-type) {
    border-right: 1px solid #e5e5e5;
}

/* table footer */
.cg-table tfoot {
    border-top: 1px solid #e5e5e5;
}
.cg-table tfoot td {
    padding: 24px 30px;
    background-color: #fafafb;
}

.certificates-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 30px;
    margin-bottom: 30px;
}
@media (max-width: 500px) {
    .certificates-block__grid {
        grid-template-columns: 100%;
    }
}
.certificates-block__grid-item {
    display: flex;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
.certificates-block__grid-item__link {
    display: flex;
    flex: 1 0 100%;
    max-width: 115px;
}
.certificates-block__grid-item__link > img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
.certificates-block__grid-item__ttl {
    margin-bottom: 10px;
}

.related-products__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
.related-products__head .title,
.related-products__head .title.title--small {
    margin: 0;
}
.related-products__head .btn {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    white-space: nowrap;
}
.related-products__swiper {
    position: relative;
    margin-top: 30px;
    padding: 0 42px;
}
.related-products-swiper {
    overflow: hidden;
}
.related-products__arrow {
    width: 52px;
    height: 52px;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #1f1f1f;
    border-radius: 50%;
    background: #ffffff;
    color: #1f1f1f;
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.14);
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease,
        box-shadow 0.25s ease;
}
.related-products__arrow::after {
    font-size: 18px;
    font-weight: 700;
}
.related-products__arrow:hover {
    background: #1f1f1f;
    border-color: #1f1f1f;
    color: #ffffff;
    box-shadow: 0px 14px 30px rgba(0, 0, 0, 0.2);
}
.related-products__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}
.related-products__arrow--prev {
    left: 0;
}
.related-products__arrow--next {
    right: 0;
}
@media (max-width: 767px) {
    .related-products__swiper {
        padding: 0 34px;
    }
    .related-products__arrow {
        width: 42px;
        height: 42px;
    }
    .related-products__arrow::after {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .related-products__swiper {
        padding: 0 26px;
    }
    .related-products__arrow {
        width: 34px;
        height: 34px;
    }
    .related-products__arrow::after {
        font-size: 12px;
    }
}
.related-products__product {
    display: block;
    width: 100%;
    max-width: 315px;
}
.related-products__product-media {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 65.08%;
    margin-bottom: 15px;
    overflow: hidden;
}
.related-products__product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.related-products__product-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
}

.question-block {
    background-image: url(/img/backgrounds/cg_questions-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}
.question-block__wrapper {
    padding: 0 5%;
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    -moz-column-gap: 100px;
    column-gap: 100px;
    justify-content: center;
    align-items: center;
    align-self: center;
}
.question-block__wrapper h2 {
    font-weight: 300;
    font-size: clamp(20px, 4vw, 46px);
    line-height: 120%;
    color: #ffffff;
}
.question-block__wrapper .btn {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .question-block__wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }
    .question-block__wrapper div {
        margin-bottom: 30px;
    }
    .question-block__wrapper h2 {
        font-size: clamp(20px, 4vw, 46px);
    }
}

.products-grid-wrapper {
    padding: 40px 0;
}

.products-grid {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding-inline: var(--container-padding);
}
.products-grid:after {
    content: '';
    display: block;
    clear: both;
}
.products-grid__sizer,
.products-grid__item {
    width: 100%;
    max-width: 300px;
}
.products-grid__item {
    float: left;
    margin-bottom: 40px;
    height: 300px;
}
.products-grid__item > img {
    width: 100%;
    height: 100%;
    max-height: 219px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 10px;
}
.products-grid__item h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}

.grid-item img {
    display: block;
    max-width: 100%;
}

/* [FANCYBOX PRODUCTS START] */
a[data-fancybox] img {
    cursor: zoom-in;
}

.fancybox__container {
    --fancybox-color: #333;
    display: flex;
    flex-direction: row;
}

.fancybox__toolbar {
    position: relative;
    padding: 0;
    background: rgba(255, 255, 255, 0.288);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid #edeef0;
    text-shadow: none;
    font-weight: 400;
    --carousel-button-svg-stroke-width: 1.75;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
}

.fancybox__slide {
    padding-top: 8px;
    padding-bottom: 8px;
}

.fancybox__leftCol {
    width: 80vw;
    max-width: 1200px;
    margin: 0 auto;
    height: 80vh;
    min-height: 1px;
    margin: auto auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    transition: 0.3s ease;
}

/* Opening */
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__leftCol {
    -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
    animation: 0.15s ease backwards fancybox-fadeIn;
}

/* Closing */
.fancybox__container.is-animated.is-closing .fancybox__leftCol {
    -webkit-animation: 0.15s ease both fancybox-fadeOut;
    animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox__container.is-animated.is-closing .fancybox__leftCol {
    overflow: visible;
}

/* [FANCYBOX PRODUCTS END] */
/* [MAIN CSS START] */
.text-center {
    text-align: center;
}

.container {
    margin: 0 auto;
    max-width: var(--page-max-width);
}
.container.container--block {
    display: block;
    margin: 0;
}
.container--mar-b-80 {
    margin-bottom: var(--container-margin-bottom);
}

.pa-inline {
    padding-inline: var(--container-padding);
}

.pa-block {
    padding-block: var(--container-block-padding);
}

.font-accent {
    color: var(--accent-color);
}

.bg-accent {
    background-color: var(--accent-background-color);
}

input.error {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}

input,
select,
textarea {
    border: none;
    padding: 15px;
    width: 100%;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #eee;
    border: 1px solid #bdbdbd;
    opacity: 0.8;
}

.title {
    font-weight: 300;
    font-size: clamp(35px, 3vw, 46px);
    line-height: 120%;
    color: var(--accent-color);
    position: relative;
    margin-bottom: 50px;
}
/* .title.title--underline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: currentColor;
} */
.title.title--small {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    font-size: clamp(18px, 3vw, 28px);
    margin-bottom: 35px;
}
.title.title--normal {
    font-size: clamp(25px, 3vw, 45px);
}
.title.title--large {
    font-size: clamp(36px, 3vw, 60px);
}
.title.title--center {
    text-align: center;
}
.title.title--center:after {
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    color: #fff;
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
    padding: 15px;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn:hover {
    border: 1px solid var(--accent-dark-color);
    background: var(--accent-dark-color);
    box-shadow: 0 10px 10px -5px rgba(255, 255, 255, 0.3);
}

.btn.btn--flex {
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.btn.btn--transparent {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 15px 20px;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--transparent:hover {
    background: var(--accent-color);
    color: var(--color-white);
}

.btn.btn--small {
    font-size: 18px;
    padding: 10px 15px;
}

.btn.btn--bold {
    font-weight: 600;
}

.btn.btn--color-black,
.btn.btn--transparent.btn--color-black {
    color: #000;
    border-color: #000;
}
.btn.btn--color-black:hover,
.btn.btn--transparent.btn--color-black:hover {
    background: var(--accent-dark-color);
    color: #fff;
}

.btn.btn--color-white,
.btn.btn--transparent.btn--color-white {
    color: #fff;
    border-color: #fff;
}
.btn.btn--color-white:hover,
.btn.btn--transparent.btn--color-white:hover {
    background: var(--accent-dark-color);
    color: #fff;
}

.btn.btn--dark {
    border: 1px solid var(--accent-dark-color);
    color: #fff;
    background: var(--accent-dark-color);
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.btn.btn--dark:hover {
    background: var(--accent-color-2);
    color: var(--color-white);
    border: 1px solid var(--accent-color);
}

.btn.btn--disabled {
    background: #ccc;
    color: #fff;
    border: 1px solid #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.btn.btn--loading {
    position: relative;
    pointer-events: none;
}
.btn.btn--loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1em;
    height: 1em;
    -webkit-animation:
        load6 1.7s infinite ease,
        round 1.7s infinite ease;
    animation:
        load6 1.7s infinite ease,
        round 1.7s infinite ease;
}
.btn.btn--loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-dark-color);
}

@-webkit-keyframes load6 {
    0% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            0 -0.83em 0 -0.42em,
            0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            0 -0.83em 0 -0.42em,
            0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            -0.087em -0.825em 0 -0.42em,
            -0.173em -0.812em 0 -0.44em,
            -0.256em -0.789em 0 -0.46em,
            -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            -0.338em -0.758em 0 -0.42em,
            -0.555em -0.617em 0 -0.44em,
            -0.671em -0.488em 0 -0.46em,
            -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            -0.377em -0.74em 0 -0.42em,
            -0.645em -0.522em 0 -0.44em,
            -0.775em -0.297em 0 -0.46em,
            -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            0 -0.83em 0 -0.42em,
            0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
}
@keyframes load6 {
    0% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            0 -0.83em 0 -0.42em,
            0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            0 -0.83em 0 -0.42em,
            0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            -0.087em -0.825em 0 -0.42em,
            -0.173em -0.812em 0 -0.44em,
            -0.256em -0.789em 0 -0.46em,
            -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            -0.338em -0.758em 0 -0.42em,
            -0.555em -0.617em 0 -0.44em,
            -0.671em -0.488em 0 -0.46em,
            -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            -0.377em -0.74em 0 -0.42em,
            -0.645em -0.522em 0 -0.44em,
            -0.775em -0.297em 0 -0.46em,
            -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow:
            0 -0.83em 0 -0.4em,
            0 -0.83em 0 -0.42em,
            0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em,
            0 -0.83em 0 -0.477em;
    }
}
@-webkit-keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes round {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.line-clamp {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
    height: 1.2em;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    height: 2.4em;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
    height: 3.6em;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
    height: 4.8em;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
    height: 6em;
}

/* End required CSS. */
.fancybox__main-panel {
    flex: 0 0 auto;
    min-height: 0;
    max-width: 1100px;
    margin: auto;
    position: relative;
    display: block;
    background-color: #f5f6f7;
}
.fancybox__main-panel .fancybox__slide {
    padding: 0;
    background-color: #f5f6f7;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 150px;
}
.fancybox__main-panel .fancybox__slide::before,
.fancybox__main-panel .fancybox__slide::after {
    content: none;
}
.fancybox__main-panel .fancybox__carousel .fancybox__slide .fancybox__content {
    background-color: #f5f6f7;
    height: 70vh;
}
.fancybox__main-panel .fancybox__carousel .fancybox__image {
    display: block;
    margin: 30px auto;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: auto;
    height: 100%;
    max-width: 100%;
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
}
.fancybox__main-panel .fancybox__caption {
    color: #000;
    padding: 20px;
    background-color: #f5f6f7;
    overflow: auto;
}
.fancybox__main-panel .carousel__button svg {
    width: 50px;
    height: 70px;
}
.fancybox__main-panel .carousel__button.is-close {
    border: 2px solid #828282;
}
.fancybox__main-panel .carousel__button.is-close svg {
    width: 20px;
    height: 20px;
    color: #828282;
}
.fancybox__main-panel .fancybox__caption-panel {
    color: #222;
    background: #f5f6f7;
    overflow: auto;
    padding: 3rem;
}
.fancybox__main-panel .fancybox__spinner {
    color: #222;
}
.fancybox__main-panel .fancybox__carousel {
    overflow: hidden;
    margin: 0;
    background: #f9fafb;
}
.fancybox__main-panel .carousel__button.is-close {
    top: 8px;
    right: 8px;
}
.fancybox__main-panel .fancybox__carousel .carousel__dots {
    top: calc(100% - 22px);
    color: #fff;
    z-index: 20;
}

/* [Pretty checkbox adjustments start] */
.pretty {
    white-space: normal;
}
.pretty .state label {
    text-indent: 0;
    padding-left: 31px;
}
.pretty .state label:after,
.pretty .state label:before {
    top: 0;
    background-color: #fff;
    border: none;
}
.pretty input:checked ~ .state.p-primary label:after {
    background-color: var(--accent-dark-color) !important;
}

/* [Pretty checkbox adjustments end] */
/* [TABS MODULE START] */
.tabs-module__tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 18px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .tabs-module__tabs {
        flex-direction: column;
        -moz-column-gap: 0;
        column-gap: 0;
        row-gap: 25px;
        margin-bottom: 0;
    }
}
.tabs-module__tab {
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    color: var(--accent-color);
    background: none;
    padding: 5px 10px;
    border: 1px solid var(--accent-color);
    cursor: pointer;
    position: relative;
}
.tabs-module__tab.tabs-module__tab--active {
    background-color: var(--accent-color);
    color: #fff;
}
.tabs-module__tab.tabs-module__tab--active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(50deg) skew(15deg);
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    z-index: -1;
    transition: 0.3s ease;
}
.tabs-module__tab-content {
    padding: 25px 0;
}
.tabs-module__tab-content-item {
    display: none;
    transition: 0.3s ease;
}
.tabs-module__tab-content-item.tabs-module__tab-content-item--active {
    display: block;
}

.process-kettle,
.process-steps {
    padding-top: 10px;
}

.process-kettle__top-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-kettle__top-card {
    min-height: 128px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.process-kettle__top-card--primary {
    background: #193155;
    color: #fff;
}

.process-kettle__top-card--tone-1 {
    background: rgba(25, 49, 85, 0.8);
    color: #fff;
}

.process-kettle__top-card--tone-2 {
    background: rgba(25, 49, 85, 0.6);
    color: #fff;
}

.process-kettle__top-card--tone-3 {
    background: rgba(25, 49, 85, 0.4);
    color: #111;
}

.process-kettle__top-card--tone-4 {
    background: rgba(25, 49, 85, 0.2);
    color: #111;
}

.process-kettle__top-title {
    margin: 0;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.process-kettle__top-link {
    margin-top: 18px;
    color: inherit;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.process-kettle__bottom-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: stretch;
}

.process-kettle__plants {
    background: #eee;
    padding: 54px 58px 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-kettle__plant-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.process-kettle__plant-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.process-kettle__contact-card {
    background: #ddd9d9;
    display: flex;
    flex-direction: column;
}

.process-kettle__contact-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 316px;
    object-fit: cover;
}

.process-kettle__contact-body {
    padding: 38px 46px 42px;
}

.process-kettle__contact-item {
    display: grid;
    grid-template-columns: 22px 130px minmax(0, 1fr);
    column-gap: 20px;
    align-items: center;
    min-height: 30px;
}

.process-kettle__contact-item:not(:last-of-type) {
    margin-bottom: 30px;
}

.process-kettle__contact-item::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    align-self: center;
}

.process-kettle__contact-item--pin::before {
    background-image: url(/img/icons/cg_pin-icon.svg);
}

.process-kettle__contact-item--phone::before {
    background-image: url(/img/icons/cg_phone-icon.svg);
}

.process-kettle__contact-item--mail::before {
    background-image: url(/img/icons/cg_mail-icon.svg);
}

.process-kettle__contact-label {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
    text-transform: uppercase;
    color: #111;
    align-self: center;
}

.process-kettle__contact-value {
    font-size: 16px;
    line-height: 1.5;
    color: #4b4b4b;
    align-self: start;
}

.process-kettle__contact-note {
    margin: 42px 0 0;
    font-size: 16px;
    line-height: 1.55;
    color: #767676;
    font-style: italic;
}

@media (max-width: 700px) {
    .process-kettle__contact-item {
        grid-template-columns: 18px 1fr;
        row-gap: 4px;
        column-gap: 16px;
    }

    .process-kettle__contact-label,
    .process-kettle__contact-value {
        grid-column: 2;
    }

    .process-kettle__contact-item:not(:last-of-type) {
        margin-bottom: 22px;
    }

    .process-kettle__contact-item::before {
        width: 18px;
        height: 18px;
    }
}

.process-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 42px;
    align-items: start;
}

.process-steps__accent-card {
    min-height: 190px;
    padding: 34px 36px;
    background: #193155;
    color: #fff;
    display: flex;
    align-items: flex-start;
}

.process-steps__accent-title {
    margin: 0;
    font-weight: 600;
    font-size: clamp(26px, 2vw, 32px);
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.process-steps__item {
    min-height: 190px;
}

.process-steps__number {
    width: 40px;
    height: 40px;
    margin-bottom: 22px;
    background: #b4c0d8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 21px;
    line-height: 1;
}

.process-steps__title {
    margin: 0 0 16px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.35;
    color: #111;
}

.process-steps__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.process-steps__image-wrap {
    margin-top: 44px;
    text-align: center;
}

.process-steps__image {
    display: inline-block;
    width: 100%;
    max-width: 1360px;
    height: auto;
}

@media (max-width: 1200px) {
    .process-kettle__top-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-kettle__bottom-grid {
        grid-template-columns: 1fr;
    }

    .process-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .process-kettle__top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-kettle__plants {
        padding-inline: 30px;
    }

    .process-kettle__contact-body {
        padding: 30px;
    }

    .process-steps__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .process-kettle__top-grid {
        grid-template-columns: 1fr;
    }

    .process-kettle__top-card {
        min-height: auto;
    }

    .process-kettle__plants {
        padding: 26px 20px;
    }

    .process-kettle__contact-body {
        padding: 24px 20px 28px;
    }

    .process-kettle__contact-item {
        padding-left: 42px;
    }

    .process-steps__accent-card,
    .process-steps__item {
        min-height: auto;
    }

    .process-steps__accent-card {
        padding: 26px 22px;
    }
}

/* [TABS MODULE END] */
/* [UNORDERED LIST START] */
.unordered-list {
    list-style: none;
    display: grid;
    grid-template-columns: 100%;
    -moz-column-gap: 90px;
    column-gap: 90px;
    row-gap: 25px;
    margin-bottom: 35px;
}
.unordered-list.unordered-list--2col {
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
    .unordered-list.unordered-list--2col {
        grid-template-columns: 1fr;
    }
}
.unordered-list.unordered-list--3col {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    margin-bottom: 0;
    margin-top: 30px;
    row-gap: 15px;
}
@media (max-width: 768px) {
    .unordered-list.unordered-list--3col {
        grid-template-columns: 1fr;
    }
}
.unordered-list.unordered-list--no-row-gap {
    row-gap: 15px;
}
.unordered-list.unordered-list--row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 35px;
}
.unordered-list__item {
    padding-left: 30px;
    position: relative;
}
.unordered-list__item a {
    color: #000;
}
.unordered-list__item:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: var(--accent-color);
}
.unordered-list__item-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: var(--accent-color);
}
.unordered-list__item-text {
    font-size: 16px;
    line-height: 150%;
}
.unordered-list.unordered-list--green > .unordered-list__item:before {
    background-color: var(--accent-color-2);
}

/* [UNORDERED LIST END] */
/* [ORDERED LIST START] */
.numbered-list {
    list-style: none;
    display: grid;
    grid-template-columns: 100%;
    -moz-column-gap: 90px;
    column-gap: 90px;
    row-gap: 25px;
    margin-bottom: 35px;
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.numbered-list.numbered-list--small {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.numbered-list__item {
    padding-left: 70px;
    position: relative;
}
.numbered-list__item-number {
    position: absolute;
    top: 5px;
    left: 0;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 29px;
}
.numbered-list__item-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 15px;
    color: var(--accent-color);
}
.numbered-list__item-text {
    font-size: 16px;
    line-height: 150%;
}

/* [ORDERED LIST END] */
/* [POINTS GRID START] */
.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(530px, 1fr));
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #bdbdbd;
}
@media (max-width: 768px) {
    .points-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
.points-grid__item {
    width: 100%;
}
.points-grid__item h2 {
    font-weight: 300;
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* [POINTS GRID END] */
.divider {
    border: none;
    border-bottom: 1px solid #bdbdbd;
}

/* [MAIN CSS END] */

.home-slider .swiper-slide {
    height: auto; /* Базовая высота для расчета */
    overflow: hidden;
}

.home-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Для корректного отображения изображений */
}

@media (max-width: 768px) {
    .home-slider .swiper-slide {
        height: auto; /* Позволяем скрипту задавать высоту */
    }
}
