html {
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

/* 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,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #01010f;
  color: #eceff1;
}

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

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(90deg, #1823ae 0%, #545fe0 54%, #1823ae 100%);
  color: #fff;
  border-radius: 1.2rem;
  padding: 4rem 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: 8%;
  text-transform: uppercase;
}

.hero {
  background-image: url("./../images/bg/hero-bg.png");
  background-size: cover;
}
.hero__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 14rem 0;
  display: flex;
  position: relative;
}
.hero__label {
  background-color: #08131f;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 100%;
  padding: 2.8rem 4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-radius: 1.2rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border: 1px solid #14293a;
}
.hero__label-icon {
  background-image: url("./../images/icons/hero-label-icon.svg");
  width: 2rem;
  height: 2rem;
  background-size: cover;
  background-position: center;
}
.hero__title {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-weight: 400;
  font-size: 14.4rem;
  line-height: 100%;
  margin: 6rem 0 2.4rem;
}
.hero__text {
  font-style: Medium;
  font-size: 3.2rem;
  line-height: 100%;
}
.hero__btn {
  max-width: 78rem;
  width: 100%;
  margin: 6rem 0 2rem;
}
.hero__tip {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 110%;
  color: #bebebe;
}
.hero__stiker {
  position: absolute;
  bottom: 10rem;
  right: 0;
  width: 22.4rem;
  height: 24rem;
  pointer-events: none;
}
.hero__stiker img {
  width: 100%;
  height: 100%;
}

.dot {
  position: relative;
}
.dot::before {
  content: "";
  position: absolute;
  bottom: -15rem;
  width: 100%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  height: 15rem;
  background-color: #01010f;
  z-index: 1;
}
.dot__content {
  display: flex;
  gap: 4rem;
  position: relative;
}
.dot__left {
  display: flex;
  flex-direction: column;
  padding: 4rem;
  height: 80rem;
  justify-content: space-between;
  max-width: 53.3rem;
  width: 100%;
  background-image: url("./../images/bg/card-bg.png");
  background-size: cover;
  border: 1px solid #14293a;
  border-radius: 2rem;
  position: sticky;
  top: 2rem;
}
.dot__left-title {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 140%;
}
.dot__left-text {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
}
.dot__right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  position: relative;
}
.dot__right-box {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 4rem 2rem 4rem 4rem;
  border: 1px solid #14293a;
  background-color: #08131f;
  border-radius: 2rem;
  position: sticky;
  top: 2rem;
}
.dot__right-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dot__right-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 140%;
}
.dot__right-dots {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.dot__right-dots div {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: block;
  background-color: #172d44;
}
.dot__right-dots div.active {
  background-color: #7592b0;
}
.dot__right-text {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
  color: #bebebe;
}

.facts {
  background-color: #f2f5f6;
  position: relative;
}
.facts::before {
  content: "";
  position: absolute;
  bottom: -15rem;
  width: 100%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  height: 15rem;
  background-color: #f2f5f6;
  z-index: 1;
}
.facts__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 24rem 0 14rem;
}
.facts__heading {
  display: flex;
  align-items: center;
  gap: 3.4rem;
}
.facts__title {
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 140%;
  color: #212121;
  max-width: 53.3rem;
  width: 100%;
}
.facts__heading-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 6rem;
  border: 1px solid #ececec;
  background-color: #ffffff;
  border-radius: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.facts__heading-box.show {
  opacity: 1;
  transform: translateY(0);
}
.facts__box-number {
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 140%;
  color: #212121;
  flex-shrink: 0;
}
.facts__box-text {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
  color: #212121;
}
.facts__row {
  display: flex;
  gap: 2rem;
}
.facts__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem;
  border: 1px solid #ececec;
  background-color: #ffffff;
  border-radius: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.facts__box.show {
  opacity: 1;
  transform: translateY(0);
}
.facts__box.big {
  max-width: 83rem;
  width: 100%;
  flex-shrink: 0;
}

.history {
  overflow: hidden;
  padding: 21rem 0 6rem;
}
.history__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.history__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 4rem;
}
.history__title {
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 140%;
}
.history__btns {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.history__btns button {
  width: 6rem;
  height: 6rem;
  background-color: #f2f5f6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  transition: all 0.3s ease 0s;
}
.history__btns button.swiper-button-disabled {
  opacity: 0.5;
}
.history__btns button img {
  width: 100%;
  height: 100%;
}
.history__btns button:hover {
  opacity: 0.6;
}
.history__slider {
  padding-left: 12rem;
  margin-bottom: 4rem;
}
.history__slide {
  background: #08131f;
  border: 1px solid #14293a;
  border-radius: 2rem;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  height: 100%;
}
.history__slide-heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.history__slide-image {
  width: 7rem;
  height: 7rem;
}
.history__slide-image img {
  width: 100%;
  height: 100%;
}
.history__slide-box {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.history__slide-name {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 140%;
}
.history__slide-job {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 140%;
}
.history__slide-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.history__slide-rate {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.history__slide-text {
  font-weight: 400;
  font-size: 2rem;
  line-height: 140%;
}
.history__btn {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
}

.next-slide {
  rotate: 180deg;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  max-width: 50rem;
  width: 100%;
  height: auto !important;
}

.calendar__box-arrow {
  margin-top: auto;
  flex-shrink: 0;
}

.calendar__new-disabled {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 140%;
  display: none;
  color: #e9f1f9;
  margin-top: auto;
}

.calendar {
  padding-bottom: 18rem;
}
.calendar__box {
  display: flex;
  flex-direction: column;
  border: 1px solid #4f80a8;
  background-color: #050d16;
  border-radius: 2rem;
  padding: 4rem;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  max-width: 53rem;
  aspect-ratio: 1/1.5;
}
.calendar__box.inactive div {
  opacity: 0.5;
  pointer-events: none;
}
.calendar__box.inactive .calendar__box-arrow {
  display: none;
}
.calendar__box.inactive .calendar__new-disabled {
  display: block;
}
.calendar__box:hover {
  box-shadow: 0px 0px 42.8px 0px #7b99bc;
}
.calendar__box:hover .calendar__box-arrow {
  background-color: #7391b3;
}
.calendar__box.center {
  flex-direction: column;
}
.calendar__box.center .calendar__box-day {
  align-self: center;
}
.calendar__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.calendar__title {
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 140%;
}
.calendar__text {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 140%;
  max-width: 59.5rem;
  width: 100%;
}
.calendar__box-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  border: 1px solid #14293a;
  background-color: #2e4055;
  border-radius: 50%;
  transition: all 0.3s ease 0s;
  margin-left: auto;
}
.calendar__new-title {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 120%;
  color: #9eb4c6;
  margin-bottom: 2.4rem;
}
.calendar__new-text {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
  color: #9eb4c6;
}
.calendar__box-day {
  font-size: 100px;
  font-weight: 400;
  color: #9eb4c6;
}
.calendar__new-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.calendar__new-box span {
  font-size: 4rem;
  line-height: 140%;
  color: #9eb4c6;
}
.calendar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  position: relative;
}

.calendar__modal-active,
.calendar__modal-close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background-color: rgba(1, 1, 15, 0.2901960784);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  padding: 5rem;
}

.modal-close__content {
  position: relative;
  max-width: 92rem;
  width: 100%;
  border: 1px solid #4f80a8;
  box-shadow: 0px 0px 40px 0px rgba(123, 153, 188, 0.631372549);
  background-color: #050d16;
  padding: 8rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 5.2rem;
}
.modal-close__title {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 140%;
  text-align: center;
}
.modal-close__text {
  text-align: center;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 140%;
}
.modal-close__heading {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 140%;
  text-align: center;
}

.close-modal-active-icon,
.close-modal-icon {
  position: absolute;
  top: 0rem;
  right: -7rem;
  width: 5rem;
  height: 5rem;
}
.close-modal-active-icon::before,
.close-modal-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #ffffff;
  transform: rotate(45deg);
  border-radius: 1rem;
}
.close-modal-active-icon::after,
.close-modal-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #ffffff;
  transform: rotate(-45deg);
  border-radius: 1rem;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.4274509804);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal.active {
  display: flex;
}

.form {
  max-width: 81.5rem;
  width: 100%;
  background-color: #ffffff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  position: relative;
}

.form__title {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  text-align: center;
  margin-bottom: 2rem;
  color: #2a2a2a;
}

.form__text {
  font-family: Montserrat;
  font-weight: 300;
  font-size: 2rem;
  line-height: 100%;
  text-align: center;
  color: #141414;
  opacity: 0.6;
}

.form__inputs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 4rem;
  width: 100%;
}

.modal-close {
  position: absolute;
  top: 0rem;
  right: -5rem;
  width: 4.6rem;
  height: 4.6rem;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.6rem;
  height: 0.4rem;
  background-color: #fff;
  transform-origin: center;
  transition: background-color 0.3s;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.form-control {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 2rem 1.2rem;
  font-size: 1.6rem;
  color: #000;
  border-bottom: 1px solid #aeaeae;
}

.form-input::-moz-placeholder {
  color: #aeaeae;
}

.form-input::placeholder {
  color: #aeaeae;
}

.form-input.err + .error {
  display: block;
}

.error {
  position: absolute;
  top: 0;
  right: 0;
  color: red;
  font-size: 1.2rem;
  display: none;
}

.form-btn {
  width: 100%;
  margin-top: 2rem;
}

.form-info {
  margin-top: 2rem;
  text-align: center;
  color: #474747;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
}

.modal-success {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.4274509804);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0 4rem;
}
.modal-success__content {
  max-width: 81.5rem;
  width: 100%;
  background-color: #ffffff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  position: relative;
}
.modal-success__icon {
  width: 16rem;
  height: 16rem;
}
.modal-success__icon img {
  width: 100%;
  height: 100%;
}
.modal-success__title {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 140%;
  text-align: center;
  margin: 4rem 0 2rem;
  color: #000;
}
.modal-success__text {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 100%;
  text-align: center;
  color: #646464;
  max-width: 45rem;
  margin: 0 auto;
}

.modal-success-close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 4.6rem;
  height: 4.6rem;
  cursor: pointer;
}
.modal-success-close::before,
.modal-success-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.6rem;
  height: 0.4rem;
  background-color: #000;
  transform-origin: center;
  transition: background-color 0.3s;
}
.modal-success-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-success-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.footer {
  border-top: 1px solid #464646;
}
.footer__content {
  display: flex;
  flex-direction: column;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  padding: 9.5rem 0;
}
.footer__top-wrapper {
  border-bottom: 1px solid #464646;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.footer__lable {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 100%;
}
.footer__social-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer__social-link {
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  padding: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease 0s;
}
.footer__social-link img {
  filter: brightness(0) invert(1);
}
.footer__social-link:hover {
  opacity: 0.7;
}
.footer__social-link.last {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  width: auto;
  padding: 2rem 7rem 2rem 1rem;
  gap: 1rem;
  border-radius: 1rem;
  max-width: 31.7rem;
  width: 100%;
  color: #ffffff;
}
.footer__support {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 75rem;
  width: 100%;
  flex-shrink: 0;
}
.footer__support-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.footer__support-item {
  width: 100%;
  max-width: 36.8rem;
}
.footer__support-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.2rem;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 100%;
  color: #ffffff;
  width: 100%;
  border: 1px solid #909090;
  border-radius: 1.2rem;
  transition: opacity 0.3s ease 0s;
}
.footer__support-link img {
  filter: brightness(0) invert(1);
}
.footer__support-link:hover {
  opacity: 0.7;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 3.8rem 0 5.4rem;
}
.footer__offer {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  color: #ffffff;
}
.footer__copyright {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  text-align: right;
}

@media (max-width: 768px) {
  .for-pc {
    display: none;
  }
  .calendar__title {
    font-size: 2.8rem;
  }
  .calendar__box {
    position: sticky;
    top: 5rem;
  }
  .modal {
    padding: 5rem;
  }
  .modal-close__content {
    padding: 8rem 4rem;
  }
  .button {
    font-size: 2.2rem;
  }
  .for-mobile {
    display: none;
  }
  .hero {
    background-image: url("./../images/bg/hero-bg-mobile.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 40rem;
    padding: 4rem;
  }
  .hero__content {
    padding: 0;
  }
  .hero__title {
    font-size: 10rem;
    margin: 4rem 0 1rem;
  }
  .hero__label {
    font-size: 2rem;
    padding: 3rem 4rem;
  }
  .hero__text {
    font-size: 1.8rem;
  }
  .hero__btn {
    margin: 44rem 0 1.5rem;
  }
  .hero__tip {
    font-size: 2.2rem;
  }
  .hero__stiker {
    bottom: 15rem;
  }
  .dot__content {
    flex-direction: column;
    padding: 4rem;
  }
  .dot__left {
    max-width: 100%;
    height: 63rem;
  }
  .dot__left-title {
    font-size: 2.4rem;
  }
  .dot__left-text {
    font-size: 2rem;
  }
  .dot__right-box {
    top: 67rem;
  }
  .facts__content {
    padding: 20rem 4rem 5rem;
  }
  .facts__row,
  .facts__heading {
    flex-direction: column;
  }
  .history {
    padding: 21rem 0 6rem 4rem;
  }
  .history__slider {
    padding-left: 0;
  }
  .history__title {
    max-width: 32rem;
    font-size: 3.6rem;
  }
  .history__btns button {
    width: 8rem;
    height: 8rem;
  }
  .history__heading,
  .history__btn {
    padding-right: 4rem;
  }
  .history__btn {
    padding-left: 4rem;
  }
  .calendar__inner-second,
  .calendar__inner {
    display: flex;
    flex-wrap: wrap;
  }
  .calendar__content {
    padding: 0 4rem;
  }
  .calendar__box-arrow {
    flex-shrink: 0;
  }
  .footer__top {
    flex-direction: column;
    gap: 8rem;
    padding: 5rem 0;
  }
  .footer {
    padding: 4rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 3rem;
  }
  .footer__copyright {
    text-align: left;
  }
  .footer__offer {
    text-decoration: underline !important;
  }
  .close-modal-active-icon,
  .close-modal-icon {
    top: 4rem;
    right: 4rem;
  }
} /*# sourceMappingURL=main.css.map */
