/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
}

html, body {
  height: 100%;
}

body, input, textarea {
  font-family: "Montserrat", sans-serif;
}

a:hover {
  text-decoration: none;
}

img {
  border: 0;
}

.content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 40px;
}
.content.max {
  padding: 0;
  max-width: 1920px;
}
.content.medium {
  max-width: 1440px;
}
.content.visible {
  overflow: visible;
}

.section-padding {
  padding: 40px 0;
}

.with-right-line {
  position: relative;
  padding-bottom: 10px;
}
.with-right-line:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100vw;
  bottom: 0;
  height: 2px;
  background: #D9D9D9;
}

.big_title {
  font-size: 3.5em;
}

.title {
  font-size: 2em;
  text-align: center;
  margin-bottom: 40px;
  color: #237AE2;
}

.title2 {
  font-size: 2.5em;
}

.bg-main {
  background: radial-gradient(88.97% 172% at 6.33% 11.03%, #237AE2 0%, #0052B5 100%);
  color: #fff;
}
.bg-main .title {
  color: #fff;
}

.gray-bg {
  background: #F8F8F8;
}

.c-main {
  color: #237AE2;
}

.flex {
  display: flex;
}

.jc-sb {
  justify-content: space-between;
}

.va-m {
  vertical-align: middle;
  align-items: center;
}

.va-b {
  vertical-align: bottom;
  align-items: flex-end;
}

.ta-r {
  text-align: right;
}

.ta-c {
  text-align: center;
}

.w100 {
  width: 100%;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.btn, .btn-line {
  padding: 14px 35px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.25em;
  background: radial-gradient(88.97% 172% at 6.33% 11.03%, #237AE2 0%, #0052B5 100%);
  color: white;
  border: 2px solid white;
  font-weight: 700;
  border-radius: 15px;
  line-height: 1.2;
  text-align: center;
}
.btn:hover, .btn-line:hover {
  background: #25BFFF;
}

.btn-line {
  background: none;
  color: #237AE2;
  font-weight: 600;
  border: 3px solid #237AE2;
  padding: 12px 15px;
  font-size: 1rem;
}
.btn-line:hover {
  color: white;
  border-color: #25BFFF;
}

.cross {
  position: relative;
  width: 15px;
  height: 15px;
}
.cross:before, .cross:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: white;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cross:after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.gamburger {
  display: inline-block;
  position: relative;
  height: 17px;
  width: 28px;
  border-bottom: 3px solid #237AE2;
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.gamburger:after, .gamburger:before {
  content: "";
  left: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 66%;
  background-color: #237AE2;
  transition: all 0.5s;
}
.gamburger:after {
  width: 80%;
  left: 10%;
}
.gamburger:before {
  top: 30%;
}
.gamburger.active {
  border-bottom: 3px solid transparent;
}
.gamburger.active:after {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 67%;
  left: 0;
  width: 100%;
}
.gamburger.active:before {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 63%;
}

.text-format {
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .content {
    padding: 0 60px;
  }
}
@media (max-width: 600px) {
  .content {
    padding: 0 20px;
  }
  .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.cols {
  display: flex;
  flex-wrap: wrap;
}
.cols .col {
  box-sizing: border-box;
  flex: none;
}
.cols.p7 {
  margin-left: -7px;
  width: -moz-calc(100% + 14px);
  width: -webkit-calc(100% + 14px);
  width: calc(100% + 14px);
}
.cols.p7 .col {
  padding: 7px;
}
.cols.p15 {
  margin-left: -15px;
  width: -moz-calc(100% + 30px);
  width: -webkit-calc(100% + 30px);
  width: calc(100% + 30px);
}
.cols.p15 .col {
  padding: 15px;
}
.cols.p30 {
  margin-left: -30px;
  width: -moz-calc(100% + 60px);
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
}
.cols.p30 .col {
  padding: 30px;
}
.cols .ptb0 .col {
  padding-top: 0;
  padding-bottom: 0;
}

.cols-2 .col {
  width: 50%;
}

.cols-3 .col {
  width: 33.333%;
}

.cols-4 .col {
  width: 25%;
}

.cols-5 .col {
  width: 20%;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (max-width: 1100px) {
  .col-t-1 {
    width: 8.3333333333%;
  }
  .col-t-2 {
    width: 16.6666666667%;
  }
  .col-t-3 {
    width: 25%;
  }
  .col-t-4 {
    width: 33.3333333333%;
  }
  .col-t-5 {
    width: 41.6666666667%;
  }
  .col-t-6 {
    width: 50%;
  }
  .col-t-7 {
    width: 58.3333333333%;
  }
  .col-t-8 {
    width: 66.6666666667%;
  }
  .col-t-9 {
    width: 75%;
  }
  .col-t-10 {
    width: 83.3333333333%;
  }
  .col-t-11 {
    width: 91.6666666667%;
  }
  .col-t-12 {
    width: 100%;
  }
  .cols.pt25 {
    margin-left: -25px;
    width: -moz-calc(100% + 50px);
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
  }
  .cols.pt25 .col {
    padding: 25px;
  }
  .cols-t-2 .col {
    width: 50%;
  }
  .cols-t-3 .col {
    width: 33.333%;
  }
}
@media (max-width: 600px) {
  .col-p-1 {
    width: 8.3333333333%;
  }
  .col-p-2 {
    width: 16.6666666667%;
  }
  .col-p-3 {
    width: 25%;
  }
  .col-p-4 {
    width: 33.3333333333%;
  }
  .col-p-5 {
    width: 41.6666666667%;
  }
  .col-p-6 {
    width: 50%;
  }
  .col-p-7 {
    width: 58.3333333333%;
  }
  .col-p-8 {
    width: 66.6666666667%;
  }
  .col-p-9 {
    width: 75%;
  }
  .col-p-10 {
    width: 83.3333333333%;
  }
  .col-p-11 {
    width: 91.6666666667%;
  }
  .col-p-12 {
    width: 100%;
  }
  .cols-p-1 .col {
    width: 100%;
  }
  .cols-p-2 .col {
    width: 50%;
  }
  .cols.pp0 {
    margin-left: 0px;
    width: -moz-calc(100% + 0px);
    width: -webkit-calc(100% + 0px);
    width: calc(100% + 0px);
  }
  .cols.pp0 .col {
    padding: 0px;
  }
}
body {
  display: block;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.band {
  width: 1280;
  min-height: 400px;
  margin: 0 auto;
  border: 1px solid blue;
}

.owl-stage {
  display: flex;
}

.owl-nav.disabled, .owl-dots.disabled {
  display: none;
}

.styled-table {
  border-spacing: 5px;
  width: 100%;
  border-collapse: inherit;
}
.styled-table th {
  font-weight: 600;
  color: white;
  padding: 10px;
  background: #237AE2;
  border-radius: 5px;
  text-align: left;
  align-items: center;
  vertical-align: middle;
}
.styled-table .th-big {
  text-align: center;
  font-weight: 700;
  font-size: 1.25em;
}
.styled-table td {
  border-bottom: 2px solid #237AE2;
  border-radius: 5px;
  padding: 10px;
  vertical-align: middle;
  font-size: 13px;
  font-weight: 500;
}

.characteristic-table {
  margin-bottom: 40px;
}
.characteristic-table th {
  line-height: 21px;
}
.characteristic-table tr:nth-child(2) th {
  text-align: center;
}
.characteristic-table td:last-child, .characteristic-table td:nth-last-child(2) {
  background: #F0FBFF;
  border: none;
  text-align: center;
}
.characteristic-table td:nth-last-child(3) {
  text-align: center;
}
.characteristic-table td.hover {
  background: #25BFFF;
  color: #fff;
}

.doc-itm {
  display: inline-block;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 15px;
}
.doc-itm__ico {
  vertical-align: middle;
  margin-right: 15px;
}

.modal {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  padding: 8px;
}
.modal-close .cross:before, .modal-close .cross:after {
  background-color: #237AE2;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal .fade {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #FFFFFF;
  border-radius: 25px;
  padding: 35px 55px;
  max-height: 65vh;
  overflow: auto;
  box-sizing: border-box;
}
.modal-content .title {
  font-weight: 700;
  font-size: 1.25em;
}

.nice-form input {
  height: 50px;
  line-height: 50px;
  box-sizing: border-box;
  padding: 10px 20px;
  background: #FFFFFF;
  border: 2px solid #237AE2;
  border-radius: 15px;
  margin-bottom: 15px;
  width: 100%;
  -webkit-appearance: none;
}
.nice-form textarea {
  -webkit-appearance: none;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  background: #FFFFFF;
  border: 2px solid #237AE2;
  border-radius: 15px;
  margin-bottom: 15px;
  height: 100px;
}

.form-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.form-label {
  font-size: 0.875em;
  font-weight: 600;
  color: #237AE2;
  margin-bottom: 8px;
}

.table-scroll {
  overflow: auto;
}
.table-scroll table {
  min-width: 1000px;
}

@media (max-width: 600px) {
  .styled-table .th-big {
    font-size: 0.875em;
  }
  .styled-table th {
    font-size: 12px;
  }
  .styled-table td {
    font-size: 10px;
  }
  .form-bot {
    display: block;
  }
  .form-bot .btn, .form-bot .btn-line {
    margin-top: 15px;
  }
}
/* header begin */
.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  background: #fff;
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.1);
}
.header-wrap {
  height: 80px;
}
.header > .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1380px;
}
.header__logo {
  margin-right: 26px;
}
.header-menu {
  display: flex;
  list-style: none;
  flex: 1;
}
.header-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 2px solid #25BFFF;
  min-height: 21px;
  margin-bottom: 0;
}
.header-menu li:last-child {
  border: none;
  margin-right: 0;
  padding-right: 0;
}
.header-menu li a {
  color: #237AE2;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875em;
}
.header-menu li a:hover {
  color: #25BFFF;
}
.header-menu li a.active {
  color: #25BFFF;
}
.header-right {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
}

@media (max-width: 1100px) {
  .header-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #237AE2;
    display: block;
    padding-left: 40px;
    padding-top: 20px;
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .header-menu.active {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: auto;
  }
  .header-menu li {
    position: relative;
    text-align: left;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .header-menu li:last-child:after {
    display: none;
  }
  .header-menu li:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 2px;
    background: #25BFFF;
    left: 0;
  }
  .mobile-menu-btn {
    display: block;
  }
}
footer {
  margin-top: 0;
}

.subscribe-block .container h3 {
  font-size: 1.86em;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.3px;
}
.subscribe-block input, .subscribe-block textarea {
  font-size: 1em;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 1.2;
  padding: 14px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
}

.main-slider-itm {
  padding-bottom: 37.5%;
  background-size: cover;
  background-position: center;
}

.main-slider {
  cursor: grab;
}
.main-slider.owl-grab {
  cursor: grabbing;
}

.main-top-content {
  margin: 120px 0;
}
.main-top-content__btns {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.main-top-content__btns .btn, .main-top-content__btns .btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-top-content h1 {
  max-width: 911px;
  font-weight: 600;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: 0.14px;
  margin-bottom: 20px;
}
.main-top-content_ng7 {
  margin: 45px 0 120px;
}

.advantages-itm {
  display: flex;
  align-items: flex-start;
  font-weight: 600;
}
.advantages-itm__img {
  position: relative;
  width: 100px;
  flex-shrink: 0;
  text-align: center;
}
.advantages-itm__img img, .advantages-itm__img svg {
  max-width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
  transform: translateY(-50%);
}

.characteristic-cols {
  line-height: 1.25rem;
  margin-bottom: 60px;
}
.characteristic-cols p {
  margin-bottom: 15px;
}
.characteristic-cols__img {
  text-align: center;
}
.characteristic-cols__img img {
  max-width: 100%;
}

.model-block {
  padding: 110px 0;
}

.model-iframe-block {
  position: relative;
  z-index: 1;
}
.model-iframe-block:before {
  content: "";
  position: absolute;
  top: 134px;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  height: 2px;
  background: #237AE2;
  z-index: -1;
}

.model-iframe {
  height: 600px;
  background: #F8F8F8;
  border-radius: 25px;
}

.partner-itm {
  background: radial-gradient(88.97% 172% at 6.33% 11.03%, #237AE2 0%, #0052B5 100%);
  border-radius: 25px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 188px;
  color: #fff;
  height: 100%;
}
.partner-itm__title {
  font-size: 1.25em;
  font-weight: 700;
}
.partner-itm__bot__email {
  display: inline-block;
  margin-bottom: 12px;
}
.partner-itm a {
  text-decoration: none;
  color: inherit;
}

.partner-block {
  padding: 55px 0;
}

.front-contact-block {
  padding: 88px 0 70px;
}

.contact-itm {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-itm__ava {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
}
.contact-itm__name {
  color: #237AE2;
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 15px;
}
.contact-itm__position {
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 19.5px;
  flex: 1;
}
.contact-itm__contacts {
  line-height: 19.5px;
}
.contact-itm__contacts a {
  color: inherit;
  text-decoration: none;
}
.contact-itm__contacts a:hover {
  color: #237AE2;
}

.interactive-block {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  min-width: 1100px;
  padding: 90px 0;
}
.interactive-block-wrap {
  display: flex;
  justify-content: center;
}
@media all and (max-width: 1670px) {
  .interactive-block {
    transform: scale(0.8);
    height: 760px;
  }
}
@media all and (max-width: 1350px) {
  .interactive-block {
    transform: scale(0.6);
    height: 580px;
  }
}
@media all and (max-width: 900px) {
  .interactive-block {
    transform: scale(0.4);
    height: 395px;
  }
}
@media all and (max-width: 600px) {
  .interactive-block {
    transform: scale(0.24);
    height: 260px;
  }
}
.interactive-block__mid {
  position: relative;
}
.interactive-block__mid:after {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 120%;
  padding-bottom: 120%;
  border-radius: 50%;
  background: radial-gradient(88.97% 172% at 6.33% 11.03%, #237AE2 0%, #0052B5 100%);
  z-index: -1;
}
.interactive-block-itm {
  margin-bottom: 30px;
}
.interactive-block-itm__info {
  width: 10px;
  position: relative;
}
.interactive-block-itm__info-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 330px;
}
.interactive-block-itm-content {
  position: relative;
  display: flex;
  gap: 20px;
  z-index: 3;
}
.interactive-block-itm__ico {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(88.97% 172% at 6.33% 11.03%, #237AE2 0%, #0052B5 100%);
  flex-shrink: 0;
}
.interactive-block-itm__ico img {
  max-width: 100%;
  max-height: 100%;
  transform: translateX(18px) translateY(18px);
}
.interactive-block-itm__info__name {
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 20px;
}
.interactive-block-itm__info__desc {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.3s ease 0.3s;
}
.interactive-block-itm:hover .interactive-block-itm__info__desc {
  opacity: 1;
  transition: all 0.3s ease 0.3s;
  transform: translateX(0px);
}
.interactive-block-itm:hover .interactive-dot:after {
  background: #25BFFF;
  box-shadow: 0 0 25px 0 #25BFFF;
}
.interactive-block__col-left {
  flex: 1;
  margin-top: 30px;
}
.interactive-block__col-left .interactive-block-itm:nth-child(2) .interactive-block-itm-content {
  transform: translateX(-100px);
}
.interactive-block__col-left .interactive-block-itm:nth-child(3) .interactive-block-itm-content {
  transform: translateX(-200px);
}
.interactive-block__col-left .interactive-block-itm:nth-child(4) .interactive-block-itm-content {
  transform: translateX(-200px);
}
.interactive-block__col-left .interactive-block-itm:nth-child(5) .interactive-block-itm-content {
  transform: translateX(-100px);
}
.interactive-block__col-right {
  flex: 1;
}
.interactive-block__col-right .interactive-block-itm:nth-child(2) .interactive-block-itm-content {
  transform: translateX(100px);
}
.interactive-block__col-right .interactive-block-itm:nth-child(3) .interactive-block-itm-content {
  transform: translateX(200px);
}
.interactive-block__col-right .interactive-block-itm:nth-child(4) .interactive-block-itm-content {
  transform: translateX(100px);
}
.interactive-block__col-right .interactive-dot-line-progress {
  transform-origin: left bottom;
  top: auto;
  bottom: 0;
}

.interactive-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 25px;
  margin: -12.5px 0 0 -12.5px;
  background: radial-gradient(88.97% 172% at 6.33% 11.03%, #237AE2 0%, #0052B5 100%);
  border-radius: 50%;
  z-index: 3;
}
.interactive-dot:after {
  content: "";
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  right: 5px;
  bottom: 5px;
  background: #fff;
  border-radius: 50%;
}
.interactive-dot-line {
  position: absolute;
  pointer-events: none;
}
.interactive-dot-line-progress {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #237AE2;
  z-index: 2;
  transform-origin: 100% 100%;
}

.interactive-line-block {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 1100px) {
  .main-slider-itm {
    padding-bottom: 48.83%;
  }
  .main-top-content {
    margin: 60px 0;
  }
  .main-top-content_ng7 {
    margin: 45px 0 60px;
  }
  .contact-list {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .main-top-content {
    margin: 25px 0;
  }
  .main-top-content_ng7 {
    margin: 25px 0;
  }
  .main-top-content__btns {
    display: block;
  }
  .main-top-content__btns a {
    margin-bottom: 7px;
  }
  .main-top-content__btns a:last-child {
    margin-bottom: 0;
  }
  .advantages-itm {
    gap: 20px;
  }
  .advantages-itm__text {
    font-size: 10px;
  }
  .advantages-itm__img {
    width: 60px;
  }
  .advantages-itm__img img {
    max-width: 100%;
    max-height: 50px;
  }
  .advantages-list {
    max-width: 300px;
    margin: 0 auto;
  }
  .characteristic-cols__img {
    margin-bottom: 25px;
  }
  .advantages-block .title {
    margin-bottom: 40px;
  }
  .model-block {
    padding: 40px 0;
  }
}
/*# sourceMappingURL=style.css.map */
