@font-face {
  font-family: "Regular";
  src: url(../fonts/Montserrat/Montserrat-Regular.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "Medium";
  src: url(../fonts/Montserrat/Montserrat-Medium.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "Bold";
  src: url(../fonts/Montserrat/Montserrat-Bold.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "SemiBold";
  src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "ArialBlack";
  src: url(../fonts/Arial/ArialBlack.ttf);
  font-weight: normal;
}
* {
  font-size: 1rem;
  box-sizing: border-box;
  color: #23252A;
  font-family: "Regular", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}

p {
  margin-bottom: 0;
}

.header-big {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 30px;
  height: 80px;
}
.header-big h1,
.header-big h2,
.header-big h3,
.header-big h4,
.header-big h5,
.header-big h6 {
  font-size: 1.5rem;
  font-family: "ArialBlack", sans-serif;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.header-big span {
  font-family: "ArialBlack", sans-serif;
  font-size: 6rem;
  line-height: 6rem;
  color: rgba(113, 187, 255, 0.15);
  white-space: nowrap;
  position: absolute;
  left: 10%;
  height: 80px;
  top: 0;
  text-transform: uppercase;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.container {
  max-width: 1260px;
}

body {
  background-color: #fff;
}

.button {
  text-decoration: none;
  width: 300px;
  height: 60px;
  border-radius: 40px;
  background-color: #477FD1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid #477FD1;
  color: #fff;
  font-size: 1.25rem;
  font-family: "Medium", sans-serif;
  cursor: pointer;
  transition: 0.3s all ease;
}
.button:hover {
  background-color: transparent;
  color: #477FD1;
  transition: 0.3s all ease;
}
.button.button-sm {
  min-width: 140px;
  width: auto;
  padding: 0 10px;
  height: 40px;
  border-radius: 20px;
  font-size: 1rem;
}

header {
  position: relative;
  height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 3;
  transition: 0.3s all ease;
}
header.fixed {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  background-color: #fff;
  transition: 0.3s all ease;
  height: auto;
  box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
}
header nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
header nav a.logo {
  width: 50px;
  height: 40px;
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
header nav ul {
  padding: 0;
  margin: 0;
  height: 40px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-left: 35px;
}
header nav ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: relative;
  margin-right: 30px;
}
header nav ul li a {
  color: #23252A;
  text-decoration: none;
  transition: 0.3s all ease;
  font-family: "Medium", sans-serif;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  align-items: center;
  font-size: 1rem;
}
header nav ul li a.root-item-selected {
  color: #477FD1;
}
header nav ul li a:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
header nav ul li.sub {
  position: relative;
}
header nav ul li.sub a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
header nav ul li.sub a::after {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  margin-left: 5px;
  background-image: url(../icons/01-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
header nav ul li.sub ul {
  padding: 0;
  display: block;
  display: none;
  position: absolute;
  width: 200px;
  background-color: #fff;
  height: auto;
  margin-left: 0;
  left: 0;
  top: 40px;
  padding: 10px;
  border: 1px solid rgba(35, 37, 42, 0.1);
  border-radius: 5px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
header nav ul li.sub ul li {
  margin-bottom: 15px;
}
header nav ul li.sub ul li:last-child {
  margin-bottom: 0;
}
header nav ul li.sub ul a {
  font-size: 1rem;
}
header nav ul li.sub ul a:after {
  display: none;
}
header nav ul li.sub:hover ul {
  display: block;
}
header nav a.phone {
  display: flex;
  margin-left: auto;
  text-decoration: none;
  color: #23252A;
  font-family: "Medium", sans-serif;
  font-size: 1.125rem;
  margin-right: 30px;
  transition: 0.3s all ease;
}
header nav a.phone:hover {
  color: #477FD1;
}

.main-page-main {
  background-image: url(../img/01-back-gex.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: inherit;
  padding-top: 95px;
  margin-top: -60px;
  position: relative;
}
.main-page-main .subline {
  position: absolute;
  top: 0;
  left: 58%;
  width: 350px;
  height: 100%;
  border-left: 1px solid rgba(71, 127, 209, 0.2);
  border-right: 1px solid rgba(71, 127, 209, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
}
.main-page-main .line {
  position: absolute;
  width: 100%;
  height: calc(100% - 180px);
  left: 0;
  top: 180px;
  background-image: url(../img/02-lines.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: inherit;
}
.main-page-main .main-slider {
  position: relative;
  padding-bottom: 70px;
}
.main-page-main .main-slider .first-image,
.main-page-main .main-slider .second-image,
.main-page-main .main-slider .third-image,
.main-page-main .main-slider .fourth-image {
  width: 100%;
  max-width: 550px;
  height: 450px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.main-page-main .main-slider .first-image {
  background-image: url(../img/slide-01.svg);
}
.main-page-main .main-slider .second-image {
  background-image: url(../img/slide-02.svg);
}
.main-page-main .main-slider .third-image {
  background-image: url(../img/slide-03.svg);
}
.main-page-main .main-slider .fourth-image {
  background-image: url(../img/slide-04.svg);
}
.main-page-main .main-slider h1,
.main-page-main .main-slider h2 {
  position: relative;
  width: 100%;
  z-index: 2;
  max-width: 700px;
  font-weight: normal;
  font-family: "ArialBlack", sans-serif;
  font-size: 1.5rem;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.main-page-main .main-slider p {
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  font-size: 1.125rem;
  font-family: "Regular", sans-serif;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.875rem;
  height: 90px;
}
.main-page-main .main-slider .button {
  margin: 0 auto;
  position: relative;
  width: 250px;
}
.main-page-main .main-slider .button::after {
  content: "";
  display: block;
  width: 250px;
  height: 80px;
  position: absolute;
  left: 40px;
  top: 40px;
  background-image: url(../icons/03-sub-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.main-page-main .main-slider .button.button-addon .inner {
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  border-radius: 40px;
  width: 300px;
  position: relative;
}
.main-page-main .main-slider .button.button-addon .inner span {
  position: relative;
  width: 300px;
  display: flex;
  height: 80px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.563rem;
  color: #fff;
  transition: 0.5s all ease;
}
.main-page-main .main-slider .button.button-addon .inner .animation {
  width: 300px;
  height: 80px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: 0.5s all ease;
}
.main-page-main .main-slider .button.button-addon:hover .inner span,
.main-page-main .main-slider .button.button-addon:hover .inner .animation {
  color: #23252A;
  transition: 0.5s all ease;
  left: -50px;
}
.main-page-main .main-slider .carousel-item {
  padding-bottom: 40px;
}
.main-page-main .main-slider .carousel-control-prev .carousel-control-prev-icon {
  border: 1px solid #23252A;
  background-image: url(../icons/02-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  border-radius: 25px;
  width: 50px;
  height: 50px;
}
.main-page-main .main-slider .carousel-control-next .carousel-control-next-icon {
  border: 1px solid #23252A;
  background-image: url(../icons/02-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  transform: rotate(180deg);
  border-radius: 25px;
  width: 50px;
  height: 50px;
}

.offer {
  background-color: #477FD1;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  padding: 50px 0;
  position: relative;
}
.offer h2 {
  font-size: 1.5rem;
  color: #fff;
  width: 750px;
  font-family: "ArialBlack", sans-serif;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.offer p {
  font-size: 1rem;
  line-height: 1.75rem;
  width: 100%;
  max-width: 660px;
  color: #fff;
  margin-bottom: 20px;
}

.sub-offer {
  background-color: #E4EEF8;
  padding: 50px 0;
  border-radius: 50px;
  background-image: url(../img/07-gex.svg);
  background-repeat: no-repeat;
  background-position: top right;
  position: relative;
}
.sub-offer__line {
  position: relative;
}
.sub-offer .image {
  position: absolute;
  width: 500px;
  height: 550px;
  background-image: url(../img/frame-auto.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  right: 0;
  top: -500px;
}
.sub-offer .icons {
  width: 100%;
  max-width: 1050px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.sub-offer .icons .item {
  width: 235px;
}
.sub-offer .icons .item.product p {
  font-size: 0.85rem;
  text-align: center;
  font-family: "Regular", sans-serif;
  margin: 0;
}
.sub-offer .icons .item.product .icon.first {
  background-image: url(../icons/55-icon-1.svg);
}
.sub-offer .icons .item.product .icon.second {
  background-image: url(../icons/55-icon-2.svg);
}
.sub-offer .icons .item.product .icon.third {
  background-image: url(../icons/55-icon-3.svg);
}
.sub-offer .icons .item.product .icon.fourth {
  background-image: url(../icons/55-icon-4.svg);
}
.sub-offer .icons .item p {
  margin: 0 auto;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  text-align: center;
  margin-bottom: 10px;
  height: 45px;
  line-height: normal;
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-offer .icons .item span {
  display: flex;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  font-size: 0.875rem;
  font-family: "Regular", sans-serif;
}
.sub-offer .icons .item .icon {
  width: 60px;
  height: 60px;
  border-radius: 40px;
  background-color: #477FD1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin: 0 auto;
  margin-bottom: 20px;
}
.sub-offer .icons .item .icon.first {
  background-image: url(../icons/54-icon-1.svg);
}
.sub-offer .icons .item .icon.second {
  background-image: url(../icons/54-icon-2.svg);
}
.sub-offer .icons .item .icon.third {
  background-image: url(../icons/54-icon-3.svg);
}
.sub-offer .icons .item .icon.fourth {
  background-image: url(../icons/54-icon-4.svg);
}

.main-services {
  padding-top: 50px;
  position: relative;
  overflow: hidden;
}
.main-services-simple {
  padding-top: 40px;
}
.main-services-simple .line-first,
.main-services-simple .line-second {
  display: none;
}
.main-services .line-first,
.main-services .line-second {
  position: absolute;
  top: 0;
  left: 58%;
  width: 350px;
  height: 100%;
  border-left: 1px solid rgba(71, 127, 209, 0.2);
  border-right: 1px solid rgba(71, 127, 209, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.main-services .line-first {
  left: calc(58% - 700px);
}
.main-services__slider {
  position: relative;
}
.main-services__slider .slick-prev.slick-arrow {
  background-color: #71BBFF;
  left: 0;
  z-index: 2;
  display: none !important;
}
.main-services__slider .slick-next.slick-arrow {
  background-color: #71BBFF;
  right: 15px;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #477FD1;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border: 1px solid #477FD1;
  transition: 0.3s all ease;
}
.main-services__slider .slick-next.slick-arrow:hover {
  border: 1px solid #fff;
  transition: 0.3s all ease;
}
.main-services__slider .slick-next.slick-arrow::before {
  display: none;
}
.main-services__slider .slick-next.slick-arrow::after {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 40px;
  position: absolute;
  z-index: 1;
  right: -20px;
  bottom: -20px;
  background-image: url(../icons/03-sub-button.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.main-services__slider .slider-inner .over .item::after,
.main-services__slider .slider-inner-product .over .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: none;
          mask-image: none;
  -webkit-mask-image: url(../icons/10-lines-two.svg);
          mask-image: url(../icons/10-lines-two.svg);
  transition: 0.3s all ease;
}
.main-services__slider .slider-inner .over:nth-child(2n) .item::after,
.main-services__slider .slider-inner-product .over:nth-child(2n) .item::after {
  -webkit-mask-image: url(../icons/09-lines-one.svg);
          mask-image: url(../icons/09-lines-one.svg);
}
.main-services__slider .slider-inner .over:nth-child(3n) .item::after,
.main-services__slider .slider-inner-product .over:nth-child(3n) .item::after {
  -webkit-mask-image: url(../icons/11-lines-three.svg);
          mask-image: url(../icons/11-lines-three.svg);
}
.main-services__slider .slider-inner .item,
.main-services__slider .slider-inner-product .item {
  padding: 20px;
  width: 360px;
  height: 420px;
  background-color: #477FD1;
  position: relative;
  border-radius: 15px;
  transition: 0.3s all ease;
  overflow-x: hidden;
  overflow-y: clip;
  border: 1px solid rgba(71, 127, 209, 0.2);
}
.main-services__slider .slider-inner .item a.head,
.main-services__slider .slider-inner-product .item a.head {
  position: relative;
  z-index: 2;
  display: flex;
  height: 60px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  text-decoration: none;
  margin-bottom: 10px;
}
.main-services__slider .slider-inner .item a.head h6,
.main-services__slider .slider-inner-product .item a.head h6 {
  font-size: 1.125rem;
  color: #fff;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 0;
  transition: 0.3s all ease;
}
.main-services__slider .slider-inner .item p,
.main-services__slider .slider-inner-product .item p {
  position: relative;
  z-index: 2;
  color: #fff;
  transition: 0.3s all ease;
  display: flex;
  height: 70px;
  text-align: left;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-bottom: 0;
  transition: 0.3s all ease;
  font-size: 0.85rem;
}
.main-services__slider .slider-inner .item a.image,
.main-services__slider .slider-inner-product .item a.image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  left: -20px;
  top: 0;
  max-width: 250px;
}
.main-services__slider .slider-inner .item a.image img,
.main-services__slider .slider-inner-product .item a.image img {
  width: 100%;
  height: auto;
}
.main-services__slider .slider-inner .item .letter,
.main-services__slider .slider-inner-product .item .letter {
  position: absolute;
  bottom: -25px;
  left: -50px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20rem;
  font-family: "ArialBlack", sans-serif;
  line-height: 20rem;
  transition: 0.3s all ease;
}
.main-services__slider .slider-inner .item a.link,
.main-services__slider .slider-inner-product .item a.link {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #477FD1;
  border: 1px solid #fff;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  transition: 0.3s all ease;
}
.main-services__slider .slider-inner .item:hover,
.main-services__slider .slider-inner-product .item:hover {
  background-color: #fff;
  transition: 0.3s all ease;
}
.main-services__slider .slider-inner .item:hover a.head h6,
.main-services__slider .slider-inner-product .item:hover a.head h6 {
  color: #23252A;
  transition: 0.3s all ease;
}
.main-services__slider .slider-inner .item:hover a.head:hover h6,
.main-services__slider .slider-inner-product .item:hover a.head:hover h6 {
  color: #477FD1;
  transition: 0.3s all ease;
}
.main-services__slider .slider-inner .item:hover p,
.main-services__slider .slider-inner-product .item:hover p {
  color: #23252A;
  transition: 0.3s all ease;
}
.main-services__slider .slider-inner .item:hover.first::after, .main-services__slider .slider-inner .item:hover.second::after, .main-services__slider .slider-inner .item:hover.third::after,
.main-services__slider .slider-inner-product .item:hover.first::after,
.main-services__slider .slider-inner-product .item:hover.second::after,
.main-services__slider .slider-inner-product .item:hover.third::after {
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.main-services__slider .slider-inner .item:hover .letter,
.main-services__slider .slider-inner-product .item:hover .letter {
  color: rgba(113, 187, 255, 0.2);
  transition: 0.3s all ease;
}

.main-form-one {
  padding-top: 60px;
  position: relative;
}
.main-form-one::before {
  z-index: -1;
  content: "";
  position: absolute;
  display: block;
  width: 1500px;
  top: -50%;
  left: -20%;
  height: 2000px;
  background-image: url(../img/11-back.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.main-form-one::after {
  content: "";
  width: 300px;
  height: 800px;
  background-image: url(../img/13-gex.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  position: absolute;
  display: block;
  left: 0;
  bottom: -50%;
}
.main-form-one .col-lg-12 {
  padding: 0;
}
.main-form-one form {
  padding: 50px 0 40px 50px;
  display: block;
  margin-left: auto;
  width: 100%;
  max-width: 1155px;
  margin-bottom: 20px;
  background-color: #E4EEF8;
  background-image: url(../img/08-gex.svg);
  background-repeat: no-repeat;
  background-size: inherit;
  background-position: top right;
  border-bottom-left-radius: 100px;
  position: relative;
  z-index: 2;
}
.main-form-one form::after {
  content: "";
  z-index: -1;
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  width: 30px;
  background-color: #71BBFF;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  height: 450px;
}
.main-form-one form h4 {
  margin-bottom: 20px;
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.main-form-one form h4 span {
  font-size: 1.5rem;
  color: #23252A;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  position: relative;
  z-index: 2;
}
.main-form-one form h4::after {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  z-index: 1;
  background-image: url(../img/10-overlines.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.main-form-one form span.text {
  font-size: 1.125rem;
  color: #23252A;
  line-height: 1.875rem;
  display: block;
  max-width: 680px;
  margin-bottom: 20px;
}
.main-form-one form input[type=text],
.main-form-one form input[type=email],
.main-form-one form input[type=tel] {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #23252A;
  display: flex;
  width: 100%;
  max-width: 600px;
  height: 50px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  padding-left: 0;
}
.main-form-one form input[type=text]:focus,
.main-form-one form input[type=email]:focus,
.main-form-one form input[type=tel]:focus {
  outline: none;
}
.main-form-one form input[type=email],
.main-form-one form input[type=tel] {
  max-width: 300px;
}
.main-form-one form label {
  padding-top: 20px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
}
.main-form-one form label input[type=checkbox] {
  position: absolute;
  top: 40px;
  left: 12px;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}
.main-form-one form label .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background-color: #477FD1;
  cursor: pointer;
  margin-right: 10px;
}
.main-form-one form label .checkbox::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  background-color: transparent;
  transition: 0.3s all ease;
}
.main-form-one form label input[type=checkbox]:checked ~ .checkbox:after {
  background-color: #fff;
}
.main-form-one form label span {
  font-size: 0.9rem;
  color: #23252A;
  line-height: 1.625rem;
}
.main-form-one form label span a {
  color: #23252A;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: 0.3s all ease;
  line-height: 1.625rem;
}
.main-form-one form label span a:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
.main-form-one form button[type=submit] {
  width: 250px;
  border: 1px solid #477FD1;
  height: 50px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  background-color: #477FD1;
  cursor: pointer;
  margin-bottom: 20px;
}
.main-form-one form button[type=submit] span {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  font-family: "Medium", sans-serif;
}
.main-form-one form button[type=submit]::before {
  content: "";
  width: 200px;
  height: 50px;
  display: block;
  position: absolute;
  top: 20px;
  right: -20px;
  background-image: url(../icons/03-sub-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 120%;
  z-index: 1;
}
.main-form-one form button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: transparent;
}
.main-form-one form button[type=submit]:hover span {
  color: #477FD1;
  transition: 0.3s all ease;
}

.padding-product-page {
  padding-bottom: 0;
}
.padding-product-page::after {
  display: none;
}

.main-info {
  padding-top: 50px;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.main-info__inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.main-info .inner-left {
  padding-right: 100px;
  width: 70%;
}
.main-info .inner-left p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.9);
}
.main-info .inner-left a.more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.125rem;
  color: #23252A;
  text-decoration: none;
  background-color: #fff;
  border-radius: 25px;
  padding: 5px;
  padding-left: 15px;
  height: 50px;
  max-width: 200px;
  transition: 0.3s all ease;
}
.main-info .inner-left a.more:hover {
  transition: 0.3s all ease;
  background-color: rgba(255, 255, 255, 0.5);
}
.main-info .inner-left a.more:hover .addon {
  border: 1px solid #fff;
  transition: 0.3s all ease;
  background-color: #fff;
}
.main-info .inner-left a.more:hover .addon::after {
  background-color: #477FD1;
  transition: 0.3s all ease;
}
.main-info .inner-left a.more .addon {
  width: 40px;
  height: 40px;
  display: block;
  margin-left: 10px;
  border: 1px solid #477FD1;
  border-radius: 20px;
  background-size: inherit;
  overflow: hidden;
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.main-info .inner-left a.more .addon:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  -webkit-mask-size: 40%;
          mask-size: 40%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  transition: 0.3s all ease;
}
.main-info .inner-right {
  width: 30%;
}
.main-info .inner-right img {
  display: block;
  height: auto;
  width: 100%;
  margin-top: -130px;
}

.main-products {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 50px;
}
.main-products::before {
  position: absolute;
  top: -250px;
  left: 0;
  display: block;
  z-index: -1;
  content: "";
  width: 100%;
  height: 150%;
  background-image: url(../img/14-wave.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100vw;
}
.main-products .header-big {
  padding-left: 20%;
  overflow: hidden;
  height: 80px;
  margin-bottom: 30px;
}
.main-products .header-big h3 {
  color: #fff;
}
.main-products .header-big span {
  color: rgba(71, 127, 209, 0.1);
  left: 30%;
  top: 0px;
}
.main-products__sub-inner {
  padding-top: 50px;
}
.main-products__sub-inner a.button {
  position: relative;
  margin-left: auto;
  margin-right: 60px;
  font-size: 1.125rem;
  font-family: "Regular", sans-serif;
  height: 50px;
  max-width: 200px;
}
.main-products__sub-inner a.button::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 20px;
  display: block;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: 2px;
  transition: 0.3s all ease;
}
.main-products__sub-inner a.button:hover::after {
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.main-products__sub-inner a.button::before {
  position: absolute;
  height: 80px;
  width: 300px;
  content: "";
  bottom: -20px;
  right: -20px;
  background-image: url(../img/10-overlines.svg);
}
.main-products__inner .slick-prev.slick-arrow {
  background-color: #71BBFF;
  left: 0;
  z-index: 2;
  display: none !important;
}
.main-products__inner .slick-next.slick-arrow {
  background-color: #71BBFF;
  right: 20px;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #477FD1;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border: 1px solid #477FD1;
  transition: 0.3s all ease;
}
.main-products__inner .slick-next.slick-arrow:hover {
  border: 1px solid #fff;
  transition: 0.3s all ease;
}
.main-products__inner .slick-next.slick-arrow::before {
  display: none;
}
.main-products__inner .slick-next.slick-arrow::after {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 40px;
  position: absolute;
  z-index: 1;
  right: -20px;
  bottom: -20px;
  background-image: url(../icons/03-sub-button.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.main-products__inner .item {
  position: relative;
  width: 350px;
  height: 500px;
  background-color: #477FD1;
  transition: 0.3s all ease;
  border-radius: 20px;
  padding: 20px 0 15px 15px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.main-products__inner .item:before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 220px;
  -webkit-mask-image: url(../img/15-wave.svg);
          mask-image: url(../img/15-wave.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top center;
          mask-position: top center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #E4EEF8;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.main-products__inner .item span {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 0.875rem;
  line-height: normal;
  font-family: "Regular", sans-serif;
  padding-right: 20px;
  display: block;
  transition: 0.3s all ease;
}
.main-products__inner .item a.more {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: block;
  border: 1px solid #477FD1;
  border-radius: 25px;
  background-color: #477FD1;
}
.main-products__inner .item a.more::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 30%;
          mask-size: 30%;
  transition: 0.3s all ease;
}
.main-products__inner .item a.more:hover {
  transition: 0.3s all ease;
  border: 1px solid #fff;
  background-color: #fff;
}
.main-products__inner .item a.more:hover::after {
  background-color: #477FD1;
  transition: 0.3s all ease;
}
.main-products__inner .item a.head {
  width: 100%;
  height: 65px;
  position: relative;
  display: block;
  padding-right: 20px;
  text-decoration: none;
  margin-bottom: 10px;
}
.main-products__inner .item a.head h6 {
  color: #fff;
  font-size: 1.125rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
}
.main-products__inner .item a.head::after {
  content: "";
  width: calc(100% - 30px);
  height: 80px;
  -webkit-mask-image: url(../img/16-shadow.svg);
          mask-image: url(../img/16-shadow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  transition: 0.3s all ease;
}
.main-products__inner .item .image {
  width: 350px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0px;
}
.main-products__inner .item .image img {
  width: 100%;
  height: auto;
}
.main-products__inner .item:hover {
  transition: 0.3s all ease;
  background-color: #fff;
}
.main-products__inner .item:hover span {
  transition: 0.3s all ease;
  color: #23252A;
}
.main-products__inner .item:hover a.head {
  color: #23252A;
}
.main-products__inner .item:hover a.head h6 {
  transition: 0.3s all ease;
  color: #23252A;
}
.main-products__inner .item:hover a.head::after {
  background-color: #477FD1;
}
.main-products__inner .item:hover a.head:hover h6 {
  color: #477FD1;
  transition: 0.3s all ease;
}

.main-promo {
  overflow: hidden;
  padding-bottom: 130px;
  position: relative;
  z-index: 3;
}
.main-promo .header-big {
  margin-bottom: 30px;
}
.main-promo__line {
  padding-top: 50px;
}
.main-promo a.button {
  position: relative;
  margin-left: 30px;
  margin-right: auto;
  font-size: 1.125rem;
  font-family: "Regular", sans-serif;
  height: 50px;
  max-width: 200px;
}
.main-promo a.button::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 20px;
  display: block;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: 2px;
  transition: 0.3s all ease;
}
.main-promo a.button:hover::after {
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.main-promo a.button::before {
  position: absolute;
  height: 80px;
  width: 300px;
  content: "";
  bottom: -20px;
  right: -20px;
  background-image: url(../img/10-overlines.svg);
}
.main-promo__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  padding-top: 0;
  position: relative;
  z-index: 2;
}
.main-promo__inner .item {
  width: 45%;
  height: 200px;
  display: block;
  text-decoration: none;
  transition: 0.3s all ease;
  background-color: #477FD1;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #477FD1;
}
.main-promo__inner .item span {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #fff;
  transition: 0.3s all ease;
}
.main-promo__inner .item .line {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  height: 80px;
  margin-bottom: 20px;
}
.main-promo__inner .item .line .icon {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #477FD1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-right: 40px;
  border: 1px solid #fff;
}
.main-promo__inner .item .line .icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-promo__inner .item .line h6 {
  display: block;
  width: calc(100% - 120px);
  font-size: 1.375rem;
  font-family: "ArialBlack", sans-serif;
  color: #fff;
  transition: 0.3s all ease;
}
.main-promo__inner .item:hover {
  transition: 0.3s all ease;
  background-color: transparent;
  border: 1px solid rgba(71, 127, 209, 0.3);
}
.main-promo__inner .item:hover span {
  color: #23252A;
  transition: 0.3s all ease;
}
.main-promo__inner .item:hover .line h6 {
  color: #23252A;
  transition: 0.3s all ease;
}

.main-form-two {
  position: relative;
}
.main-form-two::before {
  z-index: -1;
  content: "";
  position: absolute;
  display: block;
  width: 1500px;
  bottom: -100%;
  right: 0;
  height: 1700px;
  width: 1200px;
  background-image: url(../img/20-line-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.main-form-two::after {
  content: "";
  width: 200px;
  height: 500px;
  background-image: url(../img/13-gex.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  display: block;
  right: 0;
  top: -300px;
  z-index: -1;
  transform: rotate(180deg);
}
.main-form-two .col-lg-12 {
  padding: 0;
}
.main-form-two form {
  padding: 50px 0 40px 200px;
  display: block;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  background-color: #E4EEF8;
  background-image: url(../img/08-gex.svg);
  background-repeat: no-repeat;
  background-size: inherit;
  background-position: top right;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 100px;
  position: relative;
}
.main-form-two form::after {
  content: "";
  z-index: -1;
  display: block;
  position: absolute;
  top: -50px;
  right: -80px;
  width: 100%;
  max-width: 1200px;
  background-color: #71BBFF;
  border-radius: 20px;
  height: 550px;
}
.main-form-two form h4 {
  margin-bottom: 20px;
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.main-form-two form h4 span {
  font-size: 1.5rem;
  color: #23252A;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  position: relative;
  z-index: 2;
}
.main-form-two form h4::after {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  z-index: 1;
  background-image: url(../img/10-overlines.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.main-form-two form span.text {
  font-size: 1.125rem;
  color: #23252A;
  line-height: 1.875rem;
  display: block;
  max-width: 680px;
  margin-bottom: 20px;
}
.main-form-two form input[type=text],
.main-form-two form input[type=email],
.main-form-two form input[type=tel] {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #23252A;
  display: flex;
  width: 100%;
  max-width: 600px;
  height: 50px;
  margin-bottom: 20px;
  font-size: 1.313rem;
  padding-left: 0;
}
.main-form-two form input[type=text]:focus,
.main-form-two form input[type=email]:focus,
.main-form-two form input[type=tel]:focus {
  outline: none;
}
.main-form-two form input[type=email],
.main-form-two form input[type=tel] {
  max-width: 300px;
}
.main-form-two form label {
  padding-top: 20px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
}
.main-form-two form label input[type=checkbox] {
  position: absolute;
  top: 40px;
  left: 12px;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}
.main-form-two form label .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background-color: #477FD1;
  cursor: pointer;
  margin-right: 10px;
}
.main-form-two form label .checkbox::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  background-color: transparent;
  transition: 0.3s all ease;
}
.main-form-two form label input[type=checkbox]:checked ~ .checkbox:after {
  background-color: #fff;
}
.main-form-two form label span {
  font-size: 1rem;
  color: #23252A;
}
.main-form-two form label span a {
  color: #23252A;
  font-size: 1rem;
  text-decoration: underline;
  transition: 0.3s all ease;
}
.main-form-two form label span a:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
.main-form-two form button[type=submit] {
  width: 250px;
  border: 1px solid #477FD1;
  height: 50px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  background-color: #477FD1;
  cursor: pointer;
  margin-bottom: 20px;
}
.main-form-two form button[type=submit] span {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  font-family: "Medium", sans-serif;
}
.main-form-two form button[type=submit]::before {
  content: "";
  width: 200px;
  height: 50px;
  display: block;
  position: absolute;
  top: 20px;
  right: -20px;
  background-image: url(../icons/03-sub-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 120%;
  z-index: 1;
}
.main-form-two form button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: transparent;
}
.main-form-two form button[type=submit]:hover span {
  color: #477FD1;
  transition: 0.3s all ease;
}

.main-cases {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  z-index: 2;
}
.main-cases .cases-all {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}
.main-cases .cases-all a.button {
  position: relative;
  margin-left: auto;
  font-size: 1.25rem;
  font-family: "Regular", sans-serif;
  height: 50px;
  max-width: 220px;
}
.main-cases .cases-all a.button::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 20px;
  display: block;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: 2px;
  transition: 0.3s all ease;
}
.main-cases .cases-all a.button:hover::after {
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.main-cases .cases-all a.button::before {
  position: absolute;
  height: 80px;
  width: 300px;
  content: "";
  bottom: -20px;
  right: -20px;
  background-image: url(../img/10-overlines.svg);
}
.main-cases__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.main-cases__inner .slick-prev.slick-arrow,
.main-cases__inner .slick-next.slick-arrow {
  background-color: #71BBFF;
  right: 0;
  top: 160px;
  bottom: 0;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #477FD1;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border: 1px solid #477FD1;
  transition: 0.3s all ease;
  opacity: 0.2;
}
.main-cases__inner .slick-prev.slick-arrow:hover,
.main-cases__inner .slick-next.slick-arrow:hover {
  border: 1px solid #fff;
  transition: 0.3s all ease;
  opacity: 1;
}
.main-cases__inner .slick-prev.slick-arrow::before,
.main-cases__inner .slick-next.slick-arrow::before {
  display: none;
}
.main-cases__inner .slick-prev.slick-arrow::after,
.main-cases__inner .slick-next.slick-arrow::after {
  display: none;
}
.main-cases__inner .slick-prev.slick-arrow {
  transform: rotate(-180deg);
  right: auto;
  left: 0;
  top: 120px;
}
.main-cases__inner .over {
  padding: 0 10px;
}
.main-cases__inner .over.show {
  display: block !important;
}
.main-cases__inner .item {
  width: 100%;
  height: 300px;
  background-color: #E4EEF8;
  text-decoration: none;
  padding: 20px;
  border-radius: 20px;
  border-bottom-right-radius: 50px;
  background-image: url(../img/22-lines.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: inherit;
  position: relative;
}
.main-cases__inner .item.show {
  display: block !important;
}
.main-cases__inner .item .line {
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 80px;
  transition: 0.3s all ease;
}
.main-cases__inner .item .line:hover {
  transition: 0.3s all ease;
}
.main-cases__inner .item .line:hover .text {
  color: #477FD1;
}
.main-cases__inner .item .line .text {
  font-size: 1rem;
  font-family: "SemiBold", sans-serif;
  color: #23252A;
  text-decoration: none;
  transition: 0.3s all ease;
}
.main-cases__inner .item .mini {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.main-cases__inner .item a.more {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid #23252A;
  z-index: 2;
  transition: 0.3s all ease;
}
.main-cases__inner .item a.more::after {
  content: "";
  display: block;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #23252A;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 20%;
          mask-size: 20%;
  width: 100%;
  height: 100%;
  transition: 0.3s all ease;
}
.main-cases__inner .item a.more:hover {
  border: 1px solid #477FD1;
  background-color: #477FD1;
  transition: 0.3s all ease;
}
.main-cases__inner .item a.more:hover::after {
  background-color: #fff;
  transition: 0.3s all ease;
}

.main-news {
  position: relative;
  top: 400px;
  background-color: #71BBFF;
  height: 950px;
  margin-bottom: 100px;
}
.main-news::before {
  content: "";
  position: absolute;
  top: -350px;
  left: 0;
  width: 280px;
  height: 750px;
  background-image: url(../img/24-gex.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
.main-news::after {
  content: "";
  width: 1200px;
  height: 800px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../img/25-back-lines.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}
.main-news .pre-news {
  position: relative;
  background-image: url(../img/23-blue-back.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: 650px;
  top: -650px;
}
.main-news .container-fluid {
  overflow: hidden;
}
.main-news .inner-news {
  position: relative;
  top: -850px;
}
.main-news .switch {
  width: 450px;
  height: 80px;
  background-image: url(../img/26-lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: 25%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
.main-news .switch.article span {
  color: #477FD1;
  transition: 0.3s all ease;
}
.main-news .switch.article span.sub {
  color: #fff;
  transition: 0.3s all ease;
}
.main-news .switch.article .tumbler {
  transition: 0.3s all ease;
}
.main-news .switch.article .tumbler .circle {
  margin-left: calc(100% - 28px);
  transition: 0.3s all ease;
}
.main-news .switch span {
  display: block;
  width: 145px;
  color: #fff;
  font-size: 1.563rem;
  font-family: "ArialBlack", sans-serif;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s all ease;
}
.main-news .switch span.sub {
  color: #477FD1;
  transition: 0.3s all ease;
}
.main-news .switch .tumbler {
  width: 80px;
  height: 40px;
  border-radius: 20px;
  background-color: #477FD1;
  display: flex;
  justify-content: flex-start;
  transition: 0.3s all ease;
  padding: 6px;
  cursor: pointer;
}
.main-news .switch .tumbler .circle {
  border-radius: 20px;
  width: 28px;
  height: 28px;
  background-color: #fff;
  transition: 0.3s all ease;
  margin-left: 0;
}
.main-news .header-big {
  margin-bottom: 30px;
  left: 30%;
  height: 80px;
}
.main-news .header-big h3 {
  color: #fff;
}
.main-news .header-big span {
  color: rgba(35, 37, 42, 0.1);
  line-height: 100px;
  height: 80px;
}
.main-news .plus-news {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}
.main-news .plus-news .right {
  width: 450px;
  display: block;
  background-image: url(../img/27-back.svg);
  background-repeat: repeat-y;
}
.main-news .plus-news .right .info {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px;
  padding-left: 50px;
  padding-bottom: 30px;
  padding-right: 0;
}
.main-news .plus-news .right .info h6 {
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
}
.main-news .plus-news .right .info a.all {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #23252A;
  font-family: "Medium", sans-serif;
  height: 50px;
  background-color: #fff;
  max-width: 220px;
  border-radius: 25px;
  transition: 0.3s all ease;
  margin-left: auto;
}
.main-news .plus-news .right .info a.all::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  transform: rotate(-45deg);
  background-color: #477FD1;
  margin-left: 10px;
  transition: 0.3s all ease;
}
.main-news .plus-news .right .info a.all:hover {
  transition: 0.3s all ease;
  background-color: rgba(255, 255, 255, 0.9);
}
.main-news .plus-news .right .info a.all:hover::after {
  transition: 0.3s all ease;
  background-color: #71BBFF;
}
.main-news .plus-news .right .line {
  width: calc(100% - 50px);
  margin-left: auto;
}
.main-news .plus-news .right .line .item {
  margin-bottom: 0;
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 0;
  border-radius: 20px;
  background-color: #E4EEF8;
  overflow: hidden;
}
.main-news .plus-news .right .line .item span {
  font-size: 1.125rem;
  font-family: "Medium", sans-serif;
  color: #23252A;
  height: 50px;
  width: 100%;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  height: 50px;
  margin-top: 20px;
}
.main-news .plus-news .right .line .item img {
  width: 100%;
  height: 235px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-news .plus-news .right .line .item .more {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid #477FD1;
  background-color: #477FD1;
  transition: 0.3s all ease;
  border-radius: 25px;
  flex-shrink: 0;
  margin-right: 10px;
  margin-left: auto;
  margin-top: 15px;
  margin-bottom: 10px;
}
.main-news .plus-news .right .line .item .more::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 50%;
          mask-size: 50%;
  background-color: #fff;
  transition: 0.3s all ease;
}
.main-news .plus-news .right .line .item .more:hover {
  background-color: transparent;
  border: 1px solid #23252A;
  transition: 0.3s all ease;
}
.main-news .plus-news .right .line .item .more:hover::after {
  background-color: #23252A;
  transition: 0.3s all ease;
}
.main-news .plus-news .left {
  width: calc(100% - 450px);
}
.main-news .plus-news .left.hide {
  display: none;
}
.main-news .plus-news .left.article {
  display: none;
}
.main-news .plus-news .left.article.show {
  display: block;
}
.main-news .plus-news .left-over {
  display: grid;
  grid-template-columns: 32.5% 32.5% 32.5%;
  justify-content: space-between;
}
.main-news .plus-news .left .item {
  width: 100%;
  padding: 0px;
  background-color: #E4EEF8;
  border-radius: 20px;
}
.main-news .plus-news .left .item:nth-child(1) {
  background-image: url(../img/28-back-news.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}
.main-news .plus-news .left .item:nth-child(2) {
  background-image: url(../img/29-back-news.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}
.main-news .plus-news .left .item:nth-child(3) {
  background-image: url(../img/30-back-news.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}
.main-news .plus-news .left .item img {
  width: 100%;
  height: 225px;
  border-radius: 10px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.main-news .plus-news .left .item a.title {
  padding: 0 10px;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Bold", sans-serif;
  color: #23252A;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s all ease;
  line-height: normal;
  text-transform: none;
  margin-bottom: 20px;
}
.main-news .plus-news .left .item a.title:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
.main-news .plus-news .left .item span {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #23252A;
  font-family: "Regular", sans-serif;
  display: block;
  height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 0 10px;
}
.main-news .plus-news .left .item a.more {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: 0.3s all ease;
  border: 1px solid #23252A;
  margin-left: auto;
  margin-right: 10px;
  margin-bottom: 10px;
}
.main-news .plus-news .left .item a.more::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 50%;
          mask-size: 50%;
  background-color: #23252A;
  transition: 0.3s all ease;
}
.main-news .plus-news .left .item a.more:hover {
  transition: 0.3s all ease;
  border: 1px solid #477FD1;
  background-color: #477FD1;
}
.main-news .plus-news .left .item a.more:hover::after {
  transition: 0.3s all ease;
  background-color: #fff;
}
.main-news .plus-news .left a.all {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #23252A;
  font-family: "Medium", sans-serif;
  height: 50px;
  margin-left: auto;
  width: 200px;
  background-color: #fff;
  border-radius: 25px;
  margin-top: 20px;
  padding: 0 10px;
  transition: 0.3s all ease;
}
.main-news .plus-news .left a.all::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  transform: rotate(-45deg);
  background-color: #477FD1;
  margin-left: 20px;
  transition: 0.3s all ease;
}
.main-news .plus-news .left a.all:hover {
  transition: 0.3s all ease;
  background-color: rgba(255, 255, 255, 0.8);
}
.main-news .plus-news .left a.all:hover::after {
  transition: 0.3s all ease;
  background-color: #71BBFF;
}

/*===============FOOTER=================*/
footer {
  z-index: 3;
  position: relative;
  background-color: #fff;
  padding: 100px 0 100px 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-image: url(../img/31-lines.svg);
  background-repeat: no-repeat;
  background-position: -45% 145%;
  background-size: 95%;
}
footer a.logo {
  display: block;
  width: 252px;
  height: 252px;
  margin: 0 auto;
  background-image: url(../img/footer-logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 90px;
}
footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}
footer .footer-inner .menu {
  width: calc(100% - 500px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}
footer .footer-inner .menu ul {
  width: 25%;
  padding: 0;
  margin: 0;
}
footer .footer-inner .menu ul:nth-child(1) {
  width: 20%;
}
footer .footer-inner .menu ul:nth-child(2) {
  width: 40%;
}
footer .footer-inner .menu ul li {
  list-style-type: none;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
footer .footer-inner .menu ul li a {
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  color: #23252A;
  transition: 0.3s all ease;
  text-decoration: none;
}
footer .footer-inner .menu ul li a:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
footer .footer-inner .menu ul li a.bold {
  font-family: "SemiBold", sans-serif;
  font-size: 1rem;
}
footer .footer-inner .info {
  width: 550px;
  padding-left: 50px;
}
footer .footer-inner .info span {
  display: block;
  text-align: left;
  width: 100%;
  margin-bottom: 25px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  line-height: 1.75rem;
}
footer .footer-inner .info span.allert {
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: 0.3s all ease;
  position: relative;
}
footer .footer-inner .info span.allert::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/32-shadow.svg);
  background-repeat: no-repeat;
  box-pack: center;
  background-size: cover;
  transition: 0.3s all ease;
  opacity: 0.8;
}
footer .footer-inner .info span.allert a {
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  color: #477FD1;
  padding: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  position: relative;
  text-align: left;
  transition: 0.3s all ease;
}
footer .footer-inner .info span.allert:hover::before {
  opacity: 0;
  transition: 0.3s all ease;
}
footer .footer-inner .info span.allert:hover a {
  transition: 0.3s all ease;
  color: #23252A;
}
footer .footer-inner .info-text ul {
  padding: 0;
  margin: 0;
}
footer .footer-inner .info-text ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: #23252A;
  font-family: "Medium", sans-serif;
  line-height: 1.75rem;
}
footer .footer-inner .info-list ul {
  padding: 0;
  margin: 0;
}
footer .footer-inner .info-list ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
footer .footer-inner .info-list ul li a {
  font-size: 0.875rem;
  color: #23252A;
  text-decoration: none;
  line-height: 1.75rem;
  transition: 0.3s all ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-family: "Medium", sans-serif;
}
footer .footer-inner .info-list ul li a:hover {
  transition: 0.3s all ease;
  color: #477FD1;
}
footer .footer-inner .info-list ul li a::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
footer .footer-inner .info-list ul li a.geo::before {
  background-image: url(../icons/61-icon.svg);
}
footer .footer-inner .info-list ul li a.phone::before {
  background-image: url(../icons/63-icon.svg);
}
footer .footer-inner .info-list ul li a.mail::before {
  background-image: url(../icons/62-icon.svg);
}

/*==============MOBILE-TOOLBAR====================*/
.mobile-toolbar {
  display: none;
}

/*=============HEADER-MOBILE==================*/
.header-mobile {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  top: 8px;
  right: 12px;
  z-index: 5;
  display: none;
  cursor: pointer;
}
.header-mobile span {
  width: 20px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #477FD1;
  margin: 0 auto;
}
.header-mobile span:nth-child(2) {
  margin: 4px auto;
}
.header-mobile span:nth-child(3) {
  width: 10px;
  margin-left: 25px;
}
.header-mobile-menu {
  display: none;
}

/*============BREADCRUMBS==================*/
.breadcrumbs {
  padding-top: 20px;
  padding-bottom: 10px;
}
.breadcrumbs .breadcrumb {
  margin-bottom: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumbs .breadcrumb .breadcrumb-item {
  padding-left: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.875rem;
  color: #23252A;
}
.breadcrumbs .breadcrumb .breadcrumb-item::before {
  display: none;
}
.breadcrumbs .breadcrumb .breadcrumb-item:last-child::after {
  display: none;
}
.breadcrumbs .breadcrumb .breadcrumb-item::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background-image: url(../icons/18-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin: 2px 10px 0 10px;
}
.breadcrumbs .breadcrumb .breadcrumb-item span {
  font-size: 0.875rem;
}
.breadcrumbs .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: #477FD1;
  transition: 0.3s all ease;
  font-size: 0.875rem;
}
.breadcrumbs .breadcrumb .breadcrumb-item a span {
  color: #477FD1;
  transition: 0.3s all ease;
}
.breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: #23252A;
  transition: 0.3s all ease;
}
.breadcrumbs .breadcrumb .breadcrumb-item a:hover span {
  color: #23252A;
  transition: 0.3s all ease;
}

/*==========SIMPLE-FRAME================*/
.simple-frame {
  padding-bottom: 100px;
  position: relative;
}
.simple-frame.simple-service, .simple-frame.simple-product {
  padding-top: 80px;
}
.simple-frame.simple-service h1, .simple-frame.simple-product h1 {
  font-size: 1.65rem;
}
.simple-frame.simple-product, .simple-frame.simple-service {
  padding-top: 25px;
}
.simple-frame.simple-product .simple-frame, .simple-frame.simple-service .simple-frame {
  padding-bottom: 150px;
}
.simple-frame.simple-product .simple-frame__inner, .simple-frame.simple-service .simple-frame__inner {
  background-color: #F1F7FB;
  border-radius: 30px;
  padding: 30px;
  align-items: flex-start;
}
.simple-frame.simple-product .simple-frame__inner .left, .simple-frame.simple-service .simple-frame__inner .left {
  display: block;
}
.simple-frame.simple-product .simple-frame__inner .left h1, .simple-frame.simple-service .simple-frame__inner .left h1 {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.simple-frame.simple-product .simple-frame__inner .left p, .simple-frame.simple-service .simple-frame__inner .left p {
  margin-bottom: 50px;
  font-size: 1.125rem;
}
.simple-frame.simple-product .price-line, .simple-frame.simple-service .price-line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.simple-frame.simple-product .price-line span, .simple-frame.simple-service .price-line span {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-family: "SemiBold", sans-serif;
}
.simple-frame.simple-product .price-line .button, .simple-frame.simple-service .price-line .button {
  margin-right: 50px;
  max-width: 240px;
  height: 50px;
  font-size: 1rem;
}
.simple-frame.simple-product .price-line .button::after, .simple-frame.simple-service .price-line .button::after {
  top: 0;
  left: 15px;
}
.simple-frame.simple-product img.product-image-custom, .simple-frame.simple-service img.product-image-custom {
  margin-bottom: -130px;
  max-width: 450px;
  margin-left: auto;
  margin-right: 0;
}
.simple-frame.simple-service .simple-frame__inner .left ul {
  padding-top: 0;
}
.simple-frame.simple-service .simple-frame__inner .left p {
  margin-bottom: 20px;
  font-size: 1.125rem;
}
.simple-frame.frame-case .left {
  background-color: #F1F7FB;
  border-radius: 30px;
  padding: 30px;
  display: block;
  width: calc(100% - 750px);
}
.simple-frame.frame-case .left p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.75rem;
}
.simple-frame.frame-case .simple-frame__inner {
  align-items: flex-start;
}
.simple-frame.frame-case .simple-frame__inner img {
  border-radius: 30px;
}
.simple-frame.frame-case .right {
  width: 100%;
  max-width: 700px;
}
.simple-frame .line {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/02-lines.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  z-index: -1;
}
.simple-frame h1 {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  width: 100%;
  margin-bottom: 30px;
}
.simple-frame p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 30px;
}
.simple-frame span {
  display: block;
  margin-bottom: 30px;
  font-size: 1.313rem;
  line-height: 1.875rem;
  font-family: "SemiBold", sans-serif;
}
.simple-frame ul {
  padding: 20px 0;
  margin: 0;
}
.simple-frame ul li {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: "Regular", sans-serif;
}
.simple-frame ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-color: #477FD1;
  display: block;
  border-radius: 5px;
  flex-shrink: 0;
}
.simple-frame img {
  width: 100%;
  height: auto;
}
.simple-frame img.product-image-custom {
  max-width: 600px;
  display: block;
  margin: 0 auto;
}
.simple-frame .button {
  position: relative;
  width: 240px;
  height: 50px;
  font-size: 1rem;
}
.simple-frame .button::after {
  content: "";
  display: block;
  width: 300px;
  height: 80px;
  position: absolute;
  left: 15px;
  top: 0;
  background-image: url(../icons/03-sub-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.simple-frame__inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.simple-frame .left {
  width: 50%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
}
.simple-frame .left.stock-text, .simple-frame .left.single-stock-text, .simple-frame .left.about-text {
  background-color: #F1F7FB;
  border-radius: 30px;
  padding: 30px;
  margin-top: 30px;
}
.simple-frame .left.stock-text .career-text, .simple-frame .left.single-stock-text .career-text, .simple-frame .left.about-text .career-text {
  margin-bottom: 10px;
}
.simple-frame .right {
  width: 50%;
}
.simple-frame .right.stock-img img, .simple-frame .right.about-img img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: -100px;
}

/*===========DEMO=============*/
.demo-frame {
  overflow-x: hidden;
  padding-top: 0;
  padding-bottom: 50px;
}
.demo-frame__inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.demo-frame .left {
  width: 50%;
}
.demo-frame .left p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 30px;
}
.demo-frame .right {
  padding-left: 35px;
  width: 50%;
}
.demo-frame p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 30px;
}
.demo-frame ul {
  padding: 0;
  margin: 0;
}
.demo-frame ul li {
  list-style-type: none;
  font-size: 1rem;
  line-height: 1.75rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
}
.demo-frame ul li span,
.demo-frame ul li b {
  font-size: inherit;
  font-family: inherit;
}
.demo-frame ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #477FD1;
  flex-shrink: 0;
  position: absolute;
  top: 8px;
  left: 0;
}
.demo-frame .button {
  width: 100%;
  max-width: 320px;
  position: relative;
  font-size: 1rem;
}
.demo-frame .button::after {
  content: "";
  display: block;
  width: 240px;
  height: 60px;
  position: absolute;
  right: -20px;
  top: 0;
  background-image: url(../icons/03-sub-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.demo-frame .item-content {
  background-color: #477FD1;
  border-radius: 50px;
  margin-bottom: 50px;
  margin-top: 50px;
  padding: 100px 50px;
  padding-bottom: 50px;
  background-image: url(../img/simple-back.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: inherit;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.demo-frame .item-content.hidden {
  height: 500px;
  overflow: hidden;
}
.demo-frame .item-content.hidden::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 400px;
  width: 100%;
  display: block;
  background-image: url(../img/gradient.png);
  background-repeat: repeat-x;
}
.demo-frame .item-content.hidden .more {
  display: flex;
}
.demo-frame .item-content .more {
  display: none;
  position: absolute;
  width: 200px;
  height: 80px;
  font-size: 1.25rem;
  font-family: "Medium", sans-serif;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}
.demo-frame .item-content .more .btn {
  width: 60px;
  height: 60px;
  background-color: transparent;
  transition: 0.3s all ease;
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 0;
}
.demo-frame .item-content .more .btn::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  -webkit-mask-image: url(../icons/08-arrow.svg);
          mask-image: url(../icons/08-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: inherit;
          mask-size: inherit;
  background-color: #fff;
  transition: 0.3s all ease;
}
.demo-frame .item-content .more .btn:hover {
  background-color: #fff;
  transition: 0.3s all ease;
  border: 1xp solid #477FD1;
}
.demo-frame .item-content .more .btn:hover::after {
  background-color: #477FD1;
  transition: 0.3s all ease;
}
.demo-frame .item-content .left,
.demo-frame .item-content .right {
  display: block;
  width: 100%;
  max-width: 49%;
}
.demo-frame .item-content .center {
  width: 100%;
}
.demo-frame .item-content .center table {
  border: 1px solid #fff;
  border-collapse: collapse;
  padding: 5px;
  border-radius: 30px;
  margin-bottom: 40px;
}
.demo-frame .item-content .center table th {
  border: 1px solid #fff;
  padding: 5px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  font-weight: normal;
  font-family: "Medium", sans-serif;
  font-size: 1.25rem;
}
.demo-frame .item-content .center table td {
  border: 1px solid #fff;
  text-align: center;
  padding: 20px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: normal;
}
.demo-frame .item-content .center table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.1);
}
.demo-frame .item-content .center table tbody tr td:first-child {
  text-align: left;
}
.demo-frame .item-content h5,
.demo-frame .item-content h6 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Medium", sans-serif;
  height: 90px;
  margin-bottom: 30px;
}
.demo-frame .item-content span {
  display: block;
  margin-bottom: 50px;
  color: #fff;
}
.demo-frame .item-content h6 {
  height: auto;
}
.demo-frame .item-content ul {
  padding: 0;
  margin: 0;
  margin-bottom: 50px;
}
.demo-frame .item-content ul li {
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 40px;
  color: #fff;
  display: block;
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.demo-frame .item-content ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background-color: #fff;
  display: block;
  top: 8px;
  left: 0;
  position: absolute;
}
.demo-frame .item-content ul li b {
  font-weight: normal;
  color: #fff;
  font-family: "SemiBold", sans-serif;
  font-size: 1.125rem;
}
.demo-frame .item-content p {
  color: #fff;
}

/*===========PROGRAMMS================*/
.programms-frame {
  padding-top: 200px;
  overflow-x: hidden;
}
.programms-frame__inner {
  display: grid;
  grid-template-columns: repeat(3, 450px);
  justify-content: space-between;
}
.programms-frame .item {
  width: 100%;
  max-width: 450px;
  background-color: #477FD1;
  position: relative;
  margin-top: 100px;
  transition: 0.3s all ease;
  border: 1px solid #477FD1;
  border-radius: 20px;
  padding: 0 20px 40px 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.programms-frame .item:hover .label {
  transition: 0.3s all ease;
  background-color: #477FD1;
  color: #fff;
}
.programms-frame .item .label {
  background-color: #fff;
  width: 100px;
  height: 40px;
  position: absolute;
  top: 50px;
  right: 0;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  color: #23252A;
  z-index: 2;
  transition: 0.3s all ease;
}
.programms-frame .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: none;
          mask-image: none;
  -webkit-mask-image: url(../icons/09-lines-one.svg);
          mask-image: url(../icons/09-lines-one.svg);
  transition: 0.3s all ease;
}
.programms-frame .item.one::after {
  -webkit-mask-image: url(../icons/09-lines-one.svg);
          mask-image: url(../icons/09-lines-one.svg);
}
.programms-frame .item.two::after {
  -webkit-mask-image: url(../icons/10-lines-two.svg);
          mask-image: url(../icons/10-lines-two.svg);
}
.programms-frame .item.three::after {
  -webkit-mask-image: url(../icons/11-lines-three.svg);
          mask-image: url(../icons/11-lines-three.svg);
}
.programms-frame .item:hover {
  background-color: #fff;
  transition: 0.3s all ease;
  border: 1px solid #E4EEF8;
}
.programms-frame .item:hover::after {
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.programms-frame .item:hover p,
.programms-frame .item:hover h6,
.programms-frame .item:hover .price,
.programms-frame .item:hover ul li {
  transition: 0.3s all ease;
  color: #23252A;
}
.programms-frame .item h6 {
  position: relative;
  z-index: 2;
  font-family: "SemiBold", sans-serif;
  color: #fff;
  font-size: 1.375rem;
  transition: 0.3s all ease;
  height: 80px;
  margin-bottom: 20px;
}
.programms-frame .item p {
  font-size: 0.875rem;
  height: 65px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: #fff;
  transition: 0.3s all ease;
}
.programms-frame .item .price {
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  color: #fff;
  transition: 0.3s all ease;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  font-size: 1.375rem;
  font-family: "SemiBold", sans-serif;
  width: 100%;
}
.programms-frame .item ul {
  margin: 0;
  padding: 0;
  z-index: 2;
  position: relative;
  margin-bottom: 30px;
  list-style-type: none;
}
.programms-frame .item ul li {
  list-style-type: 0;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #fff;
  transition: 0.3s all ease;
}
.programms-frame .item .button {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid #fff;
  background-color: #477FD1;
  max-width: calc(100% - 90px);
}
.programms-frame .item .button:hover {
  background-color: transparent;
  border: 1px solid #477FD1;
}
.programms-frame .item .button-modal {
  z-index: 2;
  background-color: #477FD1;
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: 0.3s all ease;
  cursor: pointer;
  position: relative;
  background-image: url(/bitrix/templates/ba58/assets/icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
}
.programms-frame .item .button-modal:hover {
  opacity: 0.8;
  transition: 0.3s all ease;
}
.programms-frame .item img {
  margin: 0 auto;
  margin-top: -120px;
  position: relative;
  z-index: 2;
  max-width: 300px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.programms-frame .item .hidden-content {
  display: none;
}

#modaltnx .modal-body {
  padding: 20px;
}

#modalcontent .modal-body {
  padding: 20px;
}
#modalcontent .modal-body p {
  margin-bottom: 20px;
}
#modalcontent .modal-body h6 {
  font-size: 1.25rem;
  font-family: "Medium", sans-serif;
  margin-bottom: 20px;
}
#modalcontent .modal-body ul li {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  margin-bottom: 10px;
}
#modalcontent table {
  border: 1px solid #b3adad;
  border-collapse: collapse;
  padding: 5px;
}
#modalcontent table tbody tr {
  background: #fff;
}
#modalcontent table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.75);
}
#modalcontent table th {
  border: 1px solid #b3adad;
  padding: 5px;
  background: #f0f0f0;
  font-family: "Medium", sans-serif;
  color: #23252A;
  font-weight: normal;
}
#modalcontent table td {
  border: 1px solid #b3adad;
  text-align: center;
  padding: 5px;
  color: #23252A;
}
#modalcontent table td:nth-child(1) {
  text-align: left;
}

/*===========RELATED===============*/
.relaited {
  position: relative;
  padding-top: 200px;
  overflow: hidden;
  padding-bottom: 50px;
}
.relaited__sub-inner {
  padding-top: 50px;
}
.relaited__sub-inner a.button {
  position: relative;
  margin-left: auto;
  margin-right: 50px;
  font-size: 1.375rem;
  font-family: "Regular", sans-serif;
}
.relaited__sub-inner a.button::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 20px;
  display: block;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: 2px;
  transition: 0.3s all ease;
}
.relaited__sub-inner a.button:hover::after {
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.relaited__sub-inner a.button::before {
  position: absolute;
  height: 80px;
  width: 300px;
  content: "";
  bottom: -20px;
  right: -20px;
  background-image: url(../img/10-overlines.svg);
}
.relaited__inner .slick-prev.slick-arrow {
  background-color: #71BBFF;
  left: 0;
  z-index: 2;
  display: none !important;
}
.relaited__inner .slick-next.slick-arrow {
  background-color: #71BBFF;
  right: 0;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #477FD1;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border: 1px solid #477FD1;
  transition: 0.3s all ease;
}
.relaited__inner .slick-next.slick-arrow:hover {
  border: 1px solid #fff;
  transition: 0.3s all ease;
}
.relaited__inner .slick-next.slick-arrow::before {
  display: none;
}
.relaited__inner .slick-next.slick-arrow::after {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 40px;
  position: absolute;
  z-index: 1;
  right: -20px;
  bottom: -20px;
  background-image: url(../icons/03-sub-button.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.relaited__inner .item {
  position: relative;
  width: 350px;
  height: 500px;
  background-color: #477FD1;
  transition: 0.3s all ease;
  border-radius: 20px;
  padding: 30px 0 20px 20px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.relaited__inner .item:before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 220px;
  -webkit-mask-image: url(../img/15-wave.svg);
          mask-image: url(../img/15-wave.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #E4EEF8;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.relaited__inner .item span {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 0.875rem;
  line-height: normal;
  font-family: "Regular", sans-serif;
  padding-right: 20px;
  display: block;
  transition: 0.3s all ease;
}
.relaited__inner .item a.more {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: block;
  border: 1px solid #23252A;
  border-radius: 25px;
}
.relaited__inner .item a.more::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #23252A;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 30%;
          mask-size: 30%;
  transition: 0.3s all ease;
}
.relaited__inner .item a.more:hover {
  transition: 0.3s all ease;
  border: 1px solid #477FD1;
  background-color: #477FD1;
}
.relaited__inner .item a.more:hover::after {
  background-color: #fff;
  transition: 0.3s all ease;
}
.relaited__inner .item a.head {
  width: 100%;
  height: 95px;
  position: relative;
  display: block;
  padding-right: 20px;
  text-decoration: none;
  margin-bottom: 10px;
}
.relaited__inner .item a.head h6 {
  color: #fff;
  font-size: 1.25rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
}
.relaited__inner .item a.head::after {
  content: "";
  width: calc(100% - 30px);
  height: 80px;
  -webkit-mask-image: url(../img/16-shadow.svg);
          mask-image: url(../img/16-shadow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  transition: 0.3s all ease;
}
.relaited__inner .item .image {
  width: 350px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0px;
}
.relaited__inner .item .image img {
  width: 100%;
  height: auto;
}
.relaited__inner .item:hover {
  transition: 0.3s all ease;
  background-color: #fff;
}
.relaited__inner .item:hover span {
  transition: 0.3s all ease;
  color: #23252A;
}
.relaited__inner .item:hover a.head {
  color: #23252A;
}
.relaited__inner .item:hover a.head h6 {
  transition: 0.3s all ease;
  color: #23252A;
}
.relaited__inner .item:hover a.head::after {
  background-color: #477FD1;
}
.relaited__inner .item:hover a.head:hover h6 {
  color: #477FD1;
  transition: 0.3s all ease;
}

/*============CASES===================*/
.cases {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  z-index: 2;
  background-image: url(../img/back-wave.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 60px;
  margin-bottom: 0;
}
.cases .cases-all {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}
.cases .cases-all a.button {
  position: relative;
  margin-left: auto;
  font-size: 1.25rem;
  font-family: "Regular", sans-serif;
  height: 50px;
  max-width: 220px;
}
.cases .cases-all a.button::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 20px;
  display: block;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: 2px;
  transition: 0.3s all ease;
}
.cases .cases-all a.button:hover::after {
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.cases .cases-all a.button::before {
  position: absolute;
  height: 80px;
  width: 300px;
  content: "";
  bottom: -20px;
  right: -20px;
  background-image: url(../img/10-overlines.svg);
}
.cases__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.cases__inner .slick-prev.slick-arrow,
.cases__inner .slick-next.slick-arrow {
  background-color: #71BBFF;
  right: 0;
  top: 160px;
  bottom: 0;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #477FD1;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border: 1px solid #477FD1;
  transition: 0.3s all ease;
  opacity: 0.2;
}
.cases__inner .slick-prev.slick-arrow:hover,
.cases__inner .slick-next.slick-arrow:hover {
  border: 1px solid #fff;
  transition: 0.3s all ease;
  opacity: 1;
}
.cases__inner .slick-prev.slick-arrow::before,
.cases__inner .slick-next.slick-arrow::before {
  display: none;
}
.cases__inner .slick-prev.slick-arrow::after,
.cases__inner .slick-next.slick-arrow::after {
  display: none;
}
.cases__inner .slick-prev.slick-arrow {
  transform: rotate(-180deg);
  right: auto;
  left: 0;
  top: 120px;
}
.cases__inner .over {
  display: none;
  padding: 0 10px;
}
.cases__inner .over.show {
  display: block !important;
}
.cases__inner .item {
  width: 100%;
  height: 300px;
  background-color: #E4EEF8;
  text-decoration: none;
  padding: 20px;
  border-radius: 20px;
  border-bottom-right-radius: 50px;
  background-image: url(../img/22-lines.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: inherit;
  position: relative;
}
.cases__inner .item.show {
  display: block !important;
}
.cases__inner .item .line {
  display: block;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 80px;
  transition: 0.3s all ease;
}
.cases__inner .item .line:hover {
  transition: 0.3s all ease;
}
.cases__inner .item .line:hover .text {
  color: #477FD1;
}
.cases__inner .item .line .text {
  font-size: 1rem;
  font-family: "SemiBold", sans-serif;
  color: #23252A;
  text-decoration: none;
  transition: 0.3s all ease;
}
.cases__inner .item .mini {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cases__inner .item a.more {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid #23252A;
  z-index: 2;
  transition: 0.3s all ease;
}
.cases__inner .item a.more::after {
  content: "";
  display: block;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #23252A;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 20%;
          mask-size: 20%;
  width: 100%;
  height: 100%;
  transition: 0.3s all ease;
}
.cases__inner .item a.more:hover {
  border: 1px solid #477FD1;
  background-color: #477FD1;
  transition: 0.3s all ease;
}
.cases__inner .item a.more:hover::after {
  background-color: #fff;
  transition: 0.3s all ease;
}

/*============SERVICES-PAGE===================*/
.service-addon {
  overflow: hidden;
  padding-top: 0;
}
.service-addon ul {
  padding: 20px 0;
  margin: 0;
  padding-top: 0;
}
.service-addon ul li {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-family: "Regular", sans-serif;
  line-height: 2.188rem;
}
.service-addon ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-color: #477FD1;
  display: block;
  border-radius: 5px;
  flex-shrink: 0;
}
.service-addon p {
  font-size: 1rem;
  margin-bottom: 50px;
  line-height: 1.75rem;
}
.service-addon p b {
  font-weight: normal;
  font-family: "SemiBold", sans-serif;
  font-size: inherit;
  line-height: inherit;
}

.service-offer {
  overflow: hidden;
  padding-top: 100px;
}
.service-offer__inner {
  display: grid;
  grid-template-columns: 19% 19% 19% 19% 19%;
  justify-content: space-between;
  align-items: flex-start;
}
.service-offer .item {
  background-color: #477FD1;
  background-image: url(../img/33-vawe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 40px;
  padding: 30px 20px;
  margin-bottom: 50px;
  transition: 0.3s all ease;
}
.service-offer .item:hover {
  margin-top: -10px;
  transition: 0.3s all ease;
}
.service-offer .item .icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin: 0 auto;
  margin-bottom: 30px;
}
.service-offer .item .icon::after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../icons/19-icon-service.svg);
          mask-image: url(../icons/19-icon-service.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: block;
  background-color: #477FD1;
}
.service-offer .item.one {
  background-image: url(../img/33-vawe.svg);
}
.service-offer .item.one .icon::after {
  -webkit-mask-image: url(../icons/19-icon-service.svg);
          mask-image: url(../icons/19-icon-service.svg);
}
.service-offer .item.two {
  background-image: url(../img/34-vawe.svg);
}
.service-offer .item.two .icon::after {
  -webkit-mask-image: url(../icons/20-icon-service.svg);
          mask-image: url(../icons/20-icon-service.svg);
}
.service-offer .item.three {
  background-image: url(../img/35-vawe.svg);
}
.service-offer .item.three .icon::after {
  -webkit-mask-image: url(../icons/21-icon-service.svg);
          mask-image: url(../icons/21-icon-service.svg);
}
.service-offer .item.four {
  background-image: url(../img/36-vawe.svg);
}
.service-offer .item.four .icon::after {
  -webkit-mask-image: url(../icons/22-icon-service.svg);
          mask-image: url(../icons/22-icon-service.svg);
}
.service-offer .item.five {
  background-image: url(../img/37-vawe.svg);
}
.service-offer .item.five .icon::after {
  -webkit-mask-image: url(../icons/23-icon-service.svg);
          mask-image: url(../icons/23-icon-service.svg);
}
.service-offer .item .header {
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  text-transform: uppercase;
  height: 40px;
  font-family: "ArialBlack", sans-serif;
}
.service-offer .item p.text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  height: 85px;
  line-height: 22px;
}

.service-stages {
  padding-top: 0;
  overflow: hidden;
}
.service-stages__before-inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.service-stages .left {
  width: 70%;
  padding-left: 40px;
  order: 1;
}
.service-stages .right {
  width: 30%;
  order: 0;
}
.service-stages .right img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  height: auto;
  display: block;
}
.service-stages p {
  font-size: 1rem;
  line-height: 1.75rem;
}
.service-stages__inner {
  background-image: url(../img/39-line.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.service-stages .item {
  width: 350px;
  display: block;
  height: auto;
}
.service-stages .item:nth-child(even) {
  margin-top: 150px;
}
.service-stages .item .number {
  color: #E4EEF8;
  font-size: 9rem;
  font-family: "ArialBlack", sans-serif;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}
.service-stages .item h6 {
  width: 100%;
  text-align: center;
  font-family: "ArialBlack", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.service-stages .item span {
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-family: "Medium", sans-serif;
  text-align: center;
  display: block;
  width: 100%;
}

.service-slider {
  padding-top: 150px;
  overflow: hidden;
}
.service-slider .carousel.slide {
  padding-bottom: 80px;
}
.service-slider .carousel.slide img {
  max-width: 800px;
  height: auto;
  display: block;
  margin-left: 120px;
  border-radius: 40px;
}
.service-slider .carousel-item {
  background-color: #fff;
}
.service-slider .info {
  position: absolute;
  right: 10%;
  bottom: 80px;
  width: 550px;
  height: 250px;
  border-radius: 40px;
  background-color: #71BBFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-slider .info::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -20px;
  background-image: url(../img/40-lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: 80px;
  z-index: 2;
}
.service-slider .info:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #E4EEF8;
  z-index: 0;
  border-radius: 40px;
}
.service-slider .info h6 {
  text-transform: uppercase;
  font-size: 1.5rem;
  position: relative;
  font-family: "ArialBlack", sans-serif;
}
.service-slider .carousel-indicators {
  bottom: 0px;
}
.service-slider .carousel-indicators button {
  box-sizing: border-box;
  flex: none;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  border: 2px solid #71BBFF;
  opacity: 1;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  margin-right: 15px;
}
.service-slider .carousel-indicators button.active::after {
  content: "";
  background-color: #71BBFF;
  display: block;
  width: 110%;
  height: 110%;
  border-radius: 50%;
}
.service-slider .carousel-control-prev {
  opacity: 1;
}
.service-slider .carousel-control-prev .carousel-control-prev-icon {
  opacity: 1;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background-color: #477FD1;
  background-image: none;
}
.service-slider .carousel-control-prev .carousel-control-prev-icon:after {
  content: "";
  -webkit-mask-image: url(../icons/02-arrow.svg);
          mask-image: url(../icons/02-arrow.svg);
  display: block;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: inherit;
          mask-size: inherit;
  background-color: #fff;
  width: 15px;
  height: 15px;
}
.service-slider .carousel-control-next {
  opacity: 1;
}
.service-slider .carousel-control-next .carousel-control-next-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background-color: #477FD1;
  background-image: none;
  opacity: 1;
}
.service-slider .carousel-control-next .carousel-control-next-icon:after {
  content: "";
  -webkit-mask-image: url(../icons/02-arrow.svg);
          mask-image: url(../icons/02-arrow.svg);
  display: block;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: inherit;
          mask-size: inherit;
  background-color: #fff;
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
}

.service-profit {
  margin-bottom: 150px;
  padding-top: 150px;
  background-image: url(../img/41-wave.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  overflow: hidden;
}
.service-profit__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  background-image: url(../icons/24-icon-profit.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%;
}
.service-profit__inner .left {
  width: 25%;
}
.service-profit__inner .right {
  width: 25%;
}
.service-profit .item-head {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  margin-bottom: 10px;
}
.service-profit .item-text {
  font-size: 0.875rem;
  margin-bottom: 100px;
}

.simple-form.reg {
  background-image: none;
}
.simple-form.reg h4 {
  margin-bottom: 0;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  font-family: "ArialBlack", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
}
.simple-form.reg form {
  justify-content: space-between;
  padding: 80px;
  display: flex;
  flex-wrap: wrap;
}
.simple-form.reg form h4 {
  margin-bottom: 0;
  height: 90px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
}
.simple-form.reg form h4 span {
  font-size: 1.875rem;
  color: #23252A;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  position: relative;
  z-index: 2;
}
.simple-form.reg form h4::after {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  z-index: 1;
  background-image: url(../img/10-overlines.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.simple-form.reg form .left {
  width: 50%;
}
.simple-form.reg form .right {
  display: block;
  width: 50%;
  margin-top: -90px;
}
.simple-form.reg form .right img {
  width: 80%;
  height: auto;
  display: block;
  margin-left: auto;
}
.simple-form.reg form span.text {
  width: 100%;
  font-size: 1.313rem;
  color: #23252A;
  line-height: 1.875rem;
  display: block;
  max-width: 680px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.simple-form.reg form input[type=text],
.simple-form.reg form input[type=email],
.simple-form.reg form input[type=tel],
.simple-form.reg form input[type=email] {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #23252A;
  display: flex;
  width: 100%;
  max-width: 450px;
  height: 60px;
  margin-bottom: 15px;
  font-size: 1.313rem;
  padding-left: 0;
}
.simple-form.reg form input[type=text]:focus,
.simple-form.reg form input[type=email]:focus,
.simple-form.reg form input[type=tel]:focus,
.simple-form.reg form input[type=email]:focus {
  outline: none;
}
.simple-form.reg form label {
  width: 100%;
  padding-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 40px;
}
.simple-form.reg form label input[type=checkbox] {
  position: absolute;
  top: 40px;
  left: 12px;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}
.simple-form.reg form label .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background-color: #477FD1;
  cursor: pointer;
  margin-right: 10px;
}
.simple-form.reg form label .checkbox::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  background-color: transparent;
  transition: 0.3s all ease;
}
.simple-form.reg form label input[type=checkbox]:checked ~ .checkbox:after {
  background-color: #fff;
}
.simple-form.reg form label span {
  font-size: 1rem;
  color: #23252A;
}
.simple-form.reg form label span a {
  color: #23252A;
  font-size: 1rem;
  text-decoration: underline;
  transition: 0.3s all ease;
}
.simple-form.reg form label span a:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
.simple-form.reg form button[type=submit] {
  width: 300px;
  border: 1px solid #477FD1;
  height: 60px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  background-color: #477FD1;
  cursor: pointer;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-family: "Medium", sans-serif;
}
.simple-form.reg form button[type=submit] span {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-family: "Medium", sans-serif;
}
.simple-form.reg form button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: transparent;
  color: #477FD1;
}
.simple-form.reg form button[type=submit]:hover span {
  color: #477FD1;
  transition: 0.3s all ease;
}
.simple-form form {
  background-image: url(../img/08-gex.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: inherit;
  border-radius: 40px;
  background-color: #E4EEF8;
  margin-bottom: 0;
  padding: 60px 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.simple-form form h4 {
  margin-bottom: 60px;
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
}
.simple-form form h4 span {
  font-size: 1.5rem;
  color: #23252A;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  position: relative;
  z-index: 2;
}
.simple-form form h4::after {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  z-index: 1;
  background-image: url(../img/10-overlines.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.simple-form form span.text {
  width: 100%;
  font-size: 1.313rem;
  color: #23252A;
  line-height: 1.875rem;
  display: block;
  max-width: 680px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.simple-form form input[type=text],
.simple-form form input[type=email],
.simple-form form input[type=tel] {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #23252A;
  display: flex;
  width: 100%;
  max-width: 600px;
  height: 50px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  padding-left: 0;
}
.simple-form form input[type=text]:focus,
.simple-form form input[type=email]:focus,
.simple-form form input[type=tel]:focus {
  outline: none;
}
.simple-form form input[type=text],
.simple-form form input[type=tel] {
  max-width: 270px;
  margin-right: 80px;
}
.simple-form form label {
  width: 100%;
  padding-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
}
.simple-form form label input[type=checkbox] {
  position: absolute;
  top: 40px;
  left: 12px;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}
.simple-form form label .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background-color: #477FD1;
  cursor: pointer;
  margin-right: 10px;
}
.simple-form form label .checkbox::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  background-color: transparent;
  transition: 0.3s all ease;
}
.simple-form form label input[type=checkbox]:checked ~ .checkbox:after {
  background-color: #fff;
}
.simple-form form label span {
  font-size: 0.875rem;
  color: #23252A;
  line-height: 1.625rem;
}
.simple-form form label span a {
  color: #23252A;
  font-size: 0.875rem;
  text-decoration: underline;
  transition: 0.3s all ease;
  line-height: 1.625rem;
}
.simple-form form label span a:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
.simple-form form button[type=submit] {
  width: 240px;
  border: 1px solid #477FD1;
  height: 50px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  background-color: #477FD1;
  cursor: pointer;
}
.simple-form form button[type=submit] span {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-family: "Medium", sans-serif;
}
.simple-form form button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: transparent;
}
.simple-form form button[type=submit]:hover span {
  color: #477FD1;
  transition: 0.3s all ease;
}

.service-tariffs {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
  overflow-x: hidden;
  overflow-y: clip;
}
.service-tariffs::before {
  z-index: -1;
  content: "";
  position: absolute;
  display: block;
  width: 1500px;
  top: 20%;
  left: -20%;
  height: 2000px;
  background-image: url(../img/11-back.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.service-tariffs__inner {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  justify-content: space-between;
}
.service-tariffs__additioanl {
  display: block;
}
.service-tariffs__additioanl .item-content {
  background-color: #477FD1;
  border-radius: 50px;
  margin-bottom: 50px;
  margin-top: 50px;
  padding: 100px 50px;
  padding-bottom: 50px;
  background-image: url(../img/simple-back.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: inherit;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.service-tariffs__additioanl .item-content p {
  margin-bottom: 20px;
  font-size: 1.125rem;
}
.service-tariffs__additioanl .item-content p b {
  font-weight: normal;
  font-family: "Medium", sans-serif;
  font-size: inherit;
  color: inherit;
}
.service-tariffs__additioanl .item-content.hidden {
  height: 500px;
  overflow: hidden;
}
.service-tariffs__additioanl .item-content.hidden::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 400px;
  width: 100%;
  display: block;
  background-image: url(../img/gradient.png);
  background-repeat: repeat-x;
}
.service-tariffs__additioanl .item-content.hidden .more {
  display: flex;
}
.service-tariffs__additioanl .item-content .more {
  display: none;
  position: absolute;
  width: 200px;
  height: 80px;
  font-size: 1.25rem;
  font-family: "Medium", sans-serif;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}
.service-tariffs__additioanl .item-content .more .btn {
  width: 60px;
  height: 60px;
  background-color: transparent;
  transition: 0.3s all ease;
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 0;
}
.service-tariffs__additioanl .item-content .more .btn::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  -webkit-mask-image: url(../icons/08-arrow.svg);
          mask-image: url(../icons/08-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: inherit;
          mask-size: inherit;
  background-color: #fff;
  transition: 0.3s all ease;
}
.service-tariffs__additioanl .item-content .more .btn:hover {
  background-color: #fff;
  transition: 0.3s all ease;
  border: 1xp solid #477FD1;
}
.service-tariffs__additioanl .item-content .more .btn:hover::after {
  background-color: #477FD1;
  transition: 0.3s all ease;
}
.service-tariffs__additioanl .item-content .left,
.service-tariffs__additioanl .item-content .right {
  display: block;
  width: 100%;
  max-width: 49%;
}
.service-tariffs__additioanl .item-content .center {
  width: 100%;
}
.service-tariffs__additioanl .item-content .center table {
  border: 1px solid #fff;
  border-collapse: collapse;
  padding: 5px;
  border-radius: 30px;
  margin-bottom: 40px;
}
.service-tariffs__additioanl .item-content .center table th {
  border: 1px solid #fff;
  padding: 15px;
  text-align: left;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  font-weight: normal;
  font-family: "Medium", sans-serif;
  font-size: 1.25rem;
}
.service-tariffs__additioanl .item-content .center table th font {
  color: #fff;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-align: left;
}
.service-tariffs__additioanl .item-content .center table td {
  border: 1px solid #fff;
  text-align: center;
  padding: 20px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: normal;
}
.service-tariffs__additioanl .item-content .center table tbody b {
  font-weight: normal;
  font-family: "Bold", sans-serif;
  font-size: inherit;
  color: #fff;
}
.service-tariffs__additioanl .item-content .center table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.1);
}
.service-tariffs__additioanl .item-content .center table tbody tr td:first-child {
  text-align: left;
}
.service-tariffs__additioanl .item-content h5,
.service-tariffs__additioanl .item-content h6 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Medium", sans-serif;
  height: auto;
  margin-bottom: 30px;
}
.service-tariffs__additioanl .item-content h5 {
  font-size: 1.75rem;
}
.service-tariffs__additioanl .item-content span {
  display: block;
  margin-bottom: 50px;
  color: #fff;
}
.service-tariffs__additioanl .item-content h6 {
  height: auto;
}
.service-tariffs__additioanl .item-content ul {
  padding: 0;
  margin: 0;
  margin-bottom: 50px;
}
.service-tariffs__additioanl .item-content ul li {
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 40px;
  color: #fff;
  display: block;
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.service-tariffs__additioanl .item-content ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background-color: #fff;
  display: block;
  top: 8px;
  left: 0;
  position: absolute;
}
.service-tariffs__additioanl .item-content ul li b {
  font-weight: normal;
  color: #fff;
  font-family: "SemiBold", sans-serif;
  font-size: 1.125rem;
}
.service-tariffs__additioanl .item-content p {
  color: #fff;
}
.service-tariffs .item {
  width: 100%;
  max-width: 450px;
  background-image: url(../icons/09-lines-one.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #477FD1;
  padding: 40px 35px;
  border-radius: 20px;
  margin-bottom: 70px;
  position: relative;
}
.service-tariffs .item h6 {
  color: #fff;
  text-transform: uppercase;
  font-family: "Bold", sans-serif;
  font-size: 2rem;
  margin-bottom: 50px;
}
.service-tariffs .item .icon {
  position: absolute;
  width: 130px;
  height: 130px;
  top: -35px;
  right: 10px;
}
.service-tariffs .item .icon img {
  width: 130px;
  height: 130px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-tariffs .item ul {
  padding: 0;
  margin: 0;
}
.service-tariffs .item ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 1.275rem;
  color: #fff;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 50px;
}
.service-tariffs .item ul li span {
  font-size: 1.275rem;
  color: #fff;
}
.service-tariffs .item ul li span.time {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-family: "Regular", sans-serif;
  padding-top: 10px;
}
.service-tariffs .item .money {
  font-size: 1.375rem;
  color: #fff;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 30px;
}
.service-tariffs .item .button {
  background-color: transparent;
  border: 1px solid #E4EEF8;
  width: 100%;
}
.service-tariffs .item .button:hover {
  background-color: #E4EEF8;
}

.service-reviews {
  padding-top: 100px;
  position: relative;
  padding-bottom: 50px;
  overflow: hidden;
}
.service-reviews:before {
  content: "";
  width: 600px;
  height: 70px;
  display: block;
  position: absolute;
  bottom: 80px;
  left: 20%;
  background-image: url(../icons/29-icon-lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}
.service-reviews .carousel-control-next-icon,
.service-reviews .carousel-control-prev-icon {
  width: 54px;
  height: 54px;
  border-radius: 27px;
  border: 1px solid #23252A;
  background-image: url(../icons/30-icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
}
.service-reviews .carousel-item-inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.service-reviews .carousel-item-inner img {
  display: block;
  width: 100px;
  height: 100px;
  opacity: 0.5;
}
.service-reviews .carousel-item-inner .text {
  width: calc(100% - 150px);
  padding-left: 30px;
}
.service-reviews .carousel-item-inner .text h6 {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  color: #23252A;
  margin-bottom: 15px;
}
.service-reviews .carousel-item-inner .text p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 80px;
  font-size: 0.875rem;
  margin-bottom: 30px;
}
.service-reviews .carousel-item-inner .text .under-line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.service-reviews .carousel-item-inner .text .under-line .more {
  cursor: pointer;
  color: #477FD1;
  transition: 0.3s all ease;
  border-bottom: 1px solid transparent;
}
.service-reviews .carousel-item-inner .text .under-line .more:hover {
  transition: 0.3s all ease;
  color: #23252A;
  border-bottom: 1px solid #23252A;
}
.service-reviews .carousel-control-prev-icon {
  transform: rotate(180deg);
}
.service-reviews .carousel {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  background-color: #E4EEF8;
  border-radius: 40px;
  padding: 100px 200px;
}

.faq {
  padding-top: 150px;
  overflow: hidden;
}
.faq .line {
  border-bottom: 1px solid #B8DDFF;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.faq .line.show .head .icon {
  transform: rotate(45deg);
  transition: 0.3s all ease;
}
.faq .line.show .text {
  display: block;
}
.faq .line .head {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.faq .line .head .number {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  font-size: 1.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #71BBFF;
  font-family: "ArialBlack", sans-serif;
}
.faq .line .head h6 {
  font-size: 1.25rem;
  width: calc(100% - 120px);
  padding-left: 30px;
  font-family: "SemiBold", sans-serif;
}
.faq .line .head .icon {
  width: 30px;
  height: 30px;
  position: relative;
  transition: 0.3s all ease;
  cursor: pointer;
}
.faq .line .head .icon span {
  width: 30px;
  height: 4px;
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  background-color: #23252A;
}
.faq .line .head .icon span:nth-child(2) {
  width: 4px;
  height: 30px;
  top: 0;
  left: 13px;
}
.faq .line .text {
  padding-top: 25px;
  display: none;
}
.faq .line .text p {
  font-size: 1rem;
}

.none {
  display: none !important;
}

.mobile-hide .hide-line {
  display: none;
}

.simple-header {
  padding-top: 40px;
  overflow: hidden;
}

.news-slider {
  position: relative;
  padding-bottom: 50px;
}
.news-slider img {
  display: block;
  height: 600px;
  display: block;
  width: 100%;
  border-radius: 20px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-slider .col-lg-12 {
  position: relative;
}
.news-slider .carousel-control-next-icon,
.news-slider .carousel-control-prev-icon {
  background-image: url(../icons/33-icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #fff;
}
.news-slider .carousel-control-prev-icon {
  transform: rotate(180deg);
}
.news-slider .carousel-control-next,
.news-slider .carousel-control-prev {
  max-width: 80px;
}
.news-slider .carousel-control-next {
  right: 34px;
}
.news-slider .carousel-control-prev {
  left: 34px;
}
.news-slider .carousel-item-inner {
  position: relative;
}
.news-slider .carousel-item-inner .inner {
  position: absolute;
  bottom: 0;
  left: 50px;
  width: calc(100% - 100px);
  height: 200px;
}
.news-slider .carousel-item-inner .inner .date {
  color: #fff;
  font-size: 1.25rem;
  height: 20px;
  margin-bottom: 30px;
}
.news-slider .carousel-item-inner .inner a.title {
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 2rem;
  line-height: 2rem;
  color: #fff;
  height: 140px;
  font-family: "ArialBlack", sans-serif;
}
.news-slider .carousel-indicators {
  bottom: -65px;
}
.news-slider .carousel-indicators button {
  border: 2px solid #71BBFF;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border-width: 2px;
  background-color: transparent;
  margin: 0px 10px;
  box-sizing: border-box;
  padding: 0;
  opacity: 1;
  outline: none;
}
.news-slider .carousel-indicators button.active {
  border: 2px solid #477FD1;
}
.news-slider .carousel-indicators button.active::after {
  content: "";
  background-color: #477FD1;
  display: block;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  margin-top: -1px;
  margin-left: -1px;
}

.news-line {
  padding-top: 30px;
  padding-bottom: 50px;
}
.news-line__inner {
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  justify-content: space-between;
  align-items: flex-start;
}
.news-line__inner .item {
  background-color: #E4EEF8;
  padding: 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  overflow: hidden;
}
.news-line__inner .item:before {
  opacity: 0.5;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #477FD1;
  -webkit-mask-image: url(../icons/09-lines-one.svg);
          mask-image: url(../icons/09-lines-one.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.news-line__inner .item:nth-child(2n):before {
  -webkit-mask-image: url(../icons/10-lines-two.svg);
          mask-image: url(../icons/10-lines-two.svg);
}
.news-line__inner .item:nth-child(3n):before {
  -webkit-mask-image: url(../icons/11-lines-three.svg);
          mask-image: url(../icons/11-lines-three.svg);
}
.news-line__inner .item a {
  position: relative;
}
.news-line__inner .item a img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0;
}
.news-line__inner .item .date {
  margin-top: -35px;
  background: #fff;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  height: 35px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1rem;
  color: #23252A;
  position: relative;
  margin-bottom: 15px;
}
.news-line__inner .item a.title {
  position: relative;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 65px;
  font-family: "Bold", sans-serif;
  font-size: 1rem;
  color: #23252A;
  transition: 0.3s all ease;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.news-line__inner .item a.title:hover {
  transition: 0.3s all ease;
  color: #477FD1;
}
.news-line__inner .item span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 65px;
  font-size: 0.875rem;
  line-height: 1.375rem;
  position: relative;
  margin-bottom: 20px;
  padding: 0 10px;
}
.news-line__inner .item a.more {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.125rem;
  font-family: "Medium", sans-serif;
  color: #23252A;
  text-decoration: none;
  transition: 0.3s all ease;
  margin-bottom: 20px;
  padding-left: 10px;
}
.news-line__inner .item a.more:after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  -webkit-mask-image: url(../icons/34-icon-arrow.svg);
          mask-image: url(../icons/34-icon-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #23252A;
  margin-left: 10px;
  margin-top: 2px;
  transition: 0.3s all ease;
}
.news-line__inner .item a.more:hover {
  transition: 0.3s all ease;
  color: #477FD1;
}
.news-line__inner .item a.more:hover::after {
  background-color: #477FD1;
  transition: 0.3s all ease;
  margin-left: 15px;
}

.simple-text {
  padding-top: 60px;
  overflow: hidden;
  padding-bottom: 60px;
}
.simple-text.no-p-top {
  padding-top: 0;
  padding-bottom: 0;
}
.simple-text p {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  margin-bottom: 30px;
}
.simple-text ul {
  padding: 0;
  margin: 0;
}
.simple-text ul li {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
.simple-text ul li:last-child {
  margin-bottom: 0;
}
.simple-text ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #477FD1;
  left: 0;
  top: 6px;
}

.single-new-head {
  padding-top: 50px;
}
.single-new-head .date {
  font-size: 1.125rem;
  color: #23252A;
  margin-bottom: 30px;
  font-family: "Medium", sans-serif;
  background-color: #F1F7FB;
  border-radius: 20px;
  padding: 5px 15px;
  max-width: 120px;
}
.single-new-head h1 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  color: #23252A;
  margin-bottom: 30px;
}
.single-new-head .main-image {
  margin-bottom: 20px;
}
.single-new-head .main-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}

.single-news-content {
  padding-bottom: 50px;
  background-image: url(../img/11-back.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 60%;
}
.single-news-content h2,
.single-news-content h3,
.single-news-content h4,
.single-news-content h5,
.single-news-content h6 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #23252A;
  font-family: "ArialBlack", sans-serif;
  margin-bottom: 30px;
  margin-top: 60px;
}
.single-news-content p {
  font-size: 1.125rem;
  line-height: 2rem;
  font-family: "Regular", sans-serif;
  margin-bottom: 30px;
}
.single-news-content img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  margin-bottom: 30px;
}
.single-news-content a {
  color: #477FD1;
  text-decoration: underline;
}
.single-news-content ul {
  padding: 0;
  padding-bottom: 30px;
}
.single-news-content ul li {
  font-size: 1.125rem;
  line-height: 2rem;
  font-family: "Regular", sans-serif;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.single-news-content ul li:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  display: block;
  background-color: #477FD1;
  transform: rotate(45deg);
  margin-right: 15px;
  flex-shrink: 0;
}

.single-article-head {
  padding-top: 50px;
}
.single-article-head__line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.single-article-head .date {
  font-size: 1.125rem;
  color: #23252A;
  margin-bottom: 30px;
  font-family: "Medium", sans-serif;
  background-color: #F1F7FB;
  border-radius: 20px;
  padding: 5px 15px;
}
.single-article-head .time {
  font-size: 1.125rem;
  color: #23252A;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background-color: #F1F7FB;
  border-radius: 20px;
  padding: 5px 10px 5px 5px;
  font-family: "Medium", sans-serif;
}
.single-article-head .time:before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(../icons/37-icon-time.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 5px;
}
.single-article-head h1 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  color: #23252A;
  margin-bottom: 30px;
}

.single-article-content {
  padding-bottom: 50px;
  background-image: url(../img/44-wave.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}
.single-article-content h2,
.single-article-content h3,
.single-article-content h4,
.single-article-content h5,
.single-article-content h6 {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #23252A;
  font-family: "ArialBlack", sans-serif;
  margin-bottom: 20px;
  margin-top: 50px;
}
.single-article-content p {
  font-size: 1rem;
  line-height: 1.75rem;
  font-family: "Regular", sans-serif;
  margin-bottom: 30px;
}
.single-article-content p.center {
  text-align: center;
}
.single-article-content img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  margin-bottom: 30px;
}
.single-article-content a {
  color: #477FD1;
  text-decoration: underline;
}
.single-article-content ul {
  padding: 0;
  margin: 0;
  padding-bottom: 30px;
}
.single-article-content ul li {
  font-size: 1rem;
  line-height: 1.75rem;
  font-family: "Regular", sans-serif;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
}
.single-article-content ul li:last-child {
  margin-bottom: 0;
}
.single-article-content ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: block;
  background-color: #477FD1;
  position: absolute;
  top: 8px;
  left: 0;
}
.single-article-content table {
  width: 100%;
}
.single-article-content table p {
  margin-bottom: 15px;
}
.single-article-content table,
.single-article-content th,
.single-article-content td {
  border: 1px solid #23252A;
}
.single-article-content table img,
.single-article-content th img,
.single-article-content td img {
  display: block;
  border-radius: 0;
  max-width: 50%;
  margin: 0 auto;
}
.single-article-content tr td {
  padding: 10px;
  vertical-align: top;
}
.single-article-content table {
  border-collapse: collapse;
  border-radius: 15px;
  border-style: hidden;
  /* hide standard table (collapsed) border */
  box-shadow: 0 0 0 1px #BFD2EF;
  /* this draws the table border  */
  margin-top: 5px;
  margin-bottom: 15px;
}
.single-article-content td {
  border: 1px solid #BFD2EF;
}

.stock-line {
  position: relative;
  padding-bottom: 30px;
}
.stock-line__inner {
  position: relative;
}
.stock-line__inner-line {
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  justify-content: space-between;
}
.stock-line__inner-line .item {
  padding: 20px;
  max-width: 450px;
  width: 100%;
  height: 350px;
  background-color: #477FD1;
  position: relative;
  border-radius: 20px;
  transition: 0.3s all ease;
  overflow: hidden;
  border: 1px solid rgba(71, 127, 209, 0.2);
  margin-bottom: 30px;
}
.stock-line__inner-line .item:first-child::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: none;
          mask-image: none;
  -webkit-mask-image: url(../icons/09-lines-one.svg);
          mask-image: url(../icons/09-lines-one.svg);
  transition: 0.3s all ease;
}
.stock-line__inner-line .item:nth-child(2n)::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: none;
          mask-image: none;
  -webkit-mask-image: url(../icons/10-lines-two.svg);
          mask-image: url(../icons/10-lines-two.svg);
  transition: 0.3s all ease;
}
.stock-line__inner-line .item:nth-child(3n)::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: none;
          mask-image: none;
  -webkit-mask-image: url(../icons/11-lines-three.svg);
          mask-image: url(../icons/11-lines-three.svg);
  transition: 0.3s all ease;
}
.stock-line__inner-line .item a.head {
  position: relative;
  z-index: 2;
  display: flex;
  height: 60px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  text-decoration: none;
}
.stock-line__inner-line .item a.head h3 {
  font-size: 1.125rem;
  color: #fff;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 20px;
  transition: 0.3s all ease;
}
.stock-line__inner-line .item p {
  position: relative;
  z-index: 2;
  color: #fff;
  transition: 0.3s all ease;
  display: flex;
  height: 70px;
  text-align: left;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-bottom: 15px;
  transition: 0.3s all ease;
  font-size: 1rem;
}
.stock-line__inner-line .item a.image {
  position: relative;
  z-index: 2;
  width: 95%;
  height: auto;
  left: -30px;
  display: block;
}
.stock-line__inner-line .item a.image img {
  width: 100%;
  height: auto;
}
.stock-line__inner-line .item .letter {
  position: absolute;
  top: 100px;
  left: -50px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 22rem;
  font-family: "ArialBlack", sans-serif;
  line-height: 250px;
  transition: 0.3s all ease;
}
.stock-line__inner-line .item a.link {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #477FD1;
  border: 1px solid #fff;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  transition: 0.3s all ease;
}
.stock-line__inner-line .item:hover {
  background-color: #fff;
  transition: 0.3s all ease;
}
.stock-line__inner-line .item:hover a.head h3 {
  color: #23252A;
  transition: 0.3s all ease;
}
.stock-line__inner-line .item:hover a.head:hover h3 {
  color: #477FD1;
  transition: 0.3s all ease;
}
.stock-line__inner-line .item:hover p {
  color: #23252A;
  transition: 0.3s all ease;
}
.stock-line__inner-line .item:hover.first::after, .stock-line__inner-line .item:hover.second::after, .stock-line__inner-line .item:hover.third::after {
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.stock-line__inner-line .item:hover .letter {
  color: rgba(113, 187, 255, 0.2);
  transition: 0.3s all ease;
}

.contacts {
  padding-top: 40px;
  background-image: url(../img/11-back.svg);
  background-repeat: no-repeat;
  background-position: -90% 0%;
  background-size: 70%;
  padding-bottom: 50px;
}
.contacts h2,
.contacts h3,
.contacts h4,
.contacts h5 {
  font-size: 1.25rem;
  font-family: "Bold", sans-serif;
  margin-bottom: 20px;
}
.contacts .right-text {
  background-color: #E4EEF8;
  padding: 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  background-image: url(../img/07-gex.svg);
  background-repeat: no-repeat;
  background-position: 101% -1%;
  background-size: 40%;
}
.contacts .item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  display: block;
}
.contacts .item__inner {
  padding-bottom: 30px;
}
.contacts .item__inner a,
.contacts .item__inner span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 30px;
  position: relative;
  padding-left: 40px;
}
.contacts .item__inner a::before,
.contacts .item__inner span::before {
  content: "";
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.contacts .item__inner a.phone::before,
.contacts .item__inner span.phone::before {
  background-image: url(../icons/63-icon.svg);
}
.contacts .item__inner a.email::before,
.contacts .item__inner span.email::before {
  background-image: url(../icons/62-icon.svg);
}
.contacts .item__inner a.gps::before,
.contacts .item__inner span.gps::before {
  background-image: url(../icons/61-icon.svg);
}
.contacts span {
  font-size: 1rem;
  line-height: 1.75rem;
}
.contacts a {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #23252A;
  text-decoration: none;
  transition: 0.3s all ease;
}
.contacts a:hover {
  transition: 0.3s all ease;
  color: #477FD1;
}
.contacts ul {
  margin: 0;
  padding: 0;
}
.contacts ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 10px;
}
.contacts .map-inner {
  padding-right: 20px;
  padding-bottom: 20px;
  background-color: #477FD1;
  border-radius: 20px;
  background-image: url(../icons/35-icon-lines.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: inherit;
}
.contacts .map-inner iframe {
  border-radius: 20px;
  overflow: hidden;
}
.contacts .show-on-map {
  display: none;
}

.articles {
  background-image: url(../img/44-wave.svg);
  background-repeat: no-repeat;
  background-position: top 20%;
  background-size: 100%;
}
.articles.popular {
  background-image: none;
}
.articles__inner {
  display: grid;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-template-columns: 32% 32% 32%;
}
.articles__inner .item {
  display: block;
  text-decoration: none;
  color: #23252A;
  width: 100%;
  height: 380px;
  margin-bottom: 50px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  background-color: #fff;
}
.articles__inner .item img {
  width: 100%;
  height: 250px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 5px;
  position: relative;
}
.articles__inner .item .text {
  position: relative;
  height: auto;
}
.articles__inner .item .text .date {
  margin-top: 20px;
  padding: 0 20px;
  height: 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  color: #23252A;
}
.articles__inner .item .text p {
  font-size: 1.125rem;
  font-family: "Medium", sans-serif;
  line-height: 1.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 65px;
  max-width: 600px;
  transition: 0.3s all ease;
  padding: 0 20px;
}
.articles__inner .item .text p:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
.articles__inner .item .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  padding: 20px;
}
.articles__inner .item .info::before {
  content: "";
  width: 100%;
  height: 250px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: rgba(35, 37, 42, 0.5);
}
.articles__inner .item .info .time {
  width: 100px;
  height: 30px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  margin-left: auto;
  margin-bottom: 220px;
  z-index: 1;
  position: relative;
  white-space: nowrap;
}
.articles__inner .item .info .time:before {
  content: "";
  width: 27px;
  height: 27px;
  display: block;
  margin-right: 10px;
  background-image: url(../icons/36-icon-time.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
}
.articles__inner .item .info .category {
  max-width: 150px;
  padding: 0 20px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  color: #fff;
  text-decoration: none;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.single-stock {
  overflow: hidden;
  padding-top: 40px;
  background-image: url(../img/11-back.svg);
  background-repeat: no-repeat;
  background-position: -90% 0%;
  background-size: 70%;
  padding-bottom: 60px;
}
.single-stock .text-contetn ul {
  margin: 0;
  padding: 0;
  margin-bottom: 50px;
  background-color: #F1F7FB;
  border-radius: 30px;
  padding: 20px;
}
.single-stock .text-contetn ul li {
  list-style-type: none;
  position: relative;
  font-size: 1rem;
  line-height: 1.75rem;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  padding-left: 20px;
}
.single-stock .text-contetn ul li:last-child {
  margin-bottom: 0;
}
.single-stock .text-contetn ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  background-color: #477FD1;
  position: absolute;
  top: 10px;
  left: 0;
}
.single-stock h3,
.single-stock h4,
.single-stock h5,
.single-stock h6 {
  font-size: 1, 125rem;
  text-transform: uppercase;
  color: #23252A;
  font-family: "ArialBlack", sans-serif;
  margin-bottom: 30px;
}
.single-stock p {
  font-size: 1rem;
  line-height: 1.75rem;
  font-family: "Regular", sans-serif;
  margin-bottom: 30px;
}
.single-stock p a {
  color: #477FD1;
  text-decoration: none;
  transition: 0.3s all ease;
  font-family: "Medium", sans-serif;
}
.single-stock p a:hover {
  text-decoration: none;
  color: #23252A;
  transition: 0.3s all ease;
}
.single-stock img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  margin-bottom: 30px;
}
.single-stock a {
  color: #477FD1;
  text-decoration: underline;
}
.single-stock ul.first {
  padding: 0;
  padding-bottom: 30px;
}
.single-stock ul.first li {
  font-size: 1.125rem;
  line-height: 2rem;
  font-family: "Regular", sans-serif;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.single-stock ul.first li:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  display: block;
  background-color: #477FD1;
  transform: rotate(45deg);
  margin-right: 15px;
  flex-shrink: 0;
}
.single-stock__num {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.single-stock .left,
.single-stock .right {
  width: 50%;
  padding-right: 20px;
}
.single-stock .left ul,
.single-stock .right ul {
  padding: 0;
  padding-top: 20px;
  padding-bottom: 30px;
}
.single-stock .left ul li,
.single-stock .right ul li {
  font-size: 1.125rem;
  line-height: 2rem;
  font-family: "Regular", sans-serif;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.single-stock .left ul li p,
.single-stock .right ul li p {
  font-size: 1.125rem;
  line-height: 2rem;
  font-family: "Regular", sans-serif;
}
.single-stock .left ul li span,
.single-stock .right ul li span {
  flex-shrink: 0;
  display: block;
  width: 60px;
  height: 60px;
  color: #E4EEF8;
  font-family: "ArialBlack", sans-serif;
  font-size: 5rem;
  margin-right: 10px;
}

.single-event {
  background-image: url(../img/02-lines.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: inherit;
  padding-bottom: 50px;
}
.single-event__first {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
}
.single-event__first .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  height: 90px;
  width: 100%;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #E4EEF8;
  max-width: 32%;
  margin-bottom: 20px;
}
.single-event__first .item_img {
  width: 100%;
  max-width: 32%;
  height: 90px;
}
.single-event__first .item_img img {
  width: 100%;
  height: 90px;
  border-radius: 20px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-event__first .item.when:before {
  background-image: url(../icons/38-icon-date.svg);
}
.single-event__first .item.where:before {
  background-image: url(../icons/39-icon-gps.svg);
}
.single-event__first .item.time:before {
  background-image: url(../icons/40-icon-time.svg);
}
.single-event__first .item.who {
  max-width: 66%;
}
.single-event__first .item.who:before {
  background-image: url(../icons/41-icon-user.svg);
}
.single-event__first .item:before {
  content: "";
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 30px;
  background-color: #477FD1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  flex-shrink: 0;
  margin-right: 20px;
}
.single-event__first .item span {
  display: block;
}
.single-event__first .item span.first {
  font-size: 1.25rem;
  font-family: "SemiBold", sans-serif;
  color: rgba(35, 37, 42, 0.5);
}
.single-event__first .item span.second {
  font-family: "SemiBold", sans-serif;
  color: #23252A;
  font-size: 1.125rem;
}
.single-event__second {
  display: block;
}
.single-event__second h2 {
  margin-bottom: 0;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  font-family: "ArialBlack", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
}
.single-event__second ul {
  padding: 0;
  margin: 0;
}
.single-event__second ul li {
  list-style-type: none;
  position: relative;
  font-size: 1rem;
  line-height: 1.75rem;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  padding-left: 20px;
}
.single-event__second ul li:last-child {
  margin-bottom: 0;
}
.single-event__second ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  background-color: #477FD1;
  position: absolute;
  top: 10px;
  left: 0;
}
.single-event__second .left ul {
  padding: 0;
  margin: 0;
}
.single-event__second .left ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-left: 35px;
  position: relative;
  margin-bottom: 20px;
}
.single-event__second .left ul li p {
  font-size: 1.25rem;
  font-family: "Regular", sans-serif;
  line-height: 2.188rem;
  margin-bottom: 5px;
}
.single-event__second .left ul li span {
  display: block;
  opacity: 0.7;
}
.single-event__second .left ul li:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #477FD1;
  border-radius: 4px;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 10px;
}
.single-event__second .right {
  width: 30%;
  margin-top: -180px;
}
.single-event__second .right img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}
.single-event__second .right img:nth-child(1) {
  margin-bottom: 100px;
}
.single-event__second .right img:nth-child(2) {
  margin-bottom: 50px;
}

.spickers {
  overflow: hidden;
  padding-top: 150px;
}
.spickers .item-over .item {
  max-width: 480px;
  height: 600px;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
}
.spickers .item-over .item h5 {
  font-size: 1.375rem;
  color: #23252A;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 10px;
}
.spickers .item-over .item span {
  display: block;
  font-size: 0.85rem;
  font-family: "Regular", sans-serif;
}
.spickers .item-over .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}
.spickers .item-over .item .info {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 240px;
  background-image: url(../icons/43-icon-vawe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-position: top;
  z-index: 2;
  padding: 120px 30px 30px 30px;
}
.spickers .slick-next.slick-arrow {
  background-color: #71BBFF;
  right: 0;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #477FD1;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border: 1px solid #477FD1;
  transition: 0.3s all ease;
  top: 50%;
}
.spickers .slick-next.slick-arrow:hover {
  border: 1px solid #fff;
  transition: 0.3s all ease;
}
.spickers .slick-next.slick-arrow::before {
  display: none;
}
.spickers .slick-prev.slick-arrow {
  transform: rotate(180deg);
  background-color: #71BBFF;
  left: 0;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #477FD1;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  border: 1px solid #477FD1;
  transition: 0.3s all ease;
  top: calc(50% - 30px);
}
.spickers .slick-prev.slick-arrow:hover {
  border: 1px solid #fff;
  transition: 0.3s all ease;
}
.spickers .slick-prev.slick-arrow::before {
  display: none;
}
.spickers ul {
  padding: 0;
  margin: 0;
}
.spickers ul li {
  list-style-type: none;
  margin: 0;
  padding: 0 10px;
  font-size: 0.875rem;
  line-height: 1.75rem;
  text-align: center;
}
.spickers ul li img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 20px;
}
.spickers ul li span {
  display: block;
  font-family: "Bold", sans-serif;
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 10px;
}

.cases-single {
  padding-bottom: 50px;
}
.cases-single__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.cases-single__row .item {
  margin-bottom: 45px;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  max-width: 32%;
}
.cases-single__row .item:nth-child(1), .cases-single__row .item:nth-child(2) {
  max-width: 48%;
}
.cases-single__row .item:nth-child(3) {
  max-width: 100%;
}
.cases-single__row .item:nth-child(3) .top {
  height: 125px;
}
.cases-single__row .item .top {
  background-color: #E4EEF8;
  padding: 20px;
  height: 200px;
}
.cases-single__row .item .top a {
  color: #23252A;
  text-decoration: none;
  transition: 0.3s all ease;
}
.cases-single__row .item .top a:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
.cases-single__row .item .top h3 {
  font-size: 1.125rem;
  font-family: "ArialBlack", sans-serif;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.cases-single__row .item .top p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.375rem;
  font-family: "Regular", sans-serif;
}
.cases-single__row .item .bottom {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.cases-single__row .item .bottom:hover img {
  transform: scale(1.05);
  transition: 1s all ease;
}
.cases-single__row .item .bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s all ease;
}
.cases-single__row .item .bottom a.more {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #477FD1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: 0.3s all ease;
  border: 0;
}
.cases-single__row .item .bottom a.more:after {
  content: "";
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  display: block;
  width: 15px;
  height: 15px;
  transition: 0.3s all ease;
}
.cases-single__row .item .bottom a.more:hover {
  background-color: #fff;
  transition: 0.3s all ease;
}
.cases-single__row .item .bottom a.more:hover:after {
  background-color: #23252A;
  transition: 0.3s all ease;
}

.project {
  overflow: hidden;
  padding-top: 0;
  margin-bottom: 50px;
}
.project__inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.project .left {
  width: 48%;
}
.project .left .item {
  padding: 20px;
  border-radius: 30px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-bottom: 20px;
  background-color: #E4EEF8;
}
.project .left .item:last-child {
  margin-bottom: 0;
}
.project .left .item .icon {
  border-radius: 30px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project .left .item .icon img {
  width: 40px;
  height: 40px;
  display: block;
}
.project .left .item .text {
  width: calc(100% - 110px);
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.project .left .item .text h6 {
  width: 100%;
  font-size: 1.125rem;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 10px;
}
.project .left .item .text span {
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.75rem;
}
.project .right {
  height: 100%;
  width: 48%;
  display: block;
  background-color: #E4EEF8;
  border-radius: 30px;
  padding: 20px 30px;
}
.project .right p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 15px;
}
.project .right ul {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.project .right ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.75rem;
  border-radius: 15px;
  margin-bottom: 10px;
  background-color: #477FD1;
  list-style-type: none;
  padding: 5px 10px;
  color: #fff;
}
.project .right ul li:last-child {
  margin-bottom: 0;
}

.todo {
  overflow: hidden;
  background-image: url(../img/11-back.svg);
  background-repeat: no-repeat;
  background-position: -50% 0;
  background-size: 80%;
  padding-top: 0;
  padding-bottom: 50px;
}
.todo__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.todo .left {
  width: 60%;
  padding-bottom: 50px;
}
.todo .right {
  width: 35%;
}
.todo .long {
  width: 100%;
}
.todo p {
  font-size: 1rem;
  line-height: 1.75rem;
  font-family: "Regular", sans-serif;
  margin-bottom: 30px;
}
.todo ul {
  padding: 0;
  margin: 0;
}
.todo ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-left: 25px;
  position: relative;
  margin-bottom: 30px;
}
.todo ul li p {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  margin-bottom: 5px;
}
.todo ul li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #477FD1;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 8px;
}

.result {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 50px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.result__line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.result p {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 30px;
  background-color: #F1F7FB;
  max-width: 55%;
}
.result ul {
  margin: 0;
  padding: 0;
  max-width: 46%;
}
.result ul li {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 1rem;
  border-radius: 20px;
  background-color: #477FD1;
  margin-bottom: 20px;
  padding: 10px;
  padding-right: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowr;
}
.result ul li::before {
  content: "!";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
  font-size: 1.12rem;
  font-family: "SemiBold", sans-serif;
  color: #477FD1;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.single-career {
  overflow: hidden;
  padding-bottom: 50px;
  position: relative;
}
.single-career::after {
  content: "";
  top: 0;
  right: -200px;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../img/20-line-black.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 50%;
  z-index: -1;
}
.single-career p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.75rem;
}
.single-career .line__first {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  padding: 40px 0;
  padding-bottom: 0;
}
.single-career .line__first img {
  width: auto;
  height: auto;
}
.single-career .line__second {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  background-color: #E4EEF8;
  padding: 30px 20px;
  border-radius: 30px;
  background-image: url(../img/07-gex.svg);
  background-repeat: no-repeat;
  background-position: top right;
  margin-top: 50px;
}
.single-career .line__second .item {
  text-align: center;
  width: 190px;
}
.single-career .line__second .item .icon {
  margin: 0 auto;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 40px;
  background-color: #477FD1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.single-career .line__second .item .icon img {
  width: 40px;
  height: 40px;
}
.single-career .line__second .item span {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  height: 60px;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: #23252A;
}
.single-career .line__second .item p {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-family: "Bold", sans-serif;
}

.single-career-text {
  margin-bottom: 50px;
}
.single-career-text .superjob {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.single-career-text .superjob .item {
  margin: 0 20px;
  width: 150px;
  height: 150px;
  opacity: 0.8;
  transition: 0.3s all ease;
}
.single-career-text .superjob .item:hover {
  opacity: 1;
  transition: 0.3s all ease;
}
.single-career-text h4 {
  font-size: 1.25rem;
  font-family: "ArialBlack", sans-serif;
  color: #23252A;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.single-career-text p {
  display: block;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.75rem;
}

.advantages {
  padding-top: 20px;
  overflow: hidden;
  padding-bottom: 5px;
}
.advantages__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.advantages__inner .item {
  width: 48%;
  display: block;
  padding: 20px;
  position: relative;
  margin-bottom: 50px;
  background-color: #E4EEF8;
  border-radius: 30px;
  background-image: url(../img/07-gex.svg);
  background-repeat: no-repeat;
  background-position: top right;
}
.advantages__inner .item h6 {
  font-size: 1.125rem;
  font-family: "ArialBlack", sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.advantages__inner .item p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.75rem;
}

.vacancies {
  overflow: hidden;
  padding-top: 40px;
}
.vacancies__inner {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  justify-content: space-between;
  align-items: center;
}
.vacancies__inner .item {
  background-color: #E4EEF8;
  border-radius: 20px;
  padding: 30px 20px;
  padding-top: 50px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 60px;
  padding-bottom: 30px;
}
.vacancies__inner .item:before {
  content: "";
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  left: calc(50% - 40px);
  top: -40px;
  border-radius: 40px;
  background-image: url(../icons/60-icon-done.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  background-color: #477FD1;
}
.vacancies__inner .item h6 {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  height: 80px;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.vacancies__inner .item p {
  font-size: 1rem;
  height: 120px;
  margin-bottom: 20px;
  line-height: 1.75rem;
}
.vacancies__inner .item .button {
  width: 100%;
  height: 50px;
  font-size: 1rem;
}

.vacansy-frame {
  padding-top: 20px;
  background-image: url(../img/back-wave.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  padding-bottom: 50px;
}
.vacansy-frame h1 {
  font-size: 1.25rem;
  font-family: "ArialBlack", sans-serif;
  color: #23252A;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}
.vacansy-frame__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.vacansy-frame .left {
  width: 65%;
}
.vacansy-frame .right {
  width: 35%;
}
.vacansy-frame .right img {
  width: 100%;
  height: auto;
  display: block;
}
.vacansy-frame .subinfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
}
.vacansy-frame .subinfo li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.vacansy-frame .subinfo li img {
  width: 60px;
  height: 60px;
  display: block;
  margin-right: 20px;
}
.vacansy-frame .subinfo__header {
  font-size: 1.125rem;
  font-family: "SemiBold", sans-serif;
  height: 20px;
  margin-bottom: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  white-space: nowrap;
}
.vacansy-frame .subinfo__text {
  height: 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: "Regular", sans-serif;
}
.vacansy-frame .button {
  height: 50px;
  border-radius: 25px;
  width: 100%;
  max-width: 220px;
  font-size: 1rem;
}

.vacansy-about {
  padding-top: 50px;
  margin-top: -50px;
  background-color: #477FD1;
  padding-bottom: 100px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.vacansy-about h2 {
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 30px;
  font-family: "ArialBlack", sans-serif;
  text-transform: uppercase;
}
.vacansy-about p {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  color: #fff;
  margin-bottom: 30px;
}
.vacansy-about h6 {
  font-size: 1.125rem;
  font-family: "ArialBlack", sans-serif;
  color: #fff;
  margin-bottom: 30px;
}
.vacansy-about ul {
  padding: 0;
  margin: 0;
}
.vacansy-about ul li {
  color: #fff;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.125);
  padding: 10px 20px;
  border-radius: 25px;
  list-style-type: none;
  font-family: "Medium", sans-serif;
}
.vacansy-about ul li:last-child {
  margin-bottom: 0;
}

.vacansy-info {
  padding-top: 50px;
  margin-top: -50px;
  background-color: #71BBFF;
  padding-bottom: 0;
  background-color: #E4EEF8;
  border-radius: 50px;
  background-image: url(../img/07-gex.svg);
  background-repeat: no-repeat;
  background-position: top right;
}
.vacansy-info h3 {
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-family: "ArialBlack", sans-serif;
  text-transform: uppercase;
}
.vacansy-info p {
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  margin-bottom: 30px;
  font-size: 1rem;
}
.vacansy-info b {
  font-family: "SemiBold", sans-serif;
}
.vacansy-info ul {
  padding: 0;
  margin: 0;
  margin-bottom: 50px;
}
.vacansy-info ul li {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
.vacansy-info ul li:last-child {
  margin-bottom: 0;
}
.vacansy-info ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #477FD1;
  left: 0;
  top: 6px;
}

.vacansy-advantages {
  overflow: hidden;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.vacansy-advantages::after {
  content: "";
  top: 0;
  right: -200px;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../img/20-line-black.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 50%;
  z-index: -1;
}
.vacansy-advantages p {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  margin-bottom: 30px;
}
.vacansy-advantages.service-one ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 31% 31% 31%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.vacansy-advantages.service-one ul li {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #E4EEF8;
  border-radius: 30px;
  padding: 20px 15px;
  font-size: 1rem;
  line-height: 1.275rem;
  font-family: "SemiBold", sans-serif;
  color: #23252A;
  margin-bottom: 30px;
  position: relative;
  transition: 0.3s all ease;
  background-image: url(../img/07-gex.svg);
  background-repeat: no-repeat;
  background-position: 101% 0%;
  background-size: 70%;
}
.vacansy-advantages.service-one ul li span {
  display: block;
  text-align: center;
  height: 60px;
  width: 100%;
}
.vacansy-advantages.service-one ul li .icon {
  width: 60px;
  height: 60px;
  background-color: #477FD1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 30px;
}
.vacansy-advantages.vacansy-page ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 31% 31% 31%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.vacansy-advantages.vacansy-page ul li {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  background-color: #E4EEF8;
  border-radius: 20px;
  padding: 20px 15px;
  font-size: 1rem;
  line-height: 1.275rem;
  font-family: "SemiBold", sans-serif;
  color: #23252A;
  height: 80px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 50px;
  transition: 0.3s all ease;
}
.vacansy-advantages.vacansy-page ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #477FD1;
  display: block;
  position: absolute;
  left: 20px;
  top: calc(50% - 5px);
  transition: 0.3s all ease;
}
.vacansy-advantages.vacansy-page ul li:hover {
  transition: 0.3s all ease;
  background-color: #477FD1;
  color: #fff;
}
.vacansy-advantages.vacansy-page ul li:hover::before {
  background-color: #fff;
  transition: 0.3s all ease;
}

.products {
  padding-top: 40px;
  overflow: hidden;
}
.products__inner {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  justify-content: space-between;
  align-items: center;
}
.products .item {
  position: relative;
  width: 280px;
  height: 320px;
  background-color: #477FD1;
  transition: 0.3s all ease;
  border-radius: 20px;
  padding: 20px 0 15px 15px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.products .item:before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 220px;
  -webkit-mask-image: url(../img/15-wave.svg);
          mask-image: url(../img/15-wave.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top center;
          mask-position: top center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #E4EEF8;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.products .item span {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 0.875rem;
  line-height: normal;
  font-family: "Regular", sans-serif;
  padding-right: 20px;
  display: block;
  transition: 0.3s all ease;
}
.products .item a.more {
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: 15px;
  right: 10px;
  display: block;
  border: 1px solid #477FD1;
  border-radius: 25px;
  background-color: #477FD1;
}
.products .item a.more::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../icons/01-arrow.svg);
          mask-image: url(../icons/01-arrow.svg);
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 30%;
          mask-size: 30%;
  transition: 0.3s all ease;
}
.products .item a.more:hover {
  transition: 0.3s all ease;
  border: 1px solid #fff;
  background-color: #fff;
}
.products .item a.more:hover::after {
  background-color: #477FD1;
  transition: 0.3s all ease;
}
.products .item a.head {
  width: 100%;
  height: 95px;
  position: relative;
  display: block;
  padding-right: 20px;
  text-decoration: none;
  margin-bottom: 10px;
}
.products .item a.head h6 {
  color: #fff;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
}
.products .item a.head::after {
  content: "";
  width: calc(100% - 30px);
  height: 80px;
  -webkit-mask-image: url(../img/16-shadow.svg);
          mask-image: url(../img/16-shadow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  transition: 0.3s all ease;
}
.products .item .image {
  width: 250px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.products .item .image img {
  width: 100%;
  height: auto;
}
.products .item:hover {
  transition: 0.3s all ease;
  background-color: #fff;
}
.products .item:hover span {
  transition: 0.3s all ease;
  color: #23252A;
}
.products .item:hover a.head {
  color: #23252A;
}
.products .item:hover a.head h6 {
  transition: 0.3s all ease;
  color: #23252A;
}
.products .item:hover a.head::after {
  background-color: #477FD1;
}
.products .item:hover a.head:hover h6 {
  color: #477FD1;
  transition: 0.3s all ease;
}

.about-info {
  overflow: hidden;
}
.about-info__inner {
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about-info .item {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  background-color: #E4EEF8;
  position: relative;
  padding: 30px 20px;
  margin-bottom: 60px;
  padding-top: 50px;
  margin-top: 30px;
}
.about-info .item .icon {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #477FD1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -30px;
  left: calc(50% - 30px);
}
.about-info .item .icon img {
  width: 35px;
  height: 35px;
}
.about-info .item h6 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-family: "ArialBlack", sans-serif;
  margin-bottom: 20px;
  height: 40px;
}
.about-info .item p {
  margin-bottom: 0;
  text-align: left;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
}
.about-info-career__inner {
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about-info-career .item {
  height: 330px;
}
.about-info-career .item p {
  line-height: 1.75rem;
  text-align: left;
}

.history,
.service-stages-line {
  margin-top: -100px;
  padding-top: 100px;
  overflow: hidden;
  padding-bottom: 50px;
  margin-bottom: 50px;
  background-image: url(../img/back-wave.svg);
  background-repeat: no-repeat;
  background-position: 0 50px;
  background-size: cover;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.history .slick-next.slick-arrow,
.history .slick-prev.slick-arrow,
.service-stages-line .slick-next.slick-arrow,
.service-stages-line .slick-prev.slick-arrow {
  background-color: #71BBFF;
  right: 0;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #477FD1;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  transition: 0.3s all ease;
  opacity: 0.5;
  top: 50%;
}
.history .slick-next.slick-arrow:hover,
.history .slick-prev.slick-arrow:hover,
.service-stages-line .slick-next.slick-arrow:hover,
.service-stages-line .slick-prev.slick-arrow:hover {
  opacity: 1;
  transition: 0.3s all ease;
}
.history .slick-next.slick-arrow:before, .history .slick-next.slick-arrow:after,
.history .slick-prev.slick-arrow:before,
.history .slick-prev.slick-arrow:after,
.service-stages-line .slick-next.slick-arrow:before,
.service-stages-line .slick-next.slick-arrow:after,
.service-stages-line .slick-prev.slick-arrow:before,
.service-stages-line .slick-prev.slick-arrow:after {
  display: none;
}
.history .slick-next.slick-arrow,
.service-stages-line .slick-next.slick-arrow {
  right: 0;
}
.history .slick-prev.slick-arrow,
.service-stages-line .slick-prev.slick-arrow {
  transform: rotate(180deg);
  top: calc(50% - 40px);
  left: 0;
}
.history__inner .over,
.service-stages-line__inner .over {
  width: 100%;
}
.history__inner .item,
.service-stages-line__inner .item {
  width: 96%;
  height: 500px;
  background-color: #E4EEF8;
  transition: 0.3s all ease;
  border-radius: 20px;
  padding: 20px 10px;
  margin: 0 auto;
}
.history__inner .item p,
.service-stages-line__inner .item p {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  transition: 0.3s all ease;
  margin-bottom: 0;
}
.history__inner .item h6,
.service-stages-line__inner .item h6 {
  transition: 0.3s all ease;
  font-size: 2.188rem;
  font-family: "ArialBlack", sans-serif;
  margin-bottom: 20px;
}
.history__inner .item span,
.service-stages-line__inner .item span {
  transition: 0.3s all ease;
  font-family: "SemiBold", sans-serif;
  display: block;
  margin-bottom: 10px;
}
.history__inner .item:hover,
.service-stages-line__inner .item:hover {
  transition: 0.3s all ease;
  background-color: #477FD1;
}
.history__inner .item:hover h6,
.history__inner .item:hover p,
.history__inner .item:hover span,
.service-stages-line__inner .item:hover h6,
.service-stages-line__inner .item:hover p,
.service-stages-line__inner .item:hover span {
  color: #fff;
  transition: 0.3s all ease;
}

.service-stages-line {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.service-stages-line__inner {
  padding-top: 140px;
  padding-bottom: 140px;
}
.service-stages-line__inner .over {
  margin-top: 10px;
}
.service-stages-line__inner .item {
  height: 300px;
  transition: 0.3s all ease;
}
.service-stages-line__inner .item h6 {
  font-size: 1.85rem;
  font-family: "Bold", sans-serif;
  height: 70px;
}
.service-stages-line__inner .item:hover {
  margin-top: -10px;
  transition: 0.3s all ease;
}

.certificates {
  padding-top: 0;
  padding-bottom: 50px;
  overflow: hidden;
}
.certificates p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 30px;
}
.certificates__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.certificates__left {
  width: 50%;
}
.certificates__right {
  width: 50%;
  padding-left: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.certificates__right .item {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
.certificates__right .item img {
  width: 80%;
  height: auto;
}
.certificates .slick-next.slick-arrow,
.certificates .slick-prev.slick-arrow {
  background-color: #71BBFF;
  right: 0;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #477FD1;
  background-image: url(../icons/08-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  transition: 0.3s all ease;
  opacity: 0.5;
  top: 50%;
}
.certificates .slick-next.slick-arrow:hover,
.certificates .slick-prev.slick-arrow:hover {
  opacity: 1;
  transition: 0.3s all ease;
}
.certificates .slick-next.slick-arrow:before, .certificates .slick-next.slick-arrow:after,
.certificates .slick-prev.slick-arrow:before,
.certificates .slick-prev.slick-arrow:after {
  display: none;
}
.certificates .slick-next.slick-arrow {
  right: 0;
}
.certificates .slick-prev.slick-arrow {
  transform: rotate(180deg);
  top: calc(50% - 40px);
  left: 0;
}
.certificates__inner .item {
  display: block;
  width: 100%;
  max-width: 350px;
  padding: 0 5px;
  height: auto;
  transition: 0.3s all ease;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}
.certificates__inner .item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}

.partners {
  padding-top: 0px;
  padding-bottom: 50px;
  overflow: hidden;
}
.partners__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.partners__inner img {
  display: block;
  height: 60px;
  width: auto;
  margin: 0 30px;
  margin-bottom: 30px;
  opacity: 0.5;
  transition: 0.3s all ease;
}
.partners__inner img:hover {
  transition: 0.3s all ease;
  opacity: 1;
}

.leftbar {
  z-index: 6;
  width: 100%;
  max-width: 400px;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  transition: 0.3s all ease;
  background-color: #fff;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
.leftbar .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url(../icons/close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  cursor: pointer;
}
.leftbar a.logo {
  display: block;
  -webkit-mask-box-image: 40px;
          mask-border: 40px;
  width: 100px;
  height: 100px;
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 50px;
}
.leftbar .button.button-sm {
  width: 100%;
  max-width: 250px;
  margin-top: 20px;
  height: 50px;
  border-radius: 25px;
}
.leftbar ul {
  padding: 0;
  margin: 0;
}
.leftbar ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.leftbar ul li.sub ul {
  display: none;
}
.leftbar ul li a {
  display: block;
  text-align: center;
  color: #23252A;
  text-decoration: none;
  font-size: 1.125rem;
}
.leftbar a.phone {
  color: #477FD1;
  text-decoration: none;
  font-size: 1.25rem;
  font-family: "SemiBold", sans-serif;
}
.leftbar.show {
  transition: 0.3s all ease;
  right: 0;
}
.leftbar-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.5);
}
.leftbar-overlay.show {
  display: block;
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1 !important;
}

.modal .modal-body {
  padding: 0;
}
.modal .modal-content {
  border: 0;
  border-radius: 20px;
  background-color: #E4EEF8;
  overflow: hidden;
  border-bottom-left-radius: 50px;
}
.modal .modal-content form {
  display: block;
  margin-left: auto;
  width: 100%;
  max-width: 1155px;
  height: 750px;
  background-color: #E4EEF8;
  background-image: url(../img/08-gex.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: top right;
  border-bottom-left-radius: 100px;
  position: relative;
}
.modal .modal-content form::after {
  content: "";
  z-index: -1;
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  width: 30px;
  background-color: #71BBFF;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  height: 550px;
}
.modal .modal-content form h4 {
  margin-bottom: 20px;
  height: 90px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
.modal .modal-content form h4 span {
  font-size: 2.5rem;
  color: #23252A;
  text-transform: uppercase;
  font-family: "ArialBlack", sans-serif;
  position: relative;
  z-index: 2;
}
.modal .modal-content form h4::after {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  z-index: 1;
  background-image: url(../img/10-overlines.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.modal .modal-content form span.text {
  font-size: 1.313rem;
  color: #23252A;
  line-height: 1.875rem;
  display: block;
  max-width: 680px;
  margin-bottom: 20px;
}
.modal .modal-content form input[type=text],
.modal .modal-content form input[type=email],
.modal .modal-content form input[type=tel] {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #23252A;
  display: flex;
  width: 100%;
  max-width: 600px;
  height: 50px;
  margin-bottom: 20px;
  font-size: 1.313rem;
  padding-left: 0;
}
.modal .modal-content form input[type=text]:focus,
.modal .modal-content form input[type=email]:focus,
.modal .modal-content form input[type=tel]:focus {
  outline: none;
}
.modal .modal-content form input[type=email],
.modal .modal-content form input[type=tel] {
  max-width: 300px;
}
.modal .modal-content form label {
  padding-top: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
}
.modal .modal-content form label input[type=checkbox] {
  position: absolute;
  top: 40px;
  left: 12px;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}
.modal .modal-content form label .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background-color: #477FD1;
  cursor: pointer;
  margin-right: 10px;
}
.modal .modal-content form label .checkbox::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  background-color: transparent;
  transition: 0.3s all ease;
}
.modal .modal-content form label input[type=checkbox]:checked ~ .checkbox:after {
  background-color: #fff;
}
.modal .modal-content form label span {
  font-size: 1rem;
  color: #23252A;
}
.modal .modal-content form label span a {
  color: #23252A;
  font-size: 1rem;
  text-decoration: underline;
  transition: 0.3s all ease;
}
.modal .modal-content form label span a:hover {
  color: #477FD1;
  transition: 0.3s all ease;
}
.modal .modal-content form button[type=submit] {
  width: 250px;
  border: 1px solid #477FD1;
  height: 50px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  background-color: #477FD1;
  cursor: pointer;
  margin-bottom: 60px;
}
.modal .modal-content form button[type=submit] span {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  font-family: "Medium", sans-serif;
}
.modal .modal-content form button[type=submit]::before {
  content: "";
  width: 250px;
  height: 50px;
  display: block;
  position: absolute;
  top: 20px;
  right: -20px;
  background-image: url(../icons/03-sub-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 120%;
  z-index: 1;
}
.modal .modal-content form button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: transparent;
}
.modal .modal-content form button[type=submit]:hover span {
  color: #477FD1;
  transition: 0.3s all ease;
}
.modal .modal-content form {
  height: auto;
  max-width: calc(100% - 12px);
  width: 100%;
  border-top-left-radius: 20px;
  z-index: unset;
  padding: 15px;
  padding-bottom: 30px;
}
.modal .modal-content form button[type=submit] {
  margin-bottom: 0;
  max-width: 300px;
}
.modal .modal-content form input[type=text],
.modal .modal-content form input[type=email],
.modal .modal-content form input[type=tel] {
  max-width: 300px;
}
.modal .modal-content form::after {
  top: 0;
  left: -12px;
  z-index: -1;
  width: 50px;
  height: calc(100% - 150px);
}
.modal .modal-content form h4 span {
  font-size: 1.5rem;
}
.modal .modal-content form h4::after {
  background-size: cover;
}
.modal .modal-content form span.text {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.modal .modal-content form label {
  align-items: center;
}
.modal .modal-content form label .checkbox {
  flex-shrink: 0;
}

.page-error {
  display: flex;
  min-height: 500px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
.page-error .image {
  width: 100%;
  max-width: 400px;
  height: 400px;
  background-image: url(../img/404-page.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
}
.page-error .text {
  font-size: 1.25rem;
  font-family: "Medium", sans-serif;
  text-align: center;
}

/*===========PRODUCT=================*/
.services-product .line-first,
.services-product .line-second {
  display: none;
}

.programms-addon {
  overflow-x: hidden;
}
.programms-addon__inner {
  display: block;
}
.programms-addon .item {
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  background-color: #F1F7FB;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
.programms-addon .item:last-child {
  margin-bottom: 0;
}
.programms-addon .item.show {
  display: flex;
}
.programms-addon .item .type {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 2;
  background-color: #477FD1;
  color: #fff;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 90px;
  height: 35px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  font-family: "Regular", sans-serif;
}
.programms-addon .item .left {
  width: 100%;
  max-width: 340px;
  padding: 30px 0 30px 20px;
  height: auto;
}
.programms-addon .item .left img {
  width: 100%;
  height: auto;
}
.programms-addon .item .center {
  width: 100%;
  max-width: 560px;
  height: auto;
  padding: 30px;
}
.programms-addon .item .center .name {
  font-size: 1.25rem;
  font-family: "Bold", sans-serif;
  margin-bottom: 30px;
}
.programms-addon .item .center .info-main ul {
  padding: 0;
  margin: 0;
}
.programms-addon .item .center .info-main ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 0.9rem;
  line-height: 1.25rem;
  margin-bottom: 10px;
}
.programms-addon .item .right {
  width: 360px;
  background-color: #477FD1;
  background-image: url(../img/bakcground-addon.svg);
  background-repeat: no-repeat;
  background-size: inherit;
  background-position: 110% 110%;
  height: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 20px;
  border-radius: 10px;
}
.programms-addon .item .right .info-right ul {
  padding: 0;
  margin: 0;
}
.programms-addon .item .right .info-right ul li {
  color: #fff;
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.25rem;
  margin-bottom: 15px;
}
.programms-addon .item .right .info-right ul li:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #fff;
  display: block;
  margin-top: 6px;
  flex-shrink: 0;
  margin-right: 15px;
}
.programms-addon .item .right .info-right-text {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.25rem;
  margin-bottom: 20px;
}
.programms-addon .item .right .price {
  margin-top: auto;
  color: #fff;
  font-size: 1.125rem;
  font-family: "Medium", sans-serif;
  margin-bottom: 20px;
}
.programms-addon .item .right .button {
  border: 1px solid #fff;
  background-color: #fff;
  color: #477FD1;
  width: 100%;
  height: 50px;
  font-size: 1.25rem;
}
.programms-addon .item .right .button:hover {
  background-color: transparent;
  color: #fff;
}

.privacy h1 {
  font-size: 1.25rem;
  font-family: "ArialBlack", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 20px;
}
.privacy ul li {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 20px;
}

.cookie {
  display: flex;
  position: fixed;
  width: 100%;
  height: 40px;
  opacity: 0.7;
  background-color: #E4EEF8;
  transition: 0.3s all ease;
  z-index: 3;
  bottom: 0;
  left: 0;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.cookie.hidden {
  display: none;
}
.cookie:hover {
  opacity: 1;
  transition: 0.3s all ease;
}
.cookie span {
  font-size: 0.85rem;
  color: #23252A;
  font-family: "Medium", sans-serif;
  padding-right: 10px;
}
.cookie .btn {
  width: 100px;
  height: 25px;
  border-radius: 15px;
  font-size: 0.85rem;
  background-color: #477FD1;
  color: #fff;
  border: 0;
  box-shadow: none;
  transition: 0.3s all ease;
  border: 1px solid #477FD1;
  font-family: "Medium", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie .btn:hover {
  background-color: transparent;
  color: #477FD1;
}

.vacansy-single {
  padding-top: 20px;
}
.vacansy-single h1 {
  font-size: 1.25rem;
  font-family: "ArialBlack", sans-serif;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.vacansy-single__row {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.vacansy-single__row .left {
  width: 100%;
  max-width: 350px;
  left: 0;
  background-color: #F1F7FB;
  border-radius: 30px;
  padding: 30px 20px;
}
.vacansy-single__row .left.fixed {
  position: sticky;
  top: 80px;
}
.vacansy-single__row .left .item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.vacansy-single__row .left .item:last-child {
  margin-bottom: 0;
}
.vacansy-single__row .left .item:nth-child(1) .icon {
  background-image: url(../icons/67-icon.svg);
}
.vacansy-single__row .left .item:nth-child(2) .icon {
  background-image: url(../icons/68-icon.svg);
}
.vacansy-single__row .left .item:nth-child(3) .icon {
  background-image: url(../icons/69-icon.svg);
}
.vacansy-single__row .left .item:nth-child(4) .icon {
  background-image: url(../icons/70-icon.svg);
}
.vacansy-single__row .left .item:nth-child(5) .icon {
  background-image: url(../icons/71-icon.svg);
}
.vacansy-single__row .left .item .icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  flex-shrink: 0;
}
.vacansy-single__row .left .item .info {
  display: block;
}
.vacansy-single__row .left .item .info span {
  font-size: 1rem;
}
.vacansy-single__row .left .item .info span.info-head {
  font-family: "SemiBold", sans-serif;
  display: block;
  margin-bottom: 5px;
}
.vacansy-single__row .right {
  margin-left: auto;
  width: calc(100% - 380px);
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
.vacansy-single__row .right__about {
  border-radius: 30px;
  background-color: #F1F7FB;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  padding-right: 20px;
  margin-bottom: 30px;
}
.vacansy-single__row .right__about .inner h3 {
  font-size: 1.125rem;
  font-family: "ArialBlack", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.vacansy-single__row .right__about .inner p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin: 0;
}
.vacansy-single__row .right__about img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-top: -80px;
  margin-bottom: -100px;
}
.vacansy-single__row .right__addon {
  padding-bottom: 30px;
}
.vacansy-single__row .right__addon ul {
  padding: 0;
  margin: 0;
  margin-left: 30px;
}
.vacansy-single__row .right__addon ul li {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.vacansy-single__row .right__addon ul li:last-child {
  margin-bottom: 0;
}
.vacansy-single__row .right__addon ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #477FD1;
  left: 0;
  top: 6px;
}
.vacansy-single__row .right__need {
  background-color: #F1F7FB;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 60px;
}
.vacansy-single__row .right__need h3 {
  font-size: 1.125rem;
  font-family: "ArialBlack", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.vacansy-single__row .right__need p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin: 0;
}
.vacansy-single__row .right__need ul {
  padding: 0;
  margin: 0;
}
.vacansy-single__row .right__need ul li {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.vacansy-single__row .right__need ul li:last-child {
  margin-bottom: 0;
}
.vacansy-single__row .right__need ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #477FD1;
  left: 0;
  top: 6px;
}
.vacansy-single__row .right__suggest {
  padding-left: 30px;
}
.vacansy-single__row .right__suggest h4 {
  font-size: 1.125rem;
  font-family: "ArialBlack", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.vacansy-single__row .right__suggest ul {
  padding: 0;
  margin: 0;
}
.vacansy-single__row .right__suggest ul li {
  font-size: 1rem;
  font-family: "Regular", sans-serif;
  line-height: 1.75rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.vacansy-single__row .right__suggest ul li:last-child {
  margin-bottom: 0;
}
.vacansy-single__row .right__suggest ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #477FD1;
  left: 0;
  top: 6px;
}
.vacansy-single__advantages {
  padding-top: 350px;
  margin-top: -350px;
  overflow: hidden;
  background-image: url(../img/background-wave-v.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.vacansy-single__advantages::after {
  content: "";
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  display: block;
  position: absolute;
  background-color: #F3F7FC;
  z-index: 0;
}
.vacansy-single__advantages .header-big span {
  color: #fff;
}
.vacansy-single__advantages .container {
  position: relative;
  z-index: 1;
}
.vacansy-single__advantages p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 40px;
}
.vacansy-single__advantages .advantages__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: flex-start;
}
.vacansy-single__advantages .advantages__row .item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding-right: 30px;
  margin-bottom: 40px;
}
.vacansy-single__advantages .advantages__row .item:nth-child(1) .icon {
  background-image: url(../icons/72-icon.svg);
}
.vacansy-single__advantages .advantages__row .item:nth-child(2) .icon {
  background-image: url(../icons/73-icon.svg);
}
.vacansy-single__advantages .advantages__row .item:nth-child(3) .icon {
  background-image: url(../icons/74-icon.svg);
}
.vacansy-single__advantages .advantages__row .item:nth-child(4) .icon {
  background-image: url(../icons/75-icon.svg);
}
.vacansy-single__advantages .advantages__row .item:nth-child(5) .icon {
  background-image: url(../icons/76-icon.svg);
}
.vacansy-single__advantages .advantages__row .item:nth-child(6) .icon {
  background-image: url(../icons/77-icon.svg);
}
.vacansy-single__advantages .advantages__row .item:nth-child(7) .icon {
  background-image: url(../icons/78-icon.svg);
}
.vacansy-single__advantages .advantages__row .item:nth-child(8) .icon {
  background-image: url(../icons/79-icon.svg);
}
.vacansy-single__advantages .advantages__row .item:nth-child(9) .icon {
  background-image: url(../icons/80-icon.svg);
}
.vacansy-single__advantages .advantages__row .item .icon {
  margin-right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background-color: #477FD1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  flex-shrink: 0;
  border-radius: 35px;
}
.vacansy-single__advantages .advantages__row .item .text {
  display: block;
}
.vacansy-single__advantages .advantages__row .item .text span {
  font-size: 1rem;
  line-height: 1.75rem;
}
.vacansy-single__advantages .advantages__row .item .text span.item-title {
  font-size: 1rem;
  line-height: 1.75rem;
  font-family: "Bold", sans-serif;
  display: block;
}

font.errortext {
  color: #23252A;
  font-size: 1.125rem;
  text-align: center;
  font-family: "Bold", sans-serif;
  margin: 0 auto;
  margin-top: 30px;
  display: block;
}

.data-mobile {
  position: relative;
  padding-top: 90px;
  padding-bottom: 450px;
}
.data-mobile-page {
  overflow-x: hidden;
}
.data-mobile-page .breadcrumbs .breadcrumb .breadcrumb-item span {
  color: #fff;
}
.data-mobile-page .breadcrumbs .breadcrumb .breadcrumb-item:after {
  background-image: url(../icons/01-arrow-white.svg);
}
.data-mobile-page .breadcrumbs .breadcrumb .breadcrumb-item a span {
  color: #fff;
}
.data-mobile-page header .button.button-sm {
  background-color: #fff;
  color: #23252A;
  border: 1px solid #fff;
}
.data-mobile-page header .button.button-sm:hover {
  opacity: 0.8;
}
.data-mobile-page header nav a.logo {
  background-image: url(../img/logo-white.svg);
}
.data-mobile-page header nav a.phone {
  color: #fff;
}
.data-mobile-page header nav a.phone:hover {
  opacity: 0.8;
}
.data-mobile-page header nav ul li a {
  color: #fff;
}
.data-mobile-page header nav ul li a:hover {
  opacity: 0.8;
}
.data-mobile-page header nav ul li.sub a::after {
  background-image: url(../icons/01-arrow-white.svg);
}
.data-mobile-page header nav ul li.sub ul {
  background-color: #477FD1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
}
.data-mobile-page header.fixed .button.button-sm {
  background-color: #477FD1;
  color: #fff;
  border: 1px solid #477FD1;
}
.data-mobile-page header.fixed .button.button-sm:hover {
  background-color: transparent;
  color: #477FD1;
  border: 1px solid #477FD1;
}
.data-mobile-page header.fixed nav a.logo {
  background-image: url(../img/logo.svg);
}
.data-mobile-page header.fixed nav a.phone {
  color: #23252A;
}
.data-mobile-page header.fixed nav a.phone:hover {
  color: #477FD1;
}
.data-mobile-page header.fixed nav ul li a {
  color: #23252A;
}
.data-mobile-page header.fixed nav ul li a:hover {
  color: #477FD1;
}
.data-mobile-page header.fixed nav ul li.sub a::after {
  background-image: url(../icons/01-arrow.svg);
}
.data-mobile-page header.fixed nav ul li.sub ul {
  background-color: #fff;
  border-color: rgba(35, 37, 42, 0.1);
}
.data-mobile-page header.fixed nav ul li.sub ul li a {
  color: #23252A;
}
.data-mobile-page header.fixed nav ul li.sub ul li a:hover {
  color: #477FD1;
}
.data-mobile__right {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
}
.data-mobile__right h1 {
  font-family: "ArialBlack", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 3.75rem;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.data-mobile__right p {
  font-family: "Regular", sans-serif;
  color: #fff;
  margin-bottom: 30px;
  font-size: 1.25rem;
}
.data-mobile__right .button {
  background-color: #fff;
  color: #23252A;
  border: 1px solid #fff;
  height: 50px;
  width: 290px;
  font-size: 1.25rem;
  font-family: "Regular", sans-serif;
  border-radius: 25px;
  transition: 0.3s all ease;
}
.data-mobile__right .button:hover {
  transition: 0.3s all ease;
  opacity: 0.8;
}
.data-mobile::before {
  content: "";
  width: 2780px;
  height: 900px;
  display: block;
  position: absolute;
  top: -115px;
  left: 0;
  background-image: url(../img/data-mobile.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  z-index: -1;
}
.data-mobile-line__products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.data-mobile-line__products .data-product {
  position: relative;
  padding: 20px 15px;
  border: 1px solid rgba(71, 127, 209, 0.1);
  background-color: #F1F7FB;
  width: 380px;
  border-radius: 20px;
  margin-bottom: 40px;
}
.data-mobile-line__products .data-product h4 {
  font-family: "Bold", sans-serif;
  color: #23252A;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.data-mobile-line__products .data-product p {
  height: 40px;
  font-size: 0.875rem;
  color: rgba(35, 37, 42, 0.5);
  margin-bottom: 10px;
}
.data-mobile-line__products .data-product img {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 10px;
}
.data-mobile-line__products .data-product .price {
  font-size: 1.125rem;
  color: #23252A;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 10px;
}
.data-mobile-line__products .data-product .price span {
  font-size: 1.563rem;
  font-family: "Bold", sans-serif;
}
.data-mobile-line__products .data-product .sub-info {
  font-size: 0.875rem;
  font-family: "SemiBold", sans-serif;
  height: 45px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.data-mobile-line__products .data-product ul {
  margin: 0;
  padding: 0;
}
.data-mobile-line__products .data-product ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.data-mobile-line__products .data-product ul li:last-child {
  margin-bottom: 0;
}
.data-mobile-line__products .data-product ul li:before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  background-color: #477FD1;
  margin-right: 10px;
}
.data-mobile-line__products .data-product .more {
  display: none;
}

.products-trade {
  overflow-x: hidden;
}
.products-trade__line {
  display: flex;
  justify-content: flex-start;
}
.products-trade__item {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  text-decoration: none;
  background-color: #F1F7FB;
  border: 1px solid rgba(71, 127, 209, 0.2);
  padding: 20px 15px;
}
.products-trade__item h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-family: "ArialBlack", sans-serif;
  color: #23252A;
}
.products-trade__item span {
  font-size: 0.835rem;
  color: rgba(35, 37, 42, 0.8);
  margin-bottom: 30px;
  display: block;
}
.products-trade__item .more {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  color: #fff;
  background-color: #477FD1;
  font-size: 1.125rem;
  cursor: pointer;
  transition: 0.3s all ease;
  border: 1px solid #477FD1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products-trade__item .more:hover {
  background-color: transparent;
  transition: 0.3s all ease;
  color: #477FD1;
}

/*===========ADAPTIVE================*/
@media screen and (max-width: 1249px) {
  header nav ul li:last-child {
    display: none;
  }
  header nav ul li.sub ul li:last-child {
    display: block;
  }
}
@media screen and (max-width: 1830px) {
  .vacansy-single__advantages {
    background-size: cover;
  }
}
@media screen and (max-width: 1300px) {
  .vacansy-single__advantages {
    padding-top: 0;
    margin-top: 0;
  }
  .vacansy-single__advantages .header-big span {
    color: rgba(113, 187, 255, 0.15);
  }
  .vacansy-single__advantages .advantages__row {
    grid-template-columns: 1fr 1fr;
  }
  .vacansy-single__advantages .advantages__row .item {
    padding-right: 0;
  }
  .main-form-two form {
    width: calc(100% - 22px);
    max-width: 100%;
  }
  .main-form-two form::after {
    right: -10px;
  }
  .project__inner {
    display: block;
  }
  .project .left {
    margin-bottom: 20px;
  }
  .project .left,
  .project .right {
    width: 100%;
    height: auto;
  }
  .result__line {
    display: block;
  }
  .result__line p {
    width: 100%;
    max-width: 100%;
  }
  .result__line ul {
    width: 100%;
    max-width: 100%;
  }
  .result__line ul li {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1269px) {
  .main-form-one:before {
    max-width: 100%;
  }
}
@media screen and (max-width: 1240px) {
  .vacansy-single__row .right__about {
    display: flex;
    flex-wrap: wrap;
    padding-right: 30px;
    justify-content: center;
  }
  .vacansy-single__row .right__about .inner {
    order: 1;
    width: 100%;
    max-width: 100%;
  }
  .vacansy-single__row .right__about img {
    order: 0;
    margin: 0;
    padding: 0;
    margin-top: -80px;
  }
  .sub-offer .image {
    width: 30%;
  }
  .service-offer__inner {
    grid-template-columns: 48% 48%;
  }
  .simple-form form input[type=text],
  .simple-form form input[type=tel],
  .simple-form form button[type=submit] {
    max-width: 32%;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .simple-form.reg input[type=text],
  .simple-form.reg input[type=tel],
  .simple-form.reg button[type=submit] {
    max-width: 100%;
    margin: 0;
    margin-bottom: 15px;
  }
  .stock-line__inner-line {
    grid-template-columns: 31% 31% 31%;
  }
  .stock-line__inner-line .item {
    margin: 0 auto;
    margin-bottom: 20px;
    height: 400px;
  }
  .spickers .item-over .item {
    max-width: 430px;
  }
  .spickers .item-over .item .info {
    bottom: -2px;
    padding: 120px 15px 15px 15px;
    background-size: cover;
    background-position: top center;
  }
  .vacancies__inner {
    grid-template-columns: 30% 30% 30%;
  }
  .vacancies__inner .item {
    padding: 40px 20px;
  }
  .vacansy-frame__inner {
    display: block;
  }
  .vacansy-frame .left {
    width: 100%;
  }
  .vacansy-frame .right {
    width: 100%;
  }
  .vacansy-info ul.first {
    display: block;
  }
  .vacansy-info ul.first li {
    width: 100%;
    margin-bottom: 20px;
    max-width: 100%;
    padding-left: 30px;
  }
  .vacansy-info ul.first li:before {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    top: 6px;
  }
  .vacansy-about h2 {
    max-width: 100%;
  }
  .programms-addon .item .type {
    display: none;
  }
  .programms-addon .item .left {
    display: none;
  }
  .programms-addon .item .center {
    width: calc(100% - 360px);
    max-width: 100%;
  }
  .main-news .plus-news .left-over {
    grid-template-columns: 49% 49%;
  }
  .main-news .plus-news .left-over .item:last-child {
    display: none;
  }
}
@media screen and (max-width: 1179px) {
  .products__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cases__inner .item .line .text {
    font-size: 1rem;
  }
  .main-cases__inner .item .line .text {
    font-size: 1rem;
  }
  footer .footer-inner {
    display: block;
  }
  footer .footer-inner .menu {
    display: block;
    width: 100%;
  }
  footer .footer-inner .menu ul {
    width: 100%;
  }
  footer .footer-inner .menu ul:nth-child(1), footer .footer-inner .menu ul:nth-child(2), footer .footer-inner .menu ul:nth-child(3) {
    width: 100%;
  }
  footer .footer-inner .menu ul li {
    width: 100%;
    justify-content: center;
  }
  footer .footer-inner .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding-left: 0;
  }
  footer .footer-inner .info span {
    text-align: left;
    max-width: 350px;
  }
  footer .footer-inner .info span:first-child {
    order: 0;
  }
  footer .footer-inner .info ul {
    max-width: 350px;
    margin: 0 auto;
  }
  footer .footer-inner .info-text {
    text-align: left;
    order: 1;
  }
  footer .footer-inner .info-list {
    order: 2;
  }
  footer .footer-inner .info span.allert {
    order: 3;
  }
}
@media screen and (max-width: 1100px) {
  .products__inner {
    grid-template-columns: 350px 350px;
    justify-content: space-around;
  }
  .about-info__inner {
    grid-template-columns: 33% 33% 33%;
  }
  .about-info__inner .item {
    margin-bottom: 30px;
  }
  .simple-frame.frame-case .simple-frame__inner {
    display: block;
  }
  .simple-frame.frame-case .left {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .simple-frame.frame-case .right {
    width: 100%;
    max-width: 100%;
  }
  .data-mobile::before {
    left: -450px;
  }
  .data-mobile__right {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 1019px) {
  header nav {
    padding-right: 60px;
  }
  header nav ul {
    display: none;
  }
  .header-mobile {
    display: flex;
  }
  footer .footer-inner .menu ul:nth-child(1),
  footer .footer-inner .menu ul:nth-child(2),
  footer .footer-inner .menu ul:nth-child(3) {
    width: 100%;
  }
  footer .footer-inner .info {
    width: 100%;
  }
  .vacansy-advantages ul li span br {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .vacansy-single h1 {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  .vacansy-single__row {
    display: block;
  }
  .vacansy-single__row .left {
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
  }
  .vacansy-single__row .left .button {
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
  }
  .vacansy-single__row .right {
    width: 100%;
    max-width: 100%;
    margin-top: 150px;
    padding-bottom: 60px;
  }
  .vacansy-single__row .right__about {
    padding: 0 15px 30px 15px;
  }
  .vacansy-single__row .right__about img {
    margin-top: -120px;
    margin-bottom: 30px;
  }
  .vacansy-single__row .right__about h3 {
    margin-bottom: 20px;
  }
  .vacansy-single__row .right__addon {
    padding: 0;
    padding-bottom: 30px;
  }
  .vacansy-single__row .right__addon ul {
    margin-left: 0;
  }
  .vacansy-single__row .right__addon h3 {
    margin-bottom: 20px;
  }
  .vacansy-single__row .right__need {
    padding: 30px 15px;
    margin-bottom: 50px;
  }
  .vacansy-single__row .right__need h3 {
    margin-bottom: 20px;
  }
  .vacansy-single__row .right__suggest {
    padding: 0;
  }
  .vacansy-single__row .right__suggest h4 {
    margin-bottom: 20px;
  }
  .vacansy-single__advantages {
    background-size: 100%;
    background-color: #F3F7FC;
    background-image: none;
    overflow: unset;
  }
  .vacansy-single__advantages::after {
    display: none;
  }
  .vacansy-single__advantages .col-lg-12.header-big {
    overflow: hidden;
  }
  .vacansy-single__advantages::before {
    display: block;
    content: "";
    width: 100%;
    height: 150px;
    position: absolute;
    top: -140px;
    left: 0;
    background-image: url(../img/background-wave-v.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
  }
  .vacansy-single__advantages .advantages__row {
    display: block;
  }
  .vacansy-single__advantages .advantages__row .item {
    display: block;
  }
  .vacansy-single__advantages .advantages__row .item .icon {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .vacansy-single__advantages .advantages__row .item .text {
    text-align: center;
  }
  .cookie {
    bottom: 70px;
    height: 50px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .cookie span {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .main-promo__line {
    padding-top: 20px;
    padding-bottom: 50px;
  }
  .main-promo__line a.button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1.125rem;
  }
  .news-line__inner .item a.title {
    font-size: 1.125rem;
    display: block;
    height: auto;
    text-transform: none;
  }
  .simple-frame.frame-case .left {
    padding: 20px 10px;
  }
  .main-promo__inner .item .line h6 {
    font-size: 1rem;
  }
  .service-addon p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .service-addon p:last-child {
    margin-bottom: 50px;
  }
  .demo-frame .item-content,
  .service-tariffs__additioanl .item-content {
    padding: 30px 20px;
    display: block;
    border-radius: 20px;
  }
  .demo-frame .item-content h5,
  .demo-frame .item-content h6,
  .service-tariffs__additioanl .item-content h5,
  .service-tariffs__additioanl .item-content h6 {
    font-size: 1.125rem;
    font-family: "SemiBold", sans-serif;
    height: auto;
  }
  .demo-frame .item-content .left,
  .demo-frame .item-content .right,
  .service-tariffs__additioanl .item-content .left,
  .service-tariffs__additioanl .item-content .right {
    width: 100%;
    max-width: 100%;
  }
  .demo-frame .item-content .more,
  .service-tariffs__additioanl .item-content .more {
    width: 100%;
    bottom: 30px;
    left: 0;
    justify-content: center;
  }
  .demo-frame .item-content .more .btn,
  .service-tariffs__additioanl .item-content .more .btn {
    margin-left: 20px;
  }
  .demo-frame .item-content ul li,
  .service-tariffs__additioanl .item-content ul li {
    font-size: 1rem;
  }
  .demo-frame .item-content p,
  .service-tariffs__additioanl .item-content p {
    font-size: 1rem;
  }
  #modalcontent .modal-body {
    padding: 10px;
  }
  #modalcontent .modal-body h6 {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  #modalcontent .modal-body ul li {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }
  .button,
  .main-form-one form button[type=submit],
  .main-form-two form button[type=submit] {
    height: 50px;
    font-size: 1.125rem;
  }
  .main-form-one form button[type=submit] span,
  .main-form-two form button[type=submit] span {
    font-size: 1.125rem;
  }
  header {
    height: auto;
    padding-top: 5px;
    padding-bottom: 10px;
  }
  header.fixed {
    position: static;
  }
  header .button.button-sm {
    display: none;
  }
  header nav a.logo {
    height: 40px;
    width: 50px;
  }
  header nav a.phone {
    margin: 0 auto;
    font-family: "Medium", sans-serif;
  }
  .header-mobile {
    top: 0;
  }
  .main-page-main {
    margin-top: 0;
    padding-top: 10px;
    background-image: none;
    padding-bottom: 0;
  }
  .main-page-main .line {
    height: 100%;
    top: 0;
    left: -50%;
    width: 150%;
  }
  .main-page-main .subline {
    display: none;
  }
  .main-page-main .main-slider {
    padding-bottom: 60px;
  }
  .main-page-main .main-slider .carousel-control-prev {
    display: none;
  }
  .main-page-main .main-slider .carousel-control-prev .carousel-control-prev-icon {
    margin-top: -150px;
  }
  .main-page-main .main-slider .carousel-control-next {
    display: none;
  }
  .main-page-main .main-slider .carousel-control-next .carousel-control-next-icon {
    margin-top: -150px;
  }
  .main-page-main .main-slider .carousel-item {
    padding-bottom: 0;
  }
  .main-page-main .main-slider h1,
  .main-page-main .main-slider h2 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 30px;
    z-index: 1;
  }
  .main-page-main .main-slider p {
    font-size: 1rem;
    line-height: 1.75rem;
    margin-bottom: 20px;
    height: 120px;
  }
  .main-page-main .main-slider .first-image,
  .main-page-main .main-slider .second-image,
  .main-page-main .main-slider .third-image,
  .main-page-main .main-slider .fourth-image {
    width: 100%;
    max-width: 400px;
    height: 360px;
  }
  .main-page-main .main-slider .button {
    max-width: 240px;
    font-size: 1rem;
  }
  .main-page-main .main-slider .button::after {
    display: none;
  }
  .offer {
    padding-top: 30px;
    padding-bottom: 250px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .offer h2 {
    font-size: 1.125rem;
    width: 100%;
    margin-bottom: 20px;
  }
  .offer p {
    font-size: 1rem;
    line-height: 1.75rem;
    width: 100%;
    margin-bottom: 30px;
    max-width: 100%;
  }
  .sub-offer {
    background-image: none;
    padding-top: 80px;
    padding-bottom: 30px;
    border-radius: 30px;
    margin-top: -30px;
  }
  .sub-offer .image {
    width: 100%;
    height: 320px;
    left: 0;
    top: -350px;
  }
  .sub-offer .icons {
    width: 100%;
    display: block;
    max-width: 100%;
  }
  .sub-offer .icons .item {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 40px;
  }
  .sub-offer .icons .item p {
    height: auto;
    margin-bottom: 10px;
    white-space: 100%;
  }
  .sub-offer .icons .item:last-child {
    margin-bottom: 0;
  }
  .sub-offer .icons .item .icon {
    margin-bottom: 20px;
  }
  .sub-offer .icons .item span {
    display: block;
    width: 100%;
    text-align: center;
    height: auto;
  }
  .header-big {
    margin-bottom: 30px;
    height: 80px;
  }
  .header-big h1,
  .header-big h2,
  .header-big h3,
  .header-big h4,
  .header-big h5,
  .header-big h6 {
    font-size: 1.125rem;
    height: 80px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  .header-big span {
    font-size: 5rem;
    line-height: 80px;
    top: 0;
    left: 0;
  }
  .main-services {
    padding-top: 60px;
  }
  .main-services-simple {
    padding-top: 40px;
  }
  .main-services .line-first,
  .main-services .line-second {
    display: none;
  }
  .main-services__slider {
    padding-right: 0;
  }
  .main-services__slider .slider-inner,
  .main-services__slider .slider-inner-product {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .main-services__slider .slider-inner .item,
  .main-services__slider .slider-inner-product .item {
    width: 335px;
    margin-right: 10px;
    height: 420px;
    padding: 20px 10px 10px 20px;
  }
  .main-services__slider .slider-inner .item .letter,
  .main-services__slider .slider-inner-product .item .letter {
    bottom: 70px;
    opacity: 0.5;
  }
  .main-services__slider .slider-inner .item p,
  .main-services__slider .slider-inner-product .item p {
    font-size: 1rem;
    line-height: normal;
    font-family: "Regular", sans-serif;
  }
  .main-services__slider .slider-inner .item a.head,
  .main-services__slider .slider-inner-product .item a.head {
    display: block;
    height: 60px;
    margin-bottom: 20px;
  }
  .main-services__slider .slider-inner .item a.head h6,
  .main-services__slider .slider-inner-product .item a.head h6 {
    font-size: 1.125rem;
  }
  .stock-line {
    padding-top: 0;
    padding-bottom: 0;
  }
  .stock-line__inner {
    padding-right: 0;
  }
  .stock-line__inner-line {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .stock-line__inner-line .item {
    width: 335px;
    margin-right: 10px;
    height: 450px;
    padding: 30px 20px 20px 20px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .stock-line__inner-line .item .letter {
    bottom: 70px;
  }
  .stock-line__inner-line .item p {
    font-size: 0.875rem;
    line-height: normal;
    font-family: "Regular", sans-serif;
  }
  .stock-line__inner-line .item a.head {
    display: block;
    height: 60px;
    margin-bottom: 20px;
  }
  .stock-line__inner-line .item a.head h3 {
    font-size: 1.25rem;
  }
  .main-form-one {
    padding-top: 40px;
  }
  .main-form-one::before, .main-form-one::after {
    display: none;
  }
  .main-form-one form {
    height: auto;
    background-image: none;
    max-width: calc(100% - 12px);
    width: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 50px;
    z-index: unset;
    padding: 30px 12px 50px 20px;
    margin-bottom: 0;
  }
  .main-form-one form button[type=submit] {
    margin-bottom: 0;
    max-width: 300px;
  }
  .main-form-one form input[type=text],
  .main-form-one form input[type=email],
  .main-form-one form input[type=tel] {
    max-width: 300px;
  }
  .main-form-one form::after {
    top: 0;
    left: -12px;
    z-index: -1;
    width: 50px;
    height: calc(100% - 150px);
  }
  .main-form-one form h4 span {
    font-size: 1.125rem;
  }
  .main-form-one form h4::after {
    background-size: cover;
  }
  .main-form-one form span.text {
    font-size: 1rem;
    line-height: 1.75rem;
  }
  .main-form-one form label {
    align-items: center;
    margin-bottom: 20px;
  }
  .main-form-one form label .checkbox {
    flex-shrink: 0;
  }
  .main-info {
    padding-top: 60px;
  }
  .main-info__inner {
    display: flex;
    flex-wrap: wrap;
  }
  .main-info .inner-left {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .main-info .inner-left p {
    font-size: 1rem;
    line-height: 1.75rem;
    margin-bottom: 20px;
    padding: 10px;
  }
  .main-info .inner-right {
    order: 0;
    width: 100%;
    padding: 0;
  }
  .main-info .inner-right img {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .main-products {
    padding-bottom: 20px;
    padding-top: 300px;
    margin-top: -250px;
  }
  .main-products .header-big {
    margin-bottom: 30px;
    padding-left: 12px;
  }
  .main-products .header-big span {
    left: 12px;
  }
  .main-products .col-lg-12 {
    padding-right: 0;
  }
  .main-products::before {
    top: 0;
    width: 100%;
    background-size: 400%;
    background-position: 30% top;
    height: 100%;
  }
  .main-products__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .main-products__inner .item {
    width: 335px;
    margin-right: 10px;
  }
  .main-products__sub-inner {
    padding-top: 0;
    padding-right: 12px;
  }
  .main-products__sub-inner a.button {
    max-width: 300px;
    margin: 0 auto;
    font-size: 1.125rem;
  }
  .main-promo {
    padding-top: 60px;
    margin-top: 0;
    padding-bottom: 20px;
  }
  .main-promo::after {
    display: none;
  }
  .main-promo::before {
    height: 200%;
    background-size: cover;
    background-position: 320%;
  }
  .main-promo__inner {
    overflow: hidden;
    overflow-x: scroll;
    margin-bottom: 20px;
    padding-bottom: 20px;
    justify-content: flex-start;
    padding-top: 0;
  }
  .main-promo__inner .item {
    margin-right: 10px;
    display: block;
    width: 335px;
    flex-shrink: 0;
    padding: 10px;
    height: 220px;
  }
  .main-promo__inner .item span {
    line-height: 1.75rem;
  }
  .main-form-two {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .main-form-two::before, .main-form-two::after {
    display: none;
  }
  .main-form-two form {
    height: auto;
    background-image: none;
    max-width: calc(100% - 12px);
    width: 100%;
    border-top-left-radius: 20px;
    z-index: unset;
    padding: 30px 12px 50px 20px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 50px;
    margin: 0;
    margin-left: auto;
  }
  .main-form-two form button[type=submit] {
    margin-bottom: 0;
    max-width: 300px;
  }
  .main-form-two form input[type=text],
  .main-form-two form input[type=email],
  .main-form-two form input[type=tel] {
    max-width: 300px;
    font-size: 1.125rem;
  }
  .main-form-two form::after {
    top: 0;
    left: -12px;
    z-index: -1;
    width: 50px;
    height: calc(100% - 150px);
  }
  .main-form-two form h4 span {
    font-size: 1.125rem;
  }
  .main-form-two form h4::after {
    background-size: cover;
  }
  .main-form-two form span.text {
    font-size: 1rem;
    line-height: 1.75rem;
  }
  .main-form-two form label {
    align-items: center;
    margin-bottom: 20px;
  }
  .main-form-two form label span {
    font-size: 0.9rem;
  }
  .main-form-two form label span a {
    font-size: 0.9rem;
  }
  .main-form-two form label .checkbox {
    flex-shrink: 0;
  }
  .cases,
  .main-cases {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .cases .cases-all,
  .main-cases .cases-all {
    padding-top: 0;
    padding-right: 12px;
  }
  .cases .cases-all a.button,
  .main-cases .cases-all a.button {
    margin: 0 auto;
    max-width: 300px;
  }
  .cases .row .col-lg-12:last-child,
  .main-cases .row .col-lg-12:last-child {
    padding-right: 0;
  }
  .cases__inner,
  .main-cases__inner {
    flex-wrap: nowrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    overflow-x: scroll;
  }
  .cases__inner .item,
  .main-cases__inner .item {
    flex-shrink: 0;
    max-width: 100%;
    width: 400px;
    margin-bottom: 0;
    margin-right: 10px;
  }
  .cases__inner .item .mini-slider,
  .main-cases__inner .item .mini-slider {
    height: auto;
  }
  .cases__inner .item .mini-slider span,
  .main-cases__inner .item .mini-slider span {
    padding-right: 0;
  }
  .cases__inner .item .mini-slider .carousel-indicators,
  .main-cases__inner .item .mini-slider .carousel-indicators {
    bottom: -70px;
  }
  .cases__inner .item .line .logo,
  .main-cases__inner .item .line .logo {
    width: 80px;
    height: 80px;
  }
  .cases__inner .item .line .text,
  .main-cases__inner .item .line .text {
    font-size: 1rem;
  }
  .main-news {
    top: 200px;
    margin-bottom: 0;
    height: auto;
    margin-top: -200px;
  }
  .main-news::after {
    background-position: 0%;
    background-size: 120%;
  }
  .main-news .switch {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 40px;
  }
  .main-news .switch span {
    font-size: 1.25rem;
    text-align: center;
    width: 120px;
  }
  .main-news .pre-news {
    width: 100%;
    height: 300px;
    top: -300px;
    background-size: cover;
    background-position: top;
  }
  .main-news .header-big {
    left: 0;
    height: 100px;
  }
  .main-news .header-big span {
    top: 0;
    left: 0;
  }
  .main-news::before {
    display: none;
  }
  .main-news .inner-news {
    top: -300px;
  }
  .main-news .plus-news {
    display: block;
  }
  .main-news .plus-news .left {
    padding-bottom: 30px;
    width: 100%;
  }
  .main-news .plus-news .left-over {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .main-news .plus-news .left .item {
    width: 335px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  .main-news .plus-news .left .item:nth-child(3) {
    display: block;
  }
  .main-news .plus-news .right {
    width: calc(100% + 24px);
    margin-left: -12px;
  }
  .main-news .plus-news .right .info {
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-news .plus-news .right .line {
    padding: 0 12px;
    width: 100%;
  }
  footer {
    padding-top: 60px;
    padding-bottom: 120px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  footer a.logo {
    margin-bottom: 30px;
  }
  footer .footer-inner {
    display: block;
  }
  footer .footer-inner .menu {
    display: block;
    width: 100%;
  }
  footer .footer-inner .menu ul {
    width: 100%;
  }
  footer .footer-inner .info span.allert {
    width: 100%;
    max-width: 500px;
  }
  .header-mobile {
    transition: 0.3s all ease;
  }
  .header-mobile.fixed {
    top: 12px;
    transition: 0.3s all ease;
  }
  .mobile-toolbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 70px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    position: fixed;
    box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 5;
    bottom: 0;
    left: 0;
  }
  .mobile-toolbar .menu {
    width: 80px;
  }
  .mobile-toolbar .menu .icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #E2F1FF;
    background-image: url(../icons/14-bar-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    margin: 0 auto;
    margin-bottom: 2px;
  }
  .mobile-toolbar .menu span {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 0.875rem;
    font-family: "Regular", sans-serif;
    line-height: 1rem;
  }
  .mobile-toolbar a {
    width: 80px;
    height: 56px;
    text-decoration: none;
  }
  .mobile-toolbar a span {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 0.875rem;
    font-family: "Regular", sans-serif;
    line-height: 1rem;
  }
  .mobile-toolbar a .icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #E2F1FF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    margin: 0 auto;
    margin-bottom: 2px;
    background-size: contain;
  }
  .mobile-toolbar a.home .icon {
    background-image: url(../icons/15-bar-icon.svg);
  }
  .mobile-toolbar a.contacts .icon {
    background-image: url(../icons/16-bar-icon.svg);
  }
  .mobile-toolbar a.products-m .icon {
    background-image: url(../icons/17-bar-icon.svg);
  }
  .simple-frame {
    padding-bottom: 50px;
  }
  .simple-frame .line {
    width: 150%;
    height: 100%;
    left: -50%;
  }
  .simple-frame.simple-service h1, .simple-frame.simple-product h1 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .simple-frame h1 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-align: center;
    margin-bottom: 30px;
  }
  .simple-frame p {
    font-size: 1rem;
    line-height: 1.75rem;
    text-align: center;
    font-family: "Regular", sans-serif;
    margin-bottom: 20px;
  }
  .simple-frame span {
    text-align: center;
    width: 100%;
    font-size: 1.313rem;
  }
  .simple-frame ul {
    padding-top: 0;
  }
  .simple-frame ul li {
    align-items: flex-start;
    font-family: "Regular", sans-serif;
  }
  .simple-frame ul li::before {
    margin-top: 7px;
  }
  .simple-frame__inner {
    display: flex;
    flex-wrap: wrap;
  }
  .simple-frame__inner .left {
    order: 1;
    width: 100%;
  }
  .simple-frame__inner .right {
    order: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .simple-frame .button {
    margin: 0 auto;
    max-width: 300px;
    font-size: 1.125rem;
  }
  .simple-frame .button::after {
    left: 20px;
    top: 20px;
  }
  .breadcrumbs {
    padding-top: 20px;
  }
  .breadcrumbs .breadcrumb {
    padding-bottom: 10px;
    overflow: hidden;
    overflow-x: scroll;
  }
  .breadcrumbs .breadcrumb .breadcrumb-item {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .demo-frame {
    padding-top: 0px;
  }
  .demo-frame__inner {
    display: block;
  }
  .demo-frame__inner .left {
    width: 100%;
  }
  .demo-frame__inner .right {
    width: 100%;
  }
  .demo-frame p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 40px;
    font-family: "Regular", sans-serif;
  }
  .demo-frame ul li {
    align-items: flex-start;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 40px;
    font-family: "Regular", sans-serif;
    margin-bottom: 20px;
  }
  .demo-frame ul li:before {
    margin-top: 5px;
  }
  .relaited {
    padding-bottom: 20px;
    padding-top: 60px;
  }
  .relaited::before {
    top: 0;
    width: 100%;
    background-size: 400%;
    background-position: 30% top;
    height: 100%;
  }
  .relaited__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .relaited__inner .item {
    width: 335px;
    margin-right: 10px;
  }
  .relaited__sub-inner {
    padding-top: 0;
    padding-right: 12px;
  }
  .relaited__sub-inner a.button {
    max-width: 300px;
    margin: 0 auto;
    font-size: 1.125rem;
  }
  .programms-frame {
    padding-top: 60px;
  }
  .programms-frame__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    overflow-x: scroll;
  }
  .programms-frame .item {
    margin-top: 120px;
    width: 350px;
    height: 550px;
    margin-right: 10px;
  }
  .programms-frame .item img {
    margin-top: -120px;
  }
  .programms-frame .item h6 {
    height: 70px;
    font-size: 1.125rem;
  }
  .programms-frame .item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .programms-frame .item .price {
    height: 40px;
    margin-bottom: 10px;
  }
  .programms-frame .item ul {
    margin-bottom: 10px;
  }
  .main-form-one.padding-product-page {
    padding-bottom: 60px;
  }
  .service-offer {
    padding-top: 0;
  }
  .service-offer__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: hidden;
    overflow-x: scroll;
  }
  .service-offer .item {
    background-color: transparent;
    width: 225px;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  .service-offer .item .icon {
    background-color: #477FD1;
    width: 50px;
    height: 50px;
  }
  .service-offer .item .icon::after {
    width: 50px;
    height: 50px;
    background-color: #fff;
  }
  .service-offer .item .header {
    color: #23252A;
    font-size: 1.125rem;
    height: 30px;
  }
  .service-offer .item p.text {
    color: #23252A;
    display: block;
    padding-top: 10px;
  }
  .service-stages .left {
    width: 100%;
    padding: 0;
  }
  .service-stages .right {
    width: 100%;
    padding: 0;
  }
  .service-stages p {
    font-family: "Regular", sans-serif;
  }
  .service-stages__before-inner {
    display: block;
    padding-bottom: 0px;
  }
  .service-stages__inner {
    overflow: hidden;
    overflow-x: scroll;
    background-image: none;
  }
  .service-stages__inner .item {
    flex-shrink: 0;
    margin-right: 20px;
    padding-bottom: 30px;
  }
  .service-stages__inner .item:nth-child(even) {
    margin-top: 0;
  }
  .service-stages__inner .item .number {
    margin-bottom: 20px;
    line-height: 8.75rem;
  }
  .service-stages__inner .item h6 {
    font-size: 1.25rem;
  }
  .service-stages__inner .item span {
    font-size: 0.875rem;
    font-family: "Regular", sans-serif;
  }
  .service-slider {
    padding-top: 60px;
  }
  .service-slider .carousel-indicators {
    display: none;
  }
  .service-slider .carousel.slide {
    padding-bottom: 0;
  }
  .service-slider .carousel.slide img {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
  }
  .service-slider .info {
    position: static;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: #E4EEF8;
    border-radius: 20px;
  }
  .service-slider .info h6 {
    font-size: 1.125rem;
    font-family: "Bold", sans-serif;
  }
  .service-slider .info:before, .service-slider .info:after {
    display: none;
  }
  .service-slider .carousel-control-next .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
  .service-slider .carousel-control-prev .carousel-control-prev-icon {
    width: 50px;
    height: 50px;
  }
  .service-profit {
    padding-top: 60px;
    margin-bottom: 0;
  }
  .service-profit__inner {
    background-image: none;
    display: block;
  }
  .service-profit__inner .left {
    width: 100%;
  }
  .service-profit__inner .right {
    width: 100%;
  }
  .service-profit .item-text {
    margin-bottom: 30px;
  }
  .mobile-hide {
    overflow: hidden;
    max-height: 800px;
    position: relative;
    padding-bottom: 30px;
  }
  .mobile-hide.show {
    max-height: 100%;
    padding-bottom: 0;
  }
  .mobile-hide.show:after {
    display: none;
  }
  .mobile-hide.show .hide-line {
    display: none;
  }
  .mobile-hide::after {
    content: "";
    width: 100%;
    height: 400px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../img/43-gradient.svg);
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    z-index: 1;
  }
  .mobile-hide .hide-line {
    display: block;
    position: absolute;
    bottom: 0px;
    width: 60px;
    height: 60px;
    background-image: url(../icons/31-icon-more.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    border-radius: 30px;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #E4EEF8;
    left: calc(50% - 30px);
    z-index: 2;
  }
  .simple-form {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 10px;
    border-bottom-left-radius: 60px;
    background-image: url(../icons/32-icon-overlines.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 15%;
  }
  .simple-form.reg {
    padding: 0;
    display: block;
  }
  .simple-form.reg form {
    display: block;
    padding: 30px 0;
  }
  .simple-form.reg form .left {
    width: 100%;
  }
  .simple-form.reg form .right {
    display: none;
  }
  .simple-form.reg form label {
    padding-top: 0;
  }
  .simple-form.reg form label .checkbox {
    flex-shrink: 0;
  }
  .simple-form.reg form h4 {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  .simple-form.reg form h4 span {
    font-size: 1.563rem;
  }
  .simple-form.reg form h4:after {
    display: none;
  }
  .simple-form.reg form input[type=text],
  .simple-form.reg form input[type=tel],
  .simple-form.reg form button[type=submit],
  .simple-form.reg form input[type=email] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .simple-form form {
    padding: 30px 20px;
    display: block;
  }
  .simple-form form h4 {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  .simple-form form h4 span {
    font-size: 1.25rem;
  }
  .simple-form form h4:after {
    display: none;
  }
  .simple-form form input[type=text],
  .simple-form form input[type=tel],
  .simple-form form button[type=submit] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .simple-form form label {
    padding-top: 0;
  }
  .simple-form form label .checkbox {
    flex-shrink: 0;
  }
  .service-tariffs {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .service-tariffs .header-big {
    overflow: hidden;
  }
  .service-tariffs__inner {
    margin-top: -30px;
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 45px;
    padding-bottom: 20px;
  }
  .service-tariffs .item {
    flex-shrink: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 350px;
    padding: 20px 10px;
  }
  .service-tariffs .item .icon {
    right: 10px;
    width: 80px;
    height: 80px;
  }
  .service-tariffs .item .icon img {
    width: 80px;
    height: 80px;
  }
  .service-tariffs .item h6 {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  .service-tariffs .item ul li {
    font-size: 1rem;
    font-family: "Regular", sans-serif;
    margin-bottom: 15px;
    font-family: "SemiBold", sans-serif;
  }
  .service-tariffs .item ul li span {
    font-size: 1rem;
    font-family: "Regular", sans-serif;
  }
  .service-reviews {
    padding-top: 60px;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .service-reviews::before {
    display: none;
  }
  .service-reviews .carousel-control-next {
    width: 54px;
  }
  .service-reviews .carousel-control-prev {
    width: 54px;
  }
  .service-reviews .carousel {
    padding: 30px 54px;
    border-radius: 20px;
  }
  .service-reviews .carousel .carousel-item-inner {
    display: block;
  }
  .service-reviews .carousel .carousel-item-inner img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .service-reviews .carousel .carousel-item-inner .text {
    width: 100%;
    padding: 0 5px;
  }
  .service-reviews .carousel .carousel-item-inner .text h6 {
    text-align: center;
    margin-bottom: 30px;
    font-family: "SemiBold", sans-serif;
    font-size: 1.125rem;
    text-transform: none;
  }
  .service-reviews .carousel .carousel-item-inner .text .under-line {
    justify-content: center;
  }
  .faq {
    padding-top: 60px;
  }
  .faq .line .head .number {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 1.125rem;
  }
  .faq .line .head h6 {
    font-size: 1.125rem;
    padding-left: 10px;
    font-family: "Regular", sans-serif;
    width: calc(100% - 80px);
  }
  .faq .line .head .icon {
    margin-left: auto;
    scale: 0.5;
  }
  .news-slider {
    padding-bottom: 60px;
  }
  .news-slider img {
    height: 500px;
  }
  .news-slider .carousel-indicators {
    bottom: -60px;
  }
  .news-slider .carousel-indicators button {
    width: 20px;
    height: 20px;
  }
  .news-slider .carousel-item-inner .inner {
    width: 100%;
    left: 0;
    padding: 0 20px;
  }
  .news-slider .carousel-item-inner .inner a.title {
    font-size: 1.125rem;
    line-height: normal;
    -webkit-line-clamp: 5;
    padding-top: 20px;
  }
  .news-slider .carousel-control-prev-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }
  .news-slider .carousel-control-next-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }
  .news-slider .carousel-control-next {
    right: 5px;
    display: none;
  }
  .news-slider .carousel-control-prev {
    left: 5px;
    display: none;
  }
  .news-line {
    padding-bottom: 0;
  }
  .news-line__inner {
    display: block;
  }
  .news-line__inner .item {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .simple-text {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .simple-text p {
    font-size: 1rem;
    line-height: 1.75rem;
  }
  .single-new-head {
    padding-top: 20px;
  }
  .single-new-head .date {
    margin-bottom: 5px;
  }
  .single-new-head h1 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .single-new-head .main-image {
    margin-bottom: 20px;
  }
  .single-new-head .main-image img {
    height: 300px;
  }
  .single-article-head {
    padding-top: 20px;
  }
  .single-article-head .date {
    margin-bottom: 5px;
  }
  .single-article-head .time {
    margin-bottom: 5px;
  }
  .single-article-head h1 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .single-news-content {
    padding-bottom: 0;
  }
  .single-news-content h2,
  .single-news-content h3,
  .single-news-content h4,
  .single-news-content h5,
  .single-news-content h6 {
    font-size: 1.125rem;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .single-news-content p {
    font-size: 1rem;
  }
  .single-news-content ul li {
    font-size: 1rem;
  }
  .single-article-content {
    padding-bottom: 0;
    background-size: 200%;
  }
  .single-article-content .table-overflow {
    overflow-x: scroll;
    margin-bottom: 10px;
    padding-bottom: 20px;
  }
  .single-article-content .bordered {
    min-width: 900px;
  }
  .single-article-content h2,
  .single-article-content h3,
  .single-article-content h4,
  .single-article-content h5,
  .single-article-content h6 {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
  .single-article-content h5,
  .single-article-content h6 {
    font-size: 1.125rem;
    margin-top: 0;
  }
  .single-article-content p {
    font-size: 1rem;
  }
  .single-article-content ul li {
    font-size: 1rem;
  }
  .contacts {
    padding-top: 0;
    padding-bottom: 0;
  }
  .contacts .item {
    display: block;
    padding-bottom: 0;
  }
  .contacts .item__inner {
    width: 100%;
    padding-bottom: 40px;
  }
  .contacts .map-inner {
    display: none;
  }
  .contacts .show-on-map {
    display: flex;
    margin: 0 auto;
    color: #fff;
    margin-bottom: 50px;
  }
  .articles.popular .articles__inner {
    display: block;
  }
  .articles.popular .articles__inner .item:first-child, .articles.popular .articles__inner .item:last-child {
    width: 100%;
  }
  .articles__inner {
    display: block;
  }
  .articles__inner .item {
    border-radius: 20px;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .articles__inner .item:first-child, .articles__inner .item:last-child {
    max-width: 100%;
  }
  .articles__inner .item .text p,
  .articles__inner .item .text .date {
    padding: 0;
  }
  .articles__inner .item .date {
    padding: 0;
  }
  .articles__inner .item .info {
    padding: 20px;
  }
  .single-stock {
    padding-bottom: 0;
  }
  .single-stock h3,
  .single-stock h4,
  .single-stock h5,
  .single-stock h6 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .single-stock p {
    font-size: 1rem;
  }
  .single-stock ul li {
    font-size: 1rem;
  }
  .single-stock ul.first li {
    font-size: 1rem;
  }
  .single-stock__num {
    display: block;
  }
  .single-stock__num .left,
  .single-stock__num .right {
    width: 100%;
    padding: 0;
  }
  .single-stock__num .left ul,
  .single-stock__num .right ul {
    padding: 0;
  }
  .single-stock__num .left ul li,
  .single-stock__num .right ul li {
    margin-bottom: 20px;
  }
  .single-stock__num .left ul li p,
  .single-stock__num .right ul li p {
    margin-bottom: 0;
    font-size: 1rem;
  }
  .single-stock__num .left ul li span,
  .single-stock__num .right ul li span {
    font-size: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 40px;
    margin-right: 10px;
  }
  .spickers {
    padding-top: 50px;
  }
  .spickers__row {
    display: block;
  }
  .spickers ul li {
    margin-bottom: 30px;
  }
  .spickers .item-over {
    margin-right: 10px;
    flex-shrink: 0;
    width: auto;
  }
  .spickers .item-over .item {
    width: 350px;
    margin-bottom: 20px;
  }
  .single-event__second .right img:nth-child(2) {
    margin-bottom: 0;
  }
  .single-event__second .right img:nth-child(1) {
    margin-bottom: 30px;
  }
  .single-event__second h2 {
    font-size: 1.125rem;
    height: 80px;
  }
  .simple-form.reg h4 {
    font-size: 1.125rem;
    height: 80px;
  }
  .single-event__first {
    display: block;
  }
  .single-event__first .item {
    padding: 10px 15px;
  }
  .single-event__first .item_img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .single-event__first .item_img img {
    width: 100%;
    height: auto;
  }
  .single-event__first .item span.second,
  .single-event__first .item span.first {
    font-size: 1.125rem;
  }
  .single-event__first .item.when, .single-event__first .item.time, .single-event__first .item.where, .single-event__first .item.who {
    max-width: 100%;
    width: 100%;
  }
  .single-event__second {
    display: block;
  }
  .single-event__second .left {
    width: 100%;
  }
  .single-event__second .left h2 {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  .single-event__second .left ul li p {
    font-size: 1.125rem;
    font-family: "Regular", sans-serif;
  }
  .single-event__second .right {
    width: 100%;
  }
  .cases-single {
    padding-bottom: 50px;
  }
  .cases-single__row {
    display: block;
  }
  .cases-single__row .item {
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
  }
  .cases-single__row .item:nth-child(1), .cases-single__row .item:nth-child(2), .cases-single__row .item:nth-child(3), .cases-single__row .item:nth-child(4) {
    width: 100%;
    max-width: 100%;
  }
  .cases-single__row .item:nth-child(1) .top, .cases-single__row .item:nth-child(2) .top, .cases-single__row .item:nth-child(3) .top, .cases-single__row .item:nth-child(4) .top {
    height: auto;
  }
  .cases-single__row .item .top {
    padding: 25px;
    height: auto;
  }
  .cases-single__row .item .top h2 {
    max-width: 100%;
  }
  .cases-single__row .item .top p {
    height: auto;
    display: block;
  }
  .simple-frame.simple-product,
  .simple-frame.simple-service {
    padding-top: 0;
  }
  .simple-frame.simple-product .simple-frame__inner,
  .simple-frame.simple-service .simple-frame__inner {
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .simple-frame.simple-product .simple-frame__inner .left h1,
  .simple-frame.simple-service .simple-frame__inner .left h1 {
    font-size: 1.25rem;
  }
  .simple-frame.simple-product .simple-frame__inner .left p,
  .simple-frame.simple-service .simple-frame__inner .left p {
    margin-bottom: 20px;
    font-size: 1rem;
  }
  .simple-frame.simple-product .price-line,
  .simple-frame.simple-service .price-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .simple-frame.simple-product .price-line span,
  .simple-frame.simple-service .price-line span {
    display: block;
    text-align: center;
    width: 100%;
    order: 0;
    margin-bottom: 30px;
    font-size: 1.125rem;
  }
  .simple-frame.simple-product .price-line .button,
  .simple-frame.simple-service .price-line .button {
    margin: 0 auto;
    order: 1;
  }
  .simple-frame.simple-product .price-line .button::after,
  .simple-frame.simple-service .price-line .button::after {
    display: none;
  }
  .simple-frame.simple-service {
    padding-top: 0;
  }
  .simple-frame.frame-case .simple-frame__inner .left p {
    font-family: "Regular", sans-serif;
    text-align: left;
  }
  .project {
    margin-bottom: 50px;
  }
  .project__inner {
    display: block;
  }
  .project__inner .right,
  .project__inner .left {
    width: 100%;
  }
  .project__inner .right .item,
  .project__inner .left .item {
    padding: 15px;
  }
  .project__inner .right .item .text h6,
  .project__inner .left .item .text h6 {
    font-size: 1.125rem;
  }
  .project__inner .right .item .text span,
  .project__inner .left .item .text span {
    font-size: 1rem;
  }
  .project__inner .right .item .icon,
  .project__inner .left .item .icon {
    width: 60px;
    height: 60px;
  }
  .project__inner .left {
    margin-bottom: 20px;
  }
  .project__inner .right {
    height: auto;
  }
  .project__inner .right p {
    font-size: 1rem;
  }
  .todo {
    padding-bottom: 50px;
  }
  .todo__inner {
    display: block;
  }
  .todo__inner .left,
  .todo__inner .right {
    padding-bottom: 20px;
    width: 100%;
  }
  .todo__inner .left p,
  .todo__inner .right p {
    font-size: 1.125rem;
  }
  .todo__inner .long ul {
    padding-top: 20px;
  }
  .todo__inner .long ul li::before {
    width: 15px;
    height: 15px;
    border-radius: 3px;
  }
  .todo__inner .long ul li p {
    font-size: 1.125rem;
  }
  .result {
    padding-bottom: 140px;
  }
  .result p {
    font-size: 1rem;
    padding: 15px;
  }
  .result .line {
    padding: 0;
  }
  .result .line__inner {
    display: block;
    padding: 50px 20px;
  }
  .result .line__inner .item {
    width: 100%;
  }
  .single-career {
    padding-bottom: 50px;
  }
  .single-career p {
    font-size: 1rem;
    line-height: 1.75rem;
  }
  .single-career .line__first {
    display: block;
  }
  .single-career .line__first img {
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .single-career .line__second {
    display: block;
  }
  .single-career .line__second .item {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .single-career-text {
    margin-bottom: 50px;
  }
  .single-career-text h4 {
    font-size: 1.125rem;
  }
  .advantages__inner {
    display: block;
  }
  .advantages__inner .item {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 30px;
  }
  .advantages__inner .item h6 {
    font-size: 1rem;
    font-family: "SemiBold", sans-serif;
  }
  .advantages__inner .item p {
    font-size: 1rem;
  }
  .vacancies__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-top: 0;
  }
  .vacancies__inner .item {
    width: 325px;
    padding: 30px 10px 20px 10px;
    flex-shrink: 0;
    margin-right: 10px;
    margin-bottom: 0;
  }
  .vacancies__inner .item:before {
    width: 50px;
    height: 50px;
    background-size: 90%;
    top: -20px;
    left: calc(50% - 25px);
  }
  .vacancies__inner .item .button {
    font-size: 1rem;
  }
  .vacansy-frame {
    padding-bottom: 100px;
  }
  .vacansy-frame h1 {
    font-size: 1.25rem;
  }
  .vacansy-frame .button {
    margin: 0 auto;
    max-width: 400px;
  }
  .vacansy-frame .subinfo {
    display: block;
  }
  .vacansy-frame .subinfo li {
    margin-bottom: 15px;
  }
  .vacansy-frame .subinfo li img {
    margin-right: 20px;
  }
  .vacansy-frame .subinfo__header {
    font-size: 1.125rem;
  }
  .vacansy-frame .subinfo__text {
    font-size: 1rem;
    height: auto;
  }
  .vacansy-frame .right {
    display: none;
  }
  .vacansy-about {
    padding-top: 30px;
    padding-bottom: 80px;
    border-radius: 20px;
  }
  .vacansy-about h2,
  .vacansy-about h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .vacansy-about p {
    font-size: 1rem;
  }
  .vacansy-info {
    border-radius: 25px;
    padding-bottom: 0;
  }
  .vacansy-info h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .vacansy-info p {
    font-size: 1rem;
  }
  .vacansy-info ul {
    margin-bottom: 30px;
  }
  .vacansy-info ul li::before {
    top: 9px;
  }
  .vacansy-advantages {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .vacansy-advantages.service-one ul {
    display: block;
  }
  .vacansy-advantages.service-one ul li {
    width: 100%;
    height: auto;
    padding-bottom: 25px;
  }
  .vacansy-advantages.service-one ul li span {
    height: auto;
  }
  .vacansy-advantages.vacansy-page ul {
    display: block;
  }
  .vacansy-advantages.vacansy-page ul li {
    width: 100%;
  }
  .about-info {
    padding-top: 0;
  }
  .about-info__inner {
    display: block;
  }
  .about-info__inner .item {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    height: auto;
    padding-top: 40px;
    margin-bottom: 50px;
  }
  .about-info__inner .item:last-child {
    margin-bottom: 0;
  }
  .about-info__inner .item h6 {
    font-size: 1.125rem;
  }
  .about-info__inner .item h6 br {
    display: none;
  }
  .about-info__inner .item p {
    margin-bottom: 0;
    font-size: 1rem;
  }
  .history,
  .service-stages-line {
    padding-top: 140px;
    padding-bottom: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-bottom: 50px;
  }
  .history__inner,
  .service-stages-line__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .history__inner .over,
  .service-stages-line__inner .over {
    margin-right: 10px;
  }
  .history__inner .item,
  .service-stages-line__inner .item {
    width: 325px;
    height: auto;
    padding-bottom: 20px;
  }
  .history__inner .item p,
  .service-stages-line__inner .item p {
    font-size: 0.9rem;
  }
  .service-stages-line {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .service-stages-line__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .certificates {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .certificates__row {
    display: block;
  }
  .certificates__left {
    width: 100%;
  }
  .certificates__right {
    width: 100%;
    padding: 0;
  }
  .certificates__right .item {
    height: auto;
  }
  .certificates p {
    font-size: 1rem;
  }
  .certificates__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .certificates__inner .over {
    margin-right: 10px;
    min-width: 325px;
  }
  .partners {
    padding-bottom: 50px;
    padding-top: 0;
  }
  .partners__inner img {
    margin-bottom: 30px;
    height: 60px;
    opacity: 0.9;
  }
  .leftbar {
    border-radius: 0;
  }
  .page-error {
    min-height: 350px;
  }
  .page-error .image {
    max-width: 250px;
    height: 250px;
  }
  .page-error .text {
    font-family: "Regular", sans-serif;
    font-size: 1.125rem;
  }
  .programms-addon .item {
    padding: 0;
    padding-top: 20px;
  }
  .programms-addon .item .left {
    display: block;
    width: 100%;
    padding: 0;
    padding-bottom: 10px;
  }
  .programms-addon .item .center {
    display: block;
    width: 100%;
    padding: 0;
    padding: 10px;
    margin-bottom: 20px;
    height: 250px;
    overflow: hidden;
    position: relative;
  }
  .programms-addon .item .center .name {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .programms-addon .item .center::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    background-image: url(../img/grey-background.svg);
    background-repeat: repeat-x;
    background-size: contain;
    height: 100px;
    z-index: 1;
  }
  .programms-addon .item .center::before {
    content: "";
    position: absolute;
    left: calc(50% - 25px);
    bottom: 0;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-image: url(../icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    background-color: #477FD1;
    z-index: 2;
    cursor: pointer;
    transition: 0.3s all ease;
  }
  .programms-addon .item .center::before:hover {
    opacity: 0.8;
    transition: 0.3s all ease;
  }
  .programms-addon .item .center.show-text {
    height: auto;
  }
  .programms-addon .item .center.show-text::after, .programms-addon .item .center.show-text::before {
    display: none;
  }
  .programms-addon .item .right {
    display: block;
    width: 100%;
    padding: 15px 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .programms-addon .item .right .info-right ul li {
    margin-bottom: 15px;
  }
  .programms-addon .item .right .info-right-text {
    margin-bottom: 15px;
  }
  .programms-addon .item.show {
    display: block;
  }
  .demo-frame {
    padding-bottom: 50px;
  }
  .demo-frame .right {
    padding-left: 0;
  }
  .demo-frame .right ul li {
    line-height: 1.75rem;
    font-size: 1rem;
  }
  .demo-frame .right ul li:before {
    top: 5px;
  }
  .demo-frame .right ul li:last-child {
    margin-bottom: 0;
  }
  .demo-frame .left {
    margin-bottom: 30px;
  }
  .demo-frame .left p {
    margin-bottom: 30px;
  }
  .demo-frame .left .button {
    margin: 0 auto;
  }
  .demo-frame .left .button::after {
    display: none;
  }
  .simple-frame.simple-product img.product-image-custom,
  .simple-frame.simple-service img.product-image-custom {
    margin-bottom: 10px;
  }
  .simple-frame .right.stock-img img,
  .simple-frame .right.about-img img {
    width: 100%;
    margin-bottom: 20px;
    max-width: 450px;
  }
  .simple-frame .left.stock-text,
  .simple-frame .left.single-stock-text,
  .simple-frame .left.about-text {
    padding: 20px 10px;
    margin-top: 10px;
  }
  .single-career-text .superjob {
    display: block;
    text-align: center;
  }
  .single-career-text .superjob .item {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .simple-frame .left.stock-text .career-text {
    text-align: left;
  }
  .vacancies__inner .item h6 {
    font-size: 1rem;
  }
  .vacancies__inner .item p {
    height: 130px;
  }
  .data-mobile {
    padding-top: 30px;
    padding-bottom: 250px;
  }
  .data-mobile:before {
    left: 0px;
    top: -150px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .data-mobile__right {
    width: 100%;
    max-width: 100%;
  }
  .data-mobile__right h1 {
    font-size: 1.563rem;
    margin-bottom: 30px;
  }
  .data-mobile__right p {
    font-size: 1.125rem;
    margin-bottom: 60px;
  }
  .data-mobile__right .button {
    margin: 0 auto;
  }
  .data-mobile-page .header-mobile {
    background-color: transparent;
    position: absolute;
  }
  .data-mobile-page .header-mobile span {
    background-color: #fff;
  }
  .data-mobile-page .header-mobile.fixed {
    background-color: #fff;
    position: fixed;
  }
  .data-mobile-page .header-mobile.fixed span {
    background-color: #477FD1;
  }
  .data-mobile-line {
    overflow-x: hidden;
  }
  .data-mobile-line__products .data-product .more {
    display: block;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    background-image: url(../icons/81-icon-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    background-color: #477FD1;
    border-radius: 30px;
    cursor: pointer;
  }
  .data-mobile-line__products .data-product .more.hide {
    display: none;
  }
  .data-mobile-line__products .data-product ul {
    display: none;
  }
  .data-mobile-line__products .data-product ul.show {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .products__inner {
    display: block;
  }
  .products .item {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .products .item:last-child {
    margin-bottom: 0;
  }
  .demo-frame .item-content .center .pre-table,
  .service-tariffs__additioanl .item-content .center .pre-table {
    overflow: hidden;
    overflow-x: scroll;
    margin-bottom: 20px;
  }
  .demo-frame .item-content .center table,
  .service-tariffs__additioanl .item-content .center table {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .demo-frame .item-content .center table,
  .service-tariffs__additioanl .item-content .center table {
    width: 560px;
  }
  .demo-frame .item-content .center table th,
  .service-tariffs__additioanl .item-content .center table th {
    font-size: 1rem;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .demo-frame .item-content .center table th font,
  .service-tariffs__additioanl .item-content .center table th font {
    font-size: inherit;
  }
  #modalcontent .pre-table {
    overflow: hidden;
    overflow-x: scroll;
    margin-bottom: 20px;
  }
  #modalcontent table {
    width: 560px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 374px) {
  .products .item {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */