.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  overflow-y: auto;
}
.modal.show {
  visibility: visible;
}
.modal.show .modal__body {
  transform: translate(0, 0);
}
.modal.show .modal__underlay {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
}
.modal__underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s linear 0.4s;
}
.modal__body {
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 30px);
  max-width: 980px;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  transition: 0.4s linear;
  transform: translate(0, -100%);
}
.modal__close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.modal__close:before, .modal__close:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #1144AA;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.4s;
}
.modal__close:before {
  transform: rotate(45deg);
}
.modal__close:after {
  transform: rotate(-45deg);
}
.modal__close:hover:after, .modal__close:hover:before {
  background: #1144AA;
}
.modal__close--bg {
  top: 0;
  right: 0;
  background: #303030;
}
.modal__close--bg:before, .modal__close--bg:after {
  background: #fff;
}
.modal__close--bg:hover {
  background: #fff;
}
.modal__close--bg:hover:before, .modal__close--bg:hover:after {
  background: #303030;
}
.modal__content img {
  max-height: calc(100vh - 160px);
}

.hover-zoom {
  cursor: zoom-in;
}

#modal-callback .modal__body {
  max-width: 500px;
}
@media (max-width: 1170px) {
  #modal-callback .modal__body {
    margin: 0 auto;
  }
}

.mcf {
  padding: 40px;
}
@media (max-width: 419px) {
  .mcf {
    padding: 40px 10px;
  }
}
.mcf__title {
  font-weight: 900;
  font-size: 26px;
  line-height: 36px;
  margin: 0px 0px 11px;
  text-transform: uppercase;
  color: #333;
}
.mcf__subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #666;
  margin: 0px 0px 30px;
}
.mcf__input {
  border: 1px solid #1144AA;
  margin: 0px 0px 10px;
  width: 100%;
  display: block;
  height: 56px;
  padding: 16px;
  border-radius: 4px;
  font-size: 16px;
}
.mcf__button {
  margin: 20px 0px 20px;
}
@media (max-width: 1199px) {
  .mcf__button {
    margin: 20px 0px 20px !important;
  }
}
.mcf__note {
  font-size: 14px;
  line-height: 18px;
  color: #c9c9c9;
}
.mcf__note a {
  transition: 0s;
}
.mcf__thanks, .mcf__error {
  color: #303030 !important;
  margin: auto !important;
  font-size: 26px;
  line-height: 32px;
  text-align: center;
  margin: 0px 0px 20px !important;
  display: none;
}

#modal-video .modal__body {
  width: 100%;
  max-width: 800px;
}
#modal-video .modal__body .modal__close {
  top: -40px;
}
@media (max-width: 830px) {
  #modal-video .modal__body {
    max-width: calc(100% - 30px);
    margin: auto;
  }
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.eot");
  src: local("Gilroy Bold"), local("Gilroy-Bold"), url("../fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: "Roboto";
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 1920px;
  margin: auto;
  background: #16171c;
}
body.noscroll {
  overflow: hidden;
}
body.no-scroll {
  overflow: hidden;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active,
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  color: #1144AA;
}

a,
a:visited {
  text-decoration: none;
  transition: 0.4s;
}

a:hover {
  color: #27AE60;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0px 0px 10px;
}

ul.default {
  padding: 0px;
}
ul.default li {
  position: relative;
  margin: 0px 0px 12px;
  padding: 0 0 0 20px;
}
ul.default li:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #303030;
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: 0;
}

ol.default {
  list-style: none;
  counter-reset: item;
  padding: 0px 0px 0px 24px;
}
ol.default li {
  counter-increment: item;
  margin-bottom: 5px;
}
ol.default li:before {
  margin-right: 8px;
  content: counter(item) ".";
  color: #1144AA;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
}

.text-center {
  text-align: center !important;
}

.title {
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  margin: 0px 0px 40px;
  position: relative;
}
@media (max-width: 767px) {
  .title {
    font-size: 32px;
    margin: 0px 0px 40px;
  }
}
@media (max-width: 430px) {
  .title {
    font-size: 28px;
    margin: 0px 0px 30px;
  }
}

