@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
  --primary: #0263b2;
  --secondary: #ef5858;
  --light: #f0f2f7;
  --font: #1b202b;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

*:disabled {
  cursor: not-allowed;
}

body {
  min-width: 320px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--font);
}

a {
  text-decoration: none;
  color: var(--primary);
}

a:visited {
  color: var(--primary);
}

a:hover {
  color: var(--font);
  text-decoration: none;
}

h1 {
  font-size: 40px;
}

h2,
.h2 {
  font-size: 33px;
}

h3,
.h3 {
  font-size: 27px;
}

.h2,
.h3 {
  font-weight: bold;
}

p {
  margin-top: 0;
  margin-bottom: 15px;
}

img {
  width: 100%;
  height: auto;
}

input:not([type='checkbox']) {
  box-sizing: border-box;
  width: 100%;
}

input[type='submit'] {
  width: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ol {
  margin-right: 20px;
  counter-reset: count;
  padding-left: 45px;
  margin-bottom: 20px;
}

ol li {
  list-style: none;
  position: relative;
}

ol li:before {
  counter-increment: count;
  content: counter(count) '. ';
  color: var(--primary);
  position: absolute;
  left: -20px;
  top: 0;
  font-size: 16px;
  font-weight: 600;
}

button {
  border: none;
  border-radius: 0;
  cursor: pointer;
}

button:focus {
  outline: 0;
}

h1 {
  font-size: inherit;
  margin: 0;
}

.wrapper {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.page {
  margin: 0;
}

#main {
  flex: 1 0 auto;
}

.heading {
  display: flex;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
}

.heading_bg {
  background-color: var(--light);
}

.heading .heading_title {
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 0;
  margin-top: 0;
  font-size: 36px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 15px;
}

.btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  padding: 15px 35px;
  background: linear-gradient(139.94deg, #ef5858 0%, #f78787 92.73%);
  transition: 1s;
}

.btn_primary:hover {
  background: linear-gradient(139.94deg, #f78787 0%, #ef5858 92.73%);
  transition: 1s;
}

.head h2 {
  text-align: center;
  color: var(--primary);
  font-size: 33px;
}

/* header */
/* logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
}

.logo a {
  display: inline-flex;
  width: 100%;
}

.logo img {
  width: 100%;
}

.logo .logo_name {
  text-transform: uppercase;
  color: rgba(27, 32, 43, 0.5);
  font-size: 12px;
}

/* header_top */
.header_top {
  background-color: var(--primary);
}

.top_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.top_nav .menu {
  list-style: none;
  font-size: 14px;
  display: flex;
}

.top_nav .menu li {
  padding: 5px 10px;
}

.top_nav .menu li a {
  color: #fff;
  position: relative;
}

.top_nav .menu li a::after {
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.top_nav .menu li.current-menu-item a::after {
  width: 100%;
  transition: 0.3s;
}

.top_nav .menu li a:hover::after {
  width: 100%;
  transition: 0.3s;
}

/* header_middle */
.middle_container {
  padding: 30px 0;
  display: flex;
  align-items: center;
}

.header_contact {
  display: flex;
  flex-grow: 1;
}

.middle_item:not(.middle_item-lg) {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  max-width: 200px;
}

.middle_item a {
  color: var(--font);
  transition: 0.3s;
}

.middle_item a:hover {
  color: var(--primary);
  text-decoration: underline;
  transition: 0.3s;
}

.middle_item span {
  color: var(--font);
  transition: 0.3s;
}

.middle_item .contact_sity span:hover {
  color: var(--primary);
  transition: 0.3s;
  cursor:pointer;
}


.middle_item .address {
  display: inline-flex;
  min-height: 65px;
}

.middle_item-lg {
  flex-grow: 1;
  margin-left: 75px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.middle_head{
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-flex;
}

.contact_sities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

/* header_bottom */
.header_bottom {
  border-top: 1px solid #e6eaf2;
  position: relative;
}

.bottom_container {
  display: flex;
  align-items: center;
  position: relative;
}

.bottom_nav {
  flex-grow: 1;
}

.bottom_nav .menu {
  padding: 20px 0;
}

.bottom_nav .menu {
  display: flex;
  list-style: none;
  justify-content: space-between;
  position: relative;
}
.bottom_nav .menu > li > ul{margin:0}
.bottom_nav .menu > li a {
  color: var(--font);
  display: inline-flex;
  align-items: center;
  position: relative;
}

.bottom_nav .menu > li > a:before {
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--font);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.bottom_nav .menu > li:hover > a:before {
  width: 100%;
  transition: 0.3s;
}

.bottom_nav .menu > li.current-menu-item > a:before {
  width: 100%;
}

.bottom_nav .menu > li a img {
  max-width: 25px;
  margin-right: 10px;
}

.bottom_nav .sub-menu {
  z-index: 9999;
}

.bottom_nav .first_sub,
.bottom_nav .second_sub {
  position: absolute;
  display: none;
}

.bottom_nav .sub-menu li {
  padding: 7px 40px;
  padding-left: 8px;
}

/*.bottom_nav .first_sub {
  width: 50%;
  left: 0;
  top: 100%;
  background-color: #fff;
  list-style: none;
}*/
.bottom_nav .first_sub {
	width: fit-content;
    top: 100%;
    background-color: #fff;
    list-style: none;
    transform: translateX(-43px);
}

.bottom_nav .second_sub li {
  position: relative;
  max-width:600px;
}

.bottom_nav .second_sub li > a{
  width: max-content;
}
/* .bottom_nav > nav > ul > .menu-item-has-children:nth-child(2) */
.bottom_nav > nav > ul > .menu-item-has-children .second_sub li > a{
	width: 100%;
}
.bottom_nav .second_sub li.last a {
  display: inline-flex;
  font-weight: 600;
  font-size: 18px;
}

.bottom_nav .second_sub {
  width: fit-content;
  left: 100%;
  top: 0;
  background-color: #fff;
  list-style: none;
  border-left: 1px solid #0263b2;
  margin: 0;
  height: 0;
  min-width: 320px;
  overflow-y: auto;
}

.bottom_nav .second_sub.show {
  height: 100%;
  min-height: 300px;
}

.bottom_nav li.menu-item-has-children > a {
  align-items: center;
  display: inline-flex;
  margin-right: 10px;
}
.bottom_nav #menu-glavnoe-menyu > li.menu-item-has-children > a{position:relative}
.bottom_nav #menu-glavnoe-menyu > li.menu-item-has-children > a:before {
	content:'';
	background:transparent;
	width:100%;
	height:24px;
	position:absolute;
	bottom:-100%;
}
.bottom_nav li.menu-item-has-children > a:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: solid var(--font);
  border-width: 2px 2px 0 0;
  transform: rotate(135deg);
  color: var(--font);
  transition: 0.3s;
  margin-left: 10px;
  margin-top: 0;
}

.bottom_nav li.menu-item-has-children:hover > a:after {
  transform: rotate(-45deg);
  transition: 0.3s;
}

.bottom_nav .first_sub li.menu-item-has-children > a {
  width: 100%;
  position: relative;
}

.bottom_nav .first_sub li.menu-item-has-children > a::after {
  position: absolute;
  top: 5px;
  left: 100%;
}

.bottom_nav .first_sub li.menu-item-has-children > a:after {
  transform: rotate(45deg);
}

.bottom_nav .first_sub li.menu-item-has-children:hover > a:after {
  transform: rotate(135deg);
  border-color: #fff;
}

.first_sub li:hover {
  background-color: var(--primary);
}

.first_sub li:hover > a {
  color: #fff;
}

.first_sub li:hover > a img {
  filter: invert(100%) sepia(100%) saturate(13%) brightness(117%);
}

.single_action{
  margin-top: 6px;
  margin-bottom: 20px;
}

.bottom_search {
  margin-left: 100px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}

.bottom_search:hover > i {
  color: var(--primary);
  transition: 0.3s;
}

.bottom_search-form {
  position: absolute;
  z-index: 999;
  width: 100%;
  left: 0;
  top: 100%;
  padding: 20px;
  background-color: #fff;
  display: none;
}

.bottom_search-form form {
  display: flex;
  align-items: center;
}

.bottom_search-form input {
  flex-grow: 1;
  border: 0;
  border-bottom: 1px solid var(--font);
  border-radius: 0;
}

.bottom_search-form input:focus {
  border-bottom: 1px solid var(--primary);
  outline: 0;
}

.bottom_search-form button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.bottom_action {
  display: none;
}

/* burger button */
.burger {
  width: 30px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  display: none;
  padding: 0;
}

.burger:focus {
  outline: 0;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  border-radius: 3px;
  width: 100%;
  background: var(--primary);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.burger span:nth-child(1) {
  top: 0px;
}

.burger span:nth-child(2),
.burger span:nth-child(3) {
  top: 8px;
}

.burger span:nth-child(4) {
  top: 16px;
}

.burger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.burger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* breadcrumbs */
.breadcrumbs {
  border-top: 1px solid #e6eaf2;
}

.breadcrumbs_list {
  margin: 30px 0 15px;
}

.breadcrumbs_list span {
  margin: 0 3px;
  font-size: 14px;
}

/* hero */

.hero_container {
  max-height: 600px;
  display: flex;
}

.hero_features {
  width: 450px;
  min-width: 450px;
  background-color: var(--light);
}

.hero_slider {
  width: calc(100% - 450px);
}

.hero_slider .swiper-button-next,
.hero_slider .swiper-button-prev {
  color: #fff;
}

.banner_slider {
  height: 100%;
}

.hero_img {
  height: 100%;
  object-fit: cover;
}

.hero_features {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.hero_features .features_item {
  width: 100%;
  max-width: 300px;
}

.hero_features .features_item.odd {
  align-self: flex-end;
}

/* home content */

.home_container {
  margin: 50px 0;
}

.content .alignleft {
  margin: 0 15px 15px 0;
  max-width: 430px;
}

.content .alignright {
  margin: 0 0 15px 15px;
  max-width: 430px;
}

.content h1,
.content h2,
.content h3 {
  text-align: center;
  color: var(--primary);
}

.content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.content h2 {
  font-size: 33px;
  display: inline;
}

.content h3 {
  font-size: 27px;
}

.content ul {
  list-style: none;
  margin: 10px 0 10px 30px;
}

.content ul li {
  position: relative;
  line-height: 1.5;
}

.content ul li:before {
  content: '';
  display: block;
  width: 8px;
  min-width: 8px;
  height: 8px;
  min-height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  left: -15px;
  top: 8px;
}

.content ul li a:hover {
  color: var(--font);
}

/* .content ul li a:visited {
  color: var(--primary);
} */

.content p {
  line-height: 1.5;
  margin-bottom: 10px;
}

.content .wp-block-media-text__content {
  padding: 0 10px 0 30px;
}

/* home_contact */
.home_contact {
  background-color: var(--light);
}

.home_contact-container {
  padding: 40px 0;
}

.home_contact-container .h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}

.home_contact-form form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home_contact-form .form_set {
  width: calc((100% / 3) - 30px);
  margin: 5px 10px 25px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home_contact-form .form_group {
  margin: 5px 10px 10px 0;
  width: 100%;
  min-height: 55px;
  position: relative;
}

.home_contact-form .form_check .wpcf7-list-item {
  margin-top: 15px;
}

.form_label {
  font-size: 12px;
  font-style: italic;
  color: rgba(27, 32, 43, 0.34);
}

.home_contact-form .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: 40px;
}

.home_contact-form .form_control {
  box-sizing: border-box;
  width: 100%;
  padding: 3px 0 3px 10px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(27, 32, 43, 0.36);
  background-color: transparent;
}

.home_contact-form .form_control:focus {
  outline: 0;
  border-bottom: 1px solid var(--primary);
}

.home_contact-form .form_action {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.home_contact-form .wpcf7-list-item {
  margin: 0;
}

.home_contact-form .form_action .btn_primary {
  margin-top: 0;
}

.form_action .btn_primary {
  border: none;
  padding: 14px 86px;
  margin-top: 20px;
}

.sidebar .wpcf7 form .wpcf7-response-output {
    margin: 1em 0.5em 0em;
    padding: 0.2em 0.5em;
    font-size: 14px;
    line-height: 1.2;
}

.sidebar .wpcf7-not-valid{
	border-color:red !important;
}

.sidebar .wpcf7-not-valid-tip{
	display:none !important;
}

.sidebar .form_action .btn_primary {
    border: none;
    padding: 14px 45px;
	cursor:pointer
}

/* information */
.information_container {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
}

.information_item {
  display: flex;
  justify-content: space-between;
}

.information_item.reverse {
  flex-direction: row-reverse;
}

.information_head {
  font-size: 36px;
  line-height: 1.7;
  border-bottom: 3px solid;
  display: inline-flex;
  width: 100%;
}

.information_content.red .information_head {
  border-color: var(--secondary);
  color: var(--secondary);
}

.information_content.blue .information_head {
  border-color: var(--primary);
  color: var(--primary);
}

.information_body ul {
  list-style: none;
  margin-left: 30px;
}

.information_body ul li {
  position: relative;
  margin: 7px 0;
}

.information_body ul li:before {
  content: '';
  width: 8px;
  min-width: 8px;
  height: 8px;
  min-height: 8px;
  position: absolute;
  left: -15px;
  top: 8px;
  border-radius: 50%;
}

.information_content.red .information_body ul li:before {
  background-color: var(--secondary);
}

.information_content.blue .information_body ul li:before {
  background-color: var(--primary);
}

/* managers */
.managers {
  position: relative;
}

.managers_body {
  background-color: #f0f2f7;
}

.managers_row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

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

.managers_row:last-child .managers_wrap {
  border-bottom: 0;
}

.managers_row-1 .education:before,
.managers_row-3 .posts:before {
  content: '';
  display: block;
  width: 170px;
  height: 210px;
  background: linear-gradient(139.94deg, #ef5858 0%, #f78787 92.73%);
  position: absolute;
  right: 0;
  bottom: 0;
}

.managers_row-1:before,
.managers_row-2:before,
.managers_row-3:before {
  content: '';
  display: block;
  width: 280px;
  height: 260px;
  border: 1px solid #007fff;
  position: absolute;
}

.managers_row-1:before {
  top: 14px;
  right: 140px;
}

.managers_row-2:before {
  right: 290px;
  top: -30px;
}

.managers_row-2:after {
  content: '';
  display: block;
  width: 320px;
  height: 100px;
  border: 1px solid #007fff;
  position: absolute;
  bottom: -25px;
  left: 225px;
  z-index: 1;
}

.managers_row-3:before {
  bottom: 27px;
  right: 160px;
}

.managers_row-2 .posts:before {
  content: '';
  display: block;
  width: 170px;
  height: 210px;
  background: linear-gradient(139.94deg, #ef5858 0%, #f78787 92.73%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.managers_row-3 .education:before {
  content: '';
  display: block;
  width: 210px;
  height: 170px;
  background: linear-gradient(139.94deg, #ef5858 0%, #f78787 92.73%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.managers_wrap {
  width: calc(100% / 3);
  border: solid #007fff;
  border-width: 0 1px 1px 0;
  padding: 30px 20px 40px;
  position: relative;
}

.managers_single .managers_wrap:first-child {
  width: 35%;
}

.managers_single .managers_wrap:last-child {
  width: 65%;
}

.managers_wrap.education {
  background-color: #e4f3ff;
}

.managers_wrap.manager .managers_info {
  background-color: transparent;
}

.managers_wrap:nth-child(3n) {
  border-right: 0;
}

.managers_info {
  background-color: #fff;
  height: 100%;
  padding: 20px 10px 20px 15px;
  position: relative;
  z-index: 2;
}

.managers_info strong {
  color: var(--primary);
}

.managers_wrap.manager .managers_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0;
}

.manager_img {
  max-width: 200px;
  max-height: 200px;
  outline: 1px solid #fff;
  outline-offset: -7px;
}

.manager_name {
  position: absolute;
  bottom: 0;
  padding: 15px 20px;
  min-width: 300px;
  background: linear-gradient(138.65deg, rgba(2, 99, 178, 0.8) 7.86%, rgba(136, 203, 255, 0.8) 88.3%);
}

.managers_single .manager_name {
  bottom: -30px;
}

.manager_name {
  display: flex;
  flex-direction: column;
}

.manager_name span {
  font-weight: 600;
  color: #fff;
  font-size: 24px;
}

.manager_name .position {
  font-weight: 400;
  font-size: 14px;
}

.manager_contacts i {
  color: #0a1189;
  margin-right: 5px;
}

.manager_contacts a {
  font-weight: 600;
  color: var(--primary);
}

.manager_contacts a:hover {
  color: #0a1189;
}

.manager_contacts a:visited {
  color: var(--primary);
}

.manager_contacts-item {
  margin: 3px 0;
}

.managers_wrap .posts .managers_info {
  padding: 15px;
}

.posts .posts_head {
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
}

.managers_posts {
  list-style: none;
  margin-left: 30px;
}

.managers_posts li {
  position: relative;
  margin: 5px 0;
}

.managers_posts li:before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 8px;
}

.managers_posts li a {
  color: var(--font);
  text-decoration: underline;
}

.managers_posts li a:hover {
  text-decoration: none;
}

.managers_more {
  display: inline-flex;
  margin: 5px 0 0 15px;
}

.managers_content h2 {
  text-align: center;
}

.managers_grid {
  margin: 30px -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.managers_item {
  width: calc((100% / 3) - 45px);
  margin: 15px;
  padding: 10px;
}

.managers_card {
  border: 1px solid var(--primary);
  display: flex;
  flex-direction: column;
}

.managers_card .card_img {
  height: 200px;
}

.managers_card .card_img img {
  height: 100%;
  object-fit: cover;
}

.managers_card .card_content {
  padding: 10px 15px;
}

.managers_btn {
  position: absolute;
  width: 20px;
  height: 20px;
  color: var(--primary);
  font-size: 24px;
  top: calc(50% - 5px);
  z-index: 99;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.managers_btn:focus {
  outline: 0;
}

.managers_prev {
  left: 3px;
}

.managers_next {
  right: 3px;
}

/* contacts */
.contacts_container {
  padding: 40px 0;
}

.contacts_body {
  display: flex;
  align-items: center;
}

.contacts_list {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}

.contacts_item {
  width: 50%;
}

.contacts_sity {
  font-weight: 600;
  font-size: 24px;
}

.contacts_info {
  display: flex;
  padding: 0 25px 25px;
}

.contacts_icon {
  width: 24px;
  min-width: 24px;
  margin-top: 7px;
  margin-right: 10px;
}

.contacts_map {
  position: relative;
}

.contacts_marker {
  width: 15px;
  position: absolute;
}

.contacts_marker_ekb {
  left: 159px;
  bottom: 90px;
}

.contacts_marker_rnd {
  left: 27px;
  bottom: 67px;
}

.contacts_marker_chel {
  left: 156px;
  bottom: 74px;
}

.contacts_marker_sochi {
  left: 9px;
  bottom: 48px;
}

.contacts_marker_krdr {
  left: 12px;
  bottom: 57px;
}

.contacts_marker_vrng {
  left: 45px;
  bottom: 102px;
}

.contacts_marker_kazan {
  left: 109px;
  bottom: 103px;
}

.contacts_marker_blgd {
  left: 31px;
  bottom: 103px;
}

.contacts_marker_smr {
  left: 101px;
  bottom: 82px;
}

/* single */
.top_content-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}

.top_content .content_section {
  width: 67%;
}

.top_content .content_info {
  /* display: flex;
  justify-content: center; */
  margin-bottom: 20px;
}

.content_info .single_thumb {
  width: 320px;
  min-width: 320px;
  margin-right: 30px;
  float: left;
}

/* .content_info .single_text {
  flex-grow: 1;
} */

.content_info .single_text ul,
.content_info .single_text ol {
  padding-left: 35px;
  display: grid;
  margin-bottom: 20px;
}

.content_info .single_text ul {
  list-style: none;
}

.content_info .single_text ul li {
  position: relative;
}

.content_info .single_text ul li:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  top: 10px;
  left: -15px;
}

.top_content .single_tabs {
  width: 100%;
  margin-bottom: 50px;
}

.top_content .content_sidebar {
  width: 33%;
}

/* tabs */
.tabs_head ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 20px;
  border: solid #ccc;
  border-width: 1px 0;
}

.tabs_head ul li {
  cursor: pointer;
  flex-grow: 1;
  justify-content: center;
  text-align: center;
  margin: 5px;
  font-weight: 600;
  color: rgba(27, 32, 43, 0.5);
}

.tabs_head ul li.active {
  color: var(--primary);
}

.tabs_content {
  display: none;
}

.tabs_content.active {
  display: block;
}

.tabs_content ul {
  margin-bottom: 20px;
  margin-left: 45px;
  list-style: none;
}

.tabs_content ul li {
  position: relative;
}

.tabs_content ul li:before {
  content: '';
  position: absolute;
  left: -15px;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

/* accordeon */
.faq {
  margin-top: 20px;
}

.accordeon_question {
  background-color: #fff;
  padding: 5px 10px;
  color: var(--font);
  cursor: pointer;
}

.accordeon_item {
  margin-bottom: 10px;
}

.accordeon_question {
  position: relative;
  border: 1px solid var(--light);
  background-color: var(--light);
  padding: 15px;
}

.accordeon_question::after {
  content: '';
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border: solid var(--font);
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  transition: 0.3s;
}

.accordeon_question .h3 {
  margin: 0;
  text-align: left;
  font-size: 18px;
}

.accordeon_question:hover {
  background-color: var(--primary);
  color: #fff;
  transition: 0.3s;
}

.accordeon_item.showing .accordeon_question {
  background-color: #fff;
  color: var(--primary);
  border: none;
}

.accordeon_question:hover:after {
  border-color: #fff;
  transition: 0.3s;
}

.accordeon_item.showing .accordeon_question::after {
  transform: rotate(135deg);
  transition: 0.3s;
  border-color: var(--primary);
}

.accordeon_answer {
  background-color: #fff;
  padding: 15px 20px;
  display: none;
  text-align: left;
}

/* feature */
.features {
  background-color: var(--light);
}

.features_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 0;
}

.features_item {
  display: flex;
  align-items: flex-start;
}

.features_container .features_item {
  width: calc(25% - 20px);
  margin: 5px;
}

.features_icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.features_content {
  margin-left: 20px;
}

.features_content span {
  font-size: 36px;
  line-height: 1.2;
  color: var(--primary);
}

.features_content p {
  line-height: 1;
}

/* solution */
.solution {
  background-color: var(--primary);
}

.solution_container {
  padding: 40px 0;
}

.solution_head {
  display: flex;
  justify-content: center;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
}

.solution_heading ul {
  list-style: none;
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
}

.solution_heading ul li {
  width: 50%;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  padding: 15px 5px;
  color: #fff;
  transition: 0.3s;
}

.solution_heading ul li.active {
  background-color: #fff;
  color: var(--primary);
  transition: 0.3s;
}

.solution_wrap {
  display: none;
}

.solution_wrap.active {
  display: block;
}

.solution_row {
  display: flex;
  margin: 0 -5px;
}

.solution_item {
  width: 60%;
}

.solution_item-lg {
  width: 40%;
  overflow: hidden;
}

.solution_item-lg .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution_item-lg .card_content ul {
  list-style: none;
  margin-left: 30px;
}

.solution_item-lg .card_content ul li {
  margin: 5px 0;
  position: relative;
}

.solution_item-lg .card_content ul li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: -15px;
  width: 5px;
  height: 5px;
  background-color: var(--primary);
  border-radius: 50%;
}

.solution_item-lg .card_content h2 {
  margin-top: 0;
}

.solution .card {
  background-color: #fff;
  margin: 5px;
  height: 100%;
  padding: 20px;
  transition: 0.3s;
}

.solution .card.checked {
  background-color: #e4f3ff;
  transform: scale(1.02);
  transition: 0.3s;
}

.solution .card_row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.card_row .card {
  width: calc((100% / 3) - 10px);
  align-self: stretch;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card_action {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}

.card_bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 10px;
  margin: 5px 5px 0;
}

.card_head .h3 {
  margin: 0 0 5px;
  min-height: 50px;
  line-height: 1;
  font-size: 18px;
}

.card_body,
.card_content {
  font-size: 14px;
}

.card_price {
  margin-top: 10px;
}

.card_check {
  display: block;
}

.card_check input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.card_check label {
  position: relative;
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
}

.card_check label:before {
  content: '';
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin: 0 5px 3px 0;
}

.card_check input:checked + label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.card_check input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 8px;
  height: 15px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(38deg);
}

.card_check input:checked .card {
  background-color: red;
}

.bottom_info-content {
  padding: 50px 0;
}

.bottom_info-content h2,
.bottom_info-content h3 {
  font-weight: 600;
  color: var(--primary);
  margin: 15px 0;
  line-height: 1.62;
}

.bottom_info-content h2 {
  font-size: 36px;
}

.bottom_info-content h3 {
  font-size: 28px;
}

.bottom_info-content ul {
  list-style: none;
  padding-left: 30px;
  overflow: auto;
}

.bottom_info-content ul li {
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
}

.bottom_info-content figcaption {
  font-style: italic;
}

.bottom_info-content ul li:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  top: 8px;
  left: -20px;
}

.bottom_info-action {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

/* formalization */

.formalization {
  background-color: var(--light);
  margin-top: 10px;
  padding: 40px 0 50px;
}

.formalization_title {
  font-size: 36px;
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  color: var(--primary);
}

.formalization_item {
  margin-top: 25px;
}

.formalization_head {
  font-weight: 600;
  font-size: 24px;
  color: var(--font);
}

.formalization_content a {
  display: inline-flex;
  margin-left: 10px;
}

/* contacts page */
.contacts_page .contacts_list {
  width: 100%;
}

.contacts_page .contacts_item {
  width: 25%;
  padding: 20px;
}

.contacts_page .contacts_item .contacts_sity {
  cursor: pointer;
}

.contacts_page .contacts_item .contacts_sity:hover {
  color: var(--primary);
}

.contacts_page .contacts_info {
  padding: 0;
}

.contacts_page .contacts_mail.hidden {
  display: none;
}

.contacts_page .contacts_bottom .contacts_info a {
  color: #fff;
}

.contacts_bottom {
  display: flex;
}

.contacts_bottom .contacts_address {
  width: 40%;
  background-color: var(--primary);
  padding: 100px 0;
  display: flex;
  justify-content: flex-end;
}

.contacts_bottom .contacts_map {
  width: 60%;
}

.contacts_bottom .contacts_map > p,
.contacts_bottom .contacts_map #yamap0 + div {
  display: none;
}

.contacts_bottom .contacts_block {
  max-width: 260px;
  margin-right: 90px;
  color: #fff;
}

/* sidebar */
.widget-area {
  height: 100%;
}

.sidebar {
  margin-left: 10px;
  background-color: var(--light);
  padding: 30px 30px 40px;
  position: sticky;
  top: 20px;
  overflow: hidden;
}

.sidebar:before,
.sidebar:after {
  content: '';
  position: absolute;
  border: solid var(--primary);
  z-index: 0;
}

.sidebar:before {
  height: 240px;
  width: 140px;
  border-width: 1px 0 1px 1px;
  top: 70px;
  right: 0;
}

.sidebar:after {
  height: 180px;
  width: 200px;
  border-width: 1px 1px 1px 0;
  top: 90%;
  left: 0;
}

.sidebar_content {
  position: relative;
  z-index: 1;
}

.sidebar_title {
  font-weight: 600;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
}

.sidebar_info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 105px;
  margin-top: 25px;
  position: relative;
}

