@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-family: "proxima-nova", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "Inter", sans-serif; }
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

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

:focus, :active {
  outline: none; }

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

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

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

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

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

button {
  cursor: pointer; }

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

a, a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

ul li {
  list-style: none; }

img {
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400; }
/*--------------------*/
html {
  scroll-behavior: smooth; }

body {
  background: #fff;
  color: #151515;
  height: 100%;
  font-size: 16px;
  font-family: var(--font-family); }
  body.hidden {
    overflow: hidden; }

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.page {
  flex: 1 0 auto;
  margin-top: 100px; }
  @media (max-width: 1100px) {
  .page {
    margin-top: 76px; } }
  @media (max-width: 480px) {
  .page {
    margin-top: 56px; } }

._container {
  max-width: 1246px;
  padding: 0 15px;
  margin: 0 auto; }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 0 84px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 30px 0; }
  @media (max-width: 1100px) {
  .header {
    padding: 20px 0; } }
  @media (max-width: 480px) {
  .header {
    padding: 10px 0; } }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__image {
    flex: 0 0 121px; }
    .header__image img {
      width: 100%; }
  .header__items {
    display: flex;
    align-items: center;
    column-gap: 50px; }
  .header__item {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #292929;
    transition: 0.4s; }
    .header__item:hover {
      color: #00afef; }
  .header__right {
    display: flex;
    align-items: center;
    column-gap: 50px; }
  .header__button {
    font-weight: 700;
    font-size: 14px;
    color: #00afef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00afef;
    border-radius: 51px;
    padding: 12px 40px; }
  .header__langs-wrapper {
    display: flex;
    align-items: center;
    column-gap: 8px; }
    @media (max-width: 480px) {
  .header__langs-wrapper img {
    width: 24px;
    height: 24px; } }
  .header__langs {
    display: flex;
    align-content: inherit;
    column-gap: 15px; }
  .header__lang {
    font-weight: 600;
    font-size: 17px;
    font-weight: 400;
    color: #666;
    position: relative; }
    @media (max-width: 480px) {
  .header__lang {
    font-size: 15px; } }
    .header__lang:not(:last-child)::after {
      content: "/";
      display: block;
      position: absolute;
      right: -10px;
      top: 0;
      font-weight: 600;
      font-size: 17px;
      font-weight: 400;
      color: #bdbdbd; }
      @media (max-width: 480px) {
  .header__lang:not(:last-child)::after {
    font-size: 15px; } }
    .header__lang.active {
      text-transform: uppercase;
      text-decoration: underline;
      text-decoration-skip-ink: none;
      color: #00afef; }
  @media (max-width: 1100px) {
    .header__desc {
      display: none; } }
  .header__mobile {
    display: none; }
    @media (max-width: 1100px) {
  .header__mobile {
    display: flex;
    align-items: center;
    column-gap: 20px; } }

.menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 15px 30px 30px;
  z-index: 99;
  box-shadow: 0 0 84px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: 0.6s;
  transform: translateX(100%); }
  .menu.active {
    transform: translateX(0); }
  .menu__close {
    font-size: 40px;
    color: #bbb;
    cursor: pointer; }
  .menu__items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 40px; }

.footer {
  padding: 50px 0 80px;
  background: #f2f9fc; }
  @media (max-width: 992px) {
  .footer {
    padding: 30px 0; } }
  .footer__body {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 992px) {
  .footer__body {
    flex-direction: column;
    align-items: start;
    row-gap: 30px; } }
  .footer__logo img {
    width: 121px;
    mix-blend-mode: darken; }
  .footer__content {
    display: flex;
    align-items: center;
    column-gap: 64px; }
    @media (max-width: 850px) {
  .footer__content {
    flex-direction: column;
    align-items: start;
    row-gap: 30px; } }
  .footer__items {
    display: flex;
    align-items: center;
    column-gap: 50px; }
    @media (max-width: 550px) {
  .footer__items {
    flex-direction: column;
    align-items: start;
    row-gap: 20px; } }
  .footer__item {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #292929;
    transition: 0.4s; }
    .footer__item:hover {
      color: #00afef; }
  .footer__right {
    display: flex;
    align-items: center;
    column-gap: 25px; }
  .footer__button {
    font-weight: 700;
    font-size: 14px;
    color: #00afef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00afef;
    border-radius: 51px;
    padding: 12px 40px; }
  .footer__top {
    cursor: pointer; }
  .footer__foot {
    padding-top: 18px;
    margin-top: 30px;
    border-top: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 480px) {
  .footer__foot {
    flex-direction: column;
    row-gap: 15px;
    margin-top: 20px;
    padding-top: 10px;
    align-items: start; } }
    .footer__foot span {
      font-weight: 400;
      font-size: 11px;
      line-height: 129%;
      color: #555; }
      .footer__foot span:last-child {
        max-width: 195px; }
        @media (max-width: 480px) {
  .footer__foot span:last-child {
    max-width: 100%; } }

section {
  margin-top: 90px; }
  @media (max-width: 480px) {
  section {
    margin-top: 60px; } }

.main {
  background: #f2f9fc;
  margin-top: 0;
  position: relative;
  padding: 150px 0; }
  @media (max-width: 1150px) {
  .main {
    padding: 70px 0; } }
  @media (max-width: 480px) {
  .main {
    padding: 40px 0 70px; } }
  .main::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 599px;
    height: 78px;
    background: url("../themes/demo/assets/images/after.svg") left bottom / contain no-repeat; }
    @media (max-width: 480px) {
  .main::after {
    height: 50px; } }
  .main__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .main__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 126%;
    color: #292929;
    margin-bottom: 30px;
    max-width: 620px;
    font-family: var(--second-family); }
    @media (max-width: 480px) {
  .main__title {
    font-size: 26px;
    margin-bottom: 15px;
    max-width: 345px; } }
  .main__text {
    font-weight: 300;
    font-size: 20px;
    line-height: 124%;
    color: #535353;
    max-width: 565px;
    font-family: var(--second-family);
    margin-bottom: 25px; }
    @media (max-width: 480px) {
  .main__text {
    font-size: 16px;
    margin-bottom: 15px; } }
    .main__text strong {
      font-weight: 600; }
  .main__button {
    border-radius: 5000px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00afef;
    transition: 0.4s;
    font-weight: 600;
    font-size: 18px;
    line-height: 124%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    padding: 16px 60px; }
    @media (max-width: 480px) {
  .main__button {
    font-size: 16px;
    padding: 13px 40px; } }
    .main__button:hover {
      box-shadow: 0 0 20px #00afef; }
  .main__image {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1; }
    @media (max-width: 1150px) {
  .main__image {
    position: initial;
    margin-top: 30px; } }
    @media (max-width: 767px) {
    .main__image img {
      max-width: 100%; } }
  .main__right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0; }
    @media (max-width: 1150px) {
  .main__right {
    display: none; } }
    .main__right img {
      height: 95%; }

.advantages__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 132%;
  color: #292929;
  font-family: var(--second-family);
  margin-bottom: 35px; }
  @media (max-width: 480px) {
    .advantages__title {
      font-size: 26px; } }
  .advantages__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px; }
  @media (max-width: 900px) {
    .advantages__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 600px) {
    .advantages__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .advantage {
    padding: 30px 25px;
    border-radius: 10px;
    background: #f2f9fc; }
  @media (max-width: 480px) {
  .advantage {
    padding: 20px 15px; } }
  .advantage__image {
    height: 74px;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    .advantage__image {
      margin-bottom: 10px; } }
  .advantage__image img {
    max-height: 100%; }
  .advantage__title {
    font-weight: 700;
    font-size: 23px;
    line-height: 124%;
    color: #292929;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .advantage__title {
      font-size: 20px; } }
  .advantage__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 124%;
    color: #535353; }
  @media (max-width: 480px) {
    .advantage__text {
      font-size: 16px; } }

.pokaz {
  padding: 120px 0 100px;
  background: #f2f9fc;
  position: relative; }
  @media (max-width: 480px) {
  .pokaz {
    padding: 80px 0 60px; } }
  .pokaz::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: url("../themes/demo/assets/images/before.svg") right top / contain no-repeat;
    width: 772px;
    height: 91px; }
  @media (max-width: 480px) {
    .pokaz::before {
      height: 60px; } }
  .pokaz__body {
    display: flex;
    align-items: center;
    margin: 0 -30px; }
  @media (max-width: 970px) {
    .pokaz__body {
      flex-direction: column;
      align-items: start;
      row-gap: 30px; } }
  .pokaz__content {
    flex: 1 0 45%;
    padding: 0 30px; }
  .pokaz__title {
    font-weight: 700;
    font-size: 35px;
    line-height: 121%;
    color: #292929;
    font-family: var(--second-family);
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .pokaz__title {
      margin-bottom: 20px;
      font-size: 26px; } }
  .pokaz__items {
    display: flex;
    flex-direction: column;
    row-gap: 18px; }
  .pokaz__item {
    display: flex;
    align-items: start;
    column-gap: 20px; }
  @media (max-width: 480px) {
    .pokaz__item {
      column-gap: 12px; } }
  .pokaz__item svg {
    flex-shrink: 0;
    margin-top: 5px;
    display: block; }
    @media (max-width: 480px) {
    .pokaz__item svg {
      margin-top: 0; } }
  .pokaz__item span {
    font-weight: 500;
    font-size: 23px;
    line-height: 124%;
    color: #535353;
    display: block; }
    @media (max-width: 480px) {
    .pokaz__item span {
      font-size: 18px; } }
  .pokaz__image {
    flex: 0 0 53.5%;
    padding: 0 30px;
    cursor: pointer; }
  .pokaz__image img {
    width: 100%; }

