@font-face {
    font-family: 'Geometria';
    font-style: normal;
    font-weight: normal;
    src:url('../fonts/Geometria-Regular.woff2') format("woff2") ;
    font-display: swap;
}
@font-face {
    font-family: 'Geometria';
    font-style: normal;
    font-weight:500;
    src:url('../fonts/Geometria-Medium.woff2') format("woff2") ;
    font-display: swap;
}
@font-face {
    font-family: 'Circle';
    font-style: normal;
    font-weight: bold;
    src:url('../fonts/Circe-ExtraBold.ttf') format("woff2") ;
    font-display: swap;
}
@font-face {
    font-family: 'Circle';
    font-style: normal;
    font-weight: 400;
    src:url('../fonts/Circe-Regular.ttf') format("woff2") ;
    font-display: swap;
}
body,html{
    padding: 0;
    margin: 0;
    position: relative;
    background:white;
    font-family: 'Circle';
    font-style: normal; 
    color: #000000;
    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: 'Circle';
    font-style: normal;
    color: #000000;
}
button, input, textarea{
    border: none;
    outline: none;
    cursor: pointer;
}
.animation_class{
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}
.header{
    padding: 50px 36px;
    background: #FFFFFF;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.height{
    height: 123px;
}
.nav_link{
    font-weight:400;
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    position: relative;
}
.nav_link::before{
     content: '';
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    bottom: 0px;
    position: absolute;
    -webkit-transform: scaleX(0) translateZ(0);
    -moz-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: -o-transform .4s;
    -moz-transition: transform .4s;
    transition: transform .4s;
    pointer-events: none;
}
.footer .nav_link::before{
    background: #FFFFFF;
}
.nav_link:hover::before{
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
}
.nav_item{
    margin: 0 25px;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lang_link{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.85px;
    text-transform: uppercase;
    opacity: 0.5;
    margin: 0 5px;   
}
.lang_link.active,.lang_link:hover{
    opacity: 1;
}
.phone{
    font-weight: 400;
    font-size: 14px;
    /*line-height: 1.3;*/
    text-transform: uppercase;
    /*margin-left: 30px;*/
    display: flex;
    align-items: center;
}
.phone:hover img{
    transform: rotate(45deg);
}
.phone:hover{
    color: #904799;
}
.logo:hover{
    opacity: 0.8;
}
.phone img{
    margin-right: 10px;
}
.banner_title{
    font-weight: bold;
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: 0.85px;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.banner_description{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0.85px;
    color: #FFFFFF;
}
.address{
    font-weight: 400;
    font-size: 16px;
    line-height:1.5;
    letter-spacing: 0.85px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}
.address img{
    margin-right: 10px;
}
.slider_top{
    position: relative;
    margin: 0 36px;
}
.banner_block{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 36px;
    right: 36px;
    /*max-width: 750px;*/
    /*width: 100%;*/
}
.banner_item{
    height: 340px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}
.banner_info{
    position: absolute;
    left: 84px;
    right: 84px;
    bottom: 25px;
    z-index: 10;
}
.social_item{
    width: 37px;
    height: 37px;
    margin-right: 10px;
}
.social_item:hover{
    opacity: 0.8;
}
.social_block{
    display: flex;
    align-items: center;
}
.slider_top .owl-nav{
    position: absolute;
    right:84px;
    display: flex;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
}
.slider_top .owl-nav button{
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,1)!important;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}
.owl-nav button:hover{
    background: #904799!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}
.slider_top .owl-prev{
    opacity: 0.9;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    margin-bottom: 15px;
}
.section_title{
    font-weight: bold;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 0.85px;
    margin-bottom: 35px;
    margin-top: 80px;
}
.section_text{
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.85px;
}
.section_text p{
    margin: 0 0 25px 0;
}
.section_text strong{
    margin-bottom: 15px;
    display: block;
}

.section_text li{
    position: relative;
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.85px;
    margin-bottom: 10px;
    color: #000000;
}
.section_text li:last-child{
    margin-bottom: 0;
}
.section_text li::before{
    content: '';
    background-image: url(/img/li.svg);
    width: 8px;
    height: 8px;
    left: 0;
    top: 7px;
    position: absolute;
}
.center_block{
    padding: 0 36px;
}
/*.about_list{*/
/*   width: 47%;*/
/*}*/
.about_flex{
    align-items: flex-start;
    margin-bottom: 20px;
}
.btn{
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.85px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #000000;
    border-radius: 8px;
    cursor: pointer;
    padding: 18px 35px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.flex_btn{
    display: flex;
}
.partners_flex{
    /*background: rgba(144, 71, 153, 1);*/
    /*padding: 60px 20px;*/
    justify-content: space-around;
}
.partner_item{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.85px;
    color: #FFFFFF;
    height: 60px;
    justify-content: center;
}
.partner_img{
    /*height: 100%;*/
    /*width: auto!important;*/
    max-width: 145px;
}
/*.vacancies{*/
/*    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),url(/img/bg.jpg);*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*}*/
.flex_vacancies{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 27px;
}
.flex_vacancies .btn{
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 45px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_title.fix,.section_text.fix{
    color: #FFFFFF;
}
.section_title.fix{
    margin-top: 0;
}
.btn.fix{
    background: #FFFFFF;
    color: #000000;
}
.right_part{
    max-width: 750px;
}
.vacancies_flex{
    padding: 60px 0;
}
.news_img{
    border-radius: 8px;  
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 280px;
    width: 100%;
    display: block;
    cursor: pointer;
}
.news_img::before{
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.3);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.img_hover{
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}
.news_item:hover .news_img{
    transform: scale(1.1);
}
.news_date{
    position: absolute;
    right: 15px;
    top: 15px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.85px;
    color: #FFFFFF;
}
.news_title{
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.85px;
    text-transform: uppercase;
    padding: 5px 25px;
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #FFFFFF;
    box-sizing: border-box;
    background: rgba(0,0,0,0.4);
    height: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.news_title:hover{
    color: #cb79d5;
    background: rgba(0,0,0,0.2);
}
.news_descr{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.85px;
    color: black;
    margin-bottom: 50px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}
.news_details{
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.85px;
    text-transform: uppercase;
    color: #904799;
}
.news_details:hover img{
    transform: translateX(10px);
}
.news_details:hover{
    opacity: 0.9;
}
.news_details img{
    max-width:41px;
    margin-right: 15px;
}
.news_slider .owl-nav{
    position: absolute;
    top: 50%;
left:-40px;
    right:-40px;
    transform: translateY(-50%);
    display: flex;
}
.news_slider button.disabled{
    display: none;
}
.news_slider button{
    position: absolute;
    width: 44px;
    height: 44px;
    /*border: 1px solid rgba(0,0,0,0.7)!important;*/
    display: flex;
    /*border-radius: 50%;*/
    align-items: center;
    justify-content: center;
   left: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}
.news_slider .owl-prev{
    left: auto;
    right: 0;
    opacity: 0.5;
}
.news_slider{
    margin-bottom: 60px;

}
.dev a{
    opacity: 0.4;
}
.dev a:hover{
    opacity: 1;
}
.footer{
    background: black;
    padding: 28px 0;
    text-align: center;
    color: white;
}
.nav_footer .nav_link{
    color: white;
}
.footer .social_item:last-child{
    margin-right: 0;
}
.logo_footer{
    width: 129px;
    text-align: left;
    display: flex;
}
.logo_footer img{
    width: 100%;
}
.footer_bottom{
    margin-top: 25px;
    padding-top: 25px;
    border-top: 0.5px solid rgba(255,255,255,0.25);
    position: relative;
}
.footer_bottom .center_block{
    display: flex;
    align-items: center;
}
.dev{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.license{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.85px;
    color: #FFFFFF;
    opacity: 0.7;
}
.btn.new{
    background: white;
    color: black;
    border: 1px solid #000000;
    margin-top: 25px;
}
.map_description .btn{
    width: 232px;
    box-sizing: border-box;
    text-align: center;
}
.map_block{
    position: relative;
}
.map_description{
    background: #FFFFFF;
    border-radius: 8px;
    padding: 40px 27px;
    position: absolute;
    left: 36px;
    top: 10%;
    z-index: 2;
}
#map_contact {
    height: 625px;
}
.map_description .section_title{
    margin-top: 0;
}
.contact_item{
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height:1.5;
    letter-spacing: 0.85px;
    margin-bottom: 15px;
}
a.contact_item:hover{
    color: #904799;
}
.contact_item.fix{
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}
.contact_item.fix:hover{
    color: #000;
}
.contact_item.fix:hover::before{
    width: 0%;
    right: auto;
    left: 0;
}
.contact_item.fix::before{
    content: '';
    position: absolute;    
    right: 0;
    width: 100%;
    height: 1px;
    background: black;
    bottom: 0px;
    transition: all 0.3s ease;
}
.mapboxgl-ctrl-top-right {
    top: auto!important;
    right: auto!important;
    bottom: 25px!important;
    left: 36px!important;
}
a.mapboxgl-ctrl-logo,.mapboxgl-ctrl-attrib-inner{
    display: none!important;
}
.btn:hover::before{
    left: 0;
}
.btn::before{
    background: #904799;
    height: 120px;
    width: 200%;
    z-index: -1;
    left: -300%;
    transition: all 0.7s;
    content: '';
    position: absolute;
    top: 0;
}
.logo_footer:hover{
    opacity: 0.8;
}
.header.active{
    box-shadow: 4px 4px 10px rgb(0 0 0 / 10%);
    padding-top: 35px;
    padding-bottom: 35px;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.burger{
    display: none;
    padding-right: 42px;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
    cursor: pointer;
}
.lines {
    position: absolute;
    top: 50%;
    height: 14px;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 27px;
}
.line {
    left: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
    right: 0;
}
.line1 {
    top: -1px;
    left: 0;
}
.line2 {
    top: 50%;
    left: 0;
    right: 10px;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.line3{
    bottom: -1px;
    left: 0;
}
.langs_mob{
    display: none;
}
.burger:hover .line2{
    right: 0;
}
.burger.active .line1{
    transform: rotate(45deg);
    top: 50%;
}
.burger.active .line2{
    display: none;
}
.burger.active .line3{
    transform: rotate(-45deg);
    bottom: 37%;
}
.popup_style {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    background-color: rgba(4,4,4,.9);
    z-index: 11111;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.popup_style.active {
    opacity: 1;
    visibility: visible;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.panel {
    width: 100%;
    max-width: 499px;
    padding: 70px 60px;
    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-color: #000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
}
.after_panel, .feedback_panel, .panel {
    visibility: hidden;
    opacity: 0;
}
.after_panel{
    background: rgba(255, 255, 255, 0.6)!important;
    max-width: 499px!important;
}
.after_panel .popup_zaglav{
    color: black;
}

.popup_style.active .panel.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: 200ms linear;
    -moz-transition: 200ms linear;
    -ms-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
    transition-delay: .4s;
}
.popup_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 7;
}
.popup_zaglav{
    font-weight: bold;
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: 0.85px;
    margin-bottom: 25px;
    color: #FFFFFF;
    text-align: center;
}
.form-group{
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.28);
}
.form-group.error{
    border-color: red!important;
}
input.form-control ,textarea.form-control{
    line-height: 1.8;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    margin: 0;
    padding: 6px 9px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .44px;
    color: rgba(255,255,255,.75);
    box-shadow: none;
    font-family: 'Geometria';
}
textarea.form-control{
    height: 50px;
    resize: none;
    background: transparent;

}
input.form-control::placeholder,textarea.form-control::placeholder{
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .44px;
    color: rgba(255,255,255,.75);
}
.popup_close:after, .popup_close:before {
    background-color: #fff;
    content: '';
    height: 18px;
    left: 22px;
    position: absolute;
    top: 12px;
    width: 2px;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -ms-transition: 400ms linear;
    -o-transition: 400ms linear;
    transition: 400ms linear;
}
.popup_close:before {
    -webkit-transform: rotate(
            -45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(
            -45deg);
}
.popup_close:after {
    -webkit-transform: rotate(
            45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(
            45deg);
}
.input_but{
    font-weight: 400;
    font-size: 12px;
    padding: 0 20px;
    line-height: 1.3;
    letter-spacing: 0.85px;
    text-transform: uppercase;
    background:transparent;
    color: #000000;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: Geometria;
}
.frame .flex_btn{
    justify-content: center;
}
.frame .flex_btn .btn{
    padding-left: 0;
    padding-right: 0;
}
input.form-control::-webkit-input-placeholder,.form_textarea::-webkit-input-placeholder { color:  rgba(255, 255, 255, 0.75);}
input.form-control::-moz-placeholder,.form_textarea::-moz-placeholder           { color:  rgba(255, 255, 255, 0.75);}
input.form-control:-moz-placeholder,.form_textarea:-moz-placeholder            {color:  rgba(255, 255, 255, 0.75);}
input.form-control:-ms-input-placeholder,.form_textarea:-ms-input-placeholder       {color:  rgba(255, 255, 255, 0.75);}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{
    -webkit-box-shadow: inset 0 0 0 50px #000!important;
    -webkit-text-fill-color: #fff!important;
    border: none!important;
    border-color: black!important;
    color: white!important;
}
.logo{
    display: flex;
}
.logo img{
    width: 100%;
}
.header_social{
    display: flex;
    align-items: center;
}
.header_social_mob{
    display: none;
}
.header_social_link{
    display: flex;
    margin-right: 10px;
}
.header_social_link:hover{
    opacity: 0.8;
}
.lang_list{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
}
.current_lang{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.current_lang img{
    margin-right: 3px;
}
.langs:hover .lang_list {
    opacity: 1;
    visibility: visible;
    top: 20px;
    width: 45px;
    box-sizing: border-box;
    padding-right: 0;
    margin: 0;
    padding-top: 10px;
}
.langs{
    position: relative;
    margin-left: 48px;
}
.lang_list .lang_link{
    text-align: center;
}
.langs:hover .current_lang img{
    transform: rotate(180deg);
}
.fn_news_popup .panel,.fn_vacancies_popup .panel{
    max-width: 95%;
    background: #F1F1F1;
    max-height: 90vh;
}
.fn_news_popup .popup_close:after, .fn_news_popup .popup_close:before,.fn_vacancies_popup .popup_close:after,.fn_vacancies_popup .popup_close:before{
    background: black;
}
.after_panel .popup_close:after, .after_panel .popup_close:before{
    background: black;
}
.fn_vacancies_popup .popup_zaglav{
    color: black;
    text-align: left;
}
.fn_vacancies_popup strong{
    margin: 10px 0;
    display: block;
}

.fn_vacancies_popup h3{
    margin-top: 10px;
}
.vacancies_text{
    max-height: 297px;
    overflow-y: auto;
}
.flex_form{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
}
.fn_vacancies_popup input.form-control,.fn_vacancies_popup input.form-control::placeholder{
    color: black;
    font-size: 12px;
}
.fn_vacancies_popup .form-group{
    border-color: rgba(0,0,0,0.28);
    width: 30%;
}
.fn_vacancies_popup .input_but{
    color: #FFFFFF;
}
.news_dop_photo img{
   width: 23%;
}
.news_dop_photo{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex_news{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.popup_scroll{
    max-height: 75vh;
    overflow: auto;
}
.flex_news .news_date,.flex_news .news_title{
    position: relative;
    right: 0;
    top: 0;
    padding-left: 0;
    color: black;
    background: transparent;
    height: auto;
}
.flex_news .news_title{
    padding-bottom: 20px;
    padding-top: 20px;
}
.flex_news .news_date{
    font-size: 12px;
}
.news_info_block{
    width: 50%;
    position: relative;
}
.news_gallery{
    width: 45%;
}
.news_photo_big{
    width: 100%;
    height: 355px;
    background-position: center;
    background-size: cover;
    object-fit: contain;
    margin-bottom: 30px;
}
.share_news{
    cursor: pointer;
    align-items: center;
    margin: 0 0 5px 0px;
    display: flex;
    border-bottom: 1px solid rgb(0 0 0 / 7%);
    padding-bottom: 5px;
    width: 100%;
    justify-content: center;
}
.share_news img{
    width: 25px;
}
.share_news.fix{
    width: 100%;
    margin: 5px 0 0;
    text-align: center;
    padding-bottom: 0;
    border: none;
}
.share_news.fix:hover{
    color: #904799
}
.scroll_block::-webkit-scrollbar { width: 4px; height: 4px;}
.scroll_block::-webkit-scrollbar-button {  background-color: #fff; }
.scroll_block::-webkit-scrollbar-track {  background-color: #fff;}
.scroll_block::-webkit-scrollbar-track-piece { background-color: #e7e7e7;}
.scroll_block::-webkit-scrollbar-thumb { height: 0; background-color: #000; border-radius: 0;}
.scroll_block::-webkit-scrollbar-corner { background-color: #fff;}
.scroll_block::-webkit-resizer { background-color: #fff;}

.popup_scroll::-webkit-scrollbar { width: 4px; height: 4px;}
.popup_scroll::-webkit-scrollbar-button {  background-color: #fff; }
.popup_scroll::-webkit-scrollbar-track {  background-color: #fff;}
.popup_scroll::-webkit-scrollbar-track-piece { background-color: #e7e7e7;}
.popup_scroll::-webkit-scrollbar-thumb { height: 0; background-color: #000; border-radius: 0;}
.popup_scroll::-webkit-scrollbar-corner { background-color: #fff;}
.popup_scroll::-webkit-resizer { background-color: #fff;}

input[type="file"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
}
.add_file{
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}
.file_label{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.add_file.fix .file_label{
    color: #FFFFFF;
    text-align: center;
}
.file_label:hover img{
    opacity: 0.8;
}
.file_label:hover{
    opacity: 0.7;
}
.file_label img{
    margin-bottom: 10px;
}
.partner_slider{
   padding-top: 15px;
}

.share_news:hover{
    opacity: 0.8;
}
.vacancies_count{
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 50%;
    background: white;
    color: black;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo{
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 250px;
}
.footer .nav_list{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.after_panel .popup_zaglav{
  margin-bottom: 0;
}

.load_img.active{
    animation: 2s linear 0s normal none  running rotat;
    -webkit-animation: 2s linear 0s normal none  running rotat;
}
@keyframes rotat {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.file_label.error{
    color: red;
}
.owl-dots{
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-dot{
    width: 10px!important;
    height: 10px!important;
    border: 1px solid black!important;
    border-radius: 50%!important;
    margin: 0 3px!important;
    background: transparent!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    position: relative!important;
}
.owl-dot.active,.owl-dot:hover{
    background: black!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}
.share_popup{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-wrap: wrap;
    width: 165px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    bottom: 50px;
    right: 20px;
    border-radius: 8px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    flex-direction: column;
    align-items: center;
}
.share_popup.active{
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}
.share_btn{
    position: absolute;
    right: 0;
    bottom: 20px;
    cursor: pointer;
}
.share_btn:hover{
    opacity: 0.8;
}
.news_descr p{
    margin: 0;
}