.sidebar_info .manager_img {
  width: 130px;
  height: 130px;
}

.sidebar_info .manager_name {
  min-width: inherit;
  bottom: -15px;
}

.sidebar_form {
  margin-top: 30px;
}

.sidebar_form .form_group {
  margin: 10px 0;
}

.sidebar_form .form_control {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.sidebar_form .form_captcha {
  margin: 20px 0;
}

.sidebar_form .form_action {
  display: flex;
  justify-content: center;
}

/* footer */
.footer {
  background-color: var(--light);
}

.footer_container {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}

.footer_head {
  font-size: 24px;
  color: rgba(27, 32, 43, 0.5);
  font-weight: 600;
  margin-bottom: 30px;
}

.footer_contacts {
  display: flex;
  flex-direction: column;
}

.footer_contacts a,
.footer_contacts span {
  color: var(--font);
  margin: 7px 0;
  display: inline-flex;
  align-items: center;
}

.copyrights{
	text-align:center;
}

.footer_contacts a:hover {
  text-decoration: underline;
}

.footer_contacts i {
  color: var(--primary);
  margin-right: 10px;
}

.footer_socials span {
  margin-right: 10px;
}

.footer_socials a {
  font-size: 18px;
  transition: 0.3s;
}

.footer_socials a:hover {
  text-decoration: none;
  transform: scale(1.2);
  transition: 0.3s;
}

.footer_socials .viber i {
  color: #8e24aa;
}

.footer_contacts .whatsapp i {
  color: #4caf50;
}

.footer_action {
  margin-top: 15px;
}

.footer_action .btn_primary {
  padding: 14px 49px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin: 5px 0;
}

.footer ul a {
  color: var(--font);
}

.footer ul a:hover {
  text-decoration: underline;
}

.footer_services li a {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
}

.footer_about li a {
  font-weight: 600;
  font-size: 18px;
}

/* categories */

/* category news */
.news_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px -15px 0;
}

