html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}


/* common */

:root {
  --common-gray: #5C564D;
  --common-yellow: #FEC556;
  --common-purple: #D999EE;
}

@font-face {
  font-family: "Jost";
  src: local("Jost-ExtraLight"),
    url("/fonts/Jost-ExtraLight.woff2") format("woff2"),
    url("/fonts/Jost-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: local("Jost-Light"),
    url("/fonts/Jost-Light.woff2") format("woff2"),
    url("/fonts/Jost-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: local("Jost-Regular"),
    url("/fonts/Jost-Regular.woff2") format("woff2"),
    url("/fonts/Jost-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: local("Jost-SemiBold"),
    url("/fonts/Jost-SemiBold.woff2") format("woff2"),
    url("/fonts/Jost-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Jost";
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: black;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  padding: 0;
  margin: 0;
}

.flex {
  display: flex;
}

.no-pointer-events {
  pointer-events: none;
}


/* header */

.header {
  position: absolute;
  right: calc(50% - 160px);
  top: 0;
  width: 150px;
  height: 406px;
  background-image: linear-gradient(250deg, var(--common-gray) 70%, transparent);
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 11px 0 0;
  display: none;
  z-index: 2;
}

.header__exit_btn {
  border: none;
  background-color: transparent;
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}

.header__exit_btn_img {
  width: 16px;
  height: 16px;
}

.header__nav_list {
  flex-direction: column;
  list-style: none;
  align-items: flex-end;
  justify-content: space-between;
  height: 134px;
  margin-bottom: 43px;
}

.header__nav_elem_link {
  font-size: 16px;
  text-decoration: none;
  color: white;
  font-weight: 300;
}

.header__list {
  flex-direction: column;
  list-style: none;
  align-items: flex-end;
}

.header__elem:not(:last-child) {
  margin-bottom: 15px;
}

.header__elem {
  align-items: center;
}

.header__elem_img {
  width: 17px;
  height: 14px;
  margin-right: 16px;
}

.header__elem_link {
  text-decoration: none;
  color: white;
  font-weight: 200;
  text-align: center;
  vertical-align: middle;
  line-height: 1.8;
  width: 97px;
  height: 28px;
  border-radius: 7px;
  background-color: var(--common-gray);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
}

.header__elem_link:active {
  color: var(--common-yellow);
}


/* main section */

.main_section {
  flex-direction: column;
  position: relative;
  width: 320px;
}

.main_section__logo {
  flex-direction: column;
  position: absolute;
  z-index: 1;
  width: 212px;
  height: 87px;
}

.main_section__logo_img {
  width: 212px;
  height: 87px;
  top: 0;
  left: 0;
}

.main_section__logo_name {
  color: white;
  font-weight: 600;
  letter-spacing: 9px;
  font-size: 16px;
  position: absolute;
  left: 15px;
  top: 10px;
}

.main_section__logo_text {
  width: 133px;
  font-size: 16px;
  font-weight: 300;
  color: var(--common-yellow);
  position: absolute;
  left: 15px;
  top: 43px;
  line-height: 16px;
}

.main_section__menu_btn {
  border: none;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  background-color: transparent;
  position: absolute;
  right: 17px;
  top: 6px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.main_section__menu_btn_img {
  width: 30px;
  height: 30px;
}

.main_section__div {
  background-image: linear-gradient(0deg, var(--common-gray) 15%, transparent);
  width: 100%;
  height: 52px;
  position: absolute;
  bottom: 0;
}

.main_section__main_btn {
  width: 106px;
  height: 28px;
  background-color: transparent;
  border: none;
  border-radius: 7px;
  position: absolute; 
  right: 15px;
  bottom: 24px;
  z-index: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.main_section__main_btn_img {
  width: 106px;
}


/* section 1 */

.section_1 {
  flex-direction: column;
  width: 320px;
}

.section_1__first,
.section_1__second,
.section_1__third {
  flex-direction: column;
  width: 198px;
  height: 242px;
  position: relative;
}

.section_1__first {
  padding-left: 17px;
  margin-top: 25px;
}

.section_1__second {
  align-self: flex-end;
  margin-top: -46px;
  justify-content: center;
  padding-left: 45px;
}

.section_1__third {
  margin: -46px 0 25px;
  justify-content: center;
  padding-left: 15px;
}

.section_1__first_figure,
.section_1__second_figure,
.section_1__third_figure {
  width: 198px;
  height: 242px;
  position: absolute;
  z-index: -1;
  left: 0px;
}

.section_1__second_figure {
  transform: rotate(180deg);
}

.section_1__third_figure {
  transform: scaleY(-1);
}

.section_1__first_main_title {
  font-weight: 400;
  font-size: 24px;
  color: white;
  margin: 26px 0 20px;
  line-height: 24px;
}

.section_1__first_title,
.section_1__second_title,
.section_1__third_title {
  font-weight: 300;
  font-size: 16px;
  color: white;
  line-height: 16px;
  margin-bottom: 8px;
}

.section_1__third_title {
  width: 163px;
}

.section_1__first_elem,
.section_1__second_elem,
.section_1__third_elem {
  align-items: center;
  height: 11px;
}

.section_1__first_elem:not(:last-child),
.section_1__second_elem:not(:last-child),
.section_1__third_elem:not(:last-child) {
  margin-bottom: 4px;
}

.section_1__first_elem_img,
.section_1__second_elem_img,
.section_1__third_elem_img {
  width: 14px;
  height: 9px;
  margin-right: 6px;
}

.section_1__first_elem_text,
.section_1__second_elem_text,
.section_1__third_elem_text {
  font-weight: 200;
  font-size: 11px;
  color: white;
}


/* section 2 */

.section_2 {
  position: relative;
  flex-direction: column;
  height: 509px;
  width: 320px;
  overflow: hidden;
}

.section_2__title_container {
  width: 320px;
  height: 52px;
  background-image: linear-gradient(var(--common-gray), transparent);
  align-items: center;
  padding-left: 16px;
}

.section_2__title {
  font-size: 16px;
  font-weight: 300;
  color: white;
}

.section_2__elem {
  position: absolute;
  width: 109px;
  height: 116px;
  cursor: pointer;
}

.section_2 div:nth-child(2) {
  left: 17px;
  top: 77px;
}

.section_2 div:nth-child(3) {
  left: 136px;
  top: 77px;
}

.section_2 div:nth-child(4) {
  left: 255px;
  top: 77px;
}

.section_2 div:nth-child(5) {
  left: -44px;
  top: 174px;
}

.section_2 div:nth-child(6) {
  left: 77px;
  top: 174px;
}

.section_2 div:nth-child(7) {
  left: 196px;
  top: 174px;
}

.section_2 div:nth-child(8) {
  left: 17px;
  top: 271px;
}

.section_2 div:nth-child(9) {
  left: 136px;
  top: 271px;
}

.section_2 div:nth-child(10) {
  left: 255px;
  top: 271px;
}

.section_2 div:nth-child(11) {
  left: -44px;
  top: 367px;
}

.section_2 div:nth-child(12) {
  left: 77px;
  top: 367px;
}

.section_2 div:nth-child(13) {
  left: 196px;
  top: 367px;
}

.section_2__elem_info,
.section_2__elem_empty {
  position: absolute;
  width: 109px;
  height: 116px;
  z-index: -1;
  transition: transform 0.3s;
}

.section_2__elem_img {
  position: absolute;
  width: 109px;
  height: 116px;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.3s;
}


/* section 3 */

.section_3 {
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 320px;
}

.section_3__title_container {
  width: 320px;
  height: 52px;
  background-image: linear-gradient(var(--common-gray), transparent);
  align-items: center;
  padding-left: 16px;
}

.section_3__title {
  font-size: 16px;
  font-weight: 300;
  color: white;
}

.section_3__main {
  align-items: center;
  width: 100%;
  justify-content: space-evenly;
  margin: 25px 0;
}

.section_3__main_btn-1,
.section_3__main_btn-2 {
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.section_3__main_btn-1_img,
.section_3__main_btn-2_img {
  width: 30px;
  height: 30px;
}

.section_3__main_list_container {
  width: 240px;
  height: 354px;
  overflow: hidden;
  position: relative;
}

.section_3__main_list_foreground {
  width: 240px;
  height: 354px;
  position: absolute;
  background-color: transparent;
  z-index: 1;
}

.section_3__main_list {
  width: 240px;
  align-items: center;
  position: absolute;
  left: 0;
  transition: left 0.3s, right 0.3s;
}

.section_3__main_elem:not(:last-child) {
  margin-right: 10px;
}

.section_3__main_elem::marker {
  color: transparent;
}

.section_3__main_elem_img {
  width: 240px;
  border: 2px solid white;
}


/* section 4 */

.section_4 {
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 320px;
}

.section_4__title_container {
  width: 320px;
  height: 52px;
  background-image: linear-gradient(var(--common-gray), transparent);
  align-items: center;
  padding-left: 16px;
}

.section_4__title {
  font-size: 16px;
  font-weight: 300;
  color: white;
}

.section_4__list {
  flex-direction: column;
  margin: 25px 0 40px;
  width: 100%;
  padding-left: 15px;
}

.section_4__elem {
  flex-direction: column;
  height: 125px;
  overflow: hidden;
  transition: height 1s;
}

.section_4__elem:not(:last-child) {
  margin-bottom: 15px;
}

.section_4__elem_title {
  align-items: center;
}

.section_4__elem_title_icon {
  height: 9px;
  margin-right: 3px;
}

.section_4__elem_title_text {
  color: white;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
}

.section_4__elem_text,
.section_4__elem_text_short,
.section_4__elem_text_full {
  color: white;
  font-weight: 200;
  font-size: 14px;
  padding-left: 18px;
  margin-top: 8px;
  width: 95%;
}

.section_4__elem_text_full {
  display: none;
}

.section_4__elem_text_show,
.section_4__elem_text_hide {
  color: var(--common-yellow);
  cursor: pointer;
  white-space: nowrap;
}

.section_4__elem_text_show:active,
.section_4__elem_text_hide:active {
  color: white;
}

.section_4__btn {
  width: 130px;
  height: 28px;
  border: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  align-self: flex-end;
  margin: 0 15px 25px 0;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: none;
}

.section_4__btn_img {
  width: 130px;
  height: 28px;
}


/* section 5 */

.section_5 {
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 320px;
}

.section_5__title_container {
  width: 320px;
  height: 52px;
  background-image: linear-gradient(var(--common-gray), transparent);
  align-items: center;
  padding-left: 16px;
}

.section_5__title {
  font-size: 16px;
  font-weight: 300;
  color: white;
}

.section_5__main {
  width: 288px;
  margin: 30px 0 40px;
}

.section_5__main_text-1,
.section_5__main_text-2,
.section_5__main_text-3 {
  color: white;
  font-weight: 200;
  font-size: 14px;
}

.section_5__main_text-1,
.section_5__main_text-2 {
  margin-bottom: 10px;
}

.section_5__main_text__title {
  font-size: 16px;
  font-weight: 400;
}


/* section 6 */

.section_6 {
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 320px;
}

.section_6__title_container {
  width: 320px;
  height: 52px;
  background-image: linear-gradient(var(--common-gray), transparent);
  align-items: center;
  padding-left: 16px;
}

.section_6__title {
  font-size: 16px;
  font-weight: 300;
  color: white;
}

.section_6__main {
  align-items: center;
  width: 100%;
  justify-content: space-evenly;
  margin: 25px 0;
}

.section_6__main_btn-1,
.section_6__main_btn-2 {
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.section_6__main_btn-1_img,
.section_6__main_btn-2_img {
  width: 30px;
  height: 30px;
}

.section_6__main_list_container {
  width: 240px;
  height: 161px;
  overflow: hidden;
  position: relative;
}

.section_6__main_list_foreground {
  width: 240px;
  height: 161px;
  position: absolute;
  background-color: transparent;
  z-index: 1;
}

.section_6__main_list {
  width: 240px;
  align-items: center;
  position: absolute;
  left: 0;
  transition: left 0.3s, right 0.3s;
}

.section_6__main_elem:not(:last-child) {
  margin-right: 10px;
}

.section_6__main_elem::marker {
  color: transparent;
}

.section_6__main_elem_img {
  width: 240px;
  border: 2px solid white;
}


/* section load */

.section_load {
  display: none;
}


/* footer */

.footer {
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 320px;
}

.footer__title_container {
  width: 320px;
  height: 52px;
  background-image: linear-gradient(var(--common-gray), transparent);
  align-items: center;
  padding-left: 16px;
}

.footer__title {
  font-size: 16px;
  font-weight: 300;
  color: white;
}

.footer__list {
  flex-direction: column;
  margin: 18px 0 31px 16px;
  align-self: flex-start;
}

.footer__elem {
  align-items: center;
}

.footer__elem:not(:last-child) {
  margin-bottom: 15px;
}

.footer__elem_img {
  width: 17px;
  height: 14px;
  margin-right: 16px;
}

.footer__elem_link {
  text-decoration: none;
  color: white;
  font-weight: 200;
  text-align: center;
  vertical-align: middle;
  line-height: 1.8;
  width: 130px;
  height: 28px;
  border-radius: 7px;
  background-image: linear-gradient(135deg, var(--common-gray) 60%, transparent);
}

.footer__elem_link:active {
  color: var(--common-yellow);
}