.btn-link {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  transition: all 300ms ease;
  text-decoration: underline;
  border-color: transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-link:hover {
  text-decoration: none;
}
.btn-link .icon {
  width: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  transition: all 300ms ease;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  border-color: transparent;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0);
  font-size: 16px;
}
.btn--small {
  height: 40px;
  padding: 0 16px;
}
.btn--medium {
  height: 48px;
  padding: 0 24px;
}
.btn--large {
  height: 56px;
  padding: 0 24px;
}
.btn--primary {
  background-color: #fb4c45;
  color: #fff;
}
.btn--primary:hover {
  background-color: #ba483e;
}
.btn--conversion {
  background-color: #99bd04;
  color: #fff;
}
.btn--conversion:hover {
  background-color: #80962e;
}
.btn--conversion[disabled], .btn--conversion:disabled {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), #99BD04;
}
.btn--secondary {
  background-color: #fff;
  color: #333;
  border-color: #333;
}
.btn--secondary:hover {
  background-color: #333;
  color: #fff;
}
.btn--outline-light {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline-light:hover {
  background-color: #fff;
  color: #333;
}
.btn--outline-dark {
  background-color: transparent;
  color: #333;
  border-color: #333;
}
.btn--outline-dark:hover {
  background-color: #333;
  color: #fff;
}
.btn--white {
  background-color: #fff;
  color: #333;
}
.btn--white:hover {
  color: #fb4c45;
}
.btn .icon {
  width: 24px;
}

.form-value {
  position: relative;
}
.form-value .icon {
  position: absolute;
  right: 24px;
  top: 12px;
  width: 24px;
  color: #adadad;
}

.form-input {
  width: 100%;
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  transition: all 300ms ease;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  font-size: 16px;
  font-family: inherit;
}
.form-input::placeholder {
  color: #858585;
}
.form-input:hover, .form-input:focus {
  border-color: #adadad;
  outline: none;
}
.form-input:hover::placeholder, .form-input:focus::placeholder {
  color: #333;
}
.form-input--icon-right {
  padding-right: 60px;
}

.form-checkbox input {
  display: none;
}
.form-checkbox input:checked + label:before {
  background-color: #fb4c45;
  border-color: #fb4c45;
}
.form-checkbox input:checked + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.form-checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
}
.form-checkbox label:before, .form-checkbox label:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  transition: all 300ms ease;
  content: "";
}
.form-checkbox label:before {
  background-color: #fff;
  border: 2px solid #D6D6D6;
  border-radius: 4px;
}
.form-checkbox label:after {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  background: url("../img/ico-check.svg") no-repeat 50% 50%;
}

