@font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    src:url('../fonts/Montserrat-Bold.woff2') format("woff2") ;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    font-weight: 600;
    src:url('../fonts/Montserrat-SemiBold.woff2') format("woff2") ;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    src:url('../fonts/Montserrat-Regular.woff2') format("woff2") ;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    font-weight: 500;
    src:url('../fonts/Montserrat-Medium.woff2') format("woff2") ;
    font-display: swap;
}
body,html{
    padding: 0;
    margin: 0!important;
    position: relative;
    font-family: 'Montserrat'!important;
    color: #011335;
    background: #FBF9F8;
}
ul,li{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
h1,h2,h3,p{
    margin: 0;
}
a{
    text-decoration: none!important;
    cursor: pointer;
    font-family: 'Montserrat';
    font-style: normal;
    color: #011335;
    -webkit-appearance: none;
}

button, input, textarea{
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}
.wrapper{
    padding: 0 100px;
    position: relative;
}
.wrapper_fix{
    padding-right: 100px;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header{
    z-index: 10000;
    background: #FFFFFF;
    padding-left: 100px;
    -webkit-transition: 200ms linear;
    -moz-transition: 200ms linear;
    -ms-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
}
.header_top{
    background: #FBF9F8;
    padding: 15px 0;
}
.header_top>.flex{
    justify-content: flex-end;
}
.header_bottom{

    padding-top: 35px;
}
.header_right{
    padding-left: 100px;
    width: 100%;
    box-sizing: border-box;
}
.header .menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;

}
.header .menu li.menu-item-has-children{
    margin-right: 45px;
}
.header .menu a{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #011335;
    transition: 400ms linear;
}
.header .menu li{
    margin-right: 34px;
    padding-bottom: 35px;
}
.sub-menu{
    display: none;
}
.menu-item-has-children a{
    position: relative;
}
.menu-item-has-children{
    position: relative;
    cursor: pointer;
}
.menu-item-has-children:after{
    background: transparent;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 100;
}
.menu-item-has-children a:before{
    content: '';
    position: absolute;
    right: -15px;
    top: 6px;
    width: 8px;
    height: 5px;
    background-size: contain;
    background-image: url("../img/nav.svg");
}
.header .current_page_item a,.header .menu li:hover a{
    color: #CA3450;
    transition: 400ms linear;
}
.menu_header.active .menu-item-has-children a:before,.menu-item-has-children.current_page_item a:before{
    background-image: url("../img/nav-active.svg");
}
.header .menu li{
    position: relative;
}
.header .menu li:before{
    width: 0;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background:  #CA3450;
    transition: 400ms linear;
}
.header  .submenu li:before{
    display: none;
}
.header .menu .current_page_item:before,.header .menu li:hover:before{
    width: 100%;
    transition: 400ms linear;
}
.submenu{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    display: flex;
    z-index: 100;
    top: 53px;
    left: 0;
    box-sizing: border-box;
    background: #FBF9F8;
    padding: 30px;
    max-width: 965px;
    width: 100%;
    border-top: 1px solid #CA3450;
    -webkit-transition: 200ms linear;
    -moz-transition: 200ms linear;
    -ms-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
}
.menu_header.active .submenu{
    opacity: 1;
    visibility: visible;
    -webkit-transition: 200ms linear;
    -moz-transition: 200ms linear;
    -ms-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
}
.menu_header{
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.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;
    right: 5px;
    background: white;
    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-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    color: #011335;
}
#current-lang{
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
#current-lang img{
    margin-right: 10px;
}
.languages{
    position: relative;
    width: 30px;
    z-index: 10;
    cursor: pointer;
padding-left: 8%;
    box-sizing: initial;
}
.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/lang.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;
}

