/* Add styles */
@font-face {
  font-family: "Huninn";
  src: url("../fonts/Huninn-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url("../fonts/Heebo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Fredoka SemiCondensed";
  src: url("../fonts/Fredoka_SemiCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

:root {
  --color_orange: #F59985;
  --color_turquoise: #90CCD6C2;
  scroll-behavior: unset;
}

html {
  scroll-behavior: smooth !important;
}

strong, b {
  font-weight: 700;
}

p:not(:last-child) {
  margin-bottom: 0.8vw;
}

h1 {
  font-weight: 500;
  font-size: 3.75vw;
  line-height: 1.2;
  text-align: center;
  color: var(--color_blue);
}

ul,
ol {
  list-style-type: none;
  padding-right: 0;
}
ul:not(:last-child),
ol:not(:last-child) {
  margin-bottom: 0.8vw;
}
@media (max-width: 768px) {
  ul:not(:last-child),
  ol:not(:last-child) {
    margin-bottom: 0.6vw;
  }
}
ul li:not(:last-child),
ol li:not(:last-child) {
  margin-bottom: 0.4vw;
}

a {
  font-family: "Huninn", sans-serif;
  text-decoration: none;
  color: var(--color_blue);
  transition: 0.3s;
}

button {
  font-family: "Huninn", sans-serif;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: 0.3s;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: "Huninn", sans-serif;
  -webkit-appearance: none;
  outline: none;
}

input,
input::placeholder,
textarea,
textarea::placeholder {
  font-family: "Huninn", sans-serif;
  -webkit-appearance: none;
  outline: none;
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  background: #fff;
  border: none;
  font-weight: 500;
  font-size: 0.86vw;
  border-radius: 0.42vw;
  height: 2.815vw;
  line-height: 1;
  color: var(--color_blue);
  padding: 0.5vw 0.84vw;
  text-align: right;
  transition: all 0.3s ease;
  border: 0.10417vw solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

input[type=text]:-webkit-autofill,
input[type=email]:-webkit-autofill,
input[type=tel]:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
  width: 100%;
  background-color: #fff;
  border: none;
  font-weight: 500;
  font-size: 0.86vw;
  border-radius: 0.42vw;
  height: 2.815vw;
  line-height: 1;
  color: var(--color_blue);
  padding: 0.5vw 0.84vw;
  text-align: right;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 0.10417vw solid transparent;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
}

input[type=text]:-webkit-autofill:hover,
input[type=email]:-webkit-autofill:hover,
input[type=tel]:-webkit-autofill:hover {
  background-image: linear-gradient(white, white), linear-gradient(to right, #EEFF00 0%, #8FB1FB 50%, #0D0E38 100%) !important;
}

input[type=text]:-webkit-autofill:focus,
input[type=email]:-webkit-autofill:focus,
input[type=tel]:-webkit-autofill:focus {
  background-image: linear-gradient(white, white), linear-gradient(to right, #EEFF00 0%, #8FB1FB 50%, #0D0E38 100%) !important;
}

input[type=text]:hover,
input[type=email]:hover,
input[type=tel]:hover {
  background-image: linear-gradient(white, white), linear-gradient(to right, #EEFF00 0%, #8FB1FB 50%, #0D0E38 100%) !important;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus {
  background-image: linear-gradient(white, white), linear-gradient(to right, #0D0E38 0%, #8FB1FB 50%, #EEFF00 100%) !important;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  font-family: "Huninn", sans-serif;
  font-weight: 500;
  font-size: 0.86vw;
  line-height: 1;
  color: rgba(13, 14, 56, 0.3019607843);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  font-family: "Huninn", sans-serif;
  font-weight: 500;
  font-size: 0.86vw;
  line-height: 1;
  color: rgba(13, 14, 56, 0.3019607843);
}

input[type=submit] {
  padding: 1.1vw 1.45vw;
  border: 0.05208vw solid var(--color_blue);
  background: var(--color_blue);
  border-radius: 5.4vw;
  font-weight: 700;
  font-size: 0.94vw;
  line-height: 1.1;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
input[type=submit]:hover {
  background: var(--color_yellow);
  border-color: var(--color_yellow);
  color: var(--color_blue);
}

textarea {
  width: 100%;
  background: #fff;
  border: none;
  font-weight: 500;
  font-size: 0.86vw;
  border-radius: 0.42vw;
  height: 7vw;
  line-height: 1;
  color: var(--color_blue);
  padding: 0.84vw;
  text-align: right;
  transition: all 0.3s ease;
  border: 0.10417vw solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  resize: none;
}

textarea:hover {
  background-image: linear-gradient(white, white), linear-gradient(to right, #EEFF00 0%, #8FB1FB 50%, #0D0E38 100%);
}

textarea:focus {
  background-image: linear-gradient(white, white), linear-gradient(to right, #0D0E38 0%, #8FB1FB 50%, #EEFF00 100%);
}

textarea::-moz-placeholder {
  font-family: "Huninn", sans-serif;
  font-weight: 500;
  font-size: 0.86vw;
  line-height: 1;
  color: rgba(13, 14, 56, 0.3019607843);
}

textarea::placeholder {
  font-family: "Huninn", sans-serif;
  font-weight: 500;
  font-size: 0.86vw;
  line-height: 1;
  color: rgba(13, 14, 56, 0.3019607843);
}

.hide, .hidden {
  display: none;
}

.text_center {
  text-align: center;
}

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

.flex_row {
  display: flex;
  flex-direction: row;
}

.container {
  max-width: 87vw;
  padding: 0 2vw;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
.container.min-width {
  max-width: 50vw;
}

body {
  font-family: "Huninn", sans-serif;
  background: #fff;
  color: #000;
}
body .l-canvas {
  overflow-x: hidden;
}

main {
  min-height: 70vh;
}
@media (max-width: 768px) {
  main {
    padding-top: 80px;
  }
}

section {
  scroll-margin-top: 8vw;
}
@media (max-width: 768px) {
  section {
    scroll-margin-top: 80px;
  }
}

.pointer-events_none {
  pointer-events: none;
}

.swiper-wrapper {
  height: auto;
}

.swiper-scrollbar-drag {
  height: 0.25vw !important;
}

.wpcf7-form {
  direction: rtl;
}
.wpcf7-form .form_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}
.wpcf7-form .form_row .wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7-form .form_row .wpcf7-submit {
  width: 100%;
}
.wpcf7-form .form_row .wpcf7-spinner {
  position: absolute;
}

.btn {
  max-width: 19.79167vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625vw;
  background: var(--color_orange);
  color: #000;
  border: 0.05208vw solid var(--color_orange);
  border-radius: 10vw;
  padding: 0.625vw 1.04167vw;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 1.82292vw;
  line-height: 1.1;
}
.btn:hover {
  background: #fff;
  color: var(--color_orange);
}
.btn svg {
  width: 1.66667vw;
  height: 1.14583vw;
  display: block;
}
@media (max-width: 1200px) {
  .btn {
    font-size: 2vw;
  }
}
@media (max-width: 1000px) {
  .btn {
    font-size: 2.3vw;
  }
}
@media (max-width: 900px) {
  .btn {
    font-size: 2.6vw;
  }
}
@media (max-width: 768px) {
  .btn {
    max-width: 100%;
    font-size: 18px;
    padding: 14px 20px;
    gap: 10px;
  }
  .btn svg {
    width: 20px;
    height: 14px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 3.6vw;
    line-height: 1.2;
  }
  main {
    padding-top: 29vw;
  }
}
@media (max-width: 767px) and (max-width: 768px) {
  main {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel] {
    height: 13.75vw;
    font-size: 3.7vw;
    padding: 1vw 3.1vw;
    border-radius: 2.05vw;
  }
  input[type=text]:-webkit-autofill,
  input[type=email]:-webkit-autofill,
  input[type=tel]:-webkit-autofill {
    height: 13.75vw;
    font-size: 3.7vw;
    padding: 1vw 3.1vw;
    border-radius: 2.05vw;
  }
  input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
    font-size: 3.7vw;
  }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=tel]::placeholder {
    font-size: 3.7vw;
  }
  textarea {
    height: 25vw;
    font-size: 3.7vw;
    padding: 3.1vw;
    border-radius: 2.05vw;
  }
  textarea::-moz-placeholder {
    font-size: 3.7vw;
  }
  textarea::placeholder {
    font-size: 3.7vw;
  }
  .wpcf7-form .form_row {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3.055vw;
  }
}
.aurora-container {
  width: 100%;
  height: 26vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.8;
}

.load-more-btn {
  max-width: 11.5vw;
  width: 100%;
  min-height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4vw 1vw;
  background: var(--color_yellow);
  border-radius: 2vw;
  transition: 0.3s;
  font-weight: 500;
  font-size: 1vw;
  line-height: 1.1;
  color: var(--color_blue);
  margin: 3vw auto 0;
  position: relative;
}
.load-more-btn:hover {
  color: #fff;
  background: var(--color_light_blue);
}
.load-more-btn.loading {
  background: rgba(238, 255, 0, 0.4784313725);
  color: rgba(13, 14, 56, 0.5019607843);
  pointer-events: none;
}
.load-more-btn.loading svg {
  opacity: 1;
}
.load-more-btn svg {
  position: absolute;
  top: 0;
  right: 1vw;
  bottom: 0;
  width: 2vw;
  height: 2vw;
  z-index: 1;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  color: var(--color_blue);
}

.default-page {
  padding-bottom: 8vw;
}
.default-page .default-page__title {
  font-weight: 400;
  margin-bottom: 1.25vw;
}
.default-page .default-page__subtitle {
  font-weight: 400;
  font-size: 1.05vw;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
.default-page .default-page__subtitle span {
  color: var(--color_light_blue);
}
.default-page .default-page__content {
  margin-top: 2vw;
  font-weight: 400;
  font-size: 0.94vw;
  line-height: 1.3;
  text-align: right;
}
.default-page .default-page__content p:not(:last-child) {
  margin-bottom: 0.73vw;
}
.default-page .default-page__content ul:not(:last-child),
.default-page .default-page__content ol:not(:last-child) {
  margin-bottom: 0.73vw;
}
.default-page .default-page__content ul:not(:last-child):not(:first-child),
.default-page .default-page__content ol:not(:last-child):not(:first-child) {
  margin-top: 0.73vw;
}
.default-page .default-page__content h1 {
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 1.25;
  text-align: right;
  margin-bottom: 0.73vw;
}
.default-page .default-page__content h1:not(:first-child) {
  margin-top: 0.73vw;
}
.default-page .default-page__content h2 {
  font-weight: 400;
  font-size: 1.15vw;
  line-height: 1.25;
  text-align: right;
  margin-bottom: 0.73vw;
}
.default-page .default-page__content h2:not(:first-child) {
  margin-top: 0.73vw;
}
.default-page .default-page__content h3 {
  font-weight: 400;
  font-size: 1.15vw;
  line-height: 1.25;
  text-align: right;
  margin-bottom: 0.73vw;
}
.default-page .default-page__content h3:not(:first-child) {
  margin-top: 0.73vw;
}
.default-page .default-page__content h4 {
  font-weight: 400;
  font-size: 1.05vw;
  line-height: 1.25;
  text-align: right;
  margin-bottom: 0.73vw;
}
.default-page .default-page__content h4:not(:first-child) {
  margin-top: 0.73vw;
}
.default-page .default-page__content h5 {
  font-weight: 400;
  font-size: 1.05vw;
  line-height: 1.25;
  text-align: right;
  margin-bottom: 0.73vw;
}
.default-page .default-page__content h5:not(:first-child) {
  margin-top: 0.73vw;
}
.default-page .default-page__content h6 {
  font-weight: 400;
  font-size: 0.94vw;
  line-height: 1.25;
  text-align: right;
  margin-bottom: 0.73vw;
}
.default-page .default-page__content h6:not(:first-child) {
  margin-top: 0.73vw;
}

@media (max-width: 767px) {
  .aurora-container {
    height: 40vw;
  }
  .load-more-btn {
    max-width: 54.5vw;
    min-height: 13vw;
    border-radius: 10vw;
    font-size: 5.5vw;
    margin: 10vw auto 0;
  }
  .load-more-btn svg {
    right: 2vw;
    width: 9vw;
    height: 9vw;
  }
  .default-page {
    padding-bottom: 15.27vw;
  }
  .default-page .default-page__title {
    margin-bottom: 3.6vw;
  }
  .default-page .default-page__subtitle {
    font-size: 4.6vw;
  }
  .default-page .default-page__content {
    font-size: 3.6vw;
    line-height: 1.35;
  }
  .default-page .default-page__content p:not(:last-child) {
    margin-bottom: 3.1vw;
  }
  .default-page .default-page__content ul:not(:last-child),
  .default-page .default-page__content ol:not(:last-child) {
    margin-bottom: 3.1vw;
  }
  .default-page .default-page__content ul:not(:last-child):not(:first-child),
  .default-page .default-page__content ol:not(:last-child):not(:first-child) {
    margin-top: 3.1vw;
  }
  .default-page .default-page__content h1 {
    font-weight: 400;
    font-size: 5.25vw;
    line-height: 1.25;
    text-align: right;
    margin-bottom: 3.1vw;
  }
  .default-page .default-page__content h1:not(:first-child) {
    margin-top: 3.1vw;
  }
  .default-page .default-page__content h2 {
    font-weight: 400;
    font-size: 4.75vw;
    line-height: 1.25;
    text-align: right;
    margin-bottom: 3.1vw;
  }
  .default-page .default-page__content h2:not(:first-child) {
    margin-top: 3.1vw;
  }
  .default-page .default-page__content h3 {
    font-weight: 400;
    font-size: 4.75vw;
    line-height: 1.25;
    text-align: right;
    margin-bottom: 3.1vw;
  }
  .default-page .default-page__content h3:not(:first-child) {
    margin-top: 3.1vw;
  }
  .default-page .default-page__content h4 {
    font-weight: 400;
    font-size: 4.15vw;
    line-height: 1.25;
    text-align: right;
    margin-bottom: 3.1vw;
  }
  .default-page .default-page__content h4:not(:first-child) {
    margin-top: 3.1vw;
  }
  .default-page .default-page__content h5 {
    font-weight: 400;
    font-size: 4.15vw;
    line-height: 1.25;
    text-align: right;
    margin-bottom: 3.1vw;
  }
  .default-page .default-page__content h5:not(:first-child) {
    margin-top: 3.1vw;
  }
  .default-page .default-page__content h6 {
    font-weight: 400;
    font-size: 3.75vw;
    line-height: 1.25;
    text-align: right;
    margin-bottom: 3.1vw;
  }
  .default-page .default-page__content h6:not(:first-child) {
    margin-top: 3.1vw;
  }
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  padding: 1.04167vw 0 0;
  transition: all 0.3s ease;
}
header.scrolled {
  padding: 0.52083vw 0 0;
  box-shadow: 0 0.10417vw 0.52083vw rgba(0, 0, 0, 0.1);
}
header.scrolled .header__content .header_logo img {
  max-width: 8.33333vw;
}
@media (max-width: 768px) {
  header.scrolled .header__content .header_logo img {
    max-width: 100px;
  }
}
header .header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4vw;
}
header .header__content .header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
header .header__content .header__burger span {
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
header .header__content .header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
header .header__content .header__burger.active span:nth-child(2) {
  opacity: 0;
}
header .header__content .header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
header .header__content .header_btn {
  padding: 0.52083vw 1.77083vw;
  background: var(--color_orange);
  color: #000;
  border-radius: 10vw;
  text-decoration: none;
  font-size: 1.14583vw;
  line-height: 1;
  font-weight: 400;
  border: 0.05208vw solid var(--color_orange);
  transition: all 0.3s ease;
}
header .header__content .header_btn:hover {
  background: #fff;
  color: var(--color_orange);
}
header .header__content .header_nav {
  margin-left: auto;
}
header .header__content .header_nav .header_nav__close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: #000;
  cursor: pointer;
  z-index: 102;
  padding: 0;
}
header .header__content .header_nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3vw;
}
header .header__content .header_nav ul li {
  margin: 0;
}
header .header__content .header_nav ul li a {
  font-family: "Heebo", sans-serif;
  font-size: max(1.1vw, 14px);
  line-height: 1;
  font-weight: 400;
  transition: all 0.3s ease;
}
header .header__content .header_nav ul li a:hover {
  color: var(--color_orange);
}
header .header__content .header_logo img {
  max-width: 11.45833vw;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}
header .header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 1200px) {
  header .header__content .header_btn {
    font-size: 1.3vw;
  }
  header .header__content .header_nav ul li a {
    font-size: max(1.25vw, 14px);
  }
}
@media (max-width: 1000px) {
  header .header__content .header_btn {
    font-size: 1.5vw;
  }
  header .header__content .header_nav ul li a {
    font-size: max(1.4vw, 14px);
  }
}
@media (max-width: 900px) {
  header .header__content .header_btn {
    font-size: 1.7vw;
  }
  header .header__content .header_nav ul li a {
    font-size: max(1.6vw, 14px);
  }
}
@media (max-width: 768px) {
  header {
    padding: 15px 0 0;
  }
  header.scrolled {
    padding: 5px 0;
  }
  header .header__content {
    gap: 15px;
    position: relative;
  }
  header .header__content .header__burger {
    display: flex;
    order: 1;
  }
  header .header__content .header_btn {
    order: 2;
    padding: 10px 20px;
    font-size: 16px;
    flex: 1;
    text-align: center;
    max-width: 41vw;
  }
  header .header__content .header_logo {
    order: 3;
  }
  header .header__content .header_logo img {
    max-width: 120px;
  }
  header .header__content .header_nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    margin: 0;
    padding: 60px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  header .header__content .header_nav.active {
    right: 0;
  }
  header .header__content .header_nav .header_nav__close {
    display: block;
    right: auto;
    left: 20px;
  }
  header .header__content .header_nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  header .header__content .header_nav ul li {
    width: 100%;
    margin-bottom: 0;
  }
  header .header__content .header_nav ul li a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }
  header .header__overlay.active {
    display: block;
    opacity: 1;
  }
}

footer {
  padding: 1.40625vw 0 1.97917vw;
  background: var(--color_orange);
}
@media (max-width: 768px) {
  footer {
    padding: 25px 20px;
  }
}
footer .footer__text {
  font-size: 1.04167vw;
  line-height: 1.25;
  font-weight: 400;
  color: #000;
  text-align: center;
}
@media (max-width: 768px) {
  footer .footer__text {
    font-size: 16px;
    line-height: 1.4;
  }
}

section {
  background: linear-gradient(180deg, #fff 0%, rgba(217, 217, 217, 0.07) 8%, rgba(144, 204, 214, 0.72) 48%, rgba(144, 204, 214, 0.06) 92%, #fff 100%);
  margin-bottom: 4.16667vw;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
  }
}

.first_section {
  margin-top: 6.25vw;
}
@media (max-width: 768px) {
  .first_section {
    margin-top: 0px;
    background: linear-gradient(180deg, #fff 43%, rgba(217, 217, 217, 0.07) 30%, rgba(144, 204, 214, 0.72) 59%, rgba(144, 204, 214, 0.06) 92%, #fff 100%);
    overflow: hidden;
  }
}
.first_section .first_section__content {
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  .first_section .first_section__content {
    flex-direction: column-reverse;
  }
}
.first_section .first_section__content .first_section__content__body {
  max-width: 35.41667vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.04167vw;
  z-index: 1;
  padding: 3.125vw 0;
}
@media (max-width: 768px) {
  .first_section .first_section__content .first_section__content__body {
    max-width: 100%;
    padding: 30px 0;
    gap: 20px;
  }
}
.first_section .first_section__content .first_section__content__body .first_section__content__body__image {
  width: 100%;
  height: auto;
}
.first_section .first_section__content .first_section__content__body .first_section__content__body__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.first_section .first_section__content .first_section__content__body .first_section__content__body__description {
  font-size: 1.35417vw;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  color: #000;
  margin-top: -1.66667vw;
}
@media (max-width: 768px) {
  .first_section .first_section__content .first_section__content__body .first_section__content__body__description {
    font-size: 18px;
    margin-top: 0;
  }
}
.first_section .first_section__content .first_section__content__body .first_section__content__body__button {
  margin-top: 1.04167vw;
}
@media (max-width: 768px) {
  .first_section .first_section__content .first_section__content__body .first_section__content__body__button {
    margin-top: 20px;
  }
}
.first_section .first_section__content .first_section__content__video {
  width: 50%;
  margin: 0 auto 0 -2vw;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .first_section .first_section__content .first_section__content__video {
    width: calc(100% + 180px);
    margin: 0 -160px 0 0;
  }
}
.first_section .first_section__content .first_section__content__video video {
  max-width: 100%;
  width: auto;
  height: 95%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
}
@media (max-width: 768px) {
  .first_section .first_section__content .first_section__content__video video {
    height: auto;
    width: 100%;
  }
}

.about_book {
  overflow: hidden;
}
.about_book .about_book__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25vw;
}
@media (max-width: 768px) {
  .about_book .about_book__content {
    flex-direction: column;
    gap: 30px;
  }
}
.about_book .about_book__content .about_book__content__image {
  width: 50%;
  margin-right: -8.5vw;
}
@media (max-width: 1600px) {
  .about_book .about_book__content .about_book__content__image {
    margin-right: -2vw;
  }
}
@media (max-width: 768px) {
  .about_book .about_book__content .about_book__content__image {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }
}
.about_book .about_book__content .about_book__content__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.about_book .about_book__content .about_book__content__body {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625vw;
  padding: 1.5625vw 0.78125vw;
}
@media (max-width: 768px) {
  .about_book .about_book__content .about_book__content__body {
    width: 100%;
    padding: 0;
    gap: 15px;
  }
}
.about_book .about_book__content .about_book__content__body .about_book__content__body__title {
  font-size: 2.60417vw;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .about_book .about_book__content .about_book__content__body .about_book__content__body__title {
    font-size: 28px;
  }
}
.about_book .about_book__content .about_book__content__body .about_book__content__body__description {
  font-size: 1.35417vw;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
}
@media (max-width: 768px) {
  .about_book .about_book__content .about_book__content__body .about_book__content__body__description {
    font-size: 16px;
  }
}
.about_book .about_book__content .about_book__content__body .about_book__content__body__description p:first-child {
  margin: 0 -0.78125vw;
  padding: 1.14583vw 0.78125vw;
  background: rgba(144, 204, 214, 0.7607843137);
  border-radius: 1.5625vw;
}
@media (max-width: 768px) {
  .about_book .about_book__content .about_book__content__body .about_book__content__body__description p:first-child {
    margin: 0;
    padding: 15px;
    border-radius: 15px;
  }
}
.about_book .about_book__content .about_book__content__body .about_book__content__body__description p:not(:last-child) {
  margin-bottom: 1.14583vw;
}
@media (max-width: 768px) {
  .about_book .about_book__content .about_book__content__body .about_book__content__body__description p:not(:last-child) {
    margin-bottom: 15px;
  }
}

.about_loty .about_loty__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.16667vw;
}
.about_loty .about_loty__content .about_loty__content__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625vw;
  padding: 1.5625vw 0.78125vw;
}
.about_loty .about_loty__content .about_loty__content__body .about_loty__content__body__title {
  font-size: 2.60417vw;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin-bottom: 2.08333vw;
}
.about_loty .about_loty__content .about_loty__content__body .about_loty__content__body__description {
  font-size: 1.35417vw;
  line-height: 1.3;
  font-weight: 400;
  color: #000;
}
.about_loty .about_loty__content .about_loty__content__body .about_loty__content__body__description p:not(:last-child) {
  margin-bottom: 1.14583vw;
}
.about_loty .about_loty__content .about_loty__content__body .about_loty__content__body__description a {
  color: #000;
  text-decoration: underline;
}
.about_loty .about_loty__content .about_loty__content__body .about_loty__content__body__description a:hover {
  color: var(--color_orange);
}
.about_loty .about_loty__content .about_loty__content__image {
  max-width: 33.33333vw;
  width: 100%;
  flex-shrink: 0;
}
.about_loty .about_loty__content .about_loty__content__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 1200px) {
  .about_loty .about_loty__content {
    gap: 2.08333vw;
  }
  .about_loty .about_loty__content .about_loty__content__image {
    width: 20.83333vw;
  }
}
@media (max-width: 768px) {
  .about_loty .about_loty__content {
    flex-direction: column;
    gap: 30px;
  }
  .about_loty .about_loty__content .about_loty__content__body {
    padding: 0;
  }
  .about_loty .about_loty__content .about_loty__content__body .about_loty__content__body__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .about_loty .about_loty__content .about_loty__content__body .about_loty__content__body__description {
    font-size: 16px;
  }
  .about_loty .about_loty__content .about_loty__content__body .about_loty__content__body__description p:not(:last-child) {
    margin-bottom: 15px;
  }
  .about_loty .about_loty__content .about_loty__content__image {
    width: 100%;
    max-width: 100%;
  }
}

.interesting_facts .interesting_facts__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.60417vw;
  margin-top: -4.16667vw;
  margin-bottom: 3.33333vw;
}
@media (max-width: 768px) {
  .interesting_facts .interesting_facts__head {
    flex-direction: column;
    gap: 30px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
.interesting_facts .interesting_facts__head .interesting_facts__head__content {
  max-width: 40%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .interesting_facts .interesting_facts__head .interesting_facts__head__content {
    max-width: 100%;
    text-align: center;
  }
}
.interesting_facts .interesting_facts__head .interesting_facts__head__content .interesting_facts__head__content__title {
  font-size: 2.60417vw;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .interesting_facts .interesting_facts__head .interesting_facts__head__content .interesting_facts__head__content__title {
    font-size: 28px;
  }
}
.interesting_facts .interesting_facts__head .interesting_facts__head__content .interesting_facts__head__content__description {
  font-size: 1.35417vw;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
}
@media (max-width: 768px) {
  .interesting_facts .interesting_facts__head .interesting_facts__head__content .interesting_facts__head__content__description {
    font-size: 18px;
    margin-top: 10px;
  }
}
.interesting_facts .interesting_facts__head .interesting_facts__head__image {
  width: 60%;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .interesting_facts .interesting_facts__head .interesting_facts__head__image {
    width: 100%;
  }
}
.interesting_facts .interesting_facts__head .interesting_facts__head__image img {
  max-width: 41.66667vw;
  width: 100%;
  max-height: 29.16667vw;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .interesting_facts .interesting_facts__head .interesting_facts__head__image img {
    max-width: 100%;
    max-height: none;
  }
}
.interesting_facts .interesting_facts__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.75vw 1.66667vw;
  align-items: stretch;
  justify-content: center;
  position: relative;
}
.interesting_facts .interesting_facts__list .interesting_facts__list__item {
  position: relative;
  background: none;
  border: 0.20833vw solid var(--color_orange);
  border-radius: 1.71875vw;
  padding: 0 2.08333vw 1.5625vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625vw;
}
.interesting_facts .interesting_facts__list .interesting_facts__list__item .interesting_facts__list__item__number {
  width: 5.9375vw;
  height: 5.9375vw;
  border-radius: 50%;
  background: url("../img/number-bg.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.20833vw;
  line-height: 1;
  font-family: "Fredoka SemiCondensed", sans-serif;
  font-weight: 500;
  color: #438894;
  margin-top: -2.08333vw;
}
.interesting_facts .interesting_facts__list .interesting_facts__list__item .interesting_facts__list__item__number span {
  display: inline-block;
  transform: skewX(12deg);
}
.interesting_facts .interesting_facts__list .interesting_facts__list__item .interesting_facts__list__item__text {
  font-size: 1.04167vw;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
}
.interesting_facts .interesting_facts__list .interesting_facts__list__item .interesting_facts__list__item__text p:not(:last-child) {
  margin-bottom: 0.625vw;
}
@media (max-width: 1200px) {
  .interesting_facts .interesting_facts__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .interesting_facts .interesting_facts__list {
    grid-template-columns: 1fr;
    gap: 50px 0;
  }
  .interesting_facts .interesting_facts__list .interesting_facts__list__item {
    padding: 10px 20px 30px;
    border-width: 3px;
    border-radius: 25px;
    gap: 2.625vw;
  }
  .interesting_facts .interesting_facts__list .interesting_facts__list__item .interesting_facts__list__item__number {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    font-size: 48px;
  }
  .interesting_facts .interesting_facts__list .interesting_facts__list__item .interesting_facts__list__item__text {
    font-size: 16px;
  }
  .interesting_facts .interesting_facts__list .interesting_facts__list__item .interesting_facts__list__item__text p:not(:last-child) {
    margin-bottom: 10px;
  }
}
.interesting_facts .interesting_facts__discover_more {
  margin-top: 5.20833vw;
  text-align: center;
}
.interesting_facts .interesting_facts__discover_more .interesting_facts__discover_more__title {
  font-size: 2.60417vw;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin-bottom: 2.08333vw;
}
.interesting_facts .interesting_facts__discover_more .interesting_facts__discover_more__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.04167vw;
  max-width: 62.5vw;
  margin: 0 auto;
}
.interesting_facts .interesting_facts__discover_more .interesting_facts__discover_more__list .interesting_facts__discover_more__list__item {
  max-width: none;
  width: auto;
  min-width: 10.41667vw;
  padding: 0.625vw;
  background: transparent;
  border: 0.05208vw solid #000;
  border-radius: 1.5625vw;
  color: #000;
  font-size: 1.04167vw;
  line-height: 1.1;
  font-weight: 400;
  transition: all 0.3s ease;
}
.interesting_facts .interesting_facts__discover_more .interesting_facts__discover_more__list .interesting_facts__discover_more__list__item:hover {
  background: var(--color_orange);
  border-color: var(--color_orange);
}
@media (max-width: 768px) {
  .interesting_facts .interesting_facts__discover_more {
    margin-top: 50px;
  }
  .interesting_facts .interesting_facts__discover_more .interesting_facts__discover_more__title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .interesting_facts .interesting_facts__discover_more .interesting_facts__discover_more__list {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    max-width: 100%;
  }
  .interesting_facts .interesting_facts__discover_more .interesting_facts__discover_more__list .interesting_facts__discover_more__list__item {
    width: 100%;
    min-width: auto;
    font-size: 16px;
    padding: 12px 20px;
    border-width: 1px;
    border-radius: 40px;
  }
}

.partnership .partnership__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.64583vw;
  margin-bottom: 3.64583vw;
  position: relative;
}
.partnership .partnership__head .partnership__head__image {
  width: 100%;
  max-width: 39.0625vw;
  margin-left: -10vw;
}
.partnership .partnership__head .partnership__head__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.partnership .partnership__head .partnership__head__title {
  font-size: 2.60417vw;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-top: 7.8125vw;
}
.partnership .partnership__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.60417vw;
  margin: 0 auto;
}
.partnership .partnership__list .partnership__list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25vw;
}
.partnership .partnership__list .partnership__list__item .partnership__list__item__photo {
  flex-shrink: 0;
  width: 13.17708vw;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: url("../img/photo-border.svg") center/cover no-repeat;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0.83333vw;
}
.partnership .partnership__list .partnership__list__item .partnership__list__item__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-radius: 100%;
}
.partnership .partnership__list .partnership__list__item .partnership__list__item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3125vw;
  padding-top: 1.66667vw;
}
.partnership .partnership__list .partnership__list__item .partnership__list__item__content .partnership__list__item__content__name {
  font-size: 1.30208vw;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
  margin: 0;
}
.partnership .partnership__list .partnership__list__item .partnership__list__item__content .partnership__list__item__content__description {
  font-size: 1.04167vw;
  line-height: 1.35;
  font-weight: 400;
  color: #000;
}
.partnership .partnership__list .partnership__list__item .partnership__list__item__content .partnership__list__item__content__description p:not(:last-child) {
  margin-bottom: 0.625vw;
}
@media (max-width: 1200px) {
  .partnership .partnership__list {
    gap: 1.5625vw 2.08333vw;
  }
}
@media (max-width: 768px) {
  .partnership .partnership__head {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .partnership .partnership__head .partnership__head__image {
    position: static;
    max-width: 250px;
    margin-left: 0;
  }
  .partnership .partnership__head .partnership__head__title {
    font-size: 28px;
    margin-top: 0;
  }
  .partnership .partnership__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .partnership .partnership__list .partnership__list__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .partnership .partnership__list .partnership__list__item .partnership__list__item__photo {
    width: 180px;
    height: 180px;
    padding: 10px;
  }
  .partnership .partnership__list .partnership__list__item .partnership__list__item__content {
    align-items: center;
    padding-top: 0;
  }
  .partnership .partnership__list .partnership__list__item .partnership__list__item__content .partnership__list__item__content__name {
    font-size: 20px;
  }
  .partnership .partnership__list .partnership__list__item .partnership__list__item__content .partnership__list__item__content__description {
    font-size: 16px;
  }
  .partnership .partnership__list .partnership__list__item .partnership__list__item__content .partnership__list__item__content__description p:not(:last-child) {
    margin-bottom: 10px;
  }
}

.recommendations {
  display: flex;
  flex-direction: column;
  position: relative;
  background: none;
  margin-top: 6.77083vw;
}
@media (max-width: 768px) {
  .recommendations {
    margin-top: 50px;
  }
}
.recommendations .recommendations__middle {
  background: #f59985;
  padding: 0;
  position: relative;
}
.recommendations .recommendations__middle .recommendations__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.125vw;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .recommendations .recommendations__middle .recommendations__content {
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
  }
}
.recommendations .recommendations__middle .recommendations__content .recommendations__content__image {
  flex-shrink: 0;
  width: auto;
  max-width: 24.47917vw;
  width: 100%;
  position: relative;
  z-index: 3;
  margin-top: -6.25vw;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .recommendations .recommendations__middle .recommendations__content .recommendations__content__image {
    max-width: 200px;
    margin: 0 auto;
    align-self: center;
  }
}
.recommendations .recommendations__middle .recommendations__content .recommendations__content__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  position: relative;
}
.recommendations .recommendations__middle .recommendations__content .recommendations__content__body {
  max-width: 38.54167vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  padding: 1.04167vw 0;
}
@media (max-width: 768px) {
  .recommendations .recommendations__middle .recommendations__content .recommendations__content__body {
    max-width: 100%;
    padding: 0;
    gap: 20px;
  }
}
.recommendations .recommendations__middle .recommendations__content .recommendations__content__body .recommendations__content__body__title {
  font-size: 2.60417vw;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0;
}
@media (max-width: 768px) {
  .recommendations .recommendations__middle .recommendations__content .recommendations__content__body .recommendations__content__body__title {
    font-size: 28px;
    text-align: center;
  }
}
.recommendations .recommendations__middle .recommendations__content .recommendations__content__body .recommendations__slider {
  width: 100%;
}
.recommendations .recommendations__middle .recommendations__content .recommendations__content__body .recommendations__slider .recommendations__slider__item {
  font-size: 1.04167vw;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
}
@media (max-width: 768px) {
  .recommendations .recommendations__middle .recommendations__content .recommendations__content__body .recommendations__slider .recommendations__slider__item {
    font-size: 16px;
    text-align: center;
  }
}
.recommendations .recommendations__middle .recommendations__content .recommendations__content__body .recommendations__slider .recommendations__slider__item p:not(:last-child) {
  margin-bottom: 0.625vw;
}
@media (max-width: 768px) {
  .recommendations .recommendations__middle .recommendations__content .recommendations__content__body .recommendations__slider .recommendations__slider__item p:not(:last-child) {
    margin-bottom: 10px;
  }
}
.recommendations .recommendations__bottom {
  height: 3.125vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .recommendations .recommendations__bottom {
    height: 50px;
  }
}
.recommendations .recommendations__bottom .recommendations__pagination {
  display: flex;
  gap: 0.41667vw;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .recommendations .recommendations__bottom .recommendations__pagination {
    gap: 8px;
  }
}
.recommendations .recommendations__bottom .recommendations__pagination .swiper-pagination-bullet {
  width: 0.78125vw;
  height: 0.78125vw;
  border-radius: 50%;
  background: #999;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}
@media (max-width: 768px) {
  .recommendations .recommendations__bottom .recommendations__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}
.recommendations .recommendations__bottom .recommendations__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
@media (max-width: 1200px) {
  .recommendations .recommendations__middle .recommendations__content {
    gap: 2.08333vw;
    padding: 40px 0 0;
  }
  .recommendations .recommendations__middle .recommendations__content .recommendations__content__image {
    max-width: 66vw;
    right: 10px;
  }
}

.about_purchase {
  text-align: center;
  margin-bottom: 7.8125vw;
}
@media (max-width: 768px) {
  .about_purchase {
    margin-bottom: 60px;
  }
}
.about_purchase .about_purchase__title {
  font-size: 2.60417vw;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin-bottom: 2.08333vw;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.about_purchase .about_purchase__image {
  max-width: 36.45833vw;
  width: 100%;
  margin: 0 auto 2.08333vw;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__image {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.about_purchase .about_purchase__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.about_purchase .about_purchase__description {
  font-size: 1.14583vw;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  margin-bottom: 2.08333vw;
  max-width: 46.875vw;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 100%;
    padding: 0 10px;
  }
}
.about_purchase .about_purchase__description p:not(:last-child) {
  margin-bottom: 1.25vw;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__description p:not(:last-child) {
    margin-bottom: 18px;
  }
}
.about_purchase .about_purchase__description a {
  color: #000;
  text-decoration: underline;
}
.about_purchase .about_purchase__description a:hover {
  color: var(--color_orange);
}
.about_purchase .about_purchase__description strong {
  font-weight: 700;
  display: block;
  margin-bottom: 0.41667vw;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__description strong {
    margin-bottom: 10px;
  }
}
.about_purchase .about_purchase__form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3.125vw;
  max-width: 62.5vw;
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 3.125vw;
  padding: 1.04167vw 0;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__form {
    flex-direction: column;
    gap: 25px;
    max-width: 100%;
    min-height: auto;
    padding: 0;
  }
}
.about_purchase .about_purchase__form #purchase-order-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.about_purchase .about_purchase__form #purchase-order-btn.disabled:hover {
  background: var(--color_orange);
  color: #000;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__form #purchase-order-btn {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    padding: 16px 24px;
  }
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper {
  position: relative;
  width: 100%;
  max-width: 22.39583vw;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__form .about_purchase__form__select-wrapper {
    max-width: 100%;
    align-self: stretch;
  }
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper.active {
  display: block;
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper select {
  display: none;
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-selected {
  padding: 0.625vw 1.66667vw;
  border: 0.05208vw solid #d3d3d3;
  border-radius: 2.60417vw;
  font-size: 1.82292vw;
  line-height: 1.1;
  background: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  color: #000;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-selected {
    padding: 16px 24px;
    font-size: 20px;
    border-radius: 30px;
    border-width: 2px;
  }
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-selected:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.04167vw;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.3125vw solid transparent;
  border-right: 0.3125vw solid transparent;
  border-top: 0.41667vw solid #000;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-selected:after {
    left: 18px;
    border-left-width: 6px;
    border-right-width: 6px;
    border-top-width: 8px;
  }
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-selected.select-arrow-active:after {
  transform: translateY(-50%) rotate(180deg);
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-selected:hover {
  border-color: var(--color_orange);
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 0.05208vw solid #d3d3d3;
  border-top: none;
  border-radius: 0 0 1.04167vw 1.04167vw;
  max-height: 13.54167vw;
  overflow-y: auto;
  margin-top: 0.20833vw;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-items {
    border-width: 2px;
    border-radius: 0 0 20px 20px;
    max-height: 250px;
    margin-top: 2px;
  }
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-items div {
  padding: 0.83333vw 1.66667vw;
  border-bottom: 0.05208vw solid #f0f0f0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #000;
  font-size: 1.25vw;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-items div {
    padding: 16px 24px;
    font-size: 18px;
    border-bottom-width: 1px;
  }
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-items div:hover {
  background-color: #f5f5f5;
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-items div:last-child {
  border-bottom: none;
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-items div.same-as-selected {
  background-color: rgba(245, 153, 133, 0.1);
  color: var(--color_orange);
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .select-hide {
  display: none;
}
.about_purchase .about_purchase__form .about_purchase__form__select-wrapper .about_purchase__form__select {
  width: 100%;
  padding: 0.83333vw 1.66667vw;
  border: 0.05208vw solid #d3d3d3;
  border-radius: 1.5625vw;
  font-size: 1.04167vw;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (max-width: 768px) {
  .about_purchase .about_purchase__form .about_purchase__form__select-wrapper .about_purchase__form__select {
    padding: 16px 24px;
    font-size: 18px;
    border-radius: 20px;
    border-width: 2px;
  }
}
@media (max-width: 768px) {
  .about_purchase {
    padding: 0;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .first_section .first_section__content__body__description {
    font-size: 1.5vw;
  }
  .about_book .about_book__content__body__title {
    font-size: 2.9vw;
  }
  .about_book .about_book__content__body__description {
    font-size: 1.5vw;
  }
  .about_loty .about_loty__content__body__title {
    font-size: 2.9vw;
  }
  .about_loty .about_loty__content__body__description {
    font-size: 1.5vw;
  }
  .interesting_facts .interesting_facts__head__content__title {
    font-size: 2.9vw;
  }
  .interesting_facts .interesting_facts__head__content__description {
    font-size: 1.5vw;
  }
  .interesting_facts .interesting_facts__list__item__text {
    font-size: 1.2vw;
  }
  .interesting_facts .interesting_facts__discover_more__title {
    font-size: 2.9vw;
  }
  .interesting_facts .interesting_facts__discover_more__list__item {
    font-size: 1.2vw;
  }
  .partnership .partnership__head__title {
    font-size: 2.9vw;
  }
  .partnership .partnership__list__item__content__name {
    font-size: 1.45vw;
  }
  .partnership .partnership__list__item__content__description {
    font-size: 1.2vw;
  }
  .recommendations .recommendations__content__body__title {
    font-size: 2.9vw;
  }
  .recommendations .recommendations__slider__item {
    font-size: 1.2vw;
  }
  .about_purchase .about_purchase__title {
    font-size: 2.9vw;
  }
  .about_purchase .about_purchase__description {
    font-size: 1.3vw;
  }
  .about_purchase .about_purchase__form__select-wrapper .select-selected {
    font-size: 2vw;
  }
  .about_purchase .about_purchase__form__select-wrapper .select-items div {
    font-size: 1.4vw;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .first_section .first_section__content__body__description {
    font-size: 1.7vw;
  }
  .about_book .about_book__content__body__title {
    font-size: 3.2vw;
  }
  .about_book .about_book__content__body__description {
    font-size: 1.7vw;
  }
  .about_loty .about_loty__content__body__title {
    font-size: 3.2vw;
  }
  .about_loty .about_loty__content__body__description {
    font-size: 1.7vw;
  }
  .interesting_facts .interesting_facts__head__content__title {
    font-size: 3.2vw;
  }
  .interesting_facts .interesting_facts__head__content__description {
    font-size: 1.7vw;
  }
  .interesting_facts .interesting_facts__list__item__text {
    font-size: 1.4vw;
  }
  .interesting_facts .interesting_facts__discover_more__title {
    font-size: 3.2vw;
  }
  .interesting_facts .interesting_facts__discover_more__list__item {
    font-size: 1.4vw;
  }
  .partnership .partnership__head__title {
    font-size: 3.2vw;
  }
  .partnership .partnership__list__item__content__name {
    font-size: 1.6vw;
  }
  .partnership .partnership__list__item__content__description {
    font-size: 1.4vw;
  }
  .recommendations .recommendations__content__body__title {
    font-size: 3.2vw;
  }
  .recommendations .recommendations__slider__item {
    font-size: 1.4vw;
  }
  .about_purchase .about_purchase__title {
    font-size: 3.2vw;
  }
  .about_purchase .about_purchase__description {
    font-size: 1.5vw;
  }
  .about_purchase .about_purchase__form__select-wrapper .select-selected {
    font-size: 2.3vw;
  }
  .about_purchase .about_purchase__form__select-wrapper .select-items div {
    font-size: 1.6vw;
  }
}
@media (min-width: 769px) and (max-width: 900px) {
  .first_section .first_section__content__body__description {
    font-size: 1.9vw;
  }
  .about_book .about_book__content__body__title {
    font-size: 3.5vw;
  }
  .about_book .about_book__content__body__description {
    font-size: 1.9vw;
  }
  .about_loty .about_loty__content__body__title {
    font-size: 3.5vw;
  }
  .about_loty .about_loty__content__body__description {
    font-size: 1.9vw;
  }
  .interesting_facts .interesting_facts__head__content__title {
    font-size: 3.5vw;
  }
  .interesting_facts .interesting_facts__head__content__description {
    font-size: 1.9vw;
  }
  .interesting_facts .interesting_facts__list__item__text {
    font-size: 1.6vw;
  }
  .interesting_facts .interesting_facts__discover_more__title {
    font-size: 3.5vw;
  }
  .interesting_facts .interesting_facts__discover_more__list__item {
    font-size: 1.6vw;
  }
  .partnership .partnership__head__title {
    font-size: 3.5vw;
  }
  .partnership .partnership__list__item__content__name {
    font-size: 1.75vw;
  }
  .partnership .partnership__list__item__content__description {
    font-size: 1.6vw;
  }
  .recommendations .recommendations__content__body__title {
    font-size: 3.5vw;
  }
  .recommendations .recommendations__slider__item {
    font-size: 1.6vw;
  }
  .about_purchase .about_purchase__title {
    font-size: 3.5vw;
  }
  .about_purchase .about_purchase__description {
    font-size: 1.7vw;
  }
  .about_purchase .about_purchase__form__select-wrapper .select-selected {
    font-size: 2.6vw;
  }
  .about_purchase .about_purchase__form__select-wrapper .select-items div {
    font-size: 1.8vw;
  }
}/*# sourceMappingURL=app.css.map */