@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/slick.ttf');
    src: url('../fonts/slick.ttf?#iefix') format('embedded-opentype'), url('./fonts/slick.ttf') format('woff'), url('./fonts/slick.ttf') format('truetype');
}



@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.eot');
    src: url('../fonts/Inter-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff'),
        url('../fonts/Inter-Regular.ttf') format('truetype'),
        url('../fonts/Inter-Regular.svg#Inter-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.eot');
    src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff'),
        url('../fonts/OpenSans-Regular.ttf') format('truetype'),
        url('../fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Medium.eot');
    src: url('../fonts/OpenSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-Medium.woff2') format('woff2'),
        url('../fonts/OpenSans-Medium.woff') format('woff'),
        url('../fonts/OpenSans-Medium.ttf') format('truetype'),
        url('../fonts/OpenSans-Medium.svg#OpenSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


body {
    margin: 0;
    font-family: 'Open Sans';
    font-weight: 400;
    background: #FFFFFF;
}

ul li {
    list-style: none;

}

h3,
h4,
h5,
h6 {
    margin: 0;
}

h1,
h2 {
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    padding-left: 0;
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}
::-webkit-scrollbar {
    width: 5px; /* ширина для вертикального скролла */
    height: 8px; /* высота для горизонтального скролла */
}
::-webkit-scrollbar-thumb {
    background-color: #878787;
    border-radius: 9em;
}

/* alert */

.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 10;
    background-color: rgba(255,255,255,0.7);
    backdrop-filter: blur(5px);
}

.alert--error,
.alert--warning,
.alert--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.alert--width {
    width: 421px;
}

.alert--img__item svg {
    width: 35px;
    height: 28px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.alert--img__item {
    display: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.alert--active .active {
    display: block;
}

.alert--warning .warning {
    display: block;
}

.alert--error .error {
    display: block;
}

.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 35px;
    color: #333333;
    margin-bottom: 10%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    row-gap: 12px;
}

.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 11;
    top: 0px;
    left: 0px;
}

.alert-text {
    margin-top: 15px;
    text-align: center;
}

.alert--warning .warning path {
    fill: #e5e75d;
}

.alert--error .error path {
    fill: #f81919;
}

.alert--title {
    font-size: 1rem;
    line-height: 1.5;
}

.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}

.alert--x {
    position: absolute;
    width: 15px;
    height: 15px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert--x svg {
    width: 100%;
    height: 100%;
}

.alert--x svg path {
    fill: gray;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.alert--x:hover path {
    fill: black;
}

/* alert */



.row {
    margin-right: 0;
    margin-left: 0;
}

#fullpage {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

article section {
    scroll-snap-align: start;
}
#kmission{
    position: relative;
}

header {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 5;
}

header.active {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(50px);
}

.header__submenu {
    transition: 0.4s linear;
    overflow: hidden;
    opacity: 0;
    transform: scale(0);
    height: 0px;
    transition: transform 0.4s ease;
}
header.active .header__submenu {
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: scale(0);
    transition: transform 0.4s ease;
}
.header__submenu.active,header.active .header__submenu.active {
    overflow: visible;
    visibility: visible;
    opacity: 1;
    height: 100%;
    transform: scale(1);
    transition: transform 0.4s ease;
}



header.active .dropdown_menu__block {
    top: 130%;
}

.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 10;
    display: flex;
    width: 100%;
}

.navbar>.container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.navbar-brand {
    width: 170px;
    height: 70px;
    display: block;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 1rem;
    row-gap: 1rem;
}
.header__menu.active{
    row-gap: 0;
    justify-content: center;
    transition: row-gap 0.2s ease-in-out;
}


.navbar .menu__items {
    display: inline-block;
    color: #181818;
    margin-right: 0.5rem;
}



.navbar ul li:last-child {
    margin-right: 0;
}

.navbar .menu__item {
    color: #000;
    display: block;
    padding: 0.3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.3;
    transition: 0.15s linear;
    font-weight: 400;
    text-shadow: 0 0 0px #000;
}

.header__submenu .menu__item {
    padding: 0.3rem 0.5rem;
}

