html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
}

body {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #333;
}

main {
    overflow-x: hidden;
}

.wrapper_inner:has(.hero):has(.why-us),
.middle>.container:has(.hero):has(.why-us) {
    max-width: 100% !important;
    padding: 0 !important;
}

.middle>.container:has(.hero):has(.why-us) .wrapper {
    overflow-x: hidden;
    position: relative;
}

/* start container */
.container {
    max-width: 1654px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px !important;
}

.middle>.container:has(.hero):has(.why-us) #navigation,
.middle>.container:has(.hero):has(.why-us) #pagetitle {
    max-width: 1208px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px !important;
}

.middle>.container:has(.hero):has(.why-us) #pagetitle {
    margin-bottom: 25px;
}

@media screen and (min-width: 1620px) {

    .middle>.container:has(.hero):has(.why-us) #navigation,
    .middle>.container:has(.hero):has(.why-us) #pagetitle {
        max-width: 1608px;
    }
}

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

    .container {
        max-width: 1336px !important;
    }
}

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

    .container {
        max-width: 1190px !important;
    }
}

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

    .container {
        max-width: 990px !important;
    }
}

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

    .container {
        max-width: 672px !important;
    }
}

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

    .container {
        max-width: 100% !important;
    }
}

/* END container */
/* start btn-project */
.btn-project {
    height: 64px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Wuerth";
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    transition: 0.3s;
    cursor: pointer;
}

.btn-project--primary {
    color: #fff;
    background-color: #cc0000;
}

.btn-project--secondary {
    color: #383838;
    background-color: #fff;
}

.btn-project svg {
    transition: 0.3s;
}

.btn-project:hover svg {
    transform: translateX(5px);
}

@media screen and (max-width: 990px) {
    .btn-project {
        height: 52px;
        padding: 20px 24px;
    }
}

@media screen and (max-width: 600px) {
    .btn-project {
        height: 48px;
    }
}

/* AND btn-project */
/* start margin-bottom-120 */
.margin-bottom-120 {
    margin-bottom: 120px;
}

@media screen and (max-width: 1190px) {
    .margin-bottom-120 {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 600px) {
    .margin-bottom-120 {
        margin-bottom: 50px;
    }
}

/* AND margin-bottom-120 */
/* start hero */
.hero {
    background-image: url("../img/hero_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 230px 0;
}

.hero__title,
.hero__title span {
    margin-bottom: 24px;
    text-align: center;
    font-family: "Wuerth Extra Bold Cond";
    font-weight: 800;
    font-size: 72px;
    line-height: 117%;
    color: #fff;
}

.hero__title span {
    color: #cc0000;
}

.hero__text {
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #fff;
}

.hero__btns {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

@media screen and (max-width: 1190px) {
    .hero__wrapper {
        padding: 130px 0;
    }

    .hero__title,
    .hero__title span {
        font-size: 54px;
    }
}

@media screen and (max-width: 990px) {
    .hero__wrapper {
        padding: 80px 0;
    }

    .hero__title,
    .hero__title span {
        font-size: 48px;
    }

    .hero__btns {
        gap: 24px;
    }
}

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

    .hero__title,
    .hero__title span {
        font-size: 32px;
    }

    .hero__text {
        font-size: 18px;
    }

    .hero__btns {
        flex-direction: column;
        gap: 18px;
        margin-top: 30px;
    }
}

/* AND hero */
/* start why-us */
.why-us__wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 12px;
}

.why-us__picture {
    line-height: 0;
}

.why-us__content {
    padding-left: 32px;
    background-color: #fff;
}

.why-us__title,
.why-us__title span {
    margin-bottom: 32px;
    text-transform: uppercase;
    font-family: "Wuerth Extra Bold Cond";
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #222222;
}

.why-us__title span {
    color: #cc0000;
}

.why-us__text {
    margin-bottom: 32px;
    font-size: 16px;
    color: #222;
}

.why-us__text p:not(:last-child) {
    margin-bottom: 10px;
}

.why-us__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Wuerth";
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #cc0000;
}

.why-us__link svg {
    transition: 0.3s;
}

.why-us__link:hover svg {
    transform: translateX(5px);
}

@media screen and (max-width: 1190px) {
    .why-us__wrapper {
        max-width: 100%;
    }

    .why-us__title,
    .why-us__title span {
        font-size: 34px;
    }
}

