.bottomBounce {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 300ms ease-out 0.1s, transform 400ms ease-out 0.2s;
}
header,
footer {
    flex: 0 0 auto;
}
.header {
    padding: 16px 0;
    position: relative;
}
.header .container_large {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.header__right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(16px, 3.5vw, 48px)
}
.header-right__phone {
    font-size: clamp(15px, 2vw, 22px);
}
.open-contacts-button {
    display: none;
}
footer {
    background: var(--adition_color_3);
    padding: 30px 0;
}
footer .container_large {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(30px, 5vw, 100px);
}
footer .copyright {
    margin-top: 26px;
}
.footer-right__container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(30px, 5vw, 60px);
}

.pagination {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    justify-content: center;
    align-items: center;
}
.pagination__item {
    width: 10px;
    height: 10px;
    display: block;
    background-color: var(--text_color_2);
    cursor: pointer;
    border-radius: 50%;
    margin: 12px 3px;
}
.pagination__item.pagination__item--active {
    background-color: var(--main_color_1);
}


.section-1 {
    position: relative;
    max-width: 1920px;
}
.section-1__text-container {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 30vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 600px;
}
.section-1__text-container .text1 {
    display: inline-block;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 600;
    color: #fff;
    background: var(--adition_color_1);
    padding: 2px 14px;
}
.section-1__text-container .text2 {
    font-size: clamp(17px, 2.3vw, 24px);
    color: #fff;
    margin-top: 3px;
}
.section-1 .bg-image img {
    width: 100%;
}
.section-1__form-container {
    margin-top: -200px;
    position: relative;
    width: calc(100% - 32px);
    max-width: 840px;
    background: var(--main_color_1);
    padding: 32px clamp(32px, 8vw, 80px);
}
.section-1__form-container .text1 {
    font-weight: 900;
    font-size: clamp(20px, 2vw, 26px);
}
.section-1__form-container .text2 {
    font-size: 15px;
    max-width: 560px;
}
.section-1__form-container .text3 {
    font-size: 15px;
}
.section-1__form-container .text3 a {
    white-space: nowrap;
}
.section-1__form .form__row .message-box.error {
    display: none;
}
.section-1__form-container .form__row_text {
    gap: 8px;
    align-items: center;
}
.section-1__form-container .form__row_text > div {
    margin-bottom: 0;
    width: auto;
}
.section-1__form-container .success-message {
    text-align: center;
    margin-bottom: 30px;
    color: var(--adition_color_2);
}
.section-1__form-container .success-message .text1 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
}
.section-1__form-container .success-message .text2 {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600;
    max-width: none;
}
.section-1__form-container input,
.section-1__form-container textarea {
    border: 2px solid transparent;
    padding: 19px 28px;
}
.section-1__form-container input._error,
.section-1__form-container textarea._error {
    border-color: var(--adition_color_1);
}
.section-1__form-container input._error::placeholder,
.section-1__form-container textarea._error::placeholder {
    color: var(--adition_color_1)
}
.first-form__privacy-policy-container {
    max-width: 630px;
    margin: 12px auto 0
}
.first-form__privacy-policy-container .common-checkbox-label {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}
.first-form__privacy-policy-container .pop-up-form__privacy-policy+label::before {
    width: 16px;
    height: 16px;
    background: transparent;
    border: 3px solid #fff;
}
.first-form__privacy-policy-container .pop-up-form__privacy-policy:checked+label::after {
    width: 8px;
    height: 8px;
    left: 12px;
    border-radius: 0;
}

