@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    src:url('../fonts/Montserrat-Medium.woff2') format("woff2") ;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    src:url('../fonts/Montserrat-Regular.woff2') format("woff2") ;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    src:url('../fonts/Montserrat-SemiBold.woff2') format("woff2") ;
    font-display: swap;
}
@font-face {
    font-family: Unbounded;
    font-style: normal;
    font-weight: 600;
    src:url('../fonts/UnboundedSemiBold.woff2') format("woff2") ;
    font-display: swap;
}
body,html{
    padding: 0;
    margin: 0!important;
    position: relative;
    background: #FAFAFA;
    font-family: Montserrat;
    color: #000;
    overflow-x: hidden;
}
ul,li{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
h1,h2,h3{
    margin: 0;
}
a{
    text-decoration: none;
    cursor: pointer;
    font-family: Montserrat;
    font-style: normal;
    color: #000;
}
button, input, textarea{
    border: none;
    outline: none;
    cursor: pointer;
    appearance: none;
}
.wrapper{
    position: relative;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.languages:hover ul{
    opacity: 1;
    visibility: visible;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.languages ul{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
    position: absolute;
    padding: 3px 5px;
    top: 27px;
    background: #E3E3E3;
    border-radius: 5px;
}
.lang-item a,#current-lang{
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}
header ul .lang-item a{
    color: black;
}
#current-lang{
    padding: 5px;
    text-transform: uppercase;
}
.languages{
    position: relative;
    width: 46px;
    z-index: 10;
    cursor: pointer;

}
.header_right{
    grid-gap: 56px;
}
.lang-item a:hover,#current-lang:hover{
    opacity: 0.8;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.languages:before{
    content: '';
    position: absolute;
    right: 0;
    background-image: url("../img/ar.svg");
    width: 8px;
    top: 50%;
    transform: translateY(-50%);
    height: 5px;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.languages:hover:before{
    transform: translateY(-50%) rotate(180deg);
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.lang-item.current-lang{
    display: none;
}
.banner_block{
    position: relative;
    min-height: 700px;
}
.banner_item{
    height: 100vh;
    min-height: 700px;
    background-size: cover!important;
    background-position: center!important;
    position: relative;
    overflow: hidden;
}
.banner_item:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:
            linear-gradient(90deg, rgba(18, 16, 48, 0.39) -1.22%, rgba(18, 16, 48, 0.00) 48.92%),
            linear-gradient(0deg, rgba(39, 34, 98, 0.16) 0%, rgba(39, 34, 98, 0.16) 100%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%);
    z-index: 1;
    pointer-events: none;}
.banner_img{
    height: 100%;
    object-fit: cover;
    animation: bannerZoom 12s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.04);
    }
}
.banner_info{
    position: absolute;
    left: 60px;
    max-width: 700px;
    width: 100%;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}
.banner_title{
    color: #FFF;
    font-family: Unbounded;
    font-size: 57px;
    font-style: normal;
    font-weight: 600;
    line-height: 124%; /* 70.68px */
}
.banner_description{
    margin: 34px 0;
    color:  #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 141%; /* 25.38px */
}
.flex_btn{
    grid-gap: 17px;
    justify-content: flex-start;
}
.btn{
    border-radius: 40px;
    background: #29AAE2;
    border: 1px solid #29AAE2;
    padding: 19px 32px;
    color:  #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    grid-gap: 4px;
    justify-content: center;
    transition:
            background 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease,
            transform 0.3s ease;
    cursor: pointer;
}

.btn:hover,.btn_form:hover input {
    background: #fff;
    border-color: #29AAE2;
    color: #29AAE2;
    box-shadow: 0 8px 20px rgba(41, 170, 226, 0.2);
    transform: translateY(-2px);
}

.btn_border {
    background: transparent;
    border-color: white;
}

