*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'GolosText';
    /* color: var(--DarkBlue); */
   
}

:root{
    --DarkBlue:#121B69;
    --LightBlue:#6BC7E3;
    --White:#FFFFFF;
    --GreyBlue:#3A455B;
    --DarkGreyBlue:#272A31;
    --LineColor:#C7CAD1;
}
/* -------------------- */
input{
    border: thin solid var(--LightBlue);
    border-radius: 8px;
    color: var(--DarkGreyBlue);
    padding: 20px 25px;
    font-size: 17px;
    outline: none;
}
input::placeholder{
    color: var(--GreyBlue);
    
}
input:focus{
    border-color: var(--DarkBlue);
}
body{
    padding-top: 76px;
}
h1{
    font-size: 40px;
    font-weight: 700;
    color: var(--DarkBlue);
    margin: 69px 0 22px;
}

h2{
    font-size: 40px;
    font-weight: 700;

}

a{
    color: var(--DarkBlue);
    text-decoration: underline;
    transition-duration: 0.3s;
}
a:hover{
    color: var(--GreyBlue);
    transition-duration: 0.3s;
}
p{
    font-size: 17px;
    color: var(--DarkGreyBlue);
    font-weight: 400;
}
ul, ol{
    padding-left: 30px;
}
path{
    transition-duration: 0.3s;
}
/* -------------------- */

.container{
    max-width: 1534px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row{
    display: flex;
    
}
.justify-between{
    justify-content: space-between;
}
.align-center{
    align-items: center;
}

.navigation{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--White);
    z-index: 9;
    padding-bottom: 0px;
    z-index: 999;
}
.navigation::before{
    content: '';
    display: block;
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background-image: url(../image/before/nav-line1.svg);
    background-repeat: repeat-x;
    background-position: top -2px;
}
.navigation::after{
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 12px;
    background-image: url(../image/before/nav-line2.svg);
    background-repeat: repeat-x;
    background-position: -30px;
    transition-duration: 0.3s;
}


.logo{
    text-decoration: none;
}
.logo__img{
    width: 48px;
    height: 48px;
    margin-right: 17px;
}
.logo__text-top{
    display: block;
    color: var(--LightBlue);
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 16.55px;
}
.logo__text-bottom{
    font-size: 24px;
    color: var(--DarkBlue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
    margin-top: 5px;
}
.navigation__right{
    gap: 0 16px;
    padding-top: 1px;
}
.navigation__btn{
    transition-duration: 0.3s;
    border: none;
    background: none;
    cursor: pointer;
}
.navigation__btn:hover{
    transform: scale(1.2);
}
.menu__list{
    padding-left: 0;
    list-style: none;
}

.menu{
    margin-left: 8px;
}
.menu__list-link{
    font-weight: 600;
    color: var(--DarkBlue) ;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    /* padding: 0px 25px; */
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.menu__list-link.footer-link-menu {
    /* padding-top: 48px;
    padding-bottom: 34px; */
    padding-left: 25px;
    padding-right: 25px;
}
.menu__list-link .topmenu-link-padding {
    padding: 0px 25px;
    
}
.menu__list-link::before{
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--GreyBlue);
    position: absolute;
    left: 0;
    opacity: 0.2;
}
.menu__list-item:last-of-type .menu__list-link::after{
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--GreyBlue);
    position: absolute;
    right: 0;
    opacity: 0.2;
}
/* 2222222222222222222222 */
.first-screen{
    height: calc(100vh - 76px);
    background-image: url(../image/background/fs-bg.jpg);
    background-size: cover;
    position: relative;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.first-screen::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--DarkBlue);
    opacity: 0.25;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.first-screen__title{
    color: var(--White);
    margin: 0;
    position: relative;
    font-size: 96px;
    line-height: 112%;
    max-width: 890px;
}
.fs-play-icon{
    width: 83px;
    height: 80px;
    transition-duration: 0.3s;
    background-repeat: no-repeat;
    position: relative;
}
.fs-play-icon svg{
    position: relative;
}
.btn_open-video{
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}
.btn_open-video span{
    display: block;
    text-align: left;
    color: var(--White);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-left: 24px;
    transition-duration: 0.3s;
}
.btn_open-video:hover span{
    color: var(--LightBlue);
    transition-duration: 0.3s;
}
.btn_open-video .fs-play-icon::before{
    content: url(../image/icons/play_bg.svg);
    transition-duration: 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
}
.btn_open-video:hover  .fs-play-icon::before{
    opacity: 1;
}
.first-screen .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
/* 3333333333333333333333333333 */

.interactive-map{
    padding-top: 113px;
    padding-bottom:111px ;
    background-image: url(../image/background/bg-map.png);
    background-position: top center;
    margin-top: -9px;
    position: relative;
}
.btn-bluelight{
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    background-color: var(--LightBlue);
    transition-duration: 0.3s;
    position: relative;
    border: none;
    cursor: pointer;
}
.btn-bluelight::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition-duration: 0.3s;
    background: linear-gradient(0deg, rgba(18, 27, 105, 0.2) 0%, rgba(18, 27, 105, 0) 100%), #6BC7E3;
}
.btn-bluelight:hover::before{
    opacity: 0;
    transition-duration: 0.3s;
} 
.btn-bluelight span{
    font-size: 16px;
    color: var(--White);
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 17px 29px;
    border: thin solid #ffffff48;
    display: block;
    position: relative;
}
.btn-bluelight:hover{
    background: var(--DarkBlue);
}

.interactive-map .btn{
    margin-left:56px;
    margin-top: 5px;
}
.interactive-map .container{
    position: relative;
}

