:root {
    --color-primary: #0A1E43;
    --color-primary-liner: #102958;
    --color-secondary: #102EA1;
    --color-body: #020C1E;
    --vh: 100%;
}

body {
    background:var(--color-body);
    color:#fff;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    padding-top:66px;
    font-size:14px;
}
h1,
h2,
h3,
h4,
h5
{
    margin: .4rem 0 .3rem 0;
    font-weight: 400;
}

h1 {
    font-size: 2rem;
    margin: .67rem 0
}
h3 {
    font-size: 2rem;
}
h3 span {
    color:var(--color-primary);
}
@media (min-width:769px) {
     h3 { 
         margin-bottom: 50px;
     }
}
/* ======================== */
/* MENU */
/* ======================== */



#navDesktop {
    background-color: #020C1E;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:66px;
    z-index: 245;
    -webkit-box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 25%);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: solid 1px #404859;
}
#navDesktop a {
    color:#fff;
    font-weight:500;
    text-transform: uppercase;
}

#navDesktop ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 16px;
    
}
#navDesktop .current-menu-item a {
color: var(--color-primary-liner);
}

.c-menu .leftside,
.c-menu .rightside {
    display: flex;
    align-items: center;
    gap: 30px;
}

.c-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
    padding-left: .8rem;
    
}

@media (min-width:1200px) {
   .c-menu {
       padding-right: 1.8rem;
   } 
}

.c-menu .m_item {
    color: #222;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 7px;
    display: inline-block;
}

@media (min-width:1320px) {
    .c-menu .m_item {
        margin: 0 8px;
        font-size: 1.1rem;
    }
}

.c-menu .m_item:hover {
    text-decoration: underline;
}

.lang {
    display: flex;
    gap: 20px;
}
.lang a img {
    height: 12px;
}
.lang a  {
    display:flex;
    align-items: center;
    gap: 5px;
}


/* MOBILE MENU BTN */

.mobile_menu {
    display: flex;
    align-items: center;
    position: relative;
    pointer-events: auto;
    margin-right: 20px;
}

@media (max-width:600px) {
    .mobile_menu {
        margin-right: 20px;
    }
}

.hamburger {
    overflow: visible;
    margin: 0;
    /* padding: 15px; */
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    /* border: 1px solid #000; */
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    position: absolute;
    width: 40px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #fff;
}

.hamburger--slider .hamburger-inner {
    top: 2px;
}


.hamburger-inner:before {
    position: absolute;
    width: 40px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #fff;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -10px;
}

.hamburger--slider .hamburger-inner:before {
    top: 10px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform, opacity;
}

.hamburger-inner:after {
    bottom: -10px;
}

.hamburger--slider .hamburger-inner:after {
    top: 20px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
    background-color: #fff;
}

.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner:before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner:after {
    transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.header_menu {
    display: none;
    margin: 0;padding: 0;list-style: none;
}


@media (min-width:1100px) {
    .header_menu {
        display: block;
    }

    .mobile_menu {
        display: none;
    }
    
    
}



/* LOGO */

.c-header_logo {
    width:50px;
    display: flex;
      align-items: center;
      
}

.c-header_logo_link:hover {
    text-decoration: none;
}

.c-header_logo_link img {
    height: 50px;
    width: 50px;
}


.current-menu-item a {
    color: var(--color-primary);
}
.c-menu-sidebar a {
    color:#fff;
}
.c-menu-sidebar ul {
    list-style: none;
    padding: 0;
}
.c-menu-sidebar ul a {
    font-size: 2rem;
    padding: 10px;
    display: block;
    border-bottom: 1px solid #213863;
}

@media (max-width:500px) {
    .header_contact {
        padding-right: 0px;
    }
    .mobile_menu {
        margin-right: 5px;
      }
    
    .mobile_menu {
        margin-right: 5px;
    }
}



/* PREFERENCES */

.container,
.thin_container{
  width: 100%;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto; 
}
.thin_container {
    max-width: 980px;
}
@media (max-width: 1250px) {
    .container,
    .thin_container{
      padding: 0 20px; 
    } 
}

@media (max-width: 576px) {
    .thin_container {
      padding: 0 10px; 
    } 
    .container {
        padding:0;
    }
}
.main {
    overflow-x: hidden;
}
.padding-v-5svh {
    padding-top: 5svh;
    padding-bottom: 5svh;
}
.padding-v-10svh {
    padding-top: 10svh;
    padding-bottom: 10svh;
}
.padding-v-15svh {
    padding-top: 15svh;
    padding-bottom: 15svh;
}
.mt80 {
    margin-top:80px;
}
.center {
    text-align:center;
}
.flex {
    display:flex;
}

.img_fon {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Покрывает весь блок, сохраняя пропорции */
    object-position: center; /* Центрирует изображение */
    transition:all 0.5s ease;
}
.shadow {
    box-shadow: 0 4px 10px #00000040;
    border-radius:20px;
}
.white {
    background:#fff;
}
.mb40 {
    margin-bottom:40px;
}
.mb20 {
    margin-bottom:20px;
}

/* flat button */
.btn_flat_full, .btn_flat_empti {
    border:1px solid #fff;
    background:#fff;
    color:#000;
    padding:10px 20px;
    display:inline-block;
    transition:all 0.3s ease;
    font-weight:600;
}
.btn_flat_full {
    margin-right:10px;
}
.btn_flat_empti {
    background:none;
    color:#fff;
}
.btn_flat_full:hover {
    transform: scale(0.95);
    text-decoration:none;
}
.btn_flat_empti:hover {
    transform: scale(0.95);
    background:#fff;
    color:#000;
    text-decoration:none;
}

.placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    width: 100%;
    height: 100%;
    display: block;
    min-height: 200px;
}
@keyframes loading {
    from {
      background-position: 200% 0;
    }

    to {
      background-position: -200% 0;
    }
  }