.form-radio input {
  display: none;
}
.form-radio input:checked + label:before {
  border-color: var(--primary-color-bg);
}
.form-radio input:checked + label:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.form-radio label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
}
.form-radio label:before, .form-radio label:after {
  position: absolute;
  transition: all 300ms ease;
  content: "";
}
.form-radio label:before {
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color-text);
  border: 2px solid #D6D6D6;
  border-radius: 50%;
}
.form-radio label:after {
  left: 6px;
  top: 6px;
  width: 12px;
  height: 12px;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  background-color: var(--primary-color-bg);
  border-radius: 50%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.h1 {
  line-height: 1.1;
  font-weight: 900;
}
@media screen and (max-width: 1199px) {
  .h1 {
    font-size: 52px;
  }
}
@media screen and (min-width: 1200px) {
  .h1 {
    font-size: 72px;
  }
}

.h2 {
  line-height: 1.2;
  font-weight: 900;
}
@media screen and (max-width: 1199px) {
  .h2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .h2 {
    font-size: 52px;
  }
}

.h3 {
  line-height: 1.2;
  font-size: 44px;
  font-weight: 900;
}

.h4 {
  line-height: 1.2;
  font-weight: 900;
}
@media screen and (max-width: 1199px) {
  .h4 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .h4 {
    font-size: 36px;
  }
}

.h5 {
  line-height: 1.2;
  font-size: 32px;
  font-weight: 700;
}

.h6 {
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .h6 {
    font-size: 24px;
  }
}

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.icon:before {
  padding-top: 100%;
  display: block;
  content: "";
}
.icon svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.color-red {
  --primary-color-bg: #fb4c45;
  --primary-color-text: #fff;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  --primary-color-bg: #fb4c45;
  --primary-color-text: #fff;
}
html.overflow {
  overflow-x: hidden;
  overflow-y: auto;
}
html.color-pistachio {
  --primary-color-bg: #99bd04;
}
html.color-camarone {
  --primary-color-bg: #236130;
}
html.color-champagne {
  --primary-color-bg: #F2E9CC;
  --primary-color-text: #333;
}
html.menu-active {
  overflow: hidden;
}
html.menu-active body {
  overflow: hidden;
}
html.locked {
  overflow: hidden;
}
html.locked body {
  overflow-y: scroll;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Gilroy";
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.container {
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1212px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1220px;
  }
}
@media screen and (max-width: 1199px) {
  .container--wide {
    max-width: 1432px;
  }
}
@media screen and (min-width: 1200px) {
  .container--wide {
    max-width: 1440px;
  }
}

main {
  overflow: hidden;
}
main.main--visible {
  overflow: visible;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

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

.upper-bar {
  display: none;
}
@media screen and (min-width: 600px) {
  .upper-bar {
    display: block;
  }
}
.upper-bar__in {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 374px) {
  .upper-bar__in {
    height: 28px;
  }
}
@media screen and (min-width: 375px) {
  .upper-bar__in {
    height: 36px;
  }
}
@media screen and (min-width: 768px) {
  .upper-bar__in {
    height: 54px;
  }
}
@media screen and (min-width: 992px) {
  .header .upper-bar .container {
    padding: 0;
  }
  .header .upper-bar__in {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .upper-bar__in {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.header {
  position: relative;
  z-index: 100;
  /*   &--is-hero {
      .header {
        &__wrap {
          @media screen and (min-width: 1200px){
            border-radius: 24px 24px 0 0;
          }
        }
      }
    } */
}
.header__wrap {
  background-color: var(--primary-color-bg);
}
@media screen and (max-width: 767px) {
  .header__wrap {
    margin-left: -16px;
    margin-right: -16px;
  }
}
@media screen and (min-width: 768px) {
  .header__wrap {
    border-radius: 24px;
  }
}
.header__in {
  display: flex;
  align-items: center;
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .header__in {
    justify-content: space-between;
    height: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 768px) {
  .header__in {
    height: 96px;
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 992px) {
  .header__in {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header__right {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header__right {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .header__right {
    column-gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .header--contact-inside {
    padding-top: 20px;
  }
  .header--contact-inside .header__wrap {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.header--sticky {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  transition: 0.3s ease transform;
  transform: translateY(0);
}
.show-menu .header--sticky {
  transform: translateY(100px);
}
@media screen and (min-width: 768px) {
  .show-menu .header--sticky {
    transform: translateY(120px);
  }
}

.header-btns {
  display: flex;
  column-gap: 8px;
}
@media screen and (max-width: 1199px) {
  .header-btns__item {
    width: 48px;
    padding: 0;
  }
}
@media screen and (max-width: 1199px) {
  .header-btns__value {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .header-btns__toggle {
    display: none;
  }
}

.header-menu__list {
  display: flex;
  column-gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .header-menu__list {
    column-gap: 32px;
  }
}
.header-menu__item--active .menu {
  display: block;
}
.header-menu__item--active .icon {
  transform: rotate(-180deg);
}
.header-menu__link {
  display: flex;
  align-items: center;
  column-gap: 8px;
  text-decoration: none;
  color: var(--primary-color-text);
  font-weight: 700;
}
.header-menu__link .icon {
  width: 24px;
  transition: all 300ms ease;
}

.header-toggle-menu {
  display: flex;
  color: var(--primary-color-text);
}
.header-toggle-menu--active .header-toggle-menu__icon--open {
  display: none;
}
.header-toggle-menu--active .header-toggle-menu__icon--close {
  display: block;
}
.header-toggle-menu--active .menu {
  display: block;
}
@media screen and (min-width: 768px) {
  .header-toggle-menu--responsive {
    display: none;
  }
}
.header-toggle-menu__icon {
  cursor: pointer;
  padding: 10px;
  border-radius: 8px; 
  border: 1px solid white;
}
.header-toggle-menu__icon--close {
  display: none;
}
.header-toggle-menu__icon .icon {
  width: 24px;
}

.header-contact {
  display: flex;
  align-items: center;
  column-gap: 32px;
}
@media screen and (max-width: 767px) {
  .header-contact {
    column-gap: 8px;
  }
}
@media screen and (min-width: 768px) {
  .header-contact {
    column-gap: 32px;
  }
}
.header-contact__item {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .header-contact__item {
    column-gap: 4px;
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .header-contact__item {
    column-gap: 8px;
    font-size: 14px;
  }
}
.header-contact__item:is(a) {
  font-weight: 700;
}
.header-contact__item:is(a):hover {
  text-decoration: underline;
}
.header-contact .icon {
  color: var(--primary-color-bg);
}
@media screen and (max-width: 767px) {
  .header-contact .icon {
    width: 16px;
  }
}
@media screen and (min-width: 768px) {
  .header-contact .icon {
    width: 20px;
  }
}
.header .header-contact__item {
  color: var(--primary-color-text);
}
.header .header-contact__item .icon {
  color: inherit;
}

.menu {
  display: none;
  z-index: 4;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: -18px;
  background-color: var(--primary-color-bg);
  border-radius: 0 0 24px 24px;
}
.menu__in {
  display: flex;
  padding: 40px 40px 60px 40px;
}

.menu-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 40px;
  flex: 1;
  min-width: 1px;
}
.menu-links__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 24px;
}
.menu-links__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color-text);
}

.menu-links-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.menu-links-list--bigger .menu-links-list__item {
  font-size: var(--primary-color-text);
}
.menu-links-list__item {
  text-decoration: none;
  color: var(--primary-color-text);
  font-weight: 700;
}
.menu-links-list__item:hover {
  text-decoration: underline;
}

.menu-programs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 24px;
}

.menu-programs-item {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.menu-programs-item__image img {
  width: 100%;
}
.menu-programs-item__content {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  color: var(--primary-color-text);
}
.menu-programs-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.menu-programs-item__title {
  font-weight: 700;
  font-size: 22px;
}
.menu-programs-item__price {
  font-weight: 700;
}
.menu-programs-item__price span {
  font-weight: 400;
  font-size: 12px;
}
.menu-banner {
  padding-left: 68px;
  padding-top: 24px;
  margin-left: 68px;
  border-left: 1px solid #fff;
}
.menu-banner__in {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  row-gap: 24px;
  width: 312px;
  padding: 0 24px 32px 24px;
  background: rgba(51, 51, 51, 0.2);
  border-radius: 24px;
  text-align: center;
}
.menu-banner__image {
  margin-top: -24px;
}
.menu-banner__title {
  line-height: 1.4;
  color: var(--primary-color-text);
  font-size: 24px;
  font-weight: 700;
}

.responsive-menu {
  display: none;
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 16px 16px 16px;
  max-height: 100%;
  overflow: auto;
  top: 60px;
  background-color: #fb4c45;
}
@media screen and (max-width: 767px) {
  .responsive-menu--active {
    display: block;
  }
}

.responsive-menu-nav {
  margin-bottom: 32px;
}
.responsive-menu-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.responsive-menu-nav__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
}
.responsive-menu-nav__item--active .responsive-menu-submenu {
  display: block;
}
.responsive-menu-nav__item--active .responsive-menu-nav__plus {
  display: none;
}
.responsive-menu-nav__item--active .responsive-menu-nav__minus {
  display: block;
}
.responsive-menu-nav__link {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.responsive-menu-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: auto;
  cursor: pointer;
  color: #fff;
}
.responsive-menu-nav__icon .icon {
  width: 24px;
}
.responsive-menu-nav__minus {
  display: none;
}

.responsive-menu-contact {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: auto;
}
.responsive-menu-contact__item {
  display: flex;
  column-gap: 8px;
  color: #fff;
  text-decoration: none;
}
.responsive-menu-contact__item .icon {
  width: 20px;
}

.responsive-menu-actions {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #fff;
}
.responsive-menu-actions__btn {
  justify-content: center;
}

.responsive-menu-submenu {
  display: none;
  width: 100%;
}
.responsive-menu-submenu__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 24px;
}
.responsive-menu-submenu__item {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.footer {
  background-color: #fb4c45;
}
@media screen and (max-width: 1199px) {
  .footer {
    padding-top: 260px;
    padding-bottom: 52px;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-top: 330px;
    padding-bottom: 64px;
  }
}
.footer__in {
  display: grid;
}
@media screen and (max-width: 1199px) {
  .footer__in {
    grid-template-columns: 1fr;
    grid-row-gap: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__in {
    grid-template-columns: 280px 1fr;
    grid-column-gap: 120px;
  }
}
.footer__cols {
  display: grid;
}
@media screen and (max-width: 767px) {
  .footer__cols {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
  }
}
.footer__title {
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .footer__title {
    text-align: center;
  }
}
.footer__app-socials {
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .footer-links {
    align-items: center;
    text-align: center;
  }
}
.footer-links__link {
  text-decoration: none;
  color: #fff;
}
.footer-links__link:hover {
  text-decoration: underline;
}

.footer-about {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media screen and (max-width: 1199px) {
  .footer-about {
    align-items: center;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .footer-about {
    margin-top: -68px;
  }
}
.footer-about__text {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .footer-about__text {
    max-width: 544px;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1199px) {
  .footer-about__actions .btn {
    max-width: 344px;
    width: 100%;
  }
}

.footer-app {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}
@media screen and (max-width: 767px) {
  .footer-app {
    align-items: center;
    margin-bottom: 64px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .footer-app {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #fff;
  }
}
.footer-app__text {
  color: #fff;
}
.footer-app__actions {
  display: flex;
  column-gap: 8px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .footer-socials {
    justify-content: center;
  }
}
.footer-socials__item {
  display: flex;
  color: #fff;
}
.footer-socials__item .icon {
  width: 24px;
}

.copyright {
  background-color: #501111;
}
.copyright__in {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .copyright__in {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 32px;
    padding-top: 32px;
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .copyright__in {
    padding-top: 28px;
    padding-bottom: 28px;
    align-items: baseline;
    justify-content: space-between;
  }
}
.copyright__text {
  color: #fff;
}

.copyright-links {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
}
@media screen and (max-width: 1199px) {
  .copyright-links {
    column-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .copyright-links {
    column-gap: 40px;
  }
}
.copyright-links__item {
  color: #fff;
  text-decoration: none;
}
.copyright-links__item:hover {
  text-decoration: underline;
}

.c-hero {
  margin-bottom: 20px;
  position: relative;
}
.c-hero__in {
  position: relative;
  overflow: hidden;
  display: flex;
  background-color: var(--primary-color-bg);
  border-radius: 0 0 24px 24px;
}
@media screen and (max-width: 767px) {
  .c-hero__in {
    margin-left: -16px;
    margin-right: -16px;
    padding: 40px 16px 286px 16px;
  }
}
@media screen and (min-width: 768px) {
  .c-hero__in {
    padding: 40px 0 40px 40px;
    margin-top: -18px;
  }
}
@media screen and (min-width: 1200px) {
  .c-hero__in {
    padding-top: 68px;
    padding-left: 110px;
    min-height: 672px;
  }
}
.c-hero__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .c-hero__image {
    max-height: 286px;
  }
}
@media screen and (min-width: 768px) {
  .c-hero__image {
    width: calc(100% - 619px);
    min-width: 400px;
    max-height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .c-hero__image {
    height: 100%;
    width: auto;
  }
}
.c-hero__content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: 100%;
  color: var(--primary-color-text);
}
@media screen and (max-width: 767px) {
  .c-hero__content {
    max-width: 380px;
  }
}
@media screen and (min-width: 768px) {
  .c-hero__content {
    max-width: 580px;
  }
}
.c-hero__title {
  line-height: 1.1;
  color: inherit;
}
@media screen and (min-width: 1200px) {
  .c-hero__title--small {
    font-size: 52px;
  }
}
.c-hero__text {
  color: inherit;
  font-size: 20px;
}
@media screen and (max-width: 1199px) {
  .c-hero__text {
    margin-top: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .c-hero__text {
    margin-top: 24px;
    font-size: 24px;
  }
}
.c-hero__text--small {
  font-size: 16px;
}
.c-hero__author {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .c-hero__author {
    margin-top: 102px;
  }
}
.c-hero__actions {
  display: flex;
  gap: 8px 16px;
}
@media screen and (max-width: 767px) {
  .c-hero__actions {
    flex-direction: column;
  }
}
@media screen and (max-width: 1199px) {
  .c-hero__actions {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .c-hero__actions {
    margin-top: 44px;
  }
}
.c-hero__form h2 {
  font-size: 16px;
  margin: 0 0 8px;
}
@media screen and (min-width: 1200px) {
  .c-hero--auto-height .c-hero__in {
    min-height: 0;
    padding-bottom: 84px;
  }
}
.c-hero__parallaxes {
  display: none;
}
@media screen and (min-width: 992px) {
  .c-hero__parallaxes {
    display: block;
  }
}
.c-hero__parallax {
  display: block;
  line-height: 0;
  position: absolute;
}
.c-hero__parallax img {
  max-width: none;
}
.c-hero__parallax--1 {
  top: 40%;
  left: 55%;
  z-index: 1;
}
.c-hero__parallax--1 img {
  width: 420px;
}
.c-hero__parallax--2 {
  top: 60%;
  left: 90%;
}
.c-hero__parallax--2 img {
  width: 56px;
}
@media screen and (min-width: 1200px) {
  .c-hero__parallax--1 {
    left: 50%;
  }
  .c-hero__parallax--1 img {
    width: 580px;
  }
  .c-hero__parallax--2 {
    left: 80%;
  }
  .c-hero__parallax--2 img {
    width: 156px;
  }
}
@media screen and (min-width: 768px) {
  .c-hero--article-image {
    margin-bottom: 250px;
  }
}
.c-hero--article-image .c-hero__in {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .c-hero--article-image .c-hero__in {
    flex-wrap: wrap;
  }
}
.c-hero__article-image {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  display: block;
  line-height: 0;
}
.c-hero__article-image img {
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .c-hero__article-image {
    padding-top: 50%;
  }
  .c-hero__article-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 479px) {
  .c-hero__article-image {
    padding-top: 70%;
  }
}
@media screen and (min-width: 768px) {
  .c-hero__article-image {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: 2;
    flex: 1 0 100%;
    margin-left: -40px;
    margin-bottom: -300px;
  }
  .c-hero__article-image img {
    border-radius: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .c-hero__article-image {
    margin-left: -110px;
  }
}
.c-hero--career-image .c-hero__in {
  overflow: visible;
}
.c-hero__career-tags {
  padding-top: 60px;
}
.c-hero__career-image {
  display: none;
  margin-bottom: -100px;
  transform: translateX(-20px);
  align-items: flex-end;
  text-align: right;
}
.c-hero__career-image img {
  border-radius: 24px;
  display: inline-block;
}
@media screen and (min-width: 992px) {
  .c-hero__career-image {
    display: flex;
  }
}
@media screen and (min-width: 1400px) {
  .c-hero__career-image {
    margin-bottom: -200px;
    transform: translateX(50px);
  }
}

.c-advantages {
  position: relative;
}
.c-advantages__in {
  display: grid;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-advantages__in {
    grid-template-columns: 1fr;
    grid-row-gap: 32px;
  }
}
@media screen and (min-width: 768px) {
  .c-advantages__in {
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 20px;
  }
}
.c-advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
  text-align: center;
}
.c-advantages__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.c-advantages__image .icon {
  width: 40px;
  color: var(--primary-color-bg);
}
.c-advantages__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
  line-height: 1.2;
}
.c-advantages__title {
  font-size: 20px;
  font-weight: 700;
}
.c-advantages--padding {
  padding: 72px;
  border-radius: 40px;
}
.c-advantages--color {
  color: var(--primary-color-text);
  background-color: var(--primary-color-bg);
}
.c-advantages--padding .c-advantages__image .icon {
  color: var(--primary-color-text);
}
.c-advantages__bg {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%);
}
.c-advantages__illusts {
  display: none;
}
.c-advantages__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
  z-index: 2;
  bottom: -25%;
  left: 0;
}
.c-advantages__illust img {
  max-width: none;
  display: inline-block;
  width: 125px;
}
.c-need-to-know + .c-advantages .c-advantages__bg {
  display: none;
}
@media screen and (min-width: 1200px) {
  .c-advantages__prev {
    left: -37px;
  }
  .c-advantages__next {
    right: -37px;
  }
  .c-advantages__bg {
    display: block;
  }
  .c-advantages__illusts {
    display: block;
  }
  .c-advantages__illust {
    bottom: -15%;
    left: auto;
    right: calc(50vw + 39%);
  }
}

.c-food-love {
  position: relative;
  padding-top: 88px;
  padding-bottom: 88px;
}
.c-food-love__in {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-food-love__in {
    flex-direction: column;
    row-gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .c-food-love__in {
    align-items: center;
    column-gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .c-food-love__in {
    column-gap: 120px;
  }
}
@media screen and (max-width: 767px) {
  .c-food-love__image img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .c-food-love__image {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .c-food-love__image {
    width: 580px;
  }
}
@media screen and (max-width: 767px) {
  .c-food-love__content {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .c-food-love__content {
    flex: 1;
    min-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .c-food-love__title {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 768px) {
  .c-food-love__title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-food-love__text {
    margin-bottom: 36px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .c-food-love__text {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 767px) {
  .c-food-love .btn {
    width: 100%;
  }
}
.c-food-love__bg {
  display: none;
  position: absolute;
  bottom: 5%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-food-love__bg {
    display: block;
  }
}
.c-food-love__illusts {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-food-love__illusts {
    display: block;
  }
}
.c-food-love__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
}
.c-food-love__illust img {
  max-width: none;
  display: inline-block;
}
.c-food-love__illust--1 {
  top: 0;
  left: 75%;
}
.c-food-love__illust--1 img {
  width: 130px;
}
.c-food-love__illust--2 {
  bottom: 5%;
  left: 60%;
}
.c-food-love__illust--2 img {
  width: 124px;
}
@media screen and (min-width: 1200px) {
  .c-food-love__illust--1 {
    left: calc(50vw + 20%);
  }
  .c-food-love__illust--1 img {
    width: 180px;
  }
  .c-food-love__illust--2 {
    bottom: 5%;
  }
  .c-food-love__illust--2 img {
    width: 164px;
  }
}

.c-why-us {
  padding-top: 88px;
  padding-bottom: 56px;
  position: relative;
}
.c-why-us__title {
  margin-bottom: 44px;
}
.c-why-us__in.swiper {
  overflow: visible;
}
.c-why-us__pagination {
  display: flex;
  justify-content: center;
  column-gap: 8px;
}
@media screen and (max-width: 1199px) {
  .c-why-us__pagination {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-why-us__pagination {
    margin-top: 72px;
  }
}
.c-why-us__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  cursor: pointer;
  background-color: #D9D9D9;
  border-radius: 50%;
  transition: all 300ms ease;
}
.c-why-us__pagination .swiper-pagination-bullet-active {
  width: 60px;
  background-color: #333;
  border-radius: 8px;
}
.c-why-us__illusts {
  display: none;
}
.c-why-us__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
  z-index: 2;
}
.c-why-us__illust img {
  max-width: none;
  display: inline-block;
}
.c-why-us__illust--1 {
  top: -10%;
  left: calc(50vw + 20%);
}
.c-why-us__illust--1 img {
  width: 189px;
}
.c-why-us__prev, .c-why-us__next {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background-color: #fff;
  box-shadow: 0px 2.73684px 16.42105px 0px rgba(51, 51, 51, 0.12);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.c-why-us__prev.swiper-button-disabled, .c-why-us__next.swiper-button-disabled {
  display: none;
}
.c-why-us__prev svg, .c-why-us__next svg {
  width: 32px;
  height: 32px;
}
.c-why-us__prev:hover, .c-why-us__next:hover {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-why-us__next {
  left: auto;
  right: -10px;
}
@media screen and (min-width: 1200px) {
  .c-why-us__illusts {
    display: block;
  }
  .c-why-us__prev {
    left: -37px;
  }
  .c-why-us__next {
    right: -37px;
  }
}

.c-why-us-item {
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: #F7F7F7;
}
@media screen and (max-width: 1199px) {
  .c-why-us-item {
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2.66319px 15.97913px 0 rgba(51, 51, 51, 0.12);
  }
}
@media screen and (min-width: 1200px) {
  .c-why-us-item {
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 24px 0 rgba(51, 51, 51, 0.12);
  }
}
.c-why-us-item.swiper-slide {
  display: flex;
  transition: 0.3s ease;
  transition-property: background-color, color, transform;
}
@media screen and (max-width: 1199px) {
  .c-why-us-item.swiper-slide {
    width: 254px;
    height: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .c-why-us-item.swiper-slide {
    width: 380px;
    height: 489px;
  }
}
.c-why-us-item__icon {
  position: absolute;
  color: var(--primary-color-bg);
  transition: 0.3s ease;
  transition-property: background-color, color;
}
@media screen and (max-width: 1199px) {
  .c-why-us-item__icon {
    left: 20px;
    top: 20px;
  }
  .c-why-us-item__icon .icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-why-us-item__icon {
    left: 32px;
    top: 32px;
  }
  .c-why-us-item__icon .icon {
    width: 52px;
    height: 52px;
  }
}
.c-why-us-item__title {
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
}
.c-why-us-item__title a {
  text-decoration: none;
}
.c-why-us-item__title a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
@media screen and (max-width: 1199px) {
  .c-why-us-item__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-why-us-item__title {
    font-size: 32px;
  }
}
.c-why-us-item__text {
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .c-why-us-item__text {
    font-size: 14px;
  }
}
.c-why-us-item__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .c-why-us-item__btn {
    width: 52px;
    height: 52px;
    border-radius: 16px 0;
  }
  .c-why-us-item__btn .icon {
    width: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .c-why-us-item__btn {
    width: 76px;
    height: 76px;
    border-radius: 24px 0;
  }
  .c-why-us-item__btn .icon {
    width: 40px;
  }
}
.c-why-us-item:hover {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-why-us-item:hover .c-why-us-item__icon {
  color: var(--primary-color-text);
}
.c-why-us-item:hover .c-why-us-item__btn {
  color: #000;
}

.c-logo {
  color: var(--primary-color-text);
  display: block;
  line-height: 0;
}
.c-logo svg {
  width: 120px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-logo svg {
    width: 171px;
  }
}

.c-programs {
  position: relative;
}
.c-programs .container {
  position: relative;
  z-index: 1;
}
.c-programs__list.swiper {
  overflow: visible;
}
.c-programs__pagination {
  display: flex;
  justify-content: center;
  column-gap: 8px;
}
@media screen and (max-width: 1199px) {
  .c-programs__pagination {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-programs__pagination {
    margin-top: 40px;
  }
}
.c-programs__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  cursor: pointer;
  background-color: #D9D9D9;
  border-radius: 50%;
  transition: all 300ms ease;
}
.c-programs__pagination .swiper-pagination-bullet-active {
  width: 60px;
  background-color: #333;
  border-radius: 8px;
}
.c-programs__prev, .c-programs__next {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background-color: #fff;
  box-shadow: 0px 2.73684px 16.42105px 0px rgba(51, 51, 51, 0.12);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.c-programs__prev.swiper-button-disabled, .c-programs__next.swiper-button-disabled {
  display: none;
}
.c-programs__prev svg, .c-programs__next svg {
  width: 32px;
  height: 32px;
}
.c-programs__prev:hover, .c-programs__next:hover {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-programs__next {
  left: auto;
  right: -10px;
}
.c-programs__bg {
  display: none;
  position: absolute;
  top: 8%;
  left: 0;
}
@media screen and (min-width: 1200px) {
  .c-programs__prev {
    left: -37px;
  }
  .c-programs__next {
    right: -37px;
  }
  .c-programs__bg {
    display: block;
  }
}

.c-programs-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .c-programs-item {
    border-radius: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .c-programs-item {
    border-radius: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .c-programs-item.swiper-slide {
    width: 253px;
  }
}
@media screen and (min-width: 1200px) {
  .c-programs-item.swiper-slide {
    width: 380px;
  }
}
.c-programs-item--red {
  background: radial-gradient(95.16% 95.16% at 59.08% 25.28%, rgba(218, 41, 34, 0.3) 37.5%, rgba(251, 137, 133, 0.04) 100%), #FB4C45;
}
.c-programs-item--light-green {
  background: radial-gradient(82.82% 82.82% at 62.11% 35.94%, #546A05 0%, rgba(153, 189, 4, 0) 100%), #99BD04;
}
.c-programs-item--dark-green {
  background: radial-gradient(57.9% 57.9% at 64.61% 43.05%, #03230A 0%, rgba(35, 97, 48, 0) 100%), #236130;
}
.c-programs-item--brown {
  background: radial-gradient(67.36% 67.36% at 60.92% 36.6%, #DFCD93 0%, rgba(242, 233, 204, 0) 100%), #F2E9CC;
}
.c-programs-item--dark .c-programs-item__title, .c-programs-item--dark .c-programs-item__text {
  color: #333;
}
.c-programs-item--dark .c-programs-item-author__title, .c-programs-item--dark .c-programs-item-author__text {
  color: #333;
}
.c-programs-item__image {
  position: relative;
  height: 240px;
}
.c-programs-item__image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-programs-item__image {
    height: 220px;
  }
  .c-programs-item__image > img {
    bottom: 0;
    top: auto;
    transform: translateX(-50%);
  }
}
.c-programs-item .c-tag-rating {
  z-index: 2;
  position: absolute;
  left: 32px;
  top: 32px;
}
.c-programs-item .c-tag-ribbon {
  z-index: 2;
  position: absolute;
  right: 32px;
  top: 32px;
}
@media screen and (max-width: 1199px) {
  .c-programs-item__content {
    padding: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-programs-item__content {
    padding: 32px;
  }
}
.c-programs-item__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .c-programs-item__header {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .c-programs-item__header {
    margin-bottom: 16px;
  }
}
.c-programs-item__title {
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .c-programs-item__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-programs-item__title {
    font-size: 24px;
  }
}
.c-programs-item__price {
  font-weight: 700;
}
.c-programs-item__price span {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  .c-programs-item__text {
    font-size: 14px;
  }
}
.c-programs-item__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 300ms ease;
  background: #fff;
  color: #333;
}
@media screen and (max-width: 1199px) {
  .c-programs-item__btn {
    width: 52px;
    height: 52px;
    border-radius: 16px 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-programs-item__btn {
    width: 76px;
    height: 76px;
    border-radius: 24px 0;
  }
}
.c-programs-item__btn:hover {
  background-color: #333;
  color: #fff;
}
.c-programs-item__btn .icon {
  width: 40px;
}

.c-programs-item-author {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
@media screen and (max-width: 1199px) {
  .c-programs-item-author {
    column-gap: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .c-programs-item-author {
    column-gap: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .c-programs-item-author__image {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .c-programs-item-author__image {
    width: 44px;
    height: 44px;
  }
}
.c-programs-item-author__image img {
  border-radius: 50%;
}
.c-programs-item-author__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 1px;
}
.c-programs-item-author__title {
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .c-programs-item-author__title {
    font-size: 14px;
  }
}
.c-programs-item-author__text {
  font-size: 12px;
}

.c-faq {
  position: relative;
}
.c-faq__in {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .c-faq__in {
    flex-direction: column;
    row-gap: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .c-faq__in {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .c-faq__main {
    text-align: center;
    max-width: 580px;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .c-faq__main {
    width: 480px;
  }
}
.c-faq__title {
  margin-bottom: 12px;
}
.c-faq__text {
  line-height: 1.4;
}
@media screen and (max-width: 1199px) {
  .c-faq__text {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .c-faq__text {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 767px) {
  .c-faq .btn {
    width: 100%;
  }
}
.c-faq__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  flex: 1;
  min-width: 1px;
}
.c-faq__illusts {
  display: none;
}
.c-faq__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
  z-index: 2;
}
.c-faq__illust img {
  max-width: none;
  display: inline-block;
}
.c-faq__illust--1 {
  bottom: 0%;
  left: 20%;
}
.c-faq__illust--1 img {
  width: 197px;
}
.c-faq__illust--2 {
  bottom: -10%;
  left: -5%;
}
.c-faq__illust--2 img {
  width: 219px;
}
.c-faq__topics {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.c-faq__topic {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.c-faq__topic a {
  display: block;
  padding: 12px 24px;
  background-color: #F9F9F9;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.c-faq__topic a:hover {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
@media screen and (min-width: 480px) {
  .c-faq__topics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .c-faq__illusts {
    display: block;
  }
}

.c-faq-item {
  padding: 24px;
  border-radius: 12px;
  background: #F9F9F9;
}
.c-faq-item--active .c-faq-item__title {
  color: #fb4c45;
}
.c-faq-item--active .c-faq-item__toggle {
  color: #fb4c45;
  transform: rotate(-180deg);
}
.c-faq-item--active .c-faq-item__content {
  grid-template-rows: 1fr;
  margin-top: 12px;
}
.c-faq-item__header {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c-faq-item__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
  flex: 1;
  min-width: 1px;
}
.c-faq-item__title {
  font-weight: 600;
  font-size: 20px;
  transition: color 300ms ease;
}
.c-faq-item__toggle {
  transition: all 300ms ease;
}
.c-faq-item__toggle .icon {
  width: 24px;
}
.c-faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 300ms ease;
}
.c-faq-item__text {
  overflow: hidden;
}

.c-download-app {
  padding-top: 136px;
  padding-bottom: 88px;
}
@media screen and (max-width: 1199px) {
  .c-download-app {
    display: none;
  }
}
.c-download-app__in {
  position: relative;
  padding-top: 160px;
}
.c-download-app__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 52px;
  background-color: #fb4c45;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.c-download-app__wrap:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 400px;
  border-radius: 0 24px 24px 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  content: "";
}
.c-download-app__image {
  position: absolute;
  right: 160px;
  bottom: 0;
}
.c-download-app__title {
  color: #fff;
}
.c-download-app__actions {
  display: flex;
  column-gap: 8px;
}
.c-download-app__bg {
  position: absolute;
  top: -130px;
  bottom: 0;
  right: -200px;
  width: 600px;
}
.c-download-app__bg img {
  max-width: none;
  width: 100%;
  transform: rotate(270deg) scale(1.2);
  opacity: 0.5;
}

.c-stories {
  position: relative;
  padding-top: 20px;
  margin-bottom: 20px;
  margin-top: -20px;
  padding-bottom: -20px;
}
.c-stories__in.swiper {
  overflow: visible;
}
.c-stories__pagination {
  display: flex;
  justify-content: center;
  column-gap: 8px;
}
@media screen and (max-width: 1199px) {
  .c-stories__pagination {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-stories__pagination {
    margin-top: 40px;
  }
}
.c-stories__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  cursor: pointer;
  background-color: #D9D9D9;
  border-radius: 50%;
  transition: all 300ms ease;
}
.c-stories__pagination .swiper-pagination-bullet-active {
  background-color: #333;
}
.c-stories__illusts {
  display: none;
}
.c-stories__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
  z-index: 2;
}
.c-stories__illust img {
  max-width: none;
  display: inline-block;
}
.c-stories__illust--1 {
  top: -5%;
  left: -5%;
}
.c-stories__illust--1 img {
  width: 184px;
}
.c-stories__illust--2 {
  top: 0%;
  left: 10%;
}
.c-stories__illust--2 img {
  width: 124px;
}
.c-stories__prev, .c-stories__next {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background-color: #fff;
  box-shadow: 0px 2.73684px 16.42105px 0px rgba(51, 51, 51, 0.12);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.c-stories__prev.swiper-button-disabled, .c-stories__next.swiper-button-disabled {
  display: none;
}
.c-stories__prev svg, .c-stories__next svg {
  width: 32px;
  height: 32px;
}
.c-stories__prev:hover, .c-stories__next:hover {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-stories__next {
  left: auto;
  right: -10px;
}
@media screen and (min-width: 1200px) {
  .c-stories__illusts {
    display: block;
  }
  .c-stories__prev {
    left: -37px;
  }
  .c-stories__next {
    right: -37px;
  }
}

.c-stories-item {
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 4px 24px 0 rgba(51, 51, 51, 0.12);
}
@media screen and (max-width: 1199px) {
  .c-stories-item {
    padding: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-stories-item {
    padding: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .c-stories-item.swiper-slide {
    width: 253px;
  }
}
@media screen and (min-width: 1200px) {
  .c-stories-item.swiper-slide {
    width: 380px;
  }
}
.c-stories-item__in {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-stories-item__in {
    row-gap: 12px;
  }
}
@media screen and (min-width: 768px) {
  .c-stories-item__in {
    row-gap: 20px;
  }
}
.c-stories-item__image {
  aspect-ratio: 4/3;
}
.c-stories-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.c-stories-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 1px;
}

.c-stories-item__content .c-reviews__actions {
  margin-top: 30px;
}

.c-stories-item__tag {
  margin-bottom: 12px;
}
.c-stories-item__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.c-stories-item__subtitle {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .c-stories-item__subtitle {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .c-stories-item__subtitle {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-stories-item__text {
    font-size: 14px;
  }
}
.c-stories-item__actions {
  margin-top: 16px;
}
.c-stories-item__actions a {
  transition: all 300ms ease;
  opacity: 0.5;
}
.c-stories-item__actions a:hover {
  opacity: 1;
}

.c-select {
  position: relative;
}
.c-select--active .c-select__header {
  border-radius: 8px 8px 0 0;
}
.c-select--active .c-select__toggle {
  transform: rotate(-180deg);
}
.c-select--active .c-select__dropdown {
  display: block;
}
.c-select__header {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  padding-left: 24px;
  padding-right: 24px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #D6D6D6;
  background: #fff;
  cursor: pointer;
}
.c-select__title {
  flex: 1;
  min-width: 1px;
}
.c-select__toggle {
  transition: all 300ms ease;
}
.c-select__toggle .icon {
  width: 24px;
}
.c-select__dropdown {
  display: none;
  z-index: 4;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  box-shadow: 0px 4px 24px 0px rgba(51, 51, 51, 0.12);
  background-color: #fff;
}
.c-select__item {
  padding: 12px 24px;
  transition: all 300ms ease;
  cursor: pointer;
}
.c-select__item:hover {
  background-color: #EBEBEB;
}

.c-select-multi {
  position: relative;
}
.c-select-multi--active .c-select-multi__header {
  border-radius: 8px 8px 0 0;
}
.c-select-multi--active .c-select-multi__toggle {
  transform: rotate(-180deg);
}
.c-select-multi--active .c-select-multi__dropdown {
  display: block;
}
.c-select-multi__header {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  padding-left: 24px;
  padding-right: 24px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #D6D6D6;
  background: #fff;
  cursor: pointer;
}
.c-select-multi__title {
  flex: 1;
  min-width: 1px;
}
.c-select-multi__title input {
  height: 100%;
  width: 100%;
  border: none;
  font-family: inherit;
  font-size: 16px;
}
.c-select-multi__title input:focus {
  outline: none;
}
.c-select-multi__toggle {
  transition: all 300ms ease;
}
.c-select-multi__toggle .icon {
  width: 24px;
}
.c-select-multi__dropdown {
  display: none;
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  box-shadow: 0px 4px 24px 0px rgba(51, 51, 51, 0.12);
  background-color: #fff;
}
.c-select-multi__item {
  padding: 12px 24px;
  transition: all 300ms ease;
  cursor: pointer;
}
.c-select-multi__item:hover {
  background-color: #EBEBEB;
}

.c-select-multi-item {
  display: flex;
  align-items: flex-start;
  column-gap: 16px;
  padding: 12px 24px;
  position: relative;
  transition: all 300ms ease;
  color: #858585;
  cursor: pointer;
}
.c-select-multi-item:hover {
  background-color: #EBEBEB;
}
.c-select-multi-item__content {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  flex: 1;
  min-width: 1px;
}
.c-select-multi-item__text {
  font-size: 12px;
}
.c-select-multi-item__price {
  display: flex;
  align-items: center;
  column-gap: 4px;
}
.c-select-multi-item__price span {
  font-size: 12px;
}

.c-modal {
  z-index: 110;
  position: fixed;
  inset: 0;
  overflow-y: auto;
  padding: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  font-size: 0;
}
.c-modal:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  content: "";
}
.c-modal__in {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 1180px;
  box-shadow: 0 4px 24px 0 rgba(51, 51, 51, 0.12);
  text-align: left;
  border-radius: 24px;
  background-color: #fff;
  font-size: 16px;
}
.c-modal__header {
  display: flex;
  align-items: center;
  border-radius: 24px 24px 0 0;
  background-color: #fb4c45;
}
@media screen and (max-width: 767px) {
  .c-modal__header {
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-modal__header {
    padding: 40px;
    margin-bottom: 40px;
  }
}
.c-modal__title {
  flex: 1;
  min-width: 1px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-modal__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .c-modal__title {
    font-size: 32px;
  }
}
.c-modal__close {
  color: #fff;
}
.c-modal__close .icon {
  width: 24px;
}
.c-modal__content {
  background-color: #fff;
  border-radius: 0 0 24px 24px;
}
@media screen and (max-width: 767px) {
  .c-modal__content {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-modal__content {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.c-modal__content:has(.c-modal__content__actions) {
  border-radius: 0;
}
.c-modal__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 0 0 24px 24px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-modal__actions {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-modal__actions {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

.c-modal-gifts__in {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .c-modal-gifts__in {
    grid-template-columns: 1fr 280px;
  }
}

.c-modal-gifts-items {
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-modal-gifts-items {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .c-modal-gifts-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-modal-gifts-items__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
}
.c-modal-gifts-items__image {
  height: 200px;
}
.c-modal-gifts-items__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-modal-gifts-items__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #99bd04;
}
.c-modal-gifts-items__title {
  margin-bottom: 12px;
  color: #fff;
}
.c-modal-gifts-items__value {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  margin-bottom: 24px;
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.c-modal-gifts-items__value input {
  height: 48px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  text-align: center;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
}
.c-modal-gifts-items__value input:focus {
  outline: none;
}
.c-modal-gifts-items__value input::placeholder {
  color: #858585;
}

.c-modal-gifts-list {
  display: flex;
  flex-direction: column;
}
.c-modal-gifts-list__title {
  margin-bottom: 24px;
  font-weight: 700;
}
.c-modal-gifts-list__list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 32px;
}
.c-modal-gifts-list__item {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.c-modal-gifts-list__text {
  color: #5c5c5c;
  font-size: 12px;
}
.c-modal-gifts-list__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.c-tag-item {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}
.c-tag-item--red {
  background-color: #fb4c45;
}
.c-tag-item--green {
  background-color: #99bd04;
}
.c-tag-item--blue {
  background-color: #458efb;
}
.c-tag-item--orange {
  background-color: #ef9917;
}
.c-tag-item--yellow {
  background-color: #FFCE21;
  color: #333;
}
.c-tag-item--gray {
  background-color: #ebebeb;
  color: #333;
  font-weight: 400;
}

.c-tag-rating {
  display: inline-flex;
  column-gap: 4px;
  align-items: center;
  height: 24px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 12px;
  background-color: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 700;
}
.c-tag-rating .icon {
  width: 16px;
  color: #FFCE21;
}

.c-tag-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  background-color: #fff;
  color: #f95049;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.c-promo-banner {
  position: relative;
}
.c-promo-banner__area {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 44px;
  padding: 52px;
  background-color: #fb4c45;
  border-radius: 24px;
  text-decoration: none;
}
.c-promo-banner__title {
  max-width: 690px;
  width: 100%;
  color: #fff;
}
.c-promo-banner__bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.c-promo-banner__illusts {
  display: none;
}
.c-promo-banner__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
  z-index: 2;
}
.c-promo-banner__illust img {
  max-width: none;
  display: inline-block;
}
.c-promo-banner__illust--1 {
  top: 0;
  right: 0;
}
.c-promo-banner__illust--1 img {
  width: 240px;
}
.c-promo-banner__illust--2 {
  top: 50%;
  right: 0;
}
.c-promo-banner__illust--2 img {
  width: 280px;
}
.c-promo-banner__illust--3 {
  top: 60%;
  right: 40%;
}
.c-promo-banner__illust--3 img {
  width: 280px;
}
.c-promo-banner__illust--4 {
  top: 0%;
  left: 50%;
}
.c-promo-banner__illust--4 img {
  width: 100px;
}
.c-promo-banner__illust--5 {
  left: 0;
  top: -5%;
}
.c-promo-banner__illust--5 img {
  width: 200px;
}
.c-promo-banner__illust--6 {
  bottom: 20%;
  left: 0;
}
.c-promo-banner__illust--6 img {
  width: 125px;
}
.c-promo-banner__illust--7 {
  bottom: 10%;
  right: 30%;
}
.c-promo-banner__illust--7 img {
  width: 95px;
}
@media screen and (min-width: 768px) {
  .c-promo-banner {
    padding-top: 190px;
    padding-bottom: 270px;
  }
  .c-promo-banner__bg {
    display: block;
  }
  .c-promo-banner__illusts {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .c-promo-banner {
    padding-top: 190px;
    padding-bottom: 270px;
  }
  .c-promo-banner__bg {
    display: block;
  }
  .c-promo-banner__illust--1 {
    right: auto;
    left: calc(50vw + 23%);
  }
  .c-promo-banner__illust--2 {
    top: 20%;
    right: auto;
    left: calc(50vw + 8%);
  }
  .c-promo-banner__illust--2 img {
    width: 480px;
  }
  .c-promo-banner__illust--3 {
    top: 50%;
  }
  .c-promo-banner__illust--3 img {
    width: 380px;
  }
  .c-promo-banner__illust--4 {
    top: -10%;
  }
  .c-promo-banner__illust--4 img {
    width: 200px;
  }
  .c-promo-banner__illust--5 {
    left: auto;
    right: calc(50vw + 22%);
  }
  .c-promo-banner__illust--5 img {
    width: 250px;
  }
  .c-promo-banner__illust--6 {
    bottom: 0;
    left: 20%;
  }
  .c-promo-banner__illust--6 img {
    width: 155px;
  }
  .c-promo-banner__illust--7 {
    right: auto;
    left: calc(50vw + 8%);
  }
  .c-promo-banner__illust--7 img {
    width: 125px;
  }
}

.c-info-banner {
  position: relative;
}
.c-info-banner__in {
  display: flex;
  position: relative;
  border-radius: 24px;
  background: #fb4c45;
}
@media screen and (max-width: 767px) {
  .c-info-banner__in {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .c-info-banner__image {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .c-info-banner__image {
    width: 680px;
  }
}
.c-info-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-info-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex: 1;
  min-width: 1px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-info-banner__content {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-info-banner__content {
    padding: 52px;
  }
}
.c-info-banner__title {
  margin-bottom: 12px;
}
@media screen and (max-width: 1199px) {
  .c-info-banner__text {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .c-info-banner__text {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-info-banner__actions {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-info-banner__actions .btn {
    width: 100%;
  }
}
.c-info-banner__illusts {
  display: none;
}
.c-info-banner__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
  z-index: 2;
}
.c-info-banner__illust img {
  max-width: none;
  display: inline-block;
}
.c-info-banner__illust--1 {
  top: -50%;
  right: 10%;
}
.c-info-banner__illust--1 img {
  width: 138px;
}
.c-info-banner__illust--2 {
  top: 25%;
  right: -8%;
}
.c-info-banner__illust--2 img {
  width: 140px;
}
@media screen and (min-width: 1200px) {
  .c-info-banner__illusts {
    display: block;
  }
}

.c-reviews {
  position: relative;
}
.c-reviews__wrap {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .c-reviews {
    background: #f7f7f7;
  }
}
.c-reviews__in {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .c-reviews__in {
    flex-direction: column;
    row-gap: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .c-reviews__in {
    align-items: center;
    column-gap: 120px;
  }
}
.c-reviews__content {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .c-reviews__content {
    align-items: center;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .c-reviews__content {
    flex: 1;
    min-width: 1px;
  }
}
@media screen and (max-width: 1199px) {
  .c-reviews__rating {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-reviews__rating {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .c-reviews__title {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .c-reviews__title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .c-reviews__text {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .c-reviews__text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .c-reviews__actions {
    width: 100%;
  }
  .c-reviews__actions .btn {
    width: 100%;
  }
}
.c-reviews__list {
  display: grid;
  position: relative;
  background-color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .c-reviews__list {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .c-reviews__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-reviews__list {
    align-items: center;
    position: static;
    width: 580px;
    background-color: transparent;
  }
}
.c-reviews__list:before, .c-reviews__list:after {
  z-index: 2;
  position: absolute;
  left: 0;
  width: 100%;
  height: 375px;
  content: "";
}
.c-reviews__list:before {
  top: 0;
  transform: rotate(180deg);
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 0.01%, #FFF 83.24%);
}
.c-reviews__list:after {
  bottom: 0;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 0.01%, #FFF 83.24%);
}
.c-reviews__col {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .c-reviews__col {
    row-gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .c-reviews__col {
    row-gap: 20px;
  }
}
.c-reviews__illusts {
  display: none;
}
.c-reviews__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
  z-index: 2;
}
.c-reviews__illust img {
  max-width: none;
  display: inline-block;
}
.c-reviews__illust--1 {
  top: 0;
  left: calc(50vw - 40%);
}
.c-reviews__illust--1 img {
  width: 125px;
}
.c-reviews__illust--2 {
  top: 10%;
  left: calc(50vw - 25%);
}
.c-reviews__illust--2 img {
  width: 114px;
}
.c-reviews__illust--3 {
  bottom: 5%;
  left: calc(50vw - 30%);
}
.c-reviews__illust--3 img {
  width: 156px;
}
.c-reviews__bg {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1200px) {
  .c-reviews__illusts {
    display: block;
  }
  .c-reviews__bg {
    display: block;
  }
}

.c-pricing__in {
  display: grid;
}
@media screen and (max-width: 374px) {
  .c-pricing__in {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 375px) {
  .c-pricing__in {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .c-pricing__in {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}
.c-pricing--1 .c-pricing__in {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 375px) {
  .c-pricing--2 .c-pricing__in {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-pricing--3 .c-pricing__in {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-pricing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px;
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  text-align: center;
}
.c-pricing-item--hide {
  display: none;
}
.c-pricing-item .c-tag-item {
  position: absolute;
  right: 12px;
  top: -12px;
}
.c-pricing-item__value {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-pricing-item__value {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .c-pricing-item__value {
    font-size: 44px;
  }
}
.c-pricing-item__per-day {
  margin-bottom: 12px;
  margin-top: -8px;
  color: rgba(51, 51, 51, 0.5);
}
@media screen and (max-width: 767px) {
  .c-pricing-item__per-day {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .c-pricing-item__text {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .c-pricing-item__text {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .c-pricing-item__actions {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  .c-pricing-item__actions {
    margin-bottom: 12px;
  }
}
.c-pricing-item__note {
  color: rgba(51, 51, 51, 0.5);
}
@media screen and (max-width: 767px) {
  .c-pricing-item__note {
    font-size: 14px;
  }
}

.c-main-tabs__head {
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
@media screen and (min-width: 1200px) {
  .c-main-tabs__head {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
.c-main-tabs__head .c-main-tabs__item {
  display: flex;
  align-items: center;
  flex: 1;
  border-bottom: 1px solid #d6d6d6;
  min-width: 1px;
  padding-left: 20px;
  height: 56px;
  background-color: #FAF9F9;
  text-decoration: none;
  font-weight: 700;
  /*
        &:first-child {
          @media screen and (max-width: 1199px){
            border-top-left-radius: 16px;
          }

          @media screen and (min-width: 1200px){
            border-top-left-radius: 24px;
          }
        }

        &:last-child {
          @media screen and (max-width: 1199px){
            border-top-right-radius: 16px;
          }

          @media screen and (min-width: 1200px){
            border-top-right-radius: 24px;
          }
        } */
}
.c-main-tabs__head .c-main-tabs__item:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .c-main-tabs__head .c-main-tabs__item {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .c-main-tabs__head .c-main-tabs__item {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-main-tabs__head .c-main-tabs__item {
    padding-left: 32px;
    height: 83px;
    font-size: 32px;
  }
}
.c-main-tabs__head .c-main-tabs__item--active {
  color: var(--primary-color-text);
  background-color: var(--primary-color-bg);
  box-shadow: none;
}
@media screen and (min-width: 480px) {
  .c-main-tabs__head {
    display: flex;
  }
}
.c-main-tabs__body .c-main-tabs__item {
  display: none;
}
.c-main-tabs__body .c-main-tabs__item--active {
  display: block;
}

.c-sub-tabs {
  background-color: #FAF9F9;
}
.c-sub-tabs__head {
  display: flex;
  flex-wrap: wrap;
}
.c-sub-tabs__head .c-sub-tabs__item {
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex: 1 0 auto;
  min-width: 1px;
  border-bottom: 1px solid #d6d6d6;
  position: relative;
  text-decoration: none;
}
.c-sub-tabs__head .c-sub-tabs__item:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border-right: 1px solid #d6d6d6;
  content: "";
}
.c-sub-tabs__head .c-sub-tabs__item:last-child:after {
  display: none;
}
.c-sub-tabs__head .c-sub-tabs__item:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  .c-sub-tabs__head .c-sub-tabs__item {
    padding-left: 16px;
    padding-right: 16px;
    height: 40px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .c-sub-tabs__head .c-sub-tabs__item {
    padding-left: 32px;
    padding-right: 32px;
    height: 64px;
    font-size: 20px;
  }
}
.c-sub-tabs__head .c-sub-tabs__item--active {
  background-color: #626262;
  color: #fff;
  font-weight: 700;
  box-shadow: none;
}
.c-sub-tabs__head .c-sub-tabs__item--active:after {
  display: none;
}
.c-sub-tabs__body {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
@media screen and (max-width: 1199px) {
  .c-sub-tabs__body {
    padding: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .c-sub-tabs__body {
    padding: 52px;
  }
}
.c-sub-tabs__body .c-sub-tabs__item {
  display: none;
}
.c-sub-tabs__body .c-sub-tabs__item--active {
  display: block;
}
.c-sub-tabs__body hr {
  margin: 32px 0;
  border: 0 none;
  border-bottom: 1px solid #d6d6d6;
}
.c-sub-tabs__error {
  text-align: center;
  padding: 40px 0 0;
  font-weight: 700;
}
.c-sub-tabs__error--hide {
  display: none;
}
.c-sub-tabs__filled--hide {
  display: none;
}
.c-sub-tabs__checkboxes {
  margin: 0 0 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.c-sub-tabs__filled h4 {
  color: #5c5c5c;
}
.c-sub-tabs__filled h4 strong {
  color: #333;
}
.c-sub-tabs__filled .c-pricing {
  padding-top: 54px;
}

.c-about-program {
  position: relative;
}
.c-about-program__in {
  position: relative;
  z-index: 1;
}
.c-about-program__header {
  max-width: 580px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .c-about-program__header {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .c-about-program__header {
    margin-bottom: 88px;
  }
}
.c-about-program__title {
  margin-bottom: 12px;
}
.c-about-program__bg {
  display: none;
  position: absolute;
  bottom: 5%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-about-program__bg {
    display: block;
  }
}
.c-about-program__illusts {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-about-program__illusts {
    display: block;
  }
}
.c-about-program__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
}
.c-about-program__illust img {
  max-width: none;
  display: inline-block;
}
.c-about-program__illust--1 {
  top: 20%;
  left: 75%;
}
.c-about-program__illust--1 img {
  width: 130px;
}
.c-about-program__illust--2 {
  bottom: 5%;
  left: 60%;
}
.c-about-program__illust--2 img {
  width: 124px;
}
@media screen and (min-width: 1200px) {
  .c-about-program__illust--1 {
    left: calc(50vw + 20%);
  }
  .c-about-program__illust--1 img {
    width: 180px;
  }
  .c-about-program__illust--2 {
    bottom: 0;
  }
  .c-about-program__illust--2 img {
    width: 164px;
  }
}

.c-about-program-section {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-about-program-section {
    flex-direction: column;
    row-gap: 32px;
  }
}
@media screen and (min-width: 768px) {
  .c-about-program-section {
    align-items: center;
    justify-content: space-between;
    column-gap: 32px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .c-about-program-section {
    column-gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .c-about-program-section__image {
    width: 320px;
  }
}
@media screen and (min-width: 992px) {
  .c-about-program-section__image {
    width: 480px;
  }
}
.c-about-program-section__content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-about-program-section__content {
    flex: 1;
    min-width: 1px;
    max-width: 580px;
  }
}
.c-about-program-section__title {
  margin-bottom: 12px;
}
.c-about-program-section__restaurant {
  line-height: 1.4;
  margin-bottom: 24px;
}

.c-food-preview__list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.c-food-preview__item {
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 12px;
  background: #F7F7F7;
}
.c-food-preview__item--active .c-food-preview__content {
  grid-template-rows: 1fr;
}
.c-food-preview__item--active .c-food-preview__toggle {
  transform: rotate(-180deg);
}
.c-food-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  cursor: pointer;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .c-food-preview__header {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-food-preview__header {
    font-size: 40px;
  }
}
.c-food-preview__toggle {
  transition: all 300ms ease;
}
.c-food-preview__toggle .icon {
  width: 24px;
}
.c-food-preview__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 300ms ease;
}
.c-food-preview__wrap {
  overflow: hidden;
}
.c-food-preview__in {
  display: flex;
  column-gap: 54px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid #d7d7d7;
}
@media screen and (max-width: 1199px) {
  .c-food-preview__in {
    flex-direction: column-reverse;
    row-gap: 20px;
  }
}
.c-food-preview__images {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.c-food-preview__main {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  flex: 1;
  min-width: 1px;
}

.c-main-section {
  overflow: hidden;
}
.c-main-section--no-overflow {
  overflow: visible;
}
@media screen and (max-width: 1199px) {
  .c-main-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .c-main-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}
.c-main-section--ptb-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.c-main-section__title {
  max-width: 780px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 12px;
  text-align: center;
}
.c-main-section__text {
  max-width: 780px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .c-main-section__text {
    margin-bottom: 44px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .c-main-section__text {
    margin-bottom: 80px;
  }
}

.c-review-item {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 20px 20px 40px 20px;
  border-radius: 0 16px 16px 16px;
  background: #fff;
}
@media screen and (max-width: 1199px) {
  .c-review-item {
    align-items: center;
    text-align: center;
  }
}
.c-review-item__stars {
  position: relative;
  width: 102px;
  height: 16px;
  background: url("../img/bg-stars-5.png") no-repeat 0 0;
}
.c-location-newsletter {
  z-index: 2;
  position: relative;
  margin-bottom: -190px;
  margin-top: 80px;
}
.c-location-newsletter__in {
  background: linear-gradient(0deg, #F8F8F8 0%, #F8F8F8 100%), #5C5C5C;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1199px) {
  .c-location-newsletter__in {
    padding: 20px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-location-newsletter__in {
    padding: 52px;
    border-radius: 40px;
  }
}

.c-location {
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 767px) {
  .c-location {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .c-location {
    padding-bottom: 52px;
    margin-bottom: 52px;
  }
}
.c-location__in {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-location__in {
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .c-location__in {
    justify-content: space-between;
    column-gap: 40px;
  }
}
.c-location__main {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-location__main {
    max-width: 528px;
  }
}
@media screen and (min-width: 768px) {
  .c-location__main {
    max-width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .c-location__main {
    max-width: 528px;
  }
}
.c-location__title {
  margin-bottom: 12px;
}
.c-location__text {
  margin-bottom: 24px;
}

.c-location-form {
  display: flex;
  margin-bottom: 12px;
}
@media screen and (max-width: 374px) {
  .c-location-form {
    flex-direction: column;
    row-gap: 4px;
  }
}
@media screen and (min-width: 375px) {
  .c-location-form {
    justify-content: center;
    column-gap: 8px;
  }
}
@media screen and (min-width: 768px) {
  .c-location-form {
    justify-content: flex-start;
  }
}
.c-location-form__input {
  display: flex;
  align-items: center;
  max-width: 326px;
  width: 100%;
  height: 48px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #A7A7A7;
}
@media screen and (max-width: 479px) {
  .c-location-form__input {
    column-gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media screen and (min-width: 480px) {
  .c-location-form__input {
    column-gap: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.c-location-form__input .form-input {
  flex: 1;
  min-width: 1px;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.c-location-form__input .form-input:focus {
  outline: none;
}
.c-location-form__icon {
  color: #a7a7a7;
}
.c-location-form__icon .icon {
  width: 24px;
}
.c-location-form__location {
  color: #fb4c45;
  cursor: pointer;
}
.c-location-form__location .icon {
  width: 24px;
}
@media screen and (max-width: 479px) {
  .c-location-form .btn {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.c-newsletter__in {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-newsletter__in {
    flex-direction: column;
    row-gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .c-newsletter__in {
    column-gap: 60px;
  }
}
.c-newsletter__title {
  line-height: 1.4;
  font-size: 24px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .c-newsletter__title {
    text-align: center;
  }
}
.c-newsletter__main {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-newsletter__main {
    flex: 1;
    min-width: 1px;
  }
}
.c-newsletter__form {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-newsletter__form {
    flex-direction: column;
    row-gap: 8px;
  }
}
@media screen and (min-width: 768px) {
  .c-newsletter__form {
    column-gap: 8px;
  }
}
.c-newsletter__form .form-input {
  padding-left: 60px;
}
@media screen and (min-width: 768px) {
  .c-newsletter__form .form-input {
    flex: 1;
    min-width: 1px;
  }
}
.c-newsletter__icon {
  position: absolute;
  left: 24px;
  top: 12px;
  color: #A7A7A7;
}
.c-newsletter__icon .icon {
  width: 24px;
}
@media screen and (max-width: 767px) {
  .c-newsletter__policy {
    text-align: center;
  }
}

.c-author {
  display: flex;
  align-items: center;
  column-gap: 20px;
  text-align: left;
}
.c-author__image {
  width: 61px;
  height: 61px;
}
.c-author__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.c-author__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 1px;
}
.c-author__title {
  font-weight: 700;
}
.c-author__text {
  font-size: 12px;
}
.c-author--small {
  column-gap: 12px;
}
.c-author--small .c-author__image {
  width: 44px;
  height: 44px;
}

.c-how-it-works {
  position: relative;
}
.c-how-it-works__in {
  position: relative;
  z-index: 1;
}
.c-how-it-works__in h2 {
  text-align: center;
  margin: 0 0 24px;
}
.c-how-it-works__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
  max-width: 300px;
  margin: 0 auto;
}
.c-how-it-works__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 120px;
}
.c-how-it-works__item h3 {
  margin: 0 0 8px;
  transition: 0.25s linear color;
}
.c-how-it-works__item p {
  color: rgba(19, 24, 44, 0.5);
  margin: 0;
}
.c-how-it-works__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 50%;
  filter: drop-shadow(0px 0px 30px rgba(114, 114, 114, 0.2));
  color: var(--primary-color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-how-it-works__icon svg {
  width: 40px;
  height: 40px;
}
.c-how-it-works__bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 439px;
}
.c-how-it-works__bg img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2602px;
  height: 300px;
  max-width: none;
}
.c-how-it-works__illusts {
  display: none;
}
.c-how-it-works__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
}
.c-how-it-works__illust img {
  max-width: none;
  display: inline-block;
}
.c-how-it-works__illust--1 {
  top: 0;
  right: calc(50vw + 20%);
}
.c-how-it-works__illust--1 img {
  width: 130px;
}
@media screen and (min-width: 768px) {
  .c-how-it-works {
    overflow: hidden;
  }
  .c-how-it-works__in {
    height: 364px;
  }
  .c-how-it-works__list {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 900px;
  }
  .c-how-it-works__item {
    position: absolute;
    top: 30%;
    left: 5%;
    padding-top: 120px;
    padding-left: 0;
  }
  .c-how-it-works__item:nth-child(2) {
    top: 12%;
    left: 35%;
  }
  .c-how-it-works__item:nth-child(3) {
    top: 32%;
    left: 60%;
  }
  .c-how-it-works__item:nth-child(4) {
    top: 0%;
    left: 85%;
  }
  .c-how-it-works__item p {
    max-width: 180px;
  }
  .c-how-it-works__icon {
    top: 0;
    left: 0;
    transform: none;
    transition: 0.25s linear;
    transition-property: transform, background-color, color;
  }
  .c-how-it-works__bg {
    display: block;
  }
  .c-how-it-works__illusts {
    display: block;
  }
  .c-how-it-works__item:hover .c-how-it-works__icon {
    transform: scale(1.422);
    color: var(--primary-color-text);
    background-color: var(--primary-color-bg);
  }
  .c-how-it-works__item:hover h3 {
    color: var(--primary-color-bg);
  }
}
@media screen and (min-width: 1200px) {
  .c-how-it-works__in {
    height: 664px;
  }
  .c-how-it-works__list {
    max-width: none;
  }
  .c-how-it-works__item {
    top: 31%;
    left: 10%;
  }
  .c-how-it-works__item:nth-child(2) {
    top: 15%;
    left: 35%;
  }
  .c-how-it-works__item:nth-child(3) {
    top: 34%;
    left: 60%;
  }
  .c-how-it-works__item:nth-child(4) {
    top: 8%;
    left: 85%;
  }
  .c-how-it-works__bg {
    height: 439px;
  }
  .c-how-it-works__bg img {
    width: 3800px;
    height: 439px;
  }
}

.c-need-to-know {
  position: relative;
}
.c-need-to-know__in {
  position: relative;
  z-index: 1;
}
.c-need-to-know__bg {
  display: none;
  position: absolute;
  top: 70%;
  right: 0;
  z-index: -1;
}
.c-need-to-know__illusts {
  display: none;
  position: relative;
}
.c-need-to-know__illust {
  display: inline-block;
  line-height: 0;
  position: absolute;
  text-align: center;
}
.c-need-to-know__illust img {
  max-width: none;
}
.c-need-to-know__illust--1 {
  top: -10%;
  left: 10%;
}
.c-need-to-know__illust--1 img {
  width: 294px;
}
.c-need-to-know__illust--2 {
  bottom: 0%;
  left: 20%;
}
.c-need-to-know__illust--2 img {
  width: 210px;
}
.c-need-to-know__illust--3 {
  top: -55%;
  left: 170%;
}
.c-need-to-know__illust--3 img {
  width: 202px;
}
.c-need-to-know__illust--4, .c-need-to-know__illust--5, .c-need-to-know__illust--6, .c-need-to-know__illust--7 {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-need-to-know__bg {
    display: block;
  }
  .c-need-to-know__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .c-need-to-know__illusts {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .c-need-to-know__illust--1 {
    top: -20%;
    left: 10%;
  }
  .c-need-to-know__illust--1 img {
    width: 384px;
  }
  .c-need-to-know__illust--2 {
    bottom: -20%;
    left: 45%;
  }
  .c-need-to-know__illust--2 img {
    width: 280px;
  }
  .c-need-to-know__illust--6 {
    display: block;
    bottom: -30%;
    left: -10%;
  }
  .c-need-to-know__illust--6 img {
    width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .c-need-to-know__illust--1 {
    top: -40%;
  }
  .c-need-to-know__illust--3 {
    top: -100%;
    left: 170%;
  }
  .c-need-to-know__illust--3 img {
    width: 240px;
  }
  .c-need-to-know__illust--4 {
    display: block;
    top: -80%;
    left: 85%;
  }
  .c-need-to-know__illust--4 img {
    width: 140px;
  }
  .c-need-to-know__illust--5 {
    display: block;
    top: -50%;
    left: -10%;
  }
  .c-need-to-know__illust--5 img {
    width: 125px;
  }
  .c-need-to-know__illust--6 {
    bottom: -40%;
  }
  .c-need-to-know__illust--7 {
    display: block;
    bottom: -40%;
    left: 120%;
  }
  .c-need-to-know__illust--7 img {
    width: 140px;
  }
}

.c-menu__header {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}
.c-menu__header-side {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
}
.c-menu__header-tabs {
  list-style-type: none;
  margin: 0;
  padding: 4px;
  background-color: #f5f5f5;
  border-radius: 8px;
  display: grid;
}
.c-menu__header-tabs li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
}
.c-menu__header-tabs li.is-active a {
  font-weight: 600;
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-menu__header-tabs a {
  padding: 6px 12px;
  display: block;
  text-decoration: none;
  border-radius: 8px;
  color: #858585;
  transition: 0.3s ease color;
}
.c-menu__header-tabs a:hover {
  color: #333;
}
.c-menu__header-subs {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.c-menu__header-sub {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.c-menu__header-sub label {
  color: #858585;
}
.c-menu__menus {
  display: grid;
  gap: 48px;
}
@media screen and (min-width: 600px) {
  .c-menu__header-tabs {
    display: flex;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .c-menu__header-tabs a {
    padding: 12px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .c-menu__header {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .c-menu__header-side {
    order: 2;
  }
  .c-menu__header-tabs {
    order: 1;
  }
  .c-menu__header-subs {
    order: 3;
    grid-column: span 2;
  }
}

.c-menu-day__header {
  position: relative;
  padding-right: 30px;
  margin-bottom: 12px;
  cursor: pointer;
}
.c-menu-day__header:after {
  border-bottom: 1px solid #adadad;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  content: "";
}
.c-menu-day__header h2 {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
}
.c-menu-day__header h2 strong {
  font-weight: 900;
}
.c-menu-day__icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: all 300ms ease;
}
.c-menu-day__icon svg {
  fill: currentColor;
  width: 24px;
  height: 24px;
}
.c-menu-day__wrap {
  display: grid;
  transition: all 300ms ease;
  grid-template-rows: 0fr;
}
.c-menu-day__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  display: grid;
  overflow: hidden;
}
.c-menu-day__item {
  list-style-type: none;
  margin: 0;
  padding: 24px 0 0;
}
.c-menu-day.is-active .c-menu-day__icon {
  transform: translateY(-50%) rotate(-180deg);
}
.c-menu-day.is-active .c-menu-day__wrap {
  grid-template-rows: 1fr;
}
@media screen and (min-width: 600px) {
  .c-menu-day__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-menu-day__header h2 {
    font-size: 44px;
  }
  .c-menu-day__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-dish {
  border-radius: 16px;
  padding: 32px 20px;
  background-color: #f5f5f5;
  position: relative;
  height: 100%;
}
.c-dish__tag {
  position: absolute;
  top: 0;
  left: 20px;
  transform: translateY(-50%);
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.c-dish h3 {
  margin-bottom: 32px;
  min-height: 58px;
}
.c-dish__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.c-dish__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #333;
}
.c-dish__item strong {
  display: block;
  font-size: 20px;
}
@media screen and (min-width: 1200px) {
  .c-dish__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-program-gallery {
  overflow: hidden;
}
.c-program-gallery__header {
  margin-bottom: 32px;
}
.c-program-gallery__in.swiper {
  overflow: visible;
}
.c-program-gallery__item.swiper-slide {
  width: 85%;
}
.c-program-gallery__item.swiper-slide img {
  border-radius: 16px;
}
.c-program-gallery__prev, .c-program-gallery__next {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  background-color: #fff;
  box-shadow: 0px 2.73684px 16.42105px 0px rgba(51, 51, 51, 0.12);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.c-program-gallery__prev.swiper-button-disabled, .c-program-gallery__next.swiper-button-disabled {
  display: none;
}
.c-program-gallery__prev svg, .c-program-gallery__next svg {
  width: 32px;
  height: 32px;
}
.c-program-gallery__prev:hover, .c-program-gallery__next:hover {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-program-gallery__next {
  left: auto;
  right: -10px;
}
@media screen and (min-width: 480px) {
  .c-program-gallery__item.swiper-slide {
    width: 70%;
  }
}
@media screen and (min-width: 600px) {
  .c-program-gallery__item.swiper-slide {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .c-program-gallery__item.swiper-slide {
    width: 380px;
  }
}

.c-contact-call__grid {
  display: grid;
  gap: 20px;
}
.c-contact-call__week {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 30px 0px rgba(69, 72, 97, 0.1);
  padding: 24px;
}
.c-contact-call__week h2 {
  display: flex;
  justify-content: space-between;
  margin: 0 0 32px;
}
.c-contact-call__week h2 svg {
  width: 48px;
  height: 48px;
  color: var(--primary-color-bg);
}
.c-contact-call__days {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
.c-contact-call__day {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  opacity: 0.5;
  align-items: center;
}
.c-contact-call__day span {
  width: 48px;
  height: 48px;
  border: 1px solid #C4CED4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-contact-call__day strong {
  font-weight: 400;
}
.c-contact-call__day:after {
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgb(196, 206, 212);
  content: "";
}
.c-contact-call__day:last-child:after {
  display: none;
}
.c-contact-call__day--active {
  opacity: 1;
}
.c-contact-call__day--active span {
  background-color: var(--primary-color-bg);
  border-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-contact-call__day--active:after {
  border-bottom-color: rgba(196, 206, 212, 0.5);
}
.c-contact-call__places {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-contact-call__grid {
    grid-template-columns: 250px auto;
  }
}
@media screen and (min-width: 1200px) {
  .c-contact-call__grid {
    grid-template-columns: 380px auto;
  }
}

.c-contact-place {
  display: grid;
  gap: 20px;
  min-height: 299px;
}
.c-contact-place__box {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: 0px 4px 30px 0px rgba(69, 72, 97, 0.1);
}
.c-contact-place__text {
  padding: 12px;
}
.c-contact-place__text h3 {
  margin: 0 0 32px;
}
.c-contact-place__contacts {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
.c-contact-place__contact {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 36px;
}
.c-contact-place__contact a {
  text-decoration: none;
}
.c-contact-place__contact a[href^="tel:"] {
  font-weight: 700;
}
.c-contact-place__contact a:hover {
  text-decoration: underline;
}
.c-contact-place__contact svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}
.c-contact-place__image {
  display: none;
  text-align: right;
}
.c-contact-place__image picture {
  display: block;
  line-height: 0;
}
.c-contact-place__image img {
  border-radius: 8px;
  display: inline-block;
}
.c-contact-place__map {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 299px;
}
.c-contact-place__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 30px 0px rgba(69, 72, 97, 0.1);
  border-radius: 8px;
}
@media screen and (min-width: 480px) {
  .c-contact-place__image {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .c-contact-place {
    grid-template-columns: auto 40%;
  }
  .c-contact-place__image {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .c-contact-place {
    grid-template-columns: auto 280px;
  }
  .c-contact-place__image {
    display: block;
  }
}

.c-contact-form__grid {
  display: grid;
  gap: 24px;
}
.c-contact-form__side {
  position: relative;
}
.c-contact-form__side h2 {
  margin: 0 0 12px;
}
.c-contact-form__side p {
  margin: 0;
}
.c-contact-form__illusts {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-contact-form__illust {
  display: inline-block;
  position: absolute;
  text-align: center;
}
.c-contact-form__illust img {
  max-width: none;
  display: inline-block;
}
.c-contact-form__illust--1 {
  top: -50%;
  left: 0;
}
.c-contact-form__illust--1 img {
  width: 130px;
}
.c-contact-form__illust--2 {
  display: none;
  top: -50%;
  right: 10%;
}
.c-contact-form__illust--2 img {
  width: 100px;
}
.c-contact-form__illust--3 {
  display: none;
  bottom: -80%;
  right: 20%;
}
.c-contact-form__illust--3 img {
  width: 100px;
}
.c-contact-form__form {
  display: grid;
  gap: 12px;
}
.c-contact-form__form-item label {
  visibility: hidden;
  position: absolute;
}
.c-contact-form__form-gdpr {
  padding-top: 10px;
  margin: 0 0 36px;
}
@media screen and (min-width: 480px) {
  .c-contact-form__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .c-contact-form__illusts {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .c-contact-form__illust--1 {
    top: -100%;
  }
  .c-contact-form__illust--1 img {
    width: 140px;
  }
  .c-contact-form__illust--2, .c-contact-form__illust--3 {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .c-contact-form__illust {
    display: inline-block;
    position: absolute;
    text-align: center;
  }
  .c-contact-form__illust img {
    max-width: none;
    display: inline-block;
  }
  .c-contact-form__illust--1 {
    left: -20%;
  }
  .c-contact-form__illust--1 img {
    width: 200px;
  }
  .c-contact-form__illust--3 {
    bottom: -90%;
    right: 30%;
  }
  .c-contact-form__illust--3 img {
    width: 130px;
  }
}

.c-contact-team__in {
  position: relative;
}
.c-contact-team h2 {
  margin: 0 0 20px;
}
.c-contact-team__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.c-contact-team__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.c-contact-team__item.swiper-slide {
  width: 280px;
}
.c-contact-team__illust {
  display: none;
  position: absolute;
  top: -140px;
  right: -140px;
}
.c-contact-team__prev, .c-contact-team__next {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  box-shadow: 0px 2.73684px 16.42105px 0px rgba(51, 51, 51, 0.12);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease color;
}
.c-contact-team__prev.swiper-button-disabled, .c-contact-team__next.swiper-button-disabled {
  display: none;
}
.c-contact-team__prev svg, .c-contact-team__next svg {
  width: 32px;
  height: 32px;
}
.c-contact-team__prev:hover, .c-contact-team__next:hover {
  color: #000;
}
.c-contact-team__next {
  left: auto;
  right: 0;
}
@media screen and (min-width: 600px) {
  .c-contact-team__item.swiper-slide {
    width: 380px;
  }
}
@media screen and (min-width: 1200px) {
  .c-contact-team__illust {
    display: block;
  }
}

.c-team-person {
  overflow: hidden;
}
.c-team-person__text {
  position: relative;
  height: 142px;
}
.c-team-person__text-in {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  color: #333;
  padding: 32px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.c-team-person__text-in h3 {
  font-size: 16px;
}
.c-team-person__position {
  font-size: 12px;
  margin: 0 0 8px;
}
.c-team-person__email {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.c-team-person__email svg {
  width: 20px;
  height: 20px;
}
.c-team-person__email a {
  text-decoration: none;
}
.c-team-person__email a:hover {
  text-decoration: underline;
}
.c-team-person__desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease grid-template-rows;
  margin: 0;
}
.c-team-person__desc-in {
  overflow: hidden;
}
.c-team-person__desc-in span {
  display: block;
  margin-top: 10px;
}
.c-team-person:hover .c-team-person__text-in {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-team-person:hover .c-team-person__desc {
  grid-template-rows: 1fr;
}

.c-calculator-breadcrumbs {
  margin: 0 0 40px;
}
@media screen and (min-width: 480px) {
  .c-calculator-breadcrumbs {
    padding: 0 20px;
  }
}
@media screen and (min-width: 600px) {
  .c-calculator-breadcrumbs {
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .c-calculator-breadcrumbs {
    padding: 0 60px;
  }
}

.c-calculator-checkbox input {
  display: none;
}
.c-calculator-checkbox label {
  padding: 11px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #f5f5f5;
  transition: 0.3s ease;
  transition-property: background-color, color;
  width: 100%;
  display: block;
  cursor: pointer;
  text-align: center;
  color: #858585;
}
.c-calculator-checkbox label:hover {
  background-color: #fb4c45;
  color: #fff;
}
.c-calculator-checkbox input:checked + label {
  background-color: #fb4c45;
  color: #fff;
}

.c-calculator-form {
  display: grid;
  gap: 40px;
  max-width: 760px;
  margin: 0 auto 40px;
}
.c-calculator-form__title {
  text-align: center;
  font-size: 16px;
  margin: 0 0 16px;
}
.c-calculator-form__grid {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 480px) {
  .c-calculator-form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-calculator-form__grid--3 .c-calculator-form__item:last-child {
    grid-column: span 2;
  }
}
@media screen and (min-width: 600px) {
  .c-calculator-form__grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-calculator-form__grid--3 .c-calculator-form__item:last-child {
    grid-column: span 1;
  }
}
@media screen and (min-width: 992px) {
  .c-calculator-form__grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-input-suffix {
  display: flex;
}
.c-input-suffix label {
  position: absolute;
  visibility: hidden;
}
.c-input-suffix input {
  flex: 1;
  border-radius: 8px 0 0 8px;
}
.c-input-suffix input::-webkit-outer-spin-button, .c-input-suffix input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-input-suffix input[type=number] {
  -moz-appearance: textfield;
}
.c-input-suffix__suffix {
  white-space: nowrap;
  display: block;
  background-color: #ebebeb;
  border-radius: 0 8px 8px 0;
  border: 1px solid #d6d6d6;
  border-left-width: 0;
  padding: 0 24px;
  min-height: 100%;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.c-calculator-final {
  margin-bottom: 40px;
}
.c-calculator-final__head {
  margin: 0 0 40px;
}
.c-calculator-final__head h3 {
  text-align: center;
  margin: 0 0 16px;
  font-size: 16px;
}
.c-calculator-final__head p {
  text-align: center;
  margin: 0;
}
.c-calculator-final__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.c-calculator-final__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 600px) {
  .c-calculator-final {
    margin-bottom: 60px;
  }
  .c-calculator-final__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .c-calculator-final__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-calculator-contact__head {
  margin: 0 0 20px;
}
.c-calculator-contact__head h3 {
  text-align: center;
  margin: 0 0 16px;
  font-size: 16px;
}
.c-calculator-contact__head p {
  text-align: center;
  margin: 0;
}
.c-calculator-contact__grid {
  max-width: 40rem;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.c-calculator-contact__grid label {
  position: absolute;
  visibility: hidden;
}
.c-calculator-contact__btn {
  text-align: center;
}
@media screen and (min-width: 480px) {
  .c-calculator-contact__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-delivery-cities h2 {
  margin: 0 0 32px;
}
.c-delivery-cities__grid {
  display: grid;
  gap: 40px 20px;
}
.c-delivery-cities__cell h3 {
  font-size: 16px;
  margin: 0 0 16px;
}
.c-delivery-cities__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-delivery-cities__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.c-delivery-cities__item a {
  color: rgba(51, 51, 51, 0.5);
  text-decoration: none;
}
.c-delivery-cities__item a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 480px) {
  .c-delivery-cities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 600px) {
  .c-delivery-cities__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-delivery-cities__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-delivery-map {
  display: grid;
  gap: 20px;
}
.c-delivery-map__map {
  padding-top: 75%;
  position: relative;
}
.c-delivery-map__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
@media screen and (min-width: 600px) {
  .c-delivery-map {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-delivery-info h2 {
  text-align: center;
  margin: 0 0 60px;
}
.c-delivery-info__in {
  background-color: #FAF9F9;
  border-radius: 24px;
  overflow: hidden;
}
.c-delivery-info__tabs {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #d6d6d6;
  flex-wrap: wrap;
}
.c-delivery-info__tab {
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex: 1 0 100%;
  border-bottom: 1px solid #d6d6d6;
  white-space: nowrap;
  transition: 0.3s ease;
  transition-property: background-color, color;
}
.c-delivery-info__tab:last-child {
  border-bottom-width: 0;
}
.c-delivery-info__tab a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
}
.c-delivery-info__tab.is-active {
  font-weight: 700;
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-delivery-info__tab svg {
  width: 20px;
  height: 20px;
}
.c-delivery-info__tab:hover {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
}
.c-delivery-info__tab-cnt {
  display: none;
}
.c-delivery-info__tab-cnt.is-active {
  display: block;
}
@media screen and (min-width: 600px) {
  .c-delivery-info__tab {
    font-size: 20px;
  }
  .c-delivery-info__tab a {
    padding: 16px 32px;
  }
}
@media screen and (min-width: 992px) {
  .c-delivery-info__tabs {
    flex-wrap: nowrap;
  }
  .c-delivery-info__tab {
    flex: 1 0 auto;
    border-bottom-width: 0;
    border-right: 1px solid #d6d6d6;
    min-height: 100%;
  }
  .c-delivery-info__tab:last-child {
    border-right-width: 0;
  }
  .c-delivery-info__tab a {
    padding: 8px 16px;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .c-delivery-info__tab a {
    padding: 16px 32px;
  }
}

.c-delivery-info-tab {
  padding: 32px;
  display: grid;
  gap: 20px;
}
.c-delivery-info-tab__text p {
  margin: 0;
}
.c-delivery-info-tab__img img {
  border-radius: 12px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-delivery-info-tab {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-delivery-info-tab__img {
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .c-delivery-info-tab {
    padding: 52px;
  }
}

.c-stories-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.c-stories-list__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 480px) {
  .c-stories-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-stories-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-stories-list-item {
  display: grid;
  gap: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 24px 0px rgba(51, 51, 51, 0.12);
  position: relative;
}
.c-stories-list-item__img {
  display: block;
  line-height: 0;
  padding-top: 64.77%;
  position: relative;
}
.c-stories-list-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-stories-list-item__text {
  padding: 0 20px 20px;
}
.c-stories-list-item__tag {
  margin: 0 0 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.c-stories-list-item__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
}
.c-stories-list-item__title small {
  display: block;
  font-size: 12px;
  color: rgba(51, 51, 51, 0.5);
  font-weight: 400;
}
.c-stories-list-item__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 16px;
}
.c-stories-list-item__actions {
  margin: 0;
  color: rgba(51, 51, 51, 0.5);
}
.c-stories-list-item__actions a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
}

.c-paging {
  padding-top: 60px;
  display: grid;
  gap: 20px;
}
.c-paging__more {
  text-align: center;
}
.c-paging__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.c-paging__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.75);
}
.c-paging__item svg {
  width: 20px;
  height: 20px;
}
.c-paging__item a, .c-paging__item span {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  padding: 0 6px;
}
.c-paging__item--active {
  color: var(--primary-color-bg);
}
.c-paging__item--prev a, .c-paging__item--next a {
  padding: 0;
}
@media screen and (min-width: 600px) {
  .c-paging {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-paging__more {
    grid-column: 2/3;
  }
  .c-paging__list {
    justify-content: flex-end;
  }
}

.c-recommend-article h2 {
  margin: 0 0 52px;
}
.c-recommend-article__list {
  list-style-type: none;
  margin: 0 0 60px;
  padding: 0;
  display: grid;
  gap: 20px;
}
.c-recommend-article__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.c-recommend-article__all {
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .c-recommend-article__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .c-recommend-article__item:last-child {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .c-recommend-article__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-about {
  display: grid;
  gap: 60px;
}
.c-about__grid {
  display: grid;
  gap: 32px;
  position: relative;
}
.c-about__img {
  display: block;
  line-height: 0;
}
.c-about__img img {
  border-radius: 24px;
  display: inline-block;
}
.c-about h2 {
  margin: 0 0 12px;
}
.c-about__person {
  margin: 0 0 24px;
}
.c-about__person strong {
  font-size: 52px;
  font-weight: 900;
  display: block;
}
.c-about__text {
  margin: 24px 0 0;
}
.c-about__illust {
  display: none;
  position: absolute;
  text-align: center;
  z-index: 2;
}
.c-about__illust img {
  max-width: none;
  display: inline-block;
}
.c-about__illust--1 {
  bottom: -10%;
  right: -8%;
}
.c-about__illust--1 img {
  width: 156px;
}
.c-about__illust--2 {
  top: 40%;
  left: -15%;
}
.c-about__illust--2 img {
  width: 290px;
}
@media screen and (min-width: 600px) {
  .c-about {
    gap: 120px;
  }
  .c-about__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .c-about__grid--reverse .c-about__img {
    order: 2;
    text-align: right;
  }
  .c-about__grid--reverse .c-about__item {
    order: 1;
  }
}
@media screen and (min-width: 1200px) {
  .c-about__illust {
    display: block;
  }
}

.c-article {
  /*   &__img {
      margin: -100px 0 80px;

      img {
        border-radius: 32px;
      }
    } */
}
.c-article__in {
  max-width: 1040px;
  margin: 0 auto;
}
.c-article__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 26px;
}
.c-article__perex {
  margin: 0 0 56px;
}
.c-article__perex p {
  font-size: 24px;
  font-weight: 600;
}
.c-article__perex p strong {
  color: var(--primary-color-bg);
}
.c-article__content, .c-article__narrow-content {
  margin: 0 0 50px;
}
.c-article__content p {
  font-size: 20px;
}
.c-article__narrow-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.c-article__narrow-content p {
  opacity: 0.6;
}
.c-article__block-content {
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
  border-radius: 24px;
  padding: 12px;
}
.c-article__block-content h2 {
  font-size: 32px;
}
.c-article__block-content p {
  font-size: 20px;
  opacity: 0.8;
}
.c-article__block-parallax {
  position: relative;
}
.c-article__illust {
  display: none;
  position: absolute;
  text-align: center;
  z-index: 2;
}
.c-article__illust img {
  max-width: none;
  display: inline-block;
}
.c-article__illust--1 {
  top: -20%;
  right: 8%;
}
.c-article__illust--1 img {
  width: 138px;
}
.c-article__illust--2 {
  bottom: -14%;
  left: 8%;
}
.c-article__illust--2 img {
  width: 164px;
}
@media screen and (min-width: 600px) {
  .c-article__perex {
    margin-bottom: 112px;
  }
  .c-article__content, .c-article__narrow-content {
    margin-bottom: 100px;
  }
  .c-article__block-content {
    padding: 42px;
  }
}
@media screen and (min-width: 768px) {
  .c-article__block-content {
    padding: 84px;
  }
  .c-article__illust {
    display: block;
  }
}

.c-career__header {
  text-align: center;
  margin: 0 0 52px;
}
.c-career__header h2 {
  margin: 0 0 12px;
}
.c-career__header p {
  margin: 0 auto;
  max-width: 780px;
}
.c-career__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.c-career__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.c-career-item {
  border-radius: 12px;
  background: #f5f5f5;
  padding: 16px 48px 16px 16px;
  position: relative;
}
.c-career-item__title {
  margin: 0 0 4px;
  font-size: 24px;
}
.c-career-item__title a {
  text-decoration: none;
}
.c-career-item__title a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.c-career-item__desc {
  margin: 0 0 16px;
}
.c-career-item__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: 0.3s ease transform;
}
.c-career-item__arrow svg {
  width: 16px;
  height: 16px;
}
.c-career-item:hover .c-career-item__title a {
  text-decoration: underline;
}
.c-career-item:hover .c-career-item__arrow {
  transform: translate(6px, -50%);
}
@media screen and (min-width: 600px) {
  .c-career-item {
    padding: 32px 96px 32px 32px;
  }
  .c-career-item__arrow {
    right: 32px;
  }
  .c-career-item__arrow svg {
    width: 32px;
    height: 32px;
  }
  .c-career-item:hover .c-career-item__arrow {
    transform: translate(12px, -50%);
  }
}

.c-career-tags {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px 40px;
  flex-wrap: wrap;
}
.c-career-tags__tag {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-career-tags__tag svg {
  width: 24px;
  height: 24px;
}
.c-career-tags__tag strong {
  margin-left: 8px;
  display: block;
}

.c-career-form {
  display: grid;
  gap: 8px;
}
.c-career-form label {
  position: absolute;
  visibility: hidden;
}
.c-career-form__gdpr {
  margin: 14px 0 40px;
}

.c-career-detail {
  display: grid;
  gap: 60px;
}
.c-career-detail__side {
  display: grid;
  gap: 44px;
}
.c-career-detail__block h2 {
  font-size: 40px;
  font-weight: 900;
  margin: 0 0 12px;
}
.c-career-detail__block p {
  margin: 0;
}
.c-career-detail__block ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.c-career-detail__block ul li {
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 16px;
  position: relative;
}
.c-career-detail__block ul li:before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color-bg);
  border-radius: 50%;
  content: "";
}
.c-career-detail__block ul li strong {
  display: block;
}
.c-career-detail__form h2 {
  margin: 0 0 24px;
}
@media screen and (min-width: 768px) {
  .c-career-detail {
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
  }
  .c-career-detail__side {
    gap: 88px;
  }
  .c-career-detail__form-in {
    position: sticky;
    top: 50px;
    padding-top: 100px;
  }
}

.c-about-detail {
  display: grid;
  gap: 60px;
}
.c-about-detail__grid {
  display: grid;
  gap: 32px;
  position: relative;
}
.c-about-detail__img {
  display: block;
  line-height: 0;
}
.c-about-detail__img img {
  border-radius: 24px;
  display: inline-block;
}
.c-about-detail__img--parallax {
  height: 100%;
  position: relative;
  min-height: 500px;
}
.c-about-detail h2 {
  margin: 0 0 12px;
}
.c-about-detail h2.h5 {
  font-weight: 900;
}
.c-about-detail__person {
  margin: 0 0 24px;
}
.c-about-detail__person strong {
  font-size: 52px;
  font-weight: 900;
  display: block;
}
.c-about-detail__text {
  margin: 24px 0 0;
}
.c-about-detail__illust {
  display: none;
  position: absolute;
  text-align: center;
  z-index: 2;
}
.c-about-detail__illust img {
  max-width: none;
  display: inline-block;
}
.c-about-detail__illust--1 {
  top: -40%;
  left: 58%;
}
.c-about-detail__illust--1 img {
  width: 156px;
}
.c-about-detail__illust--2 {
  bottom: -20%;
  left: 75%;
}
.c-about-detail__illust--2 img {
  width: 290px;
}
.c-about-detail__illust--3 {
  display: block;
  bottom: 20%;
  right: -10%;
}
.c-about-detail__illust--3 img {
  width: 450px;
}
.c-about-detail__illust--4 {
  display: block;
  bottom: -10%;
  left: -10%;
}
.c-about-detail__illust--4 img {
  width: 350px;
}
.c-about-detail__illust--5 {
  top: -40%;
  right: 10%;
}
.c-about-detail__illust--5 img {
  width: 114px;
}
.c-about-detail__illust--6 {
  top: -30%;
  left: -20%;
}
.c-about-detail__illust--6 img {
  width: 125px;
}
.c-about-detail__illust--7 {
  top: 30%;
  left: 70%;
}
.c-about-detail__illust--7 img {
  width: 115px;
}
.c-about-detail__illust--8 {
  bottom: -20%;
  right: 0;
}
.c-about-detail__illust--8 img {
  width: 111px;
}
.c-about-detail__illust--9 {
  top: -10%;
  left: 52%;
}
.c-about-detail__illust--9 img {
  width: 159px;
}
.c-about-detail__illust--10 {
  bottom: -30%;
  left: 20%;
}
.c-about-detail__illust--10 img {
  width: 197px;
}
.c-about-detail__illust--11 {
  top: -55%;
  left: 10%;
}
.c-about-detail__illust--11 img {
  width: 360px;
}
@media screen and (min-width: 600px) {
  .c-about-detail {
    gap: 120px;
  }
  .c-about-detail__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .c-about-detail__grid--reverse .c-about-detail__img {
    order: 2;
    text-align: right;
  }
  .c-about-detail__grid--reverse .c-about-detail__item {
    order: 1;
  }
}
@media screen and (min-width: 1200px) {
  .c-about-detail__illust {
    display: block;
  }
  .c-about-detail__illust--3 {
    bottom: auto;
    right: auto;
    top: -30%;
    left: -20%;
  }
  .c-about-detail__illust--3 img {
    width: 500px;
  }
  .c-about-detail__illust--4 {
    bottom: -20%;
    left: auto;
    right: 0%;
  }
  .c-about-detail__illust--4 img {
    width: 400px;
  }
}

.c-stats {
  position: relative;
}
.c-stats__in {
  position: relative;
  background-color: var(--primary-color-bg);
  color: var(--primary-color-text);
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
}
.c-stats__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 40px;
}
.c-stats__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.c-stats__list strong {
  display: block;
  font-size: 56px;
  font-weight: 700;
}
.c-stats__bg {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  width: 500px;
}
.c-stats__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-stats__illust {
  display: none;
  position: absolute;
  text-align: center;
  z-index: 2;
  top: -25%;
  left: -5%;
}
.c-stats__illust img {
  max-width: none;
  display: inline-block;
  width: 202px;
}
@media screen and (min-width: 480px) {
  .c-stats__in {
    padding: 48px;
  }
}
@media screen and (min-width: 600px) {
  .c-stats__bg {
    display: block;
  }
  .c-stats__illust {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .c-stats__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-stats__in {
    padding: 76px;
  }
}
@media screen and (min-width: 992px) {
  .c-stats__list strong {
    font-size: 76px;
  }
}

.c-timeline h2 {
  text-align: center;
  margin: 0 0 32px;
}
.c-timeline__list-wrap {
  position: relative;
}
.c-timeline__list {
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 60px;
  display: grid;
  gap: 60px;
}
.c-timeline__list:before {
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  border-left: 1px solid #858585;
  content: "";
}
.c-timeline__item {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 20px;
}
.c-timeline__item-year {
  position: absolute;
  left: -40px;
  top: -18px;
  width: 50px;
  text-align: center;
  transform: translateX(-50%);
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  color: #858585;
}
.c-timeline__item-text h3 {
  margin: 0 0 24px;
}
.c-timeline__item-text p {
  margin: 0;
}
.c-timeline__item-img {
  display: block;
  line-height: 0;
}
.c-timeline__item-img img {
  border-radius: 12px;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .c-timeline__list-wrap {
    padding-top: 150px;
  }
  .c-timeline__list-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #858585;
    border-radius: 50%;
    width: 20px;
    height: 20px;
  }
  .c-timeline__list-circle:before, .c-timeline__list-circle:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #858585;
    border-radius: 50%;
    content: "";
  }
  .c-timeline__list-circle:before {
    width: 42px;
    height: 42px;
  }
  .c-timeline__list-circle:after {
    width: 66px;
    height: 66px;
  }
  .c-timeline h2 {
    margin-bottom: 150px;
  }
  .c-timeline__list {
    padding: 0;
    gap: 70px;
  }
  .c-timeline__list:before {
    left: 50%;
    top: 42px;
  }
  .c-timeline__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
    padding-top: 60px;
  }
  .c-timeline__item-year {
    font-size: 20px;
    font-weight: 700;
    left: 50%;
  }
  .c-timeline__item-text h3 {
    font-size: 24px;
    margin: 0 0 24px;
    text-align: right;
  }
  .c-timeline__item-text p {
    text-align: right;
  }
  .c-timeline__item-img {
    text-align: center;
  }
  .c-timeline__item:nth-child(2n+2) .c-timeline__item-text {
    order: 2;
  }
  .c-timeline__item:nth-child(2n+2) .c-timeline__item-text h3, .c-timeline__item:nth-child(2n+2) .c-timeline__item-text p {
    text-align: left;
  }
  .c-timeline__item:nth-child(2n+2) .c-timeline__item-img {
    order: 1;
  }
}
@media screen and (min-width: 1200px) {
  .c-timeline__item {
    padding-top: 20px;
  }
}

.p-order__title {
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 700;
}
.p-order__in {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-order__in {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .p-order__in {
    justify-content: space-between;
    column-gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .p-order__in {
    column-gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-order__left {
    width: 320px;
  }
}
@media screen and (min-width: 1200px) {
  .p-order__left {
    width: 380px;
  }
}
@media screen and (min-width: 768px) {
  .p-order__right {
    flex: 1;
    min-width: 1px;
    max-width: 680px;
  }
}
.p-order__actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
}
.p-order__actions .btn {
  max-width: 210px;
  width: 100%;
}

.p-order-steps {
  margin-bottom: 80px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-order-steps__in {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .p-order-steps__in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .p-order-steps__in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .p-order-steps__divider {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .p-order-steps__divider {
    flex: 1;
    min-width: 1px;
    height: 1px;
    width: auto;
    background-color: #d6d6d6;
  }
}
.p-order-steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  min-width: 1px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-order-steps__item {
    row-gap: 4px;
  }
}
.p-order-steps__item--done .p-order-steps__image {
  background-color: #99bd04;
  border-color: #99bd04;
  color: #fff;
}
.p-order-steps__item--done + .p-order-steps__divider {
  background-color: #99bd04;
}
.p-order-steps__item--active .p-order-steps__image {
  background-color: #fb4c45;
  border-color: #fb4c45;
  color: #fff;
}
.p-order-steps__item--active .p-order-steps__title {
  font-weight: 700;
  color: #333;
  font-size: 12px;
}
@media screen and (min-width: 375px) {
  .p-order-steps__item--active .p-order-steps__title {
    font-size: 14px;
  }
}
@media screen and (min-width: 480px) {
  .p-order-steps__item--active .p-order-steps__title {
    font-size: 16px;
  }
}
.p-order-steps__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #adadad;
  color: #adadad;
}
.p-order-steps__image .icon {
  width: 20px;
}
.p-order-steps__title {
  color: #adadad;
  font-size: 10px;
}
@media screen and (min-width: 375px) {
  .p-order-steps__title {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .p-order-steps__title {
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: 8px;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

.p-order-main {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-order-main--desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-order-main--responsive {
    display: none;
  }
}
.p-order-main__title {
  padding: 20px;
  background-color: #fb4c45;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  border-radius: 16px 16px 0 0;
}
.p-order-main__title.color-pistachio {
  background-color: #99bd04;
}
.p-order-main__title.color-camarone {
  background-color: #236130;
}
.p-order-main__title.color-champagne {
  background-color: #F2E9CC;
  color: #333;
}
.p-order-main__image {
  height: 285px;
  width: 100%;
}
.p-order-main__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-order-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-order-summary__link .icon {
  color: #99bd04;
}

.p-order-summary-item {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #ebebeb;
}
.p-order-summary-item__image {
  width: 80px;
  aspect-ratio: 1/1;
}
.p-order-summary-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-order-summary-item__main {
  display: flex;
  align-items: baseline;
  column-gap: 12px;
  flex: 1;
  min-width: 1px;
}
.p-order-summary-item__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.p-order-summary-item__title {
  font-weight: 700;
}
.p-order-summary-item__text {
  font-size: 12px;
}
.p-order-summary-item__price {
  font-weight: 700;
}
.p-order-summary-item__remove {
  display: flex;
  translate: 0 6px;
}
.p-order-summary-item__remove .icon {
  width: 24px;
  color: #fb4c45;
}

.p-order-info {
  padding-left: 20px;
  padding-right: 20px;
}
.p-order-info + .p-order-price {
  margin-top: 24px;
}
.p-order-info__title {
  margin-bottom: 32px;
  font-weight: 700;
}
.p-order-info__list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(235, 235, 235, 0.93);
}
.p-order-info__list:last-child {
  margin-bottom: 0;
}
.p-order-info__item {
  display: flex;
}
.p-order-info__label {
  flex: 1;
  min-width: 1px;
}
.p-order-info__value {
  flex-shrink: 0;
  text-align: right;
  font-weight: 700;
}

.p-order-price {
  padding: 20px;
  border-radius: 16px;
  background: #F2E9CC;
}
.p-order-price + .p-order-info {
  margin-top: 24px;
}
.p-order-price__title {
  margin-bottom: 8px;
  font-weight: 700;
}
.p-order-price__list {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.p-order-price__item {
  display: flex;
  align-items: baseline;
  column-gap: 8px;
}
.p-order-price__label {
  flex: 1;
  min-width: 1px;
}
.p-order-price__value {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 24px;
  text-align: right;
}

.p-order-variants {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
}
.p-order-variants__title {
  margin-bottom: 4px;
  font-weight: 700;
}
.p-order-variants__text {
  margin-bottom: 16px;
  font-size: 12px;
  color: #5c5c5c;
}
.p-order-variants__value {
  max-width: 380px;
  width: 100%;
}
.p-order-variants__date {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  max-width: 505px;
  width: 100%;
  margin-top: 16px;
  padding: 20px;
  border-radius: 16px;
  background-color: #f5f5f5;
}
.p-order-variants__date > span {
  padding-left: 32px;
  font-size: 12px;
}

.p-order-form__in {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
}
.p-order-form__title {
  font-weight: 700;
}
.p-order-form__text {
  margin-top: 4px;
  font-size: 12px;
  color: #5c5c5c;
}
.p-order-form__list {
  margin-top: 16px;
}
.p-order-form__list--column {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.p-order-form__list--row-grid {
  display: grid;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-order-form__list--row-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .p-order-form__list--row-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-order-form__list--row {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.p-order-form__list--row .p-order-form__value {
  max-width: 380px;
  width: 100%;
}
.p-order-form__item--full {
  grid-column: -1/1;
}
.p-order-form__item--logos .form-radio {
  display: flex;
}
.p-order-form__item--logos .form-radio label {
  display: flex;
  column-gap: 8px;
}
.p-order-form__logos {
  display: flex;
  column-gap: 8px;
}
.p-order-form__logo {
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  height: 24px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
}
.p-order-form__warning {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-top: 8px;
  padding: 20px;
  background: rgba(235, 235, 235, 0.5);
  border-radius: 16px;
  font-size: 12px;
}
.p-order-form__warning .icon {
  flex-shrink: 0;
  width: 24px;
  color: #fb4c45;
}

.p-order-form-choose {
  margin-top: 24px;
}
.p-order-form-choose__list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.p-order-form-choose__item {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.p-order-form-choose__text {
  font-size: 12px;
}

.p-order-form-type {
  margin-top: 24px;
}
.p-order-form-type__list {
  display: flex;
  flex-direction: column;
}
.p-order-form-type__item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #d6d6d6;
}
.p-order-form-type__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.p-order-form-type__in {
  display: flex;
}
.p-order-form-type__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
  flex: 1;
  min-width: 1px;
}
.p-order-form-type__side {
  text-align: right;
}
.p-order-form-type__side span {
  font-size: 12px;
}
.p-order-form-type__text {
  margin-top: 8px;
  font-size: 12px;
  color: #5c5c5c;
}
.p-order-form-type__value {
  margin-top: 16px;
  max-width: 380px;
  width: 100%;
}

.p-order-form-food {
  margin-top: 16px;
}
.p-order-form-food__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.p-order-form-food__item svg {
  width: 24px;
  height: 24px;
}
.p-order-form-food__item .form-checkbox label {
  display: flex;
  column-gap: 4px;
}
.p-order-form-food__item .form-checkbox label:before {
  top: 0;
}
.p-order-form-food__item .form-checkbox label:after {
  top: 0;
}

.p-order-policy {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.p-order-done {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-order-done {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .p-order-done {
    padding-bottom: 120px;
  }
}
.p-order-done__title {
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-order-done__text {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-order-done__text {
    margin-bottom: 48px;
  }
}
.p-order-done__info {
  padding: 20px;
  max-width: 680px;
  width: 100%;
  margin-inline: auto;
  background-color: #fb4c45;
  color: #fff;
  border-radius: 16px;
}
.p-order-done__actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-order-done__actions {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-order-done__actions {
    margin-top: 48px;
  }
}
.p-order-done__actions .btn {
  max-width: 220px;
  width: 100%;
}

.p-order-choose__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  margin-bottom: 48px;
  text-align: center;
}
.__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-order-choose__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .p-order-choose__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-order-choose-item {
  position: relative;
}
.p-order-choose-item--red .p-order-choose-item__heading {
  background-color: #fb4c45;
}
.p-order-choose-item--light-green .p-order-choose-item__heading {
  background-color: #99bd04;
}
.p-order-choose-item--dark-green .p-order-choose-item__heading {
  background-color: #236130;
}
.p-order-choose-item--brown .p-order-choose-item__heading {
  background-color: #F2E9CC;
}
.p-order-choose-item--cyan .p-order-choose-item__heading {
  background-color: #44cfd9;
}
.p-order-choose-item--brown .p-order-choose-item__title, .p-order-choose-item--brown .p-order-choose-item__price {
  color: #333;
}
.p-order-choose-item:hover .p-order-choose-item__in {
  margin-top: 0;
  top: 0;
}
.p-order-choose-item__container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (min-width: 1200px) {
  .p-order-choose-item__container {
    height: 320px;
  }
}
.p-order-choose-item__image {
  position: relative;
  height: 205px;
}
.p-order-choose-item__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-order-choose-item__tag {
  z-index: 3;
  position: absolute;
  right: 20px;
  top: -12px;
}
.p-order-choose-item__in {
  display: flex;
  flex-direction: column;
  transition: all 300ms ease;
}
@media screen and (min-width: 1200px) {
  .p-order-choose-item__in {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -115px;
    width: 100%;
    height: 100%;
  }
}
.p-order-choose-item__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 115px;
  padding-left: 20px;
  padding-right: 20px;
}
.p-order-choose-item__title {
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}
.p-order-choose-item__price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-order-choose-item__price {
  color: #fff;
}
.p-order-choose-item__price strong {
  font-size: 24px;
}
.p-order-choose-item__rating {
  display: flex;
  align-items: center;
  column-gap: 4px;
  padding-left: 8px;
  padding-right: 8px;
  height: 24px;
  background-color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}
.p-order-choose-item__rating .icon {
  width: 16px;
  color: #FFCE21;
}
.p-order-choose-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 20px;
  flex: 1;
  padding: 20px;
  background-color: #f5f5f5;
}
.p-order-choose-item__text {
  line-height: 1.3;
  font-size: 12px;
}

.p-order-choose-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media screen and (min-width: 1200px) {
  .p-order-choose-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-order-choose-actions__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-order-choose-actions__item {
    column-gap: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-order-choose-actions__item {
    column-gap: 20px;
  }
}
.p-order-choose-actions__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebebeb;
}
@media screen and (max-width: 767px) {
  .p-order-choose-actions__image {
    width: 88px;
    height: 88px;
    border-radius: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-order-choose-actions__image {
    width: 108px;
    height: 108px;
    border-radius: 16px;
  }
}
.p-order-choose-actions__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
  flex: 1;
  min-width: 1px;
}
.p-order-choose-actions__title {
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-order-choose-actions__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .p-order-choose-actions__title {
    font-size: 20px;
  }
}
.p-order-choose-actions__text {
  line-height: 1.2;
  font-size: 12px;
}
.p-order-choose-actions__phone-online {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.p-order-choose-actions__phone {
  text-decoration: none;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-order-choose-actions__phone {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .p-order-choose-actions__phone {
    font-size: 20px;
  }
}
.p-order-choose-actions__phone:hover {
  text-decoration: underline;
}
.p-order-choose-actions__online {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 12px;
}
.p-order-choose-actions__online:before {
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background-color: #fb4c45;
}
.p-order-choose-actions__online--active:before {
  background-color: #99bd04;
}

/**
 * Swiper 10.3.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 21, 2023
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
/*# sourceMappingURL=assets/styles/main.css.map */

/** ********************************** **/

/* Language Switcher */
.language-switcher {
  position: relative;
  display: inline-block;
}

/* Hide mobile version on desktop */
.language-switcher--mobile {
  display: none;
}

/* Show mobile version only on mobile devices */
@media (max-width: 768px) {
  .language-switcher:not(.language-switcher--mobile) {
    display: none !important;
  }

  .language-switcher--mobile {
    display: inline-block;
  }
}

.language-switcher__current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding:  12px 12px;
  border: 1px solid white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 14px;
  font-weight: 500;
}


.language-switcher__flag {
  display: flex;
  align-items: center;
}

.language-switcher__flag img {
  border-radius: 2px;
  object-fit: cover;
}

.language-switcher__code {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.language-switcher__arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.language-switcher.active .language-switcher__arrow {
  transform: rotate(180deg);
}

.language-switcher__dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 120px;
}

.language-switcher.active .language-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.language-switcher__option:hover {
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
}

.language-switcher__option--active {
  background-color: #f0f8ff;
  color: var(--primary-color-bg, #4CAF50);
}

.language-switcher__option--active:hover {
  background-color: #e6f3ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .language-switcher__current {
    padding: 12px 10px;
    font-size: 13px;
  }

  .language-switcher__flag img {
    width: 18px;
    height: 13px;
  }
}