.address{
    padding: 0 8%;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    line-height: 1.2;
    color: #011335;
}
.phone{
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    color: #011335;
}
.phone:hover,.address:hover{
    color: #4787C1;
}
.phone:hover img{
    transform: rotate(45deg);
}
.address img,.phone img{
    margin-right: 6px;
}
.search-form{
    position: absolute;
    z-index: 100;
    width: 0;
    right: 0;
    display: flex;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    justify-content: flex-end;

}
.search-form input{
    padding: 5px 10px;
    font-weight: 600;
    font-family: 'Montserrat';
    color: #011335;
    font-size: 12px;
    box-shadow: 2px 3px 34px 5px rgb(0 0 0 / 8%);
}
.search-form input::placeholder{
    font-weight: 600;
    font-family: 'Montserrat';
    color: #011335;
    font-size: 12px;
}
.search_block{
    position: relative;
}
.search_block.active .search-form {
    width: 200px;
    visibility: visible;
}
.search-submit{
    background: white;
}
.header_bottom >.flex{
    align-items: flex-start;
}
.banner_item{
    height: 650px;
    position: relative;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner_info {
    position: absolute;
    top: 65px;
    left: 100px;
    right: 100px;
    max-width: 800px;
}
.banner_title{
    font-weight: 700;
    font-size: 40px;
    line-height: 144%;
    letter-spacing: 0.03em;
}
.banner_description{
    font-weight: 500;
    font-size: 18px;
    line-height: 165%;
    letter-spacing: 0.03em;
    margin: 24px 0;
    text-align: justify;
}
.banner_slider .owl-dots{
    bottom: 105px;
}
.banner_description b{
    font-weight: 700;
    margin-bottom: 10px;
}
.btn{
    padding: 22px 50px!important;
    background: #FFFFFF;
    font-weight: 700!important;
    font-size: 16px!important;
    line-height: 1!important;

    text-transform: uppercase;
    display: flex!important;
    justify-content: center;
    text-align: center!important;
    align-items: center;
    border-radius: 45px!important;
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
    cursor: pointer;
}
.btn img{
    margin-left: 16px;
    max-width: 6px;
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
}
.btn:hover{
    background: #ce4360;
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
    color: white;
}
.btn:hover img{
    transform: translateX(5px);
    filter: invert(1);
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
}
.btn_color:hover img{
    filter: invert(0);
}
.flex_btn{
    justify-content: flex-start;
}
.owl-nav{
    position: absolute;
    right: 100px;
    top: 60%;
    display: flex;
    justify-content: flex-end;
}
.owl-next{
margin-left: 14px;
}
.owl-nav button{
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.owl-nav button:hover{
    transform: scale(1.1);
    transition: all 0.3s ease;
}
.supports{
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    padding: 15px;
    position: relative;
    transform: translateY(-80px);
    z-index: 1;
}
.support_img{
    height: 290px;
    background-position: center;
    background-size: cover;
}
.support_item{
    width: 100%;
}
.support_info{
    background: #4787C1;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}
.support_info:hover{
    opacity: 0.8;
}
.support_title{
    font-weight: 700;
    font-size: 20px;
    line-height: 165%;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}
.support_text{
    font-weight: 500;
    font-size: 14px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #FFFFFF;
}
.support_link{
    background: #FFFFFF;
    width: 75px;
    /*height: 100%;*/
    min-width:75px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
}
.support_link:hover{
    background:#CA3450;
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
}
.support_bottom{
    align-items: stretch;
}

.support_link img{
    width: 11px;
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
}
.section_title{
    font-weight: 700;
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: 0.03em;
text-align: center;
margin-bottom: 48px;
}
.green_bg .section_title{
    color: #FFFFFF;
    margin: 0 4% 0 0;
    text-align: left;
}
.green_bg .flex{
    justify-content: center;
}
.section{
    padding: 100px 0;
    background-size: cover;
    background-position: left;
}
.green_bg{
    background: #0BAD73;
    padding: 80px 0;
}
.section_title.white{
    color: white;
}
.section_title b{
    color:#011335;
}
.counter_num{
    font-weight: 700;
    font-size: 55px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.005em;
    color: #FFFFFF;
}
.counter_text{
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    color: #FFFFFF;
    opacity: 0.9;
    text-align: center;
    letter-spacing: 0.03em;
}
.blue_bg{
    background: #4787C1;
    box-shadow: 9px 23px 34px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10.5px);
}
.section_subtitle{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 165%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
margin-bottom: 8px;

}
.section_subtitle span{
    opacity: 0.9;
    margin-left: 8px;
}
.counter_item{
    max-width: 250px;
    width: 100%;
}
.counter{
    align-items: flex-start;
}
.section_description{
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.8;
    margin-bottom: 27px;
}
.col_info li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 27px;
    font-weight: 600;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
}
.col_info li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    background-image: url("../img/li.svg");
    width: 19px;
    height: 20px;
    background-size: cover;
    opacity: 1;
}
.flex_col{
    align-items: stretch;
}
.col_info,.col_img{
    width: 48%;
}
.col_img{
    position: relative;
    background-position: center;
    background-size: cover;
}
.col_pos{
    background: #4787C1;
    border: 7px solid #FBF9F8;
    position: absolute;
    bottom: -20px;
    display: flex;
    align-items: center;
    right: -20px;
    padding: 5px 34px;
}
.section_subtitle.fix{
    color: #CA3450;
}
.col_info .section_subtitle,.col_info .section_title{
    text-align: left;
    justify-content: flex-start;
}
.col_info .section_title{
    margin-bottom: 27px;
}
.col_pos_num{
    font-weight: 700;
    font-size: 52px;
    line-height: 165%;
    letter-spacing: 0.005em;
    color: #FFFFFF;
    margin-right: 14px;
}
.col_pos_text{
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    color: #FFFFFF;
    letter-spacing: 0.03em;
}
.btn_color{
    background: #CA3450;
    color: white;
}
.btn_color:hover{
    background: #aa0221;
}
.flex_projects{
    align-items: stretch;
}
.projects_img{
    width: 48%;
   background-size: cover;
    background-position: center;
}
.projects{
    width: 50%;
    max-height: 580px;
    overflow: auto;
}
.project{
    background: #FFFFFF;
    margin-bottom: 20px;
    padding: 20px;
}
.project_title{
    font-weight: 700;
    font-size: 20px;
    line-height: 165%;
   margin: 12px 0 18px 0;
display: block;
    letter-spacing: 0.03em;
}
.project_title:hover{
    opacity: 0.8;
}
.project_status{
    font-weight: 700;
    font-size: 12px;
    line-height: 165%;
    position: relative;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #4787C1;
    opacity: 0.9;
    padding-left: 13px;
}
.project_status.end{
    color: #0BAD73;
}
.project_status:before{
    width: 7px;
    height: 7px;
    background: #4787C1;
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    border-radius: 50%;
}
.project_status.end:before{
    background: #0BAD73;
}
.col_img img{
    width: 100%;
}
.section_block{
    background: #FFFFFF;
    box-shadow: 9px 23px 34px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10.5px);
    max-width: 610px;
    width: 100%;
padding: 48px 66px;
    line-height: 165%;
    box-sizing: border-box;
}
.section_pos{
    justify-content: flex-end;
    display: flex;
}
.block_title{
    font-weight: 700;
    font-size: 30px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.03em;
    margin-bottom: 30px;
}
.section_block .section_description{
    margin-bottom: 30px;
    text-align: justify;
}
.section_block strong{
    font-weight: 600;
    font-size: 16px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.03em;
    display: block;
    margin-bottom: 12px;
    opacity: 1;
    color: #011335;
}
.col_info .section_description{
    text-align: justify;
}
.btn.fix img{
    max-width: 17px;
}
.grid_news{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 48px;
}