.btn_border:hover {
    background: #fff;
    border-color: #fff;
    color: #29AAE2;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}
.flex_bottom{
    color:  #FFF;
    grid-gap: 5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
    justify-content: flex-start;
    transition-duration: 0.4s;
}
.flex_bottom:hover{
    opacity: 0.7;   transition-duration: 0.4s;
}
.banner_bottom{
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    z-index: 10;
}
.social_block{
    position: absolute;
    right: 60px;  z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    grid-gap: 16px;
}
.social_block a{
    display: flex;
}
.social_block img{
    transition-duration: 0.4s;
}
.social_block a:hover img{  transition-duration: 0.4s;
    transform: scale(1.1);
}
.banner_bottom img{
   height: 15px;
}
.bud_flex img{
    height: 45px;
    width: auto!important;
}
.bud_flex span{
    background: rgba(255, 255, 255, 0.20);
    color: #FFF;
    height: 45px;
    width: 45px;
    text-align: center;
    font-size: 16.437px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.702px; /* 107.692% */
    letter-spacing: 1.264px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-sizing: border-box;
}
.bud_flex{
    justify-content: flex-start;
    display: inline-flex;
    position: relative;
    top: -13px;
}
.banner_title p{
    margin: 0;
    display: inline;
}
.col_info{
    width: 45%;
}
.col_img{
    width: 51%;
    object-fit: cover;
    object-position: left;
}
.flex_col{
    align-items: stretch;
}
.section_title{
   margin: 30px 0 32px 0;
    font-family: Unbounded;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 126%; /* 47.88px */
}
.section_subtitle{
    color: #2C478A;
    display: flex;
    align-items: center;
    grid-gap: 7px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2; /* 85.714% */
    letter-spacing: 4px;
    text-transform: uppercase;
}
.col_info .btn{
    margin: 36px 0 30px 0;
}
.section_description{
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%; /* 22.72px */
}
.section_description strong{
    font-weight: 600;
    color: #2C478A;
}
.section_dop ul{
    display: flex;
    align-items: flex-start;
}
.section_dop{
    border-top: 1px solid rgba(39, 34, 98, 0.20);
    border-bottom: 1px solid rgba(39, 34, 98, 0.20);
    padding : 30px 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%; /* 22.72px */
}
.section_dop li{
    padding: 0 30px;
}
.section_dop li:nth-child(2){
    border-right: 1px solid rgba(44, 71, 138, 0.2);
    border-left: 1px solid rgba(44, 71, 138, 0.2);
}
.section_dop strong{
    color: #2C478A;
    font-family: Unbounded;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 117%; /* 32.76px */
    margin-bottom: 12px;
    display: block;
}
.section{
    position: relative;
    z-index: 1;
    padding-top: 110px;
}
.wrapper{
    padding: 0 60px;
}
.flex_head{
    grid-gap: 15px;
    align-items: flex-end;
    margin-bottom: 40px;
}
.flex_head .section_title{
    margin-top: 26px;
    margin-bottom: 0;
}
.gallery_img{
height: 90vh;
    object-fit: cover;
    object-position: top;
}
.gallery_item{
    position: relative;
    clip-path: polygon(
            30px 0,
            100% 0,
            100% calc(100% - 30px),
            calc(100% - 30px) 100%,
            0 100%,
            0 30px
    );
}

.faq_question{
    background:  #2C478A;
    padding: 23px 50px 23px 16px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    line-height: 142%; /* 28.4px */
    transition-duration: 0.4s;
}
.faq_question:hover{
    opacity: 0.7;   transition-duration: 0.4s;
}
.faq_item{
    position: relative;
}
.faq_list{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 17px;
}
.faq_question:before{
    content: '';
    position: absolute;
    right: 25px;
    background-image: url("../img/plus.svg");
    width: 17px;
    height: 17px;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    transition-duration: 0.3s;
}
.faq_item.visible .faq_question:before{ transition-duration: 0.3s;
    background-image: url("../img/minus.svg");
    height: 1px;
}
.faq_answer{
    display: none;
    padding: 24px 16px;
}
.section_grey{
    background: #F6F6F6;
    position: relative;
}
.section_grey:before{
    content: '';
    background: #F6F6F6;
    height: 255px;
    width: 100%;
    top: -255px;
    position: absolute;
    z-index: 0;
}
.section_fix{
    padding-bottom: 110px;
    margin-top: 110px;
    position: relative;
}
.section_fix:before{
    height: 1px;
background: rgba(44, 71, 138, 0.2);
    content: '';
    position: absolute;
    left: 60px;
    right: 60px;
    top: 0;
}
.col_img.fix img{
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}
.section_fix .section_dop ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#dev .flex_col{
    align-items: center;
}
.social_list{
    display: flex;
    grid-gap: 16px;
}
.social_list a{
    display: flex;
}
.social_list img{
    transition-duration: 0.4s;
}
.social_list a:hover img{
    transform: scale(1.1); transition-duration: 0.4s;
}
.footer{
    background: #2C478A;
    padding: 60px 0;
}
.footer_middle{
    padding: 60px 0;
    margin: 60px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.20);
    border-bottom: 2px solid rgba(255, 255, 255, 0.20);
}
.footer_col_title{
    color:#FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 85.714% */
    letter-spacing: 4px;
    text-transform: uppercase;
}
.footer_link{
    color:  #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    transition-duration: 0.3s;
    line-height: 142%; /* 22.72px */
}
.footer_link:hover{
    opacity: 0.7;  transition-duration: 0.3s;
}
.footer_col{
    display: grid;
    grid-gap: 29px;
}
.footer_form_title{
    margin-bottom: 34px;
    color:  #FFF;
    font-family: Unbounded;
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: 117%; /* 31.59px */
}
.license{
    margin-right: 40px;
}
.footer_middle .menu{
    display: flex;
    grid-gap: 40px;
    justify-content: space-between;
}
.footer_middle .menu a{
    color:#FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
    transition-duration: 0.4s;
}
.footer_middle .menu a:hover{
    opacity: 0.7;
    transition-duration: 0.4s;
}
.btn_form p{
    margin: 0;
}
.btn_form input{
    border-radius: 40px;
    background: #29AAE2;
    border: 1px solid #29AAE2;
    padding: 19px 32px;
    color:  #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(5.449999809265137px);
    display: inline-block;
    transition:
            background 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease,
            transform 0.3s ease;
    cursor: pointer;
}
.form-control{
    background: transparent;
    display: block;
    color:  #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%; /* 22.72px */
    padding: 16px 0;
    border-bottom: 1px solid  #FFF;
    max-width: 260px;
}
.form-control::placeholder{
    color:  #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
}
.form_flex{
    display: flex;
    align-items: center;
    grid-gap: 16px;
}
.form-group p{
    margin: 0;
}
.wpcf7-spinner{
    display: none;
}
.footer_col.fix{

}
.footer_top{
    grid-gap: 40px;
    align-items: flex-start;
}
.section_dop.fix{
    padding: 0;
}
.section_dop.fix li{
    padding: 30px;
    position: relative;
}
.section_dop.fix li:nth-child(2):before{
   content: '';
    position: absolute;
    left: 0;
    background: rgba(44, 71, 138, 0.2);
    height: 50%;
    width: 1px;
   top: 50%;
    transform: translateY(-50%);
}
.section_dop.fix li:nth-child(2):after{
    content: '';
    position: absolute;
    left: 10%;
    background: rgba(44, 71, 138, 0.2);
    height: 1px;
    width: 90%;
   bottom: 0;
}
.section_dop.fix li:nth-child(2){
  border: 0;
}
.section_dop.fix li:nth-child(3):before{
    content: '';
    position: absolute;
    right: 0;
    background: rgba(44, 71, 138, 0.2);
    height: 50%;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
}
.section_dop.fix li:nth-child(3):after{
    content: '';
    position: absolute;
    right: 10%;
    background: rgba(44, 71, 138, 0.2);
    height: 1px;
    width: 90%;
  top: 0;
}
.section_description p{
    margin-bottom: 0;
}
.col_img.fix{
    position: relative;
    clip-path: polygon(
            30px 0,
            100% 0,
            100% calc(100% - 30px),
            calc(100% - 30px) 100%,
            0 100%,
            0 30px
    );
}