.menu__items .active {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.navbar .menu__item:hover {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}
.dropdown_menu{
    position: relative;
}

.dropdown_menu .menu__item {
    position: relative;
    padding-right: 1.9rem;
}

.dropdown_menu .menu__item::before {
    content: '';
    position: absolute;
    right: 7%;
    transform: rotate(180deg);
    background: url(../img/dropd_arrow.svg) no-repeat;
    background-size: contain;
    width: 14px;
    height: 7px;
    transition: 0.15s linear;
}

.dropdown_right_menu .ri__arrow::after {
    content: '';
    position: absolute;
    right: -20%;
    top: 45%;
    transform: rotate(180deg);
    background: url(../img/dropd_arrow.svg) no-repeat;
    background-size: contain;
    width: 14px;
    height: 7px;
    transition: 0.15s linear;
}

.dropdown_right__block {
    display: none;
    margin-top: 1rem;
}

.dropdown_menu.active .menu__item::before {
    transform: rotate(0);
}

.dropdown_menu__block {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    top: 120%;
    white-space: nowrap;
    z-index: 1;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}


.header__submenu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.dd_menu__item {
    color: #000000;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    height: 29px;
    position: relative;
}
.dd_menu__item::before{
    position: absolute;
    left: 0;
    bottom: 0;
    background: #000;
    transition: 0.15s linear;
    width: 0%;
    height: 1px;
}
.dd_menu__item:hover:before{
    width: 100%;
}


.menu__burger {
    font-size: 0.9rem;
    width: 170px;
    display: flex;
    justify-content: flex-end;
}

.menu__burger span {
    cursor: pointer;
}

.right__item {
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.3;
    position: relative;
}

.right__item::before {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background-color: #000;
    transition: 0.2s linear;
    bottom: 0;
}

.right__item:hover::before {
    width: 100%;
}

.right_nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(50px);
    right: -150%;
    top: 0;
    padding: 1.5rem;
    padding-top: 135px;
    width: 20%;
    height: 100vh;
    transition: 0.5s ease-in-out;
    overflow-y: scroll;
}

.right_nav.active {
    right: 0;
}

.header__back {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
}

.header__back.active {
    display: block;
}

.burger_close {
    position: relative;
    opacity: 0;
    transition: 0.3s linear;
}

.burger_close::before,
.burger_close::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background-color: #000;
    transform: rotate(45deg);
    left: -2rem;
    top: 35%;
}

.burger_close::after {
    transform: rotate(-45deg);
}

.menu__burdger_text {
    transition: 0.15s linear;
}

.menu__burger.active .menu__burdger_text {
    overflow: hidden;
    opacity: 0;
}

.menu__burger.active .burger_close {
    opacity: 1;
    cursor: pointer;
}

.menu__burger.active {
    z-index: 2;
}


.right__items {
    margin-bottom: 1.5rem;
}
.dropdown_right__block .right__items{
    margin-bottom: 0.5rem;
}
.dropdown_right__block ul{
    margin-left: 1rem;
}

.right_nav_list {
    margin-bottom: 7rem;
}

.download__item {
    padding-left: 10px;
    margin-left: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    position: relative;
    color: #000;
}

.download__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    background: url(../img/download.svg) no-repeat;
    width: 10px;
    height: 10px;
}

.lang_nav {
    padding-left: 2.2rem;
    position: relative;
    padding-bottom: 2rem;
}
.lang_nav li {
  padding-bottom: 10px;
}
.lang_nav li::last-child {
  padding-bottom: 0;
}

.lang_nav::before {
    position: absolute;
    content: '';
    background: url(../img/global.svg) no-repeat;
    background-size: contain;
    width: 1.5rem;
    height: 1.5rem;
    left: 0;
}

.right__subnav {
    display: none;
}

.lang__item {
    color: #000000;
    font-size: 0.8rem;
    line-height: 1.5;
    transition: 0.15s linear;
    margin-bottom: 1rem;
}

.lang__item:hover {
    font-weight: 700;
    border-bottom: 1px solid #000;
}


.main {
    height: 100vh;
    position: relative;

}

