.header {
  position: sticky;
  top: 0;
  z-index: 999;
}
.header ul {
  display: flex;
  gap: 18px;
}
@media (max-width: 1024px) {
  .header ul {
    flex-direction: column;
    gap: 12px;
  }
}
.header ul a {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #767FAA;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .header ul a {
    font-size: 12px;
    line-height: 17px;
  }
}
.header ul a:hover {
  color: #04D9FF;
}
.header__wrap {
  width: 100%;
  background: #070B23;
  padding: 8px 0;
}
.header-menu {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 23px;
}
@media (max-width: 1200px) {
  .header-menu {
    gap: 18px;
  }
}
@media (max-width: 1024px) {
  .header-menu {
    display: none;
  }
}
.header-menu a {
  position: relative;
  display: flex;
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.1px;
  color: #767FAA;
  transition: all 0.3s ease;
  align-items: center;
  gap: 4px;
}
@media (max-width: 1200px) {
  .header-menu a {
    font-size: 12px;
  }
}
.header-menu a svg path {
  fill: #767FAA;
  transition: all 0.3s ease;
}
.header-menu a:hover {
  color: #fff;
}
.header-menu a:hover svg path {
  fill: #fff;
  fill-opacity: 1;
}
.header__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 1599px) {
  .header__flex {
    padding: 0 16px;
    max-width: 1406px;
  }
}
.header-button-second {
  background-color: #343C64;
  padding: 12px 40px;
  border-radius: 8px;
  font-family: "Segoe UI";
  font-weight: 600;
  margin-right: 12px;
  font-size: 13px;
  line-height: 17px;
  color: #fff;
  transition: all 0.1s ease;
}
.header-button-second:hover {
  background-color: #47507C;
}
@media (max-width: 1024px) {
  .header-button-second {
    display: none;
  }
}
.header-button {
  padding: 12px 40px;
  background-color: #4558FF;
  border-radius: 8px;
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  color: #fff;
  transition: all 0.1s ease;
}
.header-button:hover {
  background-color: #5E6EFF;
}
@media (max-width: 1024px) {
  .header-button {
    display: none;
  }
}
.header .flex {
  gap: 48px;
  display: flex;
}
.header__grid {
  display: flex;
  height: 100%;
  flex-grow: 1;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header__grid {
    align-items: center;
    padding-right: 14px;
  }
}
.header .burger {
  width: 25px;
  height: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1024px) {
  .header .burger {
    display: flex;
  }
}
.header .burger::before {
  content: "";
  position: absolute;
  top: 0;
  background: #fff;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease;
}
.header .burger::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: #fff;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease;
}
.header .burger span {
  background: #fff;
  width: 100%;
  height: 1px;
  display: block;
}
.header .burger-active::before {
  top: 50%;
  transform: rotate(-45deg);
}
.header .burger-active::after {
  top: 50%;
  transform: rotate(45deg);
}
.header .burger-active span {
  background: transparent;
}
.header__logo {
  max-width: 134px;
  transform: translateY(4px);
}
.header .mobile-menu {
  height: 100%;
  position: absolute;
  z-index: 999;
  overflow: auto;
  z-index: 22;
  width: 100%;
  background: #070B23;
  padding: 16px;
  right: 0;
  left: 0;
  height: auto;
  display: none;
  margin-top: -6px;
}
.header .mobile-menu .header-button {
  display: flex;
  margin-top: 24px;
  justify-content: center;
  text-align: center;
}
.header .mobile-menu .header-button-second {
  display: flex;
  margin-top: 12px;
  justify-content: center;
  margin-right: 0;
  text-align: center;
}
.header .mobile-menu-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header .mobile-menu-wrap a {
  display: flex;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #A4A4A4;
  gap: 8px;
  align-items: center;
}

.overflow {
  overflow: hidden;
}

.languages-selected {
  color: #fff;
  display: flex;
  gap: 4px;
  text-transform: uppercase;
  align-items: center;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem;
  cursor: pointer;
}

.lang-popup {
  position: absolute;
  display: none;
  flex-direction: column;
  gap: 6px;
  background: #0F172A;
  width: 100%;
  padding: 0.625rem;
  border: 1px solid #0C1F43;
  border-radius: 8px;
}
.lang-popup .languages-selected {
  padding: 0;
}

.popup-actove {
  display: flex;
}

.languages {
  position: relative;
}

