.wrapper-city {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.wrapper-city label {
    font-size: 14px;
}

.wrapper-city select {
    padding: 4px;
    border-radius: 6px;
    border: 1px solid gray;
    background: #fff;
    color: #000;
    cursor: pointer;
}

.delivery-type > div {
    display: flex;
    align-items: center;
    gap: 8px; /* расстояние между радиокнопкой и текстом */
    /*margin-bottom: 8px;*/
    height: 30px;
}
.field {
    position: relative; /* обязательно для родителя */
}
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.autocomplete-suggestion {
    padding: 8px 10px;
    cursor: pointer;
}
.autocomplete-suggestion:hover {
    background: #f0f0f0;
}
.field {
    position: relative; /* чтобы список позиционировался правильно */
}
.modal .modal-wrapper .wrapper-form .form-wp .delivery-type input[type="radio"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 12px;
    padding: 0;
}
.error-input {
    color: red;
    margin-bottom: 15px;
    font-size: 15px;
    display: none;
}
li {
    list-style: none
}

a {
    text-decoration: none;
    color: #000
}
.wrapper-menu a:link{
    padding: 15px;
}
.wrapper-menu a:hover{
    border-bottom: 1px solid;
    background: #CDFEAA;
}

.menu a:hover{
    border-bottom: 1px solid;
    
}
.content {
    max-width: 1300px;
    margin: auto
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

body {
    font-family: "Roboto", sans-serif
}

.alert {
    background: #28a745;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 10;
    display: none;
    top: 50%;
    transform: translateY(-50%);
}
.allServices {
    padding-bottom: 100px;
}

.alert-wrapper .text {
    padding: -webkit-calc(10px + 30 * ((1300px - 320px) / 880)) 0px;
    padding: calc(10px + 30 * ((1300px - 320px) / 880)) 0px;
    color: #fff;
    text-align: center;
    font-size: -webkit-calc(14px + 10 * ((1300px - 320px) / 880));
    font-size: calc(14px + 10 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .alert-wrapper .text {
        padding: -webkit-calc(10px + 30 * ((100vw - 320px) / 880)) 0px;
        padding: calc(10px + 30 * ((100vw - 320px) / 880)) 0px
    }
}

@media screen and (max-width: 1300px) {
    .alert-wrapper .text {
        font-size: -webkit-calc(14px + 10 * ((100vw - 320px) / 880));
        font-size: calc(14px + 10 * ((100vw - 320px) / 880))
    }
}
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgba(245, 245, 245, 0.8);
    border-radius: 10px;
    padding: 30px;
}

.row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

input, select, button {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

button {
    background-color: #ed7a00;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 6px;
}

button:hover {
    background-color: rgb(249 171 70);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(51, 51, 51, .58);
    z-index: 5;
    display: none
}

.modal .modal-wrapper {
    position: relative;
    height: 400px;
    font-size: 20px;
    z-index: 50;
}

.modal .modal-wrapper .wrapper-form {
    position: absolute;
    top: 80%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 410px;
    background: #fff;
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease
}

.modal .modal-wrapper .wrapper-form .close {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer
}

.modal .modal-wrapper .wrapper-form .close span {
    width: 30px;
    height: 2px;
    background: #000;
    display: block;
    position: absolute
}

.modal .modal-wrapper .wrapper-form .close span:first-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.modal .modal-wrapper .wrapper-form .close span:last-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.modal .modal-wrapper .wrapper-form .form-wp {
    padding: 30px
}

.modal .modal-wrapper .wrapper-form .form-wp .title {
    /*font-size: -webkit-calc(22px + 0 * ((1300px - 320px) / 880));*/
    font-size: 16px;
    text-align: center;
    font-weight: 300
}

/*@media screen and (max-width: 1300px) {*/
/*    .modal .modal-wrapper .wrapper-form .form-wp .title {*/
/*        font-size: -webkit-calc(22px + 0 * ((100vw - 320px) / 880));*/
/*        font-size: calc(22px + 0 * ((100vw - 320px) / 880))*/
/*    }*/
/*}*/

.modal .modal-wrapper .wrapper-form .form-wp label {
    font-size: -webkit-calc(16px + 0 * ((1300px - 320px) / 880));
    font-size: calc(16px + 0 * ((1300px - 320px) / 880));
    font-weight: 300;
    display: block;
    margin-top: 20px;
    margin-bottom: 7px
}

@media screen and (max-width: 1300px) {
    .modal .modal-wrapper .wrapper-form .form-wp label {
        font-size: -webkit-calc(16px + 0 * ((100vw - 320px) / 880));
        font-size: calc(16px + 0 * ((100vw - 320px) / 880))
    }
}

.modal .modal-wrapper .wrapper-form .form-wp input {
    width: 100%;
    padding: 7px 15px;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: 1px solid black;
}

.modal .modal-wrapper .wrapper-form .form-wp button {
    background: #ed7a00;
    width: 100%;
    padding: 0 20px;
    display: block;
    margin: auto;
    height: 50px;
    color: #fff;
    border: none;
    text-transform: uppercase;
    margin-top: 40px;
    cursor: pointer
}

.modal .modal-wrapper .wrapper-form .form-wp .text {
    font-size: -webkit-calc(12px + 0 * ((1300px - 320px) / 880));
    font-size: calc(12px + 0 * ((1300px - 320px) / 880));
    margin-top: 15px
}

@media screen and (max-width: 1300px) {
    .modal .modal-wrapper .wrapper-form .form-wp .text {
        font-size: -webkit-calc(12px + 0 * ((100vw - 320px) / 880));
        font-size: calc(12px + 0 * ((100vw - 320px) / 880))
    }
}

.header{
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1;
}

header .header-wrapper {    
    
   
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

header .header-wrapper .wrapper-phone {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

header .header-wrapper .wrapper-phone a {
    text-decoration: underline
}

header .header-wrapper .wrapper-phone img {
    width: 30px;
    margin-right: 10px
}

header .header-wrapper .wrapper-logo {
    width: 60%;
    max-width: 150px
}

header .header-wrapper .wrapper-logo img {
    width: 100%
}

header .header-wrapper .wrapper-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

header .header-wrapper .wrapper-menu li:not(last-child) {
    margin-right: 15px
}

header .header-wrapper .wrapper-menu li a {
    color: #000;
    font-weight: 300
}

header .header-wrapper .wrapper-burger {
    cursor: pointer;
    position: relative;
    width: 30px;
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    display: none
}

header .header-wrapper .wrapper-burger span {
    width: 30px;
    height: 3px;
    background: #000;
    display: block;
    margin-top: 5px;
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease
}

header .header-wrapper .burger-active {
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease
}

header .header-wrapper .burger-active span {
    position: absolute;
    top: 0;
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease
}

header .header-wrapper .burger-active span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

header .header-wrapper .burger-active span:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

header .header-wrapper .burger-active span:nth-child(2) {
    display: none
}

.header_mobile {
    width: 50%;
    min-width: 300px;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0 0 13px #000;
    box-shadow: 0 0 13px #000;
    -webkit-transform: translateX(-120%);
    -ms-transform: translateX(-120%);
    transform: translateX(-120%);
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    opacity: 0
}

.header_mobile .wrapper-menu li {
    margin-top: 10px
}

.header_mobile .wrapper-menu li a {
    font-size: -webkit-calc(18px + 4 * ((1300px - 320px) / 880));
    font-size: calc(18px + 4 * ((1300px - 320px) / 880));
    color: #000;
    font-weight: 300
}

@media screen and (max-width: 1300px) {
    .header_mobile .wrapper-menu li a {
        font-size: -webkit-calc(18px + 4 * ((100vw - 320px) / 880));
        font-size: calc(18px + 4 * ((100vw - 320px) / 880))
    }
}

.header_mobile-active {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    opacity: 1
}

.main {
    background: url("../image/bg-main.jpg") no-repeat center/cover;
    background-color: rgba(0, 0, 0, .47);
    background-blend-mode: multiply;
    padding: 200px 0px
}

.main .main-wrapper {
    max-width: 900px;
    margin: auto
}
.services-row {
    display: flex;
    justify-content: space-between; /* равномерное распределение */
    flex-wrap: wrap; /* перенос на новую строку на мобильных */
    gap: 15px; /* расстояние между плашками */
    margin: 20px 0;
}

.service-item {
    background-color: rgba(245, 245, 245, 0.8);
    color: black;
    border-radius: 10px;
    padding: 15px 20px;
    flex: 1 1 calc(25% - 15px); /* 4 плашки в ряд с учетом gap */
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-align: left;
    min-width: 200px; /* чтобы плашки не сжимались слишком сильно */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
@media (max-width: 874px) and (min-width: 660px) {
    .service-item:last-child {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        text-align: center;
    }
}
.service-item:hover {
    transform: translateY(-5px);
    background-color: #e0e0e0;
}

.service-item .icon {
    font-size: 30px;
}

.service-item .text {
    font-weight: bold;
    font-size: 16px;
}

.main .main-wrapper .title {
    font-size: -webkit-calc(32px + 22 * ((1300px - 320px) / 880));
    font-size: calc(32px + 22 * ((1300px - 320px) / 880));
    text-align: center;
    color: #fff;
    font-weight: bold
}
.main .main-wrapper .title.title-calc {
    font-size: 30px;
    color: black;
}

@media screen and (max-width: 1300px) {
    .main .main-wrapper .title {
        font-size: -webkit-calc(20px + 22 * ((100vw - 320px) / 880));
        font-size: calc(32px + 22 * ((100vw - 320px) / 880))
    }
    .main .main-wrapper .title.title-calc {
        font-size: 28px;
    }
}

.main .main-wrapper .description {
    color: #fff;
    text-align: center;
    font-size: -webkit-calc(17px + 7 * ((1300px - 320px) / 880));
    font-size: calc(17px + 7 * ((1300px - 320px) / 880));
    margin-top: 40px
}

@media screen and (max-width: 1300px) {
    .main .main-wrapper .description {
        font-size: -webkit-calc(17px + 7 * ((100vw - 320px) / 880));
        font-size: calc(17px + 7 * ((100vw - 320px) / 880))
    }
}

.main .main-wrapper .buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 100px;
    cursor: pointer
}

.main .main-wrapper .buttons button {
    color: #fff;
    text-transform: uppercase;
    width: 300px;
    height: 50px;
    border: none;
    cursor: pointer
}

.main .main-wrapper .buttons button:first-child {
    background: #ed7a00
}

.ourCompany {
    padding: 100px 0px
}

.ourCompany-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.ourCompany-wrapper .wrapper-image {
    width: 580px
}

.ourCompany-wrapper .wrapper-image img {
    width: 100%
}

.ourCompany-wrapper .wrapper-info {
    background: #f5f5f5;
    width: 380px;
    padding: 30px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate(-60px, 40px);
    -ms-transform: translate(-60px, 40px);
    transform: translate(-60px, 40px);
    -webkit-box-shadow: 0 0 13px #000;
    box-shadow: 0 0 13px #000
}

.ourCompany-wrapper .wrapper-info .title {
    text-align: center;
    font-weight: 400;
    font-size: -webkit-calc(20px + 10 * ((1300px - 320px) / 880));
    font-size: calc(20px + 10 * ((1300px - 320px) / 880));
    position: relative
}

@media screen and (max-width: 1300px) {
    .ourCompany-wrapper .wrapper-info .title {
        font-size: -webkit-calc(20px + 10 * ((100vw - 320px) / 880));
        font-size: calc(20px + 10 * ((100vw - 320px) / 880))
    }
}

.ourCompany-wrapper .wrapper-info .title::before {
    content: "";
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #000;
    position: absolute;
    bottom: -20px
}

.ourCompany-wrapper .wrapper-info .description {
    font-weight: 200;
    margin-top: 50px;
    line-height: 1.4;
    font-size: -webkit-calc(18px + 0 * ((1300px - 320px) / 880));
    font-size: calc(18px + 0 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .ourCompany-wrapper .wrapper-info .description {
        font-size: -webkit-calc(18px + 0 * ((100vw - 320px) / 880));
        font-size: calc(18px + 0 * ((100vw - 320px) / 880))
    }
}

.ourCompany-wrapper .wrapper-info button {
    background: #ed7a00;
    max-width: 250px;
    padding: 0 20px;
    display: block;
    margin: auto;
    height: 50px;
    color: #fff;
    border: none;
    text-transform: uppercase;
    margin-top: 40px
}

.companyDescription {
    padding: 100px 0px
}

.companyDescription-wrapper {
    max-width: 800px;
    margin: auto
}

.companyDescription-wrapper .text {
    font-weight: 300;
    margin-top: 40px;
    font-size: -webkit-calc(16px + 4 * ((1300px - 320px) / 880));
    font-size: calc(16px + 4 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .companyDescription-wrapper .text {
        font-size: -webkit-calc(16px + 4 * ((100vw - 320px) / 880));
        font-size: calc(16px + 4 * ((100vw - 320px) / 880))
    }
}

.ourWork {
    padding: 100px 0
}

.ourWork-wrapper .wrapper-title {
    font-size: -webkit-calc(16px + 12 * ((1300px - 320px) / 880));
    font-size: calc(16px + 12 * ((1300px - 320px) / 880));
    text-transform: uppercase;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px
}

@media screen and (max-width: 1300px) {
    .ourWork-wrapper .wrapper-title {
        font-size: -webkit-calc(16px + 12 * ((100vw - 320px) / 880));
        font-size: calc(16px + 12 * ((100vw - 320px) / 880))
    }
}

.ourWork-wrapper .wrapper-title span {
    font-weight: 700;
    font-size: -webkit-calc(24px + 14 * ((1300px - 320px) / 880));
    font-size: calc(24px + 14 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .ourWork-wrapper .wrapper-title span {
        font-size: -webkit-calc(24px + 14 * ((100vw - 320px) / 880));
        font-size: calc(24px + 14 * ((100vw - 320px) / 880))
    }
}

.ourWork-wrapper .wrapper-works {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.ourWork-wrapper .wrapper-works .element {
    width: 30%;
    margin-top: 20px;
    position: relative
}

.ourWork-wrapper .wrapper-works .element img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

.ourWork-wrapper .wrapper-works .element-wrapper {
    position: relative;
    z-index: 3;
    padding: 20px;
    background: rgba(0, 0, 0, .45);
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 70px 20px
}

.ourWork-wrapper .wrapper-works .element-wrapper .title {
    color: #fff;
    font-size: -webkit-calc(20px + 4 * ((1300px - 320px) / 880));
    font-size: calc(20px + 4 * ((1300px - 320px) / 880));
    font-weight: bold
}

@media screen and (max-width: 1300px) {
    .ourWork-wrapper .wrapper-works .element-wrapper .title {
        font-size: -webkit-calc(20px + 4 * ((100vw - 320px) / 880));
        font-size: calc(20px + 4 * ((100vw - 320px) / 880))
    }
}

.ourWork-wrapper .wrapper-works .element-wrapper .description {
    font-size: -webkit-calc(18px + 0 * ((1300px - 320px) / 880));
    font-size: calc(18px + 0 * ((1300px - 320px) / 880));
    color: #fff;
    line-height: 1.4;
    margin-top: 20px
}

@media screen and (max-width: 1300px) {
    .ourWork-wrapper .wrapper-works .element-wrapper .description {
        font-size: -webkit-calc(18px + 0 * ((100vw - 320px) / 880));
        font-size: calc(18px + 0 * ((100vw - 320px) / 880))
    }
}

.allServices-wrapper .wrapper-title {
    font-weight: 500;
    font-size: -webkit-calc(24px + 12 * ((1300px - 320px) / 880));
    font-size: calc(24px + 12 * ((1300px - 320px) / 880));
    text-align: center;
    position: relative;
    color: dimgray
}

@media screen and (max-width: 1300px) {
    .allServices-wrapper .wrapper-title {
        font-size: -webkit-calc(24px + 12 * ((100vw - 320px) / 880));
        font-size: calc(24px + 12 * ((100vw - 320px) / 880))
    }
}

.allServices-wrapper .wrapper-title::before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 3px;
    background: dimgray;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -20px
}

.allServices-wrapper .wrapper-services .service {
    cursor: pointer;
    margin-top: 40px
}

/*.allServices-wrapper .wrapper-services .service:first-child .description {*/
/*    display: block*/
/*}*/

.allServices-wrapper .wrapper-services .service .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.allServices-wrapper .wrapper-services .service .title .box {
    background: #ed7a00;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    position: relative
}

.allServices-wrapper .wrapper-services .service .title .box span {
    position: absolute;
    color: #fff;
    font-weight: bold;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.3);
    -ms-transform: translate(-50%, -50%) scale(1.3);
    transform: translate(-50%, -50%) scale(1.3)
}

.allServices-wrapper .wrapper-services .service .title .text {
    text-transform: uppercase
}

.allServices-wrapper .wrapper-services .service .description {
    padding: 10px;
    border-left: 3px solid #ed7a00;
    border-bottom: 3px solid #ed7a00;
    display: none;
    font-size: -webkit-calc(12px + 4 * ((1300px - 320px) / 880));
    font-size: calc(12px + 4 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .allServices-wrapper .wrapper-services .service .description {
        font-size: -webkit-calc(12px + 4 * ((100vw - 320px) / 880));
        font-size: calc(12px + 4 * ((100vw - 320px) / 880))
    }
}

/*.allServices-wrapper .wrapper-services .service .description:first-child {*/
/*    display: block*/
/*}*/

.allServices-wrapper .wrapper-services .service .description .text {
    line-height: 1.3;
    font-weight: 300
}

.allServices-wrapper .wrapper-services .service .description ul li {
    list-style: circle
}

.ourPartner {
    padding: 50px 0px
}

.ourPartner-wrapper .wrapper-title {
    font-weight: 500;
    font-size: -webkit-calc(24px + 12 * ((1300px - 320px) / 880));
    font-size: calc(24px + 12 * ((1300px - 320px) / 880));
    text-align: center;
    position: relative;
    color: dimgray
}

@media screen and (max-width: 1300px) {
    .ourPartner-wrapper .wrapper-title {
        font-size: -webkit-calc(24px + 12 * ((100vw - 320px) / 880));
        font-size: calc(24px + 12 * ((100vw - 320px) / 880))
    }
}

.ourPartner-wrapper .wrapper-title::before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 3px;
    background: dimgray;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -20px
}

.ourPartner-wrapper .wrapper-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.ourPartner-wrapper .wrapper-container .arrow {
    width: 5%;
    cursor: pointer
}

.ourPartner-wrapper .wrapper-container .arrow:first-child {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.ourPartner-wrapper .wrapper-container .arrow img {
    width: 100%
}

.ourPartner-wrapper .wrapper-container .wrapper-slider {
    width: 85%;
    height: 300px;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    margin: auto;
    margin-top: 50px
}

.ourPartner-wrapper .wrapper-container .wrapper-slider .slider-wp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute
}

.ourPartner-wrapper .wrapper-container .wrapper-slider .slider-wp .slide {
    width: 150px;
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    height: 200px
}

.ourPartner-wrapper .wrapper-container .wrapper-slider .slider-wp .slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.contact_form {
    background: url("../image/bg-contact.jpg") no-repeat center/cover;
    background-color: rgba(0, 0, 0, .58);
    background-blend-mode: multiply;
    padding: 100px 0
}

.contact_form-wrapper .wrapper-title {
    font-size: -webkit-calc(22px + 6 * ((1300px - 320px) / 880));
    font-size: calc(22px + 6 * ((1300px - 320px) / 880));
    color: #fff;
    font-weight: 200;
    text-transform: uppercase
}

@media screen and (max-width: 1300px) {
    .contact_form-wrapper .wrapper-title {
        font-size: -webkit-calc(22px + 6 * ((100vw - 320px) / 880));
        font-size: calc(22px + 6 * ((100vw - 320px) / 880))
    }
}

.contact_form-wrapper .wrapper-title span {
    font-weight: bold;
    font-size: -webkit-calc(32px + 6 * ((1300px - 320px) / 880));
    font-size: calc(32px + 6 * ((1300px - 320px) / 880));
    margin-top: 20px
}

@media screen and (max-width: 1300px) {
    .contact_form-wrapper .wrapper-title span {
        font-size: -webkit-calc(32px + 6 * ((100vw - 320px) / 880));
        font-size: calc(32px + 6 * ((100vw - 320px) / 880))
    }
}

.contact_form-wrapper .wrapper-textarea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.contact_form-wrapper .wrapper-textarea .textarea-info {
    width: 55%
}

.contact_form-wrapper .wrapper-textarea .textarea-info .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px
}

.contact_form-wrapper .wrapper-textarea .textarea-info .info img {
    width: 50px;
    margin-right: 20px
}

.contact_form-wrapper .wrapper-textarea .textarea-info .info .text {
    color: #fff
}

.contact_form-wrapper .wrapper-textarea .textarea-info .info .text .title {
    font-size: -webkit-calc(16px + 6 * ((1300px - 320px) / 880));
    font-size: calc(16px + 6 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .contact_form-wrapper .wrapper-textarea .textarea-info .info .text .title {
        font-size: -webkit-calc(16px + 6 * ((100vw - 320px) / 880));
        font-size: calc(16px + 6 * ((100vw - 320px) / 880))
    }
}

.contact_form-wrapper .wrapper-textarea .textarea-info .info .text .description {
    font-size: -webkit-calc(12px + 4 * ((1300px - 320px) / 880));
    font-size: calc(12px + 4 * ((1300px - 320px) / 880));
    line-height: 150%;
    margin-top: 10px
}

@media screen and (max-width: 1300px) {
    .contact_form-wrapper .wrapper-textarea .textarea-info .info .text .description {
        font-size: -webkit-calc(12px + 4 * ((100vw - 320px) / 880));
        font-size: calc(12px + 4 * ((100vw - 320px) / 880))
    }
}

.contact_form-wrapper .wrapper-textarea .textarea-form {
    width: 431px;
    border: 2px solid #fff
}

.contact_form-wrapper .wrapper-textarea .textarea-form .form-wrapper {
    padding: 25px
}

.contact_form-wrapper .wrapper-textarea .textarea-form .form-wrapper .title {
    font-size: -webkit-calc(20px + 0 * ((1300px - 320px) / 880));
    font-size: calc(20px + 0 * ((1300px - 320px) / 880));
    color: #fff;
    text-align: center;
    font-weight: 300
}

@media screen and (max-width: 1300px) {
    .contact_form-wrapper .wrapper-textarea .textarea-form .form-wrapper .title {
        font-size: -webkit-calc(20px + 0 * ((100vw - 320px) / 880));
        font-size: calc(20px + 0 * ((100vw - 320px) / 880))
    }
}

.contact_form-wrapper .wrapper-textarea .textarea-form .form-wrapper .text {
    color: #fff;
    margin-bottom: 7px;
    margin-top: 30px
}

.contact_form-wrapper .wrapper-textarea .textarea-form .form-wrapper input {
    padding: 15px 10px 15px 20px;
    border: 2px solid #fff;
    background: none;
    outline: none;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%
}

.contact_form-wrapper .wrapper-textarea .textarea-form .form-wrapper button {
    color: #fff;
    text-transform: uppercase;
    max-width: 300px;
    width: 90%;
    height: 50px;
    border: none;
    background: #ed7a00;
    display: block;
    margin: auto;
    margin-top: 40px
}

.contact_form-wrapper .wrapper-textarea .textarea-form .form-wrapper .description {
    color: #fff;
    margin-top: 20px;
    font-size: -webkit-calc(12px + 0 * ((1300px - 320px) / 880));
    font-size: calc(12px + 0 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .contact_form-wrapper .wrapper-textarea .textarea-form .form-wrapper .description {
        font-size: -webkit-calc(12px + 0 * ((100vw - 320px) / 880));
        font-size: calc(12px + 0 * ((100vw - 320px) / 880))
    }
}

.reviews {
    padding: 80px 0px
}

.reviews .reviews-wrapper .wrapper-title {
    font-weight: 500;
    font-size: -webkit-calc(24px + 12 * ((1300px - 320px) / 880));
    font-size: calc(24px + 12 * ((1300px - 320px) / 880));
    text-align: center;
    position: relative;
    color: dimgray
}

@media screen and (max-width: 1300px) {
    .reviews .reviews-wrapper .wrapper-title {
        font-size: -webkit-calc(24px + 12 * ((100vw - 320px) / 880));
        font-size: calc(24px + 12 * ((100vw - 320px) / 880))
    }
}

.reviews .reviews-wrapper .wrapper-title::before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 3px;
    background: dimgray;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -20px
}

.reviews .reviews-wrapper .wrapper-pretitle {
    color: #333;
    margin-top: 40px;
    font-weight: 300;
    font-size: -webkit-calc(16px + 2 * ((1300px - 320px) / 880));
    font-size: calc(16px + 2 * ((1300px - 320px) / 880));
    text-align: center
}

@media screen and (max-width: 1300px) {
    .reviews .reviews-wrapper .wrapper-pretitle {
        font-size: -webkit-calc(16px + 2 * ((100vw - 320px) / 880));
        font-size: calc(16px + 2 * ((100vw - 320px) / 880))
    }
}

.reviews .reviews-wrapper .wrapper-wp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.reviews .reviews-wrapper .wrapper-wp .arrow {
    width: 5%;
    cursor: pointer
}

.reviews .reviews-wrapper .wrapper-wp .arrow:first-child {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.reviews .reviews-wrapper .wrapper-wp .arrow img {
    width: 100%
}

.reviews .reviews-wrapper .wrapper-wp .wrapper-container {
    position: relative;
    width: 85%;
    margin: auto;
    height: 200px;
    margin-top: 60px;
    overflow: hidden
}

.reviews .reviews-wrapper .wrapper-wp .wrapper-container .wrapper-review {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute
}

.reviews .reviews-wrapper .wrapper-wp .wrapper-container .wrapper-review .review .text {
    width: 90%
}

.reviews .reviews-wrapper .wrapper-wp .wrapper-container .wrapper-review .review .text .name {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    font-size: -webkit-calc(14px + 4 * ((1300px - 320px) / 880));
    font-size: calc(14px + 4 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .reviews .reviews-wrapper .wrapper-wp .wrapper-container .wrapper-review .review .text .name {
        font-size: -webkit-calc(14px + 4 * ((100vw - 320px) / 880));
        font-size: calc(14px + 4 * ((100vw - 320px) / 880))
    }
}

.reviews .reviews-wrapper .wrapper-wp .wrapper-container .wrapper-review .review .text .rev {
    line-height: 1.4;
    font-weight: 300;
    font-size: -webkit-calc(12px + 4 * ((1300px - 320px) / 880));
    font-size: calc(12px + 4 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .reviews .reviews-wrapper .wrapper-wp .wrapper-container .wrapper-review .review .text .rev {
        font-size: -webkit-calc(12px + 4 * ((100vw - 320px) / 880));
        font-size: calc(12px + 4 * ((100vw - 320px) / 880))
    }
}

.contact_us-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.contact_us-wrapper .wrapper-image {
    width: 50%
}

.contact_us-wrapper .wrapper-image img {
    width: 100%
}

.contact_us-wrapper .wrapper-form {
    width: 50%;
    padding: 20px 0px
}

.contact_us-wrapper .wrapper-form .form-wp {
    padding: 60px
}

.contact_us-wrapper .wrapper-form .form-wp .title {
    font-size: -webkit-calc(30px + 10 * ((1300px - 320px) / 880));
    font-size: calc(30px + 10 * ((1300px - 320px) / 880));
    font-weight: 600;
    font-family: "Montserrat", sans-serif
}

@media screen and (max-width: 1300px) {
    .contact_us-wrapper .wrapper-form .form-wp .title {
        font-size: -webkit-calc(30px + 10 * ((100vw - 320px) / 880));
        font-size: calc(30px + 10 * ((100vw - 320px) / 880))
    }
}

.contact_us-wrapper .wrapper-form .form-wp .description {
    font-size: -webkit-calc(18px + 0 * ((1300px - 320px) / 880));
    font-size: calc(18px + 0 * ((1300px - 320px) / 880));
    font-weight: 300;
    margin-top: 40px
}

@media screen and (max-width: 1300px) {
    .contact_us-wrapper .wrapper-form .form-wp .description {
        font-size: -webkit-calc(18px + 0 * ((100vw - 320px) / 880));
        font-size: calc(18px + 0 * ((100vw - 320px) / 880))
    }
}

.contact_us-wrapper .wrapper-form .form-wp input {
    width: 100%;
    padding: 15px 10px 15px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border-radius: 0;
    border: 1px solid #000;
    margin-top: 7px;
    background: none
}

.contact_us-wrapper .wrapper-form .form-wp .text {
    margin-top: 20px;
    font-weight: 300
}

.contact_us-wrapper .wrapper-form .form-wp button {
    color: #fff;
    text-transform: uppercase;
    max-width: 300px;
    width: 90%;
    height: 50px;
    border: none;
    background: #ed7a00;
    display: block;
    margin-top: 40px
}

.ourCars-wrapper .wrapper-title {
    font-weight: 500;
    font-size: -webkit-calc(24px + 12 * ((1300px - 320px) / 880));
    font-size: calc(24px + 12 * ((1300px - 320px) / 880));
    text-align: center;
    position: relative;
    color: dimgray
}

@media screen and (max-width: 1300px) {
    .ourCars-wrapper .wrapper-title {
        font-size: -webkit-calc(24px + 12 * ((100vw - 320px) / 880));
        font-size: calc(24px + 12 * ((100vw - 320px) / 880))
    }
}

.ourCars-wrapper .wrapper-title::before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 3px;
    background: dimgray;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -20px
}

.ourCars-wrapper .wrapper-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 60px
}

.ourCars-wrapper .wrapper-container .arrow {
    cursor: pointer;
    width: 5%
}

.ourCars-wrapper .wrapper-container .arrow:first-child {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.ourCars-wrapper .wrapper-container .arrow img {
    width: 100%
}

.ourCars-wrapper .wrapper-container .container-slider {
    width: 70%;
    height: 400px;
    position: relative;
    overflow: hidden
}

.ourCars-wrapper .wrapper-container .container-slider .slider-wrapper {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 400px
}

.ourCars-wrapper .wrapper-container .container-slider .slider-wrapper .slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.contact {
    padding: 50px 0
}

.contact-wrapper .wrapper-title {
    font-weight: 500;
    font-size: -webkit-calc(24px + 12 * ((1300px - 320px) / 880));
    font-size: calc(24px + 12 * ((1300px - 320px) / 880));
    text-align: center;
    position: relative;
    color: dimgray;
    margin-bottom: 50px
}

@media screen and (max-width: 1300px) {
    .contact-wrapper .wrapper-title {
        font-size: -webkit-calc(24px + 12 * ((100vw - 320px) / 880));
        font-size: calc(24px + 12 * ((100vw - 320px) / 880))
    }
}

.contact-wrapper .wrapper-title::before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 3px;
    background: dimgray;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -20px
}

.contact-wrapper .wrapper-body {
    position: relative
}

.contact-wrapper .wrapper-body .map {
    width: 50%;
    margin: auto;
    margin-top: 20px
}

.contact-wrapper .wrapper-body .map iframe {
    width: 100%
}

.contact-wrapper .wrapper-body .card {
    border: 1px solid #000;
    display: inline-block;
    width: 300px;
    border-radius: 10px;
    position: absolute;
    top: 40px;
    left: 5%;
    background: #fff
}

.contact-wrapper .wrapper-body .card-wrapper {
    padding: 20px
}

.contact-wrapper .wrapper-body .card-wrapper .title {
    font-size: -webkit-calc(20px + 2 * ((1300px - 320px) / 880));
    font-size: calc(20px + 2 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    .contact-wrapper .wrapper-body .card-wrapper .title {
        font-size: -webkit-calc(20px + 2 * ((100vw - 320px) / 880));
        font-size: calc(20px + 2 * ((100vw - 320px) / 880))
    }
}

.contact-wrapper .wrapper-body .card-wrapper > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px
}

.contact-wrapper .wrapper-body .card-wrapper > div img {
    width: 50px;
    margin-right: 20px
}

footer {
    background: url("../image/bg-footer.jpg") no-repeat center/cover;
    background-color: rgba(51, 51, 51, .56);
    background-blend-mode: multiply
}

footer .footer-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

footer .footer-wrapper > div {
    width: 30%
}

footer .footer-wrapper .logotype {
    width: 150px
}

footer .footer-wrapper .logotype img {
    width: 100%
}

footer .footer-wrapper .menu li {
    margin-top: 5px;
    font-size: -webkit-calc(14px + 2 * ((1300px - 320px) / 880));
    font-size: calc(14px + 2 * ((1300px - 320px) / 880))
}

@media screen and (max-width: 1300px) {
    footer .footer-wrapper .menu li {
        font-size: -webkit-calc(14px + 2 * ((100vw - 320px) / 880));
        font-size: calc(14px + 2 * ((100vw - 320px) / 880))
    }
}

@media screen and (max-width: 560px) {
    footer .footer-wrapper .menu li {
        font-size: 12px;
    }
    footer .footer-wrapper .logotype {
        width: 90px;
    }
    .icon-footer {
        width: 30px;
        height: 30px;
    }
    .icon-footer img{
        width: 100%;
        height: 100%;
    }
}
@media screen and (max-width: 430px) {
    footer .footer-wrapper .menu li {
        font-size: 10px;
    }
    footer .footer-wrapper .logotype {
        width: 90px;
    }
}

footer .footer-wrapper .menu li a {
    color: #fff;
    text-transform: uppercase
}

.cookie {
    position: fixed;
    bottom: 30px;
    left: 20px;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    display: none;
}

.cookie-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
}

.cookie-title span {
    font-size: 36px;
    cursor: pointer;
}

.cookie-text {
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
}

.cookie-button {
    border: 1px solid black;
    outline: none;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.cookie-button btn{
    width: 100%;
}

#modal_send:disabled,
.disabled-button:disabled {
    background-color: #41464b !important;
    color: white !important;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}
#callback:disabled {
    background-color: #ccc;
    color: #666;
    cursor: default;
    pointer-events: none;
    opacity: 0.6;
}
.consent-line, .consent-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}
.modal .modal-wrapper .wrapper-form .form-wp  input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
}

.politika {
    color: blue;
}
.consent-line label, .consent-checkbox label {
    flex-grow: 1;    /* чтобы лейбл занял всё оставшееся пространство */
    white-space: normal; /* разрешить переносы */

}
#consentCheckboxtwo {
    width: 20px;      /* фиксированная ширина */
    height: 20px;     /* фиксированная высота */
    min-width: 20px;  /* минимальная ширина */
    min-height: 20px; /* минимальная высота */
    flex-shrink: 0;   /* не сжимать в flex-контейнере */
    cursor: pointer;  /* курсор при наведении */
}


#content-polit {
    padding: 100px 30px;
    max-width: 800px;
    margin: 0 auto;
}