.main .container {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.main .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.main_bottom_arrow {
    position: absolute;
    bottom: 5%;
    width: 20px;
    height: 10px;
}

.main_bottom_arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.15s linear;
    animation: arrow_anim 0.5s infinite alternate;
}

.main_title {
    padding-top: 11rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 1rem;
}

.main_title_link {
    font-weight: 600;
    color: #000;
    position: relative;
}

.main_title_link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    background-color: #000;
    transition: 0.2s linear;
}

.main_title_link:hover:before {
    width: 100%;
}

.main_stat {
    display: flex;
    column-gap: 5rem;
    padding-bottom: 4rem;
    color: #fff;
    width: 100%;
    flex-wrap: wrap;
    column-gap: 1rem;
    justify-content: space-between;
}
.main__statistic{
    justify-content: center;
    column-gap: 3rem;
    padding-bottom: 7rem;
}


.main_stat__blocks {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.5rem;
    width: 28%;
}
.main__statistic .main__statistic__blocks{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.5rem;
    flex: 0 0 12em;
}

.stat__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 2rem;
}
.stat__title._anim-items{
    overflow: hidden;
    opacity: 0;
    transition: 0.3s linear;
}
.stat__title._active{
    opacity: 1;
}

.stat_subtitle,
.main_title_text {
    font-size: 1rem;
    line-height: 1.2;
}

.stat_subtitle {
    max-width: 9rem;
    text-align: center;
}

.subtitle_long {
    max-width: 22rem;
    padding: 1rem;
}
.subtitle_long._anim-items{
    overflow: hidden;
    transform: translateY(500px);
    transition: 0.2s linear;
    transition-delay: 0.8s;
}
.subtitle_long._active{
    transform: translateY(0);
}

.main_stat_line {
    position: relative;
}

.main_stat_line::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 90%;
    background-color: rgba(255, 255, 255, 0.4);
    right: -10%;
}

.main_title_img {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
.main_title_img.way{
    opacity: 0;
    transition: 0.5s linear;
}
.main_title_img.way--active{
    opacity: 1;
}


.main_title_img p {
    font-style: italic;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.5;
    color: #173A60;
}

.pt-s {
    padding-top: 6em;
}

.pb-s {
    padding-bottom: 6em;
}

.main_stat__btn {
    padding-bottom: 6rem;
}

.main_stat__btn a {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-size: 0.8rem;
    line-height: 1.5;
    text-transform: uppercase;
    padding: 0.5rem 3rem;
    color: #171A20;
    transition: 0.15s linear;
}

.main_stat__btn a:hover {
    background-color: #fff;
}

/* Slider partner */

.managers {
    background-color: #fff;
    padding-top: 233px;
}

.manager_block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.manager_block__img{
    height: 16rem;
}

.manager_block {
    padding: 0.5rem;
}

.manager_name {
    font-style: normal;
    font-weight: 600;
    color: #000;
    font-size: 1rem;
    margin-top: 1rem;
}

.manager_sub_text {
    font-style: normal;
    line-height: 1.5;
    font-weight: 400;
    color: #878787;
    margin-top: 1rem;
}

.left_block__gray_text {
    font-size: 1rem;
    color: #878787;
    line-height: 1.5;
}

.left_block__head_text {
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 1rem;
}

.left_block__sub_text {
    font-size: 1rem;
    line-height: 1.5;
}
.left_block__sub_text table{
    text-align: left;
}

.left_block__sub_text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.left_block__sub_text ul li{
    list-style: disc;
    list-style-position: inside;
}

.managers_left_block {
    padding-right: 3rem;
}

.under-content {
    background: #F4F4F4;
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 1.3rem;
}

.under-content h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
}

.under-content p {
    font-size: 0.9rem;
}

.under_tel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 0.2rem;
    padding: 0.3rem 2.5rem;
    padding-left: 3.3rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 47px;
    position: relative;
}

.under_tel::before {
    content: '';
    position: absolute;
    left: 5px;
    background: url(../img/man_tel.svg) no-repeat;
    background-image: #fff;
    background-size: contain;
    width: 40px;
    height: 40px;
}

.under_tel a {
    color: #fff;
    position: relative;
}

