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

    --section-padding: 80px;
    --section-title:90px;

    --def-marginSection:40px;

    --def-padding:30px;
    --def-transition:0.3s ease;

    --color-main:#333641;
    --color-white:#FFF;
    --color-blue:#1b97ff;
    --color-grey:#708090;

    --base-size:18px;
    --size16:16px;
    --size20:20px;
    --size22:22px;
    --size48:48px;

    --widthColumn: 250px;

}
*, :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: 700;
}
h1 + p, 
h2 + p, 
h3 + p, 
h4 + p, 
h5 + p, 
h6 + p {
    margin-top: 0;
}
.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-fiol);
    text-decoration-line: none;
    transition: all var(--def-transition);
    cursor: pointer;
}
a:hover {
    transition: all var(--def-transition);
    /*color: var(--color-blue);*/
}
a:focus,
input:focus{
    /*color: inherit !important;*/
    outline: none !important;
}
b, strong {
    font-weight: 700;
    transition: all var(--def-transition);
}
ul,ol{
    padding: 0;
    margin: 0;
}
.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 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;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 3px 16px;
    text-decoration: none;
    transition: var(--def-transition);
}
.site-btn--default{
    background: var(--color-white);
    border: 1px solid var(--color-grey);
}
.site-btn--default:hover{
    color: var(--color-blue);
    background-color: #e9eef3;
    border-color: #1b97ff5c;
}
.site-btn--big{
    padding: 12px 24px;
}
.site-btn--white{
    background: var(--color-white);
    color: var(--color-blue);
}
.site-btn--white:hover{
    background: transparent;
    border-color: var(--color-blue);
}

.section-title {
    font-weight: 400;
    font-size: 30px;
}
.section-title >*{
    font-size: inherit;
    margin: 0px;
    font-weight: inherit;
}
.section-title--mgBig{
    margin-bottom: 45px;
}
body .wrap-section-title,
body .v2-sc-title{
    margin-bottom: 60px;
}
body .wrap-section-title--v2{
    margin-bottom: 0px;
}
.section-bottom-btn{
    margin-top: var(--def-marginSection);
}
.column-title {
    font-size: 24px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}
.column-title:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(0%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: var(--color-blue);
}
.column-btn,
.sub-section-more{
    margin-top: 35px;
}
.def-column-btn{
    font-size: var(--size16);
}

/* wr-container */
.wr-container {
    --global-wrc-horizontal: 24px;
    --global-wrc-vertical: 24px;
    --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;
}
.wrc-item-img{
    height: 345px;
    overflow: hidden;
    border-radius: 40px;
}
.wrc-item-text{
    padding: 20px;
}
.wrap-blocks.revers{
    background: var(--color-white);
    border-radius: 50px;
    padding: 20px;
    margin-bottom: 80px;
}
.wrap-blocks.revers .wrc-two--blocks{
    --global-wrc-horizontal: 20px;
    margin-bottom: 0px;
}
/**/
.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;
}
.site-section--big{
    padding-top: calc(var(--section-padding) * 2);
    padding-bottom: calc(var(--section-padding) * 2);
    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: 120px;
}
.height-fit{
    height: fit-content;
}
.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;
}
.site-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/wp-content/uploads/2026/03/bg.webp') repeat;
    opacity: 0.5; 
    z-index: -1;
    user-select: none;
}
.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*/

/*site sett*/
.widthColumn,
.wr-container.wr-container-inside .widthColumn,
.wr-container .widthColumn{
    width: var(--widthColumn);
}
.widthColumnRight,
.wr-container.wr-container-inside .widthColumnRight,
.wr-container .widthColumnRight{
    flex: 1;
    width: calc(100% - var(--widthColumn));
}
/*end*/

/*header*/
.site-header {
    position: relative;
    z-index: 100;
    backdrop-filter: blur(30px);
    background-color: #ffffff30;
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid #708090;
}
.absolute-header .site-header {
    /*position: absolute;*/
    position: fixed;
    z-index: 2000;
    left: 0;
    right: 0;
    top: 0px;
}
.site-header.is-sticky {
    position: fixed;
    z-index: 999;
    width: 100%;
    animation: slideDown 0.35s ease-out;
    left: 0;
    top: 0px;
    background: var(--color-white);
    border-color: #f5f5f5;
}
.site-overflow.absolute-header .site-header:not(.is-sticky) .site-logo svg path{
    fill: var(--color-white);
}
.site-header.is-sticky .wrap-header-menu .header-menu-main-link a{
    color: var(--color-main);
}
.site-header.is-sticky .menu-arrow svg path{
    fill: var(--color-main);
}
.site-header.is-sticky .header-block-mobile,
.site-header.is-sticky .header-block-mobile a{
    color: var(--color-main);
}
.site-header.is-sticky .header-block-mobile svg path{
    fill: var(--color-main);
}