.pos{
    position: absolute;
    right: 0;
    top: 30px;
    animation: floating 4s ease-in-out infinite;
    will-change: transform;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }

}
.news_grid_title{
    background:  #2C478A;
    padding: 30px;
    box-shadow: -6px 4px 26.9px 0 rgba(0, 0, 0, 0.03);
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}
/*.news_grid_title:before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: -1px;*/
/*    left: -1px;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    background:#FAFAFA;*/
/*    clip-path: polygon(0 0, 100% 100%, 0 100%);*/
/*}*/
.news_item:nth-child(3){
    clip-path: polygon(
            0 0,
            calc(100% - 30px) 0,
            100% 30px,
            100% 100%,
            0 100%
    );
}

.news_grid_title .section_title,.news_grid_title .section_subtitle,.section_subtitle.fix{
    color: white;
}
.news_grid_title .section_subtitle img,.section_subtitle.fix img{
    filter: brightness(0) grayscale(1) invert(1);
}
.news_img{
    width: 100%;
    transition-duration: 0.3s;
    object-fit: cover;
}
.news_grid{
    grid-gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.news_item:before{
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 33.76%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 59.61%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;    z-index: 1;
}
.news_item{
    display: flex;
    position: relative;
   box-shadow: -6px 4px 26.9px 0 rgba(0, 0, 0, 0.03);
    overflow: hidden;
}
.news_item:hover img{
    transform: scale(1.02);
    transition-duration: 0.3s;
}
.news_info{
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}
.news_label{
    color: #2C478A;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 85.714% */
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 47px;
    background: #FFF;
    position: absolute;
    top: 20px; z-index: 2;
    right: 20px;
}
.news_title{
    color:  #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin-top: 15px;
    line-height: 142%; /* 28.4px */
    display: block;
    transition-duration: 0.4s;
}
.news_item:hover .news_title{
    color: #29AAE2;    transition-duration: 0.4s;
}
.news_date{
    color:  #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 85.714% */
    letter-spacing: 4px;
    text-transform: uppercase;
}
.benefits_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}
.benefits_item{
    overflow: hidden;
    min-height: 250px;
    position: relative;
    cursor: pointer;

    background-position: center!important;
    background-size: cover!important;
    background: rgba(255, 255, 255, 0.15);    color:  #FFF;
}
.benefits_item:nth-child(2),.benefits_item:nth-child(6){
    background: #F6F6F6;
    color: #000000!important; ;
}
.benefits_item:nth-child(5),.benefits_item:nth-child(6){
    grid-column: span 2;
}
.benefits_item:nth-child(3){
    clip-path: polygon(
            0 0,
            calc(100% - 30px) 0,
            100% 30px,
            100% 100%,
            0 100%
    );
}