.interactive-map__wrapper{
    position: absolute;
    right: 181px;
    top: -165px;
    z-index: 9;
}
/* .interactive-map__wrapper::before{
    content: url(../image/content/cursor.svg);
    position: absolute;
    top: 170px;
    opacity: 0;
    transition-duration: 0.3s;
} */
/* .interactive-map__wrapper:hover::before{
    opacity: 1;
    transition-duration: 0.3s;
} */
.interactive-map::before{
    content: '';
    width: 100%;
    height: 9px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../image/before/interactive.svg);
    background-position-x: 5px;
}
.reclamation{
    background-color: var(--LightBlue);
    padding: 92px 0 98px;
    position: relative;
}
.color_white{
    color: var(--White);
}

.reclamation::before{
    content: '';
    width: 100%;
    height: 9px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    background-image: url(../image/before/reclamation.svg);
    background-position-x: 5px;
}
.reclamation__items{
    margin-left: 56px;
}

.reclamation__item{
    text-decoration: none;
    gap: 26px;
    padding-left: 31px;
    padding-top: 25px;
    padding-bottom: 25px;
    transition-duration: 0.3s;
    position: relative;
}
.reclamation__item::before{
    content: '';
    width: 1px;
    height: 72px;
    position: absolute;
    left: -1px;
    opacity: 0.4;
    background-color: var(--White);
    z-index: -1;
}

.reclamation__item span{
    color: var(--White);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.reclamation__item:nth-of-type(1){
    padding-right: 55px;
}
.reclamation__item:nth-of-type(2){
    padding-right: 53px;
}
.reclamation__item:nth-of-type(3){
    padding-right: 53px;
}
.btn-stroke{
    background: var(--White);
    color: var(--LightBlue);
    border: thin solid var(--LightBlue);
}
.btn-stroke::before{
    display: none;
}
.btn-stroke span{
    color: var(--LightBlue);
    border: 1px solid rgba(107, 199, 227, 0.5);
    padding: 8px 28px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news{
    padding-top: 36px;
    padding-bottom: 66px;
}
.news-header .btn{
    margin-top: 4px;
}
.btn-stroke:hover{
    border-color: var(--DarkBlue);
}
.btn-stroke:hover span{
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--White);
}
.news-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.news-wrapper{
    margin-top: 40px;
}
.news-img{
    width: 100%;
    height: 264px;
    overflow: hidden;
    border-radius:8px ;
    margin-bottom: 26px;
    transition-duration: 0.3s;
}
.news-item{
    text-decoration: none;
}
.news-item .new-text{
    color: #121B69;
    font-weight: 500;
}
.news-item:hover .new-text{
    text-decoration: underline;
}
.news-item:hover .news-img{
    transform: scale(1.07);
    transition-duration: 0.3s;
}
.news-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.date{
    font-size: 14px;
    color: var(--GreyBlue);
    opacity: 0.7;
    display: block;
    margin-bottom: 15px;
}
.new-line{
    width: 26px;
    height: 5px;
    background-image: url(../image/icons/new-line.svg);
    margin-bottom: 8px;
}
.new-text{
    font-size: 18px;
    line-height: 130%;
}
.videoandphoto{
    background-image: url(../image/background/videoandphoto.png);
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 44px;
    padding-bottom: 45px;
}
.videoandphoto__row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 41px;
    position: relative;
    z-index: 1;
}
.gallery-item{
    text-decoration: none;
    border-radius: 8px;
    width: 100%;
    height: 416px;
    position: relative;
}
.gallery-item::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(360deg, rgba(18, 27, 105, 0.8) 0%, rgba(18, 27, 105, 00) 100%);
    opacity: 0.8;
    border-radius: 8px;
    transition-duration: 0.3s;
}

.gallery-item .gallery-item-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    z-index: -1;
    transition-duration: 0.3s;
}

