html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, address, big, blockquote, cite, code,
del, dfn, em, img, ins, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, form, label, input, fieldset, legend, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, main, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: none;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
}

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ol, ul, nav, menu {
  list-style: none;
}

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

img {
  vertical-align: bottom;
}

a, button {
  cursor: pointer;
  margin: 0;
  padding: 0;
}

a:hover, button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  vertical-align: middle;
}

iframe {
  width: 100%;
}

/* Onest */
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-VariableFont_wght.woff2") format("woff2 supports variations"), url("../fonts/Onest-VariableFont_wght.woff2") format("woff2-variations");
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 85% 100%;
}
/* =========================== all */
body {
  font-family: "Onest", sans-serif;
  color: #CFCFCF;
  background: #110D14;
  line-height: 1.5;
}

.body_scroll {
  overflow: hidden;
}

/* heading */
.h1, .h2, h1, h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  color: #fff;
  max-width: 730px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .h1, .h2, h1, h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

.section {
  margin-bottom: 200px;
}
.section-header {
  text-align: center;
}
.section-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .section {
    margin-bottom: 100px;
  }
  .section-title {
    font-size: 12px;
    letter-spacing: 2.4px;
  }
}

/* content */
a, p, ol:not([class]) li, ul:not([class]) li {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
}
@media screen and (max-width: 768px) {
  a, p, ol:not([class]) li, ul:not([class]) li {
    font-size: 14px;
    line-height: 18px;
  }
}

p {
  margin-bottom: 20px;
}

b, strong {
  font-weight: bold;
}

i, em {
  font-style: italic;
}

/* list */
ol:not([class]), ul:not([class]) {
  margin-bottom: 20px;
}
ol:not([class]) li, ul:not([class]) li {
  display: table;
  position: relative;
  padding-left: 29px;
}
ol:not([class]) li::before, ul:not([class]) li::before {
  left: 0;
  top: calc(50% - 8px);
}
ol:not([class]) li:not(:last-child), ul:not([class]) li:not(:last-child) {
  margin-bottom: 10px;
}

table ol:not([class]) li, table ul:not([class]) li, .table ol:not([class]) li, .table ul:not([class]) li {
  display: block;
}

ol:not([class]) {
  counter-reset: number;
}
ol:not([class]) li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: #D70304;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 100%;
}

ul:not([class]) li::before {
  position: absolute;
  content: "";
  width: 19px;
  height: 16px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--check");
}

summary {
  list-style: none;
}
summary::marker {
  display: none;
}
summary::-webkit-details-marker {
  display: none;
  color: transparent;
}

/* block */
.block {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
}
.block::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
  border-radius: 25px;
}

/* img */
img {
  display: block;
  margin: 0 auto;
}

/* transition */
* {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* btn */
.btn {
  position: relative;
  display: block;
  width: 124px;
  height: 55px;
  line-height: 53px;
  border-radius: 15px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: -o-linear-gradient(179.87deg, rgba(255, 255, 255, 0.1) 5.75%, rgba(153, 153, 153, 0.05) 46.63%, rgba(255, 255, 255, 0.05) 83.06%);
  background: linear-gradient(270.13deg, rgba(255, 255, 255, 0.1) 5.75%, rgba(153, 153, 153, 0.05) 46.63%, rgba(255, 255, 255, 0.05) 83.06%);
  margin: 0;
}
.btn::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: -o-linear-gradient(348.82deg, #FF9A16 11.74%, #FF0037 57.11%, #9100FF 98.33%);
  background: linear-gradient(101.18deg, #FF9A16 11.74%, #FF0037 57.11%, #9100FF 98.33%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.btn span {
  position: relative;
  z-index: 5;
  font-size: 12px;
  font-weight: 600;
  color: #B8B8B8;
  text-transform: uppercase;
}
.btn:hover {
  border-color: transparent;
}
.btn:hover span {
  color: #fff;
}
.btn:hover::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* flexbox */
.flexbox {
  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;
}

/* gridbox */
.gridbox {
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* container */
.container {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}

main {
  overflow: hidden;
  padding-top: 70px;
}

/* header */
.header {
  position: absolute;
  top: 15px;
  display: inline-block;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 15px;
  border-width: 1px;
  background: -webkit-gradient(linear, right top, left top, color-stop(51.36%, rgba(255, 255, 255, 0.1)), color-stop(68.17%, rgba(153, 153, 153, 0.05)), color-stop(83.14%, rgba(255, 255, 255, 0.05)));
  background: -o-linear-gradient(right, rgba(255, 255, 255, 0.1) 51.36%, rgba(153, 153, 153, 0.05) 68.17%, rgba(255, 255, 255, 0.05) 83.14%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 51.36%, rgba(153, 153, 153, 0.05) 68.17%, rgba(255, 255, 255, 0.05) 83.14%);
  padding: 19px 45px;
}
.header::after {
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 18px 10px;
  }
}
@media screen and (max-width: 450px) {
  .header {
    width: calc(100% - 40px);
  }
}

/* navigation */
.navigation {
  position: relative;
  z-index: 2;
}

/* menu */
.menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu__item {
  line-height: 15px;
  font-weight: 12px;
}
.menu-link {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: #B8B8B8;
  white-space: nowrap;
}
.menu-link:hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .menu {
    gap: 20px;
  }
}

/* hero */
.hero {
  text-align: center;
  padding: 220px 0 200px;
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 100px 0;
  }
}

.logo {
  position: relative;
  display: inline-block;
  text-align: center;
}
.logo::before, .logo::after {
  position: absolute;
  content: "";
  z-index: -1;
}
.logo::before {
  width: 604px;
  height: 604px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--1");
  top: calc(50% - 302px);
  left: -200px;
}
.logo::after {
  width: 464px;
  height: 464px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--2");
  top: -180px;
  right: -120px;
}
.logo-img {
  position: relative;
  z-index: 10;
  margin-bottom: 25px;
}
.logo-title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 768px) {
  .logo-img {
    width: 260px;
    height: 34px;
    margin-bottom: 10px;
  }
  .logo-title {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 2.4px;
  }
  .logo::before {
    display: none;
  }
  .logo::after {
    top: -230px;
    left: -200px;
  }
}

/* services */
.services {
  position: relative;
}
.services .section-header {
  max-width: 1140px;
  padding: 0 20px;
  margin-inline: auto;
}
.services::before, .services::after {
  position: absolute;
  z-index: -1;
  content: "";
}
.services::before {
  width: 594px;
  height: 594px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--5");
  left: -50px;
  bottom: -200px;
}
.services::after {
  width: 792px;
  height: 949px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--3");
  right: -100px;
  bottom: -500px;
}
.services__item {
  height: auto;
  border-radius: 25px;
  background: -o-linear-gradient(221.98deg, rgba(255, 255, 255, 0.1) 12.07%, rgba(153, 153, 153, 0.05) 53.43%, rgba(255, 255, 255, 0.05) 90.29%);
  background: linear-gradient(228.02deg, rgba(255, 255, 255, 0.1) 12.07%, rgba(153, 153, 153, 0.05) 53.43%, rgba(255, 255, 255, 0.05) 90.29%);
  padding: 25px;
}
.services__item.swiper-slide-visible {
  opacity: 0.2;
}
.services__item.swiper-slide-active {
  opacity: 1;
}
.services__item.swiper-slide-next, .services__item.swiper-slide-prev {
  opacity: 0.4;
}
.services-title, .services p {
  position: relative;
  z-index: 2;
}
.services-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}
.services p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 640px) {
  .services__item {
    width: 340px !important;
  }
}
@media screen and (max-width: 768px) {
  .services::before, .services::after {
    display: none;
  }
  .services__item {
    padding: 15px 25px;
  }
  .services-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (max-width: 640px) {
  .services-swiper {
    max-width: 640px;
    padding: 0 20px 14px;
    margin-inline: auto;
  }
  .services-swiper .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 7px;
    top: auto;
    bottom: 0;
    height: 6px;
  }
  .services-swiper.swiper-horizontal .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    opacity: 1;
    margin: 0;
  }
  .services-swiper.swiper-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: -o-linear-gradient(348.82deg, #FF9A16 11.74%, #FF0037 57.11%, #9100FF 98.33%);
    background: linear-gradient(101.18deg, #FF9A16 11.74%, #FF0037 57.11%, #9100FF 98.33%);
  }
}