h2 {
  font-family: "Gilroy";
  font-size: 36px;
  font-weight: 600;
  margin: 0px 0px 30px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 28px;
    margin: 0px 0px 25px;
  }
}
@media (max-width: 430px) {
  h2 {
    font-size: 20px;
    margin: 0px 0px 20px;
  }
}

h3 {
  font-family: "Gilroy";
  font-size: 32px;
  font-weight: 600;
  margin: 0px 0px 15px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 22px;
  }
}
@media (max-width: 430px) {
  h3 {
    font-size: 18px;
  }
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 0 15px;
}
.container_big {
  max-width: 1750px;
}
.container_small {
  max-width: 980px;
}

img {
  max-width: 100%;
}

.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}

.button {
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 58px;
  padding: 0px 30px;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.4s;
  border: 1px solid #3284FF;
  border-radius: 64px;
  background: #3284FF;
  font-size: 18px;
}
.button:hover {
  background: none;
}
@media (max-width: 1199px) {
  .button {
    height: 50px;
  }
}
@media (max-width: 992px) {
  .button {
    padding: 0 20px;
  }
}
.button._dark {
  background: none;
  color: #303030;
}
.button._dark:hover {
  background: #303030;
  color: #fff;
}
.button._light {
  border: 1px solid #fff;
  background: none;
  color: #fff;
}
.button._light:hover {
  background: #fff;
  color: #303030;
}

.red-button {
  cursor: pointer;
  background: #FC000D;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 16px 16px;
  width: 100%;
  transition: 0.4s;
  line-height: 14px;
}
.red-button:hover {
  background: #1144AA;
  color: #fff;
}
.red-button:after {
  content: url("/images/icons/arrow-right.png");
  margin: 0px 0px 0px 10px;
}

.modal-img {
  cursor: zoom-in;
}

.back-to-top {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  box-shadow: 0px 8px 19.6px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 50%;
  transition: 0.4s;
  cursor: pointer;
}
.back-to-top:before, .back-to-top:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background: #303030;
}
.back-to-top:before {
  transform: rotate(-45deg);
  left: 14px;
  top: 28px;
}
@media (max-width: 767px) {
  .back-to-top:before {
    left: 9px;
    top: 23px;
  }
}
.back-to-top:after {
  transform: rotate(45deg);
  left: 27px;
  top: 29px;
}
@media (max-width: 767px) {
  .back-to-top:after {
    left: 22px;
    top: 23px;
  }
}
.back-to-top:hover {
  box-shadow: none;
}
@media (max-width: 767px) {
  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

.owl-carousel {
  position: unset !important;
}

.owl-nav {
  position: absolute;
  top: 0.2em;
  right: 0;
  display: flex;
  margin-top: 0 !important;
}

.owl-prev, .owl-next {
  flex: 0 0 36px;
  max-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1144AA !important;
  border-radius: 50% !important;
}
.owl-prev:hover, .owl-next:hover {
  background: #e4e4e4 !important;
}

.owl-prev {
  margin: 0px 20px 0px 0px;
}
.owl-prev:before {
  content: url("/images/icons/chevron-left-blue.png");
}

.owl-next:before {
  content: url("/images/icons/chevron-right-blue.png");
}

.lang {
  text-transform: uppercase;
  width: 70px;
  background: url("/images/icons/chevron-down.png") right center/auto no-repeat;
  position: relative;
}
.lang__active {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.lang__active img {
  margin: 0px 6px 0px 0px;
}
.lang__list {
  transition: 0.4s;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 100%;
  background: #fff;
  border-radius: 5px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.lang__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang__list li a img {
  margin: 0px 6px 0px 0px;
}
.lang:hover .lang__list {
  visibility: visible;
  opacity: 1;
}

.section {
  margin: 0px 0px 80px;
}
@media (max-width: 430px) {
  .section {
    margin: 0px 0px 40px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0 0;
  justify-content: center;
}

.icon-angle-double-left {
  display: block;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F63333;
}

.icon-angle-double-left:before {
  content: "<<";
}

.icon-angle-left {
  display: block;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F63333;
}

.icon-angle-left:before {
  content: "<";
}

.icon-angle-right {
  display: block;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F63333;
}

.icon-angle-right:before {
  content: ">";
}

.icon-angle-double-right {
  display: block;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F63333;
}

.icon-angle-double-right:before {
  content: ">>";
}

.page-item {
  margin: 0px 10px 0px 0px;
  background: #fff;
  transition: 0.4s;
}

.page-item:not(.disabled):not(.active):hover {
  cursor: pointer;
  background: rgba(246, 51, 51, 0.5);
}

.page-item .page-link {
  display: block;
  width: 32px;
  height: 32px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 80%;
}

.page-item.active {
  background: #F63333;
}

.page-item.active .page-link {
  color: #fff;
}

.page-item.disabled .icon-angle-double-left {
  color: #666;
}

.page-item.disabled .icon-angle-left {
  color: #666;
}

.page-item.disabled .icon-angle-double-right {
  color: #666;
}

.page-item.disabled .icon-angle-right {
  color: #666;
}

.quote {
  border-left: 4px solid #1144AA;
  background: rgba(17, 68, 170, 0.1215686275);
  color: #1144AA;
  padding: 8px;
  font-size: 18px;
  line-height: 24px;
  font-style: italic;
}
@media (max-width: 480px) {
  .quote {
    font-size: 16px;
  }
}
.quote__sign {
  color: rgba(17, 68, 170, 0.6392156863);
  font-size: 14px;
  margin: 12px 0px 0px;
  text-align: right;
}

.header {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 20px;
  background: #23252D;
  border-radius: 75px;
 
}
.header {
    margin: 40px auto;
}
.body_101 .header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .body_101 .header {
    top: 0;
    border-radius: 0;
  }
  .header {
      margin: 0 auto 40px;
  }
}
.header__logo {
  margin: 0px 90px 0px 0px;
}
@media (max-width: 992px) {
  .header__logo {
    margin: 0px 30px 0px 0px;
  }
}
@media (max-width: 430px) {
  .header__logo {
    margin: 0px 15px 0px 0px;
  }
}
@media (max-width: 430px) {
  .header__logo img {
    max-height: 44px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  .header__menu {
    display: block;
    margin: 0px 0px 30px;
  }
}
.header__menu-item {
  margin: 0px 40px 0px 0px;
  padding: 10px 0;
}
.header__menu-item:last-child {
  margin: 0 0 0px;
}
@media (max-width: 1199px) {
  .header__menu-item {
    padding: 10px;
    border-bottom: 1px solid #c9c9c9;
    margin: 0;
  }
}
.header__menu-link {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 1199px) {
  .header__menu-link {
    font-size: 16px;
    color: #333;
  }
}
.header__socials {
  display: flex;
  align-items: center;
  margin: 0px 24px 0px auto;
}
@media (max-width: 1199px) {
  .header__socials {
    margin: 0 30px 0 auto;
  }
}
@media (max-width: 767px) {
  .header__socials {
    justify-content: center;
    margin: 0px 0px 0;
    padding: 10px;
    background: #12141A;
  }
}
.header__socials-link {
  width: 30px;
  height: 30px;
  transition: 0.4s;
  transform: scale(1);
}
.header__socials-link svg path {
  transition: 0.4s;
}
.header__socials-link._wa {
  margin: 0px 15px 0px 0px;
}
.header__socials-link._wa:hover svg path {
  fill: #27AE60;
}
.header__socials-link._tg:hover svg path:first-child {
  fill: #27AE60;
}
.header__socials-link:hover {
  transform: scale(1.2);
}
.header__callback {
  transform: scale(0);
  transition: transform 1s, background 0.4s;
}
.header__callback._active {
  transform: scale(1);
}
@media (max-width: 1199px) {
  .header__callback {
    margin: 0 30px 0 0;
  }
}
@media (max-width: 767px) {
  .header__callback {
    margin: 0 auto 30px;
  }
}
.header__burger {
  display: none;
  position: relative;
}
@media (max-width: 1199px) {
  .header__burger {
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .header__burger {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 430px) {
  .header__burger {
    height: 40px;
    width: 40px;
  }
}
.header__burger span {
  width: 36px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.4s;
}
@media (max-width: 430px) {
  .header__burger span {
    width: 30px;
  }
}
.header__burger span:nth-child(1) {
  top: 14px;
  transform: rotate(0);
}
@media (max-width: 430px) {
  .header__burger span:nth-child(1) {
    top: 9px;
  }
}
.header__burger span:nth-child(2) {
  top: 0;
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.header__burger span:nth-child(3) {
  bottom: 14px;
  transform: rotate(0);
}
@media (max-width: 430px) {
  .header__burger span:nth-child(3) {
    bottom: 9px;
  }
}
.header__burger.show span:nth-child(1) {
  top: 0;
  bottom: 0;
  transform: rotate(135deg);
}
.header__burger.show span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.header__burger.show span:nth-child(3) {
  top: 0;
  bottom: 0;
  transform: rotate(-135deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 74px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  border-top: 1px solid #E0E0E0;
  z-index: 999;
  transition: 0.4s;
  transform: translate(-110%, 0);
}
.mobile-menu.show {
  transform: translate(0, 0);
}
@media (max-width: 1199px) {
  .mobile-menu {
    display: block;
  }
}
@media (max-width: 430px) {
  .mobile-menu {
    top: 68px;
  }
}
.mobile-menu__shadow {
  display: none;
  position: absolute;
  top: 74px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  z-index: 998;
}
.mobile-menu__shadow.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1199px) {
  .mobile-menu__shadow {
    display: block;
  }
}
@media (max-width: 430px) {
  .mobile-menu__shadow {
    top: 68px;
  }
}
.mobile-menu__content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #fff;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 100px;
}
@media (max-width: 480px) {
  .mobile-menu__menu-items-holder {
    margin: 0px 0px 20px;
  }
}

.topbanner {
  background: url("/images/back.jpg") center center/cover no-repeat;
  padding: 200px 0 40px;
  margin: 0px 0px 60px;
}
@media (max-width: 991px) {
  .topbanner {
    padding: 130px 0 40px;
  }
}
@media (max-width: 480px) {
  .topbanner {
    margin: 0px 0px 30px;
  }
}
.topbanner__content {
  margin: 0px 0px 150px;
}
@media (max-width: 991px) {
  .topbanner__content {
    margin: 0px 0px 80px;
  }
}
.topbanner__title {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  max-width: 727px;
  margin: 0px 0px 30px;
}
.topbanner__title span {
  color: #3657FF;
  display: block;
}
@media (max-width: 767px) {
  .topbanner__title {
    font-size: 40px;
    line-height: 1.2;
  }
}
.topbanner__text {
  font-size: 22px;
  margin: 0px 0px 30px;
  max-width: 420px;
}
.topbanner__callback {
  padding: 23px 60px;
  height: 70px;
  transform: scale(0);
  transition: transform 1s, background 0.4s;
}
.topbanner__callback._active {
  transform: scale(1);
}
@media (max-width: 575px) {
  .topbanner__callback {
    padding: 0 20px;
    height: 50px;
  }
}
.topbanner__items {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .topbanner__items {
    flex-wrap: wrap;
  }
}
.topbanner__item {
  border-radius: 75px;
  font-weight: 600;
  padding: 18px 80px 18px 80px;
  background: #1E1F26 url("/images/icons/check-blue-circle.png") 20px center/auto no-repeat;
  margin: 0 30px 0 0;
  transform: translateY(20px) scale(0);
  transition: 1s;
}
.topbanner__item._active {
  transform: translateY(0) scale(1);
}
.topbanner__item:last-child {
  margin: 0;
}
@media (max-width: 1199px) {
  .topbanner__item:last-child {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 1199px) {
  .topbanner__item {
    flex: 0 0 48%;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 575px) {
  .topbanner__item {
    flex: 0 0 100%;
  }
}

.services {
  margin: 0px 0px 100px;
  position: relative;
}
@media (max-width: 991px) {
  .services {
    margin: 0px 0px 60px;
  }
}
.services:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("/images/before-1.png") center center/auto no-repeat;
  z-index: -1;
  width: 838px;
  height: 1362px;
}
.services__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service {
  flex: 0 0 30%;
  border-radius: 10px;
  background: #1E1F26;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transform: scale(0.5);
  transition: 1s;
}
.service._active {
  transform: scale(1);
}
@media (max-width: 1199px) {
  .service {
    padding: 15px;
    flex: 0 0 32%;
  }
}
@media (max-width: 991px) {
  .service {
    flex: 0 0 48%;
    margin: 0px 0px 30px;
  }
}
@media (max-width: 575px) {
  .service {
    flex: 0 0 100%;
    margin: 0px 0px 20px;
  }
}
.service__image {
  border-radius: 10px;
  margin: 0px 0px 36px;
  height: 260px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .service__image {
    margin: 0px 0px 24px;
  }
}
.service__info {
  display: flex;
  margin: 0px 0px 27px;
  justify-content: space-between;
}
.service__title {
  flex: 0 0 160px;
  margin: 0px 30px 0px 0px;
  font-size: 21px;
  line-height: 28px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  .service__title {
    font-size: 18px;
    flex: 0 0 140px;
  }
}
.service__price {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 480px) {
  .service__price {
    font-size: 20px;
  }
}
.service__calback {
  height: 52px;
  border-radius: 10px;
  margin: auto 0 0;
}

.advatages {
  margin: 0px 0px 100px;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .advatages {
    margin: 0px 0px 60px;
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .advatages {
    padding: 40px 0 40px;
  }
}
.advatages__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
@media (max-width: 575px) {
  .advatages__items {
    margin: 0;
    display: block;
  }
}
.advatages__item {
  flex: 0 0 calc(33.333% - 30px);
  background: #1C1C20;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  margin: 0 15px 30px;
  transform: scale(0) translateX(30px);
  transition: transform 0.8s;
}
.advatages__item._active {
  transform: scale(1) translateX(0);
}
@media (max-width: 991px) {
  .advatages__item {
    flex: 0 0 calc(50% - 30px);
  }
}
@media (max-width: 575px) {
  .advatages__item {
    margin: 0px 0px 20px;
  }
}
.advatages__item-image {
  flex: 0 0 72px;
  height: 72px;
  border-radius: 10px;
  margin: 0px 20px 0px 0px;
}
@media (max-width: 1199px) {
  .advatages__item-image {
    flex: 0 0 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .advatages__item-image {
    margin: 0px 12px 0px 0px;
  }
}
.advatages__item-title {
  font-size: 19px;
  line-height: 1.2;
  font-weight: bold;
  margin: 0px 0px 4px;
}
@media (max-width: 1199px) {
  .advatages__item-title {
    font-size: 18px;
  }
}
.advatages__item-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  .advatages__item-text {
    font-size: 14px;
    line-height: 18px;
  }
}

.howwework {
  margin: 0px 0px 100px;
}
@media (max-width: 480px) {
  .howwework {
    margin: 0px 0px 60px;
  }
}
.howwework__items {
  display: flex;
  margin: 0 -11px;
}
@media (max-width: 991px) {
  .howwework__items {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .howwework__items {
    display: block;
  }
}
.howwework__item {
  flex: 0 0 calc(25% - 22px);
  margin: 0 11px;
  position: relative;
  opacity: 0;
  transition: 1s;
}
.howwework__item:after {
  content: url("/images/blue-circle-arrow.png");
  position: absolute;
  top: -5%;
  left: 55%;
}
@media (max-width: 991px) {
  .howwework__item:after {
    content: none;
  }
}
.howwework__item:last-child:after {
  content: none;
}
.howwework__item._active {
  opacity: 1;
}
@media (max-width: 991px) {
  .howwework__item {
    flex: 0 0 calc(50% - 22px);
    margin: 0 11px 30px;
  }
}
.howwework__item-num {
  font-size: 166px;
  line-height: 205px;
  color: #3284FF;
  font-weight: 900;
}
@media (max-width: 1199px) {
  .howwework__item-num {
    font-size: 120px;
    line-height: 160px;
  }
}
@media (max-width: 480px) {
  .howwework__item-num {
    text-align: center;
    line-height: 1;
  }
}
.howwework__item-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin: 0px 0px 8px;
  padding: 0 0 0 60px;
}
@media (max-width: 1199px) {
  .howwework__item-title {
    padding: 0;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 480px) {
  .howwework__item-title {
    text-align: center;
  }
}
.howwework__item-text {
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
  padding: 0 0 0 60px;
}
@media (max-width: 1199px) {
  .howwework__item-text {
    padding: 0;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .howwework__item-text {
    text-align: center;
  }
}

.lead {
  margin: 0px 0px 100px;
  position: relative;
}
@media (max-width: 480px) {
  .lead {
    margin: 0px 0px 60px;
  }
}
.lead:after {
  content: "";
  position: absolute;
  top: -90%;
  left: 0;
  background: url("/images/before-2.png") center center/auto no-repeat;
  z-index: -1;
  width: 688px;
  height: 1236px;
}
.lead__content {
  padding: 70px 120px;
  display: flex;
  justify-content: space-between;
  background: #1E1F26;
  border-radius: 40px;
}
@media (max-width: 1199px) {
  .lead__content {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .lead__content {
    display: block;
  }
}
@media (max-width: 575px) {
  .lead__content {
    padding: 40px 15px;
  }
}
.lead__info {
  margin: 0px 30px 0px 0px;
  max-width: 550px;
}
@media (max-width: 767px) {
  .lead__info {
    margin: 0px 0px 30px;
  }
}
.lead__title {
  font-size: 38px;
  line-height: 48px;
  margin: 0px 0px 40px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .lead__title {
    font-size: 30px;
    line-height: 40px;
    margin: 0px 0px 30px;
  }
}
@media (max-width: 767px) {
  .lead__title {
    margin: 0px 0px 20px;
  }
}
@media (max-width: 480px) {
  .lead__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.lead__text {
  font-size: 22px;
  line-height: 34px;
  font-weight: 300;
}
@media (max-width: 991px) {
  .lead__text {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 480px) {
  .lead__text {
    font-size: 16px;
    line-height: 20px;
  }
}
.lead__form {
  flex: 0 0 308px;
  transform: scale(0.4) translate(20px, 0);
  transition: transform 1s;
}
.lead__form._active {
  transform: scale(1) translate(0, 0);
}
.lead__form .form__note {
  color: #666;
}
.lead__form button {
  border-radius: 10px;
}

.about {
  margin: 0px 0px 100px;
}
@media (max-width: 480px) {
  .about {
    margin: 0px 0px 60px;
  }
}
.about__content {
  display: flex;
  border-radius: 40px;
  background: #1E1F26;
}
@media (max-width: 767px) {
  .about__content {
    display: block;
  }
}
.about__info {
  padding: 65px 80px 41px 70px;
}
@media (max-width: 1199px) {
  .about__info {
    padding: 40px 15px;
  }
}
.about__subtitle {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  margin: 0px 0px 39px;
}
@media (max-width: 480px) {
  .about__subtitle {
    font-size: 20px;
    line-height: 24px;
    margin: 0px 0px 24px;
  }
}
.about__text {
  font-weight: 300;
  margin: 0px 0px 30px;
}
.about__item {
  font-weight: 600;
  margin: 0px 0px 24px;
  padding: 0 0 0 44px;
  background: url("/images/icons/check-blue-circle.png") left top/24px no-repeat;
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.about__item._active {
  opacity: 1;
  transform: translate(0, 0);
}
.about__image {
  flex: 0 0 567px;
  border-radius: 40px;
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media (max-width: 1199px) {
  .about__image {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .about__image {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .about__image {
    height: 300px;
  }
}

.projects {
  background: #12141A;
  margin: 0px 0px 100px;
  padding: 80px 0;
}
@media (max-width: 480px) {
  .projects {
    margin: 0px 0px 60px;
    padding: 40px 0 60px;
  }
}
.projects__content {
  padding: 34px 100px;
  border-radius: 75px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
}
@media (max-width: 699px) {
  .projects__content {
    padding: 30px 15px 100px;
    border-radius: 20px;
  }
}
.projects__slider .slick-list {
  margin: 0 -40px;
}
@media (max-width: 1199px) {
  .projects__slider .slick-list {
    margin: 0 -15px;
  }
}
@media (max-width: 699px) {
  .projects__slider .slick-list {
    margin: 0;
  }
}
.projects__slider .slick-slide {
  margin: 0 40px;
}
@media (max-width: 1199px) {
  .projects__slider .slick-slide {
    margin: 0 15px;
  }
}
@media (max-width: 699px) {
  .projects__slider .slick-slide {
    margin: 0;
  }
}
.projects__item-image {
  height: 240px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px 0px 26px;
  border-radius: 10px;
}
.projects__item-info {
  display: flex;
}
.projects__item-avatar {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px 13px 0px 0px;
}
.projects__item-name {
  margin: 0px 0px 4px;
}
.projects__item-text {
  font-size: 12px;
  line-height: 15px;
  font-weight: 300;
}
.projects__prev, .projects__next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3284FF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
.projects__prev {
  transform: rotate(180deg);
  left: -80px;
}
@media (max-width: 1450px) {
  .projects__prev {
    left: 25px;
  }
}
@media (max-width: 699px) {
  .projects__prev {
    margin: 0;
    bottom: 25px;
    top: unset;
    left: 15px;
  }
}
.projects__next {
  right: -80px;
}
@media (max-width: 1450px) {
  .projects__next {
    right: 25px;
  }
}
@media (max-width: 699px) {
  .projects__next {
    right: 15px;
    margin: 0;
    bottom: 25px;
    top: unset;
  }
}
.projects__dots ul {
  display: flex;
  margin: 36px 0 0;
  justify-content: center;
}
.projects__dots li {
  width: 16px;
  height: 16px;
  background: #242528;
  border-radius: 50%;
  margin: 0 7px;
  cursor: pointer;
}
.projects__dots li.slick-active {
  background: #3E3D4A;
  cursor: default;
}
.projects__dots li button {
  display: none;
}

.faq {
  margin: 0px 0px 100px;
  position: relative;
}
@media (max-width: 480px) {
  .faq {
    margin: 0px 0px 60px;
  }
}
.faq:after {
  content: "";
  position: absolute;
  top: -170%;
  left: 0;
  background: url("/images/before-3.png") center center/auto no-repeat;
  z-index: -1;
  width: 640px;
  height: 2094px;
}
.faq__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media (max-width: 767px) {
  .faq__items {
    margin: 0;
    display: block;
  }
}
.faq__item {
  flex: 0 0 calc(50% - 30px);
  margin: 0 15px 30px;
  padding: 30px 20px;
  transition: 0.4s;
  border-bottom: 1px solid #DCDEE4;
  transform: scale(0) translateY(5rem);
  transition: transform 1s;
}
.faq__item.show {
  background: #2E2E32;
  box-shadow: 0px 4px 6.3px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 767px) {
  .faq__item {
    margin: 0px 0px 30px;
  }
}
@media (max-width: 430px) {
  .faq__item {
    padding: 20px 10px;
  }
}
.faq__item._active {
  transform: scale(1) translateY(0);
}
.faq__item-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  position: relative;
  padding: 0 44px 0 0;
  transition: 0.4s;
  margin: 0;
  cursor: pointer;
}
.faq__item-title:after {
  content: "+";
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3284FF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.faq__item-title.show {
  margin: 0px 0px 28px;
}
.faq__item-title.show:after {
  content: "-";
}
.faq__item-title:hover {
  color: #27AE60;
}
.faq__item-title:hover:after {
  background: #27AE60;
}
.faq__item-text {
  display: none;
  color: #808080;
}

.map {
  position: relative;
}
@media (max-width: 1199px) {
  .map {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .map {
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .map iframe {
    height: 100% !important;
  }
}
@media (max-width: 575px) {
  .map iframe {
    height: 400px !important;
  }
}
.map__info {
  position: absolute;
  border-radius: 14px;
  background: #fff;
  padding: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25%;
  color: #000;
  height: -moz-fit-content;
  height: fit-content;
  transform: translateY(10rem);
  opacity: 0;
  transition: opacity 1.6s, transform 1.6s;
  width: 100%;
  max-width: 350px;
}
.map__info._active {
  opacity: 1;
  transform: none;
}
@media (max-width: 1199px) {
  .map__info {
    right: 100px;
  }
}
@media (max-width: 575px) {
  .map__info {
    position: relative;
    right: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    box-shadow: 0 0.4rem 4rem rgba(98, 92, 160, 0.4);
    margin: 0px auto 40px;
  }
}
.map__title {
  font-size: 14px;
  line-height: 24px;
  color: #828282;
  margin: 0px 0px 4px;
}
.map__phone {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  margin: 0px 0px 10px;
  color: #000;
  display: block;
}
.map__email {
  display: block;
  color: #000;
  margin: 0px 0px 10px;
}
.map__socials {
  margin: 0px 0px 20px;
  display: flex;
  align-items: center;
}
.map__socials-link {
  margin: 0px 10px 0px 0px;
  transition: 0.4s;
  transform: scale(1);
}
.map__socials-link:hover {
  transform: scale(1.2);
}
.map__address {
  margin: 0px 0px 20px;
}

.footer {
  padding: 50px 0 20px;
  position: relative;
}
.footer:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("/images/before-4.png") center center/auto no-repeat;
  z-index: -1;
  width: 1212px;
  height: 347px;
}
@media (max-width: 575px) {
  .footer:after {
    opacity: 0.4;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0px 40px;
}
@media (max-width: 991px) {
  .footer__top {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.footer__text {
  margin: 0px 30px 0px 0px;
  font-size: 14px;
}
@media (max-width: 991px) {
  .footer__text {
    flex: 0 0 100%;
    margin: 0px 0px 30px;
  }
}
.footer__menu {
  margin: 0px 30px 0px 0px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer__menu {
    flex: 0 0 100%;
    margin: 0px 0px 30px;
  }
}
.footer__menu-link {
  margin: 0px 18px 12px 0px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.footer__socials {
  display: flex;
}
.footer__social-link {
  margin: 0px 14px 0px 0px;
  transition: 0.4s;
  transform: scale(1);
}
.footer__social-link:hover {
  transform: scale(1.2);
}
.footer__callback {
  text-align: center;
}
.footer__logo {
  display: block;
  text-align: center;
  width: 178px;
  margin: 0 auto 50px;
}
.footer__logo img {
  width: 100%;
}
.footer__copyright {
  text-align: center;
}

input {
  height: 54px;
  padding: 16px;
  width: 100%;
  font-size: 16px;
  display: block;
  margin: 0px 0px 20px;
  border: 1px solid #D7DADD;
  border-radius: 10px;
}

.form__sending, .form__thanks, .form__error {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  margin: 20px 0;
  display: none;
  color: #333;
}

.lead__form .form__sending, .lead__form .form__thanks, .lead__form .form__error {
    color: #fff;
}

.form button {
  margin: 0px 0px 20px;
  width: 100%;
}
.form__note {
  font-size: 12px;
}
.callback__form-button:hover {
    color: #3284FF;
}