.gallery-item:hover::before, 
.gallery-item:hover .gallery-item-img{
    transform: scale(1.03);
    transition-duration: 0.3s;
}
.gallery-item__info{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-left: 40px;
    padding-bottom: 35px;
    padding-right: 40px;
}
.gallery-item__info .date{
    color: var(--White);
    opacity: 0.7;
}
.gallery-item__info .new-text{
    color: var(--White);
    font-weight: 500;
    margin-top: 15px;
}
.gallery-item_video .btn{
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.gallery-item_video .btn span{
    padding: 11px 16px;
    padding-right: 15px;
}
.city-bg{
    width: 100%;
    height: 190px;
    background-image: url(../image/background/city-bg.svg);
    background-repeat: repeat-x;
    position: relative;
    background-position: center center;
    overflow: hidden;
}
.city-bg .plane{
    position: absolute;
    top: 44px;
    animation: movePlane 12s linear infinite;
}

.cloud-one{
    position: absolute;
    top: 11px;
    animation: moveCloud 120s linear infinite;
    left: -70vw;
}
.cloud-two{
    position: absolute;
    top: 24px;
    left: -30vw;
    animation: moveCloud2 120s linear infinite;
}

.cloud-three{
    position: absolute;
    left: 0vw;
    top: 0px;
    animation: moveCloud3 120s linear infinite;
}

@keyframes movePlane {
    0% {
      transform: translateX(-100px); /* начальная позиция */
    }
    100% {
      transform: translateX(100vw); /* конечная позиция */
    }
  }





  @keyframes moveCloud {
    0% {
      transform: translateX(100vw); /* начальная позиция */
    }
    100% {
      transform: translateX(-100px); /* конечная позиция */
    }
  }

  @keyframes moveCloud2 {
    0% {
      transform: translateX(100vw); /* начальная позиция */
    }
    100% {
      transform: translateX(-100px); /* конечная позиция */
    }
  }
  @keyframes moveCloud3 {
    0% {
      transform: translateX(100vw); /* начальная позиция */
    }
    100% {
      transform: translateX(-100px); /* конечная позиция */
    }
  }




.list-organizations{
    background-color: #D3EFF7;
    background-image: url(../image/before/footer-slider.svg);
    background-repeat: repeat-x;
    background-position: top left;
    margin-top: 0px;
}
.list-organizations{
    padding-top: 49px;
    padding-bottom: 50px;
    overflow: hidden;
}
.list-organizations__item{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
}

.list-organizations__item:hover h3{
    text-decoration: underline;
}

.list-organizations__item-img img{
    height: 48px;
    width: auto !important;
}
.list-organizations__item-info h3{
    font-size: 16px;
    line-height: 145%;
}
.list-organizations__item-info span{
    color: var(--GreyBlue);
    opacity: 0.7;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-top: 11px;
}
.list-organizations__item-info span:hover{
    color: var(--LightBlue);
}
.list-organizations__item-info span::before{
    content: url(../image/icons/new-line.svg);
    
    margin-right: 8px;
}
.list-organizations .owl-nav, .list-organizations .owl-dots{
    display: none;
}
.list-organizations .owl-carousel .owl-stage-outer{
    overflow: visible;
}
.footer{
    background-color: var(--DarkBlue);
    padding-top: 48px;
    padding-bottom: 34px;
    position: relative;
}
.footer::before{
    content: '';
    width: 100%;
    height: 22px;
    position: absolute;
    top: -9px;
    left: 0;
    background-image: url(../image/before/footer.svg);
    background-position-x: 5px;
}
.footer .logo__text-bottom{
    color: var(--White);
}
.footer  .menu__list-link{
    height: 40px;
    color: var(--LightBlue);
}
.footer  .menu__list-link::before{
    background: var(--White);
}
.footer .menu__list-item:last-of-type .menu__list-link{
    padding-right: 0;
}
.footer .menu__list-item:last-of-type .menu__list-link::after{
    display: none;
}
.footer  .menu__list-link:hover {
    background: var(--DarkBlue);
    color: var(--White);
}
.footer-level-two{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.footer-level-two p{
    color: #A0A4C3;
    line-height: 140%;
    font-size: 16px;
}
.footer-level-two a{
    color: var(--White);
    text-decoration: none;
}
.link {
    color: var(--LightBlue) !important;
}
.link:hover{
    text-decoration: underline;
}
.footer-level-two p span{
    color: #A0A4C3;
    display: block;
}
.text-right{
    text-align: right;
}

.navigation.fixed::after{
    opacity: 0;
    transition-duration: 0.3s;
}
.burger-menu{
    display: none;
}

.burger-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  
  .burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 16px;
  }
  
  .burger-line {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    border-radius: 900px;
  }
  
  .burger-menu.open .burger-line:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  
  .burger-menu.open .burger-line:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.open .burger-line:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .burger-menu{
    display: none;
  }

  .first-screen-page{
    background-image: url(../image/background/bg-map.png);
    padding: 69px 0 65px;
    background-repeat: no-repeat;
  }
  .first-screen-page h1{
    margin-top: 0;
  }
  .breadcrumb{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-left: 0;
    list-style: none;
  }
  .breadcrumb__link, .breadcrumb__item{
    font-size: 14px;
    text-decoration: underline;
    display: flex;
  }
  .breadcrumb__item{
    text-decoration: none;
  }
  .breadcrumb__link::after{
    content: url(../image/icons/arrow-blue.svg);
    margin: 0 16px;
  }
  .breadcrumb__link:hover{
    text-decoration: none;
    color: var(--LightBlue);
  }
  .wive-inset{
    position: relative;
  }

  .wive-inset::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url(../image/before/wave-whiter-inset.svg);    
    z-index: 10;
}
.branches__map.wive-inset::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url(../image/before/wave-whiter-inset-reverse.svg);
    /* background-image: url(../image/before/footer-slider-fix.png); */
    z-index: 10;
    /* rotate: 180deg; */
}
.text-page{
    padding-top: 35px;
    padding-bottom: 71px;
}
.text-page p{
    line-height: 140%;
}
.drop-menu{
    background-color: var(--LightBlue);
    transition-duration: 0.3s;
    width: 100%;
    position: absolute;
    z-index: 9;
    left: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.drop-menu__list{
    display: flex;
    align-items: center;
    padding-left: 0;
    list-style: none;
    max-width: 1534px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.drop-menu__item::before{
    content: url(../image/icons/arrow-white.svg);
    margin-right: 24px;
}
.drop-menu__item{
    margin-right: 25px;
}
.drop-menu__link{
    color: var(--DarkBlue);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}
.drop-menu__link:hover{
    text-decoration: underline;
}

.search-nav{
    position: absolute;
    width: 100%;
    top: -300%;
    opacity: 0;
    left: 0;
    background-color: var(--White);
    padding-top: 63px;
    padding-bottom: 65px;
    z-index: 99;
    transition-duration: 0.4s;
}
.search-nav.active{
    opacity: 1;
    top: 0;
    transition-duration: 0.4s;
}
.search-nav::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background-image: url(../image/before/nav-line1.svg);
    background-repeat: repeat-x;
    background-position: top -2px;
}
.search-form input{
    font-size: 24px;
}

.close-search{
    border: none;
    display: flex;
    align-items: center;
    background: none;
    justify-content: flex-end;
    transition-duration: 0.3s;
    cursor: pointer;
}
.search-nav .container{
    position: relative;
}
.close-search{
    position: absolute;
    right: 16px;
    top: -39px;
    font-size: 14px;
}
.close-search svg{
    margin-left: 5px;
}
.close-search:hover{
    color: var(--LightBlue);
    transition-duration: 0.3s;
}
.close-search:hover path{
    stroke: var(--LightBlue);
}
.search-nav .btn{
    width: 224px;
}
.search-form{
    display: flex;
    align-items: center;
    margin-left: 24px;
    width: 1120px;
}
.search-form input{
    margin-right: 30px;
    width: 78%;
    padding-left: 30px;
    padding-top: 17px;
    padding-bottom: 23px;
}
.search-nav .title{
    min-width: 309px;
}
.pc-hidden{
    display: none;
}
.image-container{
    max-width: 736px;
    margin: 0 auto;
    margin-top: 42px;
    margin-bottom: 38px;
}
.image-container img, .slider img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.slider img{
    height: 552px;
}
.image-description{
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.8;
    display: block;
    line-height: 140%;
}
.image-description::after{
    content: '';
    width: 26px;
    height: 5px;
    background-image: url(../image/icons/new-line.svg);
    margin-top: 10px;
    display: block;
}
.text-page p{
    margin-top: 25px;
}
.text-page p:first-of-type{
    margin-top: 0;
}
.text-page h2{
    font-size: 32px;
    margin: 27px 0 30px;
}
u{
    text-decoration: underline;
    opacity: 1;
}
.slider{
    margin: 42px auto 0;
    max-width: 736px;
}
.owl-nav button{
    width: 64px;
    height: 64px;
    border-radius: 8px;
    padding: 8px !important;
    border-radius: 8px;
    text-decoration: none;
    background-color: var(--DarkBlue) !important;
    transition-duration: 0.3s;
    position: relative;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.owl-nav button::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition-duration: 0.3s;
    background: linear-gradient(0deg, rgba(18, 27, 105, 0.2) 0%, rgba(18, 27, 105, 0) 100%), #6BC7E3;
}
.owl-nav button span{
    font-size: 16px;
    color: var(--White);
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    width: 56px;
    height: 56px;
    border: thin solid #ffffff48;
    display: block;
    position: relative;
    font-size: 0;
}
.owl-nav button:hover::before{
    opacity: 0;
}
.owl-nav .owl-prev span{
    background-image: url(../image/icons/slider-left.svg) !important;
    background-position: center;
    background-repeat: no-repeat;
}
.owl-nav .owl-next span{
    background-image: url(../image/icons/slider-right.svg) !important;
    background-position: center;
    background-repeat: no-repeat;
}
.slider .owl-nav .owl-prev{
    position: absolute;
    top: 243px;
    left: -30px;
}
.slider .owl-nav .owl-next{
    position: absolute;
    top: 243px;
    right: -30px;
}
.project-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:34px 32px;
    margin-top: 41px;
}
.project-item .news-img{
    margin-bottom: 18px;
    position: relative;
}
.project-item .new-text{
    font-weight: 500;
    line-height: 133%;
}
.project-item .btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.project-item .btn-bluelight span{
    padding: 16px !important;
    height: 50px;
}
a[data-fancybox]{
    cursor: zoom-in;
}
.project-list .btn{
    opacity: 0;
}   
.project-list .news-item:hover .btn{
    opacity: 1;
}   
.text-page h3{
    margin: 33px 0 31px;
    font-size: 24px;
}
.text-page ol{
    margin-top: 32px;
}
.text-page  li{
    margin-bottom: 17px;
    font-weight: 400;
    font-size: 17px;
    line-height: 141%;
    position: relative;
    list-style: none;
}
ol{
    padding-left: 32px;
    list-style: none;
    counter-reset: item;
}
ol li::before{
    content: counter(item) "."; /* Добавляем счетчик перед элементом списка */
    counter-increment: item; /* Увеличиваем счетчик для каждого элемента */
    font-weight: 700;
    font-size: 17px;
    color: var(--LightBlue);
    position: absolute;
    left: -32px;
}
.text-page ul li::before{
    content: '';
    width: 11px;
    height: 2px;
    background-color: var(--LightBlue);
    position: absolute;
    left: -30px;
    top: 14px;
}

.text-page table {
    width: 100%;
    /* border-collapse: collapse; убирает один пиксель у thead и tbody*/
    border-collapse: separate;
    /* border-collapse: collapse; */
    border-spacing: 0;
    height: auto;
    margin: 32px 0 32px;
    margin-top: 42px;
    border-radius: 8px;
    margin-bottom: 0;
    /* width: 1503px; */
}
.text-page thead{
    text-align: center;
    background-color: var(--DarkBlue);

}
.text-page thead td{
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    text-align: center;
    color: var(--White);
    border-radius: 8px 8px 0 0;
    padding-top: 14px;
    padding-bottom: 18px;
    padding: 16px 24px !important;
}
.text-page tbody{
    border: thin solid #C7CAD1;
    border-top: none;
}
.text-page tbody tr:first-of-type td{
    background-color: var(--LightBlue);
    color: var(--White);
    font-family: var(--font-family);
    /* font-weight: 700; */
    font-size: 18px !important;
    line-height: 133%;
    padding: 16px 23px;
    border: thin solid #A6DDEE;
    border-top: none;
}
.text-page tbody td{
    padding: 16px 23px 18px;
    font-size: 17px;
    border: thin solid #C7CAD1;
}
.text-page .scroll{
    overflow-x: scroll;    
}
.filter{
    background-color: #B5E3F2;
    padding-top:58px ;
    padding-bottom: 68px;
}
.wive-inset_lightblue::before{
    content: '';
    width: 100%;
    height: 9px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../image/before/wive-inset_lightblue.svg);
    background-position-x: 5px;
}
.filter__title{
    font-size: 18px;
    font-weight: 500;
}
.radiobox{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.radiobox input{
    display: none;
}
.radio-title{
    font-size: 17px;
    margin-left: 16px;
    opacity: 0.7;
    margin-top: -4px;
}
.radio-ind{
    width: 24px;
    height: 24px;
    border: 1px solid var(--LightBlue);
    border-radius: 900px;
    background-color: var(--White);
    position: relative;
}
.radio-ind::before{
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 900px;
    background-color: var(--DarkBlue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition-duration: 0.3s;
}
.radiobox input:checked + .radio-ind{
    border: 2px solid var(--DarkBlue);
}
.radiobox input:checked + .radio-ind::before{
    opacity: 1;
    transition-duration: 0.3s;
}
.radiobox input:checked + .radio-title{
    opacity: 1;
}
.input-list{
    margin-left: 24px;
    gap: 31px;
    flex-wrap: wrap;
}
.gallery-wrapper{
    padding-top: 63px;
    padding-bottom: 71px;
}
.gallery-wrapper .videoandphoto__row{
    margin-top: 0;
}
.justify-center{
    justify-content: center;
}
.pagination{
    gap: 8px;
    list-style: none;
    padding-left: 0;
    margin-top: 56px;
}
.pag-btn{
    border-radius: 8px;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #6BC7E3 ;
    position: relative;
    cursor: pointer;
    transition-duration: 0.3s;
}
.pag-btn:hover{
    background-color: var(--DarkBlue);
    transition-duration: 0.3s;
}
.pag-btn::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: thin solid var(--White);
    opacity: 0.3;
    border-radius: 4px;
}

.pag-page{
    background: var(--White);
    border: thin solid var(--LightBlue);
    color: var(--LightBlue);
    font-weight: 600;
    text-decoration: none;
}
.pag-page::before{
    border: thin solid var(--LightBlue);
}
.pag-page:hover{
    color: var(--White);
    border-color: var(--DarkBlue);
}
.pag-btn.active{
    background-color: var(--DarkBlue);
    color: var(--White);
    border-color: var(--DarkBlue);
    cursor: default;
}
.pag-btn.active::before{
    border-color: var(--White);
}
.pag-next{
    margin-left: 8px;
}
.pag-prev{
    margin-right: 8px;
}
.tabs__header-list{
    padding-left: 0;
}
.tabs__header-list li::before{
    display: none !important;
}
.tabs{
    display: grid;
    grid-template-columns: 480px calc(100% - 512px);
    justify-content: space-between;
    margin-top: 26px;
}
.tabs__header-item{
    padding: 15px 46px;
    font-weight: 600 !important;
    color: var(--DarkBlue);
    border-radius: 8px;
    border: thin solid var(--LightBlue);
    font-size: 16px !important;
    text-transform: uppercase;
    margin-bottom: 17.5px;
    position: relative;
    display: block;
    transition-duration: 0.3s;
}
.tabs__header-item::after{
    content: '';
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    display: block;
    border: thin solid var(--LightBlue);
    opacity: 0.5;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition-duration: 0.3s;
}
.tabs__header-item.active{
    background-color: var(--DarkBlue);
    color: var(--White);
    border-color: var(--DarkBlue);
}
.tabs__header-item:hover:not(.active){
    cursor: pointer;
    outline: 2px solid var(--DarkBlue);
    border-color: var(--White);
    transform: scale(1.03);
    padding-top: 20px;
    padding-bottom: 20px;
}
.tabs__header-item:hover:not(.active)::after{
    opacity: 0;
    transition-duration: 0.3s;
}
.tabs__header-item.active::after{
    border-color: var(--White);
    opacity: 0.3;
}
.tabs h2:first-of-type{
    margin-top: 0;
}
.tabs__content-item{
    margin-top: -7px;
}
.tabs__header-arrow{
    position: absolute;
    transform: rotate(-90deg);
    left: 18px;
    transition-duration: 0.3s;
}
.tabs__header-item.active .tabs__header-arrow{
    transform: rotate(-0deg);
    transition-duration: 0.3s;
}
.tabs__content-item{
    display: none;
}
.tabs__content-item.active{
    display: block;
}

.tabs .slider{
    max-width: 74%;
}
.list-pages{
    padding-bottom: 71px;
}
.list-pages__wrapper{
    padding-top: 61px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.list-pages__item{
    display: flex;
    align-items: center;
    gap: 24px;
    background: #D3EFF7;
    border-radius: 8px;
    padding: 24px;
    text-decoration: none;

}
.list-pages__arrow{
    background-color: var(--White);
    border: thin solid var(--LightBlue);
    border-radius: 8px;
    min-width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition-duration: 0.3s;
}
.list-pages__arrow::before{
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: thin solid var(--LightBlue);
    opacity: 0.5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition-duration: 0.3s;
}
.list-pages__item h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    margin: 0px;
}
.list-pages__item:hover{
    background-color: var(--White);
    outline: 2px solid var(--DarkBlue);
    transform: scale(1.03);
}
.list-pages__item:hover .list-pages__arrow{
    background-color: #6BC7E3;
    transition-duration: 0.3s;
}
.list-pages__item:hover .list-pages__arrow::before{
    border-color: var(--White);
}
.list-pages__item:hover path{
    stroke: var(--White)
}
.map{
    height: 512px;
}
.map iframe{
    width: 100%;
    height: 100%;
}
.branches-list__item{
    background: #D3EFF7;
    border-radius: 8px;
    padding: 20px 22px;
    padding-top: 18px;
    transition-duration: 0.3s;
    border: 2px solid #D3EFF7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.branches-list__wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 53px;
    padding-bottom: 70px;
}
.branches-list__title{
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    text-decoration: none;
    position: relative;
    margin-bottom: 38px;
}
.branches-list__title::before{
    content: url(../image/icons/new-line.svg);
    position: absolute;
    left: 0;
    bottom: -32px;
}
.branches-list__title:hover{
    text-decoration: underline;
}
.contact-block{
    display: flex;
    align-items: center;
    gap: 25px;
}
.contact-block__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 900px;
    background-color: var(--White);
    min-width: 40px;
    min-height: 40px;
}
.branches-list__item a{
    display: block;
}
.branches-list__item .contact-block{
    margin-bottom: 13px;
}
.contact-block__address{
    padding-top: 21px;
}
.contact-block__tel{
    font-weight: 600;
}
.branches-list__footer{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.branches-list__footer .btn{
    text-align: center;
}
.branches-list__footer .btn span{
    padding: 8px;
}
.branches-list__item:hover{
    transition-duration: 0.3s;
    transform: scale(1.03);
    background: var(--White);
    border: 2px solid var(--DarkBlue);
}
.title_h2{
    font-size: 32px;
}
.contacts{
    padding-top: 38px;
    padding-bottom: 55px;
    position: relative;
    
}

.contacts__wrapper{
    padding-top: 43px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 34px;
}
.contacts__item{
    display: flex;
    align-items: flex-start;
    gap:25px ;
}
.contacts__icon{
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: thin solid var(--LightBlue);
}
.contacts__item-subtitle{
    color: var(--GreyBlue);
    font-size: 14px;
}
.contacts__item p{
    color: var(--GreyBlue);
    font-size: 17px;
    margin-top: 3px;
}
.contacts__info a{
    font-size: 17px;
    margin-top: 3px;
    color: var(--GreyBlue);
    display: block;
    text-decoration: none;
    color: var(--DarkBlue);
}
.contacts__info a:hover{
    color: var(--LightBlue);
}
.contacts__tel{
    font-weight: 600;
    color: var(--DarkGreyBlue);
}
.contacts-btn{
    display: flex;
    justify-content: center;
    margin-top: 28px;
    gap: 10px;
}
.contacts-btn .btn span{
    padding: 9px 19px;
}
.contacts-form{
    background-image: url(../image/background/contacts.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 50px;
    padding-bottom: 68px;
}
.contacts-form form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 47px;
    gap: 33px 35px;
}
.contacts-form input{
    padding-top: 16px;
    padding-bottom: 16px;
    transition-duration: 0.3s;
}
.contacts-form input:hover{
    border-color:var(--DarkBlue) ;
    transition-duration: 0.3s;
}
.contacts-form input:focus{
    outline: 1px solid var(--DarkBlue) ;
}
.valid input:invalid, .valid textarea:invalid{
    border-color: #C60000;
    outline: 1px solid #C60000;
}
.valid input:invalid::placeholder, .valid textarea:invalid::placeholder{
    color: #C60000;
}
.col-100{
    grid-column-start: 1;
    grid-column-end: 3;
}
textarea{
    border: thin solid var(--LightBlue);
    border-radius: 8px;
    color: var(--DarkGreyBlue);
    padding: 14px 23px;
    font-size: 17px;
    outline: none;
    height: 160px;
    resize: vertical;
}
textarea::placeholder{
    color: #757D8D;
    font-size: 17px;
}
.contacts-form textarea{
    margin-top: 8px;
}
.hidden{
    display: none;
}
label.btn{
    display: inline-block;
    cursor: pointer;
}
label.btn span{
    padding: 8px 22px;
}

.file{
    display: flex;
    align-items: center;
    gap: 24px;
}
.file-name{
    font-size: 17px;
    color: var(--GreyBlue);
}
.checkbox-row{
    display: flex;
    align-items: center;
    gap: 16px;
}
.checkbox-row input{
    display: none;
}
.checkbox-icon{
    min-width: 24px;
    height: 24px;
    border: thin solid var(--DarkBlue);
    border-radius: 8px;
}
.checkbox-row input:checked ~ .checkbox-icon{
    background-image: url(../image/icons/checkbox.svg);
    background-position: center;
}
.checkbox-text{
    font-size: 14px;
    color: var(--DarkBlue);
}
.form-docs{
    margin-top: -3px;
}
.descript-form{
    font-size: 14px;
    color: var(--DarkBlue);
    display: block;
    margin-top: 19px;
}
.descript-form span{
    color: var(--LightBlue);
} 
.form-btns{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    margin-top: -3px;  
}
.form-btns .btn{
    width: 208px;
}
.form-btns .btn span{
    padding: 9px 29px !important;
}
.datepicker__container a{
    text-decoration: none;
}
.is-today {
    background-color: var(--LightBlue);
    border-radius: 900px;
    text-decoration: none;
}
.is-today span{
    text-decoration: none;
    color: var(--White);
}
.is-selected div{
    border-radius: 900px !important;
}
.datepicker{
    position: relative;
    width: 224px;
}
.datepicker::before{
    content: url(../image/icons/date.svg);
    position: absolute;
    right: 24px;
    top: 20px;
    z-index: 9;
    gap: 32px;
    pointer-events: none;
}
.filter-search{
    width: 608px;
}
.number-docs{
    width: 352px;
}
.input-row{
    margin-top: 3px;
    gap: 32px;
}
.input-row input{
    padding-top: 17px;
    padding-bottom: 17px;
}
.checkbox .radio-ind{
    border-radius: 8px;
    border: thin solid var(--LightBlue);
}
.checkbox input:checked ~ .radio-ind{
    border-color: var(--DarkBlue);
    background-image: url(../image/icons/checkbox.svg);
    background-position: center;
}
.checkbox .radio-ind::before{
    display: none !important;
}
.filter-form{
    display: flex;
    flex-direction: column;
    gap: 28px;
}

select{
    border: thin solid var(--LightBlue);
    border-radius: 8px;
    color: var(--DarkGreyBlue);
    padding: 16px 19px;
    font-size: 17px;
    outline: none;
    cursor: pointer;
    padding-right: 72px;
    -webkit-appearance: none; /* Убирает стандартный стиль для Safari */
  -moz-appearance: none; /* Убирает стандартный стиль для Firefox */
  appearance: none; /* Убирает стандартный стиль для других браузеров */
  background-image: url(../image/icons/select.svg);
  background-repeat: no-repeat;
  background-position: 93% center;
}
select::placeholder{
    color: var(--GreyBlue);
    
}
select:focus{
    border-color: var(--DarkBlue);
}
.filter__footer{
    margin-top: 11px;
}
.filter__footer .filter__title{
    margin-right: 19px;
}
.filter__footer .form-btns{
    gap: 24px;
    margin-top: 0px;
}
.filter__footer .form-btns .btn{
    width: auto;
}
.filter__footer .form-btns span{
    padding: 9px 21px !important;
}
.docs-wrapper{
    padding-top: 57px;
    padding-bottom: 70px;
}
.docs-item{
    display: flex;
    align-items: flex-start;
    gap:24px;
    text-decoration: none;
    margin-bottom: 35px;
}

.docs-item__icon{
    min-width: 48px;
    height: auto;
}
.docs-item__icon img{
    width: 100%;
    height: auto;
}
.docs-item .docs-item__info .docs-item__title{
    color: var(--DarkBlue);
    font-weight: 500;
    font-size: 18px;
    transition-duration: 0.3s;
    /* margin-bottom: 9px; правило .text-page h3 перебивало пришлось изменить */ 
    margin: 0px 0px 9px 0px;
}
.docs-item:hover .docs-item__title{
    color: var(--LightBlue);
    text-decoration: underline;
    transition-duration: 0.3s;
}
.docs-item__date-tags{
    display: flex;
    align-items: center;
}
.docs-date{
    color: var(--GreyBlue);
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.docs-date::after{
    content: 'z';
    width: 1px;
    height: 10px;
    background-color: #C7CAD1;
    font-size: 0;
    display: block;
    position: relative;
    margin-left: 13px;
}
.docs-category{
    color: var(--DarkGreyBlue);
    font-size: 14px;
    font-weight: 500;
}
.docs-wrapper .pagination{
    margin-top: 52px;
}
.filter-header{
    display: none;
}

.filter-switch{
    min-width: 48px;
    height: 48px;
    border-radius: 900px;
    background-color: var(--White);
    /* background-image: url(../image/icons/minus.svg); */
    background-position: center;
    background-repeat: no-repeat;
    border: none;
}

.filter-form_setting.active{
    display: grid;
}
.filter-docs .form-btns{
    margin-top: 0;
}
.filter-docs .form-btns .btn{
    width: auto;
}
.filter-docs .filter-search{
    width: 80%;
}
.reclamation{
    position: relative;
    overflow-x: hidden;
}

.reclamation .container{
    position: relative;
    z-index: 9;
}



.wave-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: -40%;
    top: 0;
    z-index: 0;
    transform: scalex(3.2);
}

.water-fill {
    /* animation: wave 10s infinite linear, fill-up 32s infinite ease-out alternate; */
    animation: wave 10s infinite linear, fill-up 25s infinite ease-out alternate;
}

@-moz-keyframes wave {
    0% {
        x: -150px;
    }

    100% {
        x: 100px;
    }
}

@-webkit-keyframes wave {
    0% {
        x: -150px;
    }

    100% {
        x: 0;
    }
}

@-o-keyframes wave {
    0% {
        x: -150px;
    }

    100% {
        x: 0;
    }
}

@keyframes wave {
    0% {
        x: -150px;
    }

    100% {
        x: 0;
    }
}

@-moz-keyframes fill-up {
    0% {
        height: 0px;
        y: 30px;
    }

    100% {
        height: 80px;
        y: -30px;
    }
}

@-webkit-keyframes fill-up {
    0% {
        height: 0px;
        y: 30px;
    }

    100% {
        height: 80px;
        y: -30px;
    }
}

@-o-keyframes fill-up {
    0% {
        height: 0px;
        y: 30px;
    }

    100% {
        height: 80px;
        y: -30px;
    }
}

@keyframes fill-up {
    0% {
        height: 0px;
        /* height: 50px; */
        y: 30px;
    }

    100% {
        height: 80px;
        y: -30px;
    }
}



.videoandphoto .container > .btn, .news .container > .btn{
    display: none;
}
.rutube-container {
    max-width: 736px;
    margin: 0 auto;
    margin-top: 42px;
    margin-bottom: 38px;
}
.rutube-container iframe {
    width: 100%;
}
#bx_incl_area_3_1_1, #bx_incl_area_3_1_2 {
    display: contents;
}
.fix-padding-text-page {
    padding-bottom: 71px;
}
.fix-padding-container {
    padding-left: 15px;
    padding-right: 15px;
}
.branches__map {
    position: relative;
    width: 100%;
    height: 480px;
}
.branches__btn.map.btn.btn-bluelight.btn-stroke {
    height: auto;
}

