:root{
    --global-base-margin:15px;
    --main-container:1640px;
    --max-width-container: 1920px;
    --lt-container:1540px;

    --section-padding: 120px;
    --section-title:90px;
    --section-title-minus:30px;

    --def-marginSection:40px;

    --def-padding:12px;
    --def-transition:0.3s ease;
    --def-border:20px;

    --color-main:#222324;
    --color-mainOp:#22232480;
    --color-white:#FFF;
    --color-grafit:#48494F;
    --color-gr:#48494f3d;
    --color-green:#013220;
    --color-bej:#F2E2CB;
    --color-bejOpacity:#fff3;
    --color-yellow:#FFD600;
    --color-bronz:#CD8032;

    --btnMargin:7px;

    --base-size:16px;
    --size14:14px;
    --size16:16px;
    --size18:18px;
    --size20:20px;
    --size22:22px;
    --size24:24px;

}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
::-webkit-scrollbar {
  /*width: 0;*/
}
audio,
canvas,
iframe,
img,
svg,
video { 
    vertical-align: middle; 
}
canvas,
img,
video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}
img:not([src]) {
    min-width: 1px;
    visibility: hidden;
}
iframe { 
    border: 0; 
}
.body-overflow {
    overflow: hidden;
    overflow: clip;
    position: relative;
}
html {
    min-width: 360px;
}
p,
ul,
ol,
dl,
pre,
address,
fieldset,
figure {
    margin: 0;
}
* + p,
* + ul,
* + ol,
* + dl,
* + pre,
* + address,
* + fieldset,
* + figure {
    margin-top: var(--global-base-margin);
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-weight: 600;
}
h1 + p, 
h2 + p, 
h3 + p, 
h4 + p, 
h5 + p, 
h6 + p {
    margin-top: 0;
}
h1{
    font-size: 52px;
}
h2{
    font-size: 44px;
}
h3{
    font-size: 36px;
}
h4{
    font-size: 28px;
}
h5{
    font-size: 24px;
}
h6{
    font-size: 20px;
}
.h_need_top {
    margin-top: var(--global-base-margin);
}
p {
    /*line-height: var(--default-line-height);*/
}
li{

}
ul li:last-child{
    margin-bottom: 0px;
}
a {
    outline: 0;
    text-decoration: none !important;
    /*color: var(--color-yellow);*/
    text-decoration-line: none;
    transition: all var(--def-transition);
    cursor: pointer;
}
a:hover {
    transition: all var(--def-transition);
}
a:hover:not(.site-btn):not(.section-btn) {
    /*color: var(--color-yellow);*/
}
a:focus,
input:focus{
    /*color: inherit !important;*/
    outline: none !important;
}
b, strong {
    font-weight: 700;
    color: var(--color-bronz);
    transition: all var(--def-transition);
}
ul,ol{
    padding: 0;
    margin: 0;
    position: relative;
}
ul{
    list-style: none;
}
ul li{
    position: relative;
}
ul li:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    border: 1px solid var(--color-bronz);
}
.site-text{
    line-height: var(--def-lineHeight);
}
.site-text ul,
.site-text ol {
    padding-left: 20px;
    margin-top: var(--global-base-margin);
    margin-bottom: var(--global-base-margin);
}
.site-text ul:first-child,
.site-text ol:first-child{
    margin-top: 0px;
    margin-bottom: 0px;
}
.site-text ul li{
    position: relative;
}
.site-text ul li:not(:last-child),
.site-text ol li:not(:last-child){
    margin-bottom: 10px;
}
.site-text ul:last-child,
.site-text ol:last-child{
    margin-bottom: 0px;
}
.site-text h1:first-child,
.site-text h2:first-child,
.site-text h3:first-child,
.site-text h4:first-child,
.site-text h5:first-child,
.site-text h6:first-child{
    margin-top: 0px;
}
html, body{
    font-weight: 400;
}
html{
    margin-left: auto;
    margin-right: auto;
}
body{
    margin: 0;
    font-size: var(--base-size);
    color: var(--color-main);
    overflow-x: hidden;
    font-family: 'Montserrat';
    font-weight: 400;
}
input,
textarea,
select,
select option,
button{
    font-family: 'Montserrat';
}
input:focus,
textarea:focus {
    outline: none !important; 
    box-shadow: none !important;  
}
.site-btn{
    display: inline-block;
    padding: 15px 30px;
    font-size: var(--size14);
    transition: var(--def-transition);
    font-weight: 500;
    border: 1px solid transparent;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
}
.site-btn:hover{
    transition: var(--def-transition);
}
.site-btn--default{
    color: var(--color-white);
    border-color: var(--color-white);
}
.site-btn--default:hover{
    color: var(--color-bronz);
    border-color: var(--color-bronz);
}
.site-btn--bronz{
    color: var(--color-main);
    border-color: var(--color-bronz);
}
.site-btn--bronz:hover{
    color: var(--color-main);
    border-color: var(--color-gr);
}
.wrap-site-btn {
    display: flex;
    flex-wrap: wrap;
}
.site-btn-arrow {
    width: 50px;
    height: 50px;
    position: relative;
    transition: var(--def-transition);
    margin-left: var(--btnMargin);
    margin-right: var(--btnMargin);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0px;
    outline: none;
    box-shadow: none;
    background: transparent;
}
.site-btn-arrow svg{
    transition: var(--def-transition);
}
.site-btn-arrow:hover svg{
    transform: rotate(90deg);
}
.site-btn-arrow:hover::before{
    left: 2px;
    border-color: var(--color-bronz);
}
.site-btn-arrow:hover::after{
    right: 2px;
    border-color: var(--color-bronz);
}
.wrap-btn-arrow__svg{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main);
/*    width: calc(100% - 15px);
    height: calc(100% - 15px);*/
    width: 35px;
    height: 35px;
}
.site-btn-arrow--gray .wrap-btn-arrow__svg{
    background: #2223241A;
}
.site-btn-arrow--gray.site-btn-arrow:after, 
.site-btn-arrow--gray.site-btn-arrow:before{
    border-color: rgb(205 128 50 / 50%);
}
.site-btn-arrow--white .wrap-btn-arrow__svg{
    background: var(--color-white);
}
.site-btn-arrow--white.site-btn-arrow:after, 
.site-btn-arrow--white.site-btn-arrow:before{
    border-color: var(--color-bej);
}
.site-btn-arrow:after, .site-btn-arrow:before {
    content: '';
    width: 8px;
    height: calc(100% + 0px);
    position: absolute;
    top: 0px;
    border-top: 1px solid var(--color-bej);
    border-bottom: 1px solid var(--color-bej);
    transition: var(--def-transition);
}
.site-btn-arrow:before{
    /*left: calc(var(--btnMargin) * -1);*/
    left: 0;
    border-left: 1px solid var(--color-bej);
}
.site-btn-arrow:after{
    /*right: calc(var(--btnMargin) * -1);*/
    right: 0;
    border-right: 1px solid var(--color-bej);
}
.section-btn{
    transition: var(--def-transition);
    font-size: var(--size14);
    line-height: 1;
    padding-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.section-btn:hover{
    transition: var(--def-transition);
}
.section-btn:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
}
.section-btn--default{
    color: var(--color-white);
}
.section-btn--default:before{
    border-right: 1px solid var(--color-bej);
    border-left: 1px solid var(--color-bej);
    border-bottom: 1px solid var(--color-bej);
    transition: var(--def-transition);
}
.section-btn-svg {
    display: inline-block;
}
.section-btn-svg svg{
    width: 26px;
    height: 26px;
}
.section-btn--default:hover{
    color: var(--color-bronz);
}
.section-btn--default:hover::before{
    border-color: var(--color-bronz);
    transition: var(--def-transition);
}
.section-title{
    font-size: 52px;
    font-weight: 600;
    text-transform: uppercase;
}
.sub-section-title{
    margin-top: 15px;
    text-transform: uppercase;
    color: var(--color-bronz);
    font-size: var(--size20);
}
.wrap-section-title{
    margin-bottom: 70px;
}
.wrap-section-title--v2{
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.wrap-section-title--v2 .section-column{
    width: 50%;
}
.wrap-section-title--v2 .sub-section-title{
    margin-top: 0px;
    font-size: var(--size16);
    color: var(--color-main);
    text-transform: unset;
}
.section-column--right--v2{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
}
.section-column--right--v2 .sub-section-title{
    flex: 1;
    font-weight: 500;
}
.section-column--right--v2 .sub-section-more{
    width: 230px;
}
.site-btn-custom{
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 15px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: var(--size14);
    font-weight: 500;
    transition: var(--def-transition);
    position: relative;
    border-bottom: 1px solid transparent;
}
.site-btn-custom:after,
.site-btn-custom:before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 8px;
    background: transparent;
}
.site-btn-custom:before{
    left: 0;
}
.site-btn-custom:after{
    right: 0;
}
.site-btn-custom__arrow{
    display: flex;
    transition: var(--def-transition);
}
.site-btn-custom:hover .site-btn-custom__arrow{
    transform: rotate(95deg);
    transition: var(--def-transition);
}
.site-btn-custom--default{
    color: var(--color-main);
    border-color: var(--color-bronz);
}
.site-btn-custom--default:hover{
    color: var(--color-bronz);
}
.site-btn-custom--default:after,
.site-btn-custom--default:before{
    background: var(--color-bronz);
}
/* wr-container */
.wr-container {
    --global-wrc-horizontal: 0px;
    --global-wrc-vertical: 0px;
    --global-wrc-child-width: auto;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    margin-left: calc(-1 * var(--global-wrc-horizontal));
    margin-bottom: calc(-1 * var(--global-wrc-vertical));
    list-style: none;
}
.wr-container:not(.wr-container-inside) > * {
    width: var(--global-wrc-child-width);
    max-width: var(--global-wrc-child-width);
    padding-left: var(--global-wrc-horizontal);
    margin-bottom: var(--global-wrc-vertical);
    box-sizing: border-box;
}
.wr-container.wr-container-inside > * {
    flex: 0 0 calc(var(--global-wrc-child-width) - var(--global-wrc-horizontal));
    max-width: calc(var(--global-wrc-child-width) - var(--global-wrc-horizontal));
    margin-left: var(--global-wrc-horizontal);
    margin-bottom: var(--global-wrc-vertical);
    box-sizing: border-box;
}
.wrc-one{
    --global-wrc-child-width: 100%;
}
.wrc-two{
    --global-wrc-child-width: 50%;
}
.wrc-three{
    --global-wrc-child-width: 33.3333%;
}
.wrc-four{
    --global-wrc-child-width: 25%;
}
.wrc--clearHor{
    --global-wrc-horizontal: 0px;
}
.wrc--clearVert{
    --global-wrc-vertical: 0px;
}
.wrc--clearAll{
    --global-wrc-horizontal: 0px;
    --global-wrc-vertical: 0px;
}
.wrc-two.revers > .wrc-item:first-child{
    order: 2;
}
.wrc-two--blocks{
    --global-wrc-horizontal: 40px;
    --global-wrc-vertical: 0px;
    margin-bottom: 80px;
}
/**/
.site-overflow{
    overflow: hidden;
    overflow: clip;
    position: relative;
}
.site-container{
    max-width: var(--main-container);
    padding-left: var(--def-padding);
    padding-right: var(--def-padding);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.site-section--full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.site-container--max{
    max-width: var(--max-width-container);
    padding-left: var(--def-padding);
    padding-right: var(--def-padding);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.site-container--lt{
    max-width: var(--lt-container);
    padding-left: var(--def-padding);
    padding-right: var(--def-padding);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.clear--padding{
    padding-left: 0px;
    padding-right: 0px;
}
/**/
.site-section{
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    position: relative;
}
.margin-section{
    margin-top: var(--def-marginSection);
    margin-bottom: var(--def-marginSection);
}
.margin-section--top{
    margin-top: var(--def-marginSection);
}
.margin-section--bottom{
    margin-bottom: var(--def-marginSection);
}
.site-section-content--default .site-section-content{
    max-width: var(--main-container);
    padding-left: var(--def-padding);
    padding-right: var(--def-padding);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.clear-section--padding,
.other-page .clear-section--padding{
    padding-top: 0px;
    padding-bottom: 0px;
}
.clear-section--paddingBottom,
.other-page .clear-section--paddingBottom{
    padding-bottom: 0px;
}
.clear-section--paddingTop,
.other-page .clear-section--paddingTop{
    padding-top: 0px;
}
/**/

/*global default*/
.position-relative{
    position: relative;
}
.ov-site-hidden{
    overflow: hidden;
}
.scale-anim{
    overflow: hidden;
}
.scale-anim img{
    transition: var(--def-transition);
}
.scale-anim:hover img{
    transition: var(--def-transition);
    transform: scale(1.1);
}
.sticky-anim{
    position: sticky;
    top: 140px;
}
.fullBlock {
    --global-wrc-child-width: auto !important;
}
.clearMarginHorizontal{
    margin-top: 0px;
    margin-bottom: 0px;
}
.wrc-item--full{
    --global-wrc-child-width: 100%;
}
.site-wrapper .mgBottom--40{
    margin-bottom: 40px;
}
.site-wrapper .mgTop--40{
    margin-top: 40px;
}
.site-wrapper{
    position: relative;
}
.cont-shadow .site-wrapper:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-gray);
    opacity: 0.8;
    transition: var(--def-transition);
    z-index: 990;
}
body.cont-shadow{
    overflow: hidden;
}
.cover-img,
img.cover{
    object-fit: cover !important;
    height: 100%;
    width: 100%;
}
.contain-img,
img.contain{
    object-fit: contain !important;
    width: auto;
    height: auto;
}
.contain-img--params{
    width: 100%;
    height: 100%;
}
.text-center{
    text-align: center;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-uppercase{
    text-transform: uppercase;
}
.text-decoration{
    text-decoration: underline;
}
body .disp-none{
    display: none;
}
.video-overlay {
    display: none;
}
.disp-flex{
    display: flex;
}
.margin-left{
    margin-left: auto;
}
.margin-right{
    margin-right: auto;
}
/*end global*/







/*banner*/
.section-banner{
    min-height: 1000px;
    height: 100vh;
    max-height: 1000px;
}
.wrap-section-banner{
    position: relative;
}
.banner-fon{
    position: absolute;
    width: 100%;
    height: 100%;
}
.banner-fon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(0deg, #222324, #222324),linear-gradient(180deg, rgba(34, 35, 36, 0) 85%, #222324 100%);*/
    background: linear-gradient(0deg, #222324c9, #222324c9), linear-gradient(180deg, rgba(34, 35, 36, 0) 85%, #222324 100%);
    z-index: 20;
}
.section-banner .site-section-content,
.section-banner .wrap-section-banner,
.section-banner .banner-fon,
.section-banner figure,
.custom-video-player{
    height: 100%;
}
.banner-fon video,
.banner-fon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-info {
    position: relative;
    z-index: 50;
    height: 100%;
    display: flex;
    padding-top: 200px;
    padding-bottom: 105px;
    align-items: end;
    color: var(--color-white);
}
.banner-title{
    font-size: 64px;
    font-weight: 700;
    color: var(--color-bej);
    line-height: 1;
}
.wrc-banner{
    width: 100%;
    align-items: end;
}
.wrc-banner .wrc-banner-left{
    flex:1;
}
.wrc-banner .wrc-banner-right{
    --global-wrc-child-width: 460px;
    margin-left: 30px;
}
.banner-desc {
    margin-top: 40px;
    font-size: 34px;
}
.banner-title >*{
    font-size: inherit;
    margin: 0px;
    font-weight: inherit;
}
.banner-btns{
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
    align-items: end;
    column-gap: 70px;
    row-gap: 20px;
}
.wrc-banner-prems{
    --global-wrc-child-width: 50%;
}
.wrc-banner-prems .wrc-banner-prems__item{
    padding: 30px;
    display: flex;
    align-items: center;
}
.wrc-banner-prems .wrc-banner-prems__item--0{
    padding-left: 0px;
    padding-top: 0px;
    border-bottom: 1px solid var(--color-bejOpacity);
    border-right: 1px solid var(--color-bejOpacity);
}
.wrc-banner-prems .wrc-banner-prems__item--1{
    padding-top: 0px; 
    border-bottom: 1px solid var(--color-bejOpacity);
}
.wrc-banner-prems .wrc-banner-prems__item--2{
    padding-left: 0px;
    padding-bottom: 0px;
    border-right: 1px solid var(--color-bejOpacity);
}
.wrc-banner-prems .wrc-banner-prems__item--icon{
    padding-bottom: 0px;
}
.benner-prems__title {
    font-weight: 500;
    font-size: var(--size20);
    color: var(--color-bej);
}
/*end banner*/

/*advantagess*/
.section-advantages {
    background: var(--color-main);
    padding-top: 65px;
    padding-bottom: 65px;
}
.wrc-advantages{
    --global-wrc-child-width: 16.6666%;
}
.wrap-advantages-item {
    padding: 0 20px;
    display: flex;
    align-items: center;
    color: var(--color-bej);
    gap: 14px;
    padding-top: 50px;
    position: relative;
    border-top: 1px solid var(--color-bejOpacity);
}
.advantages-item__img {
    display: flex;
    max-width: 25px;
    min-width: 20px;
    align-items: center;
    justify-content: center;
}
.wrap-advantages-item:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 8px;
    left: 0;
    top: 0;
    background: var(--color-bejOpacity);
}
.wrc-advantages .wrc-item:last-child .wrap-advantages-item:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 8px;
    right: 0;
    top: 0;
    background: var(--color-bejOpacity);
}
/*end*/

/*projects*/
.wrc-projects{
    --global-wrc-horizontal: 80px;
    --global-wrc-vertical: 50px;
}
.wrc-projects .project-img{
    height: 450px;
    overflow: hidden;
}
.project-info {
    padding-top: 30px;
}
.project-info__title {
    font-weight: 700;
    font-size: var(--size24);
    margin-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
}
.wrc-projects-params{
    --global-wrc-horizontal: 0px;
    --global-wrc-child-width: 33.3333%;
}
.wrc-projects-params__title {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 5px;
}
.wrc-projects-params__text {
    font-weight: 700;
    font-size: var(--size20);
}
.wrap-item-project-params{
    padding-bottom: 30px;
    padding-left: 18px;
    padding-right: 18px;
}
.wrc-projects-params .wrc-item{
    padding: 0 12px;
    border-bottom: 1px solid var(--color-gr);
    position: relative;
}
.wrc-projects-params .wrc-item:before,
.wrc-projects-params .wrc-item:last-child::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: var(--color-gr);
}
.wrc-projects-params .wrc-item:last-child::after{
    left: auto;
    right: 0;
}
.wrc-projects-params .wrc-item:last-child::before{
    height: 100%;
}
/*end*/

/*work*/
.section-work{
    background: var(--color-bej);
}
.wrap-step {
    padding: 55px 30px 50px 30px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-right: 1px solid var(--color-gr);
    border-bottom: 1px solid var(--color-gr);
}
.wrc-steps:not(.steps-reverse) .wrc-item:last-child .wrap-step{
    border-right: 0px;
}
.wrc-steps.steps-reverse .wrc-item:first-child .wrap-step{
     border-right: 0px;
}
.wrc-steps.steps-reverse .wrap-step{
    border-bottom: 0px;
}
.wrc-steps.steps-reverse .wrap-step.need{
    border-bottom: 1px solid var(--color-gr);
}
.step-title {
    font-weight: 500;
    font-size: 20px;
}
.step-title span{
    margin-right: 50px;
}
.steps-reverse{
    flex-direction: row-reverse;
}
.wrc-steps:not(.steps-reverse) .wrc-item:last-child .step-svg{
    transform: rotate(90deg);
}
.steps-reverse .step-svg {
    transform: rotate(180deg);
}
.wrapper-steps{
    margin-bottom: 80px;
}
.wrap-u-get__title {
    font-size: var(--size14);
    font-weight: 600;
    color: var(--color-mainOp);
    margin-bottom: 24px;
}
.item-u-get {
    padding: 0 10px 25px 10px;
}
.u-get-title {
    font-size: var(--size14);
    font-weight: 500;
}
.wrc-u-get .wrc-item{
    border-bottom: 1px solid var(--color-gr);
    position: relative;
}
.wrc-u-get .wrc-item:before, 
.wrc-u-get .wrc-item:last-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: var(--color-gr);
}
.wrc-u-get .wrc-item:last-child::after{
    left: auto;
    right: 0;
}
.section-work .site-section-content{
    position: relative;
}
.section-work__img {
    position: absolute;
    right: 65px;
    bottom: -90px;
    z-index: 1;
    user-select: none;
}
.section-work .wrap-section-title--v2,
.wrapper-steps,
.wrc-total{
    position: relative;
    z-index: 20;
}
/*end work*/

/*finish-work*/
.slider-finish-img {
    height: 670px;
    overflow: hidden;
    position: relative;
}
.slider-finish-img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(34, 35, 36, 0) 0%, rgba(34, 35, 36, 0.6) 100%);
    z-index: 1;
}
.slider-finish-img .cover-img {
    display: block;
    width: 100%;
}
.slider-finish-img .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.75s ease;
}
.slider-finish-img:hover .hover-img {
    opacity: 1;
}
.wrap-finish{
    position: relative;
}
.slider-finish-info {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 30px;
    width: 100%;
    padding: 0 30px;
    color: var(--color-white);
}
.slider-finish__title {
    font-weight: 700;
    font-size: var(--size24);
}
.wrc-finish{
    margin-top: 20px;
    border-top: 1px solid var(--color-bejOpacity);
}
.wrc-finish .wrc-item{
    padding-top: 15px;
    position: relative;
}
.wrc-finish .wrc-item:before,
.wrc-finish .wrc-item:last-child::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 8px;
    left: 0;
    top: 0;
    background: var(--color-bejOpacity);
}
.wrc-finish .wrc-item:last-child::after{
    left: auto;
    right: 0;
}
.wrap-param-finish {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
}
.param-finish__title {
    font-weight: 300;
}
.param-finish__text {
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wrc-banner-form{
    --global-wrc-horizontal: 80px;
}
/*end*/


/*banner-form*/
.wrc-banner-form .wrc-item-right{
    --global-wrc-child-width: calc(100% / 3);
}
.wrc-banner-form .wrc-item-left{
    flex: 1;
}
.section-banner-form{
    background: var(--color-grafit);
    color: var(--color-white);
}
.site-form-items .site-form__item{
    padding: 26px 30px 30px 50px;
}
.site-form__item-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff66;
}
.site-form__item:not(.site-form-submit) input,
.site-form__item select{
    background: transparent !important;
    border: 0px !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0px;
    color: var(--color-white);
    font-size: var(--size20);
}
.site-form__item input::placeholder,
.site-form__item select::placeholder {
    color: var(--color-white);
}
body .iti--separate-dial-code .iti__selected-flag {
    background-color: var(--color-mainOp);
    padding: 0px 20px;
    height: 40px;
}
.site-form-tel.init-phone .wpcf7-tel{
    height: 40px;
    width: 100%;
}
body .iti__country-list {
    background: var(--color-mainOp);
    box-shadow: none;
    overflow: auto;
    margin: 0;
    border-color: var(--color-bronz);
    padding: 10px;
}
.site-form-items .site-form__item:nth-child(2n+1){
    border-right: 1px solid var(--color-bejOpacity);
}
.site-form-items .site-form__item:nth-child(4n + 3),
.site-form-items .site-form__item:nth-child(4n + 4) {
    border-top: 1px solid var(--color-bejOpacity);
}
.site-form-items .site-form__item.site-form-submit{
    border:0px;
}
.site-form-btns {
    margin-top: 100px;
    align-items: center;
}
.wrc-banner-form__img{
    height: 100%;
}
/*end*/