.section-1__icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.section-1__icons-container .icons-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.section-1__icons-container .icons-item .text {
    margin-left: 22px;
    font-weight: 600;
    font-size: 16px;
}
.section-2 {
    padding: clamp(40px, 7vw, 80px) 0;
}
.section-2__navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    max-width: 1060px;
    margin-bottom: clamp(16px, 3vw, 36px);
}
.section-2__navigation .navigation-item {
    font-weight: 800;
    color: var(--text_color_1);
    border: 2px solid var(--text_color_1);
    padding: 20px 24px;
    padding: clamp(8px, 1.5vw, 20px) clamp(16px, 1.8vw, 24px);
    font-size: clamp(14px, 1.6vw, 16px);
    transition: 0.3s;
    cursor: pointer;
    white-space: nowrap;

}
.section-2__navigation .navigation-item.active,
.section-2__navigation .navigation-item:hover {
    background: var(--text_color_1);
    color: #fff;
}
.section-2__content .content-item {
    display: none;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 25px 40px;
}
.section-2__content .content-item.active {
    display: flex;
}
.section-2__content .content-item_block1 {
    width: calc(57% - 20px);
}
.section-2__content .content-item_block2 {
    width: calc(43% - 20px);
}
.section-2__content .content-item_block3 {
    width: calc(57% - 20px);
    position: relative;
}
.section-2__content .content-item_block4 {
    width: calc(43% - 20px);
}
.section-2__content .content-item .content-item_block1 .heading {
    font-weight: 900;
    font-size: clamp(24px, 2.2vw, 30px);
    margin-bottom: 8px;
}
.section-2__content .content-item .content-item_block1 .text {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: clamp(16px, 3vw, 30px);
}
.section-2__content .content-item .content-item_block1 .order {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}
.section-2__content .content-item .content-item_block1 .order-text {
    font-size: 18px;
}
.section-2__content .content-item .content-item_block1 .price {
    font-size: 20px;
    font-weight: 900;
    color: var(--main_color_1)
}
.section-2__content .content-item .content-item_block2 {
    background: #fff;
    padding: 35px 44px 25px;
}
.section-2__content .content-item .content-item_block2 .heading {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 900;
    margin-bottom: 16px;
}
.section-2__content .content-item .content-item_block2 .table {
    width: 100%;
    max-width: 475px;
    font-size: 15px;
}
.section-2__content .content-item .content-item_block2 .table td {
    padding: 0 8px 8px 0;
    vertical-align: top;
}
.section-2__content .content-item .content-item_block2 .table tr td:nth-child(1) {
    width: 65%;
    padding-right: 20px;
}
.section-2__content .content-item .content-item_block2 .table tr td:nth-child(2) {
    width: 35%;
}
.content-item-block3__slider-container img {
    width: 100%;
}
.content-item_block3>div>div>div {
    height: clamp(300px, 35vw, 535px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0px 1px;
}
div#section9__slider>div>div>div {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 3px;
}
.content-item_block3>div>div>div img,div#section9__slider>div>div>div img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}
.section-2__content .content-item_block3 .siema__prev {
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
    padding: 12px 12px 0 12px;
}
.section-2__content .content-item_block3 .siema__prev img {
    transform: rotate(180deg);
}
.section-2__content .content-item_block3 .siema__next {
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
    padding: 12px 12px 0 12px;
}

.section-2__content .content-item .content-item_block4 {
    background: #fff;
    padding: 35px 44px 20px;
}
.section-2__content .content-item .content-item_block4 .heading {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
}
.section-2__content .content-item .content-item_block4 .table {
    width: 100%;
    font-size: 15px;
}
.section-2__content .content-item .content-item_block4 .table tr td {
    vertical-align: top;
}
.section-2__content .content-item .content-item_block4 .table tr td:nth-child(1) {
    padding: 0 20px 16px 0;
    width: 68%;
}
.section-2__content .content-item .content-item_block4 .table tr td:nth-child(2) {
    color: var(--main_color_1);
}
.section-3__banner-container {
    position: relative;
    max-width: 1200px;
}
.section-3__banner-container .image {
    position: relative;
    z-index: 2;
}
.section-3-banner {
    position: absolute;
    left: 35px;
    top: 25px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    background: var(--adition_color_4) url('/wp-content/uploads/mainpage/section-3-image-2.webp') right bottom no-repeat;
    padding: 47px 30px 44px;
}
.section-3-banner__content {
    width: 100%;
    max-width: 550px;
}
.section-3-banner__content .heading {
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 900;
    color: var(--main_color_1);
    margin-bottom: 8px;
}
.section-3-banner__content .text {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
}



