body, html {
  overflow-x: hidden !important;
}
* {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.services-wrap, .hiden-services.show {
  display: flex;
  flex-wrap: wrap;
}
.services-wrap .services-item-wrap, .hiden-services.show .services-item-wrap {
  width: 33.333%;
}
@media (max-width: 768px) {
  .services-wrap .services-item-wrap, .hiden-services.show .services-item-wrap {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .services-wrap .services-item-wrap, .hiden-services.show .services-item-wrap {
    width: 100%;
  }
}
.services-wrap .services-item-wrap a, .hiden-services.show .services-item-wrap a {
  display: flex;
  text-decoration: none;
  padding: 20px;
}
.services-wrap .services-item-wrap a .left, .hiden-services.show .services-item-wrap a .left {
  width: 80px;
  flex-shrink: 0;
  margin-right: 20px;
  filter: invert(48%) sepia(43%) saturate(600%) hue-rotate(186deg) brightness(83%) contrast(87%);
}
.services-wrap .services-item-wrap a .title, .hiden-services.show .services-item-wrap a .title {
  color: #5972b5;
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.services-wrap .services-item-wrap a .desc, .hiden-services.show .services-item-wrap a .desc {
  color: #666;
  line-height: 1.4;
}
.services-wrap .services-item-wrap a:hover, .hiden-services.show .services-item-wrap a:hover {
  background: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
.services-wrap .all-services, .hiden-services.show .all-services {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.services-wrap .all-services a, .hiden-services.show .all-services a {
  padding: 10px 20px;
  margin: 0 20px;
  border-radius: 4px;
  background: rgba(88, 113, 181, 0.05);
}
.services-wrap .all-services a:hover, .hiden-services.show .all-services a:hover {
  background: #5972b5;
  color: #fff;
}
.services-wrap .all-services:after, .hiden-services.show .all-services:after, .services-wrap .all-services:before, .hiden-services.show .all-services:before {
  content: '';
  display: block;
  width: 30%;
  height: 1px;
  background: rgba(88, 113, 181, 0.07);
}
.services-wrap .hiden-services, .hiden-services.show .hiden-services {
  display: none;
}
.services-wrap .hiden-services.show, .hiden-services.show .hiden-services.show {
  display: flex !important;
  flex-wrap: wrap;
}
.header-menu ul li {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.header-menu ul li a {
  padding: 10px 15px !important;
  border-radius: 6px;
}
.header-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
}
.header-menu ul li:after {
  content: '';
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.header-menu ul li:last-child:after {
  display: none;
}
.header-menu ul li.menu-item-has-children {
  display: block;
}
.kc__wrap {
  border: 1px solid #f1f4f8 !important;
  border-right: 1px solid #f1f4f8 !important;
  margin-bottom: 20px;
}
.kc__wrap .kc-title {
  padding: 20px;
  background: #f1f4f8;
  font-size: 23px;
  color: #333;
}
.kc__wrap ul.contents {
  padding: 20px;
}
.kc__wrap ul.contents li.sub {
  margin-left: 20px;
}
.kc__wrap ul.contents a {
  color: #333;
  line-height: 1.9;
}
.kc__wrap ul.contents a:hover {
  color: #5972b5;
}
.contents {
  list-style-type: none;
  counter-reset: list;
}
/* цвет чисел */
.contents li:before {
  color: #555;
}
/* уровень 0 */
.contents li.top {
  counter-increment: list;
  counter-reset: list1;
}
.contents li.top:before {
  content: counter(list) '. ';
}
/* уровень 1 */
.contents li.sub_1 {
  counter-increment: list1;
  counter-reset: list2;
}
.contents li.sub_1:before {
  content: counter(list) '.' counter(list1) '. ';
}
/* уровень 2 */
.contents li.sub_2 {
  counter-increment: list2;
}
.contents li.sub_2:before {
  content: counter(list) '.' counter(list1) '.' counter(list2) '. ';
}
a.kc__anchlink {
  color: #e2e2e2;
}
a.kc__anchlink:hover {
  color: #5972b5;
}
#post-content p {
  line-height: 1.7;
}
#post-content ul:not(.contents), #post-content ol:not(.contents) {
  border-right: 4px solid #5972b5;
}
#post-content ul:not(.contents) li, #post-content ol:not(.contents) li {
  line-height: 1.9;
}
#post-content ul:not(.contents) li {
  list-style: none;
  display: flex;
  align-items: center;
}
#post-content ul:not(.contents) li:before {
  content: '';
  height: 6px;
  width: 6px;
  border-radius: 50px;
  background: #5972b5;
  margin-right: 10px;
}
#post-content ol {
  list-style: none;
  counter-reset: my-awesome-counter;
}
#post-content ol li {
  counter-increment: my-awesome-counter;
  display: flex;
  align-items: center;
}
#post-content ol li:before {
  content: counter(my-awesome-counter);
  display: block;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #5972b5;
  text-align: center;
  line-height: 20px;
  margin-right: 10px;
  color: #fff;
  font-size: 12px;
}
#post-content h1, #post-content h2, #post-content h3, #post-content h4, #post-content h5, #post-content h6 {
  margin-top: 40px;
}
#post-content blockquote {
  margin: 20px 0px 20px 0px;
  padding: 20px;
  color: rgba(88, 113, 181, 0.7);
  background: #f1f4f8;
  position: relative;
  /*
   &:before{
   content: '\f10e';
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   display: block;
   font-size: 38px;
   color: #5972b5;
   position: absolute;
   top: -10px;
   left: 10px;
   }
   */
}
.lite-hook-wrap {
  margin: 20px 0;
  padding: 40px 20px;
  border: 1px solid #f1f4f8;
  text-align: center;
}
.lite-hook-wrap p {
  font-size: 18px;
  font-weight: 400;
}
.lite-hook-wrap p a {
  text-decoration: underline;
}
.lite-hook-wrap .action {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lite-hook-wrap .action a {
  background: #5972b5;
  padding: 15px 20px;
  color: #fff;
}
.lite-hook-wrap .action span {
  text-align: left;
  font-size: 12px;
  color: #666;
  line-height: 1.3;
  margin-left: 20px;
}
.tel-hook-wrap {
  margin: 20px 0;
  padding: 40px 20px;
  border: 1px solid #f1f4f8;
  text-align: center;
  background: #f1f4f8;
}
.tel-hook-wrap .hook-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
.tel-hook-wrap p {
  font-size: 18px;
  font-weight: 400;
}
.tel-hook-wrap p a {
  text-decoration: underline;
}
.elementor-widget-media-carousel .swiper-container {
  overflow: visible !important;
}
.elementor-widget-media-carousel .swiper-slide {
  opacity: 0.2;
}
.elementor-widget-media-carousel .swiper-slide.swiper-slide-active {
  box-shadow: 0px 0px 60px #d6daec;
  opacity: 1;
}
.doc-wrap .doc-cat {
  border: 1px solid #f1f4f8;
  margin-bottom: 20px;
}
.doc-wrap .doc-cat .cat-title {
  color: #333;
  font-size: 18px;
  background: #f1f4f8;
  padding: 20px;
}
.doc-wrap .doc-cat .cat-files {
  padding: 20px;
}
.doc-wrap .doc-cat .cat-files .file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.doc-wrap .doc-cat .cat-files .file-item a {
  display: inline-bloc;
  background: #f1f4f8;
  padding: 5px 15px;
}
.doc-wrap .doc-cat .cat-files .file-item a:hover {
  background: #5972b5;
  color: #fff;
}
.mailpoet_form input {
  width: 100%;
  padding: 15px !important;
  background: #3b518a;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
}
.mailpoet_form input::placeholder {
  color: #f1f4f8 !important;
}
.mailpoet_form input[type='submit'] {
  background: #738cce !important;
}
.mailpoet_form .mailpoet_form_columns .mailpoet_form_column:first-child {
  width: 60%;
}
#header-mobile-top {
  display: none;
}
@media (max-width: 460px) {
  #header-mobile-top {
    display: block;
  }
}
@media (max-width: 767px) {
  .elementor-posts .elementor-post {
    flex-direction: column !important;
  }
  .logo .elementor-image-box-wrapper {
    display: flex;
    align-items: center;
  }
  .logo .elementor-image-box-wrapper .elementor-image-box-img {
    margin: 0 20px 0 0 !important;
  }
}