.default-header .site-header.is-sticky{
    background: var(--color-white);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.wrc-header{
    --global-wrc-vertical: 0px;
    align-items: center;
    padding: 25px 0;
}
.wrc-header .header-logo{
    --global-wrc-child-width: 250px;
}
.wrc-header .wrap-header-menu{
    flex: 1;
}
.wrap-header-menu .header-menu-main-link a{
    color: var(--color-white);
    padding: 7px 0;
    position: relative;
    border-bottom: 1px solid transparent;
}
.wrap-header-menu .header-menu-main-link a:hover{
    border-color: var(--color-blue);
}
.default-header .wrap-header-menu .header-menu-main-link a{
    color: var(--color-main);
}
.default-header .menu-arrow svg path{
    stroke: var(--color-main);
}
.header-menu {
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 10px;
}
.wrap-subs-menu {
    overflow: hidden;
    transition: height 0.3s ease;
    height: 0;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    /*margin-top: 30px;*/
    background: var(--color-white);
    top: calc(100% + 1px);
    box-shadow: rgba(121, 98, 98, 0.28) 1px 8px 17px;
    height: 0px;
}
.wrap-subs-menu--before.wrap-subs-menu:before {
    content: '';
    position: absolute;
    top: 0;
    right: 1px;
    height: 100%;
    background: #f5f5f5;
    width: calc((100% - var(--main-container) + (var(--def-padding)* 2) ) / 2);
}
.wrc-subs-menu{
    --global-wrc-vertical: 0px;
}
.header-menu .wrc-subs-menu .wrc-subs-menu-col2{
    background: #f5f5f5;
    padding-left: 20px;
    padding-right: 20px;
}
.wrc-subs-menu .wrc-item{
    padding: 45px 0;
}
.wrc-subs-menu .wrc-menu-sub--v2 .wrc-item{
    padding: 0;
}
.menu-subs-v2__clname {
    color: #8a8a8a;
    text-transform: none;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 5px;
    margin-right: 0;
    margin-bottom: 10px;
    width: fit-content;
}
.menu-subs-v2 .menu-subs-v2__element:not(:last-child){
    margin-bottom: 8px;
}
.menu-subs-v2__element{
    font-size: var(--size16);
}
.menu-arrow {
    display: inline-flex;
    /*padding-left: 5px;*/
}
.info-block-btn-svg{
    display: inline-flex;
    padding-left: 2px;
}
.info-block-btn-svg svg{
    width: 10px;
    height: 10px;
}
.menu-arrow svg{
    transition: var(--def-transition);
}
.header-menu__item.open-subs .menu-arrow svg{
    transition: var(--def-transition);
    transform: rotate(180deg);
}
.top-subs-menu__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
}
.wrc-subs-menu.fullOne{
    --global-wrc-child-width: 100%;
}
.wrc-subs-menu.withsidebar .wrc-subs-menu-col1{
    --global-wrc-child-width: 70%;
}
.wrc-subs-menu.withsidebar .wrc-subs-menu-col2{
    --global-wrc-child-width: 30%;
}
.top-subs-menu__info-title {
    font-size: 16px;
    color: var(--color-blue);
    font-weight: 500;
    text-transform: uppercase;
}
.header-menu .info-block-btn{
    color: var(--color-main);
    font-weight: 500;
}
.info-block-btn{
    position: relative;
}
.info-block-btn:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    background: var(--color-main);
}
.info-block-btn:hover::before{
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
.wrc-menu-sub__item-name {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    color: rgb(109, 104, 104);
    margin-bottom: 15px;
    transition: var(--def-transition);
    font-size: 17px;
}
.wrc-menu-sub__item-desc{
    font-size: var(--size16);
}
.menu-sub-title,
.menu-right-block__title--m{
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}
.wrc-menu-sub__item-block:hover .menu-sub-title,
.menu-right-block-link:hover .menu-right-block__title--m{
    border-color: var(--color-blue);
}
.wrc-menu-sub__item-block:hover .wrc-menu-sub__item-name{
    color: #000;
}
.wrc-menu-sub__item,
.wrc-menu-sub__item-block{
    height: 100%;
}
.wrc-menu-sub__item-block{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wrc-menu-sub .wrc-menu-sub__item-img{
    height: 190px;
    overflow: hidden;
    margin-top: 15px;
}
.wrc-subs-menu-col2__title{
    font-weight: 500;
    margin-bottom: 20px;
}
.menu-right-block__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: var(--size16);
    margin-bottom: 10px;
}
.menu-right-block__desc{
    margin-bottom: 10px;
    font-size: var(--size16);
}
.menu-right-block__img {
    height: 200px;
}
.wrc-subs-menu-col2__title:not(:first-child){
    margin-top: 25px;
}
.page-title >*{
    margin: 0px;
    font-size: inherit;
    font-weight: inherit;
}
.page-title {
    font-size: 33px;
    font-weight: 600;
}
.page-section-info {
    margin-top: 50px;
    margin-bottom: 50px;
}
.header-block-mobile{
    display: none;
    flex: 1 !important;
}
.wrc-head-mobile__item--telephone a{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 22px;
}
.site-overflow.absolute-header .site-header:not(.is-sticky) .header-block-mobile{
    color: var(--color-white);
}
.site-overflow.absolute-header .site-header:not(.is-sticky) .wrc-head-mobile__item--telephone svg path{
    fill: var(--color-white);
}
.site-overflow.absolute-header .site-header.is-sticky .wrap-block-offcanvas .block-offcanvas svg path,
.site-overflow.default-header .wrap-block-offcanvas .block-offcanvas svg path{
    stroke: var(--color-main);
} 
.site-soc{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}
.wrc-head-mobile__item--telephone span{
    display: flex;
}
.site-soc__item,
.site-soc__item a{
    display: flex;
}
.wrc-head-mobile{
    align-items: center;
    --global-wrc-vertical: 0px;
}
.wrap-head-mobile-one{
    flex: 1 !important;
    justify-content: center;
    display: flex;
}
.wrap-mobile-menu ul{
    list-style: none;
}
.offcanvas-nav .sub-menu{
    display: none;
    margin-left: 10px;
    padding: 10px 0;
}
.offcanvas-nav li:not(:last-child){
    margin-bottom: 5px;
}
.icon-parent{
    position: relative;
}
.offcanvas-nav .menu-item:not(.menu-item-has-children) .icon-parent{
    display: none;
}
.offcanvas-nav .menu-item.menu-item-has-children > a .icon-parent{
    width: 20px;
    height: 20px;
    display: inline-flex;
    margin-left: 5px;
}
.icon-parent svg{
    transition: var(--def-transition);
}
.offcanvas-nav .menu-item.menu-item-has-children.open > a .icon-parent svg{
    transition: var(--def-transition);
    transform: rotate(180deg);
}
/*end*/


/*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, #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: center;
    justify-content: center;
    color: var(--color-white);
}
.banner-title{
    font-size: 45px;
    font-weight: 700;
    text-align: center;
}
.banner-title >*{
    font-size: inherit;
    margin: 0px;
    font-weight: inherit;
}
.wrc-banner-v2{
    color: var(--color-main);
    align-items: center;
    --global-wrc-horizontal: 40px;
}
.wrc-banner-v2__title{
    text-align: left;
}
.banner-desc{
    margin-top: 25px;
}
.banner-btns{
    margin-top: 35px;
}
.banner-info.banner-info{
    padding-top: 140px;
}
/**/

/*technology*/
.technology-block-item__title {
    font-size: 32px;
    margin-bottom: 15px;
}
.technology-block-item__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.technology-block-item--info {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}
.technology-block-item--imgs{
    height: 80vh;
    position: sticky;
    top: 15vh;
    overflow: hidden;
}
.technology-block-item--imgs img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    z-index:1;
    will-change: opacity;
}
.technology-block-item__img{
    display: none;
}
/*end*/


