/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-black-brown: #202020;
  --color-bright-orange: #EB5E00;
  --color-bright-orange-opacity: rgba(235, 94, 0, 0.3);
  --color-grey: #979797;
  --color-s-grey: #7F7F7F;
  --color-light-grey: #D8D8D8;
  --color-grey-brown: #3f3f3f;
  --grey-umber: #2c2c2c;
  --background-gradient: radial-gradient(170.38% 396.73% at 50% 0%, #ffffff 0%, #000000 100%);
  --base-fonts: "Avenir Next Cyr";
  --font-montserrat: "Montserrat";
}

@font-face {
  font-family: "Avenir Next Cyr";
  src: local("Avenir Next Cyr Bold"), local("AvenirNextCyr-Bold"), url("../fonts/avenir/AvenirNextCyr-Bold.woff2") format("woff2"), url("../fonts/avenir/AvenirNextCyr-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: local("Avenir Next Cyr Regular"), local("AvenirNextCyr-Regular"), url("../fonts/avenir/AvenirNextCyr-Regular.woff2") format("woff2"), url("../fonts/avenir/AvenirNextCyr-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/montserrat/Montserrat-Bold.woff2") format("woff2"), url("../fonts/montserrat/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Black"), local("Montserrat-Black"), url("../fonts/montserrat/Montserrat-Black.woff2") format("woff2"), url("../fonts/montserrat/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--base-fonts);
  background-color: var(--color-black-brown);
  scroll-behavior: smooth;
}
body.noscroll {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
}

.blur-bg {
  position: relative;
  z-index: 1;
}
.blur-bg::before {
  content: "";
  position: absolute;
  display: block;
  top: 127px;
  right: 259.51px;
  width: 452px;
  height: 452px;
  border-radius: 50%;
  background: var(--color-bright-orange-opacity);
  background-blend-mode: normal;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  z-index: -1;
}
.blur-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-rounded {
  position: relative;
  max-width: 374px;
  width: 100%;
  margin: 0 auto;
  padding: 24.5px;
  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;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  border-radius: 39px;
  z-index: 2;
}
.btn-rounded.box-shadow {
  -webkit-box-shadow: 0px 20px 64px rgba(238, 93, 0, 0.51);
          box-shadow: 0px 20px 64px rgba(238, 93, 0, 0.51);
}
.btn-rounded.orange {
  background: var(--color-bright-orange);
}
.btn-rounded.white {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-rounded svg {
  width: 26px;
  height: 31px;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-title {
  font-family: var(--font-montserrat);
  font-size: 48px;
  font-weight: 900;
  line-height: 60px;
  text-align: left;
  letter-spacing: -0.11px;
  color: var(--color-white);
}
.section-title span {
  color: var(--color-bright-orange);
}

.header {
  padding: 50px 150px;
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo {
  font-family: var(--font-montserrat);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.06px;
  color: var(--color-white);
  text-transform: uppercase;
}
.header-logo span {
  color: var(--color-bright-orange);
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 47px;
}

.nav-list-item-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  border-bottom: 1px solid transparent;
}
.nav-list-item-link::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-bright-orange);
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.nav-list-item-link:hover::after {
  width: 100%;
}

.header-toggle {
  display: none;
  max-width: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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: 4px;
  cursor: pointer;
}
.header-toggle::before, .header-toggle::after {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-white);
}
.header-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-white);
}

.header-mob {
  position: fixed;
  top: 0;
  left: 0;
  padding: 64px 28px;
  max-width: 428px;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  background-color: var(--color-black);
  z-index: 9999;
}
.header-mob.active {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
.header-mob .nav-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 28px;
}
.header-mob .close {
  margin-bottom: 82px;
  margin-right: auto;
}
.header-mob .close span {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 4px;
  border-radius: 2px;
}
.header-mob .close::before {
  display: none;
}
.header-mob .close::after {
  top: -8px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  height: 4px;
  border-radius: 2px;
}

.intro {
  padding-top: 63px;
  background: url("../img/intro-bg.svg") no-repeat center/contain;
}

.intro-wrap {
  padding-bottom: 99.5px;
  border-bottom: 1px solid var(--color-grey);
}

