* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 0;
  overflow: hidden;
  color: rgba(206, 250, 254, 0.8);
  background: #0F172B;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.button {
  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: 8px;
  height: 56px;
  border-radius: 10px;
  margin: 0 auto;
  padding-inline: 31px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#0092b8), to(#009689));
  background: linear-gradient(90deg, #0092b8 0%, #009689 100%);
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 184, 219, 0.4);
          box-shadow: 0px 25px 50px -12px rgba(0, 184, 219, 0.4);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
.button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.title {
  font-weight: 500;
  font-size: 48px;
  line-height: 57px;
  letter-spacing: 0.035em;
  text-transform: capitalize;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#53eafd), to(#46ecd5));
  background: linear-gradient(90deg, #53eafd 0%, #46ecd5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-sec {
  background: rgba(0, 184, 219, 0.2);
  border: 1px solid rgba(0, 184, 219, 0.3019607843);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 167px;
  margin: 0 auto;
  margin-bottom: 24px;
  color: #53EAFD;
  font-size: 14px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 23, 43, 0.95)), to(rgba(15, 23, 43, 0.8)));
  background: linear-gradient(180deg, rgba(15, 23, 43, 0.95) 0%, rgba(15, 23, 43, 0.8) 100%);
  border-bottom: 1px solid rgba(0, 184, 219, 0.2);
}
.header .logo {
  width: 205px;
}
.header .container {
  max-width: none;
}

.header__button-wrapper {
  margin-left: auto;
}