.news_item{
    height: 320px;
    position: relative;
    background-size: cover;
    overflow: hidden;
    background-position: center;
}
.item_news{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item_news .news_img{

}
.news_img{
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: block;

}
.news_a{
    height: 385px;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 20px;
}
.news_item:hover .news_img,.item_news .news_a:hover .news_img{
    transform: scale(1.1);
}
.news_item_big {
    grid-row-start: span 2;
    height: 610px;
}
.news_item:hover .news_name{
    color: #d5d4d4;
}
.grid_news .news_item:first-child,.grid_news.fix .news_item:nth-child(5){
    grid-row-start: span 2;
    height: 660px;
}
.news_name{
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    z-index: 2;
}
.item_news .news_name{
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    color: black;
    margin-bottom: 15px;
    font-size: 17px;
    display: block;
    font-weight: 600;
}
.item_news .news_name:hover{
    opacity: 0.8;
}
.news_item:before,.item_news .news_a:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.15%, rgba(0, 0, 0, 0.74) 100%);
}
.btn-border{
    background: white;
    padding: 22px 50px;
    border: 1px solid #011335;
    font-weight: 700;
    font-size: 16px;
    line-height: 104%;

    text-transform: uppercase;
    color: #011335;
}
.btn-border:hover{
    background: white;
    color:#CA3450 ;
    border-color: #CA3450;
}
.gift_img{
    height: 289px;
    background-size: cover;
    margin-bottom: 23px;
}
.gift_title{
    font-weight: 700;
    font-size: 24px;
    line-height: 165%;
    letter-spacing: 0.03em;
    margin-bottom: 7px;
    color: #011335;
}

.gift_descr{
    font-weight: 400;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: rgba(17, 17, 17, 0.8);

    margin-bottom: 20px;
    height: 110px;
    overflow: hidden;
    position: absolute;

    background: #FFFFFF;
    z-index: 10;
}
.gift_descr:hover{
    height: auto;
}
.gift_price{
    font-weight: 700;
    font-size: 16px;
    line-height: 104%;
    text-transform: uppercase;
    color: #011335;
    background: #F7F7F7;
    border-radius: 45px 0px 0px 45px;
    padding: 23px 5px;
    text-align: center;
    width: 50%;
}
.gifts_slider .flex_gift{
    margin-top: 125px;
}

