@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1;
  text-rendering: optimizeSpeed;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
select,
textarea {
  all: unset;
  box-sizing: border-box;
}

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

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

html,
body {
  font-size: 62.5%;
  font-family: "Onest", sans-serif;
  background-color: #0e0e0f;
  color: #ffffff;
}

.container {
  max-width: 144rem;
  margin: 0 auto;
}
@media (max-width: 1540px) {
  .container {
    max-width: 138rem;
  }
}

.header {
  width: 100%;
  text-align: center;
  font-weight: 300;
  font-style: Light;
  font-size: 1.6rem;
  line-height: 120%;
  letter-spacing: normal;
  padding: 1.05rem;
  color: rgba(255, 255, 255, 0.2509803922);
  background-color: #181818;
}
.header span:first-of-type {
  color: #00a99d;
}
.header span:nth-of-type(2) {
  color: #ffffff;
}

.hero {
  min-height: calc(100vh - 5rem);
  padding: 3rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  max-width: 39.3rem;
  margin: 0 auto;
}
.hero .container .hero__img {
  border-radius: 100%;
  width: 28rem;
  height: 28rem;
  overflow: hidden;
  position: relative;
  padding: 0.1rem;
  margin: 0 auto 1.6rem;
}
.hero .container .hero__img img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.hero .container .hero__img::before {
  content: "";
  border-radius: 100%;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 59.62%, #ffffff 100%);
}
.hero .container .hero__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.hero .container .hero__content-title {
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 3.2rem;
  letter-spacing: normal;
  text-align: center;
  display: flex;
  gap: 0.8rem;
  align-items: flex-end;
}
.hero .container .hero__content-title svg {
  width: 2.4rem;
  height: 2.4rem;
}
.hero .container .hero__content-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.hero .container .hero__content-list > p {
  color: #414145;
  font-weight: 300;
  font-style: Light;
  font-size: 1.2rem;
  line-height: 1.4rem;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}
.hero .container .hero__content-list-item {
  background-color: #151517;
  border-radius: 1.6rem;
  padding: 1.2rem;
}
.hero .container .hero__content-list-item > p {
  font-weight: 300;
  font-style: Light;
  font-size: 1.2rem;
  line-height: 1.4rem;
  letter-spacing: normal;
  color: #00a99d;
  margin-bottom: 0.4rem;
}
.hero .container .hero__content-list-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero .container .hero__content-list-item > div p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: normal;
  color: #b7b7b7;
}
.hero .container .hero__content-list-item > div p.accent {
  border-radius: 1.6rem;
  padding: 0.6rem 1.2rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6rem;
  letter-spacing: normal;
  text-align: center;
  vertical-align: middle;
  background-color: #00a99d;
  color: #0e0e0f;
}
.hero .container .hero__content-btn {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: normal;
  text-align: center;
  padding: 1.8rem 2.8rem;
  background-image: url("/src/button (5).png");
  background-size: contain;
  background-repeat: no-repeat;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  background: #151517;
  border-radius: 2.4rem;
  padding: 3.2rem 2.4rem;
  max-width: 42rem;
  width: 90%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.popup-overlay.active .popup-container {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5019607843);
  cursor: pointer;
  transition: color 0.2s ease;
}
.popup-close:hover {
  color: #ffffff;
}

.popup-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #ffffff;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.form-group label {
  font-size: 1.4rem;
  font-weight: 400;
  color: #b7b7b7;
}
.form-group input {
  background: rgba(50, 50, 50, 0.2);
  border: 1px solid #2a2a2e;
  border-radius: 1.2rem;
  padding: 1.4rem 1.6rem;
  font-size: 1.6rem;
  font-family: "Onest", sans-serif;
  color: #ffffff;
  transition: border-color 0.2s ease;
}
.form-group input:focus {
  border-color: #00a99d;
  outline: none;
}
.form-group input::-moz-placeholder {
  color: #414145;
}
.form-group input::placeholder {
  color: #414145;
}

.popup-submit-btn {
  background: #00a99d;
  border-radius: 10rem;
  padding: 1.4rem;
  font-family: Onest;
  font-weight: 300;
  font-style: Light;
  font-size: 1.6rem;
  line-height: 120%;
  letter-spacing: normal;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin: 3rem auto 0;
  color: #fff;
  max-width: 23.2rem;
  width: 100%;
}
.popup-submit-btn:hover {
  opacity: 0.9;
}

.popup-note {
  font-size: 1.2rem;
  color: #414145;
  text-align: center;
  margin-top: 1.2rem;
}

.popup-success {
  text-align: center;
  padding: 2rem 0;
}
.popup-success svg {
  margin-bottom: 1.6rem;
}
.popup-success p {
  font-size: 1.6rem;
  color: #ffffff;
}