.news_item {
  width: calc((100% / 3) - 30px);
  margin: 15px;
  display: flex;
  flex-direction: column;
}

.news_img {
  height: 200px;
}

.news_img img {
  height: 100%;
  object-fit: cover;
}

.news_meta {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.news_title {
  min-height: 70px;
}

.news_title h4 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.news_title a {
  color: var(--font);
  transition: 0.3s;
}

.news_title a:hover {
  color: var(--primary);
  transition: 0.3s;
}

/* page category */
.category_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 20px -15px;
}

.category_item {
  width: calc((100% / 3) - 30px);
  margin: 15px;
  padding: 20px;
}

.category_head {
  display: flex;
  flex-direction: column;
}

.category_img {
  width: 45px;
  min-width: 45px;
  height: 45px;
  display: block;
}

.category_head .h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--font);
  text-decoration: underline;
  transition: 0.3s;
  min-height: 60px;
}

.category_head .h3:hover {
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s;
}

.category_list {
  margin: 5px 0 5px 30px;
  list-style: none;
}

.category_list li {
  margin: 7px 0;
  position: relative;
}

.category_list li:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  margin-left: -20px;
  top: 6px;
}

.category_list li.hidden {
  display: none;
}

.category_list li a {
  color: var(--primary);
  transition: 0.3s;
}