@media screen and (max-width: 990px) {
    .why-us__wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
    }

    .why-us__content {
        position: unset;
        transform: none;
    }

    .why-us__picture {
        max-width: 100%;
    }

    .why-us__content {
        max-width: 100%;
        padding: 0;
    }
}

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

    .why-us__title,
    .why-us__title span {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .why-us__text {
        margin-bottom: 24px;
        font-size: 14px;
    }
}

/* AND why-us */
/* start catalog-cards */
.catalog-cards__body {
    background-color: #f4f5f5;
}

.catalog-cards__top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 24px;
    background-color: #222222;
}

.catalog-cards__top--reverse {
    direction: rtl;
}

.catalog-cards__top--reverse>* {
    direction: ltr;
}

.catalog-cards__top--reverse .catalog-cards__content {
    padding-left: 0;
    padding-right: 60px;
}

.catalog-cards__top--reverse .catalog-cards__content:after {
    left: unset;
    right: -120px;
}

.catalog-cards__top--reverse .catalog-cards__picture img {
    object-position: left;
}

.catalog-cards__picture {
    line-height: 0;
}

.catalog-cards__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.catalog-cards__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-left: 60px;
    overflow: hidden;
}

.catalog-cards__content:after {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    height: 100%;
    width: 490px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDA5IiBoZWlnaHQ9IjQ0NiIgdmlld0JveD0iMCAwIDQwOSA0NDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIG9wYWNpdHk9IjAuMDUiIGQ9Ik00MDcuNzc1IDE3NC43MzRIMFYwSDE3MC4yMTNWNjguNDI3NEgyMzguNzg3VjBINDA5VjE3NC43MzRINDA3Ljc3NVpNMjM3LjU2MyAzNzcuNTczVjQ0NkMzMzUuNTI3IDQyNy42NzEgNDA3Ljc3NSAzNDMuMzU5IDQwNy43NzUgMjQ4LjA0OVYyNDQuMzg0SDBWMjQ4LjA0OUMwIDM0Mi4xMzcgNzIuMjQ4NSA0MjYuNDQ5IDE3MC4yMTMgNDQ0Ljc3OFYzNzYuMzUxSDIzNy41NjNWMzc3LjU3M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.catalog-cards__title,
.catalog-cards__title span {
    text-transform: uppercase;
    font-family: "Wuerth Extra Bold Cond";
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #fff;
}

.catalog-cards__desc {
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}

.catalog-cards__wrapper {
    padding: 32px 32px 56px;
}

.catalog-cards__tabs {
    position: relative;
}

.catalog-cards__tabs-wrap {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.catalog-cards__tabs-header {
    display: flex;
    align-items: center;
    gap: 32px;
}

.catalog-cards__tabs-item {
    position: relative;
    text-transform: uppercase;
    font-family: "Wuerth Extra Bold Cond";
    font-weight: 800;
    font-size: 16px;
    line-height: 100%;
    color: #222222;
    transition: 0.3s;
    cursor: pointer;
}

.catalog-cards__tabs-item.active {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 24px;
    transition: 0.3s;
}

.catalog-cards__tabs-item.active:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #cc0000;
}

.catalog-cards__tabs-content:not(.active) {
    display: none;
}

.catalog-cards__slider-navigation {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-content: center;
    gap: 12px;
}

.catalog-cards__slider-navigation:has(.catalog-cards__slider-navigation-prev.swiper-button-disabled):has(.catalog-cards__slider-navigation-next.swiper-button-disabled) {
    display: none;
}

.catalog-cards__slider-navigation-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    cursor: pointer;
}

.catalog-cards__slider-navigation-btn svg {
    transition: 0.3s;
}

.catalog-cards__slider-navigation-btn.swiper-button-disabled svg {
    opacity: 0.2;
}

@media screen and (max-width: 1190px) {
    .catalog-cards__top {
        gap: 30px;
    }

    .catalog-cards__top--reverse .catalog-cards__content {
        padding-left: 0;
        padding-right: 30px;
    }

    .catalog-cards__content {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 30px;
    }

    .catalog-cards__title,
    .catalog-cards__title span {
        font-size: 34px;
    }
}

@media screen and (max-width: 990px) {
    .catalog-cards__top {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .catalog-cards__content {
        padding: 30px !important;
    }

    .catalog-cards__content:after {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .catalog-cards__top {
        margin-bottom: 0;
    }

    .catalog-cards__content {
        padding: 24px !important;
    }

    .catalog-cards__content:after {
        width: 100%;
    }

    .catalog-cards__title,
    .catalog-cards__title span {
        font-size: 28px;
    }

    .catalog-cards__desc {
        font-size: 14px;
    }

    .catalog-cards__wrapper {
        padding: 24px;
    }

    .catalog-cards__tabs-wrap {
        margin-bottom: 24px;
    }

    .catalog-cards__tabs-header {
        width: 100%;
        flex-direction: column;
        gap: 18px;
    }

    .catalog-cards__tabs-item {
        text-align: center;
    }

    .catalog-cards__tabs-content {
        position: relative;
        padding-bottom: 60px;
    }

    .catalog-cards__slider-navigation {
        top: unset;
        right: unset;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .catalog-cards__slider-navigation-btn {
        width: 40px;
        height: 40px;
    }
}

/* AND catalog-cards */
/* start catalog-card-item */
.catalog-card-item {
    padding: 0 12px 32px;
    border: 1px solid #f4f5f5;
    background-color: #fff;
}

.catalog-card-item__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalog-card-item__picture {
    height: 250px;
    line-height: 0;
}

.catalog-card-item__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-card-item__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.catalog-card-item__title {
    text-align: center;
    text-transform: uppercase;
    font-family: "Wuerth";
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    color: #222;
}

.catalog-card-item__desc {
    min-height: 56px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #222;
}

.catalog-card-item__link {
    max-width: 290px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    font-family: "Wuerth";
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #cc0000;
}

.catalog-card-item__link svg {
    transition: 0.3s;
}

.catalog-card-item__link:hover svg {
    transform: translateX(5px);
}

@media screen and (max-width: 1190px) {
    .catalog-card-item__title {
        font-size: 28px;
    }
}

@media screen and (max-width: 600px) {
    .catalog-card-item__body {
        gap: 12px;
    }

    .catalog-card-item__title {
        font-size: 24px;
    }
}

/* AND catalog-card-item */
/* start projects */
.projects__wrapper {
    display: flex;
    gap: 12px;
}

.projects__left {
    flex: 0 1 924px;
    min-width: 0;
}

.projects__right {
    flex: 0 1 670px;
    min-width: 0;
    padding-top: 60px;
}

.projects__picture {
    line-height: 0;
}

.projects__maket {
    position: relative;
    width: calc(100% + 138px);
    margin-top: 12px;
    line-height: 0;
}

.projects__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 56px;
    padding: 0 32px;
    background-color: #fff;
}

.projects__title,
.projects__title span {
    text-transform: uppercase;
    font-family: "Wuerth Extra Bold Cond";
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #333;
}

.projects__title span {
    color: #cc0000;
}

.projects__desc {
    font-size: 16px;
    line-height: 150%;
    color: #222;
}

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

    .projects__title,
    .projects__title span {
        font-size: 34px;
    }
}

@media screen and (max-width: 990px) {
    .projects__wrapper {
        flex-direction: column-reverse;
    }

    .projects__left,
    .projects__right {
        flex: 0 1 auto;
    }

    .projects__right {
        padding-top: 0;
    }

    .projects__right .projects__picture {
        height: 370px;
    }

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

    .projects__maket {
        width: 100%;
    }

    .projects__content {
        margin-bottom: 24px;
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .projects__content {
        gap: 24px;
    }

    .projects__title,
    .projects__title span {
        font-size: 28px;
    }

    .projects__desc {
        font-size: 14px;
    }
}

/* AND projects */
/* start documentation */
.documentation {
    padding: 100px 0;
    background-color: #f4f5f5;
}

.documentation__wrapper {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.documentation__left {
    z-index: 1;
    position: relative;
    flex: 0 1 942px;
    min-width: 0;
    padding-top: 99px;
}

.documentation__right {
    flex: 0 1 673px;
    min-width: 0;
}

.documentation__content {
    max-width: 71%;
    width: 100%;
    margin-bottom: 85px;
    padding: 32px;
    padding-left: 0;
    background-color: #f4f5f5;
}

.documentation__title,
.documentation__title span {
    margin-bottom: 32px;
    text-transform: uppercase;
    font-family: "Wuerth Extra Bold Cond";
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #333;
}

.documentation__title span {
    color: #cc0000;
}

.documentation__desc,
.documentation__list {
    font-size: 16px;
    line-height: 150%;
    color: #222;
}

.documentation__desc {
    margin-bottom: 12px;
}

.documentation__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.documentation__list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.documentation__list li:before {
    content: "";
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguOTk5MDYgMjAuNDE5OUwyLjc4OTA2IDE0LjIwOTlMNS42MTkwNiAxMS4zNzk5TDguOTk5MDYgMTQuNzY5OUwxOC44NzkxIDQuODc5ODhMMjEuNzA5MSA3LjcwOTg4TDguOTk5MDYgMjAuNDE5OVoiIGZpbGw9IiNDQzAwMDAiLz4KPC9zdmc+Cg==");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.documentation__picture {
    position: relative;
    left: -269px;
    width: calc(100% + 269px);
    margin-bottom: 12px;
    line-height: 0;
}

.documentation__code {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 24px;
    font-size: 24px;
    line-height: 133%;
    color: #fff;
    background-color: #cc0000;
}

.documentation__code img {
    flex: 0 0 auto;
}

.documentation__slider-wrapper {
    gap: 24px;
}

.documentation__slider-item {
    flex-shrink: 1;
    width: auto;
    height: auto;
    padding: 23px 16px;
    padding: 0;
    background-color: #fff;
}

@media screen and (max-width: 1440px) {
    .documentation__content {
        max-width: 64%;
        margin-bottom: 56px;
    }
}

@media screen and (max-width: 1190px) {
    .documentation {
        padding: 50px 0;
    }

    .documentation__wrapper {
        flex-direction: column;
    }

    .documentation__left,
    .documentation__right {
        flex: 0 1 auto;
        width: 100%;
    }

    .documentation__left {
        padding-top: 0;
    }

    .documentation__content {
        max-width: 100%;
        margin-bottom: 24px;
        padding: 0;
    }

    .documentation__picture {
        left: 0;
        width: 100%;
        height: 390px;
    }

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

    .documentation__title,
    .documentation__title span {
        font-size: 34px;
    }

    .documentation__code {
        font-size: 16px;
    }

    .documentation__code img {
        width: 90px;
        height: 90px;
    }
}

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

    .documentation__title,
    .documentation__title span {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .documentation__desc,
    .documentation__list {
        font-size: 14px;
    }

    .documentation__list {
        gap: 8px;
    }

    .documentation__slider-wrapper {
        gap: unset;
    }

    .documentation__slider-item {
        flex-shrink: 0;
    }

    .documentation__slider-item img {
        width: 100%;
    }

    .documentation__code {
        gap: 18px;
        padding: 18px;
    }
}

/* AND documentation */
/* start partners */
.partners__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.partners__title,
.partners__title span {
    text-transform: uppercase;
    font-family: "Wuerth Extra Bold Cond";
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #333;
}

.partners__title span {
    color: #cc0000;
}

.partners__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-family: "Wuerth";
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #cc0000;
}

.partners__link svg {
    transition: 0.3s;
}

.partners__link:hover svg {
    transform: translateX(5px);
}

.partners__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.partners__list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px;
    line-height: 0;
    background-color: #f4f5f5;
}

.partners__links {
    max-width: 84%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 auto;
}

.partners__links-item {
    height: 158px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #222222;
    text-transform: uppercase;
    font-family: "Wuerth";
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    background-color: #ffffff;
    transition: 0.3s;
}

.partners__links-item svg path {
    transition: 0.3s;
}

.partners__links-item:hover {
    color: #fff;
    border-color: #cc0000;
    background-color: #cc0000;
}

.partners__links-item:hover svg path {
    stroke: #fff;
}

@media screen and (max-width: 1190px) {
    .partners__wrapper {
        max-width: 100%;
    }

    .partners__title,
    .partners__title span {
        font-size: 34px;
    }

    .partners__list-item {
        padding: 24px;
    }

    .partners__links-item {
        height: 80px;
        font-size: 20px;
    }
}

@media screen and (max-width: 990px) {
    .partners__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners__links {
        max-width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .partners__top {
        margin-bottom: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .partners__title,
    .partners__title span {
        font-size: 28px;
    }

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

    .partners__list-item {
        min-height: 150px;
    }

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

    .partners__links-item {
        height: 50px;
        font-size: 18px;
    }
}

/* AND partners */
/* start discuss */
.discuss__top {
    margin-bottom: 32px;
}

.discuss__title,
.discuss__title span {
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: "Wuerth Extra Bold Cond";
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #333;
}

.discuss__title span {
    color: #cc0000;
}

.discuss__desc {
    font-size: 16px;
    line-height: 150%;
    color: #222222;
}

.discuss__form-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.discuss__form-col {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.discuss__form-right .discuss__form-row {
    flex: 1;
}

.discuss__form-right .discuss__form-row textarea {
    height: 100%;
}

.discuss__form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.discuss__form-label {
    font-size: 15px;
    color: #000;
}

.discuss__form-label span {
    color: #cc0000;
}

.discuss__form-inp {
    height: 36px;
    width: 100%;
    border: 1px solid #ececec;
    outline: none;
    padding: 0 8px;
    vertical-align: middle;
    font-size: 13px;
    color: #777;
    background-color: #eaeaea;
    resize: none;
}

.discuss__form-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.discuss__form-btn {
    border: none;
    outline: none;
}

@media screen and (max-width: 1190px) {
    .discuss__wrapper {
        max-width: 100%;
    }

    .discuss__title,
    .discuss__title span {
        font-size: 34px;
    }
}

@media screen and (max-width: 600px) {
    .discuss__top {
        margin-bottom: 24px;
    }

    .discuss__title,
    .discuss__title span {
        font-size: 28px;
    }

    .discuss__desc {
        font-size: 14px;
    }

    .discuss__form-wrap {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .discuss__form-right .discuss__form-row textarea {
        height: 100px;
    }

    .discuss__form-col {
        gap: 12px;
    }

    .discuss__form-bottom {
        gap: 24px;
    }
}

/* AND discuss */
/* start c-check */
.c-check {
    display: inline-block;
    cursor: pointer;
}

.c-check__inp {
    display: none;
}

.c-check__inp:checked+.c-check__body>.c-check__box:after {
    opacity: 1;
}

.c-check__body {
    display: flex;
    align-items: center;
    gap: 8px;
}

.c-check__box {
    position: relative;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    border: 1px solid #111820;
}

.c-check__box:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    background-color: #111820;
    opacity: 0;
    transition: 0.3s;
}

.c-check__label {
    font-size: 14px;
    line-height: 140%;
    color: #111820;
}

.c-check__label a {
    text-decoration: underline;
    transition: 0.3s;
}

.c-check__label a:hover {
    text-decoration-color: transparent;
}

@media screen and (max-width: 600px) {
    .c-check__label {
        font-size: 12px;
    }
}

/* AND c-check */
/* start advantages */
.advantages__title,
.advantages__title span {
    margin-bottom: 32px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Wuerth Extra Bold Cond";
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #222222;
}

.advantages__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.advantages__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 44px 20px 20px;
    text-align: center;
}

.advantages__item img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.advantages__item-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #cc0000;
}

.advantages__item-desc {
    font-size: 16px;
    line-height: 150%;
    color: #222222;
}

.advantages__item-desc b {
    font-weight: 700;
}

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

    .advantages__title,
    .advantages__title span {
        font-size: 34px;
    }

    .advantages__list {
        gap: 24px;
    }

    .advantages__item {
        padding: 44px 10px 20px;
    }
}

@media screen and (max-width: 990px) {
    .advantages__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

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

    .advantages__title,
    .advantages__title span {
        margin-bottom: 24px;
        font-size: 28px;
    }

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

    .advantages__item {
        min-height: 150px;
        padding: 20px 0;
    }

    .advantages__item img {
        height: 150px;
    }
}

/* AND advantages */

/* Модальный (фон) */
.modal {
    display: none;
    /* Скрыто по умолчанию */
    position: fixed;
    /* Оставаться на месте */
    z-index: 1;
    /* Сидеть на вершине */
    padding-top: 100px;
    /* Расположение коробки */
    left: 0;
    top: 0;
    width: 100%;
    /* Полная ширина */
    height: 100%;
    /* Полная высота */
    overflow: auto;
    /* Включите прокрутку, если это необходимо */
    background-color: rgb(0, 0, 0);
    /* Цвет запасной вариант  */
    background-color: rgba(0, 0, 0, 0.4);
    /*Черный с непрозрачностью */
}

/* Модальное содержание */
.modal-content.popup {
    display: block;
    left: 0;
    background: #eaeaea;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Добавить анимацию */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* Кнопка закрытия */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-content.popup.show {
    margin: auto !important;
}

.form .form_footer .button+.button {
    margin-left: unset !important;
}

form .form_footer button[type="reset"],
form .form_footer input[type="submit"] {
    width: 100% !important;
}

.discuss__form-error {
    color: #ff4444;
    font-size: 12px;
}

.discuss__form-inp--error {
    border-color: #ff4444 !important;
    background-color: #fff8f8 !important;
}

.discuss__form-success {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.discuss__form-check.c-check input[type="checkbox"].discuss__form-inp--error+.c-check__body {
    border: 1px solid #ff4444;
    border-radius: 3px;
}

a.btn-project.btn-project--primary:hover {
    color: #fff !important;
}

.catalog-cards__desc b {
    color: white;
}

.documentation__slider-item.swiper-slide img {
    min-height: 100%;
}