/*clients*/
.block-client-item__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.block-client-item__info{
    z-index: 20;
}
.block-client-item__info {
    z-index: 20;
    color: var(--color-white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 500px;
    justify-content: space-between;
}
.block-client-item__title{
    font-size: var(--size20);
}
.block-client-item__title span{
    font-size: 14px;
    margin-right: 5px;
}
.block-client-item__img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    background-color: #00000080;
    transition: var(--def-transition);
}
.block-client-item:hover .block-client-item__img:before {
    background-color: #000000b3;
}
.block-client-item__desc {
    max-height: 300px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.block-client-item__desc::-webkit-scrollbar {
    display: none;
}
/*end*/

/*projects*/
.projects-img {
    height: 300px;
    overflow: hidden;
}
.projects-title {
    font-size: 22px;
    margin-top: 15px;
}
.projects-btn {
    font-size: 16px;
    margin-top: 3px;
}
.wrc-projects{
    --global-wrc-horizontal: 35px;
    --global-wrc-vertical: 35px;
}
/*end*/

/*priziv*/
.wrap-priziv-img {
    z-index: -1;
    top: 0;
    height: 480px;
    position: absolute;
}
.wrap-priziv-img--left{
    left: 0;
}
.wrap-priziv-img--right{
    right: 0;
}
.wrap-priziv {
    padding: 150px 0;
    max-width: 620px;
    margin: 0 auto;
}
.priziv-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}
.priziv-btn{
    margin-top: 25px;
}
/*end priziv*/

/*footer*/
.wrc-footer .wrc-footer-item--left{
    --global-wrc-child-width: 450px;
}
.wrc-footer .wrc-footer-item--right{
    flex: 1;
}
.foot-menu-title {
    color: var(--color-blue);
    margin-bottom: 15px;
}
.footm-menu-blocks__item {
    font-size: 16px;
}
.footm-menu-blocks .footm-menu-blocks__item:not(:last-child) {
    margin-bottom: 5px;
}
.footer-copyright{
    padding-top: var(--section-padding);
    padding-bottom: 20px;
}
.text-copyritgh {
    font-size: 14px;
}
/*end*/

/*wrc-techpage*/
.wrc-techpage{
    --global-wrc-horizontal: 32px;
    --global-wrc-vertical: 32px;
}
.wrc-techpage-item--first .wrc-techpage-item__image a{
    height: 500px;
}
.wrc-techpage-item__image a{
    height: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 10px;
    display: block;
}
.wrc-techpage-item__title a{
    position: relative;
    color: #708090;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
}
.wrc-techpage-item__title a:hover{
    border-color: var(--color-blue);
    color: var(--color-blue);
}
/**/