.title {
    font-family: Unbounded;
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: 117%;

}
.benefits_item .title{
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;

    transform: translateY(0);
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.benefits_item .section_description {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    margin: 0;

    transform: translateY(20px);

    transition:
            opacity .5s ease,
            transform .5s ease,
            visibility 0s linear .5s;
}

.benefits_item:hover .title{
    transform: translateY(-140px);
}

.benefits_item:hover .section_description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
            opacity .5s ease .1s,
            transform .5s ease .1s;
}
.section_blue{
    position: relative;
}
.section_blue:before{
    content: '';
    position: absolute;
    background: #2C478A;
    width: 100%;
    bottom: 0;
    height: 135%;
    left: 0;
}
.terms_grid{
    /*display: grid;*/
    /*grid-template-columns: 1fr 1fr 1fr;*/
    /*grid-gap: 10px;*/
}
.terms_grid .owl-stage{
    display: flex;
    align-items: stretch;
}
.terms_item{
    background: #F6F6F6;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-gap: 60px;
    align-items: flex-start;
    height: 100%;
    box-sizing: border-box;
}
.terms_grid .owl-dot{
    background: #2C478A!important;
}
.terms_grid .owl-dots{
    margin-top: 20px;
}
.terms_label{
    padding: 11px 22px;
    border-radius: 47px;
    background:  #FFF;
    color: #2C478A;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 85.714% */
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
}
.terms_label img{
    height: 16px;
}
.terms_label.fix{
    padding-top: 8px;
    padding-bottom: 8px;
}
.terms_item .section_description{
    max-width: 85%;
}
.form_bg{
    background: #29AAE2;
    padding: 60px 0;
    position: relative;
}
.form_bg:before{
    content: "";
    position: absolute;
    bottom: -1px;
  left: -1px;
    width: 30px;
    height: 30px;
    background:#F6F6F6;
    clip-path: polygon(0 0, 100% 100%, 0% 100%);
}
.section_title.fix,.section_description.fix{
    color: white;
}
.form_bg .section_description{
    max-width: 430px;
}
.form_bg .section_title{
    max-width: 645px;
}
.pos3{
    left: 0;
    top: 0;
    right: auto;
}
.btn_form.fix input{
    background: white;
    border-color: white;
    color: black;
    min-width: 270px;
    text-align: center;
}
.form_accept{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%; /* 22.72px */
}
.form_flex.fix{
    justify-content: space-between;
}
.form_flex.fix .form-group{
    width: 48%;
}
.form_flex.fix .form-control{
    max-width: none;
    width: 100%;
    text-align: center;
}
.form_flex.fix .form-control::placeholder{
    text-align: center;
}
.form_flex.fix:nth-child(2){
    margin-bottom: 36px;
}
.repair_tab {
    display: none;
    width: 100%;
}

.repair_tab.active {
    display: block;
    width: 100%;
}