.intro-title {
  margin-bottom: 15px;
  font-family: var(--font-montserrat);
  font-size: 64px;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.15px;
  text-align: center;
}
.intro-title span {
  color: var(--color-bright-orange);
}

.intro-subtitle {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
}

.intro-images {
  margin: -70px auto 46px auto;
  width: 1077.01px;
  height: 606px;
}
.intro-images::after {
  content: "";
  position: absolute;
  bottom: -106px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 547px;
  height: 158px;
  background-color: #202020;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  opacity: 1;
  z-index: 2;
}

.intro-img {
  -o-object-position: -23px;
     object-position: -23px;
}

.conditions {
  padding-top: 103.5px;
}

.conditions-wrap {
  padding-bottom: 49.5px;
  border-bottom: 1px solid var(--color-grey);
}

.conditions-head {
  margin-bottom: 99px;
  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;
}

.conditions-title {
  text-align: center;
  padding-top: 10px;
  padding-right: 83px;
  border-right: 1px solid var(--color-grey);
}

.conditions-call {
  padding-left: 83px;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  color: var(--color-white);
}
.conditions-call span {
  font-weight: bold;
}

.conditions-list {
  margin-bottom: 47.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 81.5px;
}

.conditions-list-item {
  max-width: 350px;
}

.conditions-list-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 27px;
}

.conditions-list-item__head picture {
  width: 100%;
  height: 100%;
  max-width: 36px;
  max-height: 36px;
}