.footer {
  padding-top: 140px;
  margin-top: 40px;
  position: relative;
  background: #0C102B;
  padding-bottom: 40px;
}
.footer::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #080A1E, rgba(15, 23, 42, 0));
  width: 100%;
  top: 0;
  height: 140px;
}
.footer-top {
  height: 260px;
  width: 100%;
  position: absolute;
  object-fit: cover;
  top: -260px;
  pointer-events: none;
}
.footer__wrap {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .footer__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer__socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__icon {
  width: 32px;
  height: 32px;
  background-color: #1F2546;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.1s ease;
  padding: 4px;
}
.footer__icon svg {
  max-width: 100%;
}
.footer__icon:hover {
  background-color: #343C64;
}
.footer__icon:hover svg path {
  fill: #fff;
}
.footer__copyright p {
  font-size: 12px;
  font-weight: 600;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu__title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.footer-menu__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(118, 127, 170);
  transition: all 0.1s ease;
}
.footer-menu__link:hover {
  color: #fff;
}
.footer-menu__link:hover svg path {
  fill: #fff;
}

.hero {
  margin-top: 32px;
}
.hero__title {
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.slide {
  padding: 0 15px;
  padding-top: 52px;
  padding-bottom: 30px;
  border-radius: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 321px;
}
.slide__wrap {
  max-width: 1278px;
  margin: 0 auto;
}
.slide__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  max-width: 600px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .slide__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 624px) {
  .slide__title {
    font-size: 26px;
    line-height: 34px;
  }
}
.slide__button {
  background: #A04DE8;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
}
.slide__button:hover {
  opacity: 0.8;
}
.slide__button-second {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0px 2px 0px rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
}
.slide__button-second:hover {
  opacity: 0.8;
}
.slide__description {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 16px;
  letter-spacing: 0.2px;
  max-width: 74%;
}
.slide__gap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
}
@media (max-width: 478px) {
  .slide__gap {
    flex-direction: column;
  }
}

.slider {
  margin-top: 32px;
}

.hero .slick-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
}
.hero .slick-dots .slick-active button {
  background: #04D9FF;
}
.hero .slick-dots button {
  background: #25222A;
  border: none;
  position: relative;
  width: 8px;
  z-index: 12;
  height: 8px;
  font-size: 0;
}
.hero .custom-arrow {
  background: none;
  border: 0;
}
.hero__arrow {
  display: flex;
  justify-content: center;
  gap: 103px;
  margin-top: -22px;
  z-index: 5;
  position: relative;
}

.skin .relative {
  z-index: 3;
  position: relative;
  background: #13101A;
  padding: 20px 13px;
  height: 100%;
  border-radius: 8px;
}
.skin__card {
  background: #13101A;
  max-width: 139px;
  border-radius: 8px;
  width: calc(11.1111111111% - 14px);
  position: relative;
}
@media (max-width: 1024px) {
  .skin__card {
    width: calc(33.333% - 10px);
    max-width: 100%;
  }
}
.skin__card:hover::before {
  opacity: 1;
}
.skin__card::before {
  content: "";
  position: absolute;
  left: -1px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 0;
  right: -1px;
  top: -1px;
  bottom: -1px;
  background: linear-gradient(360deg, #04D9FF 0%, rgba(4, 217, 255, 0) 99.27%);
  border-radius: 8px;
}
.skin__inner {
  display: flex;
  justify-content: center;
  width: 100%;
}
.skin__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  margin-top: 7px;
}
.skin__description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #75899C;
}
.skin__grid {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
@media (max-width: 1024px) {
  .skin__grid {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.skin__image {
  width: 100%;
  max-width: 100px;
}

.platform {
  padding-bottom: 30px;
  margin-top: 100px;
}
.platform__tabs {
  display: flex;
  margin-top: 11px;
  gap: 25px;
  flex-wrap: wrap;
}
@media (max-width: 624px) {
  .platform__tabs {
    flex-direction: column;
    gap: 10px;
  }
}
.platform__description {
  margin-top: 19px;
}
.platform__tab {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}
.platform__tab path {
  fill: #fff;
  transition: all 0.3s ease;
}
.platform__tab:hover {
  color: #FFC635;
}
.platform__tab:hover path {
  fill: #FFC635;
}
.platform__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 0;
  background: #0F172A;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
}
.platform__card img {
  max-width: 100%;
  position: relative;
}
.platform__card-title {
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #FFC635;
  margin-top: 16px;
}
.platform__text {
  font-family: "Segoe UI";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #8F9DAA;
  text-align: center;
}
.platform__grid {
  display: flex;
  margin-top: 34px;
  gap: 17px;
}
@media (max-width: 1024px) {
  .platform__grid {
    display: grid;
    grid-template-columns: repeat(3, calc(33.333% - 12px));
  }
}
@media (max-width: 767px) {
  .platform__grid {
    grid-template-columns: repeat(2, calc(50% - 8px));
  }
}
@media (max-width: 478px) {
  .platform__grid {
    grid-template-columns: 100%;
  }
}

.categories {
  margin-top: 70px;
  padding-bottom: 30px;
}
.categories .title {
  text-align: center;
}
.categories__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #A4A4A4;
  margin-top: 8px;
}
.categories__card {
  background: #0F172A;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}
.categories__card img {
  max-width: 60px;
}
.categories__card-wrap {
  position: relative;
}
.categories__grid {
  display: flex;
  gap: 16px;
  margin-top: 31px;
}
@media (max-width: 1200px) {
  .categories__grid {
    display: grid;
    grid-template-columns: repeat(3, calc(33.333% - 11px));
  }
}
@media (max-width: 767px) {
  .categories__grid {
    grid-template-columns: repeat(2, calc(50% - 8px));
  }
}
@media (max-width: 478px) {
  .categories__grid {
    grid-template-columns: 100%;
  }
}
.categories__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  background: #A04DE8;
  border-radius: 2px;
  width: 100%;
  margin-top: 24px;
}
.categories__link span {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.01em;
  color: #13151D;
}
.categories__title {
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 11px;
}

.overwiew {
  margin-top: 10px;
  padding-bottom: 30px;
}
.overwiew__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .overwiew__flex {
    flex-direction: column;
    gap: 20px;
  }
}
.overwiew__logos {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-top: 6px;
}
.overwiew .title {
  margin-top: 18px;
}
.overwiew__decription {
  margin-top: 20px;
}
.overwiew__grid {
  display: grid;
  margin-top: 33px;
  grid-template-columns: repeat(4, 25%);
}
@media (max-width: 478px) {
  .overwiew__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.overwiew__icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0F172A;
  border-radius: 4px;
  clip-path: polygon(100% 0, 100% 100%, 15% 100%, 0 73%, 0 0);
}
.overwiew__icon img {
  max-width: 40px;
}
.overwiew__number {
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .overwiew__number {
    font-size: 18px;
    line-height: 26px;
  }
}
.overwiew__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 478px) {
  .overwiew__card {
    padding-top: 20px;
  }
}
.overwiew__card-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #A4A4A4;
  margin-top: 4px;
}