/*.contacts {
  padding: 56px 0;
}

.contacts__body {
  overflow: hidden;
}*/

.contacts__body table td {
  font-family: "Roboto";
  font-weight: 400;
}

.contacts__body thead tr::after {
  width: 100%;
  left: 0;
}

.contacts__line {
  margin: 8px 0;
}

.contacts__item {
  cursor: pointer;
  position: relative;
  height: 56px;
  padding: 0 48px 0 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
}

.contacts__item._active {
  border-bottom: none;
}

.contacts__item._active .contacts__button::after {
  -webkit-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.contacts__item_top {
  /* background: #004C50; */
  background: var(--DarkBlue);
}

.contacts__item_bottom {
  background: #55A4B4;
  border-bottom: 1px solid #c1c0ba;
}

.contacts__button {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contacts__button::before,
.contacts__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.contacts__button::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.contacts__dropdown {
  display: none;
}

.contacts__dropdown table {
  margin: 0;
}

.contacts__dropdown .dragscroll > span {
  padding: 5px 24px;
  display: block;
}

.contacts__dropdown .dragscroll::-webkit-scrollbar {
  border-radius: 0;
}

.contacts__dropdown .dragscroll::-webkit-scrollbar-thumb {
  border-radius: 0;
}
.contacts__dropdown thead {
    background-color: var(--LightBlue);
}
.contacts__dropdown tbody tr:first-of-type td {
    background-color: #ffffff;
    color: #000000;
}
.contacts__dropdown table th {
    background-color: var(--LightBlue);
    color: var(--White);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px !important;
    line-height: 133%;
    padding: 16px 23px;
    border: thin solid #A6DDEE;
    border-top: none;
}

.contacts__btn {
    padding: 0 25px;
    margin: 24px 0 0 0;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0E4CDD;
  /* height: 48px; */
  -webkit-transition: -webkit-box-shadow .3s linear;
  transition: -webkit-box-shadow .3s linear;
  transition: box-shadow .3s linear;
  transition: box-shadow .3s linear, -webkit-box-shadow .3s linear;
}

.btn span {
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.btn_white {
  background: #FFFFFF;
  border: 1px solid #D2D3D4;
}

.btn_white span {
  color: #202229;
}

.btn_green {
  background: #0EC55D;
}

.btn:hover {
  -webkit-box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 425px) {
  .btn span {
    font-size: 12px;
    line-height: 18px;
  }
}

@media (max-width: 374px) {
  .btn span {
    font-size: 10px;
    line-height: 17px;
  }
}
.gallery__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -16px;
}

.gallery__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  padding: 0 16px;
  margin: 32px 0;
  max-width: 33.333%;
}

@media (max-width: 1024px) {
  .gallery__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .gallery__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
    margin: 10px 0;
  }
}