/* MENU sidebar */

html.has-menu-open {
    overflow: hidden;
}

.c-menu-sidebar {
    z-index: 240;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overscroll-behavior: contain;
    visibility: hidden;
}

html .c-menu-sidebar {
    transition: visibility .9s linear;
}

html.has-menu-open .c-menu-sidebar {
    transition: visibility 0s linear;
    visibility: visible;
}

html .c-menu_overlay {
    transition: opacity .9s cubic-bezier(.165, .84, .44, 1);
}

.c-menu_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    z-index: -1;
}

html.has-menu-open .c-menu_overlay {
    opacity: 1;
}

.c-menu_container {
    position: relative;
    height: 100%;
    width: 100%;
}

.c-menu_inner {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
    background-color: var(--color-primary);
    overflow: hidden;
    z-index: 1;
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    padding: 0 var(--grid-margin);

}

html .c-menu_inner {
    transition: -webkit-clip-path .45s cubic-bezier(.25, .25, 0, 1);
    transition: clip-path .45s cubic-bezier(.25, .25, 0, 1);
    transition: clip-path .45s cubic-bezier(.25, .25, 0, 1), -webkit-clip-path .45s cubic-bezier(.25, .25, 0, 1);
}

html.has-menu-open .c-menu_inner {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    transition: -webkit-clip-path .6s cubic-bezier(.45, .05, 0, 1);
    transition: clip-path .6s cubic-bezier(.45, .05, 0, 1);
    transition: clip-path .6s cubic-bezier(.45, .05, 0, 1), -webkit-clip-path .6s cubic-bezier(.45, .05, 0, 1);
}


.c-menu_wrap {
    width: 100%;
    transition: opacity .3s cubic-bezier(.165, .84, .44, 1);
    height: 100%;
}

.c-menu_secondary {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: calc(75px + 2vh);
    padding-right: var(--grid-gutter);
    padding-bottom: var(--grid-margin);
}

@media (min-width:401px) {
    .c-menu_secondary {
        padding-top: calc(87px + 2vh);
    }
}

@media (min-width:601px) {
    .c-menu_secondary {
        padding-top: calc(97px + 2vh);
    }
}

.c-menu_secondary_list {
    list-style: none;
}

.c-menu_secondary_list_item {
    transform: translate3d(-2.5rem, 0, 0);
    opacity: 0;
}

html.has-menu-open .c-menu_secondary_list_item {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 600;
}

html.has-menu-open .c-menu_secondary_list_item.current_page_item {
    transition-delay: .1s;
    list-style: disclosure-closed;
    /* Это у активного стрелка */
}

html.has-menu-open .c-menu_secondary_list_item:nth-child(3) {
    transition-delay: .15s;
}

html.has-menu-open .c-menu_secondary_list_item:nth-child(4) {
    transition-delay: .2s;
}

html.has-menu-open .c-menu_secondary_list_item:nth-child(5) {
    transition-delay: .25s;
}

html.has-menu-open .c-menu_secondary_list_item:nth-child(6) {
    transition-delay: .3s;
}

html.has-menu-open .c-menu_secondary_list_item:nth-child(7) {
    transition-delay: .35s;
}

.lang .handler {
    display: flex;
  align-items: center;
  gap: 10px;
  text-transform:uppercase;
  font-weight:600;
}
.lang .handler svg {
    color: var(--color-primary);
}


.aside {
    display: none;
}
@media (min-width:1200px) {
    .aside {
        display: block;
        height: 100%;
        width: 60px;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        border-right: solid 1px #404859;
        z-index: 10;
    }
    .aside .wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        align-items: center;
        gap: 20px;
        padding-bottom: 19px;
    }
}

/* =========== FOOTER ============ */

