body {
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #2A2A2A;
}

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

a {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  color: #1c84cc;
}

h1 {
  font-size: 50px;
  position: relative;
  line-height: 54px;
  font-weight: 700;
}

h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
}

h2 span {
  color: #1c84cc;
}

h3 {
  font-size: 30px;
  line-height: 32px;
}

.page_404 {
  text-align: center;
}

.page_404 h1 {
  margin-bottom: 30px;
}

.description ul li {
  margin-bottom: 10px;
}

.section-title {
  border-bottom: 1px solid #cccccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          -moz-box-pack: justify;
       justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
  margin-bottom: 30px;
}

.section-title a {
  background: #cccccc;
  -webkit-border-radius: 5px;
          -moz-border-radius: 5px;
       border-radius: 5px;
  padding: 10px 15px;
  font-weight: 700;
  color: #2A2A2A;
}

.section-title a:hover {
  background: #1c84cc;
  color: #ffffff;
}

section {
  margin-bottom: 100px;
}

.btn-popup {
  display: block;
  padding: 10px;
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  background: #cccccc;
  color: #2A2A2A;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-popup:hover {
  color: #ffffff;
  background: #1c84cc;
}

.header {
  margin-bottom: 50px;
  background-image: url(../img/header_bg.jpg);
  background-position: center center;
  -webkit-background-size: cover;
          -moz-background-size: cover;
            -o-background-size: cover;
       background-size: cover;
  padding: 20px 0;
  color: #ffffff;
  position: relative;
}

.header.frontpage {
  margin-bottom: 100px;
}

.header-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  max-width: 100%;
  height: 90%;
  max-height: 100%;
}

.header-logo {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  max-width: 100%;
}

.header-menu {
  float: right;
  width: 70%;
}

.header-menu ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          -moz-box-pack: justify;
       justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
}

.header-menu ul li {
  display: block;
  position: relative;
}

.header-menu ul li a {
  padding: 5px;
  color: #ffffff;
  display: block;
  font-size: 18px;
  line-height: 20px;
}

.header-menu ul li a:hover {
  color: #1c84cc;
}

.header-menu ul li .sub-menu {
  display: none;
  position: absolute;
  border: 1px solid #cccccc;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  top: 30px;
  background: #ffffff;
  width: 200px;
  overflow: hidden;
  z-index: 3;
}

.header-menu ul li .sub-menu.active {
  display: block;
}

.header-menu ul li .sub-menu li {
  display: block;
}

.header-menu ul li .sub-menu li:last-child a {
  border-bottom: none;
}

.header-menu ul li .sub-menu li a {
  display: block;
  font-size: 16px;
  line-height: 18px;
  padding: 10px;
  font-weight: 500;
  color: #2A2A2A;
  border-bottom: 1px solid #cccccc;
}

.header-menu ul li .sub-menu li a:hover {
  background: #1c84cc;
  color: #ffffff;
}

.header-menu ul li:hover .sub-menu {
  display: block;
}

.header h1 {
  margin: 280px 0;
}

.header h1 .blue {
  color: #1c84cc;
}

.header h1 span:nth-child(2) {
  font-size: 22px;
  font-weight: 500;
  display: block;
  line-height: 24px;
  margin: 30px 0;
}

.title {
  text-align: center;
  margin-bottom: 50px;
}

.service-page {
  margin-bottom: 30px;
}

.service-block {
  margin-top: 50px;
  position: relative;
  display: block;
}

.service-block img {
  position: absolute;
  width: 80%;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
            -o-transform: translateX(-50%);
       transform: translateX(-50%);
  z-index: 2;
}

.service-block_cart {
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  overflow: hidden;
  background: #2A2A2A;
  position: relative;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
          -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
       box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.service-block_cart:before {
  content: '';
  position: absolute;
  top: -30%;
  right: 1px;
  width: 250px;
  height: 250px;
  background: #1c84cc;
  -webkit-border-radius: 100%;
          -moz-border-radius: 100%;
       border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 0;
}

.service-block_cart-title {
  font-size: 22px;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
  margin: 150px 0 30px;
  position: relative;
}

.service-block:hover .service-block_cart:before {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
}

.case .slider__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          -moz-box-flex: 0;
       flex: 0 0 50%;
  max-width: 50%;
}

.case .btn-popup {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 30px auto 0 auto;
}

.case .slider__item .case-slider {
  margin: 0 10px;
}

.case-block {
  margin-bottom: 30px;
}

.case-slider, .case-block {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  height: 250px;
}

.case-slider img, .case-block img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}