.block__body {
  display: flex;
  align-items: center;
  margin: 0 -50px; }
  @media (max-width: 992px) {
    .block__body {
      flex-direction: column;
      align-items: start;
      row-gap: 30px; } }
  .block__content {
    flex: 1 0 45%;
    padding: 0 50px; }
  .block__title {
    font-weight: 700;
    font-size: 35px;
    line-height: 121%;
    color: #292929;
    font-family: var(--second-family);
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .block__title {
      margin-bottom: 20px;
      font-size: 26px; } }
  .block__text {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    font-weight: 300;
    font-size: 20px;
    line-height: 124%;
    color: #535353; }
  @media (max-width: 480px) {
    .block__text {
      font-size: 16px;
      row-gap: 10px; } }
  .block__text strong {
    font-weight: 600; }
  .block__text ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .block__text li {
    padding-left: 44px;
    position: relative; }
    .block__text li::before {
      content: "";
      position: absolute;
      width: 24px;
      height: 24px;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      background: url("../themes/demo/assets/images/li.svg") center / contain no-repeat; }
  .block__image {
    flex: 0 0 55%;
    padding: 0 50px; }
  .block__image img {
    width: 100%; }

.sposob__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 132%;
  text-transform: uppercase;
  color: #292929;
  margin-bottom: 40px;
  font-family: var(--second-family); }
  @media (max-width: 480px) {
    .sposob__title {
      font-size: 26px;
      margin-bottom: 25px; } }
  .sposob__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 992px) {
    .sposob__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 700px) {
    .sposob__items {
      grid-template-columns: 1fr; } }
  .item-sposob {
    display: flex;
    align-items: center;
    column-gap: 20px; }
  @media (max-width: 480px) {
  .item-sposob {
    column-gap: 10px; } }
  @media (max-width: 480px) {
      .item-sposob__image img {
        width: 80px;
        height: 80px; } }
  .item-sposob__text {
    font-weight: 300;
    font-size: 20px;
    line-height: 124%;
    color: #292929; }
  @media (max-width: 480px) {
    .item-sposob__text {
      font-size: 16px; } }
  .item-sposob__text strong {
    font-weight: 600; }

.inst__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: 15px;
  background: #f2f9fc; }
  @media (max-width: 1050px) {
    .inst__body {
      grid-template-columns: 1fr;
      row-gap: 20px; } }
  .inst__content {
    padding: 70px 0 70px 50px; }
  @media (max-width: 1050px) {
    .inst__content {
      padding: 40px 20px 0; } }
  .inst__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 124%;
    color: #292929;
    margin-bottom: 30px;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .inst__title {
      font-size: 26px;
      margin-bottom: 20px; } }
  .inst__items {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 35px; }
  @media (max-width: 480px) {
    .inst__items {
      margin-bottom: 25px; } }
  .inst__button {
    font-weight: 600;
    font-size: 20px;
    line-height: 124%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 43px;
    border-radius: 5000px;
    background: #00afef;
    transition: 0.5s;
    cursor: pointer; }
  @media (max-width: 480px) {
    .inst__button {
      font-size: 16px;
      padding: 14px 35px; } }
  .inst__button:hover {
    box-shadow: 0 0 20px #00afef; }
  .inst__image {
    align-self: flex-end;
    position: relative; }
  @media (max-width: 1050px) {
    .inst__image {
      max-width: 500px; } }
  .inst__image img {
    width: 100%; }
  .inst__otps {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #00afef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px 12px;
    border-radius: 70px;
    background: #f2f9fc;
    white-space: nowrap; }
  @media (max-width: 480px) {
    .inst__otps {
      font-size: 16px; } }

.item-faq {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 15px; }
  .item-faq.active .item-faq__arrow {
    transform: rotate(-90deg); }
  .item-faq__top {
    display: flex;
    align-items: center;
    column-gap: 20px;
    cursor: pointer; }
  @media (max-width: 480px) {
    .item-faq__top {
      column-gap: 10px; } }
  @media (max-width: 480px) {
      .item-faq__arrow svg {
        width: 28px;
        height: 28px; } }
  .item-faq__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #151515; }
  @media (max-width: 480px) {
    .item-faq__title {
      font-size: 16px; } }
  .item-faq__hidden {
    display: none; }
  .item-faq__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #555;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .item-faq__text {
      font-size: 14px; } }

