@charset "UTF-8";
:root {
  --font-family: "TT Norms", sans-serif;
  --second-family: "Circe", sans-serif;
}

body {
  background-color: #fff;
  font-family: var(--font-family);
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 900px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
  }
}

.btn {
  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;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 147%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  -webkit-box-shadow: 0 7px 30px -12px rgba(1, 76, 141, 0.5), 0 4px 0 0 #004b8d, inset 0 0 30px 0 rgba(169, 204, 234, 0.7);
          box-shadow: 0 7px 30px -12px rgba(1, 76, 141, 0.5), 0 4px 0 0 #004b8d, inset 0 0 30px 0 rgba(169, 204, 234, 0.7);
  background: linear-gradient(45deg, #2b6fd4 0%, #097ee3 100%);
  border-radius: 5px;
  padding: 22px 36px 17px 36px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
  border: none;
}
.btn:hover {
  -webkit-box-shadow: 0 7px 30px -12px rgba(1, 76, 141, 0.5), 0 4px 0 0 #004b8d, inset 0 0 30px 0 rgb(169, 204, 234);
          box-shadow: 0 7px 30px -12px rgba(1, 76, 141, 0.5), 0 4px 0 0 #004b8d, inset 0 0 30px 0 rgb(169, 204, 234);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

strong {
  font-weight: 500;
}

.title2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 48px;
  line-height: 122%;
  text-align: center;
  background: linear-gradient(45deg, #272727 0%, #525252 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .title2 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .title2 {
    font-size: 25px;
  }
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.header {
  padding: 30px 0;
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.header .header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
}

.logomain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.logomain img {
  width: 190px;
  margin-left: -30px;
}
@media (min-width: 768px) {
  .logomain img {
    margin-left: -30px;
  }
}
@media (max-width: 768px) {
  .logomain img {
    margin-left: -15px;
  }
}
@media (max-width: 768px) {
  .logomain {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}
.logomain span {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: 12px;
  color: #333;
  max-width: 150px;
  line-height: 130%;
}
@media (max-width: 992px) {
  .logomain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .logomain span {
    font-size: 10px;
    max-width: 110px;
  }
}
@media (max-width: 768px) {
  .logomain img {
    width: 130px;
  }
}

.h_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
}
.h_menu li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.h_menu li a:hover {
  color: #0b5fa9;
}
@media (max-width: 1270px) {
  .h_menu {
    display: none;
  }
}

.h-d-flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .h-d-flx {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
  }
}

.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-left: 10px;
  margin-right: 10px;
}
.lang a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  position: relative;
}
.lang a:hover {
  color: #0b5fa9;
}
.lang a.active {
  font-weight: 600;
}
.lang a:nth-child(1)::after {
  width: 2px;
  height: 12px;
  display: block;
  content: "";
  background-color: #333333;
  position: absolute;
  top: 1px;
  right: -7px;
}
.lang .lang-ua {
  padding-right: 17px;
  background-image: url(../img/icons/ua.webp);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  .lang a {
    font-size: 12px;
  }
  .lang a:nth-child(1)::after {
    width: 2px;
    height: 10px;
    top: 1px;
    right: -7px;
  }
}
@media (max-width: 576px) {
  .lang {
    margin-bottom: 10px;
  }
}