.banner {
  padding-top: 30px;
  padding-bottom: 30px;
}
.banner .wrap {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 0;
}
.banner__top {
  padding: 73px 20px;
  border-radius: 8px;
  padding-bottom: 70px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner__title {
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .banner__title {
    font-size: 18px;
    line-height: 40px;
  }
}
@media (max-width: 624px) {
  .banner__title {
    font-size: 16px;
    line-height: 34px;
  }
}
.banner__description {
  font-family: "Segoe UI";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  color: #FFFFFF;
  margin-top: 7px;
}
@media (max-width: 478px) {
  .banner__description {
    font-size: 14px;
    line-height: 22px;
  }
}
.banner__link {
  gap: 4px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Segoe UI";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.01em;
  color: #13151D;
  background: #A04DE8;
  padding: 9px 14px;
  align-items: center;
  line-height: 24px;
  display: flex;
  border-radius: 4px;
  margin-top: 24px;
  width: fit-content;
}
@media (max-width: 767px) {
  .banner__link {
    padding: 8px 18px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .banner__text {
    width: 100%;
  }
}
.banner__bottom {
  border-color: #04D9FF;
  padding-left: 48px;
  padding-top: 0;
  position: relative;
  display: grid;
  padding-right: 0;
  padding-bottom: 0;
  padding-bottom: 25px;
  min-height: 320px;
  align-items: center;
  width: 100%;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .banner__bottom {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.banner__bottom .banner__title {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  max-width: 634px;
  padding-top: 66px;
  margin: 0;
}
@media (max-width: 768px) {
  .banner__bottom .banner__title {
    font-size: 18px;
    line-height: 40px;
  }
}
@media (max-width: 624px) {
  .banner__bottom .banner__title {
    font-size: 16px;
    line-height: 34px;
  }
}
.banner__bottom .banner__description {
  text-align: left;
  max-width: 534px;
  font-weight: 400;
  margin: 0;
  margin-top: 13px;
  padding-bottom: 20px;
}
.banner__image {
  display: flex;
}
.banner__image img {
  width: 100%;
}

.tiles {
  margin-top: 48px;
  padding-bottom: 66px;
}
.tiles .title {
  text-align: center;
}
.tiles__card {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 4px;
  align-items: flex-start;
  padding: 93px 25px;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 26px;
  background-position: center;
}
@media (max-width: 478px) {
  .tiles__card {
    padding: 40px 25px;
  }
}
.tiles__card:hover {
  background-image: linear-gradient(283.94deg, #13101A 81.85%, #04D9FF 100%);
  box-shadow: inset 0px -6px 15px rgba(4, 217, 255, 0.25), inset 0px 6px 15px rgba(4, 217, 255, 0.25);
  border-radius: 6px;
}
.tiles__grid {
  display: grid;
  grid-template-columns: calc(40% - 8px) calc(60% - 8px);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .tiles__grid {
    display: flex;
    flex-direction: column;
  }
}
.tiles__title {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #FAFAFA;
}
.tiles__description {
  font-family: "Segoe UI";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #A4A4A4;
  max-width: 400px;
  margin-top: 6px;
}
.tiles__flex {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 478px) {
  .tiles__flex {
    flex-direction: column;
  }
}
.tiles__flex .tiles__card {
  padding-top: 44px;
}
.tiles__flex .tiles__description {
  margin-top: 10px;
}
.tiles__flex .tiles__link {
  margin-top: 11px;
}
.tiles .categories__link {
  background: #FF8845;
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.01em;
  color: #13151D;
  text-transform: uppercase;
}

.first_tile {
  height: 100%;
  justify-content: flex-end;
}

.faq {
  margin-top: 70px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.faq h1 {
  text-align: center;
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
}
.faq__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  max-width: 730px;
  position: relative;
  margin-top: 46px;
}
.faq .wrap {
  position: relative;
}
.faq__title {
  font-family: "Segoe UI";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 478px) {
  .faq__title {
    font-size: 14px;
    line-height: 18px;
  }
}
.faq__description {
  font-family: "Segoe UI";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #8F9DAA;
  display: none;
  padding-left: 38px;
  padding-top: 6px;
}
.faq__item {
  transition: all 0.3s ease;
  padding: 24.5px;
  background: #0F172A;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 478px) {
  .faq__item {
    padding: 24px;
  }
}
.faq__item:first-child .faq__description {
  display: block;
}
.faq__image {
  position: absolute;
  right: -22px;
  top: 28px;
  width: 27%;
  object-fit: contain;
  z-index: 0;
}
.faq .title {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.info {
  margin-top: 70px;
}
.info__wrap {
  padding: 69px 48px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .info__wrap {
    padding: 28px 38px;
  }
}
@media (max-width: 478px) {
  .info__wrap {
    padding: 16px 24px;
  }
}
.info__title {
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-align: center;
}
.info__description {
  font-family: "Segoe UI";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #8F9DAA;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 12px;
}
@media (max-width: 1024px) {
  .info__description {
    color: #fff;
  }
}

.cards {
  margin-top: 80px;
  margin-bottom: 40px;
}
.cards__grid {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .cards__grid {
    flex-direction: column;
    align-items: center;
  }
}

.main-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 380px;
  width: 100%;
}
.main-card__title {
  font-family: "Industry-Black", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #A4A4A4;
  margin-top: 16px;
  text-align: center;
}
.main-card__image {
  max-width: 200px;
}
.main-card__description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #A4A4A4;
  text-align: center;
  margin-top: 8px;
}

.hero-second {
  margin-top: 38px;
}
.hero-second .divider {
  height: 1px;
  background: #323741;
  flex-grow: 1;
}
.hero-second__title {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-second__title h1 {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
}
.hero-second__text {
  text-align: center;
  width: fit-content;
  max-width: 85%;
}
.hero-second__date {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 4px;
}
.hero-second__button {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.01em;
  color: #13151D;
  padding: 13px 78px;
  background-color: #A04DE8;
  border-radius: 2px;
  width: fit-content;
  align-self: center;
  margin: 0 auto;
  display: block;
  transition: all 0.3s ease;
  margin-top: 12px;
}
.hero-second__button:hover {
  background-color: #822ecc;
}
.hero-second__inner {
  display: flex;
  justify-content: center;
}
.hero-second__box {
  max-width: 56px;
  width: 100%;
  height: 56px;
  border-radius: 2px;
  background: rgba(19, 21, 29, 0.84);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-second__num {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.hero-second__days {
  text-transform: uppercase;
  font-family: "Segoe UI";
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.01em;
  color: #8F9DAA;
}

.slide-second {
  position: relative;
  padding: 0 15px;
  padding-top: 17px;
  padding-bottom: 16px;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 321px;
}
.slide-second::before {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 4px;
  height: 100%;
  background: #0C102B;
  z-index: -1;
  left: 0;
  top: 0;
}
.slide-second__image {
  max-width: 420px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .slide-second__image {
    width: 100%;
  }
}
.slide-second__wrap {
  max-width: 1278px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero-second__grid {
  margin-top: 23px;
}

.hero-image {
  margin-top: 32px;
}
.hero-image__subtitle {
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.hero-image__title {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-image__title h1 {
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 50px;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #fff;
}
@media (max-width: 1024px) {
  .hero-image__title h1 {
    font-size: 42px;
    line-height: 1.3;
  }
}
.hero-image__inner {
  display: flex;
  justify-content: center;
}

.slide-image__content {
  max-width: 570px;
  width: 100%;
}
.slide-image__image {
  width: 53%;
  max-width: 744px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .slide-image__image {
    width: 100%;
  }
}
.slide-image__wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .slide-image__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.cases {
  margin-top: 48px;
}
.cases__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .cases__grid {
    gap: 32px 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 624px) {
  .cases__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.case-card {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.case-card__title {
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-align: center;
}
.case-card__logo img {
  max-width: 100%;
}
.case-card__price {
  border: 2px solid #A04DE8;
  border-radius: 2px;
  width: 100%;
  max-width: 83px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  color: #fff;
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: -0.01em;
}
.case-card__top {
  position: absolute;
  max-width: 42px;
  height: 23px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #35E4FF;
  border-radius: 2px;
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.01em;
  color: #13151D;
  top: 24px;
  right: 8px;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../../assets/fonts/SF-Pro-Display-Regular.woff") format("woff"), url("../../assets/fonts/SF-Pro-Display-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Industry-Black";
  src: url("../../assets/fonts/Industry-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Industry-Black";
  src: url("../../assets/fonts/Industry-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("../../assets/fonts/SegoeUI-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("../../assets/fonts/SegoeUI-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Segoe UI";
  src: url("../../assets/fonts/SegoeUI-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0C102B;
  color: #47507C;
  font-family: "Segoe UI";
}

.background-image {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

a {
  text-decoration: none;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 113px;
}
@media (max-width: 1599px) {
  .wrap {
    padding: 0 16px;
    max-width: 1406px;
  }
}

p {
  font-family: "Segoe UI";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #8F9DAA;
}

ul li {
  list-style: none;
}

.title {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .title {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 624px) {
  .title {
    font-size: 24px;
    line-height: 32px;
  }
}

.decription {
  font-family: "Segoe UI";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
@media (max-width: 478px) {
  .decription {
    font-size: 12px;
    line-height: 20px;
  }
}

a {
  color: #fff;
}

h1 {
  font-size: 40px;
  line-height: 48px;
  color: #fff;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 624px) {
  h1 {
    font-size: 26px;
    line-height: 34px;
  }
}

h2 {
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  h2 {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 624px) {
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
}

h3 {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  color: #FFFFFF;
}

h4 {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
  color: #FFFFFF;
}

h5 {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
}

h6 {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

p {
  margin-top: 17px;
}

.wp-block-heading {
  padding-top: 18px;
}

ul.wp-block-list {
  padding-left: 16px;
}
ul.wp-block-list li {
  list-style: disc;
}

.wp-block-list,
.wp-block-footnotes {
  padding-left: 16px;
}

.center {
  display: flex;
  margin-top: 42px;
  align-items: center;
  position: relative;
  justify-content: center;
}

.back {
  font-family: "Segoe UI";
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 0;
}

.name-page {
  display: flex;
  gap: 8px;
  font-family: "Segoe UI";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}