.category_list li a:hover {
  color: var(--font);
  transition: 0.3s;
}

/* pagination */

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

.page-numbers {
  font-size: 18px;
  margin: 5px;
  color: var(--font);
  font-weight: 600;
}

.page-numbers:hover {
  color: var(--primary);
}

.page-numbers.current {
  color: var(--primary);
}

.page-numbers.next,
.page-numbers.prev {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  background-color: var(--light);
  margin: 0 40px;
}

/* modal */

.modal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.modal_content {
  max-width: 500px;
  margin: 10% auto 0;
  background-color: #fff;
  padding: 30px 40px;
  position: relative;
}

.modal_head {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.modal_head .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.modal_head .modal_title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
}

.modal_body form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal_body .form_group {
  margin: 15px 0;
  width: 100%;
}

.modal_body .form_control {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 5px 10px 5px 0;
  border-radius: 0;
  box-sizing: border-box;
  width: 100%;
}

.modal_body .form_control:focus {
  outline: 0;
  border-color: var(--primary);
}

.modal_body .form_area {
  height: 100px;
}

/* forms */
.form_hidden {
  display: none;
}

/* search */

.search_container {
  margin-bottom: 30px;
}

.search_list {
  list-style: none;
  margin-left: 30px;
}
.search_list .search_item {
  position: relative;
}