.under_tel a::before {
    position: absolute;
    content: '';
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: 0.2s linear;
}

.under_tel a:hover:before {
    width: 100%;
}

.managers_contents {
    padding-bottom: 9rem;
}

.mission-img img {
  width: 71%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.mission_contents {
  align-items: center;
  height: 100%;
}

.mission {
position: relative;
min-height: 100vh;
}

.mission_top_block {
margin-top: 7em;
}

.mission__decription {   
padding: 4rem 0;
padding-top: 120px;
}


.btn__standard {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.15s linear;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    display: block;
    text-align: center;
    padding: 0.6rem 0rem;
    cursor: pointer;
}

.btn__standard:hover {
    color: #000;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.left_block__btn {
    margin-top: 2.5rem;
    width: 70%;
}

.services_block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.services_block__img {
    height: 15rem;
    position: relative;
}

.services_block_link {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}

.services_block {
    margin-right: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;

}

.services_block:nth-child(4n) {
    padding-right: 0;
}

.services_blocks {
    row-gap: 1rem;
}

.services_block__items {
    background: #F4F4F4;
    padding: 2rem;
    border-radius: 0px 0px 10px 10px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.services_block__items a{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.services__main_text {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    flex: 1 1 auto;
}

.services__sub_text {
    color: #878787;
    margin-bottom: 2rem;
    flex: 1 1 auto;
}

.news_block {
    margin-bottom: 1.5rem;
}

.news_block:last-child {
    margin-bottom: 0;
}

.services_top_content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.filter_items {
    position: relative;
}

.filter_btn {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    padding: 12px 60px;
    color: #fff;
    position: relative;
}

.filter_btn::before {
    position: absolute;
    content: '';
    background: url(../img/white_arrow.svg) no-repeat;
    background-size: cover;
    width: 17px;
    height: 10px;
    transform: rotate(180deg);
    right: 10%;
    top: 40%;
    transition: 0.3s linear;
}

.filter_btn.active::before {
    transform: rotate(0deg);
}

.filter_btns {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 1rem;
    position: absolute;
    top: 150%;
    display: none;
    width: 80%;
    z-index: 1;
}

.filter_btns a {
    color: #000;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}
.filter_btns a:last-child{
    margin-bottom: 0;
}

.filter_btns a::before {
    position: absolute;
    content: '';
    bottom: 0;
    width: 0;
    height: 1px;
    transition: 0.2s linear;
    background-color: #000;
}

.filter_btns a:hover:before {
    width: 60%;
}

.pagintaion_numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.main_number {
    border-radius: 50%;
    border: 1px solid #878787;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other_numbers {
    color: #9C9C9C;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pagintaion {
    padding-top: 5rem;
}

.pagination_btn .btn__standard {
    position: relative;
    padding: 0.7rem 2.5rem;
}

/*.pagination_btn .btn__standard::before {
    position: absolute;
    content: '';
    background: url(../img/white_arrow.svg) no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    width: 12px;
    height: 10px;
    right: 10%;
    top: 40%;
    transition: 0.3s linear;
}

.pagination_btn .btn__standard:hover:before {
    background: url(../img/dropd_arrow.svg) no-repeat;
    background-size: contain;
}*/
.prev_pag_btn .btn__standard{
    right: auto;

    margin-right: 1rem;
}
.prev_pag_btn .btn__standard::before{
    left: 10%;
    transform: rotate(-90deg);
}
.news-text a {
    color: #31B98B;
    position: relative;
}
.news-text a::before{
    position: absolute;
    bottom: 0;
    content: '';
    background: #31B98B;
    left: 0;
    width: 0%;
    height: 1px;
    transition: 0.2s linear;
}
.news-text a:hover::before{
    width: 100%;
}

.news-date p {
    margin-bottom: 0.5rem;
}

.news-text p {
    margin-bottom: 0.5rem;
}

.read_more_text {
    font-size: 1.3rem;
    line-height: 150%;
    font-weight: 600;
    margin-bottom: 4rem;
}

.news_title h1 {
    color: #000000;
    font-size: 3rem;
    line-height: 1.5;
}

.news_title {
    margin-bottom: 2rem;
    margin-right: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}


.news_text {
    line-height: 150%;
    text-indent: 30px;
    color: #000000;
    font-size: 1rem;
}
.news-contents ul li{
    list-style: disc;
    list-style-position: inside;
}

.news_text p:not(:last-child),
.news_social_media p {
    margin-bottom: 1rem;
}

.news_social_media {
    margin-top: 2.5rem;
}

.facebook_media {
    background: #4267B2;
}

.telegram_media {
    background: #039BE5;
}

.whatsaap_media {
    background: #00D264;
}

.social_medias_block {
    display: flex;
    margin-top: 2rem;
}

.sm_block {
    width: 15rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-self: center;
    padding: 0.5rem 0;
    transition: 0.3s linear;
}

.sm_block:hover {
    transform: translateY(-0.7rem);
}

.sm_block img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

/* footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer_bottom {
  padding-top: 2rem;
}

.footer_content {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: flex-start;
  justify-content: start;
  column-gap: 7rem;
}


.footer_left {
  font-size: 0.9rem;
}
.footer_middle {
  max-width: 280px;
}

.contact_tel {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    align-items: flex-start;
}

.footer_contacts a,
.footer_group_item {
    color: #fff;
    position: relative;
}

.footer_contacts a::before,
.footer_group_item::before {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    transition: 0.2s linear;
}

.footer_contacts a:hover:before,
.footer_group_item:hover::before {
    width: 100%;
}

.footer-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer_contacts {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.footer_left .navbar-brand {
    margin-bottom: 1rem;
}

.contact_email,
.contact_location,
.contact_tel {
    position: relative;
    padding-left: 2rem;
}
.contact_email::before,
.contact_location::before,
.contact_tel::before {
    position: absolute;
    content: '';
    background: url(../img/mail.svg) no-repeat;
    background-size: contain;
    width: 22px;
    height: 17px;
    left: 0;
    top: 3px;
}
.contact_email::before{
  top: 10%;
}
.contact_location::before {
  top: 4px;
}

.contact_location::before {
    background: url(../img/location.svg) no-repeat;
    background-size: contain;
    width: 18px;
    height: 24px;
}

.contact_tel::before {
    background: url(../img/tel.svg) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.footer_group_item {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

.footer_group {
    margin-bottom: 0.5rem;
}

.footer_bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #FFFFFF80;
    font-size: 0.9rem;
}

.footer_bottom_right a {
    color: #FFFFFF80;
    transition: 0.15s linear;
}

.footer_bottom_right a:hover {
    color: #fff;
}

/* footer */


/* Popup */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: rgba(255,255,255,0.7);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    backdrop-filter: blur(5px);
}

.fade {
    transition: opacity .15s linear;
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px);

}

.modal.show .modal-dialog {
    transform: none;
}


.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.modal-dialog {
    max-width: 558px;
    margin: 1.75rem auto;
    position: relative;
    pointer-events: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  background-color: rgba(255,255,255,0.4);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .7);
  border-radius: 0.3rem;
  outline: 0;
  width: 400px;
  border-radius: 25px;
  padding: 40px;
  padding-top: 50px;
  height: auto;
}

.modal-header {
  border: none;
  display: block;
  height: auto;
  padding-bottom: 24px;
}

.modal-body form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-btn-center {
    margin-top: 16px;
    display: flex;
    width: 98%;
    align-items: center;
    justify-content: center;
    align-items: center;
    justify-content: center;
}

.modal-body form label {
    font-style: normal;
    font-weight: 400;
    font-size: 0.7em;
    line-height: 15px;
    color: #000;
    padding-left: 15px;
}

.popup-body {
  width: 93%;
  border: 1px solid #E7E7E7;
  border-radius: 14px;
  margin: 0;
  margin-bottom: -14px;
  padding: 1rem;
  background-color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: #000;
  height: 100%;
  max-height: 32px;
  font-size: 0.85rem;
  margin-top: 15px;
}
.popup-body.error{
    border: 0.5px solid red;
}
.modal-body label.error{
    font-size: 0.6em;
    color: red;
}
label.msg {
  display: none;
}
.form-request_text {
  display: flex;
  align-items: flex-start;
}
.form-request_text label {
  width: 100%;
  font-size: 16px!important;
  display: block;
  line-height: 1.2em;
}
.form-request_text a {
  color: #000;
}
.form-request_text input {
  width: 100%;
  max-width: max-content;
}

.modal-body form input::placeholder, textarea::placeholder {
  color: rgba(0, 0, 0, .9);
}

.btn-close {
  box-sizing: content-box;
  width: 0.9em;
  height: 0.9em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url(../img/close-btn.svg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  cursor: pointer;
  background-size: contain;
  position: absolute;
  top: 20px;
  right: 20px;
}

.popup-btn {
  width: 100%;
  font-size: 1.2rem;
  text-transform: none;
}

textarea#msg {
  width: 93%;
  resize: none;
  min-height: 105px;
  font-size: 1rem;
  border-radius: 14px;
  font-size: 0.85rem;
  margin: 0;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #E7E7E7;
}
textarea#msg:focus-visible,.modal-body input:focus-visible {
    border: none;
   outline: none;
}

