:root {
  --Primary-colors-black: #101010;
  --Primary-colors-white: #fff;
  --Primary-colors-blue: #00C2FF;
  --Secondary-colors-blue-hover: #74DEFF;
}

body {
  background-color: var(--Primary-colors-white);
}
body.hidden {
  overflow: hidden;
}

a {
  transition: all 0.3s;
}
a:hover {
  color: var(--Primary-colors-blue);
}

* {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: none;
  text-align: left;
  color: var(--white);
  outline: none; /* Safari 3-4, iOS 1-3.2, Android 1.6- */ /* Firefox 1-3.6 */
  border-radius: 0; /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  box-sizing: border-box;
}

*::-webkit-scrollbar-track {
  border-radius: 3px;
  width: 7px;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #aaa;
}

.swiper-row__btn {
  display: flex;
  gap: 16px;
}

.swiper-button-prev {
  transform: rotate(180deg);
}

.swiper-button-next, .swiper-button-prev {
  margin: 0;
  padding: 0;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
}

.swiper-scrollbar {
  display: none;
}

.swiper-custom-button {
  border-radius: var(--Radius-radius-xl, 60px);
  background: var(--Primary-colors-black, #101010);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin-bottom: 2px;
}
.swiper-custom-button img {
  z-index: 2;
  width: auto !important;
}
.swiper-custom-button:after {
  content: "";
  display: block;
  position: absolute;
  width: 48px;
  height: 48px;
  left: -2px;
  top: -2px;
  background: var(--Primary-colors-black, #101010);
  opacity: 0;
  transition: all 0.3s;
  border-radius: 50%;
}
.swiper-custom-button:hover:after {
  opacity: 1;
}

ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1288px;
  padding: 0 24px;
  margin: 0 auto;
}

.title {
  color: var(--Primary-colors-black);
  font-size: 44px;
  font-weight: 700;
  line-height: normal;
}

.all-btn {
  border-radius: var(--Radius-radius-xl, 60px);
  background: var(--Primary-colors-blue, #00C2FF);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding: 14px 16px 14px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  transition: all 0.3s;
}

.all-btn:hover {
  background: var(--Secondary-colors-blue-hover, #74DEFF);
  color: var(--Primary-colors-black);
}

.all-btn.transparent {
  background-color: unset;
  border: 1px solid var(--Secondary-colors-border-light, rgba(255, 255, 255, 0.4));
  padding: 13px 24px;
  color: var(--Primary-colors-white, #FFF);
}

.all-btn.transparent:hover {
  border: 1px solid var(--Primary-colors-black, #101010);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 18px 0;
  border-bottom: 1px solid var(--Secondary-colors-border-light, rgba(255, 255, 255, 0.4));
}
header .flex {
  align-items: center;
}
header.scroll-header {
  background: var(--Primary-colors-white);
}
header.scroll-header .logo-text {
  filter: invert(1);
}
header.scroll-header .navbar-wrap ul li a {
  color: var(--Primary-colors-black);
}
header.scroll-header .all-btn.transparent {
  color: var(--Primary-colors-black);
  border: 1px solid var(--Secondary-colors-border-dark, rgba(16, 16, 16, 0.14));
}
header.scroll-header .all-btn.transparent:hover {
  border: 1px solid var(--Primary-colors-black, #101010);
}
header .logo-header {
  align-items: center;
  gap: 13px;
}
header .block-mob {
  display: none;
}
header .navbar-wrap {
  align-items: center;
}
header .navbar-wrap .header-links, header .navbar-wrap .header-mob-contact {
  display: none;
}
header .navbar-wrap ul {
  display: flex;
  gap: 60px;
}
header .navbar-wrap ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  color: var(--Primary-colors-white);
  position: relative;
}
header .navbar-wrap ul li a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--Primary-colors-blue);
  transition: all 0.3s;
  opacity: 0;
}
header .navbar-wrap ul li a:hover::before {
  opacity: 1;
}
header .header-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
header .mob-block {
  display: none;
}

.promo {
  position: relative;
  margin-bottom: 100px;
}
.promo::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(16, 16, 16, 0.7) 0%, rgba(16, 16, 16, 0.7) 100%);
  z-index: 1;
}
.promo .promo-bg video {
  display: block;
  width: 100%;
}
.promo .promo-cont {
  position: absolute;
  top: 30%;
  z-index: 2;
  width: 100%;
}
.promo .promo-cont .promo-cont-item {
  max-width: 640px;
}
.promo h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  margin-bottom: 32px;
  color: var(--Primary-colors-white, #FFF);
}
.promo p {
  margin-bottom: 40px;
  color: var(--Primary-colors-white, #FFF);
}
.promo .promo-cont__bottom.flex {
  justify-content: flex-start;
  gap: 24px;
}

.services .title {
  text-align: center;
  margin-bottom: 60px;
}
.services .services-slider img {
  border-radius: 12px;
  display: block;
  margin-bottom: 32px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.services .services-slider a img {
  height: auto;
}
.services .services-slider .swiper-custom-button img {
  height: auto;
}
.services .services-slider .name {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
}
.services .services-slider .swiper-row__btn {
  justify-content: center;
  margin-top: 60px;
}
.services .services-slider .swiper-row__btn .swiper-custom-button img {
  margin: 0;
}
.services .services-slider .swiper-slide a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 28px;
}
.services .services-slider .swiper-slide a img {
  margin: 0;
  width: auto;
}

.platforms-slider_cont a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 28px;
}

.benefits {
  padding: 80px 0;
}
.benefits .benefits-top-wrapper.flex {
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 32px;
}
.benefits .benefits-top-wrapper.flex .all-btn.transparent {
  border: 1px solid var(--Secondary-colors-border-dark, rgba(16, 16, 16, 0.14));
  color: var(--Primary-colors-black);
  padding: 14px 16px 14px 24px;
}
.benefits .benefits-top-wrapper.flex .all-btn.transparent:hover {
  border: 1px solid var(--Primary-colors-black, #101010);
}
.benefits .benefits-top-cont {
  width: 100%;
  max-width: 647px;
}
.benefits .title {
  margin-bottom: 24px;
}
.benefits .swiper-wrapper {
  gap: 24px;
  flex-wrap: wrap;
}
.benefits .swiper-wrapper .swiper-slide {
  width: calc(25% - 18px);
  border-radius: var(--Radius-radius-large, 20px);
  border: 1px solid var(--Secondary-colors-border-dark, rgba(16, 16, 16, 0.14));
  background: var(--Primary-colors-white, #FFF);
  height: auto;
  padding: 24px;
  transition: all 0.3s;
  min-height: 310px;
  position: relative;
  overflow: hidden;
}
.benefits .swiper-wrapper .swiper-slide .benefits-slide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.benefits .swiper-wrapper .swiper-slide .benefits-slide-card img {
  display: block;
  width: 52px;
  height: 52px;
  transition: all 0.3s;
}
.benefits .swiper-wrapper .swiper-slide .benefits-slide-card .benefits-slide-card_cont {
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: calc(100% - 45px);
  left: 24px;
  right: 24px;
}
.benefits .swiper-wrapper .swiper-slide .benefits-slide-card .benefits-slide-card_cont .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
/*.benefits .swiper-wrapper .swiper-slide .benefits-slide-card .benefits-slide-card_cont p {*/
/*  display: none;*/
/*}*/
.benefits .swiper-wrapper .swiper-slide:hover {
  background: var(--Secondary-colors-bg-grey, #F8F8F8);
}
.benefits .swiper-wrapper .swiper-slide:hover img {
  opacity: 0;
  height: 0;
  overflow: hidden;
  display: none;
}
.benefits .swiper-wrapper .swiper-slide:hover .benefits-slide-card_cont {
  top: 24px;
}
/*.benefits .swiper-wrapper .swiper-slide:hover .benefits-slide-card_cont p {*/
/*  display: block;*/
/*}*/

.platforms {
  padding-bottom: 120px;
}
.platforms .title {
  text-align: center;
  margin-bottom: 24px;
}
.platforms .subtitle {
  max-width: 607px;
  margin: 0 auto 70px;
}
.platforms .platforms-slider .flex {
  gap: 10px;
}
.platforms .platforms-slider .platforms-slider_img {
  max-width: 700px;
  width: 100%;
  border-radius: var(--Radius-radius-large, 20px);
  background: var(--Secondary-colors-bg-button, #F3F3F3);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platforms .platforms-slider .platforms-slider_img img {
  display: block;
  width: 100%;
  border-radius: var(--Radius-radius-small, 12px);
  border: 2px solid var(--Primary-colors-white, #FFF);
}
.platforms .platforms-slider .platforms-slider_cont {
  max-width: 480px;
  width: 100%;
  align-self: stretch;
  padding-top: 24px;
  padding-bottom: 55px;
}
.platforms .platforms-slider .platforms-slider_cont .name {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
}
.platforms .platforms-slider .navigate-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.platforms .platforms-slider .swiper-pagination-fraction {
  position: static;
  max-width: max-content;
}

.contact-us {
  padding: 100px 0;
  background: url("../../images/bg-contact.jpg") no-repeat center/cover;
}
.contact-us .flex {
  gap: 32px;
}
.contact-us .contact-cont-all {
  max-width: 570px;
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-us .contact-cont-all .icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--Radius-radius-small, 12px);
  border: 1px solid var(--Secondary-colors-border-light, rgba(255, 255, 255, 0.4));
  background: var(--secondary-colors-bg-white-2, rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
}
.contact-us .contact-cont-all .title {
  color: var(--Primary-colors-white);
  margin-bottom: 24px;
}
.contact-us .contact-cont-all p {
  color: var(--Primary-colors-white);
  margin-bottom: 68px;
  max-width: 420px;
}
.contact-us .contact-cont-all ul li {
  display: block;
  margin-bottom: 6px;
}
.contact-us .contact-cont-all ul li:last-child {
  margin-bottom: 0;
}
.contact-us .contact-cont-all a {
  display: block;
  font-weight: 500;
  color: #fff;
  width: max-content;
  max-width: 100%;
}
.contact-us .contact-cont-all a:hover {
  color: var(--Primary-colors-blue);
}
.contact-us .contact-us__form {
  max-width: 100%;
  width: 570px;
}
.contact-us .contact-us__form fieldset {
  margin-bottom: 16px;
  position: relative;
  transition: all 0.3s;
  display: block;
  border: none;
}
.contact-us .first-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.contact-us .first-row fieldset {
  width: calc(50% - 8px);
}
.contact-us .contact-us__form fieldset.hidden {
  display: none;
}
.contact-us .contact-us__form fieldset.error .text-error {
  display: block;
}
.contact-us .contact-us__form fieldset .text-error {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  color: var(--Red, #BA1616);
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  display: none;
}
.contact-us .contact-us__form fieldset label {
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--White, #FFF);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  cursor: text;
  opacity: 0.6;
}
.contact-us .contact-us__form fieldset label span {
  font-size: 16px;
  opacity: 0.6;
}
.contact-us .contact-us__form fieldset input,
.contact-us .contact-us__form fieldset textarea {
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: 13px 16px 15px;
  color: var(--White, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  resize: none;
  border-radius: var(--Number, 10px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: all 0.3s;
}
.contact-us .contact-us__form fieldset input:hover,
.contact-us .contact-us__form fieldset textarea:hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.contact-us .contact-us__form fieldset input:focus,
.contact-us .contact-us__form fieldset textarea:focus {
  border: 1px solid var(--Primary-colors-blue, #00C2FF);
  padding-top: 18px;
  padding-bottom: 10px;
}
.contact-us .contact-us__form fieldset textarea {
  height: 98px;
  display: block;
}
.contact-us .contact-us__form fieldset input::placeholder {
  color: transparent;
}
.contact-us .contact-us__form fieldset input:focus + label, .contact-us .contact-us__form fieldset input.filled + label,
.contact-us .contact-us__form fieldset textarea:focus + label, .contact-us .contact-us__form fieldset textarea.filled + label {
  top: 4px;
  position: absolute;
  font-size: 10px;
  color: var(--Primary-colors-blue, #00C2FF);
  opacity: 1;
}
.contact-us .contact-us__form fieldset input:focus + label span, .contact-us .contact-us__form fieldset input.filled + label span {
  font-size: 10px;
}
.contact-us .contact-us__form fieldset input:-webkit-autofill,
.contact-us .contact-us__form fieldset input:-webkit-autofill:hover,
.contact-us .contact-us__form fieldset input:-webkit-autofill:focus,
.contact-us .contact-us__form fieldset input:-webkit-autofill:active {
  transition: background-color 5000s;
  -webkit-text-fill-color: #fff !important;
}
.contact-us button {
  box-shadow: none;
  cursor: pointer;
  border: none;
  margin-top: 32px;
}

footer {
  padding: 60px 0;
}
footer .footer-cont {
  max-width: 540px;
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
footer .footer-cont .footer-logo {
  margin-bottom: 24px;
}
footer p {
  font-size: 14px;
  margin-bottom: 32px;
  max-width: 420px;
  font-weight: 500;
  line-height: 22px;
}
footer p.copyright {
  opacity: 0.5;
  margin-bottom: 0;
}
footer .footer-main {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}
footer .footer-main .footer-cont_bottom {
  display: none;
}
footer .footer-main .footer-nav ul {
  display: flex;
  width: 100%;
  gap: 80px;
}
footer .footer-main .footer-nav a {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
footer .footer-main .footer-contact {
  display: flex;
  justify-content: space-between;
}
footer .footer-main .footer-contact .contact-item .name {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
}
footer .footer-main .footer-contact .contact-item ul li {
  margin-bottom: 8px;
  display: block;
}
footer .footer-main .footer-contact .contact-item ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
footer .footer-main .footer-contact .contact-item ul li:last-child {
  margin-bottom: 0;
}



#form-messages span {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}

#form-messages span.error {
  color: red;
}

/*# sourceMappingURL=main.css.map */