.case-slider_title, .case-block_title {
  padding: 25px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          -moz-box-pack: center;
       justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  opacity: 1;
  color: #ffffff;
}

.case-slider_title:hover, .case-block_title:hover {
  opacity: 0;
}

.example .slider__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.3333333%;
      -ms-flex: 0 0 33.3333333%;
          -moz-box-flex: 0;
       flex: 0 0 33.3333333%;
  max-width: 33.3333333%;
}

.example-slider {
  margin: 0 10px;
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  height: 250px;
}

.example-slider img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}

.example-slider_title {
  padding: 25px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          -moz-box-pack: center;
       justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  opacity: 1;
  color: #ffffff;
}

.example-slider_title:hover {
  opacity: 0;
}

.review .slider__item,
.document .slider__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333333%;
      -ms-flex: 0 0 33.33333333%;
          -moz-box-flex: 0;
       flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.review .slider__item .review-block,
.document .slider__item .document-block {
  margin: 0 10px;
}

.review-block {
  background: #2A2A2A;
  color: #ffffff;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  padding: 30px 20px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
       box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 18px;
}

.review-block_author {
  font-weight: 700;
  text-align: right;
  margin-top: 15px;
}

.news-blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          -moz-box-pack: justify;
       justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.news-blocks a {
  width: 48%;
  display: block;
  margin: 0 0 30px;
  height: 250px;
}

.news-text #toc_container {
  width: 100%;
  border: none;
}

.news-text #toc_container p.toc_title {
  text-align: left;
  background: #2A2A2A;
  color: #ffffff;
  line-height: 40px;
  padding-left: 20px;
  font-size: 18px;
  position: relative;
}

.news-text #toc_container p.toc_title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #1c84cc;
  width: 10px;
}

.news-text #toc_container ul.toc_list li {
  padding: 5px 0;
}

.news-text #toc_container ul.toc_list li a {
  color: #2A2A2A;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px dashed #2A2A2A;
}

.news-text #toc_container ul.toc_list li a:hover {
  color: #1c84cc;
  border-bottom: 1px dashed #1c84cc;
}

.news-text #toc_container ul.toc_list li ul {
  padding-top: 10px;
}

.news-text blockquote {
  background: #2A2A2A;
  color: #ffffff;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  line-height: 18px;
}

.news-text blockquote p {
  margin: 0;
}

.news-text h2, .news-text h3 {
  margin-bottom: 1rem;
}

.news-text ul li {
  margin-bottom: 10px;
}

.news-text ol li {
  margin-bottom: 10px;
}

.news-share {
  margin-top: 30px;
}

.news-share .ya-share2__item {
  margin-right: 10px !important;
}

.news-share .ya-share2__item .ya-share2__badge .ya-share2__icon {
  -webkit-background-size: 30px 30px !important;
          -moz-background-size: 30px 30px !important;
            -o-background-size: 30px 30px !important;
       background-size: 30px 30px !important;
  height: 36px;
  width: 36px;
}

.news-share .ya-share2__item:hover .ya-share2__badge {
  background: #1c84cc;
}

.news-author {
  margin-top: 30px;
}

.news-author_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
  margin-bottom: 20px;
}

.news-author_block-img {
  width: 100px;
  -webkit-border-radius: 100%;
          -moz-border-radius: 100%;
       border-radius: 100%;
  height: 100px;
  overflow: hidden;
}

.news-author_block-title {
  margin-left: 30px;
}

.news nav {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          -moz-box-pack: center;
       justify-content: center;
}

.news nav h2 {
  display: none;
}

.news nav .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
}

.news nav a {
  font-size: 16px;
  color: #2A2A2A;
  line-height: 28px;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  background: #cccccc;
  margin: 0 7px;
  width: 28px;
  text-align: center;
}

.news nav a:hover {
  background: #1c84cc;
  color: #ffffff;
}

.news nav span {
  font-size: 16px;
  color: #2A2A2A;
  line-height: 28px;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  background: #cccccc;
  margin: 0 7px;
  width: 28px;
  text-align: center;
}

.news nav span.current {
  background: #1C84C9;
  color: #ffffff;
}

.news .sidebar h3 {
  margin-bottom: 20px;
}

.news .sidebar ul {
  border: 1px solid #cccccc;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.news .sidebar ul li {
  display: block;
}

.news .sidebar ul li:last-child a {
  border-bottom: none;
}

.news .sidebar ul li a {
  display: block;
  font-size: 16px;
  line-height: 18px;
  padding: 5px;
  color: #2A2A2A;
  padding: 15px 20px;
  border-bottom: 1px solid #cccccc;
}

.news .sidebar ul li a:hover {
  background: #1c84cc;
  color: #ffffff;
}