footer {
    border-top: 1px solid #333;
}

footer a {
    color:#C1C1C1;
}

.foot_footer {
    padding:20px 0;
}
.foot_footer .flex {
    justify-content: space-between;
}


@media (max-width:780px) {
    
    .foot_footer .flex {
        flex-direction: column;
        gap: 20px;
    }
    .foot_footer {
        padding:20px 20px 100px 20px;
    }
     .foot_footer .rights,
     .foot_footer .web86 {
         order:1
     }
     
}



/* =========== CONTACT FORM ============ */








/* ------------ stiky right menu btns bar ----------------*/

.sticky-nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index:101
}
.sticky-nav.hidden {
    transform: translateX(100%);
    opacity:0
}
.sticky-nav__item {
    background-color: var(--color-primary);
    
}

.sticky-nav__button {
    cursor:pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 43px;
    height: 48px;
    transition: .3s ease;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.sticky-nav__icon {
    transition: .3s ease;
    width: 22px;
    height: 22px;
}

.sticky-nav__item.active .sticky-nav__icon {
opacity: .6;
}

.sticky-nav__button-description {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 52px;
    color: #fff;
    transform: translateX(100%) translateX(250px);
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    transition: .3s ease;
    z-index: -1;
    white-space: nowrap;
    width: 155px;
    opacity: 0;
}
.active .sticky-nav__button-description {
    display:none;
}

.sticky-nav.active .sticky-nav__button-description {
    transform: translateX(100%) translateX(44px);
}

.sticky-nav__button-description:before {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translate(0,-50%);
    width: 0;
    height: 0;
    border-top: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
    border-left: 8px solid #fff;
    display: inline-block;
}

.sticky-nav__button-description-text {
    font-size: 16px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    height: 100%;
    background-color: #fff;
      height: 100%;
      border-radius: 5px;
      color: #000;
      font-weight: 400;
      box-shadow: 0 3px 6px #00000037;
}

@media (min-width:1025px) {
    .sticky-nav__button-container:hover .sticky-nav__button-description {
    transform: translateX(0);
    opacity: 1;
    }
}

.sticky-nav__content {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 18px;
    transition: .3s ease;
    transform: translateX(100%) translateX(46px);
    z-index: -1;
      padding: 0 27px 0 0;
      min-height: 192px;
      display: flex;
      flex-direction: column;
      height: 100%;
}
.sticky-nav__content:after {
    content: "";
    position: absolute;
    right: 19px;
    top: 17px;
    width: 0;
    height: 0;
    border-top: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
    border-left: 8px solid #fff;
    display: inline-block;
}
.sticky-nav__container {
    position:relative;
}

.sticky-nav__item:nth-child(2) .sticky-nav__content:after {
    top: 65px;
}
.sticky-nav__item:nth-child(3) .sticky-nav__content {
    top: 70px;
}
.sticky-nav__item:nth-child(3) .sticky-nav__content:after {
    top: 43px;
}
.sticky-nav__content .flex-grid {
    border-radius: 10px;
    background-color: #fff;
    padding: 16px;
    box-shadow: 0 1px 4px #00000045;
}
.sticky-nav__content.sticky-nav__content--contacts .flex-grid {
    width: 250px;
}

.sticky-nav__item:nth-child(4) .sticky-nav__content {
    top: 112px;
}
.sticky-nav__item:nth-child(4) .sticky-nav__content:after {
    top: 50px;
}
.sticky-nav__item:nth-child(5) .sticky-nav__content {
    top: 158px;
}
.sticky-nav__item:nth-child(5) .sticky-nav__content:after {
    top: 55px;
}
.sticky-nav__item:nth-child(6) .sticky-nav__content {
    top: 188px;
}
.sticky-nav__item:nth-child(6) .sticky-nav__content:after {
    top: 70px;
}
.sticky-nav__content .flex-grid{
    border-radius: 10px;
  background-color: #fff;
  padding: 16px;
    color:#000;
}

.sticky-nav__item:nth-child(1) .sticky-nav__content .flex-grid {
   padding: 0;   
}
.sticky-nav__item:nth-child(1) .flex__item {
    padding: 16px;
}
.sticky-nav__item:nth-child(1) .cityblock {
    padding: 16px;
  background: #eaeaec;
  border-radius: 0 0 10px 10px;
}

.sticky-nav__item:nth-child(1) p + p {
  margin-top: 8px;
}
.cityblock a {
    color:#000;
}
.onmap {
    margin-top: 15px;
}
.onmap a {
    font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #000;
  padding: 4px 10px;
}

.sticky-nav__button-container {
    position:relative;
}
.sticky-nav__content--network {
width: 330px;
}

.sticky-nav__item.active .sticky-nav__content {
transform: translateX(0);
display: flex;
}

.site-form__label {
width: 100%;
font-size: 16px;
font-weight: 400;
display: block;
color: #000;
margin-bottom:5px;
}
.button--secondary {
    background: #098ed4;
  color: #fff;
  border: none;
  padding: 3px 10px;
  margin-left: 5px;
  border-radius: 4px;
}
.sticky-nav__content--contacts .flex__item {
    margin:10px 0;
}
.sticky-nav__content--contacts .small {
    font-size:14px;
    font-weight:500;
    display:block;
}

.hidden {
    display:none;
}
@media (max-width:500px){
    .sticky-nav {
        top: unset;
        flex-direction: column;
          justify-items: center;
          left: 0;
          width: 100%;
          background: var(--main-color-hover);
          border-top-left-radius: 10px;
          border-top-right-radius: 10px;
    }
    .sticky-nav__item {
    background-color: inherit;
    
}
    .sticky-nav__container {
          display: flex;
          width: 100%;
          justify-content: space-evenly;
          background-color: #222;
            box-shadow: 0 -3px 3px #0000001f;
    }
    
    .sticky-nav__content:after {
        bottom:0;
        top:unset;
        border-top:unset;
        border-left: 7.5px solid transparent;
          border-right: 7.5px solid transparent;
          border-bottom: 8px solid #222;
          /* right: 85vw; */
          right: 82vw;
    }
    .sticky-nav__item:nth-child(2) .sticky-nav__content::after {
       /* right: 68vw; */
       right:60vw;
       top:unset;
    }
    .sticky-nav__content.sticky-nav__content--contacts .flex-grid {
        width:100%;
    }
    .sticky-nav__content {
        bottom: 100%;
        left: 0;
        right:0;
        top:unset;
        padding:0;
        height: auto;
        min-height:100px;
        width: 100%;
        transform: translateY(100%) translateY(46px);
    }
    .sticky-nav__item.active .sticky-nav__content {
        transform: translateY(0);
    }
    
    .sticky-nav__content .flex-grid {
        border-radius: 10px 10px 0 0;
        padding-bottom:35px;
    }
    .sticky-nav__item:nth-child(3) .sticky-nav__content,
    .sticky-nav__item:nth-child(6) .sticky-nav__content,
    .sticky-nav__item:nth-child(4) .sticky-nav__content,
    .sticky-nav__item:nth-child(5) .sticky-nav__content {
        top:unset;
    }
    
    .sticky-nav__item:nth-child(3) .sticky-nav__content::after {
      top: unset;
      right: 38vw;
      /* right: 49vw; */
    }
    .sticky-nav__content--search .flex,
    .sticky-nav__item:nth-child(4) .sticky-nav__content .flex {
        flex-direction: column;
          gap: 10px;
          padding-bottom: 30px;
    }
    .sticky-nav__item:nth-child(4) .sticky-nav__content::after {
        top:unset;
        /* right: 30vw; */
        right: 40vw;
    }
    
    
    .sticky-nav__item:nth-child(5) .sticky-nav__content::after {
      top: unset;
      /* right: 10vw; */
      right: 24vw;
    }
    
    .sticky-nav__item:nth-child(6) .sticky-nav__content::after {
      top: unset;
      right: 10vw;
    }
}


.wide_half_box.hero .grid {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: calc(2rem + 8vw);
    z-index: 50;
}

.hero h1 {
    margin: 0;
    font-size: calc(1.5rem + 4vw);
    line-height: 1;
    max-width: 50%;
    font-weight: 700;
    text-transform: uppercase;
}

.hero ul {
    width: 25%;
        padding: 15px 0 40px 20px;
}
.hero ul li {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 0 0;
}


.wide_half_box {
    position: relative;
    height: Calc(100vh - 66px);
    width:100%;
}
.wide_half_box .fon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.wide_half_box .fon::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  display: block;
  background: var(--color-primary-liner);
  opacity: 0.2;
}
.wide_half_box .subfon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 33%;
  display: block;
  background: #020C1E;
  z-index:9;
}
.wide_half_box .subfon div {
        color: #ffffff1a;
    max-width: 100%;
    font-weight: 700;
    font-size: calc(8rem + 3vw);
    line-height: 1.1;
    padding-left: 60px;
    text-wrap: wrap;
}
/* .wide_half_box.right .fon::after {
  
  right: unset;
  left:0;
  background: #020C1E;
} */
.wide_half_box .grid {
    display:grid;
    position: relative;
    z-index:2;
    grid-template-columns:1fr 1fr;
}
.wide_half_box h3 {
    text-align:left;
    padding: 0;
}
.wide_half_box .wrp {
    padding:100px 0px 100px 50px;
}
.wide_half_box.right .wrp {
    padding:80px 50px 80px 0;
}
.htmlcontent p:last-child {
    line-height:1.4;
}