.repair_slider {
    width: 100%;
}
.tabs{
    display: flex;
    grid-gap: 10px;
    width: 50%;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.tab_item {
    width: 23%;
    cursor: pointer;
    border-radius: 37px;
    background: #F6F6F6;
    backdrop-filter: blur(5.449999809265137px);
    padding: 19px 32px;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
    min-width: 215px;
    box-sizing: border-box;
    transition-duration: 0.4s;
}

.tab_item.active,.tab_item:hover {
    background: #2C478A;
    color: white;    transition-duration: 0.4s;
}
.repair_grid {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.repair_grid .news_grid_title {
    min-width: 430px;
    width: 430px;
    flex-shrink: 0;
    box-sizing: border-box;clip-path: polygon(
        30px 0,
        100% 0,
        100% 100%,
        0 100%,
        0 30px
);
}

.repair_block {
    flex: 1;
    min-width: 0;
    width: calc(100% - 440px);
}

.repair_tab {
    display: none;
    width: 100%;
}

.repair_tab.active {
    display: block;
    width: 100%;
}

.repair_slider {
    width: 100%;
}

.repair_slide {
    height: 550px;
    display: flex;
    position: relative;
}
.repair_slide:before{
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 89.81%, rgba(0, 0, 0, 0.37) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0.00) 86.78%, rgba(0, 0, 0, 0.37) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.repair_slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.title.fix{
    color: white;
}
.news_grid_title.fix{
    justify-content: space-between;
}
.news_grid_title.fix .title{
    margin-bottom: 30px;
}
.news_grid_title.fix:before{
    bottom: auto;
    clip-path: polygon(0 0, 100% 0%, 0 100%);
    top: -1px;
}
.hid_block {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.hid_tab_content {
    display: none;
    width: 100%;
}

.hid_tab_content.active {
    display: block;
    width: 100%;
}

.hid_slider {
    width: 100%;
}

.hid_slider a {
    display: block;
    position: relative;
    padding-top: 75%;
}

.hid_slider a > img:first-child {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
}
.hid_slider .owl-dots{
    padding: 0 10px;
    box-sizing: border-box;
}
.hid_slider .plus {
    position: absolute;
    right: 20px;
    bottom: 20px;
    max-width: 48px;
    height: 48px;
    transition-duration: 0.3s;
    cursor: pointer;
}
.hid_slider .plus:hover{  transition-duration: 0.3s;
    transform: scale(1.02);
}
.tabs_hid_more:hover path{
    fill: white;
    transition-duration: 0.3s;
}
.tabs_hid_more path{
    transition-duration: 0.3s;
}
.section_blue.fix:before{
display: none;
}
.section_blue.fix .section{
    background: #2C478A;
}
.tab{
    border-radius: 37px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(5.449999809265137px);
    padding: 19px 32px;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
    transition-duration: 0.4s;
    cursor: pointer;
}
.tab.active,.tab:hover,.genplan_btn:hover{
    background: #29AAE2;
    color: white;  transition-duration: 0.4s;
}
.tabs_hid{
   display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 40px;
}
.infra_block{
    min-height: 650px;
    height: 85vh;
    position: relative;
    background-size: cover!important;
    background-position: bottom!important;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 60px 60px;
}
.infra_grid{
    display: flex;
    align-items: stretch;
    justify-content: center;
    grid-gap: 10px;
    width: 100%;
}
.infra_tabs{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 10px;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 36px;
    width: 100%;
}
.infra_item {
    display: none;
    background: #F6F6F6;
    backdrop-filter: blur(4.300000190734863px);
    padding: 32px;
    min-height: 215px;
  flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 20%;
    grid-gap: 20px;
}
.infra_item.first{
    clip-path: polygon(
            30px 0,
            100% 0,
            100% 100%,
            0 100%,
            0 30px
    );
}
.infra_item.last{
    clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 30px),
            calc(100% - 30px) 100%,
            0 100%
    );
}
.infra_item.active {
    display: flex;
}
.apart_tab_content {
    display: none;
    width: 100%;
}

.apart_tab_content.active {
    display: block;
}

.apart_slider {
    width: 100%;
}

.apart_block {
    width: 100%;
    min-width: 0;
}
.tabs_apart{
    width: 100%;
    justify-content: flex-start;

}
.tabs_flex{
    grid-gap: 50px;    margin-bottom: 36px;
}
.nav{
    grid-gap: 20px;
}
.nav img{
    transition-duration: 0.3s;
    cursor: pointer;
}
.nav img:hover{
    transform: scale(1.02);    transition-duration: 0.3s;
}
.apart_item{
    background: #FFF;
    padding: 32px;
}
.apart_flex{
    grid-gap: 15px;
    margin-bottom: 23px;
}
.apart_img{
    height: 230px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-bottom: 23px;
}
.apart_item .btn{
    width: 100%;
    box-sizing: border-box;
}
.apart_slider .owl-stage{
    display: flex;
    align-items: stretch;
}
.apart_slider .news_grid_title.fix{
    height: 100%;
    box-sizing: border-box;
    background-size: cover!important;
    background-position: center!important;
    clip-path: polygon(
            30px 0,
            100% 0,
            100% 100%,
            0 100%,
            0 30px
    );
}
.apart_slider .news_grid_title.fix:before{
    clip-path: none;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.20) 100%);
    z-index: 1;
    pointer-events: none;
}
.apart_slider .news_grid_title.fix>div,.apart_slider .news_grid_title.fix a{
    position: relative;
    z-index: 2;
}
.apart_flex span{
    font-size: 18px;
}
.apart_flex strong{
    font-size: 20px;
    font-weight: 600;
}
.terms_grid .news_grid_title.fix:before {
    left: auto;
    right: -1px;
    clip-path: polygon(0 0, 100% 0%, 100% 100%);
}
.btn_white{
    background: white;
    color: black;
    border-color: white;
}
.menu_btn{
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    grid-gap: 12px; transition: opacity .3s ease;
    cursor: pointer;
}
.menu_btn:hover {
    opacity: .85;
}
.burger{
    border-radius: 37px;
    border: 1px solid #FFF;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition:
            background .45s cubic-bezier(.22,1,.36,1),
            border-color .45s ease,
            transform .45s cubic-bezier(.22,1,.36,1);
}
.burger_line{
    border-radius: 48.552px;
    height: 1.5px;
    background: white;
    width: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition:
            top .45s cubic-bezier(.22,1,.36,1),
            transform .45s cubic-bezier(.22,1,.36,1),
            width .45s cubic-bezier(.22,1,.36,1);
}
.burger_line1{
    top: 18px;
}
.burger_line2{
    top: 28px;
}
.menu_btn.active .burger {
    background: #fff;
    border-color: #fff;
    transform: rotate(90deg);
}