/*construction*/
.construction-item {
    padding: 10px;
}
.construction-item.construction-item--big {
    padding: 10px 40px;
}
.construction-item__img{
    height: 400px;
    overflow: hidden;
}
.construction-title {
    font-size: 28px;
    font-weight: 500;
}
.construction-params__title {
    font-weight: 300;
    margin-bottom: 5px;
}
.construction-params__text{
    font-weight: 700;
    font-size: var(--size20);
}
.wrc-construction-title {
    --global-wrc-horizontal: 10px;
    align-items: end;
}
.construction-desc{
    margin-top: 40px;
}
.construction-blc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.wrap-construction-elements .wrc-double-block:not(:last-child){
    margin-bottom: 30px;
}
/*end*/
















/*form*/
.site-form__item{
    position: relative;
}
.wpcf7-response-output{
    display: none !important;
}
.site-form__item .wpcf7-not-valid-tip {
    display: none !important;
    position: absolute;
    bottom: 0px;
    left: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #f63333;
    letter-spacing: 2.3px;
}
.site-form__item .wpcf7-not-valid,
.site-form__item .wpcf7-not-valid::placeholder{
    color: #f63333;
}
.site-form-title {
    text-align: center;
    font-size: var(--size24);
    color: var(--color-bronz);
    font-weight: 600;
    margin-bottom: 10px;
}
.site-form-desc {
    text-align: center;
    font-size: var(--size14);
    font-weight: 500;
    margin-bottom: 30px;
}
.wpcf7-spinner{
    display: none !important;
}
.site-form__item.site-form-submit {
    display: flex;
    align-items: center;
}
.garantii {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #ffffff66;
    font-size: var(--size14);
    font-weight: 500;
}
.garantii svg path{
    fill: #ffffff66;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #fff; 
  transition: background-color 9999s ease-in-out 0s;
}
.success-form{
    text-align: center;
    font-size: var(--size18);
}
.ajax-conform .site-form-items .site-form__item {
    border: 0px;
    padding: 10px 10px 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-bejOpacity);
}
/**/