.section-4 .text1 {
    font-size: clamp(24px, 2.5vw, 40px);
    font-weight: 900;
    margin-bottom: 3px;
}
.section-4 .text2 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    margin-bottom: 32px;
}
.section-4__container {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}
.section-4 .section-4__left {
    width: 60%;
}
.section-4-left__item {
    display: flex;
    background-color: var(--adition_color_4);
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
    font-size: 16px;
}
.section-4-left__item .content {
    padding: 10px clamp(10px, 2vw, 32px) 10px clamp(16px, 2.5vw, 44px);
}
.section-4-left__item .content__text-1 {
    font-weight: 900;
    margin-bottom: 4px;
}
.section-4-left__item .content__text-2 {
    font-weight: 400;
}
.section-4__right {
    width: 40%;
    background: var(--main_color_1);
    padding: clamp(27px, 3vw, 44px) clamp(30px, 3vw, 46px) clamp(30px, 4vw, 50px) clamp(32px, 3vw, 50px);
}
.section-4-right__text1 {
    color: #fff;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 900;
    margin-bottom: 8px;
}
.section-4-right__text2 {
    color: #fff;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    margin-bottom: 22px;
}
.section-4-right__phone {
    background-color: #fff;
    color: var(--main_color_1);
    padding: 6px 13px;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.section-4-right__phone span {
    white-space: nowrap;
}
.section-4-right__phone a {
    font-weight: 700;
    color: var(--main_color_1);
    font-size: 22px;
    margin-right: 10px;
}
.section-4-right__icons {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}


.section-5__container {
    display: flex;
    gap: clamp(30px, 5vw, 70px);
    justify-content: center;
    align-items: center;
}
.section-5__content .text1 {
    display: inline-block;
    background-color: var(--adition_color_1);
    color: #fff;
    font-size: clamp(17px, 2vw, 19px);
    font-weight: 700;
    padding: 4px 16px;
    margin-bottom: 5px;
}
.section-5__content .text2 {
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 900;
    margin-bottom: 8px;
}
.section-5__content .text3 {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
}

.section-6 {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 55px) 0 clamp(40px, 4.5vw, 70px);
    max-width: 1920px;
}
.section-6__bg-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.section-6__bg-image img {
    width: 100%;
    height: auto;
}
.section-6 .container_large {
    position: relative;
}
.section-6__container {
    max-width: 810px;
}
.section-6__container .heading {
    color: #fff;
    margin-bottom: 8px;
}
.section-6__container .text1 {
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    font-size: clamp(14px, 2vw, 20px);
    padding: clamp(5px, 1vw, 6px) 13px clamp(5px, 1vw, 5px);
    background-color: var(--main_color_1);
    margin-bottom: clamp(12px, 1.5vw, 24px);
}
.section-6__container .text2 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 24px;
}
.section-6__columns {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 24px;
}
.section-6__item {
    position: relative;
    padding: 0 20px clamp(20px, 2vw, 32px) 40px;
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.section-6__item:after {
    content: "";
    background-color: #fff;
    position: absolute;
    display: block;
    width: 100%;
    height: calc(100% - 35px);
    left: 0;
    bottom: 0;
}
.section-6__item img {
    position: relative;
    z-index: 1;
    max-width: min(7.5vw, 125px);
}
.section-6-item__heading {
    position: relative;
    z-index: 1;
    font-size: clamp(18px, 1.5vw, 22px);
    margin-bottom: 4px;
    font-weight: 600;
}
.section-6-item__price {
    position: relative;
    z-index: 1;
    color: var(--main_color_1);
    font-weight: 800;
    font-size: clamp(16px, 1.2vw, 18px);
}
.section-6__columns .section-6__item:nth-child(3):after {
    height: calc(100% - 20px);
}
.section-6__columns .section-6__item:nth-child(4):after {
    height: calc(100% - 20px);
}
.section-6__columns .section-6__item:nth-child(3) .section-6-item__heading {
    margin-top: 8px;
}
.section-6__columns .section-6__item:nth-child(4) .section-6-item__heading {
    margin-top: 14px;
}


.section-7 {
    background-color: var(--adition_color_4);
    padding: 15px 0;
}
.section-7__container {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}
.section-7__content .text1 {
    font-weight: 900;
    font-size: clamp(22px, 2vw, 30px);
    margin-bottom: 32px;
}

.section-8__container {
    display: flex;
    justify-content: space-between;
    gap: clamp(30px, 4vw, 60px);
}
.section-8__left {
    position: relative;
    padding-left: 80px;
    width: 55%;
}
.section-8__left img {
    width: 100%;
}
.section-8-left__content {
    position: absolute;
    top: 0;
    left: 0;
}
.section-8-left__content .text1 {
    color: var(--adition_color_1);
    text-transform: uppercase;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 600;
    padding-left: 10px;
}
.section-8-left__content .text2 {
    color: #fff;
    padding: 6px 12px;
    display: inline-block;
    background-color: var(--adition_color_1);
    text-transform: uppercase;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 900;
    margin-bottom: 6px;
}
.section-8-left__content .text3 {
    font-size: clamp(14px, 1.6vw, 16px);
    padding-left: 13px;
}
.section-8__right {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.section-8__right .heading {
    margin-bottom: 24px;
}
.section-8-right__content {
    padding-left: 24px;
    font-size: clamp(16px, 1.8vw, 18px);
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
}


.ready-to-ask {
    max-width: 1162px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--main_color_1);
    padding: 40px clamp(32px, 5vw, 52px);
    gap: 20px;
}
.ready-to-ask__title {
    font-weight: 900;
    font-size: clamp(22px, 2.2vw, 30px);
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.2;
}
.ready-to-ask__text {
    font-size: clamp(16px, 2.2vw, 18px);
    color: #fff;
    font-weight: 400;
}


.portfolio {
    overflow: hidden;
    max-width: 1920px;
}
.portfolio__siema-calculator-container {
    width: 123vw;
    margin-left: -11.5vw;
}
.slider-item__img {
    width: 100%;
}
.portfolio__slider-item {
    margin: auto;
    padding: 0 16px;
}
.portfolio__item-title {
    font-weight: 600;
    font-size: clamp(18px, 2vw, 20px);
    margin: 16px 0 16px;
}
.portfolio__item-semititle {
    font-weight: 600;
    color: var(--main_color_1);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.portfolio__item-task {
    font-size: 15px;
    font-weight: 400;
}


.section-9 {
    max-width: 1920px;
    position: relative;
    background: #212E41;
    padding-top: clamp(40px, 6vw, 130px);
    padding-bottom: clamp(30px, 4vw, 80px);
    overflow: hidden;
}
.section-9__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section-9__bg img {
    width: 100%;
    height: auto;
}
.section-9 .container_large {
    position: relative;
}
.section-9__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(30px, 6vw, 75px);
}
.section-9-left__slider-container img {
    width: 100%;
}
.section-9__left {
    width: calc(50% - 35px);
    position: relative;
}
#section9__slider .siema__prev {
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
    padding: 12px 12px 0 12px;
}
#section9__slider .siema__next {
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
    padding: 12px 12px 0 12px;
}
#section9__slider .siema__prev img {
    transform: rotate(180deg);
}
.section-9__right .heading {
    color: #fff;
    margin-bottom: 24px;
}
.section-9__right .text {
    color: #fff;
}
.section-9-right_text1 {
    display: inline-block;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 600;
    color: #fff;
    background: var(--main_color_1);
    padding: 6px 19px;
    margin-bottom: 12px;
}
.section-9__right {
    width: calc(50% - 35px);
}
.section-9-right_list {
    margin-top: 24px;
    margin-bottom: 40px;
    color: #fff;
    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-gap: 30px;
    list-style: none;
    font-size: 16px;
    font-weight: 700;
}
.section-9-right_list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 15px;
}
.section-9-right_list li:before {
    content: '';
    border-radius: 2px;
    background: url('/wp-content/uploads/icons/blue-right-arrow.svg') center center no-repeat;
    height: 12px;
    width: 7px;
    position: absolute;
    left: 0;
    top: 4px;
}



