@font-face {
  font-family: "Koliko";
  src: url(/pages/fonts/koliko/koliko-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Koliko";
  src: url(/pages/fonts/koliko/koliko-Light.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Koliko";
  src: url(/pages/fonts/koliko/koliko-Regular.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Koliko";
  src: url(/pages/fonts/koliko/koliko-Regular.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Koliko";
  src: url(/pages/fonts/koliko/koliko-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Koliko";
  src: url(/pages/fonts/koliko/koliko-Bold.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("/pafges/fonts/manrope/manrope-v15-cyrillic_latin-200.woff2")
    format("woff2");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("/pafges/fonts/manrope/manrope-v15-cyrillic_latin-300.woff2")
    format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("/pafges/fonts/manrope/manrope-v15-cyrillic_latin-400.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("/pafges/fonts/manrope/manrope-v15-cyrillic_latin-500.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("/pafges/fonts/manrope/manrope-v15-cyrillic_latin-600.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("/pafges/fonts/manrope/manrope-v15-cyrillic_latin-700.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("/pafges/fonts/manrope/manrope-v15-cyrillic_latin-800.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
}

:root {
  --font-manrope: "Manrope", sans-serif;
  --font-koliko: "Koliko", sans-serif;
  --color-default: #ffffff;
  --border-radius-base: 12px;
  --transition-duration: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

label {
  margin-bottom: 0;
}

body {
  background-color: #eff3f9;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

section {
  padding-top: 120px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 18px;
}

.background {
  background: linear-gradient(180deg, #8291e8 0%, #bddafe 101.67%);
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 13px 0;
  border-bottom: 1px solid #ffffff;
}

.navigation_list ul {
  display: flex;
  gap: 36px;
}

.phone_number {
  display: none;
}

.navigation_list ul li a {
  font-family: var(--font-manrope);
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}

.header_right_item {
  font-family: var(--font-manrope);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 12px;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-burger_wrapper {
  display: none;
}

.burger {
  display: none;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
}

.burger_lines {
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 16px;
  height: 10px;
}

.burger .burger_lines::before,
.burger .burger_lines::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: var(--color-default);
  margin: 0 auto;
}

.burger .burger_lines::before {
  top: 0;
  box-shadow: 0 4px 0 var(--color-default);
  transition: box-shadow var(--transition-duration) 0.15s,
    top var(--transition-duration) 0.15s, transform var(--transition-duration);
}

.burger .burger_lines::after {
  bottom: 0;
  transition: bottom var(--transition-duration) 0.15s,
    transform var(--transition-duration);
}

.burger-checkbox:checked + .burger .burger_lines::before {
  top: 4px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.15s, top var(--transition-duration),
    transform var(--transition-duration) 0.15s;
  background: #ffffff;
}

.burger-checkbox:checked + .burger .burger_lines::after {
  bottom: 4px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
  background: #ffffff;
}

.burger-checkbox:checked + .burger + .header-right_wrapper-block {
  background: var(--color-main);
}

main {
  position: relative;
  padding: 30px 0 80px 0;
}

.main_text {
  text-align: center;
}

.support_text {
  font-family: var(--font-manrope);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.title {
  font-family: var(--font-koliko);
  color: #ffffff;
  font-weight: 700;
  font-size: 48px;
  margin-top: 34px;
}

.subtitle {
  position: relative;
  font-family: var(--font-manrope);
  width: fit-content;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin: 33px auto 0;
}

.underline {
  position: relative;
  text-wrap: nowrap;
}

.underline::before {
  content: url(/pages/img/underline.png);
  position: absolute;
  bottom: -12px;
  right: 0;
}

.main_imgs {
  position: relative;
  max-width: 981px;
  margin: 0 auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.main_imgs img:nth-child(1) {
  margin-top: 3px;
}

.main_imgs img:nth-child(2) {
  display: none;
}

.main_imgs img:nth-child(3) {
  position: absolute;
  left: 50%;
  transform: translateX(calc(-50% + 16px));
  margin-top: 23px;
}

.main_imgs img:nth-child(4) {
  display: none;
}

.main_imgs img:nth-child(5) {
  margin-top: 21px;
}

.timer_block {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 460px;
  width: calc(100% - 36px);
  padding: 24px 24px 30px 24px;
  background-color: #ffffff;
  border-radius: 20px;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.timer_title {
  font-family: var(--font-manrope);
  color: #1a1e4d;
  font-weight: 500;
  font-size: 16px;
  line-height: 137.5%;
  text-align: center;
}

.timer_wrapper {
  display: flex;
  gap: 27px;
  margin-top: 13px;
}

.timer_wrapper hr {
  border-color: #dadada;
  border-left: 0;
}

.timer_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer_number {
  font-family: var(--font-koliko);
  color: #1a1e4d;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
}

.timer_text {
  font-family: var(--font-manrope);
  color: #1a1e4d;
  font-weight: 500;
  font-size: 16px;
}

.timer_btn {
  font-family: "Poppins", sans-serif;
  padding: 17.5px 31px;
  background: #322ef2;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  border-radius: 12px;
  border: none;
  margin-top: 28px;
}

.about_bookchallenge {
  padding-top: 240px;
}

.about_bookchallenge_wrapper {
  display: flex;
  align-items: end;
  gap: 48px;
  background-color: #757cc1;
  border-radius: 20px;
  overflow: hidden;
}

.about_bch_text_block {
  padding: 40px 0 40px 40px;
  display: flex;
  flex-direction: column;
  max-width: 431px;
}

.m_title {
  font-family: var(--font-koliko);
  color: #ffffff;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
}

.about_bch_subtitle_block {
  margin-top: 100px;
}

.about_bch_subtitle {
  font-family: var(--font-manrope);
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}

.about_bch_subtitle + .about_bch_subtitle {
  margin-top: 25px;
}

.crowd_img {
  display: flex;
  align-items: end;
}

.crowd_img img {
  width: 100%;
}

.bookchallenge_goals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 78px;
}

.goal_block {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 20px;
  transition: all 0.5s;
}

.goal_block:hover {
  transform: translateY(-5px);
  box-shadow: 0px 20px 30px 0px #d7ecfa;
}

.goal_img {
  background-color: #a9b0fd;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
}

.goal_title {
  font-family: var(--font-koliko);
  color: #1a1e4d;
  font-weight: 700;
  font-size: 20px;
  font-family: koliko;
  text-transform: uppercase;
  margin-top: 32px;
}

.goals_ul {
  max-width: 270px;
  margin-top: 10px;
  padding-left: 5px;
}

.goals_ul li {
  font-family: var(--font-manrope);
  display: flex;
  color: #1a1e4d;
  font-weight: 500;
  font-size: 14px;
}

.goals_ul li::before {
  content: "●";
  color: #1a1e4d;
  font-size: 10px;
  margin-right: 8px;
  margin-top: 2px;
}

.goals_li + .goals_li {
  margin-top: 8px;
}

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

h2 {
  font-family: var(--font-koliko);
  color: #1a1e4d;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
}

.contest_steps_block {
  margin-top: 40px;
}

.book_bg {
  max-width: 776px;
  width: 100%;
  height: 100%;
  z-index: -1;
  margin: 0 auto;
  display: block;
}

.content_wrapper {
  position: relative;
}

.contest_steps_content {
  position: absolute;
  width: 100%;
  height: 100%;
}

.contest_steps_wrapper {
  display: grid;
  grid-template-columns: auto 198px 1fr;
  z-index: 1;
}

.bitta_wrapper {
  margin: 0 auto;
  max-width: 776px;
  position: relative;
  padding: 58px 58px 52px 58px;
  z-index: 10;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #c9ddf2;
  grid-column: 1 / 4;
  margin-top: 18px;
  margin-bottom: 18px;
}

.step_number {
  font-family: var(--font-manrope);
  color: #1a1e4d;
  font-weight: 500;
  font-size: 16px;
  margin-right: 108px;
  padding-left: 30px;
}

.step_text {
  font-family: var(--font-manrope);
  color: #1a1e4d;
  font-weight: 500;
  font-size: 16px;
}

.step_text.ml82 {
  margin-left: 82px;
}

.steps_btn {
  font-family: var(--font-manrope);
  color: #ffffff;
  background-color: #322ef2;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  padding: 17.5px 30px;
  width: fit-content;
  margin: 0 auto;
  margin-top: 45px;
  text-align: center;
  border: none;
}

.cloud {
  background-image: url(/pages/img/bg_clouds.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 240px;
}

.cloud__subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

h3 {
  font-family: var(--font-manrope);
  max-width: 635px;
  color: #1a1e4d;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.cloud_block_wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 110px;
}

.cloud_block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 14px;
  background-color: #eff3f9;
  border-radius: 12px;
  max-width: 268px;
}

.cloud_block_text {
  font-family: var(--font-manrope);
  color: #1a1e4d;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

.big_arrow {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(calc(-100% - 28px)) translateX(50%);
}

.big_arrow-mobile {
  display: none;
}

.buttons_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 60px;
  padding-bottom: 234px;
}

.cloud_btn {
  font-family: var(--font-manrope);
  color: #322ef2;
  border-radius: 8px;
  border: 1px solid #322ef2;
  font-weight: 700;
  font-size: 12px;
  padding: 19.5px 30px;
  width: fit-content;
  text-align: center;
}

.fund_wrapper {
  display: flex;
  flex-direction: column;
}

.first_place {
  position: relative;
  background-color: #757cc1;
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
  border-radius: 20px;
  padding: 20px 22px 92px 22px;
  bottom: -62px;
  z-index: 1;
}

.second_place {
  position: relative;
  background-color: #9fcce6;
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
  border-radius: 20px;
  padding: 20px 22px 92px 22px;
  z-index: 2;
}

.third_place {
  position: relative;
  background-color: #68c0f0;
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
  border-radius: 20px;
  padding: 20px 22px 30px 22px;
  top: -88px;
  z-index: 3;
}

.fund_wrapper img {
  margin: 0 auto;
}

.place_text {
  font-family: var(--font-koliko);
  color: #ffffff;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
}

.places_ul li {
  font-family: var(--font-manrope);
  display: flex;
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
}

.places_ul li::before {
  content: "●";
  color: #ffffff;
  font-size: 10px;
  margin-right: 8px;
  margin-top: 2px;
}

.places_li + .places_li {
  margin-top: 10px;
}

.assession_wrapper {
  display: grid;
  grid-template-columns: 457px 1fr;
  gap: 16px;
  margin-top: 60px;
}

.assession_light {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 40px 40px 0 40px;
  border-radius: 20px;
  margin-top: 60px;
}

.light_img {
  max-width: 377px;
  height: 235px;
}

.assession_dark {
  display: flex;
  align-items: end;
  justify-content: space-between;
  background-color: #757cc1;
  padding: 40px 16px 0 40px;
  border-radius: 20px;
  min-height: 500px;
}

.assession_text-light {
  width: 100%;
  height: 100%;
}

.assession_text-dark {
  width: 100%;
  height: 100%;
}

.assession_title {
  font-family: var(--font-koliko);
  color: #1a1e4d;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
}

.assession_title-dark {
  font-family: var(--font-koliko);
  color: #ffffff;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
}

.assession_ul {
  margin-top: 20px;
  padding-left: 5px;
}

.assession_ul-dark {
  margin-top: 20px;
  padding-left: 5px;
}

.assession_ul li {
  font-family: var(--font-manrope);
  display: flex;
  color: #1a1e4d;
  font-weight: 500;
  font-size: 16px;
}

.assession_ul-dark li {
  font-family: var(--font-manrope);
  display: flex;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}

.assession_ul li::before {
  content: "●";
  color: #1a1e4d;
  font-size: 10px;
  margin-right: 8px;
  margin-top: 2px;
}

.assession_ul-dark li::before {
  content: "●";
  color: #ffffff;
  font-size: 10px;
  margin-right: 8px;
  margin-top: 2px;
}

.assession_li + .assession_li {
  margin-top: 16px;
}

.assession_li-dark + .assession_li-dark {
  margin-top: 16px;
}

.assession_dark img {
  max-width: 330px;
  width: 100%;
}

.participant_wrapper {
  position: relative;
  background-color: #757cc1;
  padding: 40px;
  border-radius: 20px;
}

.participant_text {
  max-width: 550px;
}

.participant_title {
  font-family: var(--font-koliko);
  color: #ffffff;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
}

.participant_subtitle {
  font-family: var(--font-manrope);
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
}

.participant_link {
  font-family: var(--font-manrope);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  padding: 17.5px 40px;
  background-color: #322ef2;
  border-radius: 8px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-top: 40px;
}

.participant_wrapper img {
  position: absolute;
  right: 100px;
  top: 65px;
}

.mountain {
  margin-top: 120px;
  overflow: hidden;
  padding-top: 265px;
  padding-bottom: 137px;
  width: 100%;
  height: 100%;
  background-image: url(/pages/img/mountains.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.mountain::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 800px);
  background-color: #ffffff;
  z-index: -1;
}

.mountain__top {
  max-width: 609px;
  margin: 0 auto;
  text-align: center;
}

.mountain .participant_subtitle {
  color: #1a1e4d;
}

.mountain .bookchallenge_goals {
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
}

.mountain .bookchallenge_goals .goal_block {
  background-color: #eff3f9;
}

.bitta_wrapper.ikta_wrapper {
  min-height: 460px;
  padding: 88px 57px 0;
}

.ikta_wrapper .table_td {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-manrope);
  color: #1a1e4d;
}

.ikta_wrapper .divider {
  margin-top: 7px;
  margin-bottom: 10px;
}

.ikta_wrapper .contest_steps_wrapper {
  grid-template-columns: auto 1fr;
  column-gap: 40px;
}

.ikta_wrapper .step_data {
  padding-left: 55px;
}

.ikta_wrapper #steps_form {
  display: grid;
  gap: 16px;
  grid-template-columns: 173px 1fr 150px;
  margin-top: 49px;
  padding-left: 55px;
}

.steps_input {
  outline: none;
  border: none;
  border-bottom: 1px solid #c9ddf1;
  padding-bottom: 10px;
  margin-bottom: 4px;
  color: #0400c9;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  font-family: var(--font-manrope);
  transition: all 0.1s ease;
}

.steps_input:focus {
  border-bottom: 1px solid #0400c9;
  border-bottom-width: 2px;
  transform: translateY(1px);
}

.steps_input::placeholder {
  color: #7891ab;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  font-family: var(--font-manrope);
}

.ikta_wrapper .step_btn {
  background-color: #0400c9;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-manrope);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.ikta_wrapper .step_btn:hover {
  background-color: #322ef2;
}

.accordions {
  padding: 40px;
  background-color: #ffffff;
}

.accordions .accordion {
  border-bottom: 1px solid #c9ddf2;
}

.accordions .accordion__header {
  padding: 0 21px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: start;
  width: 100%;
  transition: padding-bottom var(--transition-duration) ease;
}

@media (max-width: 576px) {
  .accordions .accordion__header {
    padding: 0;
    padding-bottom: 20px;
  }
}

.accordions .accordion__header.active {
  padding-bottom: 7px;
}

.accordions .accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-duration) ease;
}

.accordions .accordion__content-wrapper {
  padding: 0 93px 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: #1a1e4d;
  font-family: var(--font-manrope);
}

@media (max-width: 576px) {
  .accordions .accordion__content-wrapper {
    padding: 0 40px 16px 0;
  }
}

.accordions .accordion__content-wrapper ul {
  list-style: disc;
  padding-left: 18px;
}

.accordions .accordion__content-wrapper ol {
  list-style: decimal;
  padding-left: 18px;
}

.accordions .accordion + .accordion {
  margin-top: 20px;
}

.blockTitle {
  font-size: 20px;
  font-weight: 500;
  color: #1a1e4d;
  font-family: var(--font-manrope);
}

.accordion__closer {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #1a1e4d;
  position: relative;
}

.accordion__closer::before {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateX(50%) translateY(-50%);
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  border-radius: 50px;
  background-color: #1a1e4d;
  transition: all 0.3s ease;
}

.accordion__closer::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  border-radius: 50px;
  background-color: #1a1e4d;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateX(50%) translateY(-50%) rotate(90deg);
  transition: all 0.3s ease;
}

.accordions .accordion__header.active .accordion__closer::after {
  transform: translateX(50%) translateY(-50%) rotate(0deg);
}

.accordions .accordion__header.active .accordion__closer::before {
  transform: translateX(50%) translateY(-50%) rotate(180deg);
}

.faq__wrapper {
  display: grid;
  grid-template-columns: 468px 1fr;
  border-radius: 20px;
  overflow: hidden;
  min-height: 690px;
}

.faq__left {
  background-color: #757cc1;
  padding: 40px 20px 40px 40px;
}

.faq__left img {
  margin-top: 29px;
}

.faq__left .participant_title {
  text-align: start;
}

.last {
  margin-top: 120px;
  margin-bottom: 160px;
}

.last__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.last h2 {
  max-width: 580px;
  text-align: center;
  margin-bottom: 30px;
}

.last .participant_link {
  transition: all 0.3s ease;
}

.last .participant_link:hover {
  background-color: #0400c9;
  cursor: pointer;
}

/* \\\FOOTER/// */

footer {
  background-color: #1a1e4d;
  padding-bottom: 45px;
}

.footer_title {
  font-family: var(--font-koliko);
  color: #757cc1;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12svw;
  text-align: center;
  letter-spacing: 0.485svw;
  transform: scaleX(1);
}

.footer_links_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  column-gap: 120px;
}

.footer_link_box {
  display: flex;
  flex-direction: column;
}

.footer_link_title {
  font-family: var(--font-manrope);
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer_linktext {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 138%;
}

.footer_link {
  font-family: var(--font-manrope);
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
}

.footer_link + .footer_link {
  margin-top: 8px;
}

.footer_logo {
  margin-top: 48px;
}

.lang_box {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }

  .assession_dark {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .participant_wrapper img {
    right: 70px;
  }

  .big_arrow {
    width: 170px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }

  .about_bch_text_block {
    max-width: 290px;
  }

  .about_bch_subtitle_block {
    margin-top: 50px;
  }

  .bookchallenge_goals {
    grid-template-columns: repeat(2, 1fr);
  }

  .goals_ul {
    max-width: 100%;
  }

  .step_text.ml82 {
    margin-left: 30px;
  }

  .step_number {
    margin-right: 70px;
  }

  .big_arrow {
    max-width: 130px;
  }

  .cloud_block {
    width: 100%;
    margin: 0 auto;
  }

  .assession_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .assession_light img {
    width: 100%;
  }

  .participant_text {
    max-width: 380px;
  }

  .mountain .bookchallenge_goals {
    grid-template-columns: repeat(4, 1fr);
  }

  .mountain .bookchallenge_goals .goal_block {
    grid-column: span 2;
  }

  .mountain .bookchallenge_goals .goal_block:last-child {
    grid-column: 2 / 4;
  }

  .mountain {
    background-position: -300px;
  }

  .faq__wrapper {
    grid-template-columns: 100%;
  }

  .faq__left {
    display: flex;
  }

  .accordions {
    min-height: 650px;
  }

  .navigation_list ul {
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }

  .navigation_list {
    display: none;
  }

  .header-burger_wrapper {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .subtitle {
    max-width: 452px;
  }

  .main_imgs img:nth-child(1) {
    max-width: 200px;
  }

  .main_imgs img:nth-child(3) {
    max-width: 230px;
  }

  .main_imgs img:nth-child(5) {
    max-width: 170px;
  }

  main {
    padding: 30px 0 110px 0;
  }

  .about_bookchallenge_wrapper {
    flex-direction: column;
    align-items: unset;
  }

  .about_bch_text_block {
    max-width: 100%;
    padding: 40px;
  }

  .book_bg {
    width: 776px;
    height: 610px;
  }

  .divider {
    grid-column: 1 / 3;
  }

  .step_number {
    grid-row: span 2;
    padding-left: 0;
    margin-right: 20px;
  }

  .contest_steps_wrapper {
    grid-template-columns: auto 1fr;
  }

  .step_text.ml82 {
    margin-left: 0;
    margin-top: 6px;
  }

  .cloud_block_wrapper {
    grid-template-columns: 100%;
  }

  .big_arrow {
    display: none;
  }

  .buttons_wrapper {
    flex-direction: column;
  }

  .cloud_btn {
    max-width: 280px;
    width: 100%;
  }

  .big_arrow-mobile {
    display: block;
    position: absolute;
    left: -30px;
    transform: translateY(70%);
  }

  .first_place {
    grid-template-columns: 100%;
    bottom: -40px;
  }

  .second_place {
    grid-template-columns: 100%;
  }

  .third_place {
    grid-template-columns: 100%;
    top: -35px;
  }

  .fund_wrapper img {
    margin: 0;
  }

  .place_text {
    text-align: unset;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .assession_wrapper {
    grid-template-columns: 100%;
  }

  .assession_light img {
    max-width: 323px;
    width: 100%;
  }

  .assession_light {
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }

  .participant_wrapper img {
    position: unset;
  }

  .cloud_block_wrapper {
    margin-top: 40px;
  }

  .cloud__subtitle {
    margin-top: 20px;
  }

  .buttons_wrapper {
    margin-top: 40px;
    gap: 10px;
  }

  .mountain {
    background-position: -400px;
  }

  .ikta_wrapper #steps_form {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0;
  }

  .ikta_wrapper .step_btn {
    grid-column: 1 / 3;
    text-align: center;
  }

  .ikta_wrapper .step_data {
    padding-left: 40px;
  }

  .faq__left {
    flex-direction: column;
  }

  .faq__left img {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  section {
    padding-top: 80px;
  }

  .title {
    font-size: 32px;
  }

  main {
    padding: 30px 0 185px 0;
  }

  .main_imgs img:nth-child(1) {
    display: none;
  }

  .main_imgs img:nth-child(2) {
    display: block;
    margin-top: 58px;
  }

  .main_imgs img:nth-child(3) {
    max-width: 190px;
    margin-top: 64px;
  }

  .main_imgs img:nth-child(4) {
    display: block;
    margin-top: 28px;
  }

  .main_imgs img:nth-child(5) {
    display: none;
  }

  .about_bch_text_block {
    padding: 30px 25px 0 20px;
  }

  .m_title {
    font-size: 32px;
  }

  .about_bch_subtitle_block {
    margin-top: 20px;
  }

  h2 {
    font-size: 32px;
  }

  .bookchallenge_goals {
    grid-template-columns: 1fr;
  }

  .goal_block {
    padding: 20px;
  }

  .goal_img {
    width: 50px;
    height: 50px;
  }

  .goal_img img {
    width: 30px;
    height: auto;
  }

  .bitta_wrapper {
    padding: 41px 41px 52px 41px;
  }

  .book_bg {
    height: 100%;
  }

  .steps_btn {
    width: 100%;
    padding: 17.5px 0;
    margin-top: 40px;
  }

  .place_text {
    font-size: 26px;
  }

  .fund_wrapper img {
    max-width: 260px;
    width: 100%;
  }

  .prize_fund .container {
    padding-inline: 0;
  }

  .assession_title {
    font-size: 26px;
  }

  .assession_title-dark {
    font-size: 26px;
  }

  .assession_light {
    padding: 20px 20px 0 20px;
    min-height: unset;
    gap: 60px;
  }

  .assession_dark {
    padding: 20px 20px 0 20px;
    gap: 60px;
  }

  .participant_title {
    font-size: 32px;
  }

  .participant_wrapper {
    padding: 30px 20px;
  }

  .mountain .bookchallenge_goals {
    grid-template-columns: 100%;
    max-width: 324px;
    margin: 0 auto;
    margin-top: 40px;
  }

  .mountain .bookchallenge_goals .goal_block {
    grid-column: unset;
  }

  .mountain .bookchallenge_goals .goal_block:last-child {
    grid-column: unset;
  }

  .goal_title {
    margin-top: 20px;
  }

  .mountain {
    background-position: -560px;
    padding-bottom: 60px;
    padding-top: 244px;
    margin-top: 0;
  }

  .bitta_wrapper.ikta_wrapper {
    padding: 52px 0 94px 41px;
  }

  .bitta_wrapper.ikta_wrapper .contest_steps_wrapper {
    grid-template-columns: 100%;
  }

  .bitta_wrapper.ikta_wrapper .divider {
    grid-column: 1 / 2;
    margin-top: 12px;
    margin-bottom: 20px;
  }

  .ikta_wrapper .step_data {
    padding-left: 0;
    padding-bottom: 6px;
  }

  .ikta_wrapper #steps_form {
    grid-template-columns: 100%;
    margin-top: 60px;
  }

  .ikta_wrapper .step_btn {
    grid-column: unset;
  }

  .footer_title {
    margin-top: 18px;
  }

  .faq__left {
    padding: 30px 20px 50px;
  }

  .accordions {
    padding: 40px 20px;
  }

  .cloud {
    margin-bottom: 0;
  }

  .last {
    margin-top: 80px;
    margin-bottom: 120px;
  }

  .blockTitle {
    font-weight: 700;
  }
}