h4.modal-title.text-center {
    width: 100%;
    font-style: normal;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

.popup-send {
    font-style: normal;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 18px 0px;
    background: #E30016;
    ;
    border: none;
    width: 150px;
    margin-top: 30px;
}
#lname{
    margin-bottom: 0.5rem;
}

/* Popup */

/* Breadcrumb */
.breadcrumb {
    margin-top: 3rem;
}

.breadcrumb ul li a {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    color: #858585;
    text-decoration: none;
    transition: 0.15s linear;
}

.breadcrumb ul li:first-child a::after {
    position: absolute;
    content: '';
    background: url(../img/breadcrumb-home.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 17px;
    left: 0;
    transition: 0.15s linear;
}

.breadcrumb ul li:first-child a:hover::after {
    background: url(../img/breadcrumb-home\ black.svg);
}

.breadcrumb ul li:first-child a:hover {
    color: #000;
    font-weight: bold;
}

.breadcrumb ul li:first-child {
    padding-left: 25px;

}

.breadcrumb ul li {
    display: inline;
    position: relative;
    min-width: 90px;
}

.breadcrumb ul li:not(:last-child) {
    margin-right: 20px;
}

.breadcrumb ul li:not(:last-child) a::before {
    position: absolute;
    content: '';
    background: url(../img/breadcrumb-dots.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 4px;
    height: 4px;
    top: 45%;
    right: -20%;
}

.breadcrumb ul li:last-child a {
    font-weight: 700;
    color: #000;
    position: relative;
}

@keyframes arrow_anim {
    from {
        margin-bottom: 0;
    }

    to {
        margin-bottom: 10px;
    }
}

.main_stat_slider .slick-dots li button,.main_stat_slider .slick-arrow {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.main_stat_slider .slick-dots li{
    margin-left: 0.4rem;
}
.main_stat_slider .slick-arrow::before{
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    background: url(../img/white_arrow.svg) no-repeat;
    background-size: contain;
    top: 30%;
}
.main_stat_slider .slick_next::before{
    transform: rotate(90deg);
    right: 0;
}
.main_stat_slider .slick_prev::before{
    transform: rotate(-90deg);
    left: 0;

}

.main_stat_slider .slick-dots button::before {
    position: relative;
    display: block;
    content: '';
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 5px;
    opacity: 0.5;
    transition: 0.15s linear;
}

.main_stat_slider .slick-dots li.slick-active button::before {
    opacity: 1;
    color: #fff;
    width: 40px;
    transition: 0.15s linear;
}
.main_stat_slider .slick-dots li:last-child.slick-active button::before{
    width: 7px;
}

.main_title._anim-items{
    opacity: 0;
    transition: 0.5s linear;
    transition-delay: 0.6s;
}
.main_title._active{
    opacity: 1;
}
.main__statistic__blocks.main_stat_line::before{
    right: -15%;
    height: 100%;
}



@media(min-width: 1800px) {
    .container {
        max-width: 1600px;
    }
    .manager_block__img{
        height: 20rem;
    }
}
@media (min-width: 1700px){
    .modal-dialog {
        max-width: 451px;
    }
    h4.modal-title.text-center {
        font-size: 2rem;
    }
    .popup-body {
        font-size: 1.2rem;
        max-height: 42px;
    }
    .popup-body {
        font-size: 1.2rem;
        max-height: 42px;
    }
    .modal-body form label {
        font-size: 16px;
    }
    textarea#msg {
        min-height: 91px;
        font-size: 1.2rem;
    }
}


@media(max-width: 1650px) {

    .pb-s {
        padding-bottom: 4.4em;
    }

    .pt-s {
        padding-top: 4.4em;
    }
    .mission_left_block{
        margin-top: 7em;
    }
    .modal-dialog{
        max-width: 389px;
    }
    .navbar-brand{
        height: 55px;
    }
}

@media (max-width: 1440px) {

  .navbar .menu__item {
      font-size: 0.8rem;
      min-width: none;
  }

  .btn__standard {
      padding: 0.6rem 0rem;
  }

  .news_title {
      flex-wrap: wrap;
  }

  .news_title h1 {
      font-size: 2.3rem;
      width: 100%;
  }

  .news_date {
      width: 100%;
      text-align: end;
  }
  .stat__title {
      font-size: 1.3rem;
  }
  .subtitle_long{
      font-size: 0.8rem;
  }
  .left_block__sub_text p{
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .left_block__sub_text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .navbar-brand,.menu__burger{
      width: 120px;
  }
  h4.modal-title.text-center{
      font-size: 1.8rem;
  }
  .btn-close{
      width: 0.9em;
      height: 0.9em;
  }
  .popup-body{
      max-height: 32px;
      font-size: 0.85rem;
  }
  .modal-body form label{
      font-size: 12px;
  }
  textarea#msg{
      font-size: 0.85rem;
      width: 90%;
  }
  .modal-dialog{
      max-width: 358px;
  }
  .alert--title{
      font-size: 14px;
  }
  .mission-img img{
      width: 66.5%;
  }
  .managers_left_block{
      padding-right: 1rem;
  }
  .mission_contents .col-lg-3{
      width: 30%;
  }
  .services_contents {
      width: 68%;
  }
  .services .row, .news .row{
      justify-content: space-between;
  }
  .services .row.services_blocks{
      justify-content: flex-start;
  }
  .services_block__items {
    padding: 1rem;
  }
  .footer_content {
    grid-template-columns: repeat(3,1fr);
  }
  .mission__decription {
    padding: 80px 0;
  }
  .mission_contents {
    align-items: center;
    height: 100%;
  }
  .left_block__sub_text {
    width: 85%;
  }
}
@media (max-width: 1400px) {
  .services_contents {
    width: 70%;
}
}

@media (max-width: 1200px) {
  /*#mission {
      padding-top: 4rem;
  }*/

  .popup-btn {
      width: 100%;
      height: 44px;
  }

  .right__subnav {
      display: block;
      margin-top: 3.5rem;
  }

  .header__submenu {
      display: none;
  }

  .right__items {
      margin-bottom: 0.8rem;
  }

  .right_nav {
      max-height: 85vh;
  }

  .main_stat {
      padding-bottom: 7rem;
  }

  .stat__title {
      font-size: 1.5rem;
  }

  .stat_subtitle,
  .main_title_text {
      font-size: 0.9rem;
  }

  .header__menu_block {
      margin-left: 0;
  }

  .managers_left_block {
      padding-right: 1rem;
  }

  .left_block__gray_text {
      text-align: left;
  }

  .news_title h1 {
      font-size: 2rem;
  }
  .services_contents {
    width: 68%;
}

}

@media (max-width: 992px) {
    .left_block__head_text{
        font-size: 1.4rem;
    }
    .services_block__items{
        padding: 1.4rem
    }
    .services_block__img{
        height: 20rem;
    }
    .mission {
      padding-top: 3rem;
      height: 100%;
      min-height: 100%;
    }
.mission__decription {
  width: 100%;
  padding: 0;
  margin-bottom: 1rem;
}
.mission_top_block {
  margin-top: 1rem;
}
.mission-img {
  width: 100%;
}
.mission-img img {
  position: relative;
  width: 100%;
  height: 100%;
}
.mission_contents {
  display: grid;
  height: 100%;
}

    .left_block__btn {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .right_nav {
        width: 40%;
    }

    .header__menu_block {
        display: none;
    }

    .main_title {
        padding-top: 9rem;
    }

    .main_stat {
        padding-bottom: 2rem;
    }
    .main__statistic{
        padding-bottom: 5rem;
    }

    .footer_content {
      gap: 3rem;
  }
  
  .footer a {
      font-size: 0.8rem;
  }

    .managers {
        padding-top: 130px;
    }

    .managers_left_block {
        margin-bottom: 2rem;
    }

    .manager_sub_text {
        margin-top: 0.5rem;
    }

    .managers_contents {
        padding-bottom: 3rem;
    }

    .under_tel a {
        font-size: 0.9rem;
    }

    #mission {
        padding-top: 80px;
    }
    .mission_left_block{
        margin-top: 10px;
    }

    .read_more_text {
        margin-bottom: 1rem;
        margin-top: 3rem;
    }

    .main_stat_slider_bloks {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main_stat_slider.slick-initialized .slick-slide {
        display: flex;
    }

    .main_stat_line::before {
        display: none;
    }

    .main_stat_slider .slick-dots {
        margin-top: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .main__statistic .main__statistic__blocks{
        flex: 1 1 auto;
    }
    .header__menu{
        min-height: 0;
    }
    .left_block__sub_text{
        width: 100%;
    }
    .mission_contents .col-lg-3,.services_contents{
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services_block__img{
        height: 29rem;
    }
    .manager_block__img{
        height: 22rem;
    }

    .modal-dialog {
        max-width: 285px;
    }

    .modal-content {
        padding: 14px;
        padding-top: 50px;
    }

    .modal-body form input:not(:last-child) {
        width: 90%;
    }

    textarea#msg {
        min-height: 59px;
    }

    .popup-btn {
        font-size: 0.9rem;
        height: 38px;
    }

    h4.modal-title.text-center {
        font-size: 1.4rem;
        padding-bottom: 10px;
    }
    .btn-close{
        width: 0.7em;
    }

    .popup-body {
        font-size: 0.9rem;
        max-height: 27px;
    }

    .modal-body form label {
        font-size: 0.7rem;
    }
    .main__statistic .main__statistic__blocks{
        width: 26%;
    }
    .alert-text{
        font-size: 0.8rem;
    }
    body.active {
        overflow: hidden;
    }
    .footer_content {
      grid-template-columns: repeat(2,1fr);
      margin-bottom: 2rem;
  }
  
  .footer_left {
    width: 100%;
    display: flex;
    grid-column: span 2;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  .footer_groups {
    columns: 2;
  }
  .footer .container {
    max-width: 620px;
  }
}

@media (max-width: 576px) {
    .services_block__img {
        height: 21rem;
    }
    .pagintaion_numbers{
        row-gap: 1rem;
        flex-wrap: wrap;
    }

    .manager_block__img{
        height: 14rem;
    }
    .filter_btn {
        padding: 8px 62px;
    }

    .filter_btns a {
        margin-bottom: 0.5rem;
    }

    .navbar-brand {
        width: 145px;
        height: 51px;
        display: block;
    }

    .under-content {
        padding: 2rem;
    }

    .footer_content {
      display: flex;
      flex-direction: column;
    }
    .footer_bottom {
      padding-top: 0.5rem;
      display: block;
  }
  .footer_left {
    width: 100%;
    display: flex;
    grid-column: span 2;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
  }

    .stat_subtitle,
    .main_title_text {
        font-size: 0.8rem;
    }

    .main_stat {
        column-gap: 1rem;
    }

    .main_title_img p {
        font-size: 2rem;
    }

    .container {
        width: auto;
    }
    .news_title{
        margin-right: 0;
    }
}
@media (max-width: 375px){
    .footer_middle, .footer_right{
        width: 100%;
    }
}