.form-question-section {
    display: flex;
    justify-content: space-between;
    margin: auto;
    position: relative;
    padding-left: 70px;
    align-items: flex-end;
}
.form_form-question {
    padding-right: 25px;
    width: 54%;
    padding-bottom: 50px
}
.form_form-question h2 {
    white-space: nowrap;
}
.form_form-question form {
    max-width: 615px;
}
.form-question-car {
    position: absolute;
    bottom: 50px;
    right: 30px;
}
.form-question-car__container {
    position: relative;
}
.form-question-car img {
    max-width: 40vw;
}
.form__wrapper {
    margin-bottom: 24px;
}
.form__text {
    font-size: 18px;
    font-weight: 600;
}
.form__row_text {
    display: flex;
    justify-content: space-between;
}
.form__row_text > div {
    margin-bottom: clamp(16px, 2.4vw, 24px);
    width: 47%;
}
.form__row_checkboxes {
    margin: clamp(16px,  1.9vw, 24px) 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 16px;
}
.form_form-question .form__row_checkboxes .common-checkbox-label {
    font-size: 16px;
}
.form-question-car__name {
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.form-question-car__speciality {
    font-size: 18px;
}
.form-question-man {
    width: 44%;
}
.form-question-nam__img {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.form-question-man__container {
    position: relative;
}
.form-question-man__name {
    position: absolute;
    width: 100%;
    height: 68%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-question-man__name .text1 {
    font-size: clamp(26px,  2.5vw, 32px);
    font-weight: 700;
}
.form-question-man__name .text2 {
    font-size: 18px;
    font-weight: 400;
}
.input-checkbox-wrapper input {
    display: none;
}
.input-checkbox-wrapper {
    width: 50%;
}
.form-question__submit {
    width: 200px;
}
.form-question__bottom-wrapper {
    display: flex;
    gap: 10%;
}
.form-question__bottom-wrapper .privacy-policy+label {
    max-width: 260px;
    font-weight: 400;
}
.form-question__bottom-wrapper .privacy-policy+label::before {
    margin-right: 16px;
}
.pop-up-form {
    position: fixed;
    inset: 0;
    margin: auto;
    z-index: 1001;
    padding: 35px 16px 0;
    height: fit-content;
    width: fit-content;
    max-height: 90vh;
    overflow: auto;
    opacity: 0;
    transition: 0.3s;
}
.pop-up-form__container {
    padding: 48px clamp(24px, 50px, 8vw);
    position: relative;
    background-color: #FFF;
    text-align: center;
    max-width: 444px;
}
.pop-up-form__close {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 8px;
    top: 8px;
    cursor: pointer;
}
.close-pop-up {
    position: absolute;
    width: 34px;
    height: 34px;
    right: -17px;
    top: -17px;
    z-index: 1;
    border-radius: 50%;
    background-color: #FFF;
    cursor: pointer;
}
.close-pop-up:hover {
    background-color: var(--adition_color_5);
}
.close-pop-up:hover span {
    background-color: #FFF;
}
.pop-up-form__close-container,
.close-pop-up__container {
    position: relative;
    width: 100%;
    height: 100%;
}
.pop-up-form__close span {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 32px;
    height: 3px;
    background-color: var(--adition_color_2);
    transform: rotate(45deg);
}
.close-pop-up span {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 17px;
    height: 2px;
    background-color: var(--main_color_1);
    transform: rotate(45deg);
}
.pop-up-form__close span:last-child,
.close-pop-up span:last-child {
    transform: rotate(-45deg);
}
.pop-up-form__privacy-policy+label::before {
    width: 22px;
    height: 22px;
}
.pop-up-form__privacy-policy:checked+label::after {
    width: 14px;
    height: 14px;
    left: 12px;
    border-radius: 3px;
}
.pop-up-form__title,
.pop-up-form__text {
    text-wrap: balance;
}
.message-box.error {
    margin: 8px 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.3;
    color: #D4004C;
}
.general-message-box.message-send {
    position: fixed;
    inset: 0;
    margin: auto;
    z-index: 1001;
    background: #FFF;
    text-align: center;
    padding: 32px;
    width: 400px;
    height: 300px;
    max-width: 95vw;
    transition: 0.3s;
}
.general-message-box__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.privacy-policy-message-box {
    display: none;
}
.privacy-policy-message-box.error {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: fixed;
    inset: 0;
    padding: 16px;
    background: rgba(0, 0, 0, 0.60);
    border-radius: 0;
    z-index: 1;
}
.privacy-policy-message-box__container {
    position: relative;
    width: 366px;
    max-width: 95vw;
    padding: 24px;
    background: #FFF;
    border-radius: 10px;
    text-align: center;
    color: var(--text_color_1);
}
.privacy-policy-message-box__btn {
    width: fit-content;
    display: block;
    margin: auto;
}
.privacy-policy-message-box__text {
    padding-top: 24px;
    border-top: 1px solid var(--adition_color_2);
}
.contacts-popup {
    position: fixed;
    inset: 0;
    margin: auto;
    z-index: 1001;
    padding: 35px 16px 0;
    height: fit-content;
    width: fit-content;
    max-height: 90vh;
    overflow: auto;
    opacity: 0;
    transition: 0.3s;
}
.contacts-popup__container {
    padding: 42px clamp(24px, 5px, 50px);
    position: relative;
    background-color: #FFF;
    text-align: center;
    max-width: 320px;
}
.contacts-popup__logo {
    margin-bottom: 18px;
}
.contacts-popup__phone {
    font-size: 22px;
    font-weight: 700;
    margin-top: 34px;
}
.contacts-popup__icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    margin: 16px 0 26px
}
.contacts-popup__button {
    margin-top: 30px;
}
.portfolio__siema-calculator-container .open-slider-images,
.portfolio__siema-calculator-container .close-slider-images {
    display: none;
}

@media (max-width: 1350px) {
    .section-7__container .image {
        max-width: 550px;
        width: 100%;
    }
    .section-8__left {
        padding-top: 30px;
    }
    .section-7__content .text1 br {
        display: none;
    }
}

@media (max-width: 1300px) {
    .header {
        padding: 8px 0;
    }
    .header-left__text,
    .header-right__text1,
    .header-right__button {
        display: none;
    }
    .open-contacts-button {
        display: block;
        padding: 5px;
    }
    .open-contacts-button img {
        width: clamp(38px, 4vw, 48px);
        height: clamp(38px, 4vw, 48px);
    }
    .section-1__form-container {
        margin-top: -130px;
    }
    .form-question-section {
        padding-left: 0;
    }
    .section-3-banner {
        left: 0;
    }
    .section-3__banner-container .image {
        max-width: 48%;
        left: -40px;
    }
}
@media (max-width: 1250px) {
    .section-1__icons-container {
        flex-wrap: wrap;
        margin: auto;
        max-width: 700px;
    }
    .section-1__icons-container .icons-item {
        width: calc(50% - 15px);
    }

}
@media (max-width: 1200px) {
    .section-3-banner {
        padding: 30px 30px 30px;
        background-size: auto 100%;
    }
    .section-3-banner__content .heading {
        font-size: clamp(23px, 2.5vw, 30px);
    }
    .section-3-banner__content .text {
        font-size: clamp(14px, 1.5vw, 18px);
    }
    .section-3-banner__content {
        width: 55%;
    }
    .section-4-left__item .content__text-2 {
        font-size: 14px;
    }
}
@media (max-width: 1100px) {
    .section-1__form-container {
        padding: 32px clamp(32px, 5vw, 60px);
    }
    .section-4__container {
        max-width: 1050px;
        margin: 0 auto;
        justify-content: center;
    }
    .section-4 .section-4__left {
        width: auto;
    }
    .section-4__right {
        width: auto;
        max-width: 450px;
        text-align: left;
    }
    .section-4-left__item {
        flex-direction: column;
        align-items: flex-start;
        max-width: 379px;
    }
    .section-4-left__item .content {
        padding: 10px 15px 20px 15px;
    }
    .section-7 {
        padding: 0 0 30px;
    }
    .section-7__container {
        flex-direction: column-reverse;
        gap: 0;
        max-width: 530px;
        margin-right: auto;
        margin-left: auto;
    }
    .section-9 {
        background: #fff;
        padding: 0 0 30px;
    }
    .section-9__container {
        max-width: 615px;
        margin: 0 auto;
        flex-direction: column;
        gap: 0;
    }
    .section-9__left {
        width: 100%;
    }
    .section-9__right {
        width: 100%;
    }
    .section-9__bg {
        display: none;
    }
    .section-9__right .heading {
        color: var(--text_color_1);
    }
    .section-9__right .text {
        color: var(--text_color_1);
    }
    .section-9-right_list {
        color: var(--text_color_1);
    }
    #section-9-right__mobile-slider {
        margin: 24px 0;
        position: relative;
    }
    .form-question-section {
        justify-content: center;
    }
    .form_form-question {
        width: 100%;
        max-width: 615px;
        padding-right: 0;
        padding-bottom: 40px;
    }
    .form-question-man {
        display: none;
    }
    footer .container_large {
        max-width: 615px;
        flex-wrap: wrap;
        gap: 10px 30px;
    }
    .footer__left {
        width: calc(50% - 15px);
    }
    .footer__center {
        width: calc(50% - 15px);
    }
    footer .copyright {
        margin-top: 12px;
    }
    .footer-right__container {
        gap: 30px;
    }
    .footer-info-left,
    .footer-info-right {
        width: calc(50% - 15px);
    }
}
@media (max-width: 1000px) {
    .section-2__content .content-item {
        justify-content: center;
    }
    .section-2__content .content-item_block1 {
        width: 100%;
        order: 1;
        max-width: 600px;
    }
    .section-2__content .content-item .content-item_block2 {
        width: calc(50% - 20px);
        order: 3;
    }
    .section-2__content .content-item .content-item_block3 {
        width: 100%;
        order: 2;
        max-width: 600px;
    }
    .section-2__content .content-item .content-item_block4 {
        width: calc(50% - 20px);
        order: 4;
    }
    .content-item_block3>div>div>div {
        height: clamp(420px, 42vw, 535px);
    }
    .section-6__bg-image img {
        height: 100%;
        width: auto;
    }
    .section-8__container {
        flex-direction: column-reverse;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        gap: 10px;
    }
    .section-8__right {
        width: 100%;
    }
    .section-8-right__content {
        padding-left: 0;
    }
    .section-8__left {
        width: 100%;
        padding-top: 0;
        padding-left: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    .section-8-left__content {
        position: static;
        width: 100%;
        text-align: right;
        max-width: 580px;
    }
    .section-8__left img {
        max-width: 500px;
    }
}
@media (max-width: 850px) {
    .section-1__text-container {
        height: 35vw
    }
    .section-1__form-container {
        max-width: 500px;
        margin-top: -170px;
    }
    .section-1__form-container .form__row_text > div {
        width: 100%;
    }
    .section-1__form-container .form-question__submit {
        width: 100%;
    }
    .section-1__form-container .form__row_text {
        flex-direction: column;
    }
    .section-3__banner-container {
        max-width: 600px;
        background: var(--adition_color_4) url(/wp-content/uploads/mainpage/section-3-bg-700.webp) right bottom no-repeat;
    }
    .section-3__banner-container .image {
        left: auto;
        max-width: 100%;
    }
    .section-3-banner {
        position: static;
        background: none;
        display: block;
    }
    .section-3-banner__content {
        width: 100%;
        max-width: 460px;
    }
    .section-2__content .content-item .content-item_block2 {
        width: 100%;
        max-width: 600px;
    }
    .section-2__content .content-item .content-item_block4 {
        width: 100%;
        max-width: 600px;
    }
    .section-5__container {
        flex-direction: column;
    }
}
@media (max-width: 800px) {
    .section-4__container {
        flex-direction: column;
        align-items: center;
    }
    .section-4 {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .section-6__container .heading {
        color: var(--text_color_1);
    }
    .section-6__container .text2 {
        color: var(--text_color_1);
    }
    .section-6__columns {
        flex-direction: column;
    }
    .section-6 {
        max-width: 615px;
        margin-right: auto;
        margin-left: auto;
        padding-top: 0;
    }
    .section-6__bg-image {
        position: relative;
        padding-left: clamp(16px, 3.5vw, 48px);
        padding-right: clamp(16px, 3.5vw, 48px);
        margin-bottom: 30px;
    }
    .section-6__bg-image img {
        width: 100%;
        height: auto;
    }
    .section-6__item {
        background-color: var(--adition_color_4);
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0 20px;
        gap: 20px
    }
    .section-6__item .content {
        padding: 20px 0;
    }
    .section-6-item__image {
        padding-left: 16px;
    }
    .section-6__item:after {
        display: none;
    }
    .section-6-item__image {
        width: 35%;
        text-align: center;
    }
    .section-6-item__image img {
        width: 100%;
        max-width: none;
    }
    .section-6__columns .section-6__item:nth-child(4) .section-6-item__heading,
    .section-6__columns .section-6__item:nth-child(3) .section-6-item__heading {
        margin-top: 0;
    }
}
@media (max-width: 700px) {
   .section-1 {
        overflow: hidden;
        padding: 100px 0 100px;
    }
    .section-1__text-container {
        position: relative;
        top: auto;
        left: auto;
        align-items: flex-start;
        padding: 0 16px;
        max-width: 500px;
        margin: 0 auto;
    }
    .section-1 .bg-image {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
    }
    .section-1 .bg-image img {
        width: 100%;
    }
    .section-1__form-container {
        margin-top: -70px;
    }
}
@media (max-width: 650px) {
    .section-2__navigation {
        justify-content: flex-start;
        gap: 8px;
    }
}
@media (max-width: 575px) {
    .header .container_large {
        align-items: stretch;
    }
    .header__left-icon {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .header__left-icon img {
        width: 100%;
        max-width: 143px;
    }
    .header-right-text2__order {
        font-size: clamp(10px, 2.5vw, 14px);
    }
    .section-1__icons-container {
        max-width: 330px;
    }
    .section-1__icons-container .icons-item {
        width: 100%;
    }
    .section-1__icons-container .icons-item img {
        max-width: 40px;
    }
    .section-2__content .content-item .content-item_block1 .order {
        flex-wrap: wrap;
    }
    .section-2__content .content-item .content-item_block2,
    .section-2__content .content-item .content-item_block4 {
        padding: 18px 16px;
    }
    .content-item_block3>div>div>div {
        height: clamp(250px, 60vw, 450px);
    }
    .section-9-right_list {
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
    }
    .ready-to-ask {
        flex-wrap: wrap;
    }
    .portfolio__siema-calculator-container {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0;
    }
    .portfolio__item-title {
        margin: 20px 0 10px;
    }
    .portfolio__slider-item {
        margin-bottom: 24px;
    }
    .portfolio__slider-item.mobile-display {
        display: none;
    }
    .slider-container.portfolio__slider-container {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .portfolio__siema-calculator-container .close-slider-images,
    .portfolio__siema-calculator-container .open-slider-images  {
        margin-left: 16px;
    }
    .portfolio__siema-calculator-container.open .close-slider-images,
    .portfolio__siema-calculator-container .open-slider-images  {
        display: block;
    }
    .portfolio__siema-calculator-container.open .open-slider-images {
        display: none;
    }
    .portfolio__siema-calculator-container.open .portfolio__slider-item.mobile-display {
        display: block;
    }
    .form_form-question h2 {
        white-space: normal;
    }
    .footer__left {
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }
    .footer__center {
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }
    .footer-right__container {
        flex-wrap: wrap;
    }
    .footer__right {
        text-align: center;
    }
    .footer-info-left, .footer-info-right {
        width: 100%;
        text-align: center;
    }
    .pagination__item {
        width: 8px;
        height: 8px;
    }
}
@media (max-width: 500px) {
    .section-1 .bg-image img {
        width: auto;
        height: 100%;
    }
    .section-1__form-container {
        margin-top: -40px;
    }
    .section-6__item {
        padding-left: 0;
    }
    .section-6-item__image {
        flex-shrink: 0;
    }
    .form__row_text {
        flex-direction: column;
    }
    .form__row_text > div {
        width: 100%;
    }
    .input-checkbox-wrapper {
        width: 100%;
    }
    .form-question__bottom-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .form-question__bottom-wrapper .privacy-policy+label {
        max-width: none;
    }
    .section-2__content .content-item .content-item_block4 .table,
    .section-2__content .content-item .content-item_block2 .table {
        font-size: 14px;
    }
}
@media (max-width: 450px) {
    .section-1 {
        padding-bottom: 200px;
    }
    .section-1 .bg-image img {
        width: 100%;
        height: auto;
    }
    .section-3__banner-container .image {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .section-4-left__item img {
        width: 100%;
    }
    .section-4 {
        text-align: left;
    }
    .section-5__container img {
        width: 100%;
    }
    .portfolio h2 {
        padding-left: 16px;
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-9-right_list {
        column-count: 1;
        -webkit-column-count: 1;
        -moz-column-count: 1;
    }
    .section-9-right_list {
        margin-bottom: 15px;
    }
}
@media (max-width: 400px) {
    .header-right__text2 {
        display: none;
    }
    .section-1__text-container h1 {
        font-size: 40px;
    }
    .section-1__form-container {
        padding: 26px 20px;
    }
    .section-3-banner__content .heading br {
        display: none;
    }
    #section-9-right__mobile-slider .siema__prev,
    #section-9-right__mobile-slider .siema__next {
        display: none;
    }
}