.main-page .header {
  font-size: 1.4rem;
  z-index: 1;
  position: relative;
}
.main-page .header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 34.3rem;
}
.main-page .header .container div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.main-page .header .container div p {
  color: rgba(255, 255, 255, 0.5019607843);
}
.main-page .container {
  max-width: 39.3rem;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .main-page .container {
    max-width: 100%;
    width: 100%;
  }
}
.main-page .hero-title {
  height: 100vh;
  margin-top: -4rem;
  background-image: url(/src/photo\ 1.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  position: relative;
}
.main-page .hero-title .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4.5rem;
}
.main-page .hero-title .container h1 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}
.main-page .hero-title .container .hero-title__text {
  margin: 0 4rem 4rem;
}
.main-page .hero-title .container .hero-title__text p {
  font-family: "Onest", serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: normal;
  text-align: center;
  color: #b7b7b7;
}
.main-page .hero-title .container .hero-title__logo-list {
  margin: 0 2.2rem 1.6rem;
  display: flex;
  justify-content: space-between;
}
.main-page .hero-title .container .hero-title__logo-item {
  max-width: 11.1rem;
  height: 7.3rem;
}
.main-page .hero-title .container .hero-title__logo-item img {
  width: 100%;
  height: 100%;
}
.main-page .hero-title .container .hero-title__logo p {
  font-family: "Onest", serif;
  font-weight: 200;
  font-style: ExtraLight;
  font-size: 1.4rem;
  line-height: 120%;
  letter-spacing: normal;
  text-align: center;
  color: #ababab;
}
.main-page h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 2.6rem;
  line-height: 3rem;
  letter-spacing: normal;
  text-align: center;
}
.main-page h2 span {
  color: #00a99d;
}
.main-page .how {
  margin-top: 3.5rem;
}
.main-page .how h2 {
  margin-bottom: 4rem;
}
.main-page .how__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 2.2rem;
}
.main-page .how__steps-item {
  width: 100%;
  padding: 3rem 2rem;
  background-color: #151517;
  border-radius: 1.6rem;
  position: relative;
  z-index: 0;
}
.main-page .how__steps-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.1rem;
  background: linear-gradient(218.73deg, #0e0e0f 13.1%, #666666 50%, #0e0e0f 86.9%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.main-page .how__steps-item span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.5019607843);
  border-radius: 1.6rem;
  padding: 0.6rem 1.2rem;
  color: #0e0e0f;
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.4rem;
  line-height: 1.6rem;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 2.5rem;
}
.main-page .how__steps-item p:first-of-type {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: normal;
  color: #fff;
  margin-bottom: 1rem;
}
.main-page .how__steps-item p {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.6rem;
  leading-trim: NONE;
  line-height: 1.8rem;
  letter-spacing: normal;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.5019607843);
}

.levels {
  margin-top: 8rem;
  margin-bottom: 5rem;
}
.levels h2 {
  margin-bottom: 4rem;
}
.levels__list {
  margin: 0 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.levels__list-item {
  border-radius: 1.6rem;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid rgba(0, 169, 157, 0);
}
.levels__list-item-img {
  background-color: #3c3c3e;
  width: 100%;
  height: 20rem;
}
.levels__list-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.levels__list-item-content {
  background-color: #151517;
  padding: 2.5rem 2.5rem 3rem;
}
.levels__list-item-title {
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.levels__list-item-title p {
  font-family: Onest;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: normal;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
}
.levels__list-item-title span {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.4rem;
  line-height: 1.6rem;
  letter-spacing: normal;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  padding: 0.6rem 1.2rem;
  background-color: #00a99d;
  border-radius: 1.6rem;
}
.levels__list-item-text {
  color: rgba(255, 255, 255, 0.5019607843);
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.6rem;
  line-height: 1.8rem;
  letter-spacing: normal;
  vertical-align: middle;
  margin-bottom: 1.5rem;
}
.levels__list-item p {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.8rem;
  line-height: 1.8rem;
  letter-spacing: normal;
  vertical-align: middle;
  color: #ffffff;
}
.levels__list-item ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.levels__list-item ul li {
  display: flex;
  gap: 0.9rem;
}
.levels__list-item ul li p {
  font-family: Onest;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.6rem;
  line-height: 1.8rem;
  letter-spacing: normal;
  vertical-align: middle;
  max-width: 23.7rem;
}
.levels__list-item ul li svg {
  width: 2rem;
  height: 2rem;
}
.levels__list-item .btn {
  background-image: url(/src/button\ \(6\).png);
  background-size: contain;
  background-repeat: no-repeat;
  font-family: Onest;
  font-weight: 300;
  font-style: Light;
  font-size: 1.6rem;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  width: 20.6rem;
  height: 5.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto 0;
  border-radius: 10rem;
  transition: 0.3s ease;
}
.levels__list-item .btn:hover {
  border: 1px solid #00a99d;
}
.levels__list-item.active {
  border: 1px solid #00a99d;
}
.levels__list .divider {
  height: 0.1rem;
  width: 100%;
  background: linear-gradient(90deg, rgba(21, 21, 23, 0.5) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(21, 21, 23, 0.5) 100%);
  border: none;
  margin: 0 0 1.5rem;
}

/* Контейнер для чекбокса с текстом */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  cursor: pointer;
  margin-top: 1rem; /* при необходимости */
}

/* Скрываем стандартный чекбокс, но оставляем доступным для клавиатуры */
.checkbox-group input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 2rem;
  height: 2rem;
  margin: 0.2rem 0 0 0;
  background: #0e0e0f;
  border: 1px solid #2a2a2e;
  border-radius: 0.6rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  padding: 0 !important;
}

/* Стиль для фокуса (доступность) */
.checkbox-group input[type=checkbox]:focus-visible {
  outline: 2px solid #00a99d;
  outline-offset: 2px;
}

/* Состояние hover для неактивного чекбокса */
.checkbox-group:hover input[type=checkbox]:not(:checked) {
  border-color: #5a5a60;
}

/* Состояние checked */
.checkbox-group input[type=checkbox]:checked {
  background-color: #00a99d;
  border-color: #00a99d;
}

/* Галочка через SVG (для checked) */
.checkbox-group input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5L4 8L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
}

/* Текст соглашения */
.checkbox-group p {
  font-family: Onest;
  font-weight: 300;
  font-style: Light;
  font-size: 1.2rem;
  line-height: 1.4rem;
  letter-spacing: 0px;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.5019607843);
}

/* Можно добавить небольшой акцент на ссылки внутри p, если нужны */
.checkbox-group a {
  color: #00a99d;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */