@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500..600&display=swap");
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: normal;
  font-style: normal;
  color: #D2D3D9;
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 16px;
}
html.menu-overlay:before,
body.menu-overlay:before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.9);
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
html::before,
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.9);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.container {
  max-width: 1440px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

section {
  padding: 140px 0;
}
@media screen and (max-width:992px) {
  section {
    padding: 100px 0;
  }
}
section:last-child {
  padding-bottom: 0;
}

.letter {
  display: inline-block;
  white-space: pre; /* зберігає пробіли */
  will-change: opacity, color;
}

header {
  position: relative;
  overflow: hidden;
  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;
  height: calc(var(--vh, 1vh) * 100);
}
@media screen and (max-width:680px) {
  header {
    /* min-height: none;
     height: 100%;*/
    min-height: auto;
  }
}
header .mobile__bg {
  display: none;
}
@media screen and (max-width:680px) {
  header .mobile__bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
  }
  header .mobile__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
header .header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@media screen and (max-width:680px) {
  header .header-video {
    display: none;
  }
}
header .primary__block {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0;
  z-index: 2;
}
header .primary__block .top__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width:992px) {
  header .primary__block .top__menu {
    gap: 6px;
  }
}
header .primary__block .logo {
  color: #FFF;
  font-family: "Inter Tight";
  font-size: clamp(20px, 1.5vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
header .primary__block .mobile__btn {
  display: none;
}
@media screen and (max-width:992px) {
  header .primary__block .mobile__btn {
    display: block;
    cursor: pointer;
  }
  header .primary__block .mobile__btn .btn__label {
    color: #C4D4E3;
    font-family: "Inter Tight";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid rgba(196, 212, 227, 0.25);
    background: rgba(196, 212, 227, 0.2);
  }
}
header .primary__block .header__contact {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width:992px) {
  header .primary__block .header__contact {
    display: none;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(196, 212, 227, 0.2);
    background: rgba(181, 194, 207, 0.15);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    padding: 32px 12px;
  }
}
header .primary__block .header__contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 120px;
  list-style: none;
}
@media screen and (max-width:992px) {
  header .primary__block .header__contact ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: right;
    margin-left: auto;
    width: 100%;
  }
}
header .primary__block .header__contact ul li a {
  text-decoration: none;
  color: #FFF;
  text-align: right;
  font-family: "Inter Tight";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
header .buttom__block {
  position: relative;
  bottom: 30px;
  z-index: 1;
  margin-bottom: 94px;
}
@media screen and (max-width:992px) {
  header .buttom__block {
    margin-bottom: 30px;
  }
}
header .buttom__block .hero-text {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .buttom__block .hero-text .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 54px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width:992px) {
  header .buttom__block .hero-text .inner {
    gap: 8px;
  }
}
header .buttom__block .hero-text .text__block {
  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;
}
@media screen and (max-width:680px) {
  header .buttom__block .hero-text .text__block {
    gap: 8px;
    -ms-flex-line-pack: end;
        align-content: flex-end;
    width: 100%;
  }
}
header .buttom__block .hero-text .text__block .top__text {
  color: #C4D4E3;
  font-family: "Inter Tight";
  font-size: clamp(40px, 5vw, 60px);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1.2px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
header .buttom__block .hero-text .text__block .text {
  color: #C4D4E3;
  font-family: "Inter Tight";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 300px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width:680px) {
  header .buttom__block .hero-text .text__block .text:nth-child(2) {
    display: none;
  }
}
header .buttom__block .hero-text .text__block .right {
  color: #FFF;
  text-align: right;
  font-family: "Inter Tight";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width:680px) {
  header .buttom__block .hero-text .text__block .right {
    margin-left: auto;
  }
}
@media screen and (max-width:680px) {
  header .buttom__block .hero-text .text__block:nth-child(2) {
    margin-left: 30px;
  }
}
header .buttom__block .hero-text .text {
  color: #C4D4E3;
  font-family: "Inter Tight";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 300px;
}

.gradient-bg {
  position: relative;
  overflow: hidden;
}
.gradient-bg .spotlight {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(140, 180, 230, 0.2), rgb(13, 15, 19) 60%);
  -webkit-filter: blur(140px);
          filter: blur(140px);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  pointer-events: none;
  z-index: 0;
}
.gradient-bg > * {
  position: relative;
  z-index: 1;
}
.gradient-bg .block__group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 140px;
}
@media screen and (max-width:992px) {
  .gradient-bg .block__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 100px;
  }
}
.gradient-bg .block__group .block__itm {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #C4D4E3;
  font-family: "Inter Tight";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (max-width:992px) {
  .gradient-bg .block__group .block__itm {
    text-align: center;
    margin-bottom: 60px;
  }
}
.gradient-bg .block__group .block__data {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  color: #FFF;
  font-family: "Inter Tight";
  font-size: clamp(32px, 2.5vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.gradient-bg .block__group .block__data ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  list-style: none;
}
.gradient-bg .block__group .block__data ul li {
  color: #FFF;
}
@media screen and (max-width:680px) {
  .gradient-bg .block__group .block__data ul li:nth-child(2) {
    margin-left: auto;
  }
}
.gradient-bg .block__group .block__data ul li span {
  color: #C4D4E3;
  display: block;
}
.gradient-bg .block__info {
  color: #FFF;
  font-family: "Inter Tight";
  font-size: clamp(16px, 1.1vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid rgba(196, 212, 227, 0.25);
  background: rgba(196, 212, 227, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 576px;
  padding: 12px;
  gap: 10px;
}
@media screen and (max-width:992px) {
  .gradient-bg .block__info {
    max-width: none;
  }
}
.gradient-bg .block__info p:not(.gradient-bg .block__info p:last-child) {
  margin-bottom: 16px;
}
.gradient-bg .block__text {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #FFF;
  font-family: "Inter Tight";
  font-size: clamp(32px, 2.5vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 130px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(32px, 2.5vw, 40px);
}
.gradient-bg .block__text p {
  font-size: clamp(32px, 2.5vw, 40px);
}
.gradient-bg .grid__cards .block__group {
  position: relative;
}
.gradient-bg .grid__cards .block__itm {
  max-width: 350px;
}
@media screen and (max-width:992px) {
  .gradient-bg .grid__cards .block__itm {
    text-align: center;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}
.gradient-bg .grid__cards .block__card {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  position: relative;
}
.gradient-bg .grid__cards .card__item {
  border-radius: 5px;
  border: 1px solid rgba(196, 212, 227, 0.25);
  background: rgba(196, 212, 227, 0.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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 12px;
  width: 100%;
  min-height: 260px;
}
@media screen and (max-width:992px) {
  .gradient-bg .grid__cards .card__item {
    min-height: 200px;
  }
}
.gradient-bg .grid__cards .card__item:nth-child(1) {
  grid-column: 5/span 4;
  grid-row: 1;
}
@media screen and (max-width:1199px) {
  .gradient-bg .grid__cards .card__item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }
}
.gradient-bg .grid__cards .card__item:nth-child(2) {
  grid-column: 9/span 4;
  grid-row: 2;
  margin-top: -200px;
}
@media screen and (max-width:1199px) {
  .gradient-bg .grid__cards .card__item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }
}
.gradient-bg .grid__cards .card__item:nth-child(3) {
  grid-column: 1/span 4;
  grid-row: 2;
}
@media screen and (max-width:1199px) {
  .gradient-bg .grid__cards .card__item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
}
.gradient-bg .grid__cards .card__item:nth-child(4) {
  grid-column: 5/span 4;
  grid-row: 3;
}
@media screen and (max-width:1199px) {
  .gradient-bg .grid__cards .card__item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}
.gradient-bg .grid__cards .card__item:nth-child(5) {
  grid-column: 9/span 4;
  grid-row: 4;
  margin-top: -200px;
}
@media screen and (max-width:1199px) {
  .gradient-bg .grid__cards .card__item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }
}
.gradient-bg .grid__cards .item__wrap {
  position: relative;
  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;
  height: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.gradient-bg .grid__cards .item__title {
  color: #FFF;
  font-family: "Inter Tight";
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: normal;
}
.gradient-bg .grid__cards .item__text {
  color: #D2D3D9;
  text-align: right;
  font-family: "Inter Tight";
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width:1199px) {
  .gradient-bg .grid__cards .block__card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-template-rows: auto;
    gap: 20px;
  }
  .gradient-bg .grid__cards .card__item {
    grid-column: span 1 !important;
    margin-top: 0 !important;
    height: auto;
  }
}
@media (max-width:992px) {
  .gradient-bg .grid__cards .block__card {
    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;
  }
  .gradient-bg .grid__cards .card__item {
    grid-column: span 1 !important;
    margin-top: 0 !important;
    height: auto;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .gradient-bg .grid__cards .item__wrap {
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    gap: 20px;
  }
  .gradient-bg .grid__cards .item__text {
    margin-top: auto;
  }
}
.gradient-bg .faq__block {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
}
.gradient-bg .faq__block .faq__item {
  position: relative;
  border-bottom: 1px solid rgba(196, 212, 227, 0.15);
  padding-bottom: 20px;
}
.gradient-bg .faq__block .faq__title {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
.gradient-bg .faq__block .title__block {
  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;
}
.gradient-bg .faq__block .title {
  color: #FFF;
  font-family: "Inter Tight";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.gradient-bg .faq__block .title__desc {
  color: #C4D4E3;
  font-family: "Inter Tight";
  font-size: clamp(18px, 1.2vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.gradient-bg .faq__block .faq__text {
  display: none;
}
.gradient-bg .faq__block .data__text {
  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;
  padding: 20px 0 0;
}
.gradient-bg .faq__block .faq__toggle {
  position: absolute;
  right: 0;
  top: 0;
}
.gradient-bg .faq__block .text__label {
  color: #7F8497;
  font-family: "Inter Tight";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.gradient-bg .faq__block .text__full {
  color: #D2D3D9;
  font-family: "Inter Tight";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.slider {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*background: linear-gradient(
    180deg,
    rgba(13, 17, 21, 0.1) 0%,
    rgba(13, 17, 21, 0.3) 10%,
    rgba(13, 16, 20, 0.7) 25%,
    #0C0F13 40%,
    #0C0F13 65%,
    #24313D 100%
  );*/
}
.slider .slider__header {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width:992px) {
  .slider .slider__header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.slider .slider__header .slider__title {
  color: #C4D4E3;
  font-family: "Inter Tight";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.slider .slider__header .slider__nav {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
@media screen and (max-width:992px) {
  .slider .slider__header .slider__nav {
    display: none;
  }
}
.slider .slider__prev {
  border-radius: 5px;
  border: 1px solid rgba(196, 212, 227, 0.25);
  background: rgba(196, 212, 227, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 50px;
  padding: 12px 6px;
  -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: 6px;
  cursor: pointer;
}
.slider .slider__prev:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 24px;
  height: 24px;
  display: block;
}
.slider .slider__next {
  border-radius: 5px;
  border: 1px solid rgba(196, 212, 227, 0.25);
  background: rgba(196, 212, 227, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 50px;
  padding: 12px 6px;
  -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: 6px;
  cursor: pointer;
}
.slider .slider__next:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 24px;
  height: 24px;
  display: block;
}
.slider .slide__init {
  width: calc(100% - 40px);
  margin: 40px auto;
}
.slider .slide__img {
  height: 560px;
  width: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.slider .slide__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5px;
}
.slider .slide__img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6) url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><polygon points="20,15 45,30 20,45"/></svg>') no-repeat center center;
  background-size: 30px 30px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.slider .slide__img:hover .play-btn {
  opacity: 1;
  pointer-events: auto;
}

.mobile__nav {
  display: none;
}
@media screen and (max-width:992px) {
  .mobile__nav {
    display: block;
  }
  .mobile__nav .slider__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    margin: 15px 0 0;
  }
}
.mobile__nav .slider__prev,
.mobile__nav .slider__next {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

footer {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: block;
  padding: 140px 0 40px;
}
@media screen and (max-width:992px) {
  footer {
    padding: 100px 0 20px;
  }
}
footer .footer__content {
  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;
}
footer .footer__top {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .footer__top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
footer .footer__top ul li a {
  color: #C4D4E3;
  text-align: right;
  font-family: "Inter Tight";
  font-size: clamp(18px, 2.5vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}
footer .footer__logo {
  text-align: center;
  color: #FFF;
  font-family: "Inter Tight";
  font-size: clamp(43.93px, 10vw, 170.2px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer .footer__copy {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer__copy .rul {
  color: #7F8497;
  text-align: right;
  font-family: "Inter Tight";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
footer .footer__copy .dev {
  color: #7F8497;
  text-align: right;
  font-family: "Inter Tight";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
footer .footer__copy .dev a {
  color: #7F8497;
  text-decoration: none;
}/*# sourceMappingURL=index.css.map */