@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Playfair+Display&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

::-moz-selection {
  background-color: #c5a23b;
  color: #fff;
}

::selection {
  background-color: #c5a23b;
  color: #fff;
}

html,
body {
  position: relative;
  height: 100%;
}

.site-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  will-change: transform;
}

body {
  line-height: 1.4;
  font-family: "PT Sans", sans-serif;
}
body {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  body {
    font-size: calc(1.1235955056vw + 2.8539325843px);
  }
}
@media screen and (min-width: 1170px) {
  body {
    font-size: 16px;
  }
}

[data-swiper-parallax-y] {
  will-change: transform;
}

h1,
h2,
h3 {
  color: #151554;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1;
}

h4 {
  color: #C5A23B;
  font-weight: bold;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

img {
  display: block;
  margin: 0;
  max-width: 100%;
}

section {
  overflow-y: auto !important;
  background-color: #f8f8f8;
}
section h2 {
  line-height: 1;
}
section h2 {
  font-size: 85px;
}
@media screen and (min-width: 992px) {
  section h2 {
    font-size: calc(8.0818965517vw + 4.8275862069px);
  }
}
@media screen and (min-width: 1920px) {
  section h2 {
    font-size: 160px;
  }
}

.screen-block {
  min-height: 100%;
  height: auto;
  position: relative;
}
.screen-block {
  padding-right: 85px;
}
@media screen and (min-width: 992px) {
  .screen-block {
    padding-right: calc(8.4269662921vw + 1.404494382px);
  }
}
@media screen and (min-width: 1170px) {
  .screen-block {
    padding-right: 100px;
  }
}

.blue-gradient {
  background: linear-gradient(150deg, #282895 5.34%, #181869 114.76%);
  color: #E0E0FF;
}
.blue-gradient h2 {
  color: #E0E0FF;
}

.star {
  position: absolute;
}

.btn {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  background-color: #C5A23B;
  color: #fff;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn {
  padding-top: 22px;
  padding-bottom: 22px;
}
@media screen and (min-width: 992px) {
  .btn {
    padding-top: calc(2.2471910112vw - 0.2921348315px);
    padding-bottom: calc(2.2471910112vw - 0.2921348315px);
  }
}
@media screen and (min-width: 1170px) {
  .btn {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}
.btn {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (min-width: 992px) {
  .btn {
    padding-left: calc(5.0561797753vw - 0.1573033708px);
    padding-right: calc(5.0561797753vw - 0.1573033708px);
  }
}
@media screen and (min-width: 1170px) {
  .btn {
    padding-left: 59px;
    padding-right: 59px;
  }
}
.btn {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .btn {
    font-size: calc(2.2471910112vw - 8.2921348315px);
  }
}
@media screen and (min-width: 1170px) {
  .btn {
    font-size: 18px;
  }
}
.btn {
  border-radius: 99px;
}
@media screen and (min-width: 992px) {
  .btn {
    border-radius: calc(10.1123595506vw - 1.3146067416px);
  }
}
@media screen and (min-width: 1170px) {
  .btn {
    border-radius: 117px;
  }
}
.btn:hover {
  background-color: #cbab4f;
}

.header {
  display: none;
}

.text-center {
  text-align: center;
}

.calc {
  width: 200px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  z-index: 15000;
  font-size: 16px;
  background-color: #fff;
}
.calc.hidden {
  display: none;
}
.calc .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 10px;
}
.calc .row span:first-child {
  font-weight: bold;
}
.calc input {
  width: 100%;
  flex-grow: 1;
  padding: 5px;
}

.overflow {
  overflow-y: hidden !important;
}

.animation-1 {
  opacity: 0;
}
.animation-1.active {
  animation: fade-in 2s ease-in-out 0s 1 forwards;
}

.animation-2 {
  opacity: 0;
}
.animation-2.active {
  animation: fade-in 2s ease-in-out 0.5s 1 forwards;
}

.animation-3 {
  opacity: 0;
}
.animation-3.active {
  animation: fade-in-up 1s ease-in-out 1s 1 forwards;
}

.animation-4 {
  opacity: 0;
}
.animation-4.active {
  animation: fade-in 2s ease-in-out 1s 1 forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-btn {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
}
.menu-btn.burger-menu-close {
  justify-content: center;
}
.menu-btn.burger-menu-close img {
  width: 9px;
  height: 9px;
}
.menu-btn img {
  width: 11px;
  height: 9px;
  transition: all 0.2s;
}
.menu-btn:hover img {
  transform: scale(1.05);
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 50px;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 0;
  color: rgba(167, 167, 167, 1);
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #ffffff;
  background-image: none;
  border-radius: 13px;
  cursor: pointer;
}
.checkbox-container a {
  text-decoration: underline;
  font-weight: bold;
  color: #a7a7a7;
}
.checkbox-container input:checked ~ .checkbox-checkmark {
  background-image: url('../../../../images/landing-pages/ru-human-evolution/checkbox.svg');
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}/*# sourceMappingURL=global.css.map */