@charset "utf-8";

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter24pt-Thin.woff2') format('woff2'),
        url('../fonts/Inter24pt-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter24pt-Black.woff2') format('woff2'),
        url('../fonts/Inter24pt-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter24pt-Bold.woff2') format('woff2'),
        url('../fonts/Inter24pt-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter24pt-ExtraBold.woff2') format('woff2'),
        url('../fonts/Inter24pt-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter24pt-ExtraLight.woff2') format('woff2'),
        url('../fonts/Inter24pt-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter24pt-Light.woff2') format('woff2'),
        url('../fonts/Inter24pt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter24pt-Medium.woff2') format('woff2'),
        url('../fonts/Inter24pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter24pt-Regular.woff2') format('woff2'),
        url('../fonts/Inter24pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter24pt-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter24pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cyntho Next';
    src: url('../fonts/CynthoNext-Thin.woff2') format('woff2'),
        url('../fonts/CynthoNext-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Cyntho Next';
    src: url('../fonts/CynthoNext-ExtraBold.woff2') format('woff2'),
        url('../fonts/CynthoNext-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cyntho Next';
    src: url('../fonts/CynthoNext-Bold.woff2') format('woff2'),
        url('../fonts/CynthoNext-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cyntho Next';
    src: url('../fonts/CynthoNext-ExtraLight.woff2') format('woff2'),
        url('../fonts/CynthoNext-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cyntho Next';
    src: url('../fonts/CynthoNext-Light.woff2') format('woff2'),
        url('../fonts/CynthoNext-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cyntho Next';
    src: url('../fonts/CynthoNext-Medium.woff2') format('woff2'),
        url('../fonts/CynthoNext-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cyntho Next';
    src: url('../fonts/CynthoNext-Regular.woff2') format('woff2'),
        url('../fonts/CynthoNext-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cyntho Next';
    src: url('../fonts/CynthoNext-SemiBold.woff2') format('woff2'),
        url('../fonts/CynthoNext-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ---------- common start ---------- */

:root {
  --color-red-1: #B52C38;
  --color-red-2: #801716;
  --half-duration: calc(var(--duration, 15s)/2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  color: var(--color-red-2);
  font-family: 'Inter', 'Montserrat', Verdana, Arial, sans-serif;
}
img {
  pointer-events: none;
}
.no_highlights,
.orange_button,
.source_title,
.ferlip_main .swiper-pagination,
img,
button,
a {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a *,
button * {
  pointer-events: none;
}
sup {
  font-size: .6em;
  line-height: .1em;
}
.bold_text {
  font-weight: 700;
}
.uppercase_text {
  text-transform: uppercase;
}
.transparent_button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 6.6rem;
  border: 1px solid #FFFFFF;
  border-radius: 3.4rem;
  cursor: pointer;
  transition: transform .6s ease, background-color .6s ease;
  background-color: transparent;
  outline: none;
  font-size: 1rem;
  color: #FFFFFF;
  text-decoration: none !important;
}
.transparent_button:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, .2);
}
.transparent_button span {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
}
.white_button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6.4rem;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 3.2rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: transform .6s ease, background-color .6s ease;
  outline: none;
  font-size: 1rem;
  color: var(--color-red-1);
  text-decoration: none !important;
}
.white_button:hover {
  transform: scale(1.05);
}
.white_button span {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- common end ---------- */

/* ---------- header start ---------- */

.ferlip_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 182.4rem;
  height: 9.6rem;
  border-radius: 3.2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding-right: 2rem;
  padding-left: 4rem;
  background-color: rgba(133, 58, 58, .8);
  position: fixed;
  top: 2.4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  transition: all .6s ease;
  opacity: 0;
  transform: translateY(-10rem);
  transition: transform 1s ease .2s, opacity 1s ease .2s;
}
.start_body .ferlip_header {
  opacity: 1;
  transform: none;
}
.header_logo {
  display: block;
  width: 28.1rem;
  transition: transform .6s ease;
  transform-origin: 0 center;
}
.header_links_nav {
  display: block;
}
.header_links_list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
}
.header_link_item {
  margin-right: 3.4rem;
}
.header_link_item:last-child {
  margin-right: 0;
}
.header_link_item_mobile {
  display: none;
}
.header_link {
  font-size: 1.6rem;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
}
.header_link:hover {
  text-decoration: underline;
}
.burger_button {
  display: none;
}
.buy_button {
  width: 20rem;
  transition: all .6s ease;
}
.buy_button_mobile {
  display: none;
}

/* ---------- header end ---------- */

/* ---------- main start ---------- */

.ferlip_main {
  width: 100%;
  position: relative;
  background-color: #FFF3E7;
  padding: 29.8rem 0 18.4rem;
}
.ferlip_main_section {
  width: 100%;
  position: relative;
  z-index: 3;
  scroll-margin-top: 6rem;
  padding: 0 22.8rem;
  margin-top: 6rem;
}
.section_1 {
  margin: 0;
}
.main_title {
  display: block;
  font-size: 6rem;
  line-height: 1.2em;
  font-weight: 700;
  color: var(--color-red-1);
}
.main_line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1.6rem;
}
.main_line_text {
  display: block;
  font-size: 1.4rem;
  line-height: 1em;
  color: #5A5A5A;
}
.main_image_container {
  display: block;
  width: 100%;
  height: 48rem;
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  margin-top: 3rem;
}
.main_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform .6s ease;
}
.main_image_container:hover .main_image {
  transform: scale(1.05);
}
.load_button {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  width: 30rem;
  height: 6.4rem;
  z-index: 2;
}
.section_2 {
  margin-top: 8rem;
}
.instruction_title {
  display: block;
  font-size: 2.8rem;
  line-height: 1em;
  font-weight: 700;
}
.instruction_text {
  display: block;
  font-size: 2.2rem;
  line-height: 1.4em;
  font-weight: 400;
  margin-top: 2rem;
}
.allo_galochka_block {
  display: block;
  position: relative;
  margin-top: 3rem;
  padding-left: 6.7rem;
  padding-top: 0.6rem;
}
.allo_galochka_block:before {
  content: '';
  display: block;
  width: 4.3rem;
  height: 4.3rem;
  background-image: url(./img/icon_galochka.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.allo_galochka_block .instruction_text {
  margin-top: 0;
}
.composition_list {
  display: block;
  width: 100%;
  margin-top: 1rem;
  list-style: none;
}
.composition_item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.composition_text_container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #FFFFFF;
  border: 2px solid #FFF3E7;
  height: 9rem;
  padding: 0 3rem;
}
.composition_text_container:first-child {
  width: 87.3rem;
}
.composition_text_container:nth-child(2),
.composition_text_container:nth-child(3) {
  width: 29.5rem;
}
.composition_text_container .instruction_text {
  margin: 0;
  transition: color .6s ease;
}
.composition_text_container:hover .instruction_text {
  color: var(--color-red-1);
}
.state_list {
  display: block;
  width: 100%;
  list-style: none;
  margin-top: 2rem;
}
.state_item {
  display: block;
  width: 100%;
  margin-top: 2rem;
  position: relative;
  padding-left: 3.6rem;
}
.state_item .instruction_text {
  margin-top: 0;
}
.state_item:first-child {
  margin-top: 0;
}
.state_item:before {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--color-red-2);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}

/* ---------- main end ---------- */

/* ---------- footer start ---------- */

.ferlip_footer {
  width: 100%;
}
.zambon_line {
  background-color: #AEBA00;
  padding-left: 5.8rem;
}
.zambon_link {
  display: block;
  width: 18.8rem;
  cursor: pointer;
}
.zambon_link_image {
  display: block;
  width: 100%;
}
.footer_container {
  width: 100%;
  background-color: #5A5A5A;
  position: relative;
  padding: 5.5rem 5.8rem 26rem;
}
.footer_info_links_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  list-style: none;
  height: 7.4rem;
  width: 130rem;
  margin-left: 54.4rem;
}
.footer_info_link_item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 43rem;
}
.footer_info_link_item:nth-child(1),
.footer_info_link_item:nth-child(3),
.footer_info_link_item:nth-child(5) {
  margin-bottom: 3.4rem;
}
.footer_link {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2em;
  font-weight: 700;
  cursor: pointer;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
}
.footer_info_links_list .footer_link {
  text-decoration: underline;
}
.footer_info_links_list .footer_link:hover {
  text-decoration: none;
}
.footer_more_links_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 22rem;
  list-style: none;
}
.footer_more_link_item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1rem;
}
.footer_more_link_item:first-child {
  margin-top: 0;
}
.footer_more_links_list .footer_link {
  text-decoration: none;
}
.footer_more_links_list .footer_link:hover {
  text-decoration: underline;
}
.footer_copyright_block {
  display: block;
  width: 41rem;
  position: absolute;
  top: 5.5rem;
  left: 5.8rem;
}
.footer_copyright_text {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.footer_info_block {
  display: block;
  width: 100%;
  position: absolute;
  top: 19.5rem;
  padding-left: 5.8rem;
  left: 0;
}
.footer_info_text {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.disclaimer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 146.4rem;
  height: auto;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
  background-color: rgba(137, 29, 31, .3);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  margin: 0 auto;
  padding: 1.7rem 5rem 0.8rem;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  opacity: 0;
  transform: translateY(20rem);
  transition: transform 1s ease 2.5s, opacity 1s ease 2.5s;
}
.start_body .disclaimer {
  opacity: 1;
  transform: none;
}
.disclaimer_desk {
  display: block;
  opacity: .6;
  width: 100%;
}
.disclaimer_mobile {
  display: none;
}

/* ---------- footer end ---------- */

.back_to_top_button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  width: 7rem;
  height: 7rem;
  background-color: var(--color-red-2);
  border-radius: 50%;
  position: fixed;
  right: 4rem;
  bottom: 14rem;
  transition: opacity .4s ease, background-color .4s ease;
  border: none;
  outline: none;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  pointer-events: none;
}
.back_to_top_button svg {
  width: 55%;
  fill: #FFFFFF;
  transition: transform .4s ease;
}
.back_to_top_button.active {
  z-index: 18;
  opacity: 1;
  pointer-events: auto;
}
.back_to_top_button.active:hover {
  background-color: #a65c5b;
}
.back_to_top_button:hover svg {
  transform: translateY(-.5rem);
}