.news .sidebar ul li a[aria-current=page] {
  background: #1C84C9;
  color: #ffffff;
}

.news-block {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  margin: 15px 0;
  height: 350px;
}

.news-block img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}

.news-block_title {
  padding: 25px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          -moz-box-pack: center;
       justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  opacity: 1;
  color: #ffffff;
}

.news-block_title:hover {
  opacity: 0;
}

.video-single h2 {
  margin-bottom: 50px;
  text-align: center;
}

.video-single_block {
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
}

.video-single_block iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.video .slider__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333333%;
      -ms-flex: 0 0 33.333333333%;
          -moz-box-flex: 0;
       flex: 0 0 33.333333333%;
  max-width: 33.333333333%;
}

.video .slider__item .video-slider {
  margin: 0 10px;
}

.video-block {
  margin-bottom: 30px;
}

.video-slider, .video-block {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  height: 250px;
}

.video-slider img, .video-block img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}

.video-slider_title, .video-block_title {
  padding: 25px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          -moz-box-pack: center;
       justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  opacity: 1;
  color: #ffffff;
}

.video-slider_title:hover, .video-block_title:hover {
  opacity: 0;
}

.about {
  overflow: hidden;
}

.about h2 {
  margin-bottom: 50px;
}

.about-img {
  width: 100%;
  margin-top: 30px;
}

.about-img_bg {
  position: relative;
}

.about-img_bg:before {
  content: '';
  width: 100%;
  height: 100%;
  z-index: -2;
  bottom: 0;
  left: 50%;
  position: absolute;
  background: #2A2A2A;
  -webkit-border-radius: 20px;
          -moz-border-radius: 20px;
       border-radius: 20px;
}

.about-img_bg:after {
  content: '';
  width: 100%;
  height: 40%;
  z-index: -1;
  top: 60%;
  left: 70%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
       transform: translateY(-50%);
  position: absolute;
  background: #1c84cc;
}

.about-title {
  color: #1c84cc;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-descr ul li {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px;
}

.about-descr ul li::marker {
  color: #1c84cc;
}

.form h2 {
  text-align: center;
  margin-bottom: 30px;
}

.form-block {
  padding: 50px 25px;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  background: #2A2A2A;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
          -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
       box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.form-block form {
  margin: 0;
}

.form-block form p {
  margin: 0;
}

.form-block form input {
  padding: 10px;
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  outline: none;
  background: #ffffff;
  color: #2A2A2A;
  margin-bottom: 20px;
  border: 0;
}

.form-block form input[type=submit] {
  background: #cccccc;
  margin-bottom: 0;
}

.form-block form input[type=submit]:hover {
  color: #ffffff;
  background: #1c84cc;
}

.form-block form textarea {
  padding: 10px;
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  outline: none;
  background: #ffffff;
  color: #2A2A2A;
  margin-bottom: 20px;
  height: 66px;
  border: 0;
}

.form-block form .ajax-loader {
  display: none;
}

.steps .step {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  margin: 15px 0;
  height: 150px;
  background: #1c84cc;
}

.steps .step img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}

.steps .step-block {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-align: center;
}

.steps .step-block_title {
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
            -o-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 90%;
  height: auto;
  font-size: 18px;
  line-height: 20px;
}

.steps .step-block_descr {
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
            -o-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 90%;
  height: auto;
  font-size: 16px;
  line-height: 18px;
}

.faq-block {
  color: #2A2A2A;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.3);
          -moz-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.3);
       box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
}

.faq-block_answer {
  height: 0;
  opacity: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 16px;
  line-height: 18px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.faq-block_question {
  padding: 15px;
  padding-right: 25px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-block_question span {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          -moz-transform: translateY(-50%) rotate(45deg);
            -o-transform: translateY(-50%) rotate(45deg);
       transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.faq-block_question.active span {
  -webkit-transform: translateY(-50%) rotate(-135deg);
      -ms-transform: translateY(-50%) rotate(-135deg);
          -moz-transform: translateY(-50%) rotate(-135deg);
            -o-transform: translateY(-50%) rotate(-135deg);
       transform: translateY(-50%) rotate(-135deg);
}

.faq-block_question.active + .faq-block_answer {
  height: auto;
  opacity: 1;
  padding: 15px;
}

.service-promotion .promotion {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  margin: 15px 0;
  height: 250px;
}

.service-promotion .promotion img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}

.service-promotion .promotion-block {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
}

.service-promotion .promotion-block:hover {
  opacity: 0;
}

.service-promotion .promotion-block_title {
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
            -o-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 90%;
  height: auto;
}

.service-promotion .promotion-block_descr {
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
            -o-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 90%;
  height: auto;
}

.service-promotion .promotion .btn-popup {
  position: absolute;
  width: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
            -o-transform: translateX(-50%);
       transform: translateX(-50%);
  bottom: 30px;
  z-index: 1;
}

.footer {
  background: #2A2A2A;
  color: #ffffff;
  padding: 50px 0 20px;
}

.footer-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
  margin-top: 20px;
}

.footer-social a {
  display: block;
  margin: 0 5px;
  font-size: 22px;
  color: #ffffff;
}

.footer-social a:hover {
  color: #1c84cc;
}

.footer-menus {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          -moz-box-pack: space-evenly;
       justify-content: space-evenly;
}

.footer-menu_title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  display: block;
}