@media (max-width:950px) {
    .main_wrapper {
        gap: 30px;
        grid-template-columns: 250px auto;
    }

    
}
@media (max-width:800px) {

    .wide_half_box .fon {
        position: static;
    }
    .wide_half_box .fon:after {
        display:none;
    }
    .wide_half_box .grid {
        grid-template-columns: 1fr;   
    }
    .wide_half_box .wrp, .wide_half_box.right .wrp {
        position: relative;
         
          z-index: 2;
          background: #fff;
          padding: 50px 20px 0px 20px;
        }
    .wide_half_box.hero .grid {
        padding-left:20px;
        padding-bottom: 20px;
    }
    .hero h1 {
        /* font-size: calc(2.5rem + 4vw); */
        max-width:100%;
    }
    .hero ul {
        width: 100%;
        padding: 1px 0 20px 20px;
    }
    .hero ul li {
        font-size: inherit;
        font-weight: 600;
        margin: 10px 0 0 0;
    }
    .wide_half_box {
        display:grid;
        height: auto;
    }
    .wide_half_box .fon {
        order:3;
        z-index:10;
    }
    .wide_half_box .subfon {
        width:100%;
        
    }
    .wide_half_box .subfon div {
        padding-left: 10px;
    }
    .wide_half_box.right .wrp {
        background: none;
    }
    
}
@media (max-width:600px) {
    .main_wrapper {
        grid-template-columns: 1fr;
    }
    .main_wrapper .sidebox {
        height: auto;
        position: static;
        order: 2;
    }

    .lang .handler svg {
        display:none;
    }
    #navDesktop .lang a.active {
        display:none;
    }

    
}