.cookie_section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform .4s ease;
  background-color: #AEBA00;
  padding: 3rem 7rem;
}
.cookie_text {
  display: block;
  width: 120rem;
  font-size: 2rem;
  line-height: 1.25em;
}
.cookie_text a {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.cookie_text a:hover {
  text-decoration: none;
}
.ok_cookie_button {
  width: 20rem;
}

@media screen and (max-width: 1800px) {
  html {
    font-size: .5vw;
  }
}

@media screen and (max-width: 1621px) {

  .transparent_button span {
    font-size: 2.1rem;
  }
  .white_button span {
    font-size: 1.9rem;
  }

  /* ---------- header start ---------- */

  .ferlip_header {
    width: 177.4rem;
    height: 9.6rem;
    border-radius: 3.2rem;
    padding-right: 3rem;
    padding-left: 1.5rem;
    top: 2.9rem;
  }
  .header_logo {
    width: 25.1rem;
  }
  .header_link_item {
    margin-right: 3.4rem;
  }
  .header_link {
    font-size: 1.6rem;
  }
  .buy_button {
    width: 17rem;
    height: 5.7rem;
  }

  /* ---------- header end ---------- */

/*  .disclaimer {
    border-top-left-radius: 6rem;
    border-top-right-radius: 6rem;
  }
  .disclaimer_desk {
    height: 9rem;
  }*/
}

@media screen and (min-width: 2000px) {
  html {
    font-size: .5vw;
  }
}

@media screen and (max-width: 768px) and (max-aspect-ratio: 4 / 3) {

  html {
    font-size: 1vw;
  }

  /* ---------- common start ---------- */

  .transparent_button {
    height: 12rem;
    border-radius: 6rem;
  }
  .transparent_button span {
    font-size: 4rem;
  }
  .white_button {
    height: 12rem;
    border-radius: 6rem;
  }
  .white_button:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, .8);
  }
  .white_button span {
    font-size: 3rem;
  }

  /* ---------- common end ---------- */

  /* ---------- header start ---------- */

  .ferlip_header {
    width: 90rem;
    height: 17rem;
    border-radius: 3.2rem;
    padding-right: 3rem;
    padding-left: 3.5rem;
    top: 8rem;
  }
  .ferlip_header_small {
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    top: 0;
  }
  .ferlip_header:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background-color: inherit;
    pointer-events: none;
    top: 0;
    left: 0;
    border-radius: inherit;
    transition: background-color .6s ease;
  }
  .ferlip_header:after {
    content: '';
    display: block;
    width: 100rem;
    height: 20rem;
    background: linear-gradient(180deg, #520F17 0%, rgba(82, 15, 23, 0) 90%);
    position: absolute;
    top: 0;
    left: -5rem;
    opacity: 0;
    transform: scaleY(0);
    transition: all .4s ease;
  }
  .ferlip_header_small:after {
    opacity: 1;
    transform: none;
  }
  .header_logo {
    width: 34rem;
    position: relative;
    z-index: 4;
    transition: opacity .6s ease;
  }
  .ferlip_header_small .header_logo {
    opacity: 0;
    pointer-events: none;
  }
  .header_links_nav {
    display: block;
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    overflow: hidden;
    transition: opacity .6s ease;
  }
  .ferlip_header_small .header_links_nav {
    opacity: 0;
    pointer-events: none;
  }
  .header_links_list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    height: 80rem;
    width: 100%;
    max-height: 0;
    transition: all .6s ease;
    border-radius: inherit;
    overflow: hidden;
    padding-top: 0;
  }
  .open_menu .header_links_list {
    max-height: 80rem;
    padding-top: 24rem;
  }
  .header_link_item {
    margin-right: 0;
    margin-top: 4rem;
  }
  .header_link_item:first-child {
    margin-top: 0;
  }
  .header_link_item_mobile {
    display: block;
  }
  .header_link {
    font-size: 3.2rem;
    color: var(--color-red-1);
  }
  .burger_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12rem;
    height: 12rem;
    border-radius: 2rem;
    background-color: #FFFFFF;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    z-index: 4;
    transition: opacity .6s ease;
  }
  .ferlip_header_small .burger_button {
    opacity: 0;
    pointer-events: none;
  }
  .burger_button:before,
  .burger_button:after,
  .burger_button_line {
    width: 5.5rem;
    height: 2px;
    border-radius: 1px;
    background-color: var(--color-red-1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all .6s ease;
  }
  .burger_button:before {
    content: '';
    transform: translateY(-2rem);
  }
  .burger_button:after {
    content: '';
    transform: translateY(2rem);
  }
  .open_menu .burger_button_line {
    opacity: 0;
  }
  .open_menu .burger_button:before {
    transform: rotate(45deg);
  }
  .open_menu .burger_button:after {
    transform: rotate(-45deg);
  }
  .buy_button_desk {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 4rem;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4rem);
    transition: all .6s ease;
  }
  .ferlip_header_small .buy_button_desk {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .buy_button_mobile {
    display: flex;
    background-color: var(--color-red-1);
    color: #FFFFFF;
  }
  .buy_button {
    width: 40rem;
  }

  /* ---------- header end ---------- */

  /* ---------- main start ---------- */

  .ferlip_main {
    padding: 42rem 0 10rem;
  }
  .ferlip_main_section {
    scroll-margin-top: 12rem;
    padding: 0 4rem;
    margin-top: 10rem;
  }
  .section_1 {
    margin: 0;
  }
  .main_title {
    font-size: 6.5rem;
  }
  .main_line {
    display: block;
    margin-top: 4rem;
  }
  .main_line_item:nth-child(2) {
    margin-top: 4rem;
  }
  .main_line_text {
    font-size: 3.5rem;
  }
  .main_image_container {
    height: 120rem;
    border-radius: 6rem;
    margin-top: 8rem;
  }
  .load_button {
    bottom: 6rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 75rem;
    height: 16rem;
    border-radius: 8rem;
  }
  .load_button span {
    font-size: 4rem;
  }
  .section_2 {
    margin-top: 10rem;
  }
  .instruction_title {
    font-size: 4rem;
  }
  .instruction_text {
    font-size: 4rem;
    margin-top: 5rem;
  }
  .allo_galochka_block {
    margin-top: 5rem;
    padding-left: 12rem;
    padding-top: 0;
  }
  .allo_galochka_block:before {
    width: 7rem;
    height: 7rem;
    bottom: 0;
    margin: auto 0;
  }
  .allo_galochka_block .instruction_text {
    margin-top: 0;
  }
  .composition_list {
    margin-top: 2.5rem;
  }
  .composition_text_container {
    border: 1px solid #FFF3E7;
    height: 16rem;
    padding: 0 2.5rem;
  }
  .composition_text_container:first-child {
    width: 46rem;
  }
  .composition_text_container:nth-child(2),
  .composition_text_container:nth-child(3) {
    width: 23rem;
  }
  .composition_text_container .instruction_text {
    line-height: 1.2em;
    font-size: 3.5rem;
    margin: 0;
    transition: color .6s ease;
  }
  .state_list {
    margin-top: 5rem;
  }
  .state_item {
    margin-top: 5rem;
    padding-left: 4.5rem;
  }
  .state_item .instruction_text {
    margin-top: 0;
  }
  .state_item:first-child {
    margin-top: 0;
  }
  .state_item:before {
    width: 1.2rem;
    height: 1.2rem;
  }

  /* ---------- main end ---------- */

  /* ---------- footer start ---------- */

  .zambon_line {
    padding-left: 2rem;
  }
  .zambon_link {
    width: 36rem;
  }
  .footer_container {
    padding: 8rem 9rem 10rem 4rem;
  }
  .footer_info_links_list {
    flex-wrap: nowrap;
    height: auto;
    width: 100%;
    margin-left: 0;
  }
  .footer_info_link_item {
    width: auto;
    margin-bottom: 5rem;
  }
  .footer_info_link_item:nth-child(1),
  .footer_info_link_item:nth-child(3),
  .footer_info_link_item:nth-child(5) {
    margin-bottom: 5rem;
  }
  .footer_info_link_item:last-child {
    margin-bottom: 0;
  }
  .footer_link {
    font-size: 3.5rem;
  }
  .footer_more_links_list {
    margin-top: 14rem;
  }
  .footer_more_link_item {
    margin-top: 3.5rem;
  }
  .footer_more_link_item:first-child {
    margin-top: 0;
  }
  .footer_copyright_block {
    width: 100%;
    position: static;
    top: auto;
    left: auto;
    margin-top: 6.5rem;
  }
  .footer_copyright_text {
    font-size: 2.5rem;
  }
  .footer_info_block {
    display: block;
    width: 100%;
    position: static;
    top: auto;
    padding-left: 0;
    left: auto;
    margin-top: 6.5rem;
  }
  .footer_info_text {
    font-size: 2.5rem;
    line-height: 1.3em;
  }
  .disclaimer {
    display: block;
    width: 100%;
    height: auto;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    padding: 2rem 0 2rem;
    position: static;
    border-radius: 2rem;
    margin-top: 10rem;
    z-index: 3;
  }
  .disclaimer_desk {
    display: none;
  }
  .disclaimer_mobile {
    display: block;
    width: 80rem;
    margin: 0 auto;
    opacity: 0.6;
  }

  /* ---------- footer end ---------- */

  .back_to_top_button {
    width: 9rem;
    height: 9rem;
    right: 2rem;
    bottom: 16rem;
  }

  .cookie_section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6rem 4rem;
  }
  .cookie_text {
    width: 100%;
    font-size: 3.2rem;
  }
  .ok_cookie_button {
    width: 40rem;
    margin-top: 4rem;
  }
}