.search_list .search_item a {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.search_list .search_item a span {
  position: absolute;
  left: -25px;
}

.search_item .search_title {
  margin: 10px 0;
}

#scrollTop {
  position: fixed;
  right: 10px;
  bottom: 125px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  background-color: var(--light);
  transition: 0.3s;
}

#scrollTop:hover {
  color: var(--primary);
  box-shadow: -1px 6px 5px 0px rgba(0, 0, 0, 0.75);
  transition: 0.3s;
}

/* 404 */
.nofound {
  height: 700px;
  background-image: url('../images/404.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.nofound_container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.nofound_content {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nofound_content .btn_primary {
  margin-bottom: 20px;
}

/* register */
.register_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.register_content .form-registry {
  margin-top: 30px;
  width: 100%;
}

.register_content .form-registry .form-group {
  display: flex;
  align-items: center;
}

.register_content .reg_num,
.register_content .ph {
  font-weight: 600;
  color: var(--primary);
}

.register_content .form-registry .form-group input,
.register_content .form-registry .form-group select {
  margin-right: 15px;
  width: 100%;
}

.register_content .form-registry .img-loader {
  display: none !important;
}

.register_content .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  padding: 8px 30px;
  background: linear-gradient(139.94deg, #ef5858 0%, #f78787 92.73%);
}

.register_section {
  max-width: 700px;
  margin: 30px auto;
}

.register_list {
  list-style: none;
  padding-left: 30px;
}

.register_list li {
  position: relative;
}

.register_list li:before {
  content: '';
  position: absolute;
  top: 9px;
  left: -20px;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

.register_list li a {
  font-weight: 600;
}

/* accreditation */
.accreditation_container {
  margin: 15px -10px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.accreditation_item {
  width: calc(25% - 30px);
  margin: 10px;
  display: flex;
  flex-direction: column;
}

.accreditation_head {
  min-height: 60px;
  text-align: center;
  margin-top: 15px;
}

.accreditation_head .h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.accreditation_body {
  box-shadow: 0px 0px 10px rgba(57, 72, 125, 0.1);
  line-height: 0;
  flex-grow: 1;
}

.accreditation_body a {
  display: inline-flex;
  width: 100%;
  height: 100%;
}

.accreditation_body img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* overlay */
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9999999;
  display: none;
}

.overlay_container {
  width: 100%;
  max-width: 650px;
  margin: 2% auto;
  position: relative;
}

.overlay_close {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 22px;
  top: 0;
  right: -35px;
  background-color: var(--primary-hover);
}

.custom_ul1{
  margin-top: 130px;
}
@media screen and (max-width: 992px){
.custom_ul1{
margin-top: 150px;
}
	.bottom_nav .first_sub {
        padding-bottom: 0;
        width: calc(100% - 45px);
        transform: unset;
    }
}
@media screen and (max-width: 645px){
.custom_ul1{
margin-top: 90px;
}
}
@media screen and (max-width: 576px){
.custom_ul1{
margin-top: 0;
}
}

@media screen and (max-width: 992px) {
  .custom_ul {
    padding-left: 15px;
  }
}

@media screen and (max-width: 884px) {
  .custom_ul {
    padding-left: 0;
  }
}

/* media */
@media (max-width: 1200px) {
  .contact_sities {
    column-count: 2;
  }

  .manager_img {
    max-width: 180px;
    max-height: 180px;
  }

  .managers_single .managers_wrap:first-child {
    width: 45%;
  }

  .managers_single .managers_wrap:last-child {
    width: 55%;
  }
}

@media (max-width: 992px) {
  .header_top {
    display: none;
  }

  .header_middle {
    position: relative;
  }

  .middle_item-lg {
    display: none;
  }

  .header_contact {
    justify-content: space-around;
  }

  .bottom_container {
    position: static;
  }

  .bottom_nav nav {
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 999;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 0 20px 20px;
    overflow-x: hidden;
	overflow-y: auto;
    max-height: 93vh;
  }

  .bottom_nav .menu {
    flex-direction: column;
  }

  .bottom_nav .menu li a {
    width: calc(100% - 30px);
    padding: 5px 0;
  }

  .bottom_nav .menu > li > a:before {
    display: none;
  }

  .bottom_nav .first_sub,
  .bottom_nav .second_sub {
    position: relative;
  }

  .bottom_nav .first_sub {
    padding-bottom: 0;
    width: calc(100% - 45px);
  }

  .header_bottom {
    position: sticky;
    top: 0;
    z-index: 99999;
    background-color: #fff;
  }

  .bottom_nav li.menu-item-has-children > a:after {
    display: none;
  }

  .bottom_nav li.menu-item-has-children a i {
    position: absolute;
    right: -30px;
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }

  .header_logo .logo_name {
    display: none;
  }

  .header_logo {
    margin-right: 20px;
  }

  .first_sub li.menu-item-has-children:hover {
    background-color: transparent;
  }

  .first_sub li.menu-item-has-children:hover > a {
    color: var(--font);
  }

  .middle_item:not(.middle_item-lg) {
    margin-left: 0;
  }

  .bottom_nav .second_sub {
    left: 0;
    width: inherit;
    border-left: 0;
    background-color: transparent;
    height: 100%;
  }
  
  .bottom_nav .sub-menu li {
    padding: 5px 10px;
  }

  .burger {
    display: block;
  }

  .bottom_container {
    padding: 15px 0;
  }

  .bottom_action {
    display: block;
  }

  .hero_features {
    width: 325px;
    min-width: 325px;
  }

  .hero_slider {
    width: calc(100% - 325px);
  }

  .home_contact-form form {
    justify-content: center;
  }

  .home_contact-form .form_set {
    width: calc(50% - 20px);
  }

  .home_contact-form .form_action {
    justify-content: center;
  }

  .managers_row {
    flex-direction: column;
  }

  .managers_row .education,
  .managers_row .posts {
    order: 1;
  }

  .managers_wrap {
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .managers_info {
    flex-wrap: wrap;
  }

  .manager_name {
    width: 100%;
    position: relative;
  }

  .managers_single .managers_head {
    flex-direction: column;
  }

  .managers_single .managers_wrap:first-child,
  .managers_single .managers_wrap:last-child {
    width: 100%;
  }

  .managers_item {
    width: calc((100% / 2) - 30px);
  }

  .managers_btn {
    display: flex;
  }

  .contacts_body {
    flex-wrap: wrap;
  }

  .contacts_list {
    width: 100%;
  }

  .contacts_map {
    display: none;
  }

  .top_content .content_info {
    flex-direction: column;
    align-items: center;
  }

  .features_container .features_item {
    width: calc(33% - 20px);
  }

  .footer_container {
    flex-wrap: wrap;
  }

  .footer_item {
    width: 50%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer_head {
    margin-bottom: 0;
  }

  .bottom_search {
    margin-right: 15px;
  }

  .top_content-container {
    flex-direction: column;
  }

  .top_content .content_section,
  .top_content .content_sidebar {
    width: 100%;
  }

  .top_content .content_sidebar {
    max-width: 450px;
    margin: 20px auto;
  }

  .sidebar_info .manager_name {
    position: absolute;
  }

  .solution_row {
    flex-direction: column;
  }

  .solution_item {
    width: 100%;
  }

  .contacts_bottom .contacts_block {
    margin-right: 30px;
  }

  .contacts_page .contacts_item {
    width: calc(100% / 3);
  }

  .category_item {
    width: calc(50% - 30px);
  }

  .nofound {
    height: 550px;
  }

  .content_info .single_text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero_container {
    height: inherit;
    min-height: inherit;
  }

  .hero_slider {
    display: none;
  }

  .hero_features {
    width: 100%;
    min-width: inherit;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero_features .features_item {
    margin-left: 0;
    width: calc(50% - 20px);
    margin: 10px;
    min-width: 250px;
  }

  .features_container .features_item {
    width: calc(50% - 20px);
  }

  .home_contact-form .form_set {
    width: 100%;
    max-width: 400px;
    margin: 0;
  }

  .information_item,
  .information_item.information_item.reverse {
    flex-direction: column;
  }

  .solution_container {
    padding: 40px 0;
  }

  .card_row .card {
    width: calc(50% - 10px);
  }

  .bottom_info-content .alignleft,
  .bottom_info-content .alignright {
    float: none;
    margin: 20px auto;
  }

  .contacts_page .contacts_item {
    width: 50%;
  }

  .contacts_bottom {
    display: none;
  }

  .news_item {
    width: calc(50% - 30px);
  }

  .category_container {
    margin: 20px 0;
  }

  .category_item {
    width: 100%;
  }

  .nofound {
    height: 430px;
  }

  .nofound_content {
    margin-bottom: 40px;
  }

  .accreditation_item {
    width: calc(50% - 30px);
    margin: 10px;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero_container {
    max-height: inherit;
  }

  .features_container .features_item {
    width: 100%;
    max-width: 300px;
  }

  .logo.header_logo {
    max-width: 130px;
  }

  .footer_item {
    width: 100%;
    max-width: 260px;
    margin: 15px auto;
    align-items: flex-start;
  }

  .contacts_item {
    width: 100%;
    text-align: center;
  }

  .contacts_info {
    justify-content: center;
  }

  .contacts_icon {
    display: none;
  }

  .bottom_search {
    display: none;
  }

  .card_row .card {
    width: calc(100% - 10px);
  }

  .contacts_page .contacts_item {
    width: 100%;
  }

  .news_container {
    margin: 15px 0 0;
  }

  .news_item {
    width: 100%;
  }

  .managers_grid {
    margin: 30px 0;
  }

  .managers_item {
    width: 100%;
    max-width: 350px;
    margin: 15px auto;
  }

  .register_content .form-registry {
    width: 100%;
    margin-bottom: 30px;
  }

  .register_content .form-registry .form-group {
    flex-direction: column;
  }

  .register_content .form-registry .form-group input,
  .register_content .form-registry .form-group select {
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }

  .accreditation_container {
    margin: 15px 0;
  }

  .accreditation_item {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
  }

  .content_info .single_thumb {
    float: none;
    margin: 20px auto;
  }
}

@media (max-width: 425px) {
  .form_captcha {
    transform: scale(0.85);
  }

  .managers_info {
    flex-direction: column;
    align-items: center;
  }

  .manager_contacts {
    order: 1;
    margin-top: 15px;
  }

  .manager_name {
    min-width: inherit;
  }

  .manager_name span {
    font-size: 18px;
  }

  .sidebar_info {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }
  .sidebar_info .manager_name {
    position: relative;
  }

  .solution_heading ul li {
    min-width: inherit;
    text-align: center;
  }

  .btn_primary {
    padding: 10px;
  }

  .header_logo img {
    max-width: 80px;
  }

  .managers_single .manager_name {
    bottom: 0;
  }

  .nofound {
    height: 350px;
    background-position: top center;
  }

  .nofound_content {
    margin-bottom: 10px;
  }
}

span.show_more {
  text-decoration: none;
  color: var(--primary);
  cursor:pointer;
}

span.show_more:visited {
  color: var(--primary);
}

span.show_more:hover {
  color: var(--font);
  text-decoration: none;
}



.bottom_nav .second_sub::-webkit-scrollbar-track {
    background-color: transparent;
}

.bottom_nav .second_sub::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 50px;
    background-color: #0263b2;
    border: 5px solid #ffffff;
}

.bottom_nav .second_sub::-webkit-scrollbar-thumb:hover {
    background-color: #0263b2;
    border: 3px solid #ffffff;
}

.bottom_nav .second_sub::-webkit-scrollbar {
    width: 14px;
}