/*wrap-grgl*/
.wrap-grgl .grgl-item:not(:first-child){
    margin-top: var(--def-marginSection);
}
.grgl-item__title {
    font-size: 28px;
    margin-bottom: 20px;
}
.grgl-item__gall{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.grgl-item__gall .grgl-item__gall-item{
    width: 50%;
}
.grgl-item__gall-item{
    height: 350px;
    overflow: hidden;
}
.grgl-item__desc {
    max-width: 50%;
    margin-bottom: 20px;
}
/**/

/*compare*/
.compare-img {
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
}
.compare-title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.compare-item .wrc-compare-block:first-child{
    margin-bottom: 25px;
}
.compare-item .wrc-compare-block:not(:first-child){
    margin-top: 20px;
}
.comparison-text{
    font-weight: 600;
    font-size: var(--size16);
}
.comparison-detail_text{
    font-size: var(--size16);
    text-align: center;
}
.wrc-compare-block .wrc-compare-block-info{
    --global-wrc-child-width: 24%;
}
.wrc-compare-block .wrc-compare-block-el{
    --global-wrc-child-width: 38%;
}
.wrap-compare-scroll{
    display: none;
    position: absolute;
    bottom: 35px;
    right: 0px;
}
/**/

/*variant*/
.wrap-variant {
    margin: 0 auto;
    max-width: 620px;
    text-align: center;
}
.variant-title {
    font-size: 32px;
    font-weight: 600; 
}
.variant-title,
.variant-desc{
    margin-bottom: 15px;
}
.variant-imgs__item{
    position: absolute;
    user-select: none;
    z-index: -1;
    will-change: transform;
    transform: translate3d(0,0,0);
    transition: transform 0.2s linear;
}
.variant-imgs__item img{
    max-width: 200px;
}
.variant-img--1{
    left: -250px;
}
.variant-img--2{
    right: -210px;
    top: -50px;
}
.variant-img--3 {
    top: -90px;
    left: -300px;
}
.variant-img--4 {
    bottom: -150px;
    right: -280px;
}
.section-variant{
    margin-bottom: var(--section-padding);
    margin-top: var(--section-padding);
}
/**/

/*clients*/
.wrc-clients-item{
    border: 1px solid #e5e4e2;
    padding: 15px 23px;
    background: var(--color-white);
}
.wrc-clients-item-block{
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
}
.wrc-clients-item__img img{
    filter: saturate(0%);
    transition: var(--def-transition);
    object-fit: contain;
    object-position: 0% 50%;
    width: 9rem;
    height: 5rem;
}
.wrc-clients-item-block:hover .wrc-clients-item__img img{
    filter: saturate(100%);
}
.wrc-clients-item__title {
    font-size: var(--size16);
    color: #708090;
}
/**/

/*gall*/
.wrap-technology-thumbs {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: var(--main-container);
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, 0%);
    height: fit-content;
    z-index: 22;
    bottom: 50px;
}
.slider-technology--main .slider-technology-img{
    height: 700px;
    overflow: hidden;
    position: relative;
}
.slider-technology--main .slider-technology-img:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#fff0, #00000059);
    z-index: 1;
    user-select: none;
}
.slider-technology--thumbs .swiper-wrapper{
    justify-content: center;
}
.slider-technology--thumbs .slider-technology-img{
    height: 75px;
    overflow: hidden;
    cursor: pointer;
}
.slider-technology--thumbs .swiper-slide{
    border-radius: 5px;
    border: 1px solid transparent;
    overflow: hidden;
}
.slider-technology--thumbs .swiper-slide.swiper-slide-thumb-active{
    border-color: var(--color-blue);
}
/**/

/*funkcii*/
.wrap-funkcii:not:last-child{
    margin-bottom: 40px;
}
.wrap-funkcii-item {
    padding: 32px 0;
    border-top: 1px solid var(--color-grey);
}
.wrap-funkcii .wrap-funkcii-item:last-child{
    border-bottom: 1px solid var(--color-grey);
}
.wrap-funkcii-title{
    font-size: 22px;
    margin-bottom: 15px;
}
.wrap-funkcii-desc{
    font-size: var(--size16);
}
/**/

/*characteristics*/
.characteristics-item__title {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 600;
}
.characteristics-params__item-q {
    font-weight: 500;
    width: 350px;
}
.characteristics-params__item-a{
    flex: 1;
    text-align: right;
}
.characteristics-color{
    color: var(--color-blue);
}
.characteristics-params__item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-top: 1px solid var(--color-grey);
}
.wrap-characteristics .characteristics-item:not(:last-child){
    margin-bottom: 50px;
}
/**/

/*dops*/
.wrc-dops-item__title {
    padding: 20px 10px;
    border: 1px solid #e5e4e2;
}
.wrc-dops-item__img{
    height: 250px;
    overflow: hidden;
}
/**/

/**/
.contacts-title {
    font-size: 23px;
    font-weight: 600;
}
.cnt-info .cnt-info__item:not(:last-child){
    margin-bottom: 7px;
}
.wrc-contacts-item-right{
    background-color: #f2f2f2;
    padding: 35px;
}
.map-title {
    font-size: 23px;
    font-weight: 600;
    color: var(--color-grey);
}
.contacts-title,
.map-title{
    margin-bottom: 25px;
}
.addr{
    margin-bottom: 15px;
}
.cnt-img{
    margin-top: 15px;
}
/**/