/*  MICROMODAL */

/* modal */
.glightbox-bookmodal .goverlay {
    background: rgba(0, 0, 0, 0.54);
}
.glightbox-bookmodal .gslide-inline {
    border-radius: 20px;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__content .wrapper {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top: 40px;
}
.modal__content form p + p {
    margin-top:0;
}
.modal__content form.wrapper input,.glightbox-bookmodal form.wrapper label {
    width:100%;
    padding: 3px 5px;
}
.modal__content form.wrapper input {
      font-size: 16px;
      background:#fcfcfc;
      border-radius: 5px;
      border: 1px solid #acaaaa;
}
.modal__content .gslide-inline .ginlined-content {
    padding:35px;
}
.modal__header b {
    text-align:center;
    display:block;
  color: #666;
  width: 100%;
}
.modal .gtrigger-close {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
    margin-left:15px;
    background-repeat: no-repeat;
  background-position: 0 0;
  width: 30px;
  height: 30px;
  border: 7px solid #fff6ab;
  background-color: #fff6ab;
  position: absolute;
  right: 0px;
  top: 0px;
}
.modal__content form button {
    font-size: 20px;
  font-weight: 500;
  background: linear-gradient(to right, #FFD338 0%, #068ACF 18%, #18A2EA 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  margin-bottom: 20px;
}
.modal__content form button:hover {
    background: linear-gradient(to right, #FFD338 5%, #068ACF 18%, #18A2EA 100%);
}

.auth_box .modal__content form button {
    margin: 10px 0;
  font-size: 18px;
  font-family: montserrat;
  width: 100%;
}


.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index:99999;
}

.modal__container {
  background-color: var(--color-primary);
  /* padding: 30px; */
  max-width: 500px;
  max-height: 90vh;
  min-height: 85vh;
  border-radius: 0;
  overflow-y: auto;
  box-sizing: border-box;
}


.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* text-align: right; */
  /* position: absolute;
  top: 20px;
  left: 30px; */
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--main-color);
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal .modal__close:before { content: "\2715"; color:#000;cursor: pointer; }

.modal__content {
  margin-top: 1rem;
  /* margin-bottom: 2rem; */
  line-height: 1.5;
  color: #fff;
}


.modal__footer {
    text-align: right;
  margin-top: 10px;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  /* background-color: var(--main-color); */
  color: #fff;
}

.modal .wrapper {
    padding: 30px;
    /* display:none; */
}
.modal .wrapper.auth_box,
.modal .wrapper.reg_box,
.modal .wrapper.forgot_box {
    display:block;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.micromodal-slide .close_wrap {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
}
.feedback .modal__container {
    width: 98%;
    min-height: 98vh;
    border-radius: 0;
    max-width: 98%;
}
.designs_g_l {
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:10px;
}
#designs .designs_g_l {
    grid-template-columns:1fr 1fr 1fr 1fr;
}
@media(max-width:800px) {
    .designs_g_l {
        grid-template-columns:1fr 1fr;
    }
    #designs .designs_g_l {
        grid-template-columns:1fr 1fr;
    }
    .feedback .modal__container {
        max-width: 100%;
        min-height: 100svh;
        border-radius: 0;
    }
    .modal .wrapper {
        padding: 30px 10px 30px 10px;
        
    }
    
    #designs .designs_g_l a {
        min-height:180px;
    }
    .micromodal-slide .close_wrap {
        height: 40px;
        background: #020c1eab;
        z-index: 10;
    }
    .modal .gtrigger-close {
     width: 40px;
     height: 40px;
    }
    .micromodal-slide.is-open {
        display: block;
        position: absolute;
        z-index: 999999;
        height: 100svh;
        width: 100%;
        
    }
}
.feedback h3 {
    font-size:2rem;
    font-weight:600;
    margin-bottom: 0;
}
.feedback h3 span {
    color: #fff;
    font-weight: 300;
    display: block;
    font-size: 1.3rem;
    margin-top: 10px;
}
.feedback h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 40px;
}
.designs_g_l a {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.designs_g_l a:hover {
    opacity:0.9;
}
.designs_g_l .more {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.38);
    padding: 10px 20px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.services_s {
    margin-top: 80px;
    margin-bottom: 80px;
}
.services_s .wrap.grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
}
.services_s .height {
    height:40vh;
}
.services_s .aa {
    display: grid;
}
.services_s .aa h3 {
    font-size: calc(2rem + 2.5vw);
    font-weight: 700;
    margin: 0;
    padding-right: 15%;
    padding-left: 40px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    text-transform:uppercase;
}
.services_s .aa .design {
    background: var(--color-secondary);
    padding: 40px;
    min-height: 250px;
    display: grid;
    align-content: space-between;
    
}
.services_s .aa .sub {
    font-weight: 500;
    font-size: 1.25rem;
    color: #b4bbd3;
}
.services_s .aa .grid {
    display: grid;
    grid-template-columns: auto 67px;
    align-items: center;
    gap: 30px;
}
.services_s .aa h4 {
    font-weight: 400;
    font-size: 1.5rem;
}
.services_s .aa svg {
    width:100%;
}

