:root {
  --red-50: #ffe5e5;
  --red-950: #1a0000;
  --red-100: #fcc;
  --red-200: #f99;
  --red-300: #f66;
  --red-400: #f33;
  --red-500: #ff3131;
  --red-600: #c00;
  --red-700: #900;
  --red-800: #600;
  --red-900: #300;
  --black-50: #f2f2f2;
  --black-100: #e6e6e6;
  --black-200: #ccc;
  --black-300: #b3b3b3;
  --black-400: #999;
  --black-600: #666;
  --black-500: #0e0e0e;
  --black-700: #4d4d4d;
  --black-800: #333;
  --black-900: #1a1a1a;
  --black-950: #0d0d0d;
  --black: #000;
  --white: #fff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-5: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--white, #fff);
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: var(--black, #000);
}
body.lock {
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.section-el {
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .section-el {
    padding: 40px 0;
  }
}

.h1-title {
  color: var(--white, #FFF);
  text-align: center;
  font-size: clamp(32px, 6vw, 64px);
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.h2-title {
  color: var(--white, #FFF);
  font-size: clamp(32px, 6vw, 64px);
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.btn-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 34px;
  background: var(--red-600, #C00);
  padding: 10px 14px 10px 10px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn-primary__text {
  color: var(--white, #FFF);
  font-size: clamp(14px, 3vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.btn-primary__icon {
  width: 26px;
  height: 26px;
  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;
}
@media (hover: hover) {
  .btn-primary:hover {
    background: var(--red-700, #900);
  }
}

.slider-nav-wrap {
  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;
  gap: 28px;
}
.slider-nav-wrap .swiper-button-prev,
.slider-nav-wrap .swiper-button-next {
  position: initial;
  width: auto;
  margin: 0;
  padding: 0;
  height: auto;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
}
.slider-nav-wrap .swiper-button-prev svg,
.slider-nav-wrap .swiper-button-next svg {
  width: 30px;
}
.slider-nav-wrap .swiper-button-next:after, .slider-nav-wrap .swiper-rtl .swiper-button-prev:after,
.slider-nav-wrap .swiper-button-prev:after, .slider-nav-wrap .swiper-rtl .swiper-button-next:after {
  display: none;
}

.header {
  z-index: 100;
  position: relative;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border-bottom: 1px solid var(--white-10, rgba(255, 255, 255, 0.1));
  background: #010101;
}
.header__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 0;
}
@media screen and (min-width: 1025px) {
  .header__cols-wrap {
    padding: 16px 0;
  }
}
.header__logo {
  display: inline-block;
  height: 58px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 1025px) {
  .header__logo {
    height: 60px;
  }
}
.header__col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
.header__col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.header__nav-wrap-top {
  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: 40px;
  z-index: 2;
}
.header__nav-wrap-bottom {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .header__nav-wrap-bottom {
    display: none;
  }
}
.header__nav-wrap {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  position: fixed;
  top: 82px;
  left: 0;
  width: 100vw;
  height: calc(100dvh - 82px);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 0;
  padding: 40px 24px;
  overflow-y: auto;
  background-image: url("../img/bg-mob-menu.jpg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto;
}
.header__nav-wrap.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 99;
  background-color: var(--black, #000);
}
@media screen and (min-width: 1025px) {
  .header__nav-wrap {
    position: inherit;
    padding: 0;
    -webkit-transform: none;
            transform: none;
    width: auto;
    height: auto;
  }
}
.header__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
}
@media screen and (min-width: 1025px) {
  .header__nav-menu {
    gap: 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header__nav-menu li a {
  color: var(--white, #FFF);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media screen and (min-width: 1025px) {
  .header__nav-menu li a {
    color: var(--opacity-70, rgba(255, 255, 255, 0.7));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media (hover: hover) {
  .header__nav-menu li a:hover {
    color: var(--white, #fff);
  }
}
.header__btn {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.header__burger {
  display: none;
  position: relative;
  z-index: 101;
  width: 38px;
  height: 14px;
}
@media screen and (max-width: 1024px) {
  .header__burger {
    display: block;
  }
}
.header__burger:before, .header__burger:after {
  content: "";
  background: var(--white, #fff);
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 1px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__burger:before {
  top: 0;
}
.header__burger:after {
  bottom: 0;
}
.header__burger.active span {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.header__burger.active:before {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 5px;
  background: var(--red-500, #FF3131);
}
.header__burger.active:after {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  bottom: 7px;
  background: var(--red-500, #FF3131);
}

.lang-wrap.desktop {
  display: none;
}
@media screen and (min-width: 1025px) {
  .lang-wrap.desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.lang-wrap.desktop .lang-wrap__list {
  list-style: none;
  margin-right: 20px;
}
.lang-wrap.desktop .lang-wrap__list .lang-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}
.lang-wrap.desktop .lang-wrap__list .lang-item a svg {
  stroke: #fff;
}
.lang-wrap.mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1025px) {
  .lang-wrap.mobile {
    display: none;
  }
}
.lang-wrap.mobile .lang-wrap__list {
  list-style: none;
}
.lang-wrap.mobile .lang-wrap__list .lang-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--white, #FFF);
  font-size: clamp(14px, 3vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
}
.lang-wrap.mobile .lang-wrap__list .lang-item a svg {
  stroke: var(--Secondary-700, #393D60);
}

.hero {
  padding: 20px 0;
  background-position: center;
  background-size: 700px;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .hero {
    background-position: bottom center;
    background-size: 1400px;
  }
}
.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 232px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .hero .container {
    gap: 370px;
  }
}
.hero__top-info {
  max-width: 566px;
  margin: 0 auto;
  text-align: center;
}
.hero__title {
  margin-bottom: 8px;
  text-wrap: balance;
}
@media screen and (min-width: 1024px) {
  .hero__title {
    margin-bottom: 16px;
  }
}
.hero__subtitle {
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  text-align: center;
  font-size: clamp(14px, 3vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 128.571%;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .hero__subtitle {
    margin-bottom: 24px;
  }
}
.hero__bottom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  position: relative;
  max-width: 910px;
  margin: 0 auto;
}
.hero__bottom-info::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 140%;
  left: 50%;
  bottom: -20px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .hero__bottom-info::before {
    height: 200%;
  }
}
.hero__services-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  position: relative;
}
.hero__services-item {
  display: inline-block;
  border-radius: 42px;
  border: 1px solid var(--black-800, #333);
  background: var(--white-5, rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(183.5px);
  padding: 8px;
  color: #FFF;
  font-size: clamp(14px, 3vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 128.571%;
}
@media screen and (min-width: 1024px) {
  .hero__services-item {
    padding: 16px;
  }
}
.hero__services-title {
  color: var(--white, #FFF);
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  max-width: 292px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.reviews__content-wrap {
  position: relative;
}
.reviews__title-wrap {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .reviews__title-wrap {
    gap: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 62px;
    max-width: 60%;
  }
}
.reviews__above-title {
  color: #FFF;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 155.556%;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .reviews .ti-widget.ti-goog .ti-header {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.contacts__cols-wrap {
  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;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .contacts__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .contacts__col-1 {
    -ms-flex-preferred-size: 33.829%;
        flex-basis: 33.829%;
  }
}
@media screen and (min-width: 1024px) {
  .contacts__col-2 {
    -ms-flex-preferred-size: 49.219%;
        flex-basis: 49.219%;
  }
}
.contacts__title {
  margin-bottom: 16px;
}
.contacts__subtitle {
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
}
.contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .contacts__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.contacts__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.contacts__info-item-title {
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 112.5%;
}
.contacts__info-item-link {
  color: var(--black-white-white, #FFF);
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.contacts__info-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.contacts__info-socials a {
  width: 28px;
}
.contacts__info-socials a svg {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  fill: var(--white, #fff);
}
@media (hover: hover) {
  .contacts__info-socials a svg:hover {
    fill: var(--white-40, rgba(255, 255, 255, 0.4));
  }
}
.contacts__map {
  margin-top: 24px;
}
.contacts__map-title {
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 112.5%;
  margin-bottom: 8px;
}
.contacts__map-item {
  width: 100%;
  height: 167px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .contacts__map-item {
    height: 307px;
    border-radius: 16px;
  }
}
.contacts__map-item p, .contacts__map-item iframe {
  width: 100%;
  height: 100%;
}

.cases {
  overflow: hidden;
}
.cases__cols-wrap {
  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;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .cases__cols-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .cases__col-1 {
    width: 28.907%;
  }
}
@media screen and (min-width: 1024px) {
  .cases__col-2 {
    width: 64.063%;
    overflow: hidden;
  }
}
.cases__above-title {
  color: #FFF;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 12px;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .cases__above-title {
    margin-bottom: 24px;
  }
}
.cases__tab-btns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: scroll;
  margin: 0 -16px;
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .cases__tab-btns-wrap {
    -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: 0;
    padding: 0;
    gap: 22px;
    overflow: initial;
  }
}
.cases__tab-btn {
  border-radius: 53px;
  border: 1px solid var(--white-10, rgba(255, 255, 255, 0.1));
  padding: 8px 14px;
  cursor: pointer;
  text-wrap: nowrap;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .cases__tab-btn {
    padding: 0;
    border: none;
    color: var(--white-50, rgba(255, 255, 255, 0.5));
    font-weight: 700;
    line-height: 125%;
  }
}
.cases__tab-btn-text {
  color: var(--white-50, rgba(255, 255, 255, 0.5));
  font-size: clamp(20px, 3vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (hover: hover) {
  .cases__tab-btn-text:hover {
    color: var(--white, #FFF);
  }
}
.cases__tab-btn-icon {
  width: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
}
.cases__tab-btn.active {
  border: 1px solid var(--white-40, rgba(255, 255, 255, 0.4));
}
.cases__tab-btn.active .cases__tab-btn-text {
  color: var(--white, #FFF);
}
@media screen and (min-width: 1024px) {
  .cases__tab-btn.active .cases__tab-btn-icon {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .cases__tab-btn.active {
    border: none;
  }
}
.cases__tab-content {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.cases__tab-content.active {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.cases__tab-info {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .cases__tab-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
.cases__tab-title-wrap {
  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;
}
@media screen and (min-width: 1024px) {
  .cases__tab-title-wrap {
    width: 55%;
  }
}
.cases__tab-num {
  color: #FFF;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.cases__tab-title {
  color: var(--white, #FFF);
  font-size: clamp(32px, 6vw, 64px);
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
@media screen and (min-width: 1024px) {
  .cases__tab-descr {
    width: 40%;
  }
}
.cases__tab-descr h3 {
  color: #FFF;
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .cases__tab-descr h3 {
    margin-bottom: 16px;
  }
}
.cases__tab-descr p {
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  font-size: clamp(14px, 3vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 128.571%;
  margin-bottom: 4px;
}
.cases__tab-descr > *:nth-last-child(1) {
  margin-bottom: 0;
}
.cases__swiper {
  margin-top: 24px;
  width: 100%;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .cases__swiper {
    margin-top: 57px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cases__swiper-slide-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .cases__swiper-slide-img {
    height: 385px;
  }
}/*# sourceMappingURL=main.css.map */