.news__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 132%;
  text-transform: uppercase;
  color: #292929;
  font-family: var(--second-family);
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .news__title {
      font-size: 26px;
      margin-bottom: 25px; } }
  .news__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 992px) {
    .news__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 600px) {
    .news__items {
      grid-template-columns: 1fr; } }
  .item-news__image {
    position: relative;
    overflow: hidden;
    padding-bottom: 66%;
    display: block;
    border-radius: 10px;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .item-news__image {
      margin-bottom: 15px; } }
  .item-news__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-news__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 124%;
    text-transform: uppercase;
    color: #292929;
    margin-bottom: 6px; }
  @media (max-width: 480px) {
    .item-news__title {
      font-size: 18px; } }
  .item-news__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 138%;
    color: #535353;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .item-news__text {
      margin-bottom: 6px; } }
  .item-news__more {
    display: flex;
    align-items: center;
    column-gap: 7px; }
  .item-news__more span {
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #00afef; }

.where__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 132%;
  text-transform: uppercase;
  color: #292929;
  margin-bottom: 40px;
  font-family: var(--second-family); }
  @media (max-width: 480px) {
    .where__title {
      font-size: 26px;
      margin-bottom: 25px; } }
  .where__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 30px; }
  @media (max-width: 992px) {
    .where__items {
      gap: 10px; } }
  @media (max-width: 767px) {
    .where__items {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  @media (max-width: 480px) {
    .where__items {
      grid-template-columns: 1fr 1fr 1fr; } }
  .where__item img {
    width: 100%; }

.nimid__container {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .nimid__logo {
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .nimid__logo {
      margin-bottom: 15px; } }
  .nimid__logo img {
    width: 121px; }
  .nimid__text {
    font-weight: 700;
    font-size: 25px;
    line-height: 136%;
    text-align: center;
    color: #292929;
    max-width: 897px; }
  @media (max-width: 480px) {
    .nimid__text {
      font-size: 16px; } }

.news-page {
  margin-top: 40px; }
  @media (max-width: 480px) {
  .news-page {
    margin-top: 30px; } }
  .news-page__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 126%;
    color: #292929;
    font-family: var(--second-family);
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .news-page__title {
      font-size: 26px;
      margin-bottom: 25px; } }
  .news-page__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 992px) {
    .news-page__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 550px) {
    .news-page__items {
      grid-template-columns: 1fr;
      row-gap: 30px; } }

.post {
  margin-top: 50px;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
  .post {
    margin-top: 30px; } }
  .post__back {
    display: flex;
    align-items: center;
    column-gap: 15px; }
  .post__back span {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #444; }

.post-content__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 124%;
  text-transform: uppercase;
  color: #292929;
  margin-bottom: 16px; }
  @media (max-width: 480px) {
    .post-content__title {
      font-size: 26px;
      margin-bottom: 12px; } }
  .post-content__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 138%;
    color: #535353;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .post-content__text {
      font-size: 16px; } }
  .post-content__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px; }
  @media (max-width: 767px) {
    .post-content__images {
      grid-template-columns: 1fr;
      gap: 15px;
      margin-top: 25px; } }
  .post-content__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 55%;
    border-radius: 10px; }
  .post-content__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