.footer-menu ul li a {
  padding: 5px 0;
  color: #ffffff;
  display: block;
}

.footer-menu ul li a:hover {
  color: #1c84cc;
}

.footer-copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100;
}

.popup-blocks {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 25px;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  max-width: 600px;
  width: 90%;
}

.popup-blocks_block {
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
}

.popup-blocks_block iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.popup-blocks h2 {
  margin-bottom: 30px;
}

.popup-blocks_close {
  cursor: pointer;
  position: absolute;
  top: -30px;
  right: -5%;
  font-size: 52px;
  color: white;
  color: #ffffff;
}

.popup-blocks_close:hover {
  color: #1c84cc;
}

.popup form {
  margin-bottom: 0;
}

.popup form .wpcf7-response-output {
  color: #ffffff;
}

.popup form > p {
  margin-bottom: 0;
}

.popup form > p br {
  display: none;
}

.popup form > p .ajax-loader {
  display: none;
}

.popup form input {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  -webkit-border-radius: 7px;
          -moz-border-radius: 7px;
       border-radius: 7px;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  color: #cccccc;
  font-size: 16px;
  line-height: 20px;
  padding: 15px;
  outline: none;
}

.popup form input.btn {
  font-size: 18px;
  line-height: 20px;
  padding: 10px 35px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-border-radius: 30px;
          -moz-border-radius: 30px;
       border-radius: 30px;
  color: #ffffff;
  background-color: #ad0909;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  width: 100%;
  border: none;
  margin-bottom: 0;
}

.review-all .review-block {
  margin-bottom: 20px;
}

.breadcrumbs {
  margin: 10px 0 30px 20px;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -moz-box-align: center;
       align-items: center;
}

.breadcrumbs a {
  text-decoration: underline;
  color: #2A2A2A;
}

.breadcrumbs .breadcrumbs-title {
  font-weight: 500;
}

.breadcrumbs .breadcrumbs-symb {
  margin: 0 5px;
}

.comments-form {
  text-align: center;
}

.comments-form .comment-notes {
  display: none;
}

.comments-form .comment-form-comment label {
  display: none;
}

.comments-form textarea {
  width: 100%;
  max-width: 500px;
}

.comments-form #submit {
  padding: 10px;
  width: 100%;
  max-width: 500px;
  font-size: 18px;
  line-height: 22px;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  background: #cccccc;
  color: #2A2A2A;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  outline: none;
  border: none;
}

.comments-form #submit:hover {
  color: #ffffff;
  background: #1c84cc;
}

.comments-list li {
  font-size: 16px;
  display: block;
  padding: 25px;
  -webkit-border-radius: 10px;
          -moz-border-radius: 10px;
       border-radius: 10px;
  background: #cccccc;
  margin: 15px 0;
}

.comments-list li .comment-author {
  margin-bottom: 15px;
}

.comments-list li .reply {
  text-align: right;
}