.tel {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.tel::before {
  width: 16px;
  height: 16px;
  display: block;
  content: "";
  position: relative;
  background-image: url(../img/icons/teltel.svg);
  background-repeat: no-repeat;
  background-position: center left;
}
@media (max-width: 768px) {
  .tel {
    font-size: 12px;
    gap: 6px;
  }
  .tel::before {
    width: 12px;
    height: 12px;
    background-size: contain;
  }
}
@media (max-width: 576px) {
  .tel {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.h-btn {
  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;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #323232;
  padding: 20px;
  -webkit-box-shadow: 0 4px 20px -10px rgba(52, 52, 52, 0.1), 0 3px 0 0 #d6d6d6;
          box-shadow: 0 4px 20px -10px rgba(52, 52, 52, 0.1), 0 3px 0 0 #d6d6d6;
  background: linear-gradient(45deg, #ededed 0%, #f1f1f1 100%), radial-gradient(65.33% 65.33% at 50% 0%, #fff 0%, rgba(237, 237, 237, 0) 100%);
  border-radius: 5px;
  min-width: 207px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.h-btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 768px) {
  .h-btn {
    min-width: 130px;
    font-size: 9px;
    padding: 13px;
  }
}

.herowrap {
  position: relative;
}
@media (max-width: 768px) {
  .herowrap {
    overflow: hidden;
    padding-bottom: 140px;
  }
}

.bgimghr {
  position: absolute;
  z-index: 2;
  position: absolute;
  top: 430px;
  left: calc(50% - 850px);
  /* 100px влево */
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bgimghr img {
  left: -600px;
  top: -400px;
  width: 717px;
}
@media (max-width: 768px) {
  .bgimghr {
    left: calc(50% - 0px);
    top: calc(100% - 300px);
  }
  .bgimghr img {
    width: 620px;
    top: 0;
  }
}

.hero {
  background-image: url(../img/herobg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 130px;
  padding-bottom: 320px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 113px;
  }
}
.hero .h-figure-3 {
  position: absolute;
  left: -50px;
  top: 400px;
  width: 380px;
  z-index: 2;
}
@media (max-width: 1430px) {
  .hero .h-figure-3 {
    left: -300px;
  }
}
@media (max-width: 768px) {
  .hero .h-figure-3 {
    display: none;
  }
}
.hero .container {
  position: relative;
}
.hero .hero-man {
  position: absolute;
  bottom: -340px;
  right: 0;
  width: 500px;
}
@media (max-width: 1200px) {
  .hero .hero-man {
    width: 400px;
    bottom: -300px;
  }
}
@media (max-width: 992px) {
  .hero .hero-man {
    width: 400px;
    bottom: -300px;
    right: -70px;
  }
}
.hero .h-figure-0 {
  position: absolute;
  left: -600px;
  top: -400px;
  width: 717px;
}
.hero .h-figure-1 {
  position: absolute;
  left: -600px;
  top: -370px;
}
@media (max-width: 768px) {
  .hero .h-figure-1 {
    display: none;
  }
}
.hero .h-figure-2 {
  position: absolute;
  left: -260px;
  top: 80px;
  width: 400px;
}
@media (max-width: 768px) {
  .hero .h-figure-2 {
    display: none;
  }
}
.hero .h-figure-4 {
  position: absolute;
  right: -550px;
  top: -150px;
  width: 672px;
}
@media (max-width: 768px) {
  .hero .h-figure-4 {
    display: none;
  }
}
.hero__box {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
@media (max-width: 768px) {
  .hero__box {
    padding-top: 34px;
  }
}
.hero__title {
  background: linear-gradient(47deg, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
  border-radius: 8px;
  padding: 4px 16px 10px 16px;
  margin-bottom: 40px;
  margin-left: -10px;
  max-width: 850px;
}
.hero__title span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 43px;
  line-height: 113%;
  background: linear-gradient(45deg, #272727 0%, #525252 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__pretitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 36px;
  line-height: 113%;
  background: linear-gradient(45deg, #272727 0%, #525252 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 800px;
  margin-bottom: 22px;
}
.hero .btn {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 14px;
  letter-spacing: 1.4px;
}
.hero__txt_1 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #515151;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  max-width: 520px;
}
.hero__txt_1::before {
  display: block;
  position: relative;
  content: "";
  background: #d1d1d1;
  height: 2px;
  min-width: 25px;
  max-width: 25px;
  margin-top: 11px;
}
.hero .hero-sc {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 36px;
  position: relative;
}
.hero .hero-sc .btn {
  margin-bottom: 26px;
}
.hero .hero-sc p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  color: #333;
  max-width: 300px;
  position: relative;
  padding-left: 32px;
}
.hero .hero-sc p strong {
  font-weight: 400;
}
.hero .hero-sc p::before {
  min-width: 19px;
  max-width: 19px;
  height: 19px;
  position: absolute;
  left: 0;
  top: 1px;
  display: block;
  content: "";
  background-image: url(../img/icons/markgray.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .hero {
    padding-bottom: 580px;
  }
  .hero__box {
    max-width: 450px;
    margin: 0 auto;
  }
  .hero__title {
    margin-bottom: 20px;
    margin-left: 0;
  }
  .hero__title span {
    font-size: 22px;
  }
  .hero__txt_1 {
    font-size: 15px;
    gap: 8px;
    margin-bottom: 10px;
  }
  .hero .btn {
    font-size: 10px;
    width: 100%;
    padding: 20px 15px;
  }
  .hero .hero-sc p {
    font-size: 13px;
  }
  .hero .hero-sc p::before {
    min-width: 15px;
    max-width: 15px;
    height: 15px;
    top: 2px;
  }
  .hero .hero-man {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 290px;
    bottom: -480px;
  }
}

.hero-adv-box {
  margin-top: -220px;
}

.hero-adv {
  position: relative;
  z-index: 3;
  border: 1px solid #F8F8F8;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  /* для Safari */
  border-radius: 5px;
}
.hero-adv .hero-adv-item {
  border-right: 1px solid #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 45px;
  padding-bottom: 45px;
  padding-left: 7px;
  padding-right: 7px;
}
.hero-adv .hero-adv-item:last-child {
  border-right: none;
}
.hero-adv .hero-adv-item__box {
  max-width: 240px;
  position: relative;
}
.hero-adv .hero-adv-item__num {
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 123%;
  color: #9f9f9f;
}
.hero-adv .hero-adv-item__icon {
  margin-bottom: 17px;
}
.hero-adv .hero-adv-item__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 113%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
}
.hero-adv .hero-adv-item p {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: 16px;
  line-height: 123%;
  color: #515151;
}
.hero-adv .hero-adv-item p strong {
  font-weight: 400;
}
@media (max-width: 992px) {
  .hero-adv .hero-adv-item__title {
    font-size: 20px;
  }
  .hero-adv .hero-adv-item p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero-adv {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    max-width: 90%;
    margin: 0 auto;
  }
  .hero-adv .hero-adv-item {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-adv .hero-adv-item__box {
    max-width: 100%;
  }
  .hero-adv .hero-adv-item__icon img {
    width: 37px;
  }
  .hero-adv .hero-adv-item__title {
    font-size: 18px;
  }
  .hero-adv .hero-adv-item p {
    font-size: 13px;
  }
}

.wichprobs {
  overflow: hidden;
  padding-top: 105px;
  padding-bottom: 100px;
  background-image: url(../img/bglines.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (max-width: 992px) {
  .wichprobs {
    padding-top: 100px;
  }
}
.wichprobs .title2 {
  position: relative;
}
.wichprobs .title2 span::before {
  position: absolute;
  content: "";
  z-index: -1;
  background: linear-gradient(47deg, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
  height: 100%;
  width: 100%;
  border-radius: 8px;
  height: 59px;
  width: 615px;
  margin-left: -20px;
}
.wichprobs__pretitle {
  max-width: 630px;
  margin: 0 auto;
  margin-top: 18px;
  margin-bottom: 65px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 24px;
  line-height: 123%;
  text-align: center;
  color: #444;
}

.wichprobs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.wichprobs-list .wichprobs-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
}
.wichprobs-list .wichprobs-item .wichprobs-item-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 123%;
  color: #fff;
  margin-bottom: 6px;
  position: relative;
  z-index: 5;
}
.wichprobs-list .wichprobs-item .wichprobs-item-txt {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 123%;
  color: #fff;
  position: relative;
  z-index: 5;
}
.wichprobs-list .wichprobs-sc1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.wichprobs-list .wichprobs-row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.wichprobs-list .wichprobs-row1 .wichprobs-item {
  height: 240px;
}
.wichprobs-list .wichprobs-row1 .wichprobs-item:nth-child(1) {
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 60%;
  background-color: #000;
}
.wichprobs-list .wichprobs-row1 .wichprobs-item:nth-child(1) img {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
}
.wichprobs-list .wichprobs-row1 .wichprobs-item:nth-child(1) .wichprobs-item-title {
  max-width: 224px;
}
.wichprobs-list .wichprobs-row1 .wichprobs-item:nth-child(1) .wichprobs-item-txt {
  max-width: 392px;
}
.wichprobs-list .wichprobs-row1 .wichprobs-item:nth-child(2) {
  width: 40%;
  background: #f5f5f5;
  background-image: url(../img/wc2bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.wichprobs-list .wichprobs-row1 .wichprobs-item:nth-child(2) img {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 170px;
}
.wichprobs-list .wichprobs-row1 .wichprobs-item:nth-child(2) .wichprobs-item-title {
  max-width: 240px;
  color: #333;
  margin-bottom: 10px;
}
.wichprobs-list .wichprobs-row1 .wichprobs-item:nth-child(2) .wichprobs-item-txt {
  max-width: 300px;
  color: #333;
}
.wichprobs-list .wichprobs-row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item {
  height: 309px;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(1) {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 120%;
  background-image: url(../img/wc3bg.png);
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 25%;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(1) img {
  position: absolute;
  top: 0;
  left: 50px;
  width: 45px;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(1) .wichprobs-item-title {
  color: #333;
  margin-bottom: 10px;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(1) .wichprobs-item-txt {
  color: #333;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(2) {
  background-image: url(../img/wc4bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 30%;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(2) .wichprobs-item-title {
  color: #333;
  margin-bottom: 10px;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(2) .wichprobs-item-txt {
  color: #333;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(2) img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 155px;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(3) {
  background-image: url(../img/wc5bg.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
  width: 45%;
}
.wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(3) .wichprobs-item-txt {
  max-width: 300px;
}
.wichprobs-list .wichprobs-sc2 {
  min-height: 100%;
  min-width: 280px;
  max-width: 280px;
}
.wichprobs-list .wichprobs-sc2 .wichprobs-item {
  min-height: 100%;
  background-image: url(../img/wc6bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.wichprobs-list .wichprobs-sc2 .wichprobs-item .wichprobs-item-title {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 123%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333;
  background: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.wichprobs-list .wichprobs-sc2 .wichprobs-item .wichprobs-item-txt {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 20px;
  line-height: 123%;
  color: #fff;
}
.wichprobs-list .wichprobs-sc2 .wichprobs-item img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  mix-blend-mode: difference;
}

@media (max-width: 576px) {
  .header-thank {
    max-width: 330px;
    margin: 0 auto;
  }
}

.thankssc-sc {
  overflow: hidden;
  padding-bottom: 0;
}
.thankssc-sc .hero {
  padding-bottom: 200px;
}
.thankssc-sc .hero-man {
  z-index: 100;
}
@media (max-width: 576px) {
  .thankssc-sc .hero__title span {
    font-size: 32px;
    font-weight: 500;
  }
  .thankssc-sc .hero__pretitle {
    font-size: 21px;
  }
}
@media (max-width: 576px) {
  .thankssc-sc .container {
    max-width: 330px;
    margin: 0 auto;
  }
  .thankssc-sc .bgimghr {
    top: calc(100% - 250px);
  }
  .thankssc-sc .h-figure-0 {
    -webkit-transform: translateX(-25%) !important;
            transform: translateX(-25%) !important;
  }
  .thankssc-sc .hero-man {
    bottom: -350px;
  }
}

.th17-img img {
  width: 100%;
  max-width: 495px;
  margin-left: -7px;
}

.txtbluemin {
  color: #00a1ff;
  font-size: 19px;
  font-weight: 500;
  line-height: 130%;
}

.txtregularmin {
  color: #000000;
  font-size: 20px;
  line-height: 130%;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .txtregularmin {
    font-size: 19px;
  }
}

.btn-tg {
  display: inline-block;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-tg img {
  width: 100%;
  max-width: 230px;
}
.btn-tg:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 576px) {
  .btn-tg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 1200px) {
  .wichprobs-list {
    gap: 10px;
  }
  .wichprobs-list .wichprobs-item {
    padding: 15px;
  }
  .wichprobs-list .wichprobs-item .wichprobs-item-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .wichprobs-list .wichprobs-item .wichprobs-item-txt {
    font-size: 14px;
  }
  .wichprobs-list .wichprobs-sc2 {
    min-width: 220px;
    max-width: 220px;
  }
}
@media (max-width: 992px) {
  .wichprobs .title2 span::before {
    height: 45px;
  }
  .wichprobs-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
  }
  .wichprobs-list .wichprobs-row1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .wichprobs-list .wichprobs-row1 .wichprobs-item {
    min-width: 100%;
    max-width: 100%;
  }
  .wichprobs-list .wichprobs-row1 .wichprobs-item .wichprobs-item-txt {
    max-width: 450px !important;
  }
  .wichprobs-list .wichprobs-sc2 {
    min-width: 100%;
    max-width: 100%;
    min-height: 365px;
    max-height: 365px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .wichprobs-list .wichprobs-sc2 .wichprobs-item {
    min-height: 365px;
    max-height: 365px;
    background-position: center center;
    width: 100%;
  }
  .wichprobs-list .wichprobs-sc2 .wichprobs-item p {
    max-width: 350px;
  }
  .wichprobs-list .wichprobs-sc2 .wichprobs-item img {
    width: 170px;
    bottom: -40px;
  }
  .wichprobs-list .wichprobs-row2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(1) {
    width: calc(40% - 10px);
  }
  .wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(2) {
    width: calc(60% - 10px);
  }
  .wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .wichprobs {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .wichprobs .title2 span::before {
    height: 33px;
  }
  .wichprobs__pretitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .wichprobs-list .wichprobs-item {
    height: 240px !important;
  }
  .wichprobs-sc2 {
    min-height: auto !important;
    max-height: auto !important;
    height: auto !important;
  }
  .wichprobs-row1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .wichprobs-row1 .wichprobs-item:nth-child(2) {
    height: 210px !important;
  }
  .wichprobs-row1 .wichprobs-item:nth-child(2) img {
    width: 140px !important;
  }
  .wichprobs-list .wichprobs-row2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(1) {
    width: 100%;
    height: 170px !important;
  }
  .wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(1) .wichprobs-item-title {
    max-width: 170px;
  }
  .wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(1) .wichprobs-item-txt {
    max-width: 190px;
  }
  .wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(1) img {
    left: auto;
    right: 20px !important;
  }
  .wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(2) {
    width: 100%;
    height: 210px !important;
  }
  .wichprobs-list .wichprobs-row2 .wichprobs-item:nth-child(2) .wichprobs-item-txt {
    max-width: 180px;
  }
  .wichprobs-list .wichprobs-sc2 .wichprobs-item .wichprobs-item-title {
    font-size: 18px;
  }
  .wichprobs-list .wichprobs-sc2 .wichprobs-item .wichprobs-item-txt {
    font-size: 16px;
  }
}
.solvprobs {
  padding-top: 70px;
  padding-bottom: 76px;
  background: linear-gradient(45deg, #272727 0%, #3f3f3f 100%);
  overflow: hidden;
  position: relative;
}
.solvprobs img {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
}
.solvprobs__box {
  max-width: 500px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 3;
}
.solvprobs__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 36px;
  line-height: 115%;
  color: #fff;
  margin-bottom: 26px;
}
.solvprobs__txt1 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #fff;
  margin-bottom: 23px;
}
.solvprobs__txt_2 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.solvprobs__txt_2::before {
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  content: "";
  position: relative;
  margin-top: 4px;
  background-image: url(../img/icons/mark132.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1200px) {
  .solvprobs img {
    left: 500px;
    opacity: 0.6;
  }
}
@media (max-width: 768px) {
  .solvprobs {
    padding-top: 40px;
    padding-bottom: 46px;
  }
  .solvprobs img {
    left: 0px;
    opacity: 0.2;
  }
  .solvprobs__box {
    max-width: 500px;
  }
  .solvprobs__title {
    font-size: 25px;
    margin-bottom: 26px;
  }
  .solvprobs__txt1 {
    font-size: 15px;
    margin-bottom: 23px;
  }
  .solvprobs__txt_2 {
    font-size: 15px;
    gap: 15px;
    margin-bottom: 30px;
  }
  .solvprobs__txt_2::before {
    min-width: 15px;
    max-width: 15px;
    height: 15px;
    margin-top: 4px;
  }
}
.sales-department {
  border-bottom: 1px solid #e9e9e9;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 115px;
}
.sales-department .container {
  position: relative;
  min-height: 100%;
}
.sales-department__blure {
  position: absolute;
  right: -640px;
  top: -300px;
  z-index: -1;
}
.sales-department__bgimage {
  position: absolute;
  right: -400px;
  width: 930px;
  z-index: -1;
}
.sales-department__box {
  max-width: 620px;
}
.sales-department__pretitle {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 122%;
  text-transform: uppercase;
  color: #cbcbcb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.sales-department__pretitle::before {
  position: relative;
  display: block;
  content: "";
  width: 25px;
  height: 1px;
  background: #cbcbcb;
}
.sales-department__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 48px;
  line-height: 122%;
  background: linear-gradient(45deg, #272727 0%, #525252 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  margin-top: 10px;
}
.sales-department .p-pp1 {
  padding-left: 24px;
  border-left: 2px solid #e0e0e0;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #515151;
  margin-bottom: 30px;
}
.sales-department p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #515151;
  margin-bottom: 5px;
}

.inf-sc-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  margin-top: 40px;
}
.inf-sc-box .inf-sc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.inf-sc-box .inf-sc-item span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 64px;
  line-height: 123%;
  background: linear-gradient(45deg, #2f76b4 0%, #017ae4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: 50px;
}
.inf-sc-box .inf-sc-item p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  background: linear-gradient(45deg, #0b4476 0%, #017ae4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: -10px;
}

.txt-w-ic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  max-width: 654px;
  margin-top: 50px;
}
.txt-w-ic img {
  width: 77px;
}
.txt-w-ic p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #515151;
}

@media (max-width: 992px) {
  .sales-department {
    padding-bottom: 0;
  }
  .sales-department .container {
    padding-bottom: 500px;
  }
  .sales-department__blure {
    position: absolute;
    top: auto;
    right: -300px;
    bottom: -250px;
    width: 900px;
  }
  .sales-department__bgimage {
    bottom: -230px;
    width: 650px;
    right: 0;
  }
}
@media (max-width: 768px) {
  .sales-department {
    padding-bottom: 0;
  }
  .sales-department .container {
    padding-bottom: 300px;
  }
  .sales-department__blure {
    position: absolute;
    top: auto;
    right: -250px;
    bottom: -250px;
    width: 700px;
  }
  .sales-department__bgimage {
    bottom: -230px;
    width: 450px;
    right: 0;
  }
  .sales-department__pretitle {
    font-size: 11px;
    gap: 14px;
  }
  .sales-department__title {
    font-size: 24px;
    margin-bottom: 24px;
    margin-top: 10px;
  }
  .sales-department .p-pp1 {
    padding-left: 18px;
    border-left: 2px solid #e0e0e0;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .sales-department p {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .inf-sc-box {
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
  .inf-sc-box .inf-sc-item img {
    width: 110px;
  }
  .inf-sc-box .inf-sc-item span {
    font-size: 34px;
    top: 35px;
  }
  .inf-sc-box .inf-sc-item p {
    font-size: 11px;
    bottom: -10px;
  }
  .txt-w-ic {
    gap: 14px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .txt-w-ic img {
    width: 40px;
  }
  .txt-w-ic p {
    font-size: 15px;
  }
}
@media (max-width: 390px) {
  .inf-sc-box {
    gap: 12px;
  }
  .inf-sc-box .inf-sc-item img {
    width: 95px;
  }
  .inf-sc-box .inf-sc-item span {
    top: 28px;
  }
}
.howgoing {
  background-image: url(../img/bg30594.webp);
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
.howgoing .title2 {
  margin-bottom: 60px;
}
.howgoing .ruler-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 18px;
}
@media (max-width: 1200px) {
  .howgoing .ruler-box {
    -webkit-transform: scale(0.77);
            transform: scale(0.77);
  }
}
.howgoing .ruler-box .ruler-tochka {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 162%;
  text-align: center;
  color: #8f8f8f;
}
.howgoing .ruler-box .ruler-tochka span {
  font-weight: 500;
  font-size: 32px;
  background: linear-gradient(45deg, #0b4476 0%, #017ae4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.howgoing .ruler-box .ruler-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 50px;
}
.howgoing .ruler-box .ruler-steps p {
  position: absolute;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 123%;
  color: #333;
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
  bottom: 15px;
}
.howgoing .ruler-box .ruler-steps p:nth-child(2) {
  left: 170px;
}
.howgoing .ruler-box .ruler-steps p:nth-child(3) {
  left: 290px;
}
.howgoing .ruler-box .ruler-steps p:nth-child(4) {
  left: 410px;
}
.howgoing .ruler-box .ruler-steps p:nth-child(5) {
  left: 600px;
}
.howgoing .ruler-box .ruler-steps p:nth-child(6) {
  left: 775px;
}
.howgoing .ruler-box .ruler-labels {
  position: relative;
}
.howgoing .ruler-box .ruler-labels span {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 12px;
  line-height: 123%;
  text-transform: uppercase;
  color: #8f8f8f;
  position: absolute;
  top: 8px;
}
.howgoing .ruler-box .ruler-labels span:nth-child(2) {
  left: 185px;
}
.howgoing .ruler-box .ruler-labels span:nth-child(3) {
  left: 290px;
}
.howgoing .ruler-box .ruler-labels span:nth-child(4) {
  left: 410px;
}
.howgoing .ruler-box .ruler-labels span:nth-child(5) {
  left: 592px;
}
.howgoing .ruler-box .ruler-labels span:nth-child(6) {
  left: 775px;
}
.howgoing .howgoing-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  margin-top: 90px;
}
.howgoing .howgoing-item {
  width: 25%;
}
.howgoing .howgoing-item:nth-child(1) img {
  width: 243px;
}
.howgoing .howgoing-item:nth-child(2) img {
  width: 137px;
}
.howgoing .howgoing-item:nth-child(3) img {
  width: 218px;
}
.howgoing .howgoing-item:nth-child(4) img {
  width: 287px;
}
.howgoing .howgoing-item__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 200px;
  position: relative;
}
.howgoing .howgoing-item__img::before {
  display: block;
  content: "";
  width: 200px;
  height: 200px;
  background-image: url(../img/shadow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.howgoing .howgoing-item__img img {
  position: absolute;
}
.howgoing .howgoing-item p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  text-align: center;
  color: #333;
}
@media (max-width: 992px) {
  .howgoing .howgoing-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 60px 36px;
  }
  .howgoing .howgoing-item {
    width: calc(50% - 36px);
  }
}
@media (max-width: 768px) {
  .howgoing {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .howgoing .title2 {
    margin-bottom: 60px;
  }
  .howgoing .ruler-box {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 885px;
    position: relative;
    padding-left: 70px;
  }
  .howgoing .ruler-box .ruler-tochka {
    position: absolute;
    left: 40px;
    top: -30px;
  }
  .howgoing .ruler-box .ruler-tochka-B {
    position: absolute;
    top: calc(100% + 20px);
    left: 50px;
  }
  .howgoing .ruler-box .ruler-steps {
    height: auto;
  }
  .howgoing .ruler-box .ruler-steps p {
    font-size: 16px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    bottom: 15px;
    min-width: 200px;
    max-width: 500px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .howgoing .ruler-box .ruler-steps p:nth-child(1) {
    top: 40px;
  }
  .howgoing .ruler-box .ruler-steps p:nth-child(2) {
    left: 0px;
    top: 220px;
  }
  .howgoing .ruler-box .ruler-steps p:nth-child(3) {
    left: 0px;
    top: 340px;
  }
  .howgoing .ruler-box .ruler-steps p:nth-child(4) {
    left: 0px;
    top: 440px;
  }
  .howgoing .ruler-box .ruler-steps p:nth-child(5) {
    left: 0px;
    top: 630px;
  }
  .howgoing .ruler-box .ruler-steps p:nth-child(6) {
    left: 0px;
    top: 810px;
  }
  .howgoing .ruler-box .ruler-labels span {
    font-size: 12px;
    top: 8px;
    width: 200px;
  }
  .howgoing .ruler-box .ruler-labels span:nth-child(1) {
    top: 10px;
  }
  .howgoing .ruler-box .ruler-labels span:nth-child(2) {
    left: 0px;
    top: 195px;
  }
  .howgoing .ruler-box .ruler-labels span:nth-child(3) {
    left: 0px;
    top: 310px;
  }
  .howgoing .ruler-box .ruler-labels span:nth-child(4) {
    left: 0px;
    top: 420px;
  }
  .howgoing .ruler-box .ruler-labels span:nth-child(5) {
    left: 0px;
    top: 610px;
  }
  .howgoing .ruler-box .ruler-labels span:nth-child(6) {
    left: 0px;
    top: 790px;
  }
  .howgoing .ruler img {
    position: relative;
    -webkit-transform: rotate(-90deg) scaleX(-1);
            transform: rotate(-90deg) scaleX(-1);
    left: -400px;
    position: absolute;
    top: 450px;
  }
  .howgoing .howgoing-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 60px 36px;
  }
  .howgoing .howgoing-item {
    width: 100%;
  }
  .howgoing .howgoing-item p {
    max-width: 300px;
    margin: 0 auto;
  }
}

.banner-free {
  padding: 100px 0;
  border-bottom: 1px solid #e9e9e9;
  overflow: hidden;
}
.banner-free .container {
  position: relative;
}
.banner-free img {
  position: absolute;
  top: -85px;
  right: -320px;
  z-index: 1;
}
@media (max-width: 1380px) {
  .banner-free img {
    right: -240px;
  }
}
.banner-free__box {
  background-image: url(../img/bannerfree.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 450px;
  width: 100%;
  border-radius: 20px;
  padding-top: 50px;
  padding-left: 60px;
  position: relative;
}
.banner-free__content {
  position: relative;
  z-index: 3;
}
.banner-free__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 48px;
  line-height: 104%;
  color: #fff;
  margin-bottom: 20px;
  max-width: 640px;
}
.banner-free p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #fff;
  margin-bottom: 32px;
  max-width: 410px;
}
.banner-free form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-free form .iti__selected-dial-code {
  color: #fff;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 147%;
}
.banner-free form input {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 147%;
  color: #fff;
  margin-right: 20px;
  background: #252525;
  border: 1px solid #333;
  border-radius: 5px;
  width: 309px;
  height: 70px;
  padding-left: 38px;
}
.banner-free form input::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 147%;
  color: #fff;
}
.banner-free form input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 147%;
  color: #fff;
}
.banner-free form input:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 147%;
  color: #fff;
}
.banner-free form input::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 147%;
  color: #fff;
}
.banner-free form input::placeholder {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 147%;
  color: #fff;
}
.banner-free form button {
  min-width: 283px;
}
@media (max-width: 1200px) {
  .banner-free img {
    width: 700px;
    top: 50px;
    right: -140px;
  }
}
@media (max-width: 768px) {
  .banner-free {
    padding: 40px 0;
    padding-bottom: 170px;
  }
  .banner-free img {
    top: auto;
    bottom: -200px;
    width: 539px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    left: 47%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .banner-free__box {
    min-height: 450px;
    border-radius: 20px;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
  }
  .banner-free__title {
    font-size: 25px;
  }
  .banner-free p {
    font-size: 15px;
    margin-bottom: 32px;
    max-width: 410px;
  }
  .banner-free form {
    -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;
    gap: 14px;
  }
  .banner-free form input {
    font-size: 14px;
    margin-right: 0px;
    width: 100%;
    height: 70px;
    padding-left: 38px;
  }
  .banner-free form input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .banner-free form input::-moz-placeholder {
    font-size: 14px;
  }
  .banner-free form input:-ms-input-placeholder {
    font-size: 14px;
  }
  .banner-free form input::-ms-input-placeholder {
    font-size: 14px;
  }
  .banner-free form input::placeholder {
    font-size: 14px;
  }
  .banner-free form button {
    min-width: 100%;
  }
}

.in-result {
  padding-top: 70px;
  padding-bottom: 110px;
  background-image: url(../img/bglist.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.in-result .title2 {
  position: relative;
  margin-bottom: 60px;
}
.in-result .title2 span::before {
  position: absolute;
  content: "";
  z-index: -1;
  background: linear-gradient(47deg, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
  height: 100%;
  width: 100%;
  border-radius: 8px;
  height: 59px;
  width: 100%;
  margin-left: -20px;
}
.in-result__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.in-result .in-result-item {
  padding: 20px 25px;
  border-radius: 10px;
  height: 240px;
  position: relative;
}
.in-result .in-result-item p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 123%;
  color: #fff;
}
.in-result .in-result-item img {
  position: absolute;
}
.in-result .in-result-item:nth-child(1) {
  background: linear-gradient(45deg, #2f76b4 0%, #017ae4 100%);
  width: 260px;
}
.in-result .in-result-item:nth-child(1) img {
  width: 294px;
  top: 57px;
  left: 59px;
}
.in-result .in-result-item:nth-child(2) {
  background: #f5f5f5;
  width: 260px;
}
.in-result .in-result-item:nth-child(2) p {
  color: #333;
  max-width: 175px;
}
.in-result .in-result-item:nth-child(2) img {
  width: 294px;
  left: 6px;
  top: 67px;
}
.in-result .in-result-item:nth-child(3) {
  background: #ebf4ff;
  width: 329px;
  overflow: hidden;
}
.in-result .in-result-item:nth-child(3) p {
  color: #333;
  max-width: 203px;
}
.in-result .in-result-item:nth-child(3) img {
  width: 259px;
  top: 39px;
  left: 89px;
}
.in-result .in-result-item:nth-child(4) {
  background: #f1e2df;
  width: 280px;
}
.in-result .in-result-item:nth-child(4) p {
  color: #333;
  max-width: 203px;
}
.in-result .in-result-item:nth-child(4) img {
  width: 282px;
  top: 101px;
  left: 55px;
}
.in-result .in-result-item:nth-child(5) {
  background: linear-gradient(45deg, #3f3f3f 0%, #535353 100%);
  width: 190px;
  overflow: hidden;
}
.in-result .in-result-item:nth-child(5) img {
  width: 125px;
  top: 60px;
  left: 32px;
  mix-blend-mode: screen;
}
.in-result .in-result-item:nth-child(6) {
  background: #ebf4ff;
  width: 250px;
  overflow: hidden;
}
.in-result .in-result-item:nth-child(6) p {
  color: #333;
}
.in-result .in-result-item:nth-child(6) img {
  width: 250px;
  top: 108px;
  left: 0;
}
.in-result .in-result-item:nth-child(7) {
  background: linear-gradient(45deg, #2f76b4 0%, #017ae4 100%);
  width: 410px;
}
.in-result .in-result-item:nth-child(7) p {
  max-width: 205px;
}
.in-result .in-result-item:nth-child(7) img {
  width: 320px;
  left: 130px;
  bottom: -2px;
}
.in-result .in-result-item:nth-child(8) {
  background: #f5f5f5;
  width: 280px;
  overflow: hidden;
}
.in-result .in-result-item:nth-child(8) p {
  color: #333;
  max-width: 222px;
}
.in-result .in-result-item:nth-child(8) img {
  width: 360px;
  left: 25px;
  top: 114px;
}
@media (max-width: 1280px) {
  .in-result__box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  .in-result .in-result-item {
    padding: 20px 15px;
    height: 240px;
  }
  .in-result .in-result-item:nth-child(1) {
    width: 210px;
  }
  .in-result .in-result-item:nth-child(1) img {
    width: 264px;
    top: 67px;
    left: 49px;
  }
  .in-result .in-result-item:nth-child(2) {
    width: 210px;
  }
  .in-result .in-result-item:nth-child(2) p {
    max-width: 175px;
  }
  .in-result .in-result-item:nth-child(2) img {
    width: 274px;
    left: -16px;
    top: 67px;
  }
  .in-result .in-result-item:nth-child(3) {
    width: 279px;
  }
  .in-result .in-result-item:nth-child(3) p {
    max-width: 203px;
  }
  .in-result .in-result-item:nth-child(3) img {
    width: 259px;
    top: 39px;
    left: 89px;
  }
  .in-result .in-result-item:nth-child(4) {
    width: 230px;
  }
  .in-result .in-result-item:nth-child(4) p {
    max-width: 203px;
  }
  .in-result .in-result-item:nth-child(4) img {
    width: 282px;
    top: 101px;
    left: 15px;
  }
  .in-result .in-result-item:nth-child(5) {
    width: 140px;
  }
  .in-result .in-result-item:nth-child(5) img {
    width: 125px;
    top: 60px;
    left: 32px;
  }
  .in-result .in-result-item:nth-child(6) {
    width: 200px;
  }
  .in-result .in-result-item:nth-child(6) img {
    width: 250px;
    top: 108px;
    left: 0;
  }
  .in-result .in-result-item:nth-child(7) {
    width: 360px;
  }
  .in-result .in-result-item:nth-child(7) p {
    max-width: 205px;
  }
  .in-result .in-result-item:nth-child(7) img {
    width: 320px;
    left: 110px;
    bottom: -2px;
  }
  .in-result .in-result-item:nth-child(8) {
    width: 230px;
  }
  .in-result .in-result-item:nth-child(8) p {
    max-width: 222px;
  }
  .in-result .in-result-item:nth-child(8) img {
    width: 360px;
    left: 25px;
    top: 114px;
  }
}
@media (max-width: 1080px) {
  .in-result__box {
    gap: 20px 10px;
  }
  .in-result .in-result-item {
    padding: 20px 15px;
    height: 240px;
  }
  .in-result .in-result-item p {
    font-size: 15px;
  }
  .in-result .in-result-item:nth-child(1) {
    width: 30%;
  }
  .in-result .in-result-item:nth-child(1) img {
    width: 244px;
    top: 77px;
    left: 9px;
  }
  .in-result .in-result-item:nth-child(2) {
    width: 30%;
  }
  .in-result .in-result-item:nth-child(2) p {
    max-width: 175px;
  }
  .in-result .in-result-item:nth-child(2) img {
    width: 224px;
    left: -36px;
    top: 87px;
  }
  .in-result .in-result-item:nth-child(3) {
    width: 30%;
  }
  .in-result .in-result-item:nth-child(3) p {
    max-width: 203px;
  }
  .in-result .in-result-item:nth-child(3) img {
    width: 259px;
    top: 39px;
    left: 89px;
  }
  .in-result .in-result-item:nth-child(4) {
    width: 30%;
  }
  .in-result .in-result-item:nth-child(4) p {
    max-width: 203px;
  }
  .in-result .in-result-item:nth-child(4) img {
    width: 202px;
    top: 120px;
    left: -20px;
  }
  .in-result .in-result-item:nth-child(5) {
    width: 30%;
  }
  .in-result .in-result-item:nth-child(5) img {
    width: 125px;
    top: 60px;
    left: 32px;
  }
  .in-result .in-result-item:nth-child(6) {
    width: 30%;
  }
  .in-result .in-result-item:nth-child(6) img {
    width: 250px;
    top: 108px;
    left: 0;
  }
  .in-result .in-result-item:nth-child(7) {
    width: 45.5%;
  }
  .in-result .in-result-item:nth-child(7) p {
    max-width: 205px;
  }
  .in-result .in-result-item:nth-child(7) img {
    width: 240px;
    left: 50px;
    bottom: -2px;
  }
  .in-result .in-result-item:nth-child(8) {
    width: 45.5%;
  }
  .in-result .in-result-item:nth-child(8) p {
    max-width: 222px;
  }
  .in-result .in-result-item:nth-child(8) img {
    width: 360px;
    left: 25px;
    top: 114px;
  }
}
@media (max-width: 576px) {
  .in-result {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .in-result .title2 {
    margin-bottom: 30px;
  }
  .in-result__box {
    gap: 20px 10px;
  }
  .in-result .in-result-item {
    padding: 20px 15px;
    height: 240px;
  }
  .in-result .in-result-item p {
    font-size: 15px;
  }
  .in-result .in-result-item:nth-child(1) {
    width: calc(50% - 5px);
  }
  .in-result .in-result-item:nth-child(1) img {
    width: 244px;
    top: 77px;
    left: auto;
    right: -70px;
  }
  .in-result .in-result-item:nth-child(2) {
    width: calc(50% - 5px);
  }
  .in-result .in-result-item:nth-child(2) p {
    max-width: 175px;
  }
  .in-result .in-result-item:nth-child(2) img {
    width: 224px;
    left: auto;
    right: -20px;
    top: 87px;
  }
  .in-result .in-result-item:nth-child(3) {
    width: 100%;
  }
  .in-result .in-result-item:nth-child(3) p {
    max-width: 203px;
  }
  .in-result .in-result-item:nth-child(3) img {
    width: 259px;
    top: 39px;
    left: auto;
    right: 0;
  }
  .in-result .in-result-item:nth-child(4) {
    width: calc(50% - 5px);
  }
  .in-result .in-result-item:nth-child(4) p {
    max-width: 203px;
  }
  .in-result .in-result-item:nth-child(4) img {
    width: 182px;
    top: 120px;
    left: auto;
    right: -20px;
  }
  .in-result .in-result-item:nth-child(5) {
    width: calc(50% - 5px);
  }
  .in-result .in-result-item:nth-child(5) img {
    width: 125px;
    top: 60px;
    left: 32px;
  }
  .in-result .in-result-item:nth-child(6) {
    width: calc(50% - 5px);
  }
  .in-result .in-result-item:nth-child(6) img {
    width: 180px;
    top: auto;
    bottom: 0;
    left: 0;
  }
  .in-result .in-result-item:nth-child(8) {
    width: calc(50% - 5px);
  }
  .in-result .in-result-item:nth-child(8) p {
    max-width: 222px;
  }
  .in-result .in-result-item:nth-child(8) img {
    width: 360px;
    left: 25px;
    top: 114px;
  }
  .in-result .in-result-item:nth-child(7) {
    width: 100%;
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .in-result .in-result-item:nth-child(7) p {
    max-width: 205px;
  }
  .in-result .in-result-item:nth-child(7) img {
    width: 240px;
    left: auto;
    right: 0;
    bottom: -2px;
  }
}

.banner-guarant {
  min-height: 545px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 1850px) {
  .banner-guarant {
    overflow: hidden;
  }
}
.banner-guarant__wrap {
  background: linear-gradient(89deg, #161e2a 0%, #161e2a 95.51%);
  height: 100%;
  padding-top: 93px;
  padding-bottom: 85px;
  position: relative;
}
@media (max-width: 992px) {
  .banner-guarant__wrap {
    overflow: hidden;
  }
}
.banner-guarant .guar-ii-1 {
  position: absolute;
  top: 0px;
  right: 845px;
  height: 100%;
}
.banner-guarant .guar-ii-1 img {
  height: 100%;
}
.banner-guarant .container {
  position: relative;
}
.banner-guarant__box {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 2;
  max-width: 550px;
}
.banner-guarant__title {
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 48px;
  line-height: 122%;
  color: #fff;
  position: relative;
}
.banner-guarant__title::after {
  display: block;
  content: "";
  width: 175px;
  height: 87px;
  background-image: url(../img/risk.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  left: -70px;
}
@media (max-width: 1200px) {
  .banner-guarant__title::after {
    left: -20px;
    top: -60px;
  }
}
.banner-guarant p {
  margin-bottom: 25px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #fff;
}
.banner-guarant__chk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  width: 100%;
  max-width: 540px;
  margin-bottom: 20px;
}
.banner-guarant__chk::before {
  display: block;
  content: "";
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  background-image: url(../img/icons/mark132.svg);
  background-repeat: no-repeat;
  position: relative;
  background-size: contain;
  margin-top: 5px;
}
.banner-guarant .gur-imgsec {
  position: absolute;
  top: -90px;
  left: 640px;
}
.banner-guarant .gur-imgsec img:nth-child(1) {
  height: 530px;
}
.banner-guarant .gur-imgsec img:nth-child(2) {
  position: absolute;
  height: 533px;
  right: -90px;
  top: -3px;
}
@media (max-width: 992px) {
  .banner-guarant .gur-imgsec {
    top: -90px;
    left: 400px;
  }
  .banner-guarant .gur-imgsec img:nth-child(1) {
    height: 530px;
  }
  .banner-guarant .gur-imgsec img:nth-child(2) {
    height: 533px;
    right: -90px;
    top: -3px;
  }
}
@media (max-width: 768px) {
  .banner-guarant {
    min-height: 545px;
  }
  .banner-guarant__wrap {
    padding-top: 70px;
    padding-bottom: 65px;
  }
  .banner-guarant .guar-ii-1 {
    top: 0px;
    right: 850px;
    height: 100%;
  }
  .banner-guarant__title {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .banner-guarant__title::after {
    width: 105px;
    height: 53px;
    top: -37px;
    left: -20px;
  }
  .banner-guarant p {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .banner-guarant__chk {
    gap: 19px;
    max-width: 540px;
    margin-bottom: 10px;
  }
  .banner-guarant__chk::before {
    min-width: 15px;
    max-width: 15px;
    height: 15px;
    margin-top: 5px;
  }
  .banner-guarant .gur-imgsec {
    top: 30px;
    left: 0px;
    position: relative;
  }
  .banner-guarant .gur-imgsec img:nth-child(1) {
    height: 310px;
  }
  .banner-guarant .gur-imgsec img:nth-child(2) {
    height: 313px;
    left: 0;
    top: -3px;
  }
}
@media (max-width: 576px) {
  .banner-guarant .btn {
    margin: 0 auto;
  }
}

.programm {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
.programm .container {
  position: relative;
}
.programm .bgimg1 {
  position: absolute;
  right: -200px;
  top: 0;
}
.programm .bgimg2 {
  position: absolute;
  left: -200px;
  top: 1300px;
}
.programm .bgimg2 img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.programm .bgimg3 {
  position: absolute;
  right: -500px;
  bottom: -300px;
}
.programm .bgimg3 img {
  width: 700px;
}
@media (max-width: 768px) {
  .programm .bgimg3 {
    display: none;
  }
}
.programm .title2 {
  text-align: center;
  margin-bottom: 70px;
}
.programm .programm-wrap {
  position: relative;
  padding-top: 30px;
}
.programm .programm-wrap::before {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: #dadada;
  content: "";
}
.programm .programm-wrap::after {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  background: linear-gradient(45deg, #2b6fd4 0%, #097ee3 100%);
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
}
.programm .programm-wrap .polz {
  height: 0;
  position: sticky;
  left: calc(50% - 2px);
  width: 5px;
  z-index: 10;
  top: 400px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.programm .programm-wrap .polz__ii {
  background: linear-gradient(45deg, #2b6fd4 0%, #097ee3 100%);
  border-radius: 1px;
  width: 5px;
  height: 100px;
}
@media (max-width: 768px) {
  .programm {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .programm .title2 {
    margin-bottom: 20px;
  }
  .programm .polz {
    display: none !important;
  }
  .programm .programm-wrap {
    padding-top: 0px;
  }
  .programm .programm-wrap::before {
    display: none !important;
  }
  .programm .programm-wrap::after {
    display: none !important;
  }
}

.modul {
  padding-top: 30px;
  padding-bottom: 30px;
}
.modul .modul-top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.modul .modul-top span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 122%;
  text-transform: uppercase;
  color: #8f8f8f;
  background-color: #fff;
  display: block;
  position: relative;
  z-index: 2;
  padding-right: 18px;
}
.modul .modul-top::before {
  display: block;
  content: "";
  height: 1px;
  background: #dadada;
  width: 100%;
  position: absolute;
}
.modul .modul-top::after {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  background: linear-gradient(45deg, #2b6fd4 0%, #097ee3 100%);
  border-radius: 50px;
  position: absolute;
  right: 0;
}
.modul .modul-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modul .modul-main {
  width: 50%;
  padding-right: 50px;
}
.modul .modul-main__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 122%;
  background: linear-gradient(45deg, #272727 0%, #525252 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 460px;
  margin-bottom: 30px;
}
.modul .modul-main ul {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.modul .modul-main ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
.modul .modul-main ul li::before {
  display: block;
  content: "";
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  background-image: url(../img/icons/mark132.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 4px;
}
.modul .modul-main ul li p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #333;
}
.modul .modul-econdary {
  width: 50%;
  padding-left: 77px;
}
.modul .modul-econdary__img {
  margin-bottom: 15px;
}
.modul .modul-econdary__ttl {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 122%;
  text-transform: uppercase;
  background: linear-gradient(45deg, #2f76b4 0%, #017ae4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.modul .modul-econdary__txt {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #333;
}
.modul:nth-child(1) .modul-econdary__img img {
  width: 360px;
  margin-left: -30px;
}
.modul:nth-child(2) .modul-econdary__img img {
  width: 278px;
}
.modul:nth-child(3) .modul-econdary__img img {
  width: 226px;
}
.modul:nth-child(4) .modul-econdary__img img {
  width: 231px;
}
.modul:nth-child(5) .modul-econdary__img img {
  width: 284px;
}
.modul:nth-child(6) .modul-econdary__img img {
  width: 334px;
  margin-left: -100px;
}
@media (max-width: 768px) {
  .modul {
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 450px;
    margin: 0 auto;
  }
  .modul .modul-top {
    margin-bottom: 20px;
  }
  .modul .modul-top span {
    font-size: 12px;
    padding-right: 18px;
  }
  .modul .modul-top::after {
    width: 5px;
    height: 5px;
    border-radius: 50px;
  }
  .modul .modul-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .modul .modul-main {
    width: 100%;
    padding-right: 0px;
  }
  .modul .modul-main__title {
    font-size: 22px;
    max-width: 460px;
    margin-bottom: 30px;
  }
  .modul .modul-main ul {
    gap: 10px;
  }
  .modul .modul-main ul li {
    gap: 13px;
  }
  .modul .modul-main ul li::before {
    margin-top: 2px;
  }
  .modul .modul-main ul li p {
    font-size: 15px;
  }
  .modul .modul-econdary {
    width: 100%;
    padding-left: 0px;
  }
  .modul .modul-econdary__img {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .modul .modul-econdary__ttl {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .modul .modul-econdary__txt {
    font-size: 15px;
    color: #333;
  }
}

.cases {
  background-color: #F6F6F6;
  padding-top: 75px;
  padding-bottom: 105px;
}
.cases .title2 {
  text-align: center;
  margin-bottom: 65px;
}
.cases__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .cases {
    padding-bottom: 60px;
    background-color: #F6F6F6;
  }
  .cases .title2 {
    margin-bottom: 30px;
  }
  .cases__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    width: 100vw;
    position: relative;
    left: -16px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
    /* хром, сафари */
    /* ie 10+ */
    /* фф (свойство больше не работает, других способов тоже нет)*/
  }
  .cases__list::-webkit-scrollbar {
    width: 0;
  }
  .cases__list {
    -ms-overflow-style: none;
  }
  .cases__list {
    overflow: -moz-scrollbars-none;
  }
}

.case-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 430px;
}
.case-item__image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.case-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.case-item__content {
  padding: 30px;
  min-height: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}
.case-item__title {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  padding-right: 30px;
}
.case-item__arr {
  position: absolute;
  right: 30px;
  top: 30px;
}
.case-item__txt {
  color: #fff;
  font-size: 20px;
  line-height: 150%;
}
.case-item:hover .case-item__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 768px) {
  .case-item {
    height: 288px;
    min-width: 83vw;
  }
  .case-item__title {
    font-size: 18px;
  }
  .case-item__txt {
    font-size: 20px;
  }
  .case-item__arr svg {
    width: 11px;
    height: 22px;
  }
}

.for-sellers {
  background: linear-gradient(45deg, #2f76b4 0%, #017ae4 100%);
  position: relative;
  overflow: hidden;
}
.for-sellers::after {
  display: block;
  position: absolute;
  content: "";
  background-image: url(../img/linesfr.svg);
  background-position: center top;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  top: 0;
}
.for-sellers__wrap {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}
.for-sellers .container {
  position: relative;
}
.for-sellers .tcbglogo {
  position: absolute;
  left: -200px;
  top: -80px;
}
.for-sellers .cheessimg {
  position: absolute;
  bottom: -150px;
  right: -350px;
}
.for-sellers__top {
  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;
  gap: 30px 84px;
  margin-bottom: 48px;
}
.for-sellers__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 48px;
  line-height: 110%;
  text-align: center;
  color: #fff;
}
@media (max-width: 1200px) {
  .for-sellers__title {
    font-size: 36px;
  }
}
.for-sellers__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: #fff;
}
@media (max-width: 1200px) {
  .for-sellers__video {
    font-size: 22px;
  }
  .for-sellers__video img {
    width: 40px;
  }
}
.for-sellers__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 850px;
  margin-bottom: 48px;
}
.for-sellers .for-sellers-v-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 133%;
  color: #fff;
  padding: 6px 12px;
  backdrop-filter: blur(112px);
  background: #1A77C9;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 1111px;
}
.for-sellers .for-sellers-v-item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.for-sellers .for-sellers-v-item p::before {
  display: block;
  content: "";
  background-image: url(../img/icons/mark-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
}
.for-sellers .fs-txt-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.for-sellers .fs-txt-block__item {
  width: 50%;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 122%;
  color: #333;
  padding: 40px;
  backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .for-sellers::after {
    display: block;
    position: absolute;
    content: "";
    background-image: url(../img/linesfr-mob.svg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 1;
    top: 0;
  }
  .for-sellers__wrap {
    padding: 40px 0;
    padding-bottom: 120px;
    z-index: 10;
  }
  .for-sellers .tcbglogo {
    display: none;
  }
  .for-sellers .cheessimg {
    bottom: -125px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    height: 190px;
    z-index: 10;
  }
  .for-sellers__top {
    gap: 24px;
    margin-bottom: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .for-sellers__title {
    font-size: 24px;
    text-align: center;
  }
  .for-sellers__video {
    gap: 8px;
    font-size: 17px;
    -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;
    text-align: center;
  }
  .for-sellers__video img {
    width: 32px;
  }
  .for-sellers__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 24px;
  }
  .for-sellers .for-sellers-v-item {
    font-size: 18px;
    padding: 3px 12px;
  }
  .for-sellers .for-sellers-v-item p {
    gap: 4px;
    font-size: 15px;
  }
  .for-sellers .for-sellers-v-item p::before {
    min-width: 8px;
    max-width: 8px;
    height: 8px;
  }
  .for-sellers .fs-txt-block {
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .for-sellers .fs-txt-block__item {
    width: 100%;
    font-size: 15px;
    padding: 16px;
    border-radius: 10px;
  }
  .for-sellers .fs-txt-block__item:nth-child(2) {
    padding-bottom: 60px;
  }
}

.about {
  padding-top: 90px;
  background-image: url(../img/aboutbg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.about .container {
  position: relative;
  background-image: url(../img/logobgmmiioo.webp);
  background-position: top left -200px;
  background-size: 135%;
}
@media (max-width: 992px) {
  .about .container {
    background-image: none;
  }
}
.about__pretitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 122%;
  color: #333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 360px;
}
.about__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 72px;
  line-height: 122%;
  color: #333;
  margin-top: 10px;
  margin-bottom: 18px;
}
.about__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 24px;
  line-height: 123%;
  color: #333;
  padding-left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 700px;
  margin-bottom: 75px;
}
.about__text::before {
  display: block;
  content: "";
  width: 3px;
  height: calc(100% - 14px);
  background: linear-gradient(45deg, #2f76b4 0%, #017ae4 100%);
  position: absolute;
  left: 0;
  top: 7px;
}
.about .about-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about .about-box__main {
  position: absolute;
  right: 500px;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.about .about-box .pp-1 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 123%;
  color: #333;
  position: relative;
  right: -60px;
  margin-bottom: 30px;
}
.about .about-box .abb-item-box {
  position: relative;
  z-index: 2;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.about .about-box .abb-item-box .abb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.about .about-box .abb-item-box .abb-item p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #333;
}
.about .about-box .abb-item-box .abb-item::after {
  position: relative;
  right: 0;
  content: "";
  display: block;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  background-image: url(../img/icons/mark132.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.about .about-box .abb-item-box .abb-item:nth-child(1) {
  margin-bottom: 35px;
  position: relative;
  right: -56px;
}
.about .about-box .abb-item-box .abb-item:nth-child(1) p {
  width: 395px;
}
.about .about-box .abb-item-box .abb-item:nth-child(2) {
  margin-bottom: 28px;
  position: relative;
  right: 30px;
}
.about .about-box .abb-item-box .abb-item:nth-child(2) p {
  width: 370px;
}
.about .about-box .abb-item-box .abb-item:nth-child(3) {
  margin-bottom: 45px;
  position: relative;
  right: 80px;
}
.about .about-box .abb-item-box .abb-item:nth-child(3) p {
  width: 392px;
}
.about .about-box .abb-item-box .abb-item:nth-child(4) {
  margin-bottom: 50px;
  position: relative;
  right: 115px;
}
.about .about-box .abb-item-box .abb-item:nth-child(4) p {
  width: 370px;
}
.about .about-box .abb-item-box .abb-item:nth-child(5) {
  margin-bottom: 50px;
  position: relative;
  right: 125px;
}
.about .about-box .abb-item-box .abb-item:nth-child(5) p {
  width: 360px;
}
.about .about-box .abb-item-box .abb-item:nth-child(6) {
  position: relative;
  right: 115px;
}
.about .about-box .abb-item-box .abb-item:nth-child(6) p {
  width: 385px;
}
.about .about-box__image {
  position: relative;
}
.about .about-box__image img:nth-child(1) {
  margin-right: -280px;
}
.about .about-box__image img:nth-child(2) {
  position: absolute;
  width: 650px;
  bottom: 0;
  right: -160px;
}
.about .about-box .ab-min-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
  position: absolute;
  z-index: 5;
  bottom: 150px;
  right: 20px;
  -webkit-box-shadow: 0 4px 30px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 30px -10px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 25px 20px 25px 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 550px;
}
.about .about-box .ab-min-txt img {
  min-width: 53px;
  max-width: 53px;
  position: relative;
}
.about .about-box .ab-min-txt p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 123%;
  color: #333;
}
@media (max-width: 1200px) {
  .about__text {
    max-width: 600px;
  }
  .about .about-box .abb-item-box .abb-item {
    gap: 20px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(1) {
    margin-bottom: 30px;
    right: -156px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(1) p {
    width: 385px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(2) {
    right: -80px;
    margin-bottom: 24px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(2) p {
    width: 350px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(3) {
    right: -18px;
    margin-bottom: 40px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(3) p {
    width: 372px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(4) {
    right: 18px;
    margin-bottom: 56px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(4) p {
    width: 350px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(5) {
    right: 25px;
    margin-bottom: 51px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(5) p {
    width: 340px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(6) {
    right: 5px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(6) p {
    width: 365px;
  }
  .about .about-box__image {
    position: relative;
  }
  .about .about-box__image img:nth-child(1) {
    margin-right: -380px;
  }
  .about .about-box__image img:nth-child(2) {
    position: absolute;
    width: 540px;
    bottom: 0;
    right: -140px;
  }
  .about .about-box .ab-min-txt {
    max-width: 440px;
    right: 20px;
  }
}
@media (max-width: 992px) {
  .about {
    padding-top: 50px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 30px;
  }
  .about__pretitle {
    font-size: 15px;
    max-width: 360px;
  }
  .about__title {
    font-size: 48px;
    margin-top: 10px;
    margin-bottom: 18px;
  }
  .about__text {
    font-size: 15px;
    padding-left: 12px;
    max-width: 700px;
    margin-bottom: 75px;
  }
  .about__text::before {
    height: calc(100% - 0px);
    top: 0px;
  }
  .about .about-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .about .about-box__main {
    position: relative;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    right: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 600px;
    margin: 0 auto;
  }
  .about .about-box .pp-1 {
    font-size: 18px;
    right: 0px;
    position: relative;
    margin-bottom: 30px;
  }
  .about .about-box .abb-item-box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about .about-box .abb-item-box .abb-item {
    gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-bottom: 20px !important;
  }
  .about .about-box .abb-item-box .abb-item::after {
    min-width: 15px;
    max-width: 15px;
    height: 15px;
    background-image: url(../img/icons/mark132.svg);
    margin-top: 3px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(1) {
    right: 0px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(1) p {
    width: 100%;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(2) {
    right: 0px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(2) p {
    width: 100%;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(3) {
    right: 0px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(3) p {
    width: 100%;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(4) {
    right: 0px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(4) p {
    width: 100%;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(5) {
    right: 0px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(5) p {
    width: 100%;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(6) {
    right: 0px;
  }
  .about .about-box .abb-item-box .abb-item:nth-child(6) p {
    width: 100%;
  }
  .about .about-box__image {
    position: relative;
  }
  .about .about-box__image img:nth-child(1) {
    margin: 0 auto;
    width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about .about-box__image img:nth-child(2) {
    position: absolute;
    width: 320px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .about .about-box .ab-min-txt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 20px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .about__title {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .about__text {
    margin-bottom: 100px;
  }
  .about .about-box__image {
    position: relative;
  }
  .about .about-box__image img:nth-child(1) {
    width: 380px;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .about .about-box__image img:nth-child(2) {
    width: 290px;
  }
  .about .about-box .ab-min-txt {
    gap: 12px;
    padding: 15px 15px;
  }
  .about .about-box .ab-min-txt img {
    min-width: 47px;
    max-width: 47px;
    width: 47px;
    height: 47px;
  }
  .about .about-box .ab-min-txt p {
    font-size: 15px;
  }
  .about .about-box .pp-1 {
    font-size: 17px;
  }
  .about .about-box .abb-item p {
    font-size: 15px !important;
  }
}
@media (max-width: 410px) {
  .about .about-box__image {
    position: relative;
  }
  .about .about-box__image img:nth-child(1) {
    width: 300px;
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
    margin-bottom: 20px;
  }
  .about .about-box__image img:nth-child(2) {
    width: 270px;
    bottom: -40px;
  }
}

.sc-withbglines {
  background-image: url(../img/bglines.svg);
  background-size: cover;
  background-position: top center;
}
@media (max-width: 768px) {
  .sc-withbglines {
    background-image: none;
  }
}

.principles {
  padding-top: 112px;
}
@media (max-width: 768px) {
  .principles {
    padding-top: 50px;
  }
}
.principles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 66px;
}
@media (max-width: 1200px) {
  .principles__list {
    gap: 30px 15px;
  }
}
@media (max-width: 992px) {
  .principles__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .principles__list {
    margin-top: 40px;
  }
}
.principles .principles-item {
  width: 260px;
  height: 362px;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 72px;
  padding-left: 26px;
  padding-right: 14px;
  position: relative;
}
.principles .principles-item::before {
  width: 25px;
  height: 25px;
  position: absolute;
  content: "";
  background-image: url(../img/icons/mark132.svg);
  background-repeat: no-repeat;
  background-position: center;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.principles .principles-item:nth-child(1) {
  background-image: url(../img/pr1.webp);
}
.principles .principles-item:nth-child(2) {
  background-image: url(../img/pr2.webp);
}
.principles .principles-item:nth-child(3) {
  background-image: url(../img/pr3.webp);
}
.principles .principles-item:nth-child(4) {
  background-image: url(../img/pr4.webp);
}
.principles .principles-item__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 123%;
  color: #333;
  margin-bottom: 12px;
}
.principles .principles-item__txt {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 123%;
  color: #333;
}

.banner-section {
  padding-top: 80px;
  padding-bottom: 120px;
}
.banner-section .banner-v1 {
  -webkit-box-shadow: 0 4px 30px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 30px -10px rgba(0, 0, 0, 0.2);
  background-image: url(../img/bannerred1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  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;
  padding: 46px 58px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.banner-section .banner-v1 p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 24px;
  line-height: 123%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 3;
}
.banner-section .banner-v1 img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 110px;
}
@media (max-width: 768px) {
  .banner-section {
    padding-top: 40px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .banner-section .banner-v1 {
    padding: 40px 30px;
  }
  .banner-section .banner-v1 p {
    font-size: 15px;
  }
  .banner-section .banner-v1 img {
    width: 100px;
  }
}

.footer {
  background: linear-gradient(45deg, #181818 0%, #303030 100%);
  padding-top: 30px;
  padding-bottom: 15px;
}
.footer__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.footer .footer-col:nth-child(1) {
  padding-top: 40px;
}
.footer .footer-col:nth-child(3) {
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer .logo img {
  width: 177px;
}
.footer .footer-contacts {
  margin-top: 22px;
  padding-left: 10px;
}
.footer .footer-contacts__tel {
  padding-left: 26px;
  display: -ms-grid;
  display: grid;
  gap: 7px;
  background-image: url(../img/icons/tel.svg);
  background-repeat: no-repeat;
  background-position: left top;
  margin-bottom: 15px;
}
.footer .footer-contacts__email {
  padding-left: 26px;
  display: -ms-grid;
  display: grid;
  gap: 7px;
  background-image: url(../img/icons/mail.svg);
  background-repeat: no-repeat;
  background-position: left top;
}
.footer .footer-contacts a {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .foo-soc-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.footer .foo-soc-nav ul a {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.footer .foo-soc-nav ul a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer .foo-gif img {
  width: 100%;
  max-width: 283px;
}
.footer .foo-quest {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 310px;
}
.footer .foo-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 123%;
  color: #fff;
  margin-bottom: 15px;
}
.footer .foo-p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 123%;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .footer {
    padding-bottom: 50px;
  }
  .footer .foo-gif img {
    max-width: 200px;
  }
  .footer .foo-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .footer .foo-p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .footer .btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer .mob-f-logo {
  display: none;
}
@media (max-width: 768px) {
  .footer .mob-f-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .mob-f-logo img {
    width: 140px;
  }
  .footer .desk-f-logo {
    display: none;
  }
  .footer__box {
    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;
  }
  .footer .footer-col {
    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;
  }
  .footer .footer-col:nth-child(1) {
    padding-top: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer .footer-col:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer .footer-col:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer .foo-title {
    text-align: center;
  }
  .footer .foo-p {
    text-align: center;
  }
  .footer .foo-quest {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.telbtnfixed {
  position: fixed;
  z-index: 30;
  bottom: 30px;
  right: 60px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.telbtnfixed img {
  width: 60px;
}
.telbtnfixed:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 768px) {
  .telbtnfixed {
    right: 20px;
  }
  .telbtnfixed img {
    width: 50px;
  }
}

.noscroll {
  overflow: hidden;
}

.modal {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  display: none;
}
.modal .modal-box {
  width: 100%;
}
.modal .modal-wrap {
  position: relative;
  padding: 20px;
  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;
  min-height: 100%;
  min-width: 100%;
  overflow: auto;
}
.modal .modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .modal .modal-close {
    top: 20px;
    right: 20px;
  }
}

.modal-download .modal-box {
  width: 100%;
  max-width: 560px;
}
.modal-download__image img {
  width: 100%;
}
.modal-download__content {
  background-color: #fff;
  padding: 40px 45px;
  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;
  gap: 24px;
}
.modal-download__title {
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  line-height: 120%;
  text-align: center;
}
.modal-download__title span {
  font-weight: 600;
  color: rgb(0, 0, 189);
}
.modal-download__txt {
  font-size: 18px;
  line-height: 130%;
  text-align: center;
}
.modal-download__txt span {
  color: rgb(189, 0, 0);
}
.modal-download__txt strong {
  font-weight: 600;
}
.modal-download .m-btn {
  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;
  background-color: #1000EB;
  font-size: 14px;
  text-align: center;
  padding: 20px;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.modal-download .m-btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 768px) {
  .modal-download__content {
    padding: 30px 15px;
    gap: 12px;
  }
  .modal-download__title {
    font-size: 26px;
  }
  .modal-download__txt {
    font-size: 16px;
  }
  .modal-download .m-btn {
    margin-top: 15px;
    font-size: 14px;
    padding: 20px 15px;
    border-radius: 50px;
  }
}

.modal-title-01 {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #141414;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .modal-title-01 {
    font-size: 22px;
  }
}

.modal-leavtel .modal-box {
  max-width: 480px;
}
.modal-leavtel__content {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 768px) {
  .modal-leavtel__content {
    padding: 30px 15px;
  }
}

.form-v01 {
  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;
  gap: 20px;
}
.form-v01 input {
  width: 100%;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(112, 112, 112);
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 400;
  height: 58px;
  padding-left: 20px;
}
.form-v01 .iti {
  width: 100%;
}
.form-v01 .iti__selected-flag {
  background-color: transparent !important;
}
.form-v01 .btn {
  width: 100%;
  font-size: 14px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .form-v01 input {
    font-size: 16px;
  }
  .form-v01 .btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.header-v2 {
  position: relative;
}

.art-hero {
  height: 630px;
  position: relative;
}
@media (min-width: 1640px) {
  .art-hero {
    height: 930px;
  }
}
.art-hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.art-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.art-hero__image::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}
.art-hero .container {
  height: 100%;
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.art-hero__logo {
  padding: 30px 0;
}
.art-hero__logo img {
  width: 100%;
  max-width: 155px;
}
.art-hero__title {
  padding: 24px 0 38px 0;
  font-weight: 600;
  font-size: 52px;
  color: #fff;
  max-width: 760px;
  line-height: 120%;
}
.art-hero__title span {
  color: rgb(113, 188, 255);
}
.art-hero__descr {
  padding-bottom: 30px;
  font-size: 24px;
  color: #fff;
  line-height: 130%;
}
.art-hero__descr strong {
  font-weight: 600;
  color: #fff;
  font-size: 24px;
}
@media (max-width: 768px) {
  .art-hero {
    height: 600px;
  }
  .art-hero__logo {
    padding: 20px 0;
  }
  .art-hero__logo img {
    max-width: 120px;
  }
  .art-hero__title {
    padding: 24px 0 38px 0;
    font-size: 38px;
  }
  .art-hero__descr {
    padding-bottom: 30px;
    font-size: 20px;
  }
  .art-hero__descr strong {
    font-size: 20px;
  }
}

.art-about {
  padding-top: 75px;
  padding-bottom: 75px;
}
.art-about__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.art-about__top span {
  display: block;
  padding: 10px 43px;
  background-color: #000;
  color: #fff;
  margin-bottom: -20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.art-about p {
  font-size: 22px;
  color: #000000;
  line-height: 130%;
}
.art-about__content {
  padding-top: 60px;
  padding-bottom: 50px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .art-about {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .art-about__top span {
    font-size: 12px;
    margin-bottom: -15px;
  }
  .art-about p {
    font-size: 20px;
  }
  .art-about__content {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

.art-rew {
  padding-top: 90px;
  padding-bottom: 90px;
}
.art-rew .art-rew-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.art-rew__image img {
  width: 100%;
}
.art-rew__div {
  height: 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;
  background-color: #eeeeee;
}
.art-rew__ttl {
  color: rgb(0, 0, 0);
  font-size: 36px;
  line-height: 1.23;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
}
@media (max-width: 768px) {
  .art-rew {
    padding: 40px 0 40px 0;
  }
  .art-rew .art-rew-box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .art-rew__div {
    min-height: 220px;
  }
  .art-rew__ttl {
    font-size: 28px;
  }
}

.art-rew-V2 {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f4f4f4;
}
.art-rew-V2 .title-mn {
  margin-bottom: 40px;
}
.art-rew-V2 .art-rew-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.art-rew-V2 .art-rew__video {
  width: 1100%;
  max-width: 460px;
}
.art-rew-V2 .art-rew__imgV2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.art-rew-V2 .art-rew__imgV2 img {
  width: 100%;
  max-width: 800px;
}
@media (max-width: 1100px) {
  .art-rew-V2 .art-rew__video {
    max-width: 360px;
  }
}
@media (max-width: 992px) {
  .art-rew-V2 .art-rew-box {
    gap: 24px;
  }
  .art-rew-V2 .art-rew__video {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .art-rew-V2 .art-rew-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .art-rew-V2 .art-rew__video {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 500px;
  }
}

.title-mn {
  font-size: 42px;
  text-align: center;
  font-weight: 600;
  color: #000000;
  line-height: 125%;
  margin-bottom: 105px;
}
@media (max-width: 768px) {
  .title-mn {
    font-size: 36px;
    margin-bottom: 50px;
  }
}

.solutions {
  padding: 60px 0 75px 0;
  background-color: #FFF8F8;
}
.solutions__list {
  display: -ms-grid;
  display: grid;
  counter-reset: sol;
  /* сбрасываем счетчик */
  gap: 100px 60px;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
.solutions .solutions-item {
  counter-increment: sol;
  /* увеличиваем на 1 у каждого item */
  position: relative;
}
.solutions .solutions-item::before {
  content: counter(sol, decimal-leading-zero);
  /* выводим с ведущим нулем */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  font-size: 32px;
  font-weight: bold;
  color: #ffd5dd;
  opacity: 0.6;
  line-height: 150px;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  font-size: 200px;
  font-family: sans-serif;
  font-weight: 700;
}
.solutions .solutions-item__title {
  padding-top: 65px;
  padding-bottom: 10px;
  margin-bottom: 4px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: #000000;
  position: relative;
  z-index: 2;
}
.solutions .solutions-item__txt {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  color: #000000;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .solutions {
    padding: 50px 0 60px 0;
  }
  .solutions__list {
    gap: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
  .solutions .solutions-item__title {
    font-size: 18px;
  }
  .solutions .solutions-item__txt {
    font-size: 14px;
  }
}

.art-results {
  padding: 60px 0 90px 0;
}
.art-results .title-mn {
  margin-bottom: 90px;
}
.art-results__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 100px;
}
.art-results .art-results-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.art-results .art-results-item::before {
  display: block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSI+CiAgICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE2IDMxQzI0LjI4NDMgMzEgMzEgMjQuMjg0MyAzMSAxNkMzMSA3LjcxNTczIDI0LjI4NDMgMSAxNiAxQzcuNzE1NzMgMSAxIDcuNzE1NzMgMSAxNkMxIDI0LjI4NDMgNy43MTU3MyAzMSAxNiAzMVpNMjQuNzE0IDExLjU1NjZMMjMuMjIzNSAxMC4xMzA5TDEzLjYzOTkgMjAuMTUwMkw5LjIyOTIgMTUuNzM5NUw3Ljc3MDggMTcuMTk4TDEzLjY3MjYgMjMuMDk5OEwyNC43MTQgMTEuNTU2NloiIGZpbGw9ImJsYWNrIiBzdHlsZT0iZmlsbDogcmdiKDMxLCA5MSwgMjU1KTsiLz4KPC9zdmc+);
  position: relative;
  content: "";
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  margin-right: 20px;
}
.art-results .art-results-item__title {
  margin-bottom: 14px;
  font-weight: 600;
  color: #000000;
  font-size: 20px;
  line-height: 1.35;
}
.art-results .art-results-item__txt {
  font-weight: 400;
  color: #000000;
  font-size: 18px;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .art-results {
    padding: 60px 0 90px 0;
  }
  .art-results .title-mn {
    margin-bottom: 50px;
  }
  .art-results__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .art-results .art-results-item::before {
    margin-right: 15px;
  }
  .art-results .art-results-item__title {
    font-size: 16px;
  }
  .art-results .art-results-item__txt {
    font-size: 14px;
  }
}

.art-gallery {
  background-color: #f4f4f4;
  padding-top: 90px;
  padding-bottom: 60px;
}
.art-gallery .title-mn {
  margin-bottom: 50px;
}
.art-gallery .art-gallery-box {
  padding-top: 35px;
}
.art-gallery .gallery {
  position: relative;
}
.art-gallery .gallery-main img {
  width: 100%;
  max-width: 800px;
  max-height: 400px;
  height: auto;
  display: block;
}
.art-gallery .gallery-main .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.art-gallery .gallery-thumbs {
  margin-top: 15px;
  position: relative;
}
.art-gallery .gallery-thumbs {
  max-width: 800px;
}
.art-gallery .gallery-thumbs .swiper-slide {
  cursor: pointer;
  aspect-ratio: 1;
}
.art-gallery .gallery-thumbs {
  padding-top: 10px;
}
.art-gallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid rgba(0, 0, 0, 0.15);
  margin-top: -7px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.art-gallery .gallery-thumbs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.art-gallery .button-prev {
  position: absolute;
  z-index: 2;
  left: -50px;
  bottom: 55px;
  cursor: pointer;
}
.art-gallery .button-prev svg {
  width: 17px;
  height: 32px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 992px) {
  .art-gallery .button-prev {
    display: none;
  }
}
.art-gallery .button-next {
  position: absolute;
  z-index: 2;
  right: -50px;
  bottom: 55px;
  cursor: pointer;
}
.art-gallery .button-next svg {
  width: 17px;
  height: 32px;
}
@media (max-width: 992px) {
  .art-gallery .button-next {
    display: none;
  }
}
@media (max-width: 992px) {
  .art-gallery .title-mn {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .art-gallery .button-prev {
    bottom: 16px;
  }
  .art-gallery .button-prev svg {
    width: 14px;
    height: 28px;
  }
  .art-gallery .button-next {
    bottom: 16px;
  }
  .art-gallery .button-next svg {
    width: 14px;
    height: 28px;
  }
}

.art-articles {
  padding: 90px 0px 120px 0;
}
.art-articles__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.art-articles .art-articl-item {
  color: #000000;
}
.art-articles .art-articl-item__image {
  aspect-ratio: 1;
  overflow: hidden;
}
.art-articles .art-articl-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s;
  transition: 1s;
}
.art-articles .art-articl-item__image:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.art-articles .art-articl-item__content {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.art-articles .art-articl-item__lbl {
  margin-top: 15px;
  color: #ff8562;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  display: inline-block;
}
.art-articles .art-articl-item__title {
  margin-top: 5px;
  font-weight: 600;
  color: #000000;
  font-size: 28px;
  line-height: 1.17;
}
.art-articles .art-articl-item__txt {
  margin-top: 20px;
  font-weight: 400;
  color: #000000;
  font-size: 18px;
  line-height: 1.55;
}
.art-articles .art-articl-item__btn {
  margin-top: 30px;
  color: #ffffff;
  background-color: #000000;
  height: 35px;
  font-size: 13px;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 700;
  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;
  border-radius: 4px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.art-articles .art-articl-item__btn:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 992px) {
  .art-articles .title-mn {
    margin-bottom: 50px;
  }
  .art-articles__list {
    max-width: 620px;
    margin: 0 auto;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .art-articles .art-articl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
  .art-articles .art-articl-item__image {
    min-width: 50%;
    max-width: 50%;
  }
  .art-articles .art-articl-item__title {
    font-size: 26px;
  }
  .art-articles .art-articl-item__txt {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .art-articles {
    padding: 60px 0px 80px 0;
  }
}
@media (max-width: 576px) {
  .art-articles .art-articl-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
  .art-articles .art-articl-item__image {
    min-width: 100%;
    max-width: 100%;
  }
  .art-articles .art-articl-item__lbl {
    font-size: 14px;
  }
  .art-articles .art-articl-item__title {
    font-size: 24px;
  }
  .art-articles .art-articl-item__txt {
    font-size: 14px;
  }
}

.lm-logo img {
  width: 195px;
}

.lm-hero {
  min-height: 680px;
  background-image: url(../img/lm-hero-bg.webp);
  background-position: bottom center;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 992px) {
  .lm-hero {
    min-height: 780px;
  }
}
@media (max-width: 768px) {
  .lm-hero {
    min-height: 680px;
  }
}
.lm-hero .container {
  position: relative;
}
.lm-hero .lm-h-blur {
  position: absolute;
  left: -700px;
  top: -500px;
}
.lm-hero__top {
  padding-top: 40px;
}
.lm-hero__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lm-hero__main {
  width: 50%;
  padding-top: 80px;
}
.lm-hero__content {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.lm-hero__image {
  width: 50%;
  position: relative;
}
@-webkit-keyframes sbs-572800291-1680556986496 {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  25% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  75% {
    -webkit-transform: translateY(-14px);
            transform: translateY(-14px);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes sbs-572800291-1680556986496 {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  25% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  75% {
    -webkit-transform: translateY(-14px);
            transform: translateY(-14px);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.lm-hero__image div {
  -webkit-animation: sbs-572800291-1680556986496 4s infinite linear;
          animation: sbs-572800291-1680556986496 4s infinite linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.lm-hero__image div::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  border-radius: 3000px;
  opacity: 0.4;
  background-color: #021627;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  width: 216px;
  right: 50px;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  border-radius: 3000px;
  top: 106px;
  height: 391px;
}
@media (max-width: 1200px) {
  .lm-hero__image div {
    margin-right: -120px;
  }
}
.lm-hero__image img:nth-child(1) {
  width: 1000px;
  position: absolute;
  right: -200px;
  top: -100px;
  z-index: 2;
}
.lm-hero__image img:nth-child(2) {
  position: absolute;
  top: -200px;
  right: -230px;
}
.lm-hero__title {
  color: #333333;
  font-size: 30px;
  font-weight: 400;
  line-height: 130%;
  position: relative;
  padding-left: 10px;
}
.lm-hero__title strong {
  font-weight: 700;
}
.lm-hero__title span {
  position: relative;
  z-index: 2;
}
.lm-hero__title::before {
  position: absolute;
  z-index: 0;
  display: inline-block;
  content: "";
  width: 100%;
  height: 40px;
  border-radius: 12px;
  background-image: linear-gradient(96deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 63%);
  border-color: transparent;
  border-style: solid;
  left: 0px;
}
.lm-hero__txt {
  color: #333333;
  font-size: 22px;
  line-height: 130%;
  font-weight: 400;
  letter-spacing: 0.2px;
  border-color: transparent;
  border-style: solid;
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
}
.lm-hero__txt::before {
  position: absolute;
  display: block;
  content: "";
  height: 17px;
  width: 37px;
  background-image: url(../img/ickl.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -45px;
  top: 7px;
}
.lm-hero .btn {
  height: 80px;
  width: 100%;
  max-width: 460px;
  font-size: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 992px) {
  .lm-hero__top {
    max-width: 459px;
    margin: 0 auto;
    padding-top: 15px;
  }
  .lm-hero .lm-logo img {
    width: 150px;
  }
  .lm-hero__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lm-hero__main {
    width: 100%;
    max-width: 459px;
    margin: 0 auto;
    padding-top: 30px;
  }
  .lm-hero__image {
    width: 100%;
  }
  .lm-hero__image div {
    margin: 0 auto;
  }
  .lm-hero__image div::before {
    left: 0px;
    right: 0px;
    margin: 0 auto;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    height: 200px;
    width: 100px;
  }
  .lm-hero__image img:nth-child(1) {
    width: 500px;
    left: 0px;
    margin: 0 auto;
    right: 0px;
    top: auto;
    bottom: -280px;
  }
  .lm-hero__image img:nth-child(2) {
    top: -50px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    width: 450px;
  }
}
@media (max-width: 768px) {
  .lm-hero .container {
    max-width: 360px;
  }
  .lm-hero__title {
    font-size: 24px;
    margin-left: -10px;
  }
  .lm-hero__title br {
    display: none;
  }
  .lm-hero__title::before {
    height: 100%;
  }
  .lm-hero__txt {
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .lm-hero__txt br {
    display: none;
  }
  .lm-hero__txt::before {
    display: none;
  }
  .lm-hero .btn {
    height: 67px;
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 400;
  }
}
@media (max-width: 500px) {
  .lm-hero .lm-hero__image div {
    left: -90px;
    position: relative;
  }
}
@media (max-width: 430px) {
  .lm-hero .lm-hero__image div {
    left: -100px;
  }
}

.btn-anim {
  position: relative;
  z-index: 20;
  overflow: hidden;
}
.btn-anim span {
  position: relative;
  z-index: 2;
}
@-webkit-keyframes moving {
  30% {
    -webkit-transform: skewX(-45deg) translateX(33.5em);
    transform: skewX(-45deg) translateX(33.5em);
  }
  100% {
    -webkit-transform: skewX(-45deg) translateX(33.5em);
    transform: skewX(-45deg) translateX(33.5em);
  }
}
@keyframes moving {
  30% {
    -webkit-transform: skewX(-45deg) translateX(33.5em);
    transform: skewX(-45deg) translateX(33.5em);
  }
  100% {
    -webkit-transform: skewX(-45deg) translateX(33.5em);
    transform: skewX(-45deg) translateX(33.5em);
  }
}
.btn-anim::before {
  display: block;
  content: "";
  height: 93px;
  width: 50px;
  top: 0px;
  left: 0px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  -webkit-transform: skewX(-45deg) translateX(0);
  transform: skewX(-45deg) translateX(0);
  -webkit-transition: none;
  transition: none;
  filter: blur(45px);
  -webkit-filter: blur(15px);
  -webkit-animation: moving 4s ease-in-out infinite;
          animation: moving 4s ease-in-out infinite;
}

.lm-includ {
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url(../img/grig-lm.svg);
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lm-includ {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .lm-includ .lm-bbt {
    margin-top: 40px;
  }
  .lm-includ .lm-bbt .btn {
    font-size: 12px;
  }
}
.lm-includ .container {
  position: relative;
}
.lm-includ .logobg01 {
  position: absolute;
  left: -240px;
  top: 50px;
}
.lm-includ .lmblurebgi01 {
  position: absolute;
  left: -800px;
  top: 700px;
}
.lm-includ .logobg02 {
  position: absolute;
  right: -600px;
  top: 200px;
}
.lm-includ__title {
  text-align: center;
  font-weight: 400;
  line-height: 130%;
  color: #333333;
  font-size: 30px;
  letter-spacing: 0.2px;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
}
.lm-includ__title::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 44px;
  background-image: linear-gradient(96deg, rgb(247, 246, 246) 0%, rgba(255, 255, 255, 0) 63%);
  z-index: -1;
  border-radius: 10px;
  top: -2px;
  left: -5px;
}
.lm-includ__title strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .lm-includ__title {
    text-align: left;
    font-size: 24px;
  }
  .lm-includ__title::before {
    height: 34px;
  }
}
.lm-includ .lm-includ-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  counter-reset: lm-counter;
  /* сброс счётчика */
}
@media (max-width: 768px) {
  .lm-includ .lm-includ-box {
    gap: 15px;
  }
}
.lm-includ .lm-itm {
  width: calc(25% - 23px);
  border-radius: 15px;
  background-color: #f5f5f5;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
@media (max-width: 1200px) {
  .lm-includ .lm-itm {
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 992px) {
  .lm-includ .lm-itm {
    width: calc(50% - 15px);
  }
}
.lm-includ .lm-itm__image img {
  width: 100%;
}
.lm-includ .lm-itm__content {
  padding: 25px 20px;
}
.lm-includ .lm-itm .lm-itm-bx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.lm-includ .lm-itm span {
  display: inline-block;
  min-width: 56px;
}
.lm-includ .lm-itm span::before {
  counter-increment: lm-counter;
  content: counter(lm-counter, decimal-leading-zero);
  color: #2373d7;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}
.lm-includ .lm-itm p {
  color: #000000;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
@media (min-width: 1200px) {
  .lm-includ .lm-itm:nth-child(9) {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lm-includ .lm-itm:nth-child(10) {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lm-includ .lm-itm:last-child {
    width: calc(33.33% - 20px);
  }
  .lm-includ .lm-itm:nth-last-child(-n+2) {
    width: calc(33.33% - 20px);
  }
  .lm-includ .lm-itm:nth-last-child(-n+3) {
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 768px) {
  .lm-includ .lm-itm {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lm-includ .lm-itm .lm-itm__image {
    min-width: 50%;
    max-width: 50%;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .lm-includ .lm-itm .lm-itm__content {
    padding: 20px 10px;
  }
  .lm-includ .lm-itm span::before {
    font-size: 30px;
  }
  .lm-includ .lm-itm p {
    font-size: 16px;
  }
  .lm-includ .lm-itm .lm-itm-bx {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.lm-bbt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
.lm-bbt .btn {
  height: 80px;
  width: 100%;
  max-width: 460px;
  font-size: 15px;
  padding-left: 10px;
  padding-right: 10px;
}

.modal-quez {
  overflow: auto;
}
@media (max-width: 768px) {
  .modal-quez .modal-close {
    top: 20px;
    right: 20px;
  }
  .modal-quez .modal-close svg {
    width: 16px;
    height: 16px;
  }
}
.modal-quez .modal-wrap {
  position: relative;
  padding: 60px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100%;
  min-width: 100%;
  overflow: auto;
}
@media (max-width: 768px) {
  .modal-quez .modal-close-dark-mob g {
    fill: #000;
  }
  .modal-quez .modal-wrap {
    padding: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .modal-quez .modal-box {
    min-height: 100vh;
    background-color: #fff;
  }
  .modal-quez .mq-content {
    height: calc(100% - 250px);
  }
}
.modal-quez .modal-box {
  max-width: 960px;
}
.modal-quez .mq-top {
  padding-top: 35px;
  padding-bottom: 40px;
  padding-left: 45px;
  padding-right: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  background-color: #19181D;
}
.modal-quez .mq-top__title {
  max-width: 700px;
  font-size: 28px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 300;
}
.modal-quez .mq-top .mq-count {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  color: #ffffff;
}
@media (max-width: 768px) {
  .modal-quez .mq-top {
    padding: 20px 25px;
    padding-top: 60px;
  }
  .modal-quez .mq-top__title {
    font-size: 12px;
  }
  .modal-quez .mq-top .mq-count {
    font-size: 12px;
  }
}
.modal-quez .mq-top-ex-2 {
  display: none;
}
.modal-quez .mq-top-ex-2__title {
  font-size: 24px;
  line-height: 120%;
}
@media (max-width: 768px) {
  .modal-quez .mq-top-ex-2__title {
    font-size: 20px;
  }
}
.modal-quez .progress-line {
  width: 100%;
  height: 5px;
  background-color: #cbcbcb;
  position: relative;
}
.modal-quez .progress-line .progress-line-indicator {
  background-color: rgb(35, 115, 215);
  width: 20%;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}
.modal-quez .mq-content {
  background-color: #fff;
  padding: 35px 45px 50px 45px;
  min-height: 240px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .modal-quez .mq-content {
    padding: 25px 20px 50px 20px;
  }
}
.modal-quez .mq-qust-title {
  color: #333333;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .modal-quez .mq-qust-title {
    font-size: 22px;
  }
}
.modal-quez .mq-step {
  display: none;
}
.modal-quez .mq-step.active {
  display: block;
}
.modal-quez .mq-step-final {
  display: none;
}
.modal-quez .mq-step-final.active {
  display: block;
}
.modal-quez .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 15px;
}
.modal-quez .radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.modal-quez .radio-label input[type=radio] {
  display: none;
}
.modal-quez .custom-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #4285f4;
  /* синий контур */
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal-quez .radio-label input[type=radio]:checked + .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4285f4;
  /* синяя точка */
}
.modal-quez .polzui {
  /* стили слайдера */
}
.modal-quez .polzui .slider-wrapper {
  margin: 0 auto;
  position: relative;
}
.modal-quez .polzui #slider {
  margin: 40px 0 20px;
}
.modal-quez .polzui .ui-slider-horizontal {
  height: 2px;
  background: #F4F4F4;
  border: none;
  border-radius: 2px;
}
.modal-quez .polzui .ui-slider-range {
  background: #4285f4;
  border-radius: 2px;
}
.modal-quez .polzui .ui-slider-handle {
  width: 20px;
  height: 20px;
  top: -12px;
  border-radius: 50%;
  background: #4285f4;
  border: none;
  cursor: pointer;
}
.modal-quez .polzui .value-tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  /* центр относительно handle */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  border-radius: 4px;
  padding: 7px 12px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  font-size: 14px;
}
.modal-quez .polzui .slider-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  font-size: 16px;
}
.modal-quez .polzui .ui-state-active {
  color: #000 !important;
}
.modal-quez .chkbx-box {
  /* Стиль для кастомного квадратика */
  /* Показываем галочку при выборе */
  /* Наведение для интерактивности */
}
.modal-quez .chkbx-box input[type=checkbox] {
  display: none;
}
.modal-quez .chkbx-box .custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 120%;
}
.modal-quez .chkbx-box .custom-checkbox .box {
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  border: 2px solid #2373d7;
  margin-right: 10px;
  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;
  opacity: 0.6;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
  position: relative;
}
.modal-quez .chkbx-box .custom-checkbox .box::after {
  border: solid #2373d7;
  border-width: 0 2px 2px 0;
  content: "";
  display: none;
  height: 8px;
  left: 6px;
  position: absolute;
  top: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 3px;
}
.modal-quez .chkbx-box input[type=checkbox]:checked + .box {
  opacity: 1;
}
.modal-quez .chkbx-box input[type=checkbox]:checked + .box::after {
  display: block;
  opacity: 1;
}
.modal-quez .chkbx-box .custom-checkbox:hover .box {
  border-color: #2373d7;
  opacity: 1;
}
.modal-quez .forminp-group {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}
.modal-quez .forminp-group .inp-group {
  width: 100%;
}
.modal-quez .forminp-group .inp-group input {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #DFE0E0;
  height: 60px;
  width: 100%;
}
.modal-quez .forminp-group .inp-group .iti {
  width: 100%;
}
.modal-quez .forminp-group .inp-group .iti__selected-flag {
  background-color: transparent !important;
}
.modal-quez .mq-bottom-final {
  display: none;
}
.modal-quez .mq-bottom-final .mq-btn-next {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.modal-quez .mq-bottom-final .mq-btn-next span::after {
  display: none;
}
@media (max-width: 768px) {
  .modal-quez .mq-bottom-final .mq-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .modal-quez .mq-bottom-final .mq-btn-next {
    width: 100%;
  }
}
.modal-quez .valid-errro {
  position: relative;
  bottom: -30px;
  font-size: 13px;
  color: red;
  display: none;
}
.modal-quez .mq-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
.modal-quez .mq-bottom-final {
  display: none;
}
.modal-quez .mq-bottom-final .mq-btn-next {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.modal-quez .mq-bottom-final .mq-btn-next span::after {
  display: none;
}
.modal-quez .mq-btn-prev {
  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;
  background-color: #CBCBCB;
  border-radius: 10px;
  border: none;
  width: 128px;
  height: 45px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.modal-quez .mq-btn-prev:hover {
  opacity: 0.9;
}
.modal-quez .mq-btn-prev span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.modal-quez .mq-btn-prev span::before {
  content: " →";
  position: relative;
  display: block;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  font-size: 18px;
  margin-bottom: -2px;
}
.modal-quez .mq-btn-next,
.modal-quez .mq-btn-submit {
  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;
  background-color: rgb(35, 115, 215);
  border-radius: 10px;
  border: none;
  width: 128px;
  height: 45px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.modal-quez .mq-btn-next:hover,
.modal-quez .mq-btn-submit:hover {
  opacity: 0.9;
}
.modal-quez .mq-btn-next span,
.modal-quez .mq-btn-submit span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.modal-quez .mq-btn-next span::after,
.modal-quez .mq-btn-submit span::after {
  content: " →";
  position: relative;
  display: block;
  font-size: 18px;
  margin-top: -4px;
}
.modal-quez .mq-btn-submit span::after {
  display: none;
}

.ex-hero {
  background-image: url(../img/ex-hero-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 700px;
}
.ex-hero__wrap {
  background-image: url(../img/grig-lm.svg);
  min-height: 700px;
  background-position: center top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .ex-hero__wrap {
    background-image: none;
  }
}
.ex-hero .container {
  position: relative;
  width: 100%;
  min-height: 100%;
}
.ex-hero .container .scr {
  position: absolute;
  left: -320px;
  top: 0;
}
.ex-hero .container .boookk {
  position: absolute;
  width: 937px;
  left: -730px;
  top: 260px;
}
.ex-hero .container .digr {
  position: absolute;
  right: -50px;
  top: 50px;
  width: 490px;
}
.ex-hero .container .regl {
  position: absolute;
  width: 1000px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  right: -800px;
  bottom: -400px;
}
.ex-hero__top {
  padding: 20px 0;
}
.ex-hero__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.ex-hero__logo img {
  width: 190px;
}
.ex-hero__logo span {
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
  color: #444444;
  display: inline-block;
  max-width: 130px;
}
.ex-hero__main {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 3;
}
.ex-hero .ex-pretitle {
  display: inline-block;
  border-width: 1px;
  border-radius: 10px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #ddeafa;
  border-style: solid;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  color: #444444;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
  padding: 10px 15px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.ex-hero .ex-pretitle strong {
  font-weight: 600 !important;
}
@media (max-width: 1200px) {
  .ex-hero .ex-pretitle {
    font-size: 16px;
  }
}
.ex-hero .ex-title {
  color: #444444;
  font-size: 33px;
  line-height: 1.3;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  max-width: 550px;
}
.ex-hero .ex-title span {
  color: rgb(35, 115, 215);
}
@media (max-width: 1200px) {
  .ex-hero .ex-title {
    font-size: 28px;
    max-width: 450px;
  }
}
.ex-hero .ex-hr-txt {
  max-width: 640px;
  color: #444444;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  margin-top: 20px;
}
.ex-hero .ex-hr-txt strong {
  font-weight: 600;
}
.ex-hero .ex-hr-txt span {
  color: rgb(35, 115, 215);
}
@media (max-width: 1200px) {
  .ex-hero .ex-hr-txt {
    font-size: 18px;
    max-width: 540px;
  }
}
.ex-hero .btn {
  margin-top: 24px;
  font-size: 16px;
  height: 75px;
}
.ex-hero .mainman {
  position: absolute;
  bottom: 0px;
  right: 50px;
  width: 770px;
}
@media (max-width: 1200px) {
  .ex-hero .mainman {
    right: -100px;
  }
}
@media (max-width: 992px) {
  .ex-hero .mainman {
    width: 670px;
  }
}
.ex-hero .ex-lbl-block {
  position: absolute;
  bottom: 200px;
  right: 130px;
  width: 185px;
  padding: 18px;
  border-width: 1px;
  border-radius: 10px;
  opacity: 0.95;
  background-color: #ffffff;
  background-position: center center;
  border-color: #ddeafa;
  border-style: solid;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
  .ex-hero .ex-lbl-block {
    right: 60px;
  }
}
@media (max-width: 992px) {
  .ex-hero .ex-lbl-block {
    bottom: 150px;
  }
}
.ex-hero .ex-lbl-block span {
  color: #444444;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
.ex-hero .ex-lbl-block p {
  margin-top: 8px;
  color: #888888;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
@media (max-width: 768px) {
  .ex-hero__top {
    padding: 10px 0;
    max-width: 320px;
    margin: 0 auto;
  }
  .ex-hero__logo img {
    max-width: 150px;
  }
  .ex-hero__logo span {
    font-size: 12px;
    max-width: 126px;
  }
  .ex-hero__main {
    max-width: 320px;
    margin: 0 auto;
  }
  .ex-hero .ex-pretitle {
    font-size: 13px;
    max-width: 290px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .ex-hero .ex-title {
    font-size: 21px;
    margin-bottom: 280px;
  }
  .ex-hero .mainman {
    width: 314px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    bottom: 0px;
    top: 220px;
  }
  .ex-hero .container .digr {
    width: 220px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 240px;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  .ex-hero .container .regl {
    width: 450px;
    right: -200px;
    bottom: -660px;
    opacity: 0.6;
  }
  .ex-hero .ex-lbl-block {
    bottom: auto;
    top: 400px;
    right: 0px;
    left: 0px;
    margin: 0 auto;
    width: 120px;
    padding: 10px;
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  .ex-hero .ex-lbl-block span {
    font-size: 11px;
  }
  .ex-hero .ex-lbl-block p {
    margin-top: 8px;
    font-size: 11px;
  }
  .ex-hero .ex-hr-txt {
    font-size: 16px;
  }
  .ex-hero .btn {
    width: 100%;
    height: 65px;
  }
}

.exlist {
  position: relative;
  top: -70px;
}
.exlist .exlist-box {
  border-width: 1px;
  border-radius: 10px;
  opacity: 0.95;
  background-color: #ffffff;
  background-position: center center;
  border-color: #ddeafa;
  border-style: solid;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px;
  gap: 10px;
}
.exlist .exlist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.exlist .exlist-item span {
  color: #444444;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
.exlist .exlist-item p {
  color: #444444;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
@media (max-width: 1200px) {
  .exlist .exlist-box {
    gap: 5px;
    padding: 30px 20px;
  }
  .exlist .exlist-item img {
    width: 50px;
  }
  .exlist .exlist-item span {
    font-size: 16px;
  }
  .exlist .exlist-item p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .exlist .exlist-box {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .exlist {
    max-width: 460px;
    margin: 0 auto;
    top: 0;
    margin-top: 30px;
  }
  .exlist .exlist-box {
    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;
    gap: 20px;
  }
  .exlist .exlist-item {
    width: 100%;
    max-width: 250px;
  }
  .exlist .exlist-item img {
    width: 60px;
  }
}

.ex-form {
  padding-top: 100px;
  padding-bottom: 0;
}
.ex-form__title {
  color: #444444;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.3px;
  max-width: 460px;
  margin-bottom: 24px;
}
.ex-form__title strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .ex-form {
    padding-top: 50px;
  }
  .ex-form__title {
    font-size: 24px;
  }
}
.ex-form__box {
  border-width: 1px;
  border-radius: 20px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #ddeafa;
  border-style: solid;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 45px;
  background-image: url(../img/exformimg.webp);
  background-repeat: no-repeat;
  background-position: bottom -50px right 60px;
  background-size: 760px;
}
@media (max-width: 1200px) {
  .ex-form__box {
    background-position: bottom 30px right 30px;
    background-size: 560px;
  }
}
@media (max-width: 992px) {
  .ex-form__box {
    background-position: bottom 30px right 30px;
    background-size: 450px;
  }
}
@media (max-width: 768px) {
  .ex-form__box {
    background-position: left 60px bottom;
    background-size: 450px;
    padding-bottom: 350px;
    padding: 20px;
  }
}
@media (max-width: 640px) {
  .ex-form__box {
    background-position: left 0px bottom;
  }
}
@media (max-width: 540px) {
  .ex-form__box {
    background-position: left 20px bottom;
    background-size: 340px;
    padding-bottom: 300px;
  }
}
@media (max-width: 440px) {
  .ex-form__box {
    background-position: left -20px bottom;
    background-size: 340px;
    padding-bottom: 300px;
  }
}
@media (max-width: 390px) {
  .ex-form__box {
    background-position: left -20px bottom;
    background-size: 300px;
    padding-bottom: 240px;
  }
}
.ex-form__form {
  width: 100%;
  max-width: 390px;
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media (max-width: 992px) {
  .ex-form__form {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .ex-form__form {
    max-width: 100%;
  }
}
.ex-form__form .iti {
  width: 100%;
}
.ex-form__form .iti__selected-flag {
  background-color: transparent !important;
}
.ex-form__form input {
  width: 100%;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(228, 228, 228);
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 3 0;
  height: 63px;
  padding: 0 20px;
}
.ex-form__form select {
  width: 100%;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(228, 228, 228);
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 3 0;
  height: 63px;
  padding: 0 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.ex-form__form .ex-inp-group__select {
  position: relative;
}
.ex-form__form .ex-inp-group__select::after {
  border-color: #000 transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0;
  bottom: 0;
  content: " ";
  height: 0;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 0;
  width: 0;
}
.ex-form__form .btn {
  height: 75px;
  font-size: 16px;
}

.ex-includ .lm-includ__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .ex-includ .lm-includ__top {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}
.ex-includ .lm-includ__title {
  text-align: center;
  font-weight: 400;
  line-height: 130%;
  color: #333333;
  font-size: 30px;
  letter-spacing: 0.2px;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ex-includ .lm-includ__title::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 54px;
  background-image: linear-gradient(96deg, rgb(247, 246, 246) 0%, rgba(255, 255, 255, 0) 63%);
  z-index: -1;
  border-radius: 10px;
  top: -6px;
  left: -50px;
}
.ex-includ .lm-includ__title strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .ex-includ .lm-includ__title {
    text-align: left;
    font-size: 24px;
    margin-left: 20px;
  }
  .ex-includ .lm-includ__title::before {
    height: 44px;
    left: -15px;
  }
}
.ex-includ .lm-includ-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  counter-reset: lm-counter;
  /* сброс счётчика */
}
@media (max-width: 768px) {
  .ex-includ .lm-includ-box {
    gap: 15px;
  }
}
.ex-includ .lm-itm {
  width: calc(25% - 23px);
  border-radius: 15px;
  background-color: #f5f5f5;
  background-position: center center;
  border: 1px solid #DCEAFA;
}
@media (max-width: 1200px) {
  .ex-includ .lm-itm {
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 992px) {
  .ex-includ .lm-itm {
    width: calc(50% - 15px);
  }
}
.ex-includ .lm-itm__image img {
  width: 100%;
}
.ex-includ .lm-itm__content {
  padding: 25px 20px;
}
.ex-includ .lm-itm .lm-itm-bx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.ex-includ .lm-itm span {
  display: inline-block;
  min-width: 56px;
}
.ex-includ .lm-itm span::before {
  counter-increment: lm-counter;
  content: counter(lm-counter, decimal-leading-zero);
  color: #2373d7;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
}
.ex-includ .lm-itm p {
  color: #000000;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
@media (min-width: 1200px) {
  .ex-includ .lm-itm:nth-child(8) {
    width: calc(25% - 23px);
  }
  .ex-includ .lm-itm:nth-child(9) {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ex-includ .lm-itm:nth-child(10) {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .ex-includ .lm-itm {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ex-includ .lm-itm .lm-itm__image {
    min-width: 50%;
    max-width: 50%;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .ex-includ .lm-itm .lm-itm__content {
    padding: 20px 10px;
  }
  .ex-includ .lm-itm span::before {
    font-size: 30px;
  }
  .ex-includ .lm-itm p {
    font-size: 16px;
  }
  .ex-includ .lm-itm .lm-itm-bx {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.modal-quezV2 .mq-top {
  background-color: #ECECEC;
}
.modal-quezV2 .mq-top__title {
  color: #000000;
  font-size: 20px;
}
.modal-quezV2 .mq-count {
  color: #000000 !important;
  font-size: 14px !important;
  font-weight: 400;
}
.modal-quezV2 .custom-radio {
  border: 2px solid #000 !important;
}
.modal-quezV2 .radio-label input[type=radio]:checked + .custom-radio::after {
  background-color: #000;
}
.modal-quezV2 .ex-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.modal-quezV2 .ex-counter__btn {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  font-size: 26px;
  font-weight: 400;
  border: none;
  background-color: transparent;
}
.modal-quezV2 .ex-counter input {
  width: 70px;
  height: 60px;
  border: none;
  border-bottom: 1px solid rgb(179, 179, 179);
  color: rgb(0, 0, 0);
  text-align: center;
  font-weight: 300 !important;
}
.modal-quezV2 .progress-line .progress-line-indicator {
  width: 50%;
}
.modal-quezV2 .mq-btn-prev {
  border-radius: 50px;
}
.modal-quezV2 .mq-btn-prev span {
  text-transform: capitalize;
}
.modal-quezV2 .mq-btn-next {
  background-color: rgb(31, 91, 255);
  border-radius: 50px;
}
.modal-quezV2 .mq-btn-next span {
  text-transform: capitalize;
}
.modal-quezV2 .mq-btn-submit {
  background-color: rgb(31, 91, 255);
  border-radius: 50px;
}
.modal-quezV2 .mq-btn-submit span {
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .modal-quezV2 .mq-bottom-final .mq-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}