.gallery__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}

.gallery__item:hover .gallery__photo::after,
.gallery__item:hover .gallery__photo span {
  opacity: 1;
}

.gallery__photo {
  display: block;
  position: relative;
}

.gallery__photo img {
  width: 100%;
}

.gallery__photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(50, 75, 160, 0.4)), to(rgba(50, 75, 160, 0.4)));
  background: linear-gradient(0deg, rgba(50, 75, 160, 0.4), rgba(50, 75, 160, 0.4));
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
}

.gallery__photo span {
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  width: 80px;
  height: 80px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
}

.gallery__photo span::before, .gallery__photo span::after {
  content: '';
  position: absolute;
  z-index: 2;
  background: #202229;
  left: 50%;
  top: 50%;
}

.gallery__photo span::before {
  width: 2px;
  height: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.gallery__photo span::after {
  width: 40px;
  height: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.gallery__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border: 1px solid #D2D3D4;
  border-top: none;
  padding: 23px 32px;
}

.gallery__content span {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #202229;
}
.contacts__btn.btn.fix-decoration {
    text-decoration: none;
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
    border-radius: 900px !important;
}
.set-font-weight {
    font-weight: 700;
}
.btn.btn-bluelight.submin-form span,
.btn.btn-bluelight.btn-stroke span {
    width: 100%;
}
.branches-list__footer .btn-bluelight {
    text-align: center;
}
.error-msg {
    color: #ff0018;
}
.success-msg {
    color: #6BC7E3;
}
.contacts__item.open .contacts__button::after {
  -webkit-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}
.filter-switch {
    min-width: 48px;
    height: 48px;
    border-radius: 900px;
    background-color: var(--White);
    border: none;
    position: relative;
    cursor: pointer;
}

.filter-switch::before,
.filter-switch::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #000;
    transform: translate(-50%, -50%);
    transition: transform 0.2s linear;
}
.filter-switch::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.filter-switch.active::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.contacts__dropdown table th:nth-child(1),
.contacts__dropdown table th:nth-child(2) {
    width: 40%;
}

.contacts__dropdown table th:nth-child(3) {
    width: 20%;
}
.datepicker__wrapper {
    width: 100%;
}
.filter-form.filter-form_setting .input-row.row.justify-between{
    align-items: center;
}
@media (max-width: 1199px) {
    .filter-form.filter-form_setting.active .row.align-center.justify-between.filter__row.filter__footer{
        gap: 32px;
    }
}
.form-popup__close.btn.btn-bluelight.btn-stroke {
    color: var(--White);
    border: 0px solid black;
}
#bx_incl_area_2_2 {
    display: contents;
}
.gallery-item.gallery-item_video .btn.btn-bluelight {
    height: 64px;
}