.gifts_slider .owl-stage-outer{
    overflow: visible!important;
}
.gifts_slider{
    overflow-x: hidden;
    margin-bottom: 0;
    padding-bottom: 200px;
}
.gift_btn{
    font-weight: 700;
    font-size: 16px;
    line-height: 104%;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 23px 5px;
    text-align: center;
    background: #CA3450;
    border-radius: 0px 45px 45px 0px;
    width: 50%;
    cursor: pointer;
}
.gift_btn.fix{
    border-radius: 45px;
    margin-top: 10px;
    width: auto;
    padding-left: 35px;
    padding-right: 35px;
}
.gift_btn:hover{
    opacity: 0.8;
}
.gifts-template .section_text{
    opacity: 1;
}
.gifts_slider .owl-nav,.slider_cast .owl-nav{
    top: 50%;
    right: -5%;
    left: -5%;
    justify-content: space-between;
    transform: translateY(-50%);
}
.gifts_slider{
    margin-bottom: 48px;
}
.dev img{
    opacity: 0.5;
    width: 75px;
}
.dev a:hover img{
    opacity: 1;
}
.dev{
    display: flex;
    justify-content: center;
}
.footer{
    background: #011335;
    padding: 60px 0;
}
.footer_top{
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 60px;
    margin-bottom: 60px;
}
.license{
    font-weight: 400;
    font-size: 16px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin: 30px 0 27px 0;
    opacity: 0.6;
}
.footer_title{
    font-weight: 700;
    font-size: 20px;
    line-height: 165%;

    letter-spacing: 0.03em;
    color: #FFFFFF;
    margin-bottom: 28px;
    max-width: 320px;
    width: 100%;
}
.footer_top{
    align-items: flex-start;
}
.flex_pays{
    justify-content: center;
}
.flex_pays img{
    opacity: 0.6;
    margin: 0 15px;
}
.footer .menu a{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: all 0.3s ease;
}
.footer .menu a:hover{
    color: #CA3450;
    transition: all 0.3s ease;
}
.footer .menu li{
    margin: 0 0 20px 0;
}
.footer_links{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 28px;
}
.footer_links img{
    margin-right: 6px;
}
.underline{
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    position: relative;
    cursor: pointer;
}
.underline:before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    bottom: 5px;
    background: white;
    transition: all 0.3s ease;
}
.underline:hover:before{
    width: 0;
    right: 0;
    transition: all 0.3s ease;
}
.foot_link{
    font-weight: 500;
    font-size: 16px;
    line-height: 104%;
   text-align: right;
    color: #FFFFFF;
    opacity: 0.5;
    display: block;
    margin-top: 10px;
}
.foot_link:hover{
    opacity: 1;
}
.btn-border.fix{
    border: 1px solid #FFFFFF;
    background: transparent;
    color: white;
    margin: 20px 0 20px 0;
}
.btn-border.fix:hover{
    background: #CA3450;
    border-color: #CA3450;
}
.social_list{
    justify-content: flex-start;
}
.header .social_item:first-child{
    margin-left: 0;
}
.logo:hover{
    opacity: 0.7;
}
.social_list a{
    margin-right: 24px;
}
.social_list img{
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
}
.header .social_list img{
    height: 20px;
    width: 20px;
}
.social_list a:hover img{
    transform: scale(1.1);
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
}
.footer_col_mob{
    padding: 0 5px;
}
.team_slider_img{
    border-radius: 108px;
    height: 172px;
    max-width: 170px;
    margin-right: 18px;
    object-fit: cover;
    object-position: top;
}
.team_slider_item{
    background: #FFFFFF;
    padding: 20px 44px;
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}
.team_slider_item.fix{
    position: relative;
}
.team_slider_item.fix:before{
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    background: #4787C1;
    width: 11px;
    top: 0;
}
.team_slider_title{
    font-weight: 700;
    font-size: 24px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #011335;
}
.team_slider_title:hover{
    color: #4787C1;
}
.team_slider_pos{
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #CA3450;
    opacity: 0.9;
    margin: 5px 0;
}
.team_slider_info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.owl-dots{
    position: absolute;
    bottom: -36px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
}
.gifts_slider .owl-dots{
    bottom: 0;
}
.owl-dot{
    background: #FFFFFF!important;
    opacity: 0.3;
    width: 7px;
    height: 7px;
    border-radius: 50% !important;
    margin: 0 6px;
}
.owl-dot.active{
    width: 9px;
    height: 9px;
    opacity: 1;
}
.social_item{
    margin: 0 0 0 24px ;
    margin-right: 0!important;
    display: flex;
    align-items: center;
}
.submenu_left{
    width: 45%;
    border-right: 1px solid rgba(71, 135, 193, 0.34);
    padding-right: 37px;
}
.submenu_right{
    width: 55%;
    padding-left: 37px;
}
.submenu_right .menu{
    flex-direction: column;
    align-items: flex-start;
}
.submenu_text{
    font-weight: 400;
    font-size: 14px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.8;
    margin: 12px 0;
}
.submenu_left a{
    font-weight: 700;
    font-size: 14px;
    line-height: 104%;
    text-transform: uppercase;
    color: #CA3450;
}
.submenu_left a img{
    margin-left: 16px;
}
.projects::-webkit-scrollbar { width: 4px; height: 4px;border-radius: 19px;}
.projects::-webkit-scrollbar-button {  background-color: #E4E4E4; }
.projects::-webkit-scrollbar-track {  background-color:#E4E4E4;}
.projects::-webkit-scrollbar-track-piece { background-color: #E4E4E4;}
.projects::-webkit-scrollbar-thumb { width: 6px;height: 0; background-color:rgba(1, 19, 53, 0.05) ; border-radius: 19px;}
.projects::-webkit-scrollbar-corner { background-color: rgba(1, 19, 53, 0.05);}
.projects::-webkit-resizer { background-color: rgba(1, 19, 53, 0.05);}
.breadcrumbs{
    display: flex;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
}
.breadcrumb_item{
    display: flex;
    margin: 5px 0;
    align-items: center;
}
.breadcrumb_link{
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.03em;
    color: #011335;
    transition: 200ms linear;
}
.breadcrumb_link.active,.breadcrumb_link:hover{
    opacity: 0.5;
    transition: 200ms linear;
}
.breadcrumb_slash{
    margin: 0 20px;
}
.section_fix{
    padding-bottom: 100px;
}
.col_pos.fix{
    right: auto;
    left: -20px;
}
.section_description p{
    margin: 6px 0;
}
.team_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.team_img{
    max-width: 238px;
    width: 100%;
    border-radius: 200px;
    height: 236px;
    min-height: 236px;
    margin-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    object-fit: cover;
    object-position: top;
}
.team_title{
    font-weight: 700;
    font-size: 24px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.03em;
    color: #011335;
}
.team_info{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.team_pos{
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.03em;
    color: #CA3450;
    opacity: 0.9;
    margin: 22px 0;
}
.team_item .social_list{
    justify-content: center;
    margin-bottom: 18px;
}
.team_item .social_list a{
    margin: 0 10px;
}
.border-pink{
    border: 1px solid #CA3450;
    color: #CA3450;
}
.team_item{background: #FFFFFF;
    padding: 22px 34px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.team_item:before{
    content: '';
    position: absolute;
    left: 0;
    width:11px ;
    height: 100%;
    background: transparent;
    top: 0;
}
.team_item.fix:before{
    background: #4787C1;
}
.volunteer{
    margin-top: 60px;
}
.single_flex{
    align-items: flex-start;
}
.single_img{
    width: 48%;
}
.single_info{
    width: 48%;
}
.single_flex .section_title,.single_flex .section_subtitle{
    text-align: left;
justify-content: flex-start;
}
.single_flex .section_title{
    margin-bottom: 24px;
}
.single_pos{
    font-weight: 600;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;    color: #CA3450;

    opacity: 0.9;
margin-bottom: 24px;
}
.single_flex .underline{
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
    margin-left: 6px;

}
.single_flex .underline:before{
    background: #111111;
}
.page_text{
    font-weight: 400;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.8;
    margin-top: 24px;
}
.page_text p{
    margin:6px 0;
}
.flex_link{
    justify-content: flex-start;
    margin-bottom: 16px;
}
.doc_img{
    box-shadow: 0px 0px 87px rgba(0, 0, 0, 0.12);
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
}
.doc_title{
    font-weight: 700;
    font-size: 16px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.8;
    margin: 18px 0 22px 0;
}
.flex_doc .underline{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.9;
}
.flex_doc .underline:before{
    background:#111111 ;
}
.flex_doc  img{
    margin-left: 12px;
}
.flex_doc {
    justify-content: center;
    margin-bottom: 22px;
}
.flex_btn.none{
    display: none;
}
.project_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:  56px 17px;
}
.gifts_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 45px 20px;
}
.gifts_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    padding-bottom: 20px;
}
.gifts_list .gift_descr{
    position: relative;
}
.gifts_list .gift_descr:hover{
    height: 110px;
}
.project_item{
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}
.project_item .project_status{
    display: inline-flex;
    justify-content: center;
}
.project_item .flex_btn{
    justify-content: center;
}
.project_img{
    height: 290px;
    background-size: cover;
    background-position: center;
    margin-bottom: 28px;
}
.project_info{
    max-width: 80%;
    margin: 0 auto;

}
.project_item .btn{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.pagination{
    margin: 30px 0 0px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-numbers{
    position: relative;
    font-size: 14px;
    margin: 0 6px;
    background: #011335;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 400ms linear;
    padding: 10px 12px;
    border-radius: 10px;
    min-width: 15px;
}

.page-numbers.current,.page-numbers:hover{
    opacity: 1;
    transition: 400ms linear;
}
.pagination .next,.pagination .prev{
    display: none;
}
.gift_info{
    padding: 0 20px 20px 20px;
}
.gift_item{
    background: #FFFFFF;
}
.supports.fix{
    transform: translateY(0);

}
.supports.fix .support_item{
    width: 100%;
}
.section_text{
    font-weight: 400;
    font-size: 16px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.8;
    max-width: 635px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 28px;
}
.section_title.fix{
    margin-bottom: 24px;
}
.subtitle{
    font-weight: 700;
    font-size: 24px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #011335;
    margin-bottom: 8px
}
.flex_link.fix{
    margin-top: 16px;
    margin-bottom: 0;
}
.flex_link.fix .underline,.flex_link{
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
}
.flex_link.fix .underline:before{
    background: #111111;
}
.flex_link.fix img{
    margin-right: 6px;
}
.marsh{
    font-weight: 500;
    font-size: 12px!important;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.5;
    margin-top: 4px;
    margin-left: 24px;
}
.marsh:before{
    background: #111111;
    bottom: 0px;
}
.cast_img{
    height: 295px;
    background-size: cover;
    width: 100%;
    background-position: center;

    display: block;
}
.cast_title{
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
}
.cast_item .cast_title:hover{
    color: #CA3450;
}
.cast_hover{
    overflow: hidden;
    height: 295px;
    display: block;
    margin-bottom: 12px;
}
.cast_item:hover .cast_img{
    transform: scale(1.1);
}
.left .section_title{
    text-align: left;
}
.left .section_subtitle{
    justify-content: flex-start;
}
.contact_item{
    margin-bottom: 64px;
}
.contact_item:last-child{
    margin-bottom: 0;
}
.contact_item .subtitle{
    margin-bottom: 24px;
}
.form_contact{
    background: #FFFFFF;
    padding: 48px 80px;
    max-width: 710px;
    width: 100%;
    margin-left: 50px;
    box-sizing: border-box;
}
.flex_contact {
    align-items: flex-start;
}
.form_contact .section_title{
    margin-bottom: 24px;
}
.form-group{
    background: #FFFFFF;
    border: 1px solid #011335;
    border-radius: 46px;

    margin-bottom: 20px!important;
}
.form_control,.form_control::placeholder{
    font-weight: 400;
    font-size: 14px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.8;
    border-radius: 46px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat';
}
.form_control{
    padding: 18px 30px;
}
.form-flex{
    flex-wrap: wrap;
}
.form-flex .form-group{
    width: 48%;
    box-sizing: border-box;
}
textarea{
    height: 107px;
    border-radius: 23px;
}
.textarea{
    border-radius: 23px;
}
.buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

} .buttons>p{
      display: flex;
      align-items: center;
      justify-content: center;
    /*padding: 22px 50px;*/
      background: #CA3450;
      border-radius: 45px;
      -webkit-transition: 400ms linear;
      -moz-transition: 400ms linear;
      -ms-transition: 400ms linear;
      -o-transition: 400ms linear;
      transition: 400ms linear;
    cursor: pointer;
  }
.buttons>p:hover{
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
    opacity: 0.8;
}
.logo{
    display: flex;
}
.buttons .btn{

    background: transparent;
    color: #FFFFFF;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
}
.banner_item .btn{
    font-size: 15px!important;
}
.buttons img{
    margin-left: 16px;
    position: absolute;
    right: 15%;

}
.wpcf7-spinner{
    display: none!important;
}
.contact_item .social_list img{
  height: 31px;
}
#map{
    height: 500px;
}
.mapboxgl-marker{
    background-size: contain;
}
.mapboxgl-ctrl-bottom-right,.mapboxgl-ctrl-bottom-left{
    display: none!important;
}
.form_contact.fix{
    max-width: none;
    margin: 0;
}
.form_contact.fix .wpcf7-form{
    max-width: 710px;
    margin: 0 auto;
    width: 100%;
}
.section_respons{
    padding-top:65px ;
}
.section_respons .section_text{
    text-align: left;
}
.green_bg.fix .section_title{
    text-align: center;
    margin: 0 auto 24px auto;
    max-width: 555px;
    width: 100%;
}
.green_bg.fix .section_text{
    font-weight: 600;
    font-size: 16px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    opacity: 0.8;
    max-width: 1000px;
}
.section_respons .form-group{
    max-width:420px ;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}
.section_respons .buttons>p{
    max-width:420px ;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    box-sizing: border-box;
}
.map_list{
    width: 48%;
    height: 620px;
}
.col_cover{
    width: 48%;
}
.select_item__city, .shop_item.disabled {
    display: none;
}
.bootstrap-select>.dropdown-toggle{
    border: 1px solid rgba(0, 0, 0, 0.4)!important;
    border-radius: 43px!important;
    padding: 17px 24px!important;
    font-family: 'Montserrat'!important;
    font-style: normal!important;
    font-weight: 400!important;
    font-size: 16px!important;
    line-height: 165%!important;
    letter-spacing: 0.03em!important;
    color: #111111!important;
    opacity: 0.8!important;
    text-transform: none!important;
    height: 60px!important;
    background: #FBF9F8!important;
    text-align: left!important;
}
.bootstrap-select .caret:before{
    content: ''!important;
    background-image: url("../img/select.svg")!important;
    width: 13px!important;
    height: 6px!important;
    background-size: contain!important;
    background-repeat: no-repeat!important;
}
.select_flex{
    border-bottom:  1px solid rgba(71, 135, 193, 0.34);
 padding-bottom: 30px;
}
.shop_list {
box-sizing: border-box;
    width: 100%;
    overflow-y: auto;
    max-height: 444px;
    padding-right: 20px;
}
.select_item__city.active {
    display: block;
}
.select_item{
    width: 48%;
}
.shop_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
   padding: 20px 0;
    border-bottom:1px solid rgba(71, 135, 193, 0.34);

    cursor: pointer;
}
.shop_name{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0.05em;
    color: #000000;
    margin-bottom: 16px;
}
.shop_address{
    font-weight: 400;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.8;
}
.shop_address img{
   margin-right: 7px;
}
.shop_list .right_part {
    text-align: right;
    display: flex;
    flex-direction: column;
}
.phone_of{

    margin-bottom: 19px;

}
.right_part a{
    opacity: 0.8;
    font-weight: 400;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
}
.right_part a:hover{
    opacity: 1;
}
.subtitle_cover{
    margin-bottom: 30px;
    padding-bottom: 8px;
    border-bottom:1px solid rgba(71, 135, 193, 0.34);
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option{
    text-align: left!important;
    justify-content: flex-start!important;
}
.shop_list::-webkit-scrollbar { width: 4px; height: 4px;border-radius: 19px;}
.shop_list::-webkit-scrollbar-button {  background-color: #E4E4E4; }
.shop_list::-webkit-scrollbar-track {  background-color:#E4E4E4;}
.shop_list::-webkit-scrollbar-track-piece { background-color: #E4E4E4;}
.shop_list::-webkit-scrollbar-thumb { width: 6px;height: 0; background-color:rgba(1, 19, 53, 0.05) ; border-radius: 19px;}
.shop_list::-webkit-scrollbar-corner { background-color: rgba(1, 19, 53, 0.05);}
.shop_list::-webkit-resizer { background-color: rgba(1, 19, 53, 0.05);}
.single_info .section_text{
    text-align: left;
    max-width: none;
}
.single_info .section_text p{
    margin-top: 12px;
}
.project_general{
    width: 48%;
}
.project_img{
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    object-fit: contain;
}
.project_grid .project_img{
    height: 480px;
}
.progress {
margin-right: 50px;
    -webkit-appearance: none!important;
    appearance: none!important;
max-width: 395px;
    width: 100%;
    border: none;
    height: 23px!important;
    background-color: #ECECEC!important;
    border-radius: 33px!important;
}
.progress-bar {
    background-color: #0BAD73!important;
    border-radius: 33px;
    font-weight: 700;
    font-size: 12px;
    line-height: 165%;
    letter-spacing: 0.03em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.9)!important;
}
.progress_top{
    font-weight: 700;
    font-size: 14px;
    line-height: 165%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #0BAD73;
    opacity: 0.9;
    margin-bottom: 7px;
}
.progress_perc{
    font-size: 20px;
}
.popup_style {
    background: rgba(1, 19, 53, 0.95);
    z-index: 11111;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    -o-transition: .4s linear;
    transition: .4s linear;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    left: -100%;
    height: 100%;
    top: 0;
    bottom: auto;

}
.popup_close:hover{
    transform: scale(1.05);
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    -o-transition: .4s linear;
    transition: .4s linear;
}
.panel {
    width: 100%;
    max-height: 90vh;

    max-width: 837px;
    box-sizing: border-box;
    padding: 20px;
    position: absolute;
    top: 50%;

    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: #FFFFFF;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
}
.panel .section_text{
    max-width: 100%;
}
.popup_style.active .panel{
    width: 90%;
}
.popup_close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    transition-duration: .3s;
    cursor: pointer;
}
.popup_close:before {
    content: '';
    position: absolute;
    background:  #011335;
    width: 23px;
    height: 1px;
    transform: rotate(45deg);
    top: 15px;
    left: 3px;
}
.popup_close:after {
    content: '';
    position: absolute;
    background:  #011335;
    width: 23px;
    height: 1px;
    transform: rotate(-45deg);
    top: 15px;
    left: 3px;
}
.popup_style.active {
    opacity: 1;
    visibility: visible;
    left: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    -o-transition: .4s linear;
    transition: .4s linear;

    height: 100%;
}
.popup_style form{
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}
.panel .section_title{
    margin-bottom: 15px;
}
.panel .buttons>p{
    width: 100%;
}
.img_mob{
    display: none;
}
.gifts_slider .owl-dot,.slider_cast .owl-dot{
    background: #011335!important;
}
.burger {
    display: none;
    width: 32px;
    height: 19px;
    position: relative;
    cursor: pointer;
}
.line {
    height: 1px;
    background-color:  #011335;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
    position: absolute;
    left: 0;
    right: 0;
}
.line1 {
    top: -1px;
}
.line3 {
    bottom: -1px;
}
.line2 {
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mob_menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
  right: 0;
    top: 104px;
    z-index: -1;
    height: 0;
    padding-bottom: 20px;
    width: 350px;

    background: #Ffffff;
    -webkit-transition: 200ms linear;
    -moz-transition: 200ms linear;
    -ms-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
}
.img_search{
    cursor: pointer;
    transition: 200ms linear;
}
.img_search:hover{
    transform: scale(1.1);
    transition: 200ms linear;
}
.menu_scroll{
    padding: 15px;
}
.mob_menu.active{
    height: 100vh;
    -webkit-transition: 200ms linear;
    -moz-transition: 200ms linear;
    -ms-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
    opacity: 1;
    visibility: visible;
    z-index: 100;
}
.mob_menu .search-form{
    position: relative;width: 100%;
    height: 30px;
    transform: translateY(0);
    top: 0;
    visibility: visible;
}
.mob_menu .search-form input{
    box-shadow: none;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: transparent;
}
.mob_menu .search-form label{
    width:100%;
}
.mob_top{
    background: #FBF9F8;
padding-right: 10px;
}
.mob_menu .search-submit{
    background: transparent;
}
.mob_menu .phone,.mob_menu .address{
    font-size: 14px;
}
.mob_menu .phone{
    display: none;
}
.mob_menu .address{
    padding: 10px 0;
}
.mob_menu .social_list{
    margin-top: 10px;
}
.mob_menu .social_list img{
    height: 22px;
    width: 21px;
}
.mob_menu .social_list a{
    margin: 0 15px 0 0!important;
}
.mob_menu .menu-item{
    margin-bottom: 10px;
}
.mob_menu .menu-item a{
    font-weight: 600;
    font-size: 14px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
}
.burger.active .line1 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 50%;
    left: 0;
}
.burger.active .line2 {
    display: none;
}
.burger.active .line3 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 50%;
    left: 0;
    right: 0;
}
.logo img{
    width: 79px;
}
.page_search_fix{
    min-height: 450px;
}
.animation_class{
    -webkit-transition:  400ms linear;
    -moz-transition:  400ms linear;
    -ms-transition:  400ms linear;
    -o-transition:  400ms linear;
    transition:  400ms linear;
}
.section_title i{
    font-weight: 400;
    font-style: normal;
}
.title_news{
    font-size: 25px!important;
}
.single_img_mob{
    display: none;
    width: 60%;
}
.wpcf7-not-valid-tip{
    position: absolute;
    font-size: 10px;
    margin-top: 3px;
    left: 30px;
}
.wpcf7 form .wpcf7-response-output{
    border-radius: 25px!important;
    font-size: 14px;
    text-align: center;
}
.mob_title{
    display: none;
}
.flex_r{
    justify-content: flex-start;
}
.flex_r .flex_btn:last-child{
    margin-left: 25px;
}
.flex_r .btn{
    height: 60px;
    box-sizing: border-box;
}
.wpcf7 form.invalid .wpcf7-response-output{
    border-color: #011335;
    background: #011335;
    color: #fff;
    padding: 10px;
}
.wpcf7 form.sent .wpcf7-response-output{
    background: #46b450;
    padding: 10px;
    color: #fff;
}
.col_img.fix img{
    height: 100%;
    object-fit: contain;
}
.single_smak{
    align-items: stretch;
}
.single_smak .project_img{
    height: 100%;
    margin-bottom: 0;
}
.tabs{
    justify-content: center;
    margin-bottom: 34px;
}
.tab{
    font-weight: 700;
    font-size: 16px;
    line-height: 183.5%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #CA3450;
    opacity: 0.4;
    margin: 0 23px;
    cursor: pointer;
}
.tab.active,.tab:hover{
    opacity: 1;
}
.tab_content .gallery{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.tab_content .gallery figure,.tab_content .gallery-icon{
    height: 480px;
}
.tab_content .gallery img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
figure{
    margin: 0!important;
}
.tab_content{
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    position: absolute;
    top: 0;
}
.tab_content.active{
    position: relative;
    opacity: 1;
    visibility: visible;
    max-height: 99999px;
}
.vol_form form{
max-width: 90%;
}
.news_single .col_img{
    width: 100%;
    max-width: 650px;
    margin: 0 auto 15px auto;
    height: 400px;

    background-size: contain;
    background-repeat: no-repeat;
}
.news_single .col_info{
    width: 100%;
    text-align: left;
}
.news_single .section_text{
    text-align: left;
    max-width: 100%;
    opacity: 1;
}
.news_single p{
    margin: 5px 0;
}
.news_single .section_text img{
    width: 100%;
    max-width: 650px;
    display: block;
    border-radius: 20px;
    margin: 15px auto;
}
.news_single .section_text figure{
    width: 100%!important;
}
.news_single .section_text a{
    color: #CA3450;
}
.news_date{
    margin-bottom: 10px;
    opacity: 0.5;
    display: block;
    font-size: 0.85rem;
}
.news_name .news_date{
    font-size: 14px;
    opacity: 1;
    margin-bottom: 0;
}
.grid_news.fix{
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px 20px;
}
.section_list li:before{
background-image: url("../img/sublogo-pink.svg");
    width: 12px;
    height: 16px;
    content: '';
    position: absolute;
    left: 0;
    top: 2px;

    background-size: cover;
    opacity: 1;
}
.section_list li{
    padding-left: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    text-align: left;
    position: relative;
}
.page-template-responsibility h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 165%;
    letter-spacing: 0.03em;
margin-bottom: 12px;
    color: #011335;
}
.blocks_title{
    font-weight: 700;
    font-size: 24px;
    line-height: 165%;
    letter-spacing: 0.03em;
    margin-bottom: 7px;
    color: #011335;
}
.blocks{
    padding: 30px 20px;
    background: #FBF9F8;

}
.flex_block{
    width: 65%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.blocks_goal{
    font-weight: 600;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #111111;
    opacity: 0.8;
}
.blocks_red{
    font-weight: 700;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #CA3450;
    opacity: 0.9;
    margin-bottom: 3px;
    margin-top: 20px;
}
.blocks_grid{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.blocks_big{
    padding: 30px 20px;
    background: #4787C1;

    width: 32%;
    box-sizing: border-box;
}
.blocks_big .blocks_title,.blocks_big .blocks_goal,.blocks_big .section_description,
.blocks_big .blocks_red{
    color: white;
}
.blocks_big .section_description{
    opacity: 1;
}
.project_item.fix .project_status{
    justify-content: flex-start;
    display: flex;
}
.project_item.fix .project_title{
    text-align: left;
}
.project_item.fix .flex_btn{
    justify-content: flex-start;
}
.project_item.fix .btn{
    left: 30px;
    position: relative;
    transform: translateX(0);
}
.project_item.fix .project_info{
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;

}
.project_item.fix{
    background: white;
    padding-bottom: 30px;
}
.project_grid.fix{
    grid-gap: 20px;
}
.section_text.fix{
    max-width: 685px;
}
.section_text.fix li{
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.section_text.fix li:before{
    content: '';
    position: absolute;
    left: -10px;
    top: 10px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #CA3450;
    display: block;
}
.project_item.fix .project_img{
    height: 310px;
}
.partner_item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.slider_partners .owl-stage{
   display: flex;
}
.slider_partners .owl-nav,.slider_students .owl-nav{
    right: -5%;
    left: -5%;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    justify-content: space-between;
}
.grid_school{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
.school_item{
    background: #FFFFFF;
    padding: 30px;
}
.school_title{
    font-weight: 700;
    font-size: 12px;
    line-height: 165%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #CA3450;
    opacity: 0.9;
    margin-bottom: 16px;
}
.school_item .social_list{
    margin-top: 24px;
}
.school_item .marsh{
    display: inline-block;
    margin-bottom: 24px;
}
.school_item .social_list img{
    height: 23px;
}
.select_block span{
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    color: #011335;
    opacity: 0.8;
    margin-right: 20px;
    display: block;
}
.select_block{
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}
.select_filter{
    outline: none;
    cursor: pointer;
    width: 181px;
    height: 37px;
    border: none;
    background: #F5F2F0;
    border-radius: 45px;
    -moz-appearance:none;
    -webkit-appearance:none;
    appearance:none;
    padding: 0 24px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0.03em;
    background-image: url("../img/select2.svg");
    background-repeat: no-repeat;
    background-position-x: 87%;
    background-position-y: 16px;
    color: #011335;
}
.slider_partners .owl-dot{
    background: #011335!important;
}
.tabs{
    margin: 24px 0;
}
.tab_item{
    display: flex;
    align-items: center;
    padding: 8px 24px;
    border: 1px solid rgba(202, 52, 80, 0.3);
    border-radius: 45px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.03em;
    color: #011335;
    margin: 0 6px;
    cursor: pointer;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.tab_item.active,.tab_item:hover{
    background: #CA3450;
    border-color: #CA3450;
    color: white;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.dot{
    width: 6px;
    height: 6px;
    background: #52FF00;
    margin-right: 7px;
    border-radius: 50%;
}
.offline .dot{
    background: #FF2E00;
}
.lessons_bar{
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lessons_bar .select_block{
    margin-bottom: 0;
}
.week_change{
    display: flex;align-items: center;
    background: #F5F2F0;
    border-radius: 45px;
    height: 37px;
    padding: 2px;
}
.week_item{
    font-weight: 500;
    font-size: 14px;
    line-height: 165%;
    text-align: center;
    letter-spacing: 0.03em;
    padding: 6px 18px;
    color: #011335;
    border-radius: 45px;
    background: transparent;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
    cursor: pointer;
}
.week_item.active{
    background: #FFFFFF;
}
.week_item:hover{
    opacity: 0.8;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.table_lessons{
    width: 100%;
    border-spacing: 0;
    border-bottom: 1px solid white!important;
    border-collapse: collapse;
}
.table_lessons th {
    font-weight: 700;
    font-size: 14px;
    line-height: 165%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #4787C1;
    opacity: 0.9;
    width: 14%;
    text-align: left;
    padding: 12px 0 18px 10px;
}
.table_lessons td{
    width: 14%;
    padding: 10px;
}
.td_active>div{
    background: #FFFFFF;
    padding: 33px 10px;
}
.table_lessons td span{
    display: block;
}
.table_lessons tr{
    border-bottom: 1px dashed rgba(1, 19, 53, 0.3);
}
.now_day{
    background: rgba(202, 52, 80, 0.05);
}
.col_empty{
    width: 97px!important;
    padding-left: 0!important;
    min-width: 87px;
    position: relative;
}
.time_lesson{
    position: absolute;
    top: -20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    background: #CA3450;
    border-radius: 45px;
    padding: 13px;
}
.lesson_name{
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0.03em;
    color: #011335;
}
.lesson_teacher{
    display: flex!important;
    align-items: center;
    margin: 18px 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0.03em;
    color: #011335;
}
.lesson_teacher span{
    opacity: 0.5;
}
.lesson_cab{
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0.03em;
    color: #011335;
    opacity: 0.5;
}
.lesson_teacher img{
    margin-right: 5px;
}
.table_container::-webkit-scrollbar{
    width: 4px;
    height: 8px;
}
.table_container::-webkit-scrollbar-button{
    background-color:rgba(202, 52, 80, 0.05);
}
.table_container::-webkit-scrollbar-track{
    background-color:rgba(202, 52, 80, 0.05);
}
.table_container::-webkit-scrollbar-track-piece{
    background-color:rgba(202, 52, 80, 0.05);
}
.table_container::-webkit-scrollbar-thumb {
    height: 0;
    background-color:#011335;
    border-radius: 0;
}
.table_container::-webkit-scrollbar-corner{
    background-color: rgba(202, 52, 80, 0.05);
}
.slider_students .owl-dots {
    counter-reset: dots;
    margin-top: 36px;
    position: relative;
    bottom: 0;

}
.slider_students .owl-dot:before {
    counter-increment:dots;
    content: counter(dots);
    font-weight: 700;
    font-size: 16px;
    line-height: 104%;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.26);
}
.slider_students .owl-dot{

    width: 42px;
    height: 42px;
    margin: 0 7px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
    background: #FFFFFF!important;
    opacity: 1;
}
.slider_students .owl-dot.active{
    width: 50px;
    height: 50px;
    background: #CA3450!important;
}
.slider_students .owl-dot.active:before,.slider_students .owl-dot:hover:before{
    color: #FFFFFF;
}
.slider_students .owl-dot:hover{
    background: #CA3450!important;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.btn_pos{
    position: absolute;
    right: 100px;
    top: 60px;
}
.btn_pos_mob{
    display: none!important;
}