.menu_btn.active .burger_line {
    background: #111;
    width: 22px;
}

.menu_btn.active .burger_line1 {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
}

.menu_btn.active .burger_line2 {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
}

.menu_btn span {
    transition:
            opacity .25s ease,
            transform .45s cubic-bezier(.22,1,.36,1);
}

.menu_btn.active span {
    opacity: .7;
}



.menu_btn:not(.active):hover .burger {
 transform: scale(1.02); transition:
        transform .45s cubic-bezier(.22,1,.36,1);
}
.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 26px 0px;
    z-index: 100;
    transition-duration: 0.4s;
}
.dopstyle_header{
    padding: 10px 0;
    background: #2C478A;    transition-duration: 0.4s;
}
.underline{
    position: relative;
    color:  #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: 32px;
}
.logo{
    display: flex;
    cursor: pointer;
    transition-duration: 0.3s;
}
.logo:hover{
    transform: scale(1.02);
    transition-duration: 0.3s;
}
.underline:before{
    content: '';
    position:absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: white;
    transition-duration: 0.3s;
}
.underline:hover:before{
    width: 0;
    right: auto;
    transition-duration: 0.3s;
}
.phone{
    color:  #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    grid-gap: 4px;
    position: relative;
}
.phone img{
    transition-duration: 0.3s;
}
.phone:hover img{
    transform: scale(1.01);   transition-duration: 0.3s;
}
.phone:before{
    content: '';
    position:absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: white;
    transition-duration: 0.3s;
}
.phone:hover:before{
    width: 100%;
    right: auto;
    transition-duration: 0.3s;
}
.genplan_item {
    display: none;
    position: relative;
    clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            30px 100%,
            0 calc(100% - 30px)
    );
}

.genplan_item.active {
    display: block;
}

.genplan_btn {
    cursor: pointer;
    color:  #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 107.692% */
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 37px;
    border: 1px solid  #FFF;
    padding: 19px 32px;
    transition-duration: 0.4s;
}
.genplan_btn[data-genplan="genplan"]{
    border-color: #2C478A;
    color: #2C478A;
}
.genplan_btn.active {
    display: none;
}
.genplan_bottom{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}
.genplan_block{
    position: relative;
}
.genplan_item img{
    width: 100%;
}
.genplan_label{
    background: rgba(255, 255, 255, 0.72);
    padding: 9px 13px;
    position: absolute;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%; /* 22.72px */
}
.genplan_label strong{
    display: block;
    font-weight: 600;
    line-height: 142%; /* 22.72px */
}
.genplan_label1{
    left: 42%;
    top: 8%;
}
.genplan_label0{
    left: 25%;
    top: 34%;
}
.genplan_label2{
    left: 60%;
    top: 36%;
}
.mob_menu {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    width: min(520px, 100%);
    height: 100dvh;
    box-sizing: border-box;
    background: #29AAE2;
    padding: clamp(80px, 12vh, 120px) 50px 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    visibility: hidden;
    transition:
            transform .7s cubic-bezier(.77,0,.18,1),
            visibility 0s linear .7s;
    overflow: hidden;
}

.mob_menu.active {
    transform: translateX(0);
    visibility: visible;
}


.mob_menu .menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mob_menu .menu-item {
    overflow: hidden;
}