.services_s .bottom {
    display:grid;
    position:relative;
}
.services_s .top {
    display:grid;
    position:relative;
}

.services_s .label {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-size: 1.2rem;
    background: var(--color-primary);
    align-items: center;
    transition:all 0.3s ease;
    position:absolute;
    bottom:0;
    transform-origin: center;
}
.services_s .label svg {
    width:20px;
    height:20px;
        display: none;
}
.services_s .bb a:hover .label,
.services_s .cc a:hover .label {
    background: #fff;
    color:#000;
    transform: scale(0.95) translateY(-5px);
}
.services_s .fon {
    overflow:hidden;
    display:block;
    position:relative;
    transition:all 0.3s ease;
}
.services_s .fon.video .play {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
.services_s .fon.video svg {
    width:100px;
    height:100px;
    transition:all 0.3s ease;
}
.services_s .fon.video:hover svg {
   transform:scale(0.95); 
}

.services_s .img_fon {
    transition:all 0.3s ease;
}
.services_s a:hover .img_fon {
    transform: scale(1.02);
}
@media(max-width:800px) {
    .services_s .aa h3 {
        padding-right:20px;
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .services_s .wrap.grid {
        grid-template-columns: 1fr;
    }
    .services_s .aa .design {
        padding: 40px 20px;
        gap:15px;
    }
    .services_s .height {
        height: auto;
    }
    .btn_group {
        display:flex;
    }
    .services_s .label {
        position:static;
        padding: 20px 20px 40px 20px;
        font-size: 1.3rem;
        font-weight: 600;
    }
    .services_s .label svg {
        display:inline-block;
    }
}

.komlex_r_s {
    background:var(--color-primary);
    padding-top: 80px;
}
.remont_s .wrap {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    
}
.remont_s .aa {
    padding: 40px 15% 40px 40px;
    display: grid;
    gap:30px;
    
}
.remont_s h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-transform:uppercase;
}
.remont_s p {
    font-weight: 500;
    font-size: 1rem;
    color: #b4bbd3;
}
.remont_s .price {
    font-weight: 500;
    font-size: 1.3rem;
    position:relative;
    padding-top:30px;
    margin-bottom:20px;
    
}
.remont_s .price:before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:40%;
    height:2px;
    background:#b4bbd3;
}     
.remont_s .cc {
    background:var(--color-body);
    padding: 40px;
}
.remont_s .cc h3 {
    font-size: 1.3rem;
}
.remont_s .cc ul li {
    margin:10px 0;
}

 @media(max-width:800px) {
     .komlex_r_s {
        background: none;
        padding-top: 0;
     }
     .remont_s .wrap {
        grid-template-columns: 1fr;
     }
     .remont_s .aa {
        padding: 40px 20px;
        gap: 15px;
    }
    .remont_s h2 {
        font-size: 2rem;
    }
 }
 
 .works {
    background:var(--color-body);
    padding: 60px 0;
}
.works .head {
    padding-left: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}
.works .head h3 {
    font-size: 2.5rem;
    font-weight:600;
}
.gallery {
    position:relative;
}
.works .post_dots  {
    position:static;
}
.works .swiper-pagination-bullet {
    background: var(--color-secondary);
    opacity: 1;
}
.works .swiper-pagination-bullet-active {
    background: #fff;
}
.swiper-adv-button-prev svg {
    transform: rotate(180deg);
}
.swiper-adv-button-prev,
.swiper-adv-button-next {
    position:absolute;
    top:45%;
    left:-30px;
    width:17px;
    height:43px;
}
.swiper-adv-button-next {
    left:unset;
    right:-30px;
}
.gallery .swiper-slide {
    position:relative;
    overflow:hidden;
    cursor:pointer;
}
.gallery .more {
    position:absolute;
    bottom:10px;
    right:10px;
    background:rgba(0, 0, 0, 0.38);
    padding:10px 20px;
    font-size:1.2rem;
    transition:all 0.3s ease;
}
.gallery .swiper-slide:hover .more {
    background: #fff;
    color:#000;
    transform: scale(0.95) translateY(-5px);
}

.gallery .swiper-slide:hover img {
    transform: scale(1.02);
}

.fon.video .play {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
.fon.video svg {
    width:70px;
    height:70px;
    transition:all 0.3s ease;
}
.fon.video:hover svg {
   transform:scale(0.95); 
}

 @media(max-width:800px) {
     .works {
         padding: 0px 0 60px 0;
     }
     .works .head {
         padding-left:20px;
         padding-bottom:20px;
     }
     .works .swiper-adv-button-prev {
         display:none;
     } 
     .works  .swiper-adv-button-next {
        left:20px;
        right:unset;
        z-index:2;
    }
    .swiper-adv-button-next svg {
        transform: rotate(180deg);
    }
     
 }
 
.bath_r_s {
   background: var(--color-primary);
    padding-top: 80px;
    
} 
.services_s.single .wrap.grid {
   grid-template-columns: 3fr 4fr;
   align-items: stretch;
}
.services_s.single .fon {
   height: 100%;
}
.services_s.single .aa {
    height: 100%;
    display:flex;
    flex-direction:column;
}
.services_s.single h3 {
    font-size: 2.5rem;
    height: 50%;
}
.services_s.single .design {
    height: 50%;
}
.services_s.single.right .wrap.grid {
   grid-template-columns: 4fr 3fr;
   align-items: stretch;
}

 @media(max-width:800px) {
     .services_s.single .wrap.grid,
     .services_s.single.right .wrap.grid {
        display: flex;
        flex-direction: column;
    }
    .services_s.single h3 {
        font-size: 2rem;
    }
    .services_s.single .fon {
        order:2;
        
    }
 }
 
 .benefits h3 {
    font-size: calc(1.5rem + 2.5vw);
    font-weight: 700;
}
.benefits p {
    font-size:1.1rem;
}
.benefits .i p {
    font-size: 1rem;
    line-height: 1.3;
}
.icons {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    display: grid;
    gap: 20px 50px;
     margin-top:40px;
     margin-bottom: 80px;
}

@media(max-width:800px) {
    
    .benefits {
        padding:0 20px;
    }
    .icons {
        grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            margin-top: 40px;
    }
    .icons img {
        width: 70px;
        height: 70px;
    }
    
}

.gridlist {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 10px;
    align-items: stretch;
    margin-bottom:80px;
}
.gridlist .cc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.gridlist .cc .fon {
    height:300px;
}
.gridlist .aa .fon,
.gridlist .aa .fon {
    height:100%;
}
.gridlist .video {
    position:relative;
}
@media(max-width:800px) {
    .gridlist {
        grid-template-columns: 1fr;
        margin-top:20px;
    }
}

.actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    margin-bottom:80px;
}
.actions .a {
    padding: 40px;
    background: var(--color-secondary);
}
.actions .a.b {
    background: var(--color-primary);
}
.actions h4 {
    text-transform:uppercase;
    font-weight:700;
}
@media(max-width:800px) {
    .actions {
       grid-template-columns: 1fr;
       margin-top:30px;
    }
    
}

.extra h3 {
    font-size: calc(1.5rem + 2.5vw);
    font-weight: 700;
}

.extra .a {
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items: stretch;
    height:480px;
    background: var(--color-primary);
}
.extra .fon {
    height:100%;
    overflow:hidden;
}
.extra .t {
    display: grid;
    padding: 40px 15% 40px 80px;
    align-content: center;
    
}