@keyframes circle {
  0% {
    transform: rotate(0deg); }

  100% {
    transform: rotate(360deg); } }

.where-fixed {
  position: fixed;
  right: 13px;
  bottom: 100px;
  z-index: 99; }

@media (max-width: 992px) {
  .where-fixed {
    display: none; } }

.where-fixed img:last-child {
  animation: circle 6s linear infinite;
  position: absolute;
  left: 12px;
  top: 12px; }

.numbers__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 124%;
  color: #292929;
  margin-bottom: 30px; }
  @media (max-width: 480px) {
    .numbers__title {
      margin-bottom: 20px;
      font-size: 26px; } }
  .numbers__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px; }
  @media (max-width: 992px) {
    .numbers__items {
      grid-template-columns: 1fr 1fr;
      gap: 32px; } }
  @media (max-width: 767px) {
    .numbers__items {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .numbers__item {
    display: flex;
    column-gap: 19px;
    align-items: center; }
  @media (max-width: 480px) {
    .numbers__item {
      column-gap: 10px; } }
  .numbers__item-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 124%;
    color: #00afef;
    opacity: 0.2; }
  @media (max-width: 480px) {
    .numbers__item-title {
      font-size: 50px; } }
  .numbers__item-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 124%;
    color: #535353; }
  @media (max-width: 480px) {
    .numbers__item-text {
      font-size: 16px; } }

.list__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 124%;
  color: #292929;
  margin-bottom: 30px; }
  @media (max-width: 480px) {
    .list__title {
      margin-bottom: 20px;
      font-size: 26px; } }
  .list__items {
    display: flex;
    column-gap: 140px;
    row-gap: 15px;
    flex-wrap: wrap; }
  @media (max-width: 480px) {
    .list__items {
      flex-direction: column; } }
  .list__item {
    display: flex;
    column-gap: 19px; }
  @media (max-width: 480px) {
    .list__item {
      column-gap: 10px; } }
  .list__item span {
    font-weight: 500;
    font-size: 20px;
    line-height: 124%;
    color: #535353; }
    @media (max-width: 480px) {
    .list__item span {
      font-size: 16px; } }
  .list__item svg {
    flex-shrink: 0; }

.icons__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 124%;
  color: #292929;
  margin-bottom: 10px; }
  @media (max-width: 480px) {
    .icons__title {
      font-size: 28px; } }
  .icons__text {
    font-weight: 400;
    font-size: 23px;
    line-height: 138%;
    color: #535353;
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .icons__text {
      font-size: 18px;
      margin-bottom: 20px; } }
  .icons__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px; }
  @media (max-width: 1100px) {
    .icons__items {
      grid-template-columns: 1fr 1fr;
      gap: 32px; } }
  @media (max-width: 600px) {
    .icons__items {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .icons__item {
    display: flex;
    flex-direction: column;
    align-items: center; }
  @media (max-width: 480px) {
    .icons__item {
      align-items: start; } }
  .icons__item-image {
    margin-bottom: 12px; }
  @media (max-width: 480px) {
    .icons__item-image {
      margin-bottom: 8px; } }
  .icons__item-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 124%;
    text-align: center;
    color: #535353; }
  @media (max-width: 480px) {
    .icons__item-text {
      font-size: 16px;
      text-align: start; } }
  .icons__after {
    font-weight: 400;
    font-size: 18px;
    line-height: 138%;
    color: #535353;
    margin-top: 40px; }
  @media (max-width: 480px) {
    .icons__after {
      font-size: 16px;
      margin-top: 20px; } }

.icons__title-2 {
  margin-bottom: 50px; }
  @media (max-width: 480px) {
  .icons__title-2 {
    margin-bottom: 20px; } }