.mob_menu .menu-item a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: clamp(25px, 3.5vh, 42px);
    line-height: 1.1;
    padding: clamp(4px, 1vh, 9px) 0;
    transform: translateY(110%);
    opacity: 0;
    transition:
            transform .7s cubic-bezier(.22,1,.36,1),
            opacity .5s ease;
}


.mob_menu.active .menu-item:nth-child(1) a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .18s;
}

.mob_menu.active .menu-item:nth-child(2) a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .24s;
}

.mob_menu.active .menu-item:nth-child(3) a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .30s;
}

.mob_menu.active .menu-item:nth-child(4) a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .36s;
}

.mob_menu.active .menu-item:nth-child(5) a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .42s;
}

.mob_menu.active .menu-item:nth-child(6) a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .48s;
}

.mob_menu.active .menu-item:nth-child(7) a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .50s;
}

.mob_menu.active .menu-item:nth-child(8) a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .52s;
}
.mob_menu.active .menu-item:nth-child(9) a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .54s;
}

.mob_menu .phone {
    margin-top: auto;
    font-size: clamp(15px, 2vh, 18px);
    opacity: 0;
    transform: translateY(20px);
    transition:
            opacity .5s ease,
            transform .7s cubic-bezier(.22,1,.36,1);
    transition-delay: 0s;
}

.mob_menu.active .phone {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .55s;
}


.mob_menu .social_list {
    display: flex;
    gap: 10px;
    margin-top: clamp(15px, 2.5vh, 30px);
    opacity: 0;
    transform: translateY(20px);
    transition:
            opacity .5s ease,
            transform .7s cubic-bezier(.22,1,.36,1);
    transition-delay: 0s;
}

.mob_menu.active .social_list {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .62s;
    justify-content: flex-start!important;
}

.languages_mob {
display: none;
    gap: 15px;
    margin-top: clamp(15px, 2.5vh, 30px);
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition:
            opacity .5s ease,
            transform .7s cubic-bezier(.22,1,.36,1);
}
.languages_mob .lang-item.current-lang{
    display: block;
    opacity: 0.7;
}
.mob_menu.active .languages_mob {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .68s;
}

.menu_overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition:
            opacity .5s ease,
            visibility 0s linear .5s;
}

.menu_overlay.active {
    opacity: 1;
    visibility: visible;
    transition:
            opacity .5s ease,
            visibility 0s;
}
.mob_menu_close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition:
            background .4s cubic-bezier(.22,1,.36,1),
            border-color .4s ease,
            transform .4s cubic-bezier(.22,1,.36,1);
}

.mob_menu_close span {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 21px;
    height: 1.5px;

    background: #fff;
    transition:
            background .3s ease,
            transform .5s cubic-bezier(.22,1,.36,1);
}
.mob_menu_close:hover {
    border-color: #fff;
    transform: rotate(90deg);
}

.mob_menu_close:hover span {
    width: 26px;
}
.mob_menu_close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mob_menu_close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mob_menu .menu-item a {
    position: relative;
}

.mob_menu .menu-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 1px;    background: #fff;
    transition: width .5s cubic-bezier(.22,1,.36,1);
}

.mob_menu .menu-item a:hover::after {
    width: 100%;
}
.panel{
    background: rgba(246, 246, 246, 0.90);
    clip-path: polygon(
            30px 0,
            100% 0,
            100% 100%,
            0 100%,
            0 30px
    );
    padding: 40px;
    backdrop-filter: blur(4.900000095367432px);
    opacity: 0;
    transform: translateY(40px) scale(.97);

    transition:
            opacity .5s ease,
            transform .6s cubic-bezier(.22, 1, .36, 1);
}
.popup.active {
    opacity: 1;
    visibility: visible;

    transition:
            opacity .45s ease,
            visibility 0s;
}