/*projects*/
.projects-image {
    height: 310px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.projects_info {
    position: absolute;
    width: 100%;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    padding: 15px;
    color: var(--color-white);
    transition: var(--def-transition);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: end;
}
.wrc-projects-item:hover .projects_info{
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transition: var(--def-transition);
}
.projects-image-block:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background-image: linear-gradient(#0000, #00000080 75%);
    transition: var(--def-transition);
}
.wrc-projects-item:hover .projects-image-block:before{
    z-index: 5;
    opacity: 1;
    visibility: visible;
    transition: var(--def-transition);
}
.projects_panel_name {
    margin-top: 10px;
    font-size: var(--size16);
}
.circle-detail-projects{
    background-color: var(--color-blue);
    border-radius: 50px;
    align-items: center;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    margin-bottom: 1px;
    display: inline-block;
}
.projects_info_title {
    font-size: 12px;
    margin-bottom: 3px;
}
.projects_info_arrow{
    display: flex;
}
/**/

/*project detail*/
.wrc-project-detail-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
}
.wrc-info-project__item-tag {
    font-size: 14px;
    color: var(--color-grey);
    margin-bottom: 3px;
}
.wrc-info-project__item-title {
    font-size: 15px;
    font-weight: 600;
}
.detail-project-image{
    border-radius: 10px;
    overflow: hidden;
}
.wrap-pr-top{
    border-bottom: 1px solid var(--color-blue);
    padding-bottom: var(--def-marginSection);
}
/**/
.wrc-project-descs .wrc-project-descs-sidebar{
    --global-wrc-child-width: 25%;
}
.wrc-project-descs .wrc-project-descs-cont{
    flex: 1;
}
.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.sidebar-links .sidebar-links-item:not(:last-child){
    margin-bottom: 15px;
}
.sidebar-links-item a{
    font-size: 15px;
    color: var(--color-grey);
    display: block;
    border-left: 1px solid transparent;
}
.sidebar-links-item.active a{
    border-color: var(--color-blue);
    padding-left: 10px;
    color: #000;
}
.project-default-desc{
    margin-bottom: var(--def-marginSection);
}
.scroll-desc-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}
.scroll-desc .scroll-desc-block:not(:last-child){
    margin-bottom: calc(var(--def-marginSection) + 20px);
}
.sidebar-info {
    padding: 24px;
    background: var(--color-main);
    color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}
.sidebar-info-title {
    color: var(--color-grey);
    font-size: 22px;
    margin-bottom: 3px;
}
.sidebar-info-name{
    margin-bottom: 35px;
    font-size: var(--size16);
}
.sidebar-info-dostavka{
    font-weight: 600;
}
.sidebar-info-sv{
    margin: 13px 0;
}
.wrc-project-gallery-img{
    height: 650px;
    overflow: hidden;
    display: block;
}
/**/

/**/
.slider-funkcii-item__image{
    height: 550px;
    overflow: hidden;
}
.slider-funkcii-item__image:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(17deg, #000000bf 8%, #a8a8a81a);
}
.slider-funkcii-item__text{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 30px;
    color: var(--color-white);
    font-size: 26px;
    user-select: none;
    z-index: 20;
    max-width: 750px;
}
.section-slider-funkcii .swiper-button-next, 
.section-slider-funkcii .swiper-button-prev{
    position: inherit;
    margin-top: 0;
    left: auto;
    right: auto;
    width: 50px;
    height: 50px;
    background: var(--color-blue);
    border-radius: 50px;
}
.section-slider-funkcii .swiper-panel{
    margin-top: 30px;
}
.section-slider-funkcii .swiper-panel__btn{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.section-slider-funkcii .swiper-button-next:after, 
.section-slider-funkcii .swiper-button-prev:after{
    font-size: 19px;
    color: var(--color-white);
}
/**/

/**/
.wqw-faq-answer {
    display: none;
    padding: 0 35px;
    margin-top: 20px;
}
.wqw-faq-question {
    padding: 35px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    transition: var(--def-transition);
    background: #f1f0ed99;
}
.wqw-faq-question:hover{
    background: #d5d5d599;
}
.wqw-faq-question-text {
    font-size: 22px;
    font-weight: 500;
}
.wqw-faq .wqw-faq-item:not(:last-child){
    margin-bottom: 35px;
}
.wqw-faq-arrow{
    transition: var(--def-transition);
    height: fit-content;
}
.wqw-faq-arrow.faq-arrow--change{
    transform: rotate(45deg);
    transition: var(--def-transition);
}
/**/

/**/
.social {
    margin-top: 30px;
}
.social .social-item:not(:last-child){
    margin-bottom: 3px;
}
.social .social-item a{
    font-size: var(--size16);
    color: var(--color-grey);
    position: relative;
}
.social .social-item a:hover{
    color: var(--color-main);
}
.social .social-item a:before,
.archive-btn a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    background: var(--color-main);
}
.social .social-item a:hover::before,
.archive-btn a:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
.archive-img {
    height: 400px;
    overflow: hidden;
    margin-bottom: 15px;
}
.archive-tags {
    color: var(--color-blue);
    font-weight: 600;
    font-size: 14px;
}
.archive-title {
    margin-top: 5px;
    font-size: 20px;
    font-weight: 500;
}
.archive-btn {
    margin-top: 10px;
    font-size: 14px;
}
/**/