@media (max-width: 992px) {
  h1 {
    font-size: 40px;
    line-height: 44px;
  }
  h2 {
    font-size: 28px;
    line-height: 32px;
  }
  h3 {
    font-size: 26px;
    line-height: 28px;
  }
  section {
    margin-bottom: 50px;
  }
  .header {
    margin-bottom: 50px;
  }
  .header-menu {
    width: 100%;
    float: left;
    position: relative;
  }
  .header-menu ul {
    width: 100%;
  }
  .header h1 {
    margin: 150px 0;
  }
  .header.frontpage {
    margin-bottom: 50px;
  }
  .service-block {
    margin-bottom: 30px;
  }
  .case .slider__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            -moz-box-flex: 0;
         flex: 0 0 100%;
    max-width: 100%;
  }
  .case .slider__item .case-slider {
    margin: 0;
  }
  .review .slider__item,
	.document .slider__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            -moz-box-flex: 0;
         flex: 0 0 50%;
    max-width: 50%;
  }
  .review-block {
    margin-bottom: 30px;
  }
  .news-blocks a {
    width: 100%;
  }
  .video .slider__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            -moz-box-flex: 0;
         flex: 0 0 50%;
    max-width: 50%;
  }
  .example .slider__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            -moz-box-flex: 0;
         flex: 0 0 50%;
    max-width: 50%;
  }
  .service-create_img {
    margin-bottom: 30px;
  }
  .review-all .review-blocks {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 36px;
  }
  h2 {
    font-size: 28px;
    line-height: 32px;
  }
  h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .header-img {
    display: none;
  }
  .header-mobile {
    position: relative;
    width: 40px;
    height: 40px;
  }
  .header-mobile span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
              -o-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
    width: 32px;
    height: 2px;
    -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
         border-radius: 10px;
    background: #1c84cc;
  }
  .header-mobile span:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
         border-radius: 10px;
    background: #1c84cc;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header-mobile span:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
         border-radius: 10px;
    background: #1c84cc;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header-mobile.active span {
    background: transparent;
  }
  .header-mobile.active span:before {
    top: 0;
    left: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
              -o-transform: rotate(45deg);
         transform: rotate(45deg);
    background: #1C84C9;
  }
  .header-mobile.active span:after {
    top: 0;
    left: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
              -o-transform: rotate(-45deg);
         transform: rotate(-45deg);
    background: #1C84C9;
  }
  .header-menu {
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -11111;
  }
  .header-menu.active {
    margin-top: 20px;
    opacity: 1;
    height: auto;
    z-index: 1;
    width: 100%;
  }
  .header h1 {
    margin: 30px 0;
    text-align: center;
  }
  .header.frontpage h1 {
    margin: 30px 0;
  }
  .service-block {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .video .slider__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            -moz-box-flex: 0;
         flex: 0 0 100%;
    max-width: 100%;
  }
  .video .slider__item .video-slider {
    margin: 0;
  }
  .example .slider__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            -moz-box-flex: 0;
         flex: 0 0 100%;
    max-width: 100%;
  }
  .example .slider__item .video-slider {
    margin: 0;
  }
  .review .slider__item,
	.document .slider__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            -moz-box-flex: 0;
         flex: 0 0 100%;
    max-width: 100%;
  }
  .review .slider__item .review-block,
	.document .slider__item .document-block {
		margin: 0;
	}
  .about h2 {
    margin-bottom: 30px;
  }
  .about-img_bg:before {
    display: none;
  }
  .about-img_bg:after {
    display: none;
  }
  .about-title {
    text-align: center;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-social {
    margin-bottom: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            -moz-box-pack: center;
         justify-content: center;
  }
  .footer-menus {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            -moz-box-pack: justify;
         justify-content: space-between;
  }
  .video-single h2 {
    margin-bottom: 30px;
  }
  .title {
    margin-bottom: 30px;
  }
  .news .sidebar {
    margin-bottom: 30px;
  }
  .news .sidebar h3 {
    text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 24px;
    line-height: 28px;
  }
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
  section {
    margin-bottom: 30px;
  }
  .breadcrumbs {
    margin-bottom: 30px;
  }
  .header {
    margin-bottom: 30px;
  }
  .header.frontpage {
    margin-bottom: 30px;
  }
  .header h1 span:nth-child(2) {
    font-size: 20px;
    line-height: 20px;
    margin: 20px 0;
  }
  .header-menu {
    text-align: center;
  }
  .header-menu ul {
    display: block;
  }
  .header-menu ul li a {
    display: block;
    padding: 10px;
  }
  .header-menu ul li .sub-menu {
    position: relative;
    top: 0;
    width: auto;
    background: transparent;
    border: none;
  }
  .header-menu ul li .sub-menu li a {
    color: #ffffff;
    font-weight: 400;
    border: none;
  }
  .about-decr {
    font-size: 16px;
    line-height: 18px;
  }
  .service-promotion .promotion {
    height: 200px;
  }
  .service-promotion .promotion-block_descr {
    top: 70px;
  }
  .review-all .review-blocks {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
  .footer-menu {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer-menus {
    display: block;
  }
  .footer-menu-title {
    margin-bottom: 10px;
  }
  .footer-copyright {
    margin-top: 0;
  }
  .video .slider__item .video-slider,
  .video-block,
  .news-block,
  .case .slider__item .case-slider,
  .case-block {
    height: 200px;
  }
  .video-block,
  .case-block {
    margin-bottom: 20px;
  }
	.case .btn-popup {
		margin-bottom: 20px;
	}
}