.popup.active .panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.panel .section_title{
    margin-top: 0;
}
.popup_close{
    position: absolute;
    right: 40px;
    top: 40px;
    border: 1px solid #2C478A;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
            background .35s ease,
            transform .45s cubic-bezier(.22, 1, .36, 1);
}
.popup_close svg {
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.popup_close:hover {
    background: #2C478A;
}

.popup_close:hover svg {
    transform: rotate(90deg);
}

.popup_close:hover svg path {
    fill: #fff;
}
.popup_item{
    background:  #FFF;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}
.popup_item li,.single_info li,.infra_item li{
    position: relative;
    display: flex;
    align-items: flex-start;
    grid-gap: 7px;
}
.infra_item ul{
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
}
.popup_item li:before,.single_info li:before,.infra_item li:before{top: 2px;
    content: '';
    background-image: url("../img/sub.svg");
    min-width: 14px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}
.popup_item ul,.single_info ul{
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
    margin: 20px 0;
}
.popup{
    background: rgba(0, 0, 0, 0.39);
    backdrop-filter: blur(3.1500000953674316px);
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition:
            opacity .45s ease,
            visibility 0s linear .45s;
}
.popup_flex{

    display: flex;
    grid-gap: 13px;
    align-items: stretch;
}
.popup_scroll{
    overflow: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}
.popup_price{
    color:  #2C478A;
    font-family: Unbounded;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 117%; /* 23.4px */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-gap: 12px;
}
.popup_price p{
    margin: 0;
}
.popup_price del{
    opacity: 0.7;
}
.popup_flex .btn{
    width: 100%;
    box-sizing: border-box;
}
.panel .form-control{
    color: black;
    border-color: black;
}
.panel .form-control::placeholder,.panel .form_accept{
    color: black;
}
.popup_consult .btn_form input{
    background: #29AAE2;
    border-color: #29AAE2;
    color: white;
}
.tabs_repair{
    flex-wrap: nowrap;
}
.wpcf7-not-valid-tip{
    position: absolute;
    font-size: 12px;
}
.footer_col.fix{
    max-width: 450px;
}
.wpcf7 form .wpcf7-response-output{
    background: #29AAE2;
    border: none;
    padding: 15px;
    color: white;
    text-align: center;
    border-radius: 40px;
    font-size: 12px;
}
.form_bg .wpcf7 form .wpcf7-response-output{
    background:#2C478A ;
}
.header .logo{
    position: relative;
    top: -8px;
}
.form_accept p{
    margin: 0;
}
.owl-dots{
    display: flex;
    align-items: center;
    grid-gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.owl-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white!important;
    opacity: 0.5;
    transition-duration: 0.3s;
}
.owl-dot.active,.owl-dot:hover{
    opacity: 1;
    transition-duration: 0.3s;
}
.gallery .owl-dots,.repair_slider .owl-dots{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}
.gallery .owl-nav,.repair_slider .owl-nav{
   display: flex;
    align-items: center;
    justify-content: space-between;
}
.gallery .owl-nav button,.repair_slider .owl-nav button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition-duration: 0.3s;
}
.gallery .owl-nav button:hover, .repair_slider .owl-nav button:hover{
    transition-duration: 0.3s;
    opacity: 0.8;
}
.gallery .owl-nav .owl-prev,.repair_slider .owl-nav  .owl-prev{
    left: 24px;
}
.gallery .owl-nav .owl-next,.repair_slider .owl-nav .owl-next{
    right: 24px;
}
.apart_slider .owl-dot{
    background: #2C478A!important;
}
.apart_slider .owl-dots{
    margin-top: 24px;
}
.banner .owl-dots{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
}
.page-template-doc .header,.page-template-news .header,.single-news .header,.error404 .header,.privacy-policy .header{
    background: #2C478A;
}
.single_info img{
    width: 45%;
    float: left;
    margin: 0 15px 15px 0;
}
.popup_recall .form_flex.fix:nth-child(2){
    margin-bottom: 0;
}
.error404 .section_title{
    text-align: center;
    font-size: 65px;
}
.dev{
    display: flex;
}
.dev img{
    transition-duration: 0.4s;
}
.dev:hover img{
    transform: scale(1.05);
    transition-duration: 0.4s;
}
.section_description h2{
    margin-top: 10px;
}
.doc_item{
    padding: 20px 0;
    border-bottom: 1px solid rgba(44, 71, 138, 0.2);
    transition-duration: 0.4s;
    position: relative;
    padding-right: 40px!important;
}
.doc_item svg{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition-duration: 0.3s;
}
.doc_item svg:hover{transition-duration: 0.3s;
    transform: translateY(-50%) scale(1.05);
}
.doc_item:hover{
    transition-duration: 0.4s;
    opacity: 0.7;
}
.doc_list{
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}
@media (max-height: 500px) {
    .mob_menu .menu-item a{
        font-size: clamp(16px, 3.5vh, 42px);
    }
}
.popup_price sup{
    font-size: 12px;
}
.scroll_img {
    animation: scrollHint 2.2s ease-in-out infinite;
    display: none;
    position: absolute;
    left: 50%;
    width: 30px;
    transform: translateX(-50%);
    bottom: -25px;
    z-index: 20;
}

@keyframes scrollHint {
    0%, 100% {
        transform: translateX(0);
    }

    35% {
        transform: translateX(-15px);
    }

    65% {
        transform: translateX(15px);
    }
}
.footer .menu-item-712{
    display: none;
}