/**/
.company-by {
    color: var(--color-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}
.company-ex {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.company-soc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.company-soc__item a {
    background-color: #e7e7e7;
    border-radius: 50px;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company-soc__item svg{
    width: 20px;
    height: 20px;
}
.wrc-company-info{
    align-items: center;
}
.dop-company__title{
    font-weight: 600;
}
.dop-company__title span{
    font-weight: 400;
    font-size: 16px;
}
.dop-company-params{
    margin-top: 35px;
}
.dop-company-params__item-name {
    font-weight: 600;
    margin-bottom: 3px;
}
.dop-company-params__item-text {
    font-size: var(--size16);
}
.section-detail-single{
    max-width: 1100px;
    margin: 0 auto;
}
/**/

/*error-page*/
.error-page-img{
    margin-bottom: 15px;
}
.error-page-desc__title {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}
.error-page-desc__text {
    font-size: 18px;
    margin-bottom: 10px;
}
/**/

/**/

.mv-gal-s{
    width: 15rem;
    height: 18rem;
}
.mv-gal-f{
    width: 15rem;
    height: 9rem;
}
.wrap-moving-gallery{
    width:100%;
    overflow:hidden;
}
.wrap-moving-gallery-track{
    display:flex;
    width:max-content;
    animation: marquee 55s linear infinite;
    gap: 20px;
}
.moving-gallery-row{
    display:flex;
    flex-shrink:0;
    align-items: center;
    gap: 20px;
}
.wrap-moving-gallery:hover .wrap-moving-gallery-track{
    animation-play-state: paused;
}

@keyframes marquee{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

/*canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: transparent;
    pointer-events: none;
}*/

/*offcanvas*/
body .c-offcanvas {
    width: 90%;
    padding: 25px;
    z-index: 9999999999;
    background: #f1f1f1;
}
body .c-offcanvas:not(:last-child){
    margin-bottom: 35px;
}
body .offcanvas-block--close{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
body .c-offcanvas .offcanvas-block:not(:last-child){
    margin-bottom: 40px;
}
body .offcanvas-block-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}
body .c-offcanvas-bg.is-open{
    z-index: 99999;
}
body .c-offcanvas .company-info__item-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
body .c-offcanvas .company-info .company-info__item:not(:last-child){
    margin-bottom: 20px;
}
body .c-offcanvas .company-info__item-text{
    font-size: 15px;
}
body .offcanvas-telephones .offcanvas-telephones__item:not(:last-child){
    margin-bottom: 15px;
}
body .offcanvas-telephones a{
    font-size: 18px;
}
body .offcanvas-telephones span{
    display: block;
    margin-top: 3px;
    font-weight: 500;
}
.offcanvas-logo img{
    max-width: 260px;
}
.offcanvas-block .wrap-mobile-menu .wrap-menu{
    justify-content: start;
    flex-direction: column;
}
.site-soc--offcanvas svg{
    width: 25px;
    height: 25px;
}
.site-soc--offcanvas{
    gap: 15px;
}
/*end offcanvas*/

/*about*/
.about-btn{
    margin-top: 25px;
}
.about-scheme {
    position: relative;
    z-index: 0;
}
.about-scheme .full {
    transition: opacity 0.4s;
}
.about-scheme-point {
    outline: 0;
    text-decoration: none;
    z-index: 2;
    background-color: var(--color-blue);
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 50%;
    justify-content: flex-end;
    align-items: center;
    width: 1rem;
    height: 1rem;
    padding: 0;
    font-size: 0;
    transition: font-size .2s;
    display: flex;
    position: absolute;
    transform: translate(-50%, -50%);
    font-weight: bold;
    cursor: pointer;
}
.about-scheme-point:hover {
    font-size: 16px;
    z-index: 3;
}
.about-scheme-point .desc {
    background-color: var(--color-blue);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    color: #fff;
    text-align: center;
    text-transform: none;
    border-radius: .6em;
    flex: none;
    margin-right: 1rem;
    padding: .6em .9em;
    font-size: .8em;
    line-height: 1.3;
    overflow: hidden;
    max-width: 225px;
}
.about-scheme-point-image {
    opacity: 0;
    position: absolute;
    transition: opacity .6s;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-scheme.hover .full {
    opacity: 0.5;
}
.about-scheme-point:hover + .about-scheme-point-image {
    opacity: 1;
}

[data-key="1"].about-scheme-point-image {
    width: 27.5%;
    left: 82.6%;
    top: 29.8%;
}
[data-key="2"].about-scheme-point-image {
    width: 10.7%;
    left: 60.2%;
    top: 28.2%;
}
[data-key="3"].about-scheme-point-image {
    width: 2.7%;
    left: 60.75%;
    top: 40.4%;
}
[data-key="4"].about-scheme-point-image {
    width: 24.5%;
    left: 48.2%;
    top: 51.2%;
}
[data-key="5"].about-scheme-point-image {
    width: 74.6%;
    left: 39.0%;
    top: 69.9%;
}

[data-key="1"].about-scheme-point {
    left: 83%;
    top: 24%;
}
[data-key="2"].about-scheme-point {
    left: 62%;
    top: 29%;
}
[data-key="3"].about-scheme-point {
    left: 60%;
    top: 43%;
}
[data-key="4"].about-scheme-point {
    left: 51%;
    top: 43%;
}
[data-key="5"].about-scheme-point {
    left: 41%;
    top: 61%;
}
/*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%);
    }
}

@media (max-width: 1400px){
    :root{
        --def-padding:20px;
    }
    .wrc-project-gallery-img {
        height: 550px;
    }
}
@media (max-width: 1200px){
    :root{

    }
    .header-menu{
        column-gap: 15px;
        justify-content: center;
    }
    .site-logo svg{
        width: 140px;
    }
    .wrc-header .header-logo{
        --global-wrc-child-width: 165px;
    }
    .header-menu-main-link a{
        font-size: var(--size16);
    }
    .wrc-subs-menu .wrc-item {
        padding: 30px 0;
    }
    .block-client-item__info{
        padding: 15px;
        height: 450px;
    }
    .wrc-clients{
        --global-wrc-child-width: 50%;
    }
    .wrc-projects {
        --global-wrc-horizontal: 24px;
        --global-wrc-vertical: 24px;
    }
    .priziv-title {
        font-size: 38px;
    }
    .section-priziv{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .wrc-footer .wrc-footer-item--left {
        --global-wrc-child-width: 320px;
    }
    .wrc-techpage-item--first .wrc-techpage-item__image a {
        height: 370px;
    }
    .wrc-techpage-item__image a,
    .grgl-item__gall-item{
        height: 300px;
    }
    .variant-img--1 {
        left: -160px;
    }
    .variant-img--3{
        left: -220px;
    }
    .variant-img--4{
        right: -160px;
    }
    .wrc-banner-v2__title {
        font-size: 40px;
    }
    .slider-technology--main .slider-technology-img {
        height: 550px;
    }
    .page-title {
        font-size: 30px;
    }
    .wrc-project-gallery-img {
        height: 350px;
    }
    .banner-title {
        font-size: 40px;
    }
    .archive-img {
        height: 280px;
    }
    .archive-title{
        font-size: 18px;
    }
}
@media (max-width: 992px){
    :root{
        --def-padding:15px;
        --section-padding: 70px;
    }
    .banner-title {
        font-size: 36px;
    }
    .wrap-header-menu{
        display: none;
    }
    .header-block-mobile{
        display: block;
    }
    .column-title {
        font-size: 22px;
    }
    .section-title{
        font-size: 24px;
    }
    .column-btn, .sub-section-more {
        margin-top: 20px;
    }
    .technology-block-item__title {
        font-size: 28px;
    }
    .projects-img{
        height: 230px;
    }
    .wrc-projects {
        --global-wrc-horizontal: 10px;
        --global-wrc-vertical: 20px;
    }
    .projects-title {
        font-size: 18px;
    }
    .projects-btn {
        font-size: 14px;
        margin-top: 5px;
    }
    .priziv-title {
        font-size: 32px;
    }
    .wrc-footer .wrc-footer-item--left {
        --global-wrc-child-width: 100%;
        text-align: center;
    }
    .grgl-item__desc {
        max-width: 100%;
    }
    .grgl-item__gall-item{
        height: 240px;
    }
    .grgl-item__title {
        font-size: 24px;
    }
    .section-compare .widthColumn{
        display: none;
    }
    .variant-imgs__item{
        opacity: 0.5;
    }
    .variant-img--1 {
        left: -10px;
    }
    .variant-img--4{
        right: -10px;
    }
    .variant-img--2 {
        right: -55px;
    }
    .variant-img--3 {
        left: -45px;
    }
    .section-banner--type2{
        height: auto;
        min-height: auto;
        max-height: max-content;
    }
    .wrc-banner-v2__title {
        font-size: 30px;
    }
    .wrc-dops-item__img {
        height: 210px;
    }
    .wrc-dops{
        --global-wrc-child-width: 50%;
    }
    .page-title {
        font-size: 27px;
    }
    .projects-image {
        height: 250px;
    }
    .wrc-project-detail-item{
        gap: 60px;
    }
    .wrc-info-project{
        --global-wrc-child-width: 50%;
    }
    .wrc-project-descs-sidebar{
        display: none;
    }
    .wrc-project-descs .wrc-project-descs-sidebar:first-child{
        display: block;
    }
    .wrc-contacts{
        --global-wrc-child-width: 100%;
        --global-wrc-horizontal: 0px;
    }
    .wrc-contacts-item-right {
        background-color: #FFF; 
        padding: 35px 0;
    }
    .slider-funkcii-item__image {
        height: 450px;
    }
    .slider-funkcii-item__text{
        font-size: 20px;
    }
    .wqw-faq-question {
        padding: 20px;
    }
    .wqw-faq-answer{
        padding: 0 20px;
    }
    .wqw-faq-question-text {
        font-size: 20px;
    }
    .wqw-faq .wqw-faq-item:not(:last-child) {
        margin-bottom: 20px;
    }
    .wrc-archive{
        --global-wrc-child-width: 50%;
    }
    .wrc-company-info{
        --global-wrc-child-width: 100%;
        --global-wrc-vertical: 40px;
    }
    .dop-company-params {
        margin-top: 20px;
    }
}
@media (max-width: 768px){
    :root{
        --section-padding: 55px;
        --widthColumn:100%;
    }
    .wr-container {
        --global-wrc-horizontal: 14px;
        --global-wrc-vertical: 14px;
    }
    .widthColumnRight, .wr-container.wr-container-inside .widthColumnRight, .wr-container .widthColumnRight{
        width: 100%;
    }
    .wrc-head-mobile__item--telephone a{
        font-size: 20px;
    }
    .widthColumn.sticky-anim{
        position: inherit;
    }
    .wrap-section-title{
        --global-wrc-horizontal: 0px;
        --global-wrc-vertical: 0px;
    }
    .column-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    body .wrap-section-title, 
    body .v2-sc-title {
        margin-bottom: 45px;
    }
    .technology-block{
        --global-wrc-child-width: 100%;
        --global-wrc-horizontal: 0px;
    }
    .technology-block-item__img{
        display: block;
        margin-bottom: 25px;
        width: 100%;
    }
    .technology-block-item__img img{
        max-height: 320px;
    }
    .technology-block-item--info{
        height: auto;
    }
    .technology-block .wrc-item .technology-block-item--info:not(:last-child){
        margin-bottom: 60px;
    }
    .technology-block-item__title {
        font-size: 24px;
    }
    .technology-block-item__btns{
        margin-top: 20px;
    }
    .wrc-item--imgs{
        display: none;
    }
    .block-client-item__title{
        font-size: 18px;
    }
    .block-client-item__desc{
        font-size: 16px;
    }
    .block-client-item__info{
        height: 360px;
    }
    .priziv-title {
        font-size: 28px;
    }
    .wrc-foot-menu{
        --global-wrc-child-width: 50%;
        --global-wrc-vertical: 24px;
    }
    .wrc-footer{
        --global-wrc-horizontal: 0px;
        --global-wrc-vertical: 40px;
    }
    .comparison-text{
        word-break: break-all;
        font-size: 13px;
    }
    .compare-img {
        height: 180px;
    }
    .comparison-detail_text{
        font-size: 14px;
    }
    .compare-title {
        font-size: 18px;
    }
    .wrap-compare {
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .wrap-compare::-webkit-scrollbar {
        display: none;
    }
    .wrap-compare .compare-item{
        width: 750px;
    }
    .wrap-compare-scroll {
        display: block;
    }
    .wrc-banner-v2{
        --global-wrc-child-width: 100%;
    }
    .wrc-banner-v2__img{
        
    }
    .wrc-banner-v2__img img{
        /*max-width: 350px;*/
    }
    .slider-technology--main .slider-technology-img {
        height: 450px;
    }
    .characteristics-item__title {
        font-size: 20px;
    }
    .wrc-projects{
        --global-wrc-child-width: 50%;
    }
    .page-title {
        font-size: 24px;
    }
    .wrc-project-descs .wrc-project-descs-sidebar:first-child{
        display: none;
    }
    .wrc-project-gallery-img {
        height: 290px;
    }
    .wrc-project-detail{
        --global-wrc-child-width: 100%;
        --global-wrc-horizontal: 0px;
        --global-wrc-vertical: 45px;
    }
    .wrc-project-detail-item {
        gap: 25px;
    }
    .mv-gal-s{
        height: 220px;
    }
    .variant-title {
        font-size: 26px;
    }
    .banner-info.banner-info {
        padding-top: 70px;
    }
    .contacts-title {
        font-size: 20px;
    }
    .banner-title {
        font-size: 34px;
    }
    .characteristics-params__item-q{
        width: 300px;
    }
    .wrap-characteristics .characteristics-item:not(:last-child) {
        margin-bottom: 25px;
    }
    .slider-funkcii-item__image {
        height: 350px;
    }
    .slider-funkcii-item__text{
        font-size: 18px;
    }
    .section-slider-funkcii .swiper-panel {
        margin-top: 10px;
    }
    .section-slider-funkcii .swiper-button-next, .section-slider-funkcii .swiper-button-prev{
        width: 35px;
        height: 35px;
    }
    .section-slider-funkcii .swiper-button-next:after, .section-slider-funkcii .swiper-button-prev:after{
        font-size: 14px;
    }
    .wqw-faq-question {
        padding: 15px;
    }
    .wqw-faq-answer{
        padding: 0 15px;
    }
    .error-page-img svg{
        width: 250px;
    }
    .wqw-faq-question-text {
        font-size: 16px;
    }
    .wqw-faq-answer{
        font-size: 16px;
    }
    .section-archive .wrap-section-title .widthColumn{
        display: none;
    }
}
@media (max-width: 550px){
    :root{
        --def-padding:10px;
        --section-padding: 40px;
    }
    .banner-title {
        font-size: 30px;
    }
    .site-soc--header .site-soc__item,
    .wrc-head-mobile__item--telephone span{
        display: none;
    }
    .wrc-head-mobile__item--telephone a {
        font-size: 16px;
    }
    .wrc-head-mobile{
        --global-wrc-horizontal: 0px;
    }
    .wrc-header{
        --global-wrc-horizontal: 5px;
    }
    .wrc-header .header-logo {
        --global-wrc-child-width: 130px;
    }
    .site-logo svg {
        width: 125px;
    }
    .technology-block-item__title {
        font-size: 22px;
    }
    .wrc-clients{
        --global-wrc-child-width: 100%;
        --global-wrc-horizontal: 0px;
    }
    .projects-img {
        height: 190px;
    }
    .wrc-projects{
        --global-wrc-horizontal: 10px;
        --global-wrc-vertical: 30px;
    }
    .projects-title {
        font-size: 16px;
    }
    .wrap-priziv-img{
        height: 340px;
    }
    .wrap-priziv{
        padding: 65px 0px;
    }
    .priziv-title {
        font-size: 26px;
    }
    .wrc-techpage-item--first .wrc-techpage-item__image a {
        height: 300px;
    }
    .wrc-techpage-item__image a {
        height: 190px;
    }
    .wrc-techpage-item__title a{
        font-size: 14px;
        line-height: 1.2;
        display: block;
    }
    .variant-imgs{
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
        gap: 10px;
    }
    .variant-imgs__item{
        opacity: 1;
        width: calc(100% / 2 - 5px);
        position: inherit;
        transform: none !important;
    }
    .variant-imgs__item img{
        max-width: 100%;
        width: 100%;
        height: 100%;
    }
    .section-variant{
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
    .slider-technology--main .slider-technology-img {
        height: 350px;
    }
    .wrc-dops-item__img {
        height: 190px;
    }
    .projects-image {
        height: 200px;
    }
    .wrc-project-gallery-img {
        height: 230px;
    }
    .characteristics-params__item-q {
        width: 160px;
        font-size: 14px;
    }
    .characteristics-params__item-a{
        font-size: 16px;
    }
    .slider-funkcii-item__text{
        font-size: 16px;
        padding: 10px;
    }
    .error-page-img svg{
        width: 200px;
    }
    .wrc-archive{
        --global-wrc-child-width: 100%;
    }
    .archive-img {
        height: 250px;
    }
}