input, button, textarea, select {
  font-family: "Inter", sans-serif;
}

body {
  font-family: "Inter", sans-serif;
}

html, body {
  padding: 0;
  margin: 0;
  height: 100vh;
  height: var(--doc-height);
}

.page-wrapper {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.container {
  width: 1280px;
}

.modal {
  height: 100%;
  opacity: 1;
}

.modal-overlay {
  height: 100%;
}

.modal-list {
  height: 100%;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border: none;
  height: 56px;
  padding: 0 30px;
  border-radius: 100px;
  background: #05F;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  line-height: normal;
  width: auto;
}
.btn:hover {
  background: #044ee0;
  text-decoration: none;
  color: #fff;
}

.header {
  padding: 21px 0 30px;
}
.header-logo {
  margin-right: auto;
}
.header-logo__mobile {
  display: none;
}
.header-btn {
  padding: 0 25px;
  color: #1F1F1F;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  border: 1px solid #0055FF;
  background: transparent;
  height: 40px;
  margin: 0 18px;
}
.header-btn:hover {
  background: #0055FF;
  color: #fff;
}
.header-link {
  height: 40px;
  color: #1F1F1F;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  padding: 0 6px;
}
.header-link:hover {
  color: #0055FF;
}
.header-lang__btn {
  padding: 0 18px;
  border-radius: 50px;
  background: #E3EDFF;
  color: #05F;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  height: 40px;
}
.header-lang__btn img {
  margin-right: 8px;
}
.header-lang__btn:hover {
  background: #caddff;
}
.header-nav {
  padding: 0;
  margin: 0;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.header-nav ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.header-nav ul li a {
  text-decoration: none;
  outline: none;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header-nav ul li a:hover {
  text-decoration: none;
  color: #0055FF;
}
.header-nav ul li.active a {
  color: #0055FF !important;
}
.header-burger {
  display: none;
}

.footer {
  padding: 32px 0 52px;
  background: #000;
  margin-top: auto;
}
.footer-copy {
  color: #535353;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.footer .header-lang {
  width: 70px;
  margin: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.footer .header-lang__btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.footer .header-lang__btn:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  opacity: 0.7;
}

.page-error {
  padding: 30px 0 60px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-17.03%, rgba(249, 249, 251, 0)), color-stop(-1.79%, #F9F9FB), color-stop(95%, #F9F9FB), to(rgba(249, 249, 251, 0)));
  background: linear-gradient(0deg, rgba(249, 249, 251, 0) -17.03%, #F9F9FB -1.79%, #F9F9FB 95%, rgba(249, 249, 251, 0) 100%);
}
.page-error__wrapper {
  padding: 146px 40px 109px;
  border-radius: 30px;
  background: #0055FF;
  background-image: url("../img/bg-error.svg");
  background-size: cover;
  background-position: center;
}
.page-error__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, color-stop(22.87%, #FFF), color-stop(78.41%, #E3E3E3));
  background: linear-gradient(90deg, #FFF 22.87%, #E3E3E3 78.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-error__text {
  margin: 11px auto 27px;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  width: 800px;
  background: -webkit-gradient(linear, left top, right top, color-stop(22.87%, #FFF), color-stop(78.41%, #E3E3E3));
  background: linear-gradient(90deg, #FFF 22.87%, #E3E3E3 78.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-error__btn {
  background: #FFF;
  border: 1px solid #0055FF;
  font-size: 18px;
  color: #0055FF;
  height: 68px;
}
.page-error__btn:hover {
  color: #000;
  background: #fff;
}

.page-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, color-stop(22.87%, #000), color-stop(78.41%, #333));
  background: linear-gradient(90deg, #000 22.87%, #333 78.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-17.03%, rgba(249, 249, 251, 0)), color-stop(-1.79%, #F9F9FB), color-stop(95%, #F9F9FB), to(rgba(249, 249, 251, 0)));
  background: linear-gradient(0deg, rgba(249, 249, 251, 0) -17.03%, #F9F9FB -1.79%, #F9F9FB 95%, rgba(249, 249, 251, 0) 100%);
}

.breadcrumbs {
  padding: 23px 0;
  margin: 0;
  color: #979797;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs li::after {
  content: "/";
  display: block;
  margin: 0 10px;
}
.breadcrumbs li a {
  text-decoration: none;
  outline: none;
  color: #979797;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
}
.breadcrumbs li a:hover {
  color: #0055FF;
}
.breadcrumbs li:last-child::after {
  display: none;
}

.news {
  padding-bottom: 69px;
}
.news-item {
  border-radius: 20px;
  background: #FFF;
  padding: 19px 19px 48px;
  min-height: 100%;
}
.news-item__img {
  padding-top: 51.5%;
  border-radius: 20px;
}
.news-item__img img {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.news-item__date {
  margin: 18px 0 9px;
  color: #A6A6A6;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.news-item__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  background: -webkit-gradient(linear, left top, right top, color-stop(22.87%, #000), color-stop(78.41%, #333));
  background: linear-gradient(90deg, #000 22.87%, #333 78.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.news-item__text {
  margin-top: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.news-item__link {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.news-item:hover img {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}
.news-block {
  width: 33.333%;
  margin-top: 23px;
}
.news-list {
  padding-top: 11px;
}

.text-gradient {
  background: -webkit-gradient(linear, left top, right top, color-stop(22.87%, #000), color-stop(78.41%, #333));
  background: linear-gradient(90deg, #000 22.87%, #333 78.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pagination {
  margin: 38px 0 0 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination a {
  text-decoration: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 100%;
  background: #EEF4FF;
  width: 40px;
  min-width: 40px;
  height: 40px;
  color: #05F;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin: 0 5px;
}
.pagination a:hover, .pagination a.active {
  background: #0055FF;
  color: #fff;
}
.pagination a.prev, .pagination a.next {
  width: 56px;
  min-width: 56px;
  position: relative;
  background: transparent;
  font-size: 0;
  height: 56px;
  border: 2px solid #05F;
}
.pagination a.prev::after, .pagination a.next::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-image: url("../img/next.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.pagination a.prev:hover, .pagination a.next:hover {
  background: #0055FF;
}
.pagination a.prev:hover::after, .pagination a.next:hover::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.pagination a.prev::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.tarifs {
  padding-bottom: 62px;
}
.tarifs .news-item__img {
  background: #0055FF;
}
.tarifs-item {
  min-height: 100%;
  padding: 26px 19px 45px;
  background: #fff;
  border-radius: 20px;
}
.tarifs-item__title {
  margin: 19px 0 11px;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
}
.tarifs-item__text {
  color: #110F0F;
  font-size: 15px;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 16px;
}
.tarifs-item__bold {
  color: #05F;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  padding-bottom: 8px;
}
.tarifs-item__info {
  padding: 20px 24px 24px;
  margin-top: auto;
  border-radius: 10px;
  background: #F9F9FB;
  min-height: 290px;
}
.tarifs-item__info-block {
  margin-top: 10px;
  color: #110F0F;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}
.tarifs-item__info-block img {
  margin-top: 3px;
  margin-right: 12px;
  width: 18px;
  min-width: 18px;
  height: auto;
  display: block;
}
.tarifs-item__btn {
  position: absolute;
  height: 68px;
  font-size: 18px;
  padding: 0 40px;
  left: 50%;
  bottom: -34px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.tarifs-banner {
  margin-top: 181px;
}

.banner {
  border-radius: 30px;
  background: #0055FF;
  background-image: url("../img/bg-error.svg");
  background-size: cover;
  background-position: center;
  padding: 43px 53px 42px;
  color: #fff;
}
.banner-title {
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.banner-text {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.banner-text b, .banner-text strong {
  font-weight: 600;
}
.banner-text img {
  margin-top: 4px;
  width: 36px;
  min-width: 36px;
  margin-right: 19px;
}
.banner-wrapper {
  width: 575px;
  max-width: 100%;
}
.banner-img {
  right: 94px;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  width: 415px;
}
.banner-btn {
  margin-top: 34px;
  height: 68px;
  padding: 0 40px;
  font-size: 18px;
  background: #fff;
  color: #000;
  border: none;
}
.banner-btn:hover {
  background: #fff;
  color: #0055FF;
}

.input {
  margin-bottom: 18px;
  width: 100%;
  position: relative;
}
.input span {
  display: block;
}
.input-text {
  margin-bottom: 12px;
  color: #8C8C8C;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.input input, .input textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 59px;
  width: 100%;
  padding-left: 19px;
  border-radius: 10px;
  border: 1px solid #D8D8D8;
  background: #FFF;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
  color: #D3D3D3;
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder {
  color: #D3D3D3;
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  color: #D3D3D3;
}
.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder {
  color: #D3D3D3;
}
.input input::placeholder, .input textarea::placeholder {
  color: #D3D3D3;
}
.input input.wpcf7-not-valid, .input textarea.wpcf7-not-valid {
  border-color: #FF1414;
}
.input textarea {
  display: block;
  padding-top: 19px;
  padding-right: 19px;
  height: 129px;
  resize: none;
}

.wpcf7-not-valid-tip {
  padding: 15px 15px 12px 58px;
  position: absolute;
  z-index: 2;
  background: #FFF;
  -webkit-filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 4px 50px rgba(0, 0, 0, 0.1));
  color: #979797;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  width: 255px;
  top: calc(100% + 17px);
  right: 0;
  border-radius: 20px;
}
.wpcf7-not-valid-tip b {
  display: block;
  margin-bottom: 4px;
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.wpcf7-not-valid-tip::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 32px;
  height: 32px;
  background-image: url("../img/cancel.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.wpcf7-not-valid-tip::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 12px 10px;
  border-color: transparent transparent #fff transparent;
  top: -12px;
  right: 17px;
}

.contact {
  padding-bottom: 66px;
}
.contact-map {
  width: 738px;
  max-width: 100%;
  height: 488px;
  border-radius: 16px;
  overflow: hidden;
}
.contact-content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 482px;
  padding-top: 44px;
}
.contact-list {
  margin-top: 37px;
  margin-bottom: 41px;
}
.contact-item {
  margin-top: 18px;
}
.contact-item__icon {
  background: #EEF4FF;
  width: 36px;
  height: 36px;
  min-width: 36px;
  margin-right: 13px;
}
.contact-item__right-title {
  color: #979797;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.contact-item__right-text {
  margin-top: 6px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.contact-item__right-text a {
  color: #000;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.contact-item__right-text a:hover {
  color: #0055FF;
}
.contact-logo {
  width: 287px;
  margin-bottom: 53px;
}
.contact-form {
  padding: 38px 46px 55px 41px;
  border-radius: 10px;
  background: #FFF;
}
.contact-form__title {
  color: #000;
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
}
.contact-form__text {
  margin: 16px 0 33px;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
}
.contact-form form {
  display: block;
}
.contact-form__small {
  width: calc(50% - 12px);
}
.contact-form__btn {
  margin-top: 19px;
}

#map [class*=ymaps-2][class*=-ground-pane] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
}

.education {
  padding: 23px 0 191px;
}
.education-title {
  width: 600px;
  font-size: 48px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}
.education-text {
  margin: 20px 0 31px;
  color: #05F;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}
.education-btn {
  padding: 0 40px;
  height: 68px;
  font-size: 18px;
}
.education-img {
  top: 15px;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.algorithms-wrapper {
  border-radius: 20px;
  background: #000;
  padding: 75px 58px 68px;
}
.algorithms-title {
  width: 540px;
  color: #FFF;
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
}
.algorithms-text {
  margin-top: 23px;
  width: 565px;
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.algorithms-img {
  right: -20px;
  bottom: 59px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.tools {
  padding: 106px 0 112px;
}
.tools-content {
  width: 753px;
  max-width: 100%;
}
.tools-title {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
}
.tools-text {
  margin: 23px 0 32px;
  width: 753px;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}
.tools-item {
  padding: 26px 38px 38px 31px;
  background: #EEF4FF;
  border-radius: 20px;
}
.tools-item__title {
  color: #05F;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
}
.tools-item__text {
  margin-top: 13px;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.education-banner {
  padding-bottom: 63px;
}
.education-banner__wrapper {
  border-radius: 30px;
  background: #0055FF;
  background-image: url("../img/bg-error.svg");
  background-size: cover;
  background-position: center;
  padding: 113px 93px 89px;
  width: 1222px;
  max-width: 100%;
  margin: 0 auto;
}
.education-banner__box {
  width: 528px;
  max-width: 100%;
  margin-left: auto;
}
.education-banner__title {
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: 140%;
  text-transform: uppercase;
}
.education-banner__btn {
  height: 69px;
  padding: 0 39px;
  font-size: 18px;
  border: 1px solid #0055FF;
  background: #fff;
  color: #000;
  margin-top: 16px;
}
.education-banner__btn:hover {
  background: #fff;
  color: #0055FF;
}
.education-banner__img {
  left: 0;
  bottom: 0;
}

.investments {
  padding-bottom: 119px;
}
.investments-img {
  right: -20px;
  top: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.investments-text {
  margin-top: 28px;
  width: 639px;
  max-width: 100%;
  color: #110F0F;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}
.investments-text span {
  color: #05F;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.offers {
  padding: 91px 0 47px;
}
.offers-title {
  color: #000;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 63px;
}
.offers-wrapper {
  border-radius: 20px;
  background: #fff;
  padding: 46px 36px 75px;
}
.offers-box {
  width: 753px;
  margin-left: auto;
  max-width: 100%;
}
.offers-blue {
  color: #05F;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
}
.offers-bold {
  margin: 15px 0 23px;
  color: #000;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
}
.offers-text {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}
.offers-item {
  margin-top: 30px;
  border-radius: 20px;
  background: #EEF4FF;
  padding: 33px 47px 41px 38px;
}
.offers-item__title {
  width: 561px;
  max-width: 100%;
  color: #05F;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}
.offers-item__text {
  margin-top: 15px;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}
.offers-item__btn {
  padding: 0 40px;
  height: 68px;
  font-size: 18px;
  margin-right: 14px;
  margin-top: 23px;
}
.offers-item__border {
  padding: 0 39px;
  background: transparent;
  border: 1px solid #0055FF;
  color: #0055FF;
  font-size: 18px;
  height: 68px;
  margin-right: 14px;
  margin-top: 23px;
}
.offers-img {
  left: -140px;
  top: 46px;
}
.offers-info {
  width: 614px;
  max-width: 100%;
}
.offers-info__item {
  margin-top: 29px;
  width: calc(50% - 7px);
  border-radius: 20px;
  background: #fff;
  padding: 18px 22px 19px;
}
.offers-info__item-title {
  color: #110F0F;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.offers-info__item-text {
  margin-top: 3px;
  color: #05F;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}

.venture {
  color: #fff;
  font-size: 16px;
  line-height: 140%;
  border-radius: 20px;
  background: #000;
  font-weight: 300;
  padding: 51px 65px;
}
.venture b, .venture strong {
  font-weight: 400;
}
.venture-img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  top: 67px;
  left: -40px;
}
.venture-box {
  width: 627px;
  max-width: 100%;
  margin-left: auto;
}
.venture-block {
  border: 1px solid #0055FF;
  border-radius: 10px;
  margin: 14px 0;
  padding: 13px 30px 13px 20px;
}

.article {
  padding: 10px 0 69px;
}
.article-top {
  padding: 48px 65px;
  min-height: 424px;
  border-radius: 20px;
  background: #0055FF;
  margin-bottom: 39px;
}
.article-bg {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article .breadcrumbs {
  margin: 0 0 23px !important;
  padding: 0 !important;
}
.article-title {
  width: 769px;
  max-width: 100%;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  color: #fff;
}
.article-date {
  margin-top: 20px;
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.article-content {
  color: #2C2C2B;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.article-content p {
  margin-bottom: 16px;
}
.article-content h2, .article-content h3, .article-content h4 {
  color: #2C2C2B;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
.article-content h5, .article-content h6 {
  margin-bottom: 10px;
  color: #2C2C2B;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
}
.article-content img {
  border-radius: 20px;
  display: block;
  margin: 50px 0;
  max-width: 100%;
}
.article-content blockquote {
  padding: 20px;
  border-radius: 20px;
  background: #EEF4FF;
  margin-bottom: 16px;
  display: block;
  width: 100%;
}
.article-content blockquote i {
  font-style: italic;
  font-weight: 400;
}
.article-content blockquote.blue {
  background: #F1F1F1;
  color: #0055FF;
  font-style: italic;
  font-weight: 400;
}
.article-content a {
  text-decoration: none;
  color: #0055FF;
  font-weight: 500;
}
.article-content a:hover {
  text-decoration: underline;
}
.article-content ul {
  padding: 0;
  margin: 0 0 16px 0;
  list-style-type: disc !important;
}
.article-content ul li {
  display: block;
  margin-top: 10px;
  position: relative;
  padding-left: 14px;
}
.article-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: #000;
}
.article-content ul li:first-child {
  margin-top: 0;
}

.video {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 64px 0 52px;
}
.video img {
  width: 100%;
  margin: 0 !important;
  height: auto;
  display: block;
}
.video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #000;
  opacity: 0.5;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.video:hover::before {
  opacity: 0;
}
.video::after {
  content: "";
  position: absolute;
  background-image: url("../img/play.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}

.urls {
  margin: 30px 0;
}
.urls-title {
  margin-bottom: 16px;
  color: #2C2C2B;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}
.urls ul li {
  padding-left: 28px;
}
.urls ul li::before {
  width: 18px;
  height: 18px;
  top: 2px;
  background: url("../img/link.svg");
  background-repeat: no-repeat;
}

.slider-wrapper {
  margin: 30px 0;
  padding: 30px;
  background: #EEF4FF;
  border-radius: 20px;
}
.slider-item {
  display: block;
  position: relative;
  padding-top: 70%;
  border-radius: 20px;
  overflow: hidden;
}
.slider-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.slider-item:hover img {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}
.slider .swiper-pagination {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  width: 100%;
  position: relative;
}
.slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  min-width: 12px;
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
  margin: 0 3px;
  border: 1px solid #0055FF;
}
.slider .swiper-pagination-bullet-active {
  background: #0055FF;
}

.article-content.small-wrapper {
  width: 955px;
  max-width: 100%;
}

.results {
  padding: 72px 0 83px;
  background: #EEF4FF;
}
.results-bg {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  opacity: 0.1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.results-item {
  background: #FFFFFF;
  margin-top: 20px;
  border-radius: 20px;
}
.results-item:first-child {
  margin-top: 0;
}
.results-item__block {
  margin-top: 20px;
  width: 25%;
}
.results-item__list {
  margin-top: -20px;
}
.results-item__link {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.results-item__link img {
  width: 100%;
  height: auto;
}
.results-item__content {
  display: none;
  padding-top: 10px;
  padding: 0 40px 72px;
}
.results-item__title {
  color: #121212;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  padding: 34px 40px;
}
.results-item__title img {
  margin-top: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin-left: 22px;
  min-width: 40px;
  width: 40px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.results-item__title.open img {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.results-list {
  margin-top: 54px;
}

.results-title {
  color: #020202;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}

.about-tools {
  padding: 97px 0 54px;
}
.about-tools__list {
  width: 738px;
  max-width: 100%;
}
.about-tools__title {
  margin-bottom: 45px;
  color: #000;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
}
.about-tools__bg {
  top: 20px;
  right: -450px;
}
.about-tools__item {
  padding: 25px 26px 36px 96px;
  border-radius: 20px;
  background: #F9F9FB;
  margin-top: 17px;
}
.about-tools__item:first-child {
  margin-top: 0;
}
.about-tools__item-img {
  top: 37px;
  left: 33px;
}
.about-tools__item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  margin-left: 22px;
  background-image: url("../img/tools-arrow.svg");
  background-size: 36px;
}
.about-tools__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-tools__item-title {
  margin-top: 5px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}
.about-tools__item-text {
  margin-top: 6px;
  color: #110F0F;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.group {
  padding: 85px 0 76px;
}
.group-title {
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 600;
  line-height: 130%;
}
.group-list {
  margin-top: -20px;
}
.group-block {
  margin-top: 20px;
  width: 33.333%;
}
.group-item {
  background: #fff;
  border-radius: 20px;
  padding: 19px 19px 36px;
  min-height: 100%;
}
.group-item__img {
  border-radius: 20px;
  width: 100%;
}
.group-item__title {
  margin: 24px 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  min-height: 37px;
}
.group-item__text {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.about {
  color: #110F0F;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.about-bottom {
  margin: 24px 0;
}
.about-text {
  margin: 20px 0 28px;
}
.about-subtitle {
  margin-top: 18px;
  color: #05F;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
}
.about-w {
  width: 621px;
  max-width: 100%;
}
.about-items {
  max-width: 100%;
  width: 738px;
}
.about-item {
  width: calc(50% - 9px);
  padding: 17px 17px 18px;
  border-radius: 20px;
  background: #fff;
}
.about-item__icon {
  width: 48px;
  min-width: 48px;
  margin-right: 18px;
  margin-top: 1px;
}
.about-item__title {
  color: #05F;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
.about-item__text {
  margin-top: 4px;
  color: #110F0F;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.about-blue {
  padding: 15px 19px 15px 43px;
  border-radius: 500px;
  background: #05F;
}
.about-blue__text {
  color: #FFF;
  font-size: 28px;
  font-weight: 600;
  line-height: 140%;
}
.about-blue__btn {
  height: 68px;
  padding: 0 40px;
  background: #fff;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  border: none;
}
.about-blue__btn:hover {
  background: #fff;
  color: #0055FF;
}
.about-flag {
  right: 36px;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.index {
  z-index: 4;
}

.main {
  padding: 236px 0 169px;
}
.main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.85;
  z-index: 1;
}
.main::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(87.25%, transparent), to(#1A1A1A));
  background: linear-gradient(180deg, transparent 87.25%, #1A1A1A 100%);
}
.main-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
  width: 1050px;
  max-width: 100%;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, right top, color-stop(22.87%, #FFF), color-stop(78.41%, #9C9C9C));
  background: linear-gradient(90deg, #FFF 22.87%, #9C9C9C 78.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-title span {
  color: #0055FF;
  background: transparent;
  background-clip: none;
  -webkit-background-clip: none;
  -webkit-text-fill-color: #0055FF;
}
.main-btn {
  height: 68px;
  padding: 0 40px;
  font-size: 18px;
  font-weight: 500;
}
.main-subtitle {
  width: 961px;
  max-width: 100%;
  margin: 37px auto 41px;
  color: #FFF;
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
}
.main-bg {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.dark-bg {
  background: #1A1A1A;
}

.white-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
}

.white-header .header-link, .white-header .header-btn, .white-header .header-nav ul li a, .mobile-menu .header-link, .mobile-menu .header-btn, .mobile-menu .header-nav ul li a {
  color: #fff;
}
.white-header .header-nav, .mobile-menu .header-nav {
  border-color: rgba(255, 255, 255, 0.1);
}
.white-header .header-lang__btn, .mobile-menu .header-lang__btn {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.white-header .header-lang__btn:hover, .mobile-menu .header-lang__btn:hover {
  border-color: #0055FF;
}
.white-header .header-link:hover, .white-header .header-nav ul li a:hover, .mobile-menu .header-link:hover, .mobile-menu .header-nav ul li a:hover {
  color: #0055FF;
}
.white-header .header-btn, .mobile-menu .header-btn {
  border-color: #fff;
}

.calc {
  padding: 55px 0 77px;
}
.calc-title {
  color: #FFF;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
}
.calc-subtitle {
  margin: 23px 0 36px;
  color: #FFF;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}
.calc-left, .calc-item {
  width: calc(50% - 10px);
}
.calc-left {
  border-radius: 20px;
  border: 1px solid #444;
  padding: 32px 33px;
}
.calc-input {
  margin-top: 20px;
}
.calc-input:first-child {
  margin-top: 0;
}
.calc-input__title {
  margin-bottom: 14px;
  color: #CFCFCF;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.calc-input__select {
  height: 50px;
  position: relative;
}
.calc-input__select select {
  display: none;
}
.calc-input__select .nice-select {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  border-radius: 10px;
  background: #2C2C2C;
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  border: none;
  line-height: 140%;
}
.calc-input__select .nice-select::after {
  display: none;
}
.calc-input__select .nice-select::before {
  content: "";
  right: 20px;
  top: 20px;
  width: 10px;
  height: 11px;
  background-image: url("../img/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}
.calc-input__select .nice-select.open .nice-select-dropdown {
  width: 100%;
  border-radius: 10px;
  background: #2C2C2C;
}
.calc-item {
  background-color: #0055FF;
  background-image: url("../img/bg-calc.svg");
  background-size: cover;
  background-position: center;
  padding: 55px 72px 49px 58px;
  border-radius: 20px;
}
.calc-item__title {
  color: #FFF;
  font-size: 28px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 38px;
}
.calc-item__title img {
  margin-right: 11px;
}
.calc-item__block {
  margin-top: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  padding: 14px 20px;
}
.calc-item__block:first-child {
  margin-top: 0;
}
.calc-item__block img {
  width: 24px;
  min-width: 24px;
  margin-right: 14px;
}
.calc-item__block span {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.calc-item__block b {
  display: block;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  margin-left: auto;
}
.calc-item__btn {
  margin: 36px 0 0 0;
  padding: 0 40px;
  background: #fff;
  color: #0055FF;
  font-size: 18px;
}
.calc-item__btn:hover {
  background: #fff;
  color: #000;
}
.calc-input__default {
  width: 140px;
  min-width: 140px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 10px;
  border-radius: 10px;
  background: #2C2C2C;
  padding-left: 17px;
  border: none;
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  height: 52px;
}
.calc-range {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 6px;
  height: 52px;
  border-radius: 10px;
  background: #2C2C2C;
}
.calc-range__result {
  left: 11px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  position: absolute;
  z-index: 2;
}
.calc-range .noUi-target {
  height: 100%;
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.calc-range .noUi-connect {
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, right top, color-stop(20.65%, #04C), color-stop(81.09%, #1D68FF));
  background: linear-gradient(90deg, #04C 20.65%, #1D68FF 81.09%);
}
.calc-range .noUi-horizontal .noUi-handle {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 18px;
  height: 18px;
  right: -9px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  top: 11px;
  margin: 0;
  bottom: auto;
  background: url("../img/range.svg");
  background-repeat: no-repeat;
}
.calc-range .noUi-horizontal .noUi-handle::after, .calc-range .noUi-horizontal .noUi-handle::before {
  display: none;
}
.calc-range .noUi-touch-area {
  display: none;
}

.home-offers {
  padding: 86px 0 157px;
}
.home-offers .offers-img {
  top: 260px;
  left: -61px;
}

.home-tools .about-tools {
  padding: 94px 0 98px;
  background: #F9F9FB;
}
.home-tools .about-tools__item {
  background: #fff;
}
.home-tools .about-tools__item-icon {
  background-image: url(../img/result-arrow.svg);
}

.home-banner {
  padding: 98px 0 63px;
}

.home-container {
  padding: 53px 0 52px;
  background: #EEF4FF;
}
.home-container__wrapper {
  border-radius: 20px;
  background: #fff;
  padding: 12px 19px 22px 56px;
}
.home-container .contact-map {
  width: 690px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-width: 690px;
  margin-left: 32px;
  margin-right: 0;
}

.experience {
  padding-bottom: 90px;
}
.experience-wrapper {
  border-radius: 20px;
  background: #EEF4FF;
  padding: 47px 85px 69px 106px;
}
.experience-bottom {
  border-radius: 500px;
  padding: 24px 40px 24px 66px;
  background: #0055FF;
}
.experience-bottom__text {
  color: #FFF;
  font-size: 28px;
  font-weight: 600;
  line-height: 140%;
}
.experience-bottom__btn {
  padding: 0 40px;
  height: 68px;
  background: #fff;
  color: #000;
  border-color: none;
  font-size: 18px;
}
.experience-bottom__btn:hover {
  background: #fff;
  color: #0055FF;
}
.experience-bg {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.2;
}
.experience-center {
  width: 900px;
  margin: 30px auto;
  color: #110F0F;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}
.experience-top {
  margin-bottom: 28px;
}
.experience-top__text {
  width: 700px;
  max-width: 100%;
  color: #110F0F;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}
.experience-logo {
  width: 287px;
}
.experience-item {
  width: 426px;
  min-width: 426px;
  margin-left: 31px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #0055FF;
  border-radius: 20px;
  padding: 30px 42px;
}
.experience-item__title {
  color: #05F;
  font-size: 36px;
  font-weight: 700;
  line-height: 140%;
}
.experience-item__text {
  margin-top: 7px;
  color: #110F0F;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.experience-item:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0;
}

.modal-close {
  top: -18px;
  right: -30px;
}
.modal-list {
  padding: 40px 10px;
}
.modal-container {
  text-align: left;
  padding: 19px 0 0;
  border-radius: 20px;
  background: #EEF4FF;
  overflow: visible;
  width: 508px;
}
.modal-title {
  color: #05F;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 5px;
}
.modal-subtitle {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 22px;
}
.modal-form {
  padding: 24px 29px 38px 37px;
  background: #fff;
  border-radius: 20px;
}

.labels {
  margin-right: -11px;
}
.labels .wpcf7-form-control {
  display: block;
  margin-right: 11px;
  position: relative;
}
.labels label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 0 16px;
  height: 52px;
  position: relative;
  background: #EEF4FF;
  border-radius: 10px;
}
.labels img {
  margin-right: 10px;
  width: 20px;
  min-width: 20px;
  height: auto;
  display: block;
}
.labels b {
  color: #1B243E;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.labels b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  border: 1px solid #0055FF;
  border-radius: 10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  pointer-events: none;
}
.labels input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  cursor: pointer;
  height: 100%;
  z-index: 4;
  display: none;
}
.labels input:checked + b::before {
  opacity: 1;
}

.option.disabled {
  display: none !important;
}

.calc-range__result {
  left: 27px;
}

.success-container {
  width: 453px;
  padding: 60px 10px;
  background: #fff;
}
.success-title {
  margin: 20px 0 9px;
  color: #0055FF;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
}
.success-text {
  text-align: center;
  color: #5B5B5B;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.calc-item__block b {
  white-space: nowrap;
}

.mobile-menu {
  background: #0055FF;
  position: fixed;
  z-index: 40;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  padding: 20px 0;
  display: none;
}
.mobile-menu__nav {
  padding: 0;
  margin: 29px 0 0 0;
}
.mobile-menu__nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.mobile-menu__nav ul li {
  display: block;
  margin-top: 20px;
}
.mobile-menu__nav ul li:first-child {
  margin-top: 0;
}
.mobile-menu__nav ul li a {
  text-decoration: none;
  outline: none;
  display: block;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.mobile-menu__btn {
  padding: 0 19px;
  background: transparent;
  height: 44px;
  font-size: 14px;
  border: 1px solid #fff;
  font-weight: 500;
  margin-top: 32px;
}
.mobile-menu__btn:first-child {
  margin-right: 10px;
}

.calc-input__select-two, .calc-input__select-last {
  display: none;
}

.calc-input__select .nice-select .current {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  display: block;
}
.calc-input__select .nice-select .option {
  white-space: wrap;
  line-height: 24px;
  padding: 10px 20px;
}

.about-tools__item-icon {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.about-tools__item-top {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.about-tools__item-top.active .about-tools__item-icon {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.about-tools__item-text {
  display: none;
}

.main-arrow {
  bottom: 50px;
  left: calc(50% - 16.5px);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 3;
  -webkit-animation: float 1.5s ease-in-out infinite;
          animation: float 1.5s ease-in-out infinite;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.offerModal .modal-container {
  padding: 24px 62px 53px 34px;
  width: 589px;
  border-radius: 20px;
  background: #0055FF;
}
.offerModal-img {
  margin-left: -34px;
  margin-bottom: 24px;
}
.offerModal-title {
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
}
.offerModal-text {
  margin: 10px 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.offerModal-btn {
  height: 68px;
  padding: 0 40px;
  font-size: 18px;
  background: #fff;
  color: #0055FF;
}
.offerModal-btn:hover {
  background: #fff;
  color: #000;
}

@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 1700px) {
  .about-tools__bg {
    right: auto;
    left: calc(50% + 130px);
  }
}
@media (max-width: 1400px) {
  .investments-img {
    right: -100px;
  }
}
@media (max-width: 1320px) {
  .container {
    width: 960px;
  }
  .news-list {
    padding: 0;
  }
  .news-block {
    margin-top: 20px;
  }
  .news-item {
    padding: 13px 13px 27px;
  }
  .news-item__date {
    font-size: 12px;
    line-height: 140%;
    margin: 13px 0 6px;
  }
  .news-item__title {
    font-size: 18px;
    line-height: 130%;
  }
  .news-item__text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 140%;
  }
  .tarifs-item {
    padding: 19px 14px 34px;
  }
  .tarifs-item__btn {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    height: 56px;
    padding: 0 30px;
    font-size: 16px;
    position: static;
  }
  .tarifs-item__bottom {
    margin: 20px auto 0;
    text-align: center;
  }
  .tarifs-item__title {
    margin: 16px 0 12px;
    font-size: 18px;
    line-height: 130%;
  }
  .tarifs-item__text {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 13px;
  }
  .tarifs-item__info {
    padding: 18px 16px 24px 18px;
    min-height: 352px;
  }
  .tarifs-item__info-block {
    font-size: 14px;
    line-height: 140%;
  }
  .tarifs-item__bold {
    padding: 0;
    font-size: 16px;
    line-height: 130%;
  }
  .banner-img {
    width: 320px;
    right: 32px;
  }
  .tarifs-banner {
    margin-top: 90px;
  }
  .contact-content, .contact-map {
    width: calc(50% - 20px);
  }
  .education-img {
    left: calc(50% + 100px);
    right: auto;
  }
  .algorithms-img {
    right: -120px;
    width: 500px;
    bottom: 0;
  }
  .algorithms-wrapper {
    padding: 26px 13px 33px 28px;
  }
  .algorithms-title {
    font-size: 24px;
    line-height: 130%;
  }
  .algorithms-text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 140%;
  }
  .tools-img {
    width: 380px;
  }
  .tools-content {
    width: calc(100% - 420px);
  }
  .tools-item {
    padding: 22px 20px;
  }
  .tools-item__title {
    font-size: 18px;
    line-height: 140%;
  }
  .tools-item__text {
    margin-top: 9px;
    font-size: 14px;
    line-height: 140%;
  }
  .tools-text {
    margin: 9px 0 18px;
    font-size: 14px;
    line-height: 140%;
  }
  .tools-title {
    font-size: 20px;
    line-height: normal;
  }
  .education-banner__wrapper {
    padding: 100px 80px;
  }
  .education-banner__img {
    width: 470px;
  }
  .education-banner__title {
    font-size: 24px;
    line-height: normal;
  }
  .education-banner__btn {
    height: 56px;
    margin-top: 15px;
    padding: 0 35px;
  }
  .education-banner__box {
    width: 340px;
  }
  .investments-img {
    width: 550px;
  }
  .investments-text {
    width: 550px;
    font-size: 14px;
    line-height: 130%;
  }
  .investments-text span {
    font-size: 16px;
    line-height: 130%;
  }
  .offers-wrapper {
    padding: 28px 20px;
  }
  .offers-box {
    width: 600px;
  }
  .offers-img {
    height: 500px;
    width: auto;
  }
  .venture-img {
    width: 400px;
    left: -80px;
    top: 60px;
  }
  .venture-box {
    width: 540px;
  }
  .article-content {
    font-size: 14px;
    line-height: 140%;
  }
  .article-content h2, .article-content h3, .article-content h4 {
    font-size: 20px;
    line-height: normal;
  }
  .article-content h5, .article-content h6 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 140%;
  }
  .article-content img {
    margin: 30px 0;
    min-height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .article-content blockquote {
    padding: 20px 24px;
  }
  .slider img {
    margin: 0 !important;
  }
  .video img {
    margin: 0 !important;
  }
  .slider-wrapper {
    padding: 20px 17px;
  }
  .video::after {
    background-size: 30px;
  }
  .video {
    margin: 16px 0 32px;
  }
  .article-content.small-wrapper {
    width: 100%;
  }
  .about-tools__list {
    width: 650px;
  }
  .about-tools__bg {
    width: 900px;
    left: calc(50% + 200px);
  }
  .group {
    padding: 41px 0 35px;
  }
  .group-title {
    margin-bottom: 21px;
    font-size: 24px;
    line-height: 130%;
  }
  .group-item {
    padding: 19px 19px 34px;
  }
  .group-item__title {
    margin: 14px 0 8px;
    min-height: 30px;
    font-size: 18px;
    line-height: 130%;
  }
  .group-item__text {
    font-size: 14px;
    line-height: 140%;
  }
  .about-flag {
    right: 0;
    width: 380px;
  }
  .main-title {
    font-size: 40px;
    line-height: 46px;
  }
  .main {
    padding: 200px 0 100px;
  }
  .calc-item {
    padding: 28px 12px 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .calc-item .center {
    width: 100%;
  }
  .calc-item__title {
    font-size: 16px;
    line-height: normal;
    width: 100%;
  }
  .calc-item__title img {
    width: 24px;
    min-width: 24px;
    margin-right: 8px;
  }
  .calc-item__blocks {
    width: 100%;
  }
  .calc-item__block {
    padding: 10px 14px;
    margin-top: 10px;
  }
  .calc-item__block img {
    width: 16px;
    min-width: 16px;
    margin-right: 8px;
  }
  .calc-item__block span {
    font-size: 13px;
    line-height: 130%;
  }
  .calc-item__block b {
    font-size: 14px;
    line-height: 140%;
  }
  .calc-item__btn {
    height: 56px;
    margin-top: 22px;
    font-size: 16px;
    padding: 0 36px;
  }
  .calc-left {
    padding: 19px 11px 30px;
  }
  .calc-input__select {
    height: 48px;
  }
  .calc-input__select .nice-select {
    font-size: 14px;
  }
  .calc-item__title {
    margin-bottom: 19px;
  }
  .calc-input__default {
    height: 48px;
    width: 100px;
    min-width: 100px;
  }
  .calc-range {
    height: 48px;
  }
  .calc-range .noUi-horizontal .noUi-handle {
    top: 8px;
  }
  .home-container .contact-map {
    width: 500px;
    min-width: 500px;
  }
  .experience-wrapper {
    padding: 43px 32px 38px;
  }
  .experience-bg {
    bottom: 166px;
  }
  .experience-top__text {
    font-size: 16px;
    line-height: 140%;
    width: 540px;
  }
  .experience-center {
    margin: 20px 0 25px;
    font-size: 16px;
    line-height: 140%;
  }
  .experience-bottom {
    padding: 25px 40px 28px;
  }
  .experience-bottom__text {
    font-size: 18px;
    line-height: 120%;
  }
  .experience-item {
    padding: 12px 17px 20px;
  }
  .experience-item__title {
    width: 175px;
    max-width: 100%;
    font-size: 22px;
    line-height: 110%;
  }
  .experience-item__text {
    margin-top: 8px;
    width: 200px;
    font-size: 14px;
    line-height: 130%;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .container {
    width: 730px;
  }
  .page-error {
    padding: 9px 0 32px;
  }
  .page-error__wrapper {
    padding: 52px 21px 54px;
    border-radius: 20px;
  }
  .page-error__title {
    font-size: 32px;
    line-height: 130%;
  }
  .page-error__text {
    margin: 16px auto 28px;
    font-size: 16px;
    line-height: 140%;
    width: 430px;
  }
  .page-error__btn {
    height: 56px;
    font-size: 16px;
    padding: 0 35px;
  }
  .breadcrumbs {
    padding: 8px 0 14px;
    font-size: 12px;
  }
  .breadcrumbs li {
    margin-top: 5px;
  }
  .page-title {
    font-size: 24px;
    line-height: 130%;
  }
  .results-title {
    font-size: 20px;
    line-height: normal;
  }
  .news-block {
    width: 50%;
  }
  .news {
    padding-bottom: 47px;
  }
  .tarifs-item__info {
    min-height: 225px;
  }
  .tarifs {
    padding-bottom: 36px;
  }
  .banner {
    padding: 25px 16px 0;
  }
  .banner-img {
    position: static;
    width: 257px;
    max-width: 100%;
    margin: 22px auto 0;
  }
  .banner-btn {
    width: 238px;
    padding: 0;
    height: 56px;
    width: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 18px 0 0;
    font-size: 16px;
  }
  .banner-title {
    font-size: 24px;
    line-height: normal;
  }
  .banner-text {
    margin-top: 12px;
    font-size: 15px;
    line-height: 140%;
  }
  .banner-text img {
    width: 30px;
    min-width: 30px;
    margin-right: 13px;
  }
  .contact-content, .contact-map {
    width: 100%;
  }
  .contact-content {
    padding-top: 0;
  }
  .contact-map {
    margin-top: 31px;
    height: 324px;
  }
  .contact-logo {
    width: 184px;
    margin-bottom: 30px;
  }
  .contact-item__right-title {
    font-size: 12px;
    line-height: normal;
  }
  .contact-item__right-text {
    font-size: 16px;
    line-height: normal;
  }
  .contact-list {
    display: block;
    margin: 17px 0 31px;
  }
  .contact {
    padding-bottom: 37px;
  }
  .contact-form {
    padding: 25px 16px 45px;
    border-radius: 10px;
  }
  .input input {
    height: 57px;
  }
  .input input, .input textarea {
    font-size: 14px;
  }
  .input-text {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: normal;
  }
  .contact-form__btn {
    margin-top: 18px;
  }
  .contact-form__small {
    width: 100%;
  }
  .education {
    padding-top: 19px;
    padding-bottom: 62px;
  }
  .education-img {
    position: static;
    max-width: 100%;
    margin-left: auto;
    width: 650px;
    margin-right: -28px;
  }
  .education-title {
    margin-top: 16px;
    font-size: 24px;
    line-height: 130%;
  }
  .education-text {
    margin: 12px 0 16px;
    font-size: 20px;
    line-height: 130%;
  }
  .algorithms-img {
    margin-right: -32px;
    width: calc(100% + 50px);
    position: static;
    max-width: none;
    margin-left: auto;
  }
  .tools-img {
    width: 271px;
  }
  .tools-content {
    width: calc(100% - 310px);
  }
  .education-banner {
    padding-bottom: 45px;
  }
  .education-banner__wrapper {
    padding: 39px 16px 0;
    text-align: center;
  }
  .education-banner__img {
    width: auto;
    max-width: calc(100% - 12px);
    margin: 0 0 0 -17px;
    position: static;
    width: 300px;
  }
  .education-banner__box {
    width: 300px;
    margin: 0 auto;
  }
  .education-banner__btn {
    font-weight: 500;
    font-size: 16px;
  }
  .investments {
    padding: 20px 0 30px;
  }
  .investments-img {
    position: static;
    max-width: calc(100% + 40px);
    margin-left: auto;
    width: 650px;
    margin-right: -28px;
    margin-bottom: 11px;
  }
  .investments-text {
    margin-top: 26px;
    width: 100%;
  }
  .offers {
    position: relative;
    padding: 37px 0 27px;
  }
  .offers-wrapper {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 27px;
    position: static;
  }
  .offers-img {
    height: 273px;
    left: 0;
    top: 130px;
  }
  .offers-title {
    width: 275px;
    font-size: 20px;
    line-height: normal;
    margin: 0 auto 345px;
  }
  .offers-box {
    width: 100%;
  }
  .offers-blue {
    font-size: 16px;
    line-height: normal;
  }
  .offers-bold {
    margin: 17px 0;
    font-size: 18px;
    line-height: normal;
  }
  .offers-text {
    margin: 0;
    font-size: 14px;
    line-height: 140%;
  }
  .offers-item {
    padding: 21px 15px 31px;
  }
  .offers-item__title {
    font-size: 16px;
    line-height: 140%;
    margin: 0;
  }
  .offers-item__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 140%;
  }
  .offers-item__buttons {
    display: block;
  }
  .offers-item__btn {
    margin: 17px 0 0 0;
    padding: 0 36px;
    height: 56px;
    font-size: 16px;
  }
  .offers-item__border {
    height: 56px;
    padding: 0;
    font-size: 16px;
    margin: 12px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 247px;
  }
  .offers-info {
    display: none;
  }
  .page-content.mobile-white {
    background: #fff;
  }
  .venture {
    padding: 39px 15px 32px 15px;
    font-size: 14px;
    height: 140%;
  }
  .venture-img {
    width: calc(100% + 33px);
    max-width: none;
    margin-left: -33px;
    position: static;
  }
  .venture-box {
    width: 100%;
  }
  .venture-block {
    margin: 19px 0 16px;
    padding: 15px;
  }
  .article {
    padding: 8px 0 35px;
  }
  .article-top {
    padding: 19px 19px 31px;
    min-height: 100px;
    margin-bottom: 26px;
  }
  .article-title {
    font-size: 24px;
    line-height: 130%;
    width: 450px;
  }
  .article-date {
    margin-top: 11px;
    font-size: 14px;
    line-height: 140%;
  }
  .article .breadcrumbs {
    margin-bottom: 12px;
  }
  .results-item__block {
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 5px;
  }
  .results-item {
    margin-top: 12px;
  }
  .results-item__title {
    padding: 17px 15px;
    font-size: 15px;
    line-height: 130%;
  }
  .results-item__title span {
    width: 400px;
    max-width: 100%;
    display: block;
  }
  .results-item__title img {
    margin-top: 4px;
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  .results-item__content {
    padding: 0 15px 21px;
  }
  .results-item__list {
    margin-left: -5px;
    margin-right: -5px;
    margin-top: -5px;
  }
  .results {
    padding: 34px 0 29px;
  }
  .about-tools {
    background: #F9F9FB;
    padding: 35px 0 51px;
  }
  .about-tools__bg {
    position: static;
    margin: 0 auto 46px;
    width: 431px;
  }
  .about-tools__title {
    margin: 0 auto;
    width: 250px;
    text-align: center;
    font-size: 20px;
    line-height: normal;
  }
  .about-tools__list {
    width: 100%;
  }
  .about-tools__item {
    margin-top: 14px;
    background: #fff;
    border-radius: 20px;
    padding: 19px 15px 25px 57px;
  }
  .about-tools__item-title {
    width: calc(100% - 52px);
    font-size: 15px;
    line-height: 130%;
  }
  .about-tools__item-text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 140%;
  }
  .about-tools__item-img {
    width: 24px;
    top: 22px;
    left: 17px;
  }
  .about-tools__item-icon {
    width: 30px;
    background-size: 30px;
    min-width: 30px;
    height: 30px;
    background-image: url("../img/result-arrow.svg");
  }
  .about {
    font-size: 14px;
    line-height: 130%;
  }
  .about-subtitle {
    font-size: 16px;
    line-height: 130%;
    margin-top: 13px;
  }
  .about-bottom {
    margin: 11px 0 29px;
  }
  .about-text {
    margin: 18px 0;
  }
  .about-blue {
    display: block;
    padding: 24px 23px;
    border-radius: 30px;
  }
  .about-blue__text {
    width: 170px;
    font-size: 16px;
    line-height: 130%;
  }
  .about-blue__btn {
    padding: 0 30px;
    height: 56px;
    font-size: 16px;
    margin-top: 8px;
  }
  .about-flag {
    width: 191px;
    right: auto;
    left: 170px;
  }
  .about-w {
    width: 100%;
  }
  .about-item {
    padding: 11px 17px 13px;
  }
  .about-item__title {
    font-size: 16px;
    line-height: 140%;
  }
  .about-item__content {
    width: calc(100% - 51px);
  }
  .about-item__text {
    margin-top: 3px;
    max-width: 100%;
    width: 192px;
    font-size: 14px;
    line-height: 140%;
  }
  .about-item__icon {
    width: 36px;
    min-width: 36px;
    margin-right: 15px;
  }
  .main-title {
    font-size: 24px;
    line-height: 130%;
    width: 550px;
  }
  .main-subtitle {
    margin: 11px auto 21px;
    font-size: 16px;
    line-height: 140%;
  }
  .main-btn {
    padding: 0 36px;
    height: 56px;
    font-size: 16px;
  }
  .calc {
    padding: 0 0 65px;
  }
  .calc-subtitle {
    margin: 13px auto 23px;
    width: 250px;
    max-width: 100%;
    font-size: 16px;
    line-height: 140%;
  }
  .calc-title {
    font-size: 24px;
    line-height: normal;
  }
  .home-offers {
    padding: 40px 0 91px;
  }
  .home-offers .offers-img {
    top: 130px;
    left: 0;
  }
  .home-tools .about-tools {
    padding: 68px 0 51px;
  }
  .home-banner {
    padding: 35px 0 40px;
  }
  .home-container {
    padding: 38px 0 52px;
  }
  .home-container__wrapper {
    display: block;
    padding: 25px 12px 17px;
  }
  .home-container .contact-map {
    height: 324px;
    width: 100%;
    min-width: 100px;
    margin: 26px 0 0 0;
  }
  .experience-top {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .experience-top__text {
    margin-top: 20px;
    width: 100%;
  }
  .experience-logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 184px;
    margin: 0;
  }
  .experience-bottom {
    display: block;
    text-align: center;
    border-radius: 50px;
  }
  .experience-bottom__text {
    margin-bottom: 13px;
  }
  .experience-items {
    display: block;
  }
  .experience-item {
    width: 100%;
    min-width: 100px;
    margin: 8px 0 0 0;
  }
  .experience-item:first-child {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .container {
    width: 540px;
  }
  .main {
    min-height: 100vh;
    padding-top: 160px !important;
  }
  .header {
    padding: 20px 0;
  }
  .header-logo__img {
    display: none;
  }
  .header-logo__mobile {
    display: block;
    width: 140px;
  }
  .header-burger {
    margin-left: 10px;
    display: block;
  }
  .header-nav {
    display: none;
  }
  .header-link, .header-btn {
    display: none;
  }
  .footer {
    padding: 36px 0 42px;
  }
  .footer-list {
    display: block;
  }
  .footer-copy {
    margin: 17px auto 0;
    width: 200px;
    color: #535353;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    line-height: normal;
  }
  .footer .header-lang {
    margin: 0 auto;
  }
  .pagination {
    margin-top: 24px;
  }
  .pagination a {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 16px;
    margin: 0 4px;
  }
  .pagination a.prev, .pagination a.next {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-width: 1px;
  }
  .pagination a.prev::after, .pagination a.next::after {
    background-size: 16px;
  }
  .tarifs .news-block {
    width: 100%;
  }
  .tarifs-item__info {
    min-height: 100px;
  }
  .tools {
    padding: 26px 0 24px;
  }
  .tools-list {
    display: block;
    padding: 28px 12px 21px;
    background: #fff;
    border-radius: 20px;
  }
  .tools-img {
    margin-left: -12px;
  }
  .tools-content {
    margin-top: 28px;
    width: 100%;
  }
  .results-item__block {
    width: 50%;
  }
  .group-block {
    width: 50%;
  }
  .group-title {
    width: 290px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .main {
    padding: 105px 0 96px;
  }
  .calc-item, .calc-left {
    width: 100%;
  }
  .calc-left {
    margin-bottom: 17px;
  }
}
@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 12px;
  }
  .calc-input__default {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .calc-input__flex {
    display: block;
  }
  .group-block {
    width: 100%;
  }
  .page-error__wrapper, .page-error-list, .tools__wrapper, .tools-list {
    margin-left: -12px;
    width: calc(100% + 24px);
  }
  .venture {
    margin-left: -12px;
    width: calc(100% + 24px);
  }
  .news-list {
    display: block;
    margin: 0 auto;
    width: 400px;
    max-width: 100%;
  }
  .news-block {
    width: 100%;
    padding: 0;
  }
  .mobile-menu__bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .banner-title {
    width: 200px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .banner-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-map {
    margin-left: -12px;
    width: calc(100% + 24px);
    max-width: calc(100% + 24px);
    border-radius: 0;
  }
  .algorithms-wrapper, .experience-wrapper {
    margin-left: -12px;
    width: calc(100% + 24px);
    border-radius: 20px;
  }
  .algorithms-img {
    margin-right: -32px;
    width: calc(100% + 70px);
  }
  .about-tools__bg {
    margin-left: 32px;
  }
  .about-flag {
    right: -39px;
    left: auto;
  }
  .about-item {
    width: 100%;
    margin-top: 11px;
  }
  .about-item:first-child {
    margin-top: 0;
  }
  .modal-close {
    top: -27px;
    right: 0;
  }
  .modal-title {
    font-size: 24px;
    line-height: 140%;
  }
  .modal-container {
    padding-top: 21px;
  }
  .modal-subtitle {
    margin-top: 11px;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 31px;
  }
  .labels {
    margin-top: -10px;
  }
  .labels label {
    padding: 12px;
  }
  .labels label img {
    width: 20px;
    min-width: 20px;
    margin-right: 10px;
  }
  .labels label b {
    font-size: 13px;
  }
  .labels .wpcf7-form-control {
    margin-top: 10px;
  }
  .modal-form {
    padding: 26px 16px 31px;
  }
  .offerModal .modal-container {
    padding: 24px 34px;
    width: 100%;
  }
  .offerModal-title {
    font-size: 24px;
  }
  .offerModal-text {
    font-size: 14px;
    line-height: 140%;
  }
  .offerModal-btn {
    height: 56px;
    padding: 0 30px;
    font-size: 16px;
  }
}
@media (max-width: 359px) {
  .about-flag {
    left: 165px;
    right: auto;
  }
  .calc-item__block span {
    font-size: 11px;
  }
}