/*fancybox*/
.fancybox-container .fancybox-content {
    max-width: 600px;
    overflow: hidden;
    background: var(--color-grafit);
    color: var(--color-white);
}
/*end fancy*/


/*custom select*/
.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}
.custom-select__selected {
    font-size: var(--size20);
    position: relative;
    padding-right: 20px;
}
.custom-select__selected::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='7' viewBox='0 0 13 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6.5 6L12 1' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: transform 0.3s ease;
}
.custom-select.open .custom-select__selected::after {
    transform: translateY(-50%) rotate(180deg);
}
.custom-select__dropdown {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    background: var(--color-mainOp);
    box-shadow: none;
    overflow: auto;
    margin: 0;
    border-color: var(--color-bronz);
    padding: 10px;
    margin-top: 10px;
}
.custom-select.open .custom-select__dropdown {
    display: block;
}
.custom-select__option {
    padding: 12px;
}
.custom-select__option:hover {
    background: var(--color-bronz);
}
/*end*/


/*swiper*/
.swiper-panel--default{
    padding: 10px;
    background: var(--color-main);
    color: var(--color-white);
    position: absolute;
    width: fit-content;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.swiper-panel--bottom{
    bottom: 30px;
}
.swiper-panel--right{
    right: 30px;
}
.swiper-panel__numbs {
    font-size: 26px;
    display: flex;
    align-items: end;
    gap: 4px;
    font-family: 'Dorsa';
    user-select: none;
}
.current-slide {
    font-size: 46px;
    line-height: 0.85;
}
.swiper-panel .swiper-button-prev:after, 
.swiper-panel .swiper-rtl .swiper-button-next:after{
    font-size: inherit;
    content: url("data:image/svg+xml,%3Csvg width='19' height='17' viewBox='0 0 19 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.218 8.33844L0.724803 8.33846M0.724803 8.33846H0.68277M0.724803 8.33846L8.70974 0.353516M0.724803 8.33846L0.707131 8.35613L8.70452 16.3535' stroke='%23CD8032'/%3E%3C/svg%3E%0A");
    transition: var(--def-transition);
    outline: none !important;
    box-shadow: none !important;
}
.swiper-panel .swiper-button-prev.swiper-button-disabled:after, 
.swiper-panel .swiper-rtl .swiper-button-next.swiper-button-disabled:after{
    font-size: inherit;
    content: url("data:image/svg+xml,%3Csvg width='19' height='17' viewBox='0 0 19 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.218 8.33844L0.724803 8.33846M0.724803 8.33846H0.68277M0.724803 8.33846L8.70974 0.353516M0.724803 8.33846L0.707131 8.35613L8.70452 16.3535' stroke='%23CD8032'/%3E%3C/svg%3E%0A");
    transition: var(--def-transition);
    outline: none !important;
    box-shadow: none !important;
}
.swiper-panel .swiper-button-next:after, 
.swiper-panel .swiper-rtl .swiper-button-prev:after{
    font-size: inherit;
    content: url("data:image/svg+xml,%3Csvg width='19' height='17' viewBox='0 0 19 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8.33844L17.4932 8.33846M17.4932 8.33846H17.5352M17.4932 8.33846L9.50827 0.353516M17.4932 8.33846L17.5109 8.35613L9.5135 16.3535' stroke='%23CD8032'/%3E%3C/svg%3E%0A");
    transition: var(--def-transition);
    outline: none !important;
    box-shadow: none !important;
}
.swiper-panel .swiper-button-next.swiper-button-disabled:after, 
.swiper-panel .swiper-rtl .swiper-button-prev.swiper-button-disabled:after{
    font-size: inherit;
    content: url("data:image/svg+xml,%3Csvg width='19' height='17' viewBox='0 0 19 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8.33844L17.4932 8.33846M17.4932 8.33846H17.5352M17.4932 8.33846L9.50827 0.353516M17.4932 8.33846L17.5109 8.35613L9.5135 16.3535' stroke='%23CD8032'/%3E%3C/svg%3E%0A");
    transition: var(--def-transition);
    outline: none !important;
    box-shadow: none !important;
}
.swiper-panel .swiper-button-next.swiper-button-disabled, 
.swiper-panel .swiper-button-prev.swiper-button-disabled{
    opacity: 1;
}
.swiper-panel .swiper-button-next:hover::after,
.swiper-panel .swiper-button-prev:hover::after{
    animation: swingRotate 0.5s ease;
}
@keyframes swingRotate {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(-20deg); }
    50%  { transform: rotate(16deg); }
    75%  { transform: rotate(-12deg); }
    100% { transform: rotate(0deg); }
}
.swiper-panel .swiper-panel__btn--v2 .swiper-button-prev:after, 
.swiper-panel .swiper-panel__btn--v2 .swiper-rtl .swiper-button-next:after{
    content: url("data:image/svg+xml,%3Csvg width='19' height='17' viewBox='0 0 19 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.218 8.33844L0.724803 8.33846M0.724803 8.33846H0.68277M0.724803 8.33846L8.70974 0.353516M0.724803 8.33846L0.707131 8.35613L8.70452 16.3535' stroke='%23222324'/%3E%3C/svg%3E%0A");
}
.swiper-panel .swiper-panel__btn--v2 .swiper-button-next:after, 
.swiper-panel .swiper-panel__btn--v2 .swiper-rtl .swiper-button-prev:after{
    content: url("data:image/svg+xml,%3Csvg width='19' height='17' viewBox='0 0 19 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8.33844L17.4932 8.33846M17.4932 8.33846H17.5352M17.4932 8.33846L9.50827 0.353516M17.4932 8.33846L17.5109 8.35613L9.5135 16.3535' stroke='%23222324'/%3E%3C/svg%3E%0A");
}
.swiper-panel__btn.swiper-panel__btn--v2 .swiper-button-next,
.swiper-panel__btn.swiper-panel__btn--v2 .swiper-button-prev{
    width: 100%;
    height: 100%;
}
.swiper-panel__btn .swiper-button-prev,
.swiper-panel__btn .swiper-button-next{
    position: inherit;
    left: auto;
    top: auto;
    right:auto;
    bottom: auto;
    width: fit-content;
    height: fit-content;
    margin-top: 0px;
}
.swiper-panel__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
}
.swiper-panel__btn--v2{
    justify-content: end;
}
.swiper-panel-container {
    order: 2;
}
.swiper-panel__btn-sep {
    width: 2px;
    height: 16px;
    background: var(--color-bejOpacity);
}
/*end*/

/*media*/
@media (max-width: 360px) {
    .site-section--full {
        width: 360px;
        max-width: 360px;
        margin-left: calc(-360px/2 + 50%);
        margin-right: calc(-360px/2 + 50%);
    }
}