.extra h4 {
    font-size:  2.5rem;
    font-weight: 700;
}
.extra p {
    font-size: 1rem;
    line-height: 1.5;
}
.extra ul {
    font-size: 1rem;
    line-height: 1.5;
}
.extra .ba .fon {
    order:2;
}
@media(max-width:800px) { 
    .extra h3 {
         padding:0 20px 20px 20px;       
    }
    .extra .a {
        grid-template-columns:1fr;
    }
    
    .extra .t {
        padding: 20px;
    }
    .extra .a.ba .t {
        order:2;
    }
    .extra h4 {
        font-size:  1.5rem;
        
    }
}    

.kontakt {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: #fff;
    color: #000;
    margin-top: 80px;
    margin-bottom: 80px;
    align-items: stretch;
}
.kontakt h3 {
    margin-bottom:0px;
    font-weight:700;
}
.contacttext {
    font-size: 1rem;
    margin-bottom:30px;
}
.kontakt a {
    color:#000;
}
.kontakt .fon {
    position: relative;
}
.kontakt .fon:after {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    bottom:0;
    background:var(--color-secondary);
    opacity:0.6;
}
.kontakt .grid {
    display: grid;
    padding: 40px;

}
.kontakt .inp {
    margin-bottom:15px;
}
.c-form_item {
    position: relative;
    border:1px solid #ccc;
}
.c-form_item .c-form_label {
    top: 7px;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    display: inline-block;
    height: auto;
    color: #000;
    background:#fff;
    padding: .625rem;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1);
    transform-origin: .625rem 0rem;
}
.c-form_item input,
.c-form_item textarea {
    padding: 15px;
    font-size: 1.2rem;
}
.c-form_item textarea {
    min-height:100px;
    width:100%;
}

.c-form_item input:focus~.c-form_label,
.c-form_item textarea:focus~.c-form_label,
.c-form_item input:not(:placeholder-shown)~.c-form_label, 
.c-form_item textarea:not(:placeholder-shown)~.c-form_label {
        
        transform: scale(.75) translateY(-30px);
        z-index: 10;
}
.c-form_item input, .c-form_item textarea {
    display:block;
}
.radio-container, .checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
}
.gdpr {
    margin-top: 10px;
}
.gdpr input {
    border: none;
    background: #f4f4f4;
    padding: 10px 10px;
    border-radius: 10px;
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.gdpr .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eef5fa;
    border-radius: 3px;
    border: 1px solid #9ccfee;
}
.gdpr .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.gdpr:hover input ~ .checkmark {
    background-color: #b3d1ff;
}
.gdpr input:checked ~ .checkmark {
    background-color: #2196F3;
}
.gdpr input:checked ~ .checkmark:after {
    display: block;
}
.contactsgrid {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.5rem;
    flex-wrap: wrap;
    
}
.contactsgrid a {
    display: flex;
    align-items: center;
    gap: 10px;
    color:rgba(0, 0, 0, 0.54);
        font-size: 1.2rem;
    font-weight: 500;
}
.contactsgrid svg {
    width: 3rem;
    height: 3rem;
}
.sendit {
    background-color: var(--color-secondary);
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    padding: 15px 30px;
    margin-top: 10px;
    color:#fff;
}
.sendit:hover {
    background-color: var(--color-primary);
}
       @media(max-width:800px) { 
           .kontakt {
               grid-template-columns: 1fr;
               margin-top:0;
           }
           .kontakt .grid {
               padding: 40px 20px;
           }
           .contactsgrid {
               flex-direction: column;
               align-items: flex-start;
           }
           
       }

.cookies-popup {
    position: fixed;
    width: 100%;
    max-width: 500px;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.cookies-popup .wraper {
    background: #0a1e43bf;
    padding: 20px 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.ctitle {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}
.cdesc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.cookies-popup .text {
    line-height: 1.2;
}
.cbtn {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #000;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.cookies-popup.done {
    opacity: 0;
    pointer-events: none;
}
.cookies-popup.closed {
    display: none;
}
.whatsappcall {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    color:#fff;
    display: block;
    border-radius: 50%;
    transition:all 0.3s ease;
}
.whatsappcall svg {
    width:100%;
    height:100%;
}
.whatsappcall:hover {
    transform: scale(0.95);
}
@media (max-width:500px){
    .cookies-popup {
        right: 0;
        z-index: 9999;
    }
    .cookies-popup .wraper {
         background: #0a1e43e3;
        
    }
    .whatsappcall {
        bottom:70px;
    }
}

.gslide-media.gslide-video {
    max-width: 100%  !important;
    height: 100svh !important;
}
.gslide-media.gslide-video video {
    max-width: 100%  !important;
}
.plyr__video-wrapper {
    height: 100svh !important;
}

.vbox-container {
    padding:0 !important;
}
.venoratio-16x9.vbox-child.venoratio {
    height: 100svh;
}

@media print {
          .no-print {
            display: none;
          }
        }