/* build */
.build {
  position: relative;
  gap: 25px 30px;
  background: -o-linear-gradient(221.98deg, rgba(255, 255, 255, 0.1) 12.07%, rgba(153, 153, 153, 0.05) 53.43%, rgba(255, 255, 255, 0.05) 90.29%);
  background: linear-gradient(228.02deg, rgba(255, 255, 255, 0.1) 12.07%, rgba(153, 153, 153, 0.05) 53.43%, rgba(255, 255, 255, 0.05) 90.29%);
  padding: 50px;
}
.build::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 888px;
  height: 949px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--4");
  left: -210px;
  bottom: -400px;
}
.build-text, .build-img {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 475px;
}
.build-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 475px;
}
.build-text p:last-child {
  margin-bottom: 0;
}
.build-img {
  border-radius: 15px;
  max-width: 475px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .build {
    padding: 25px 15px;
  }
  .build::before {
    width: 320px;
    height: 664px;
    background: center center/cover no-repeat;
    background-image: url("../img/sprite.svg#sprite--5-half");
    left: auto;
    bottom: auto;
    top: -350px;
    right: -20px;
  }
  .build-text {
    min-width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .build-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: none;
    width: 100%;
  }
}

/* form */
.form {
  width: 100%;
  position: relative;
  z-index: 2;
}
.form-block {
  background: -o-linear-gradient(221.98deg, rgba(255, 255, 255, 0.1) 12.07%, rgba(153, 153, 153, 0.05) 53.43%, rgba(255, 255, 255, 0.05) 90.29%);
  background: linear-gradient(228.02deg, rgba(255, 255, 255, 0.1) 12.07%, rgba(153, 153, 153, 0.05) 53.43%, rgba(255, 255, 255, 0.05) 90.29%);
  padding: 50px;
}
.form-block::before {
  position: absolute;
  content: "";
  width: 604px;
  height: 561px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--6");
  right: -200px;
  bottom: -300px;
}
.form input, .form textarea {
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 43px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Onest";
  color: white;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
}
.form input {
  line-height: 42px;
}
.form textarea {
  display: block;
  resize: none;
  min-height: 43px;
  line-height: 23px;
  scrollbar-width: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  padding-top: 6px;
}
.form .form-group {
  gap: 0 25px;
}
.form .group {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}
.form .label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .form-block {
    padding: 25px;
  }
  .form-block::before {
    position: absolute;
    content: "";
    width: 320px;
    height: 949px;
    background: center center/cover no-repeat;
    background-image: url("../img/sprite.svg#sprite--4-half");
    right: -20px;
    bottom: auto;
    top: -600px;
  }
  .form .label {
    margin-bottom: 10px;
  }
  .form .group {
    margin-bottom: 15px;
  }
  .form input, .form textarea {
    font-size: 14px;
  }
  .form .btn {
    margin-inline: auto;
  }
}

.success {
  display: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #fff;
}

button {
  font-family: "Onest";
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #CFCFCF;
  opacity: 1;
  font-family: "Onest";
  font-size: 18px;
  font-weight: 400;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #CFCFCF;
  opacity: 1;
  font-family: "Onest";
  font-size: 18px;
  font-weight: 400;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #CFCFCF;
  opacity: 1;
  font-family: "Onest";
  font-size: 18px;
  font-weight: 400;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #CFCFCF;
  opacity: 1;
  font-family: "Onest";
  font-size: 18px;
  font-weight: 400;
}

input::placeholder, textarea::placeholder {
  color: #CFCFCF;
  opacity: 1;
  font-family: "Onest";
  font-size: 18px;
  font-weight: 400;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #CFCFCF;
  opacity: 1;
  font-family: "Onest";
  font-size: 18px;
  font-weight: 400;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #CFCFCF;
  opacity: 1;
  font-family: "Onest";
  font-size: 18px;
  font-weight: 400;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #CFCFCF;
  opacity: 1;
  font-family: "Onest";
  font-size: 18px;
  font-weight: 400;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #CFCFCF;
  opacity: 1;
  font-family: "Onest";
  font-size: 18px;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: none;
}
input:invalid:not(:focus):not(:-moz-placeholder-shown), textarea:invalid:not(:focus):not(:-moz-placeholder-shown) {
  border-color: #FF2E43;
}
input:invalid:not(:focus):not(:-ms-input-placeholder), textarea:invalid:not(:focus):not(:-ms-input-placeholder) {
  border-color: #FF2E43;
}
input:invalid:not(:focus):not(:placeholder-shown), textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #FF2E43;
}
@media screen and (max-width: 768px) {
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 14px;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 14px;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 14px;
  }
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 14px;
  }
  input::placeholder, textarea::placeholder {
    font-size: 14px;
  }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 14px;
  }
  input:-moz-placeholder, textarea:-moz-placeholder {
    font-size: 14px;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 14px;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 14px;
  }
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

/* footer */
.footer {
  padding-bottom: 50px;
}
.footer p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #545454;
  margin-bottom: 0;
}
.footer p a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 40px;
  }
}
/*# sourceMappingURL=../sourcemaps/style.css.map */