.conditions-list-item__icon {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.conditions-list-item__title {
  margin-top: -5px;
  font-family: var(--font-montserrat);
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color: var(--color-white);
  background: -o-radial-gradient(50% 0%, 170.38% 418.36%, #ffffff 0%, #000000 100%);
  background: radial-gradient(170.38% 418.36% at 50% 0%, #ffffff 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.conditions-list-item__desc {
  margin-top: 20.4px;
}
.conditions-list-item__desc p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.2px;
  color: var(--color-white);
}

.statistics {
  padding: 26.2px;
  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: 27px;
  border-radius: 22px;
  border: 1px solid var(--color-grey);
}
.statistics picture {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 50px;
}

.statistics-icon {
  width: 60px;
  height: 50px;
}

.statistics-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.statistics-count span {
  font-family: var(--font-montserrat);
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color: var(--color-white);
  background: -o-radial-gradient(50% 0%, 170.38% 159.57%, #ffffff 0%, #000000 100%);
  background: radial-gradient(170.38% 159.57% at 50% 0%, #ffffff 0%, #000000 100%);
  background-blend-mode: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statistics-info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.2px;
  color: var(--color-white);
}
.statistics-info p span {
  font-weight: bold;
}

.note {
  margin-top: 51px;
  padding: 24px 75px 24px 60px;
  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: 56px;
  border-radius: 24px;
  border: 1px solid var(--color-grey-brown);
  background: var(--grey-umber);
}

.note picture {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.note picture,
.note-icon {
  width: 60px;
  height: 60px;
}

.note-desc p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-white);
}

.benefits {
  padding-top: 69.5px;
}

.benefits-wrap {
  padding-bottom: 49.5px;
  border-bottom: 1px solid var(--color-grey);
}

.benefits-title {
  font-size: 46px;
}

.benefits-list {
  margin-top: 51px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.benefits-list-item {
  position: relative;
  padding: 24px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 22px;
  border: 1px solid var(--color-grey);
  overflow: hidden;
}
.benefits-list-item:nth-child(1) {
  width: 70.264%;
}
.benefits-list-item:nth-child(2) {
  width: 27.106%;
}
.benefits-list-item:nth-child(2) img {
  bottom: -42px;
  right: 10px;
}
.benefits-list-item:nth-child(3) {
  width: 32.457%;
}
.benefits-list-item:nth-child(4) {
  width: 37.72%;
}
.benefits-list-item:nth-child(5) {
  width: 24.475%;
}
.benefits-list-item:nth-child(5) img {
  bottom: -29px;
}
.benefits-list-item:nth-child(6) {
  width: 35.088%;
}
.benefits-list-item:nth-child(7) {
  width: 62.281%;
}
.benefits-list-item:nth-child(8) {
  width: 22.72%;
}
.benefits-list-item:nth-child(8) img {
  right: 80px;
  bottom: -42px;
}
.benefits-list-item:nth-child(9) {
  width: 38.2467%;
}
.benefits-list-item:nth-child(10) {
  width: 33.773%;
}
.benefits-list-item:nth-child(10) img {
  bottom: -42px;
}

.benefits-list-item picture {
  max-width: 110px;
  max-height: 110px;
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.benefits-list-item__title {
  background: -o-radial-gradient(50% 0%, 170.38% 1587.5%, #ffffff 0%, #000000 100%);
  background: radial-gradient(170.38% 1587.5% at 50% 0%, #ffffff 0%, #000000 100%);
  font-family: var(--font-montserrat);
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color: var(--color-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-list-item__icon {
  position: relative;
  width: 110px;
  height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
}

.access {
  padding-bottom: 100px;
  overflow: hidden;
}

.access-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}

.access-left {
  padding-top: 69.5px;
}

.access-list {
  margin-top: 80px;
}

.access-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 44px;
}
.access-list-item:not(:last-child) {
  margin-bottom: 40px;
}
.access-list-item:first-child .access-list-item__num {
  width: 134px;
  text-align: center;
}

.access-list-item__num {
  font-family: var(--font-montserrat);
  font-size: 223px;
  font-weight: 900;
  line-height: 168px;
  letter-spacing: -0.53px;
  color: var(--color-black-brown);
  text-shadow: 0px 1px 0 rgb(235, 94, 0), 0px -1px 0 rgb(235, 94, 0), 1px 0px 0 rgb(235, 94, 0), -1px 0px 0 rgb(235, 94, 0), 1px 1px 0 rgb(235, 94, 0), 1px -1px 0 rgb(235, 94, 0), -1px 1px 0 rgb(235, 94, 0), -1px -1px 0 rgb(235, 94, 0);
  -webkit-text-shadow: 0px 1px 0 rgb(235, 94, 0), 0px -1px 0 rgb(235, 94, 0), 1px 0px 0 rgb(235, 94, 0), -1px 0px 0 rgb(235, 94, 0), 1px 1px 0 rgb(235, 94, 0), 1px -1px 0 rgb(235, 94, 0), -1px 1px 0 rgb(235, 94, 0), -1px -1px 0 rgb(235, 94, 0);
  -moz-text-shadow: 0px 1px 0 rgb(235, 94, 0), 0px -1px 0 rgb(235, 94, 0), 1px 0px 0 rgb(235, 94, 0), -1px 0px 0 rgb(235, 94, 0), 1px 1px 0 rgb(235, 94, 0), 1px -1px 0 rgb(235, 94, 0), -1px 1px 0 rgb(235, 94, 0), -1px -1px 0 rgb(235, 94, 0);
}

.access-list-item__desc {
  margin-left: auto;
  max-width: 425px;
}
.access-list-item__desc h3, .access-list-item__desc p, .access-list-item__desc a, .access-list-item__desc li {
  font-size: 18px;
  line-height: 28.2px;
  color: var(--color-white);
  list-style: auto;
}
.access-list-item__desc h3 {
  font-weight: bold;
}
.access-list-item__desc p {
  font-weight: 400;
}
.access-list-item__desc a {
  color: var(--color-bright-orange);
}
.access-list-item__desc ol {
  margin-left: 19px;
}

.access-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.access-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}

.access-images {
  width: 450px;
  height: 550px;
}
.access-images::before {
  top: 80px;
  right: 0;
}
.access-images::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 547px;
  height: 158px;
  background-color: #202020;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  opacity: 1;
  z-index: 2;
}

.access-img {
  -o-object-position: 60% -30px;
     object-position: 60% -30px;
}

.access-or {
  margin: 14px 0;
  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;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--color-s-grey);
}
.access-or::before, .access-or::after {
  content: "";
  position: relative;
  display: block;
  width: 127px;
  height: 1px;
  background-color: var(--color-grey);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-montserrat);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.06px;
  color: var(--color-white);
  text-transform: uppercase;
}
.footer-logo span {
  color: var(--color-bright-orange);
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 47px;
}

.footer-list-item-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  border-bottom: 1px solid transparent;
}
.footer-list-item-link::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-bright-orange);
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.footer-list-item-link:hover::after {
  width: 100%;
}