.header__icon-button {
  position: relative;
  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;
  background: transparent;
  border: none;
  padding: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.header__icon {
  position: absolute;
  width: 28px;
  height: 28px;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}

.header__icon--menu {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.header__icon--close {
  opacity: 0;
  -webkit-transform: rotate(-90deg) scale(0.6);
          transform: rotate(-90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--menu {
  opacity: 0;
  -webkit-transform: rotate(90deg) scale(0.6);
          transform: rotate(90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--close {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 15px 10px;
}
.navigation__list {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 82px 80px;
  background: #10182c;
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: #cefafe;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.navigation__link:hover {
  text-shadow: 0 0 0.6px #cefafe, 0 0 0.6px #cefafe;
}

@media screen and (min-width: 1400px) {
  .header__button-wrapper {
    display: none;
  }
  .header .container {
    max-width: 1334px;
  }
  .navigation {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 auto;
    margin-left: auto;
  }
  .navigation__list {
    background: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    gap: 32px;
    backdrop-filter: none;
  }
}
.hero {
  padding: 110px 10px 61px 10px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .hero {
    background: -webkit-gradient(linear, left top, left bottom, from(#0f172b), color-stop(50%, #1d293d), to(#0f172b));
    background: linear-gradient(180deg, #0f172b 0%, #1d293d 50%, #0f172b 100%);
  }
}
.hero h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 0.012em;
  margin-bottom: 60px;
}
@media screen and (min-width: 1400px) {
  .hero h1 {
    font-weight: 500;
    font-size: 72px;
    line-height: 72px;
    margin-bottom: 22px;
  }
}
.hero ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-bottom: 34px;
}
.hero li {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.hero p {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
@media screen and (min-width: 1400px) {
  .hero p {
    line-height: 32px;
  }
}
.hero .button {
  margin-top: 32px;
}

.author {
  background: -webkit-gradient(linear, left top, left bottom, from(#0f172b), to(#1d293d));
  background: linear-gradient(180deg, #0f172b 0%, #1d293d 100%);
  padding: 50px 10px;
}
@media screen and (min-width: 1400px) {
  .author {
    padding-block: 100px;
  }
}
.author .wrapper {
  text-align: center;
}
.author h2 {
  margin-bottom: 59px;
}
.author .author-img {
  margin: 0 auto;
}
.author ul {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
@media screen and (min-width: 1400px) {
  .author ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.author li {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 283px;
  width: 100%;
  height: 198px;
  background: linear-gradient(135deg, rgba(29, 41, 61, 0.6) 0%, rgba(15, 23, 43, 0.6) 100%);
  border: 1px solid rgba(49, 65, 88, 0.5019607843);
  border-radius: 30px;
}
.author li h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.author li p {
  font-size: 14px;
  margin-bottom: 8px;
}
.author li {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.author li:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.author li img {
  margin-bottom: 16px;
}
.author ul li:nth-child(1) h3 {
  color: #dab2ff;
}
.author ul li:nth-child(2) h3 {
  color: #ffdf20;
}
.author ul li:nth-child(3) h3 {
  color: #7bf1a8;
}
.author .box {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-block: 48px;
}
@media screen and (min-width: 1400px) {
  .author .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.author .box .box-item {
  max-width: 355px;
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, rgba(29, 41, 61, 0.6) 0%, rgba(15, 23, 43, 0.6) 100%);
  border: 1px solid rgba(49, 65, 88, 0.5019607843);
  border-radius: 14px;
  padding-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (min-width: 1400px) {
  .author .box .box-item {
    max-width: none;
    width: 436px;
    height: 102px;
  }
}
.author .box .box-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.author .box .box-item p {
  font-size: 14px;
}
.author .text-box {
  max-width: 896px;
  width: 100%;
  padding-block: 33px;
  margin: 0 auto;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(16, 78, 100, 0.3)), to(rgba(11, 79, 74, 0.3)));
  background: linear-gradient(90deg, rgba(16, 78, 100, 0.3) 0%, rgba(11, 79, 74, 0.3) 100%);
  border: 1px solid rgba(0, 184, 219, 0.3019607843);
  border-radius: 16px;
}

.info {
  padding: 83px 10px;
}
@media screen and (min-width: 1400px) {
  .info {
    padding-block: 70px;
  }
}
.info .container {
  max-width: 1024px;
  background: #1d293d;
  padding-block: 26px;
}
.info h2 {
  margin-bottom: 64px;
}
.info ul {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}
@media screen and (min-width: 1400px) {
  .info ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 16px;
  padding-left: 25px;
  max-width: 325px;
  width: 100%;
  height: 102px;
  background: linear-gradient(135deg, rgba(15, 23, 43, 0.8) 0%, rgba(15, 23, 43, 0.4) 100%);
  border: 1px solid rgba(49, 65, 88, 0.5019607843);
  border-radius: 14px;
}
.info li h3 {
  color: rgba(83, 234, 253, 0.6980392157);
  font-size: 14px;
  margin-bottom: 8px;
}
.info li p {
  color: #cefafe;
  font-size: 18px;
}
.info .text {
  color: rgba(206, 250, 254, 0.8);
  font-size: 18px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(16, 78, 100, 0.3)), to(rgba(11, 79, 74, 0.3)));
  background: linear-gradient(90deg, rgba(16, 78, 100, 0.3) 0%, rgba(11, 79, 74, 0.3) 100%);
  border: 1px solid rgba(0, 184, 219, 0.3019607843);
  padding-block: 33px;
  text-align: center;
  border-radius: 16px;
}

.myth {
  background: -webkit-gradient(linear, left top, left bottom, from(#1d293d), to(#0f172b));
  background: linear-gradient(180deg, #1d293d 0%, #0f172b 100%);
  padding: 80px 10px;
}
@media screen and (min-width: 1400px) {
  .myth {
    padding-block: 70px;
  }
}
.myth .wrapper {
  text-align: center;
}
.myth h2 {
  margin-bottom: 41px;
}
.myth .box {
  background: linear-gradient(135deg, #1d293d 0%, #0f172b 100%);
  border: 1px solid rgba(0, 184, 219, 0.5019607843);
  border-radius: 24px;
  -webkit-box-shadow: 0 0 40px rgba(0, 184, 219, 0.5);
          box-shadow: 0 0 40px rgba(0, 184, 219, 0.5);
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  max-width: 425px;
  width: 100%;
  height: 274px;
  margin: 0 auto;
  margin-bottom: 48px;
}

.price {
  background: -webkit-gradient(linear, left top, left bottom, from(#1d293d), to(#0f172b));
  background: linear-gradient(180deg, #1d293d 0%, #0f172b 100%);
  margin-top: -1px;
  padding: 26px 10px;
}
@media screen and (min-width: 1400px) {
  .price {
    padding-block: 100px;
  }
}
.price .wrapper {
  text-align: center;
}
.price h2 {
  margin-bottom: 20px;
}
.price ul {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 19px;
  margin-block: 20px;
}
@media screen and (min-width: 1400px) {
  .price ul {
    margin-block: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.price li {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  width: 290px;
  height: 170px;
  border: 1px solid rgba(49, 65, 88, 0.5019607843);
  border-radius: 14px;
}
.price li h3 {
  font-size: 20px;
}
.price ul li:nth-child(1) {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 44, 54, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(251, 44, 54, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}
.price ul li:nth-child(1) h3 {
  color: #ff6467;
}
.price ul li:nth-child(2) {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(246, 51, 154, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(246, 51, 154, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}
.price ul li:nth-child(2) h3 {
  color: #fb64b6;
}
.price ul li:nth-child(3) {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 105, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(255, 105, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}
.price ul li:nth-child(3) h3 {
  color: #ff8904;
}
.price ul li:nth-child(4) {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 184, 219, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 184, 219, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}
.price ul li:nth-child(4) h3 {
  color: #00d3f3;
}

.order {
  padding: 68px 10px;
}
@media screen and (min-width: 1400px) {
  .order {
    padding-block: 96px;
  }
}
.order h2 {
  margin-bottom: 24px;
}
.order .container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 128px;
}
@media screen and (min-width: 1400px) {
  .order .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.order .order-box {
  width: 100%;
  max-width: 672px;
  padding: 33px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(49, 65, 88, 0.5019607843);
  background: linear-gradient(135deg, rgba(29, 41, 61, 0.8) 0%, rgba(15, 23, 43, 0.8) 100%);
}
.order .field {
  margin-bottom: 28px;
}
.order .field-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #39e3ff;
  font-size: 18px;
  font-weight: 500;
}
.order .field-label svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.order .field-control {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(94, 131, 182, 0.45);
  border-radius: 14px;
  background: rgba(4, 15, 33, 0.45);
  outline: none;
  padding: 0 18px;
  color: #e9f6ff;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.order textarea.field-control {
  min-height: 138px;
  height: 138px;
  resize: vertical;
  padding: 18px;
}
.order .field-control::-webkit-input-placeholder {
  color: rgba(167, 188, 214, 0.38);
}
.order .field-control::-moz-placeholder {
  color: rgba(167, 188, 214, 0.38);
}
.order .field-control:-ms-input-placeholder {
  color: rgba(167, 188, 214, 0.38);
}
.order .field-control::-ms-input-placeholder {
  color: rgba(167, 188, 214, 0.38);
}
.order .field-control::placeholder {
  color: rgba(167, 188, 214, 0.38);
}
.order .field-control:focus {
  border-color: rgba(57, 227, 255, 0.65);
  -webkit-box-shadow: 0 0 0 4px rgba(57, 227, 255, 0.08);
          box-shadow: 0 0 0 4px rgba(57, 227, 255, 0.08);
  background: rgba(6, 18, 39, 0.72);
}
.order .submit-btn {
  width: 100%;
  min-height: 68px;
  border: none;
  border-radius: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, right top, from(#0092B8), to(#009689));
  background: linear-gradient(90deg, #0092B8 0%, #009689 100%);
  -webkit-box-shadow: 0px 25px 50px -12px rgba(0, 184, 219, 0.4);
          box-shadow: 0px 25px 50px -12px rgba(0, 184, 219, 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.order .submit-btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.order .submit-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.order .submit-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.order .form-note {
  margin-top: 20px;
  text-align: center;
  color: rgba(176, 195, 217, 0.72);
  font-size: 15px;
  line-height: 1.5;
}
.order .modal-form {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #222221;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.order .modal-form.show {
  opacity: 1;
}
.order .hidden {
  display: none;
}

.history {
  padding-inline: 10px;
  padding-block: 70px;
  background-image: url("../../images/bg-history.webp");
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .history {
    padding-block: 96px;
  }
}
.history .container {
  text-align: center;
}
.history .title-sec {
  background: rgba(173, 70, 255, 0.2);
  border: 1px solid rgba(173, 70, 255, 0.3019607843);
  color: #dab2ff;
}
.history h2 {
  background: -webkit-gradient(linear, left top, right top, from(#dab2ff), color-stop(50%, #fda5d5), to(#53eafd));
  background: linear-gradient(90deg, #dab2ff 0%, #fda5d5 50%, #53eafd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 47px;
}
.history .box {
  background: linear-gradient(135deg, rgba(29, 41, 61, 0.8) 0%, rgba(15, 23, 43, 0.8) 100%);
  border: 1px solid rgba(0, 184, 219, 0.3019607843);
  border-radius: 26px;
  -webkit-box-shadow: 0px 4px 50px 0px #00d3f2;
          box-shadow: 0px 4px 50px 0px #00d3f2;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 441px;
  width: 100%;
  height: 194px;
  margin: 0 auto;
  margin-top: 40px;
}
.history .box img {
  margin-bottom: 16px;
}
.history .box h3 {
  font-size: 24px;
  font-weight: 400;
  color: #a2f4fd;
}
.history .box p {
  font-weight: 400;
  font-size: 24px;
  color: #53eafd;
}

.book {
  padding: 50px 10px;
}
@media screen and (min-width: 1400px) {
  .book {
    padding-block: 100px;
  }
}
.book .wrapper {
  text-align: center;
}
.book h2 {
  margin-bottom: 24px;
}
.book ul {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 70px;
}
@media screen and (min-width: 1400px) {
  .book ul {
    margin-block: 64px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.book li {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 390px;
  width: 100%;
  height: 218px;
  background: -webkit-gradient(linear, left top, right top, from(#172236), to(#0f182b));
  background: linear-gradient(90deg, #172236 0%, #0f182b 100%);
  border-radius: 30px;
}
.book li h3 {
  font-size: 24px;
}
.book li p {
  font-size: 14px;
  margin-bottom: 12px;
}
.book li {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.book li:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.book li img {
  margin-bottom: 24px;
}
.book ul li:nth-child(1) {
  -webkit-box-shadow: 0px 4px 50px 0px #ffdf20;
          box-shadow: 0px 4px 50px 0px #ffdf20;
}
.book ul li:nth-child(1) h3 {
  color: #ffdf20;
}
.book ul li:nth-child(2) {
  -webkit-box-shadow: 0px 4px 50px 0px #194081;
          box-shadow: 0px 4px 50px 0px #194081;
}
.book ul li:nth-child(2) h3 {
  color: #8ec5ff;
}
.book ul li:nth-child(3) {
  -webkit-box-shadow: 0px 4px 50px 0px #09623a;
          box-shadow: 0px 4px 50px 0px #09623a;
}
.book ul li:nth-child(3) h3 {
  color: #7bf1a8;
}
.book .box {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-block: 48px;
}
@media screen and (min-width: 1400px) {
  .book .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.book .box .box-item {
  max-width: 355px;
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, rgba(29, 41, 61, 0.6) 0%, rgba(15, 23, 43, 0.6) 100%);
  border: 1px solid rgba(49, 65, 88, 0.5019607843);
  border-radius: 14px;
  padding-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (min-width: 1400px) {
  .book .box .box-item {
    max-width: none;
    width: 436px;
    height: 102px;
  }
}
.book .box .box-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.book .box .box-item p {
  font-size: 14px;
}
.book .text-box {
  max-width: 896px;
  width: 100%;
  padding-block: 33px;
  margin: 0 auto;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(16, 78, 100, 0.3)), to(rgba(11, 79, 74, 0.3)));
  background: linear-gradient(90deg, rgba(16, 78, 100, 0.3) 0%, rgba(11, 79, 74, 0.3) 100%);
  border: 1px solid rgba(0, 184, 219, 0.3019607843);
  border-radius: 16px;
}

.about {
  background: -webkit-gradient(linear, left top, left bottom, from(#0F172B), to(#1D293D));
  background: linear-gradient(180deg, #0F172B 0%, #1D293D 100%);
  padding: 0px 10px 26px 10px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .about {
    padding-block: 187px;
  }
  .about .title-sec {
    margin-right: auto;
    margin-left: 0;
  }
  .about .button {
    margin-right: auto;
    margin-left: 0;
  }
}
.about .container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about .about-img {
  min-width: 400px;
  max-width: 400px;
}
@media screen and (min-width: 1400px) {
  .about .about-img {
    max-width: none;
    width: auto;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-87%);
            transform: translateX(-87%);
  }
}
.about .wrapper {
  max-width: 592px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1400px) {
  .about .wrapper {
    margin-left: auto;
    text-align: start;
  }
}
.about ul {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-block: 16px;
}
@media screen and (min-width: 1400px) {
  .about ul {
    margin-block: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.about li {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 186px;
  height: 118px;
  border: 1px solid rgba(254, 154, 0, 0.2);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 177, 0, 0.1)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(240, 177, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 10px;
  text-align: center;
  color: #ffdf20;
  font-size: 14px;
}
.about li img {
  height: 36px;
}
.about .button {
  margin-top: 52px;
}

.contacts {
  padding: 109px 10px 64px 10px;
}
@media screen and (min-width: 1400px) {
  .contacts {
    padding-top: 115px;
    padding-bottom: 77px;
    position: relative;
  }
}
.contacts .contacts-img {
  width: 355px;
}
@media screen and (min-width: 1400px) {
  .contacts .contacts-img {
    width: auto;
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(3%);
            transform: translateX(3%);
  }
}
.contacts h1 {
  text-transform: none;
}
.contacts .container {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 31px;
}
@media screen and (min-width: 1400px) {
  .contacts .container {
    gap: 84px;
  }
}
.contacts .container div {
  max-width: 644px;
  width: 100%;
}
.contacts ul {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.contacts li {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
}
@media screen and (min-width: 1400px) {
  .contacts li {
    font-size: 24px;
  }
}
.contacts li h4 {
  font-weight: 900;
}

.footer {
  padding: 48px 10px;
  background: #020618;
}
.footer .box-top {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}
@media screen and (min-width: 1400px) {
  .footer .box-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 32px;
  }
}
.footer .box {
  max-width: 378px;
  height: 167px;
  width: 100%;
  border-radius: 20px;
}
.footer .box h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 15px;
  color: #53eafd;
}
.footer .box li,
.footer .box li a {
  color: rgba(206, 250, 254, 0.6);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.footer .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
.footer .box-1 h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
  color: #53eafd;
}
.footer .box-1 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(206, 250, 254, 0.6);
}
.footer .policies-list {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
  margin-bottom: 16px;
  border-top: 1px solid #1D293D;
  padding-top: 33px;
}
@media screen and (min-width: 1400px) {
  .footer .policies-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 53px;
    margin-bottom: 24px;
  }
}
.footer .policies-list li a {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgba(206, 250, 254, 0.5019607843);
  text-decoration: none;
  text-align: center;
}
.footer .copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: rgba(206, 250, 254, 0.4);
}

.policies {
  color: rgba(206, 250, 254, 0.8);
  padding: 120px 10px 40px 10px;
}
.policies h1 {
  background: -webkit-gradient(linear, left top, right top, from(#53eafd), color-stop(50%, #46ecd5), to(#53eafd));
  background: linear-gradient(90deg, #53eafd 0%, #46ecd5 50%, #53eafd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 24px;
}
@media screen and (min-width: 1400px) {
  .policies h1 {
    text-align: center;
    font-size: 60px;
  }
}
.policies h2 {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
.policies a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.policies ul {
  list-style: disc;
  padding-left: 20px;
}/*# sourceMappingURL=main.css.map */