@charset "UTF-8";
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
textarea:focus,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

@font-face {
  font-family: "Sora";
  font-display: swap;
  src: url("../assets/fonts/Sora-Regular.woff2") format("woff2"), url("../assets/fonts/Sora-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Sora";
  font-display: swap;
  src: url("../assets/fonts/Sora-Bold.woff2") format("woff2"), url("../assets/fonts/Sora-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Sora";
  font-display: swap;
  src: url("../assets/fonts/Sora-ExtraBold.woff2") format("woff2"), url("../assets/fonts/Sora-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Sora";
  font-display: swap;
  src: url("../assets/fonts/Sora-Light.woff2") format("woff2"), url("../assets/fonts/Sora-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Sora";
  font-display: swap;
  src: url("../assets/fonts/Sora-SemiBold.woff2") format("woff2"), url("../assets/fonts/Sora-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora";
  font-weight: 300;
  background-color: #0e0a2b;
}

.main {
  background-image: url("../assets/images/bg-main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 115px;
}
.main__decor {
  position: relative;
  top: -10px;
  height: 90px;
  background-color: #0e0a2b;
}

.title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 95px;
  background: linear-gradient(90deg, #3c88f8 9.62%, #6b00cd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .title {
    text-align: center;
    font-size: 46px;
  }
}

.header {
  position: fixed;
  z-index: 30;
  top: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  left: 0;
  right: 0;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  transition: transform 0.2s linear, background-color 0.2s linear;
}
@media (max-width: 767px) {
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 374px) {
  .header {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.header__nav {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  max-width: 1706px;
  width: 100%;
}
@media (max-width: 767px) {
  .header__nav {
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .header__nav {
    flex-direction: column;
    gap: 20px;
  }
  .header__nav img {
    width: 150px;
  }
}
.header.hidden {
  transform: translateY(-100%);
}
.header.header--bg {
  background-color: #0e0a2b;
}

.nav {
  max-width: 740px;
  width: 100%;
}
@media (max-width: 1200px) {
  .nav {
    max-width: 600px;
  }
}
@media (max-width: 991px) {
  .nav {
    max-width: 600px;
  }
}
.nav ul {
  max-width: 740px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav ul .nav__link {
  position: relative;
  font-weight: 600;
  font-size: 22px;
  color: #fefcfd;
}
@media (max-width: 991px) {
  .nav ul .nav__link {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .nav ul .nav__link {
    font-size: 16px;
  }
}
.nav ul .nav__link::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -2px;
  width: 0;
  height: 4px;
  opacity: 0;
  background-color: #40e6fc;
  transition: opacity 0.2s linear, width 0.2s linear;
}
.nav ul .nav__link--active::before {
  width: 105%;
  opacity: 1;
}
.nav ul .nav__link:hover::before {
  width: 105%;
  opacity: 1;
}

.footer {
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
  background-color: #0e0a2b;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.footer__container {
  max-width: 1706px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .footer__container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
  }
}
@media (max-width: 767px) {
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer img {
    width: 150px;
  }
}

.hero {
  background-image: url("../assets/images/bg-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 1075px;
  position: relative;
  padding-top: 500px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
@media (max-width: 1023px) {
  .hero {
    height: 800px;
  }
}
@media (max-width: 1199px) {
  .hero {
    padding-top: 300px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 600px;
    padding-top: 250px;
  }
}
.hero__content {
  position: relative;
  text-align: center;
}
.hero__info {
  position: relative;
  max-width: 1111px;
  margin: 0 auto;
}
.hero__title {
  position: relative;
  z-index: 5;
  color: #fdfbfe;
  font-size: 62px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .hero__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 24px;
  }
}
.hero__subtitle {
  position: relative;
  z-index: 5;
  font-weight: 300;
  font-size: 41px;
  color: #fdfbfe;
}
@media (max-width: 1023px) {
  .hero__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
.hero__shadow {
  position: absolute;
  left: 0;
  right: 0;
  top: -150px;
  max-width: 1313px;
  margin: 0 auto;
  width: 100%;
  height: 430px;
  z-index: 0;
}
.hero__bg-text {
  position: absolute;
  top: -125px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1637px;
}
@media (max-width: 1692px) {
  .hero__bg-text {
    display: none;
  }
}
.hero__bg-decor {
  width: 1405px;
  position: absolute;
  top: -337px;
  z-index: 1;
  left: -180px;
}
@media (max-width: 1692px) {
  .hero__bg-decor {
    width: 1150px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1199px) {
  .hero__bg-decor {
    width: 1000px;
    top: -150px;
  }
}
@media (max-width: 1023px) {
  .hero__bg-decor {
    width: 700px;
    top: -150px;
  }
}
@media (max-width: 767px) {
  .hero__bg-decor {
    width: 400px;
    top: -60px;
  }
}

.text-shadow-oval {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  width: 100%;
  height: 250px;
  border-radius: 20%;
  background: radial-gradient(ellipse at center, rgba(58, 29, 124, 0.9) 0%, rgba(58, 29, 124, 0.7) 60%, transparent 100%);
  filter: blur(30px);
  z-index: 3;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background-color: rgba(117, 87, 201, 0.35);
  border-radius: 50%;
  z-index: 10;
  border: 1px solid transparent;
  transition: border-color 0.2s linear;
}
@media (max-width: 1023px) {
  .hero-scroll {
    width: 80px;
    height: 80px;
  }
}
.hero-scroll:hover {
  border-color: #3c88f8;
}
.hero-scroll:hover .hero-scroll__box {
  border-color: #3c88f8;
}
.hero-scroll__box {
  transition: border-color 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: rgba(117, 87, 201, 0.35);
}
@media (max-width: 1023px) {
  .hero-scroll__box {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1023px) {
  .hero-scroll__box img {
    width: 30px;
  }
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1401px;
  padding-left: 50px;
  padding-right: 20px;
  margin: 150px auto 300px auto;
}
@media (max-width: 1199px) {
  .about {
    margin: 70px auto 150px auto;
  }
}
@media (max-width: 767px) {
  .about {
    flex-direction: column;
    margin: 50px auto 100px auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.about__content {
  max-width: 673px;
  width: 100%;
}
@media (max-width: 1199px) {
  .about__content {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .about__content {
    max-width: 100%;
  }
}
.about__description {
  margin-top: 35px;
  color: #fdfbfe;
  font-size: 30px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  .about__description {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .about__description {
    text-align: center;
  }
}
.about__link {
  position: relative;
  width: 268px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  background: linear-gradient(90deg, #2a9cff 0%, #b103c9 54%, #9101ca 66%, #7900cb 79%, #6b00cc 90%, #6700cd 100%);
  border-radius: 50px;
  padding: 4px; /* толщина "рамки" */
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .about__link {
    width: 240px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .about__link {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
.about__link:hover {
  background: linear-gradient(180deg, #2a9cff 0%, #b103c9 54%, #9101ca 66%, #7900cb 79%, #6b00cc 90%, #6700cd 100%);
}
.about__link:hover span {
  background: linear-gradient(156deg, #2a9cff 0%, #b103c9 54%, #9101ca 66%, #7900cb 79%, #6b00cc 90%, #6700cd 100%);
}
.about__link span {
  background: linear-gradient(120deg, #2a9cff 0%, #b103c9 54%, #9101ca 66%, #7900cb 79%, #6b00cc 90%, #6700cd 100%);
  border-radius: 46px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fdfbfe;
  font-size: 22px;
}
.about__image {
  display: block;
}
.about__image--mobile {
  display: none;
}
@media (max-width: 767px) {
  .about__image--mobile {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    display: block;
  }
}
@media (max-width: 767px) {
  .about__image {
    display: none;
  }
}

.apps-slider {
  position: relative;
  max-width: 1500px;
  padding-left: 50px;
  padding-right: 15px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .apps-slider {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .apps-swiper .swiper-slide {
    width: 100%;
    justify-content: center;
  }
}
.apps-swiper__title {
  margin-bottom: 34px;
  font-weight: 800;
  color: #fff;
  font-size: 70px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .apps-swiper__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .apps-swiper__title {
    text-align: center;
    margin-bottom: 16px;
    font-size: 34px;
  }
}
.apps-swiper__logo {
  margin-bottom: 32px;
  width: 206px;
  height: 206px;
  display: block;
}
@media (max-width: 767px) {
  .apps-swiper__logo {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  .apps-swiper__logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
}
.apps-swiper__description {
  margin-bottom: 32px;
  color: #fdfbfe;
  max-width: 644px;
  font-size: 30px;
  font-weight: 300;
}
@media (max-width: 1200px) {
  .apps-swiper__description {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .apps-swiper__description {
    text-align: center;
    margin-bottom: 0;
  }
}
.apps-swiper__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .apps-swiper__links {
    gap: 20px;
    justify-content: center;
  }
}
.apps-swiper__links a {
  transition: transform 0.2s linear;
}
.apps-swiper__links a:hover {
  transform: translateY(-3px);
}
.apps-swiper__slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.apps-swiper__image {
  position: relative;
}
@media (max-width: 767px) {
  .apps-swiper__image {
    display: none;
  }
}
.apps-swiper__image--mobile {
  display: none;
}
@media (max-width: 767px) {
  .apps-swiper__image--mobile {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

.apps-slider-prev,
.apps-slider-next {
  position: absolute;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(117, 87, 201, 0.35);
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.2s linear;
}
@media (max-width: 1822px) {
  .apps-slider-prev,
  .apps-slider-next {
    display: none;
  }
}
.apps-slider-prev:hover,
.apps-slider-next:hover {
  border-color: #3c88f8;
}
.apps-slider-prev:hover .apps-slider-next__box,
.apps-slider-next:hover .apps-slider-next__box {
  border-color: #3c88f8;
}
.apps-slider-prev:hover .apps-slider-prev__box,
.apps-slider-next:hover .apps-slider-prev__box {
  border-color: #3c88f8;
}
.apps-slider-prev__box,
.apps-slider-next__box {
  transition: border-color 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: rgba(117, 87, 201, 0.35);
}

.apps-slider-prev {
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
}
.apps-slider-next {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.apps-slider-next img {
  transform: rotate(180deg);
}

.apps-slider-pagination {
  position: absolute;
  bottom: 150px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  z-index: 10;
}
@media (max-width: 1324px) {
  .apps-slider-pagination {
    bottom: -20px !important;
  }
}
@media (max-width: 767px) {
  .apps-slider-pagination {
    gap: 20px;
    bottom: -30px !important;
  }
}
.apps-slider-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 13px;
  height: 13px;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #fefcfd;
  opacity: 1;
}
.apps-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fefcfd;
}

.contacts {
  display: flex;
  gap: 171px;
  max-width: 1530px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 140px auto 0 auto;
}
@media (max-width: 1199px) {
  .contacts {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .contacts {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contacts__info {
  max-width: 661px;
  margin-top: 55px;
  font-weight: 700;
  font-size: 30px;
  color: #fdfbfe;
}
.contacts__info p:not(:last-child) {
  margin-bottom: 34px;
}
@media (max-width: 1023px) {
  .contacts__info {
    font-size: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .contacts__info {
    max-width: 100%;
    text-align: center;
  }
}
.contacts__socials {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1023px) {
  .contacts__socials {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .contacts__socials {
    justify-content: center;
  }
}
.contacts__socials a {
  flex-shrink: 0;
  transition: transform 0.2s linear;
}
@media (max-width: 767px) {
  .contacts__socials a {
    flex-shrink: 1;
  }
}
.contacts__socials a:hover {
  transform: translateY(-3px);
}
.contacts__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 616px;
  padding-top: 130px;
  width: 100%;
}
@media (max-width: 767px) {
  .contacts__form {
    max-width: 100%;
    padding-top: 0;
  }
}
.contacts__form input {
  padding-left: 25px;
  width: 100%;
  height: 79px;
  border: 4px solid #6700cd;
  border-radius: 12px;
  font-weight: 300;
  font-size: 30px;
  color: #fdfbfe;
  transition: border 0.2s linear;
}
@media (max-width: 767px) {
  .contacts__form input {
    font-size: 20px;
    height: 60px;
    padding-left: 14px;
  }
}
.contacts__form input::placeholder {
  font-weight: 300;
  color: #fdfbfe;
}
.contacts__form input:focus, .contacts__form input:hover {
  border-color: #3c88f8;
}
.contacts__form textarea {
  padding-left: 25px;
  padding-top: 15px;
  max-width: 616px;
  width: 100%;
  min-height: 181px;
  border: 4px solid #6700cd;
  border-radius: 12px;
  font-weight: 300;
  font-size: 30px;
  color: #fdfbfe;
  transition: border 0.2s linear;
}
@media (max-width: 767px) {
  .contacts__form textarea {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .contacts__form textarea {
    min-height: 140px;
    padding-left: 14px;
    font-size: 20px;
  }
}
.contacts__form textarea::placeholder {
  font-weight: 300;
  color: #fdfbfe;
}
.contacts__form textarea:focus, .contacts__form textarea:hover {
  border-color: #3c88f8;
}
.contacts__submit {
  position: relative;
  width: 268px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-left: auto;
  background: linear-gradient(90deg, #2a9cff 0%, #b103c9 54%, #9101ca 66%, #7900cb 79%, #6b00cc 90%, #6700cd 100%);
  border-radius: 50px;
  padding: 4px; /* толщина "рамки" */
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .contacts__submit {
    width: 240px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .contacts__submit {
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
  }
}
.contacts__submit:hover {
  background: linear-gradient(180deg, #2a9cff 0%, #b103c9 54%, #9101ca 66%, #7900cb 79%, #6b00cc 90%, #6700cd 100%);
}
.contacts__submit:hover span {
  background: linear-gradient(156deg, #2a9cff 0%, #b103c9 54%, #9101ca 66%, #7900cb 79%, #6b00cc 90%, #6700cd 100%);
}
.contacts__submit span {
  background: linear-gradient(120deg, #2a9cff 0%, #b103c9 54%, #9101ca 66%, #7900cb 79%, #6b00cc 90%, #6700cd 100%);
  border-radius: 46px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fdfbfe;
  font-size: 22px;
}
.contacts__loader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.2); /* светлая обводка */
  border-top: 4px solid white; /* "активная" часть */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none; /* показывай loader только при необходимости */
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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