@charset "UTF-8";
@import "../fonts/roboto/stylesheet.css";
@import "./variables.css";
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[data-base-animation-role=image-fade],
[data-base-animation-role=fade-up] {
  opacity: 0;
}

.text-underline {
  text-decoration: underline;
}

.color-text-brand-primary-600 {
  color: var(--color-text-brand-primary-600);
}

.color-text-primary {
  color: var(--color-text-primary);
}

.color-text-secondary {
  color: var(--color-text-secondary);
}

.color-alpha-white-50 {
  color: var(--color-alpha-white-50);
}

html {
  scrollbar-color: var(--color-bg-brand-primary) var(--color-bg-tertiary);
  scrollbar-width: thin;
  scroll-behavior: smooth;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  color: var(--color-text-secondary);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  background-color: var(--color-bg-primary);
  min-height: 100vh;
}

body.js--scrolled {
  overflow: hidden;
}

.main {
  position: relative;
}

.container {
  width: 100%;
  max-width: 84rem;
  padding: 0 1rem;
  margin: 0 auto;
}

.container.container--position-relative {
  position: relative;
}

.routes-panel__wrapper {
  margin-top: -7.875rem;
  overflow: hidden;
}

.routes-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1rem, 0.648rem + 1.5vw, 2rem);
  background-color: var(--color-bg-tertiary);
  border-radius: 1.5rem;
  box-shadow: 0 5px 5px -3px rgba(10, 13, 18, 0.0156862745), 0 32px 64px -12px rgba(10, 13, 18, 0.0784313725);
}

.routes-panel-tab__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.routes-panel-tab__header {
  border-bottom: 1px solid var(--color-border-primary);
  display: flex;
  gap: 1rem;
}

.routes-panel-tab {
  padding-top: 0.1875rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-bottom: 0.8125rem;
  color: var(--color-text-placeholder);
  border-bottom: 2px solid transparent;
  transition: 0.3s cubic-bezier(0.32, 0, 0.29, 0.99);
  cursor: pointer;
}
.routes-panel-tab:hover {
  color: var(--color-bg-brand-primary);
  border-bottom: 2px solid var(--color-bg-brand-primary);
}
.routes-panel-tab.js--active {
  color: var(--color-bg-brand-primary);
  border-bottom: 2px solid var(--color-bg-brand-primary);
}

.routes-panel-tab__list-item {
  display: none;
}
.routes-panel-tab__list-item.js--active {
  display: block;
}

.journey-planner-form {
  width: 100%;
}

.journey-planner-form__inner {
  display: flex;
  align-items: end;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .journey-planner-form__inner {
    flex-direction: column;
  }
}

.journey-planner-form__search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 61rem;
}
@media (max-width: 991px) {
  .journey-planner-form__search-box {
    flex-direction: column;
    gap: 1rem;
  }
}

.journey-planner-form__search-point {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  width: 100%;
  max-width: 42.1875rem;
  position: relative;
}
.journey-planner-form__search-point .form-input_box {
  width: 100%;
}
@media (max-width: 991px) {
  .journey-planner-form__search-point {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .journey-planner-form__search-point {
    flex-direction: column;
    gap: 1rem;
    padding-right: 3.75rem;
  }
}

.journey-planner-form__search-poin_button-revers {
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0;
  color: var(--color-fg-tertiary);
  margin-bottom: 0.8125rem;
  background-color: transparent;
}
@media (max-width: 767px) {
  .journey-planner-form__search-poin_button-revers {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-fg-primary);
    padding: 0.9375rem;
    border-radius: 9999px;
    background: var(--color-bg-primary);
  }
  .journey-planner-form__search-poin_button-revers svg {
    transform: rotate(90deg);
  }
}

.journey-planner-form__search-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 18.5rem;
}
.journey-planner-form__search-date .form-input_box {
  width: 50%;
}
.journey-planner-form__search-date .form-input_box input {
  font-family: var(--font-family);
}
@media (max-width: 991px) {
  .journey-planner-form__search-date {
    max-width: 100%;
  }
}

.journey-planner-form__search-button-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .journey-planner-form__search-button-wrapper {
    width: 100%;
    max-width: 100%;
    flex-direction: row-reverse;
  }
  .journey-planner-form__search-button-wrapper .button.button--primary {
    width: 100%;
  }
}

.school-routes-form {
  width: 100%;
}

.school-routes-form__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.routes-form__radio-grop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 66.8125rem;
}

.school-routes-form__radio-button_wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}
.school-routes-form__radio-button_wrapper .button.button--primary {
  min-width: -moz-max-content;
  min-width: max-content;
}
@media (max-width: 991px) {
  .school-routes-form__radio-button_wrapper {
    flex-direction: column;
  }
  .school-routes-form__radio-button_wrapper .button.button--primary {
    min-width: 100%;
  }
}

.city-routes-form {
  width: 100%;
}

.city-routes-form__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.city-routes-form__search-wrapper {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 67.3125rem;
}
@media (max-width: 991px) {
  .city-routes-form__search-wrapper {
    flex-direction: column;
  }
}

.city-routes-form__search-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.city-routes-form__radio-grop {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.radio-label {
  cursor: pointer;
}
.radio-label input {
  display: none;
}
.radio-label .radio-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--color-border-primary);
  border-radius: 0.375rem;
  background: var(--color-bg-primary);
  color: var(--color-text-secondary);
  transition: 0.3s cubic-bezier(0.32, 0, 0.29, 0.99);
}
.radio-label .radio-custom__current {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border-primary);
  min-width: 1.875rem;
  background-color: var(--color-bg-primary);
  color: var(--color-text-secondary);
}
.radio-label input:checked + .radio-custom {
  background-color: var(--color-bg-brand-primary);
  border-color: var(--color-border-primary);
  color: var(--color-text-primary-on-brand);
}
.radio-label input:checked + .radio-custom .radio-custom__current {
  border-color: transparent;
}

.news-ticker__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--color-border-primary);
  border-radius: 0.5rem;
  height: 2.25rem;
  position: relative;
  overflow: hidden;
}

.news-ticker__track {
  display: flex;
  gap: 1.625rem;
  animation: ticker-scroll 30s linear infinite;
}
.news-ticker__track.reverse {
  animation: ticker-scroll-reverse 10s linear infinite;
}
.news-ticker__track.fast {
  animation-duration: 10s;
}
.news-ticker__track:hover, .news-ticker__track.paused {
  animation-play-state: paused;
}

.news-ticker__track {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.news-ticker__button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  background-color: var(--color-bg-brand-primary);
  color: var(--color-text-primary-on-brand);
  border-radius: 0.5rem 0 0 0.5rem;
  padding: 2px 12px;
}

.news-ticker-button--prev,
.news-ticker-button--next {
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.news-ticker__buttons-controls_wrapper {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  border-left: 1px solid var(--color-border-primary);
  background-color: var(--color-bg-tertiary);
}

.news-ticker__buttons-control {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border: none;
  background: transparent;
  height: 100%;
  width: 50%;
  transition: 0.3s cubic-bezier(0.32, 0, 0.29, 0.99);
}
.news-ticker__buttons-control:hover {
  background-color: var(--color-bg-primary_hover);
}

.news-ticker__list {
  display: flex;
  align-items: center;
  gap: 1.625rem;
}

.news-ticker__list-item_link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
}
.news-ticker__list-item_link:hover {
  text-decoration: underline;
}

.news-ticker__list-item_icon {
  width: 1.25rem;
  height: 1.25rem;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* -50% потому что у нас два списка */
}
@keyframes ticker-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.section-hero.section-hero--main-page {
  padding-top: clamp(6rem, 5.296rem + 3vw, 8rem);
  padding-bottom: 10.5rem;
}
.section-hero.section-hero--bg-secondary {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-on-brand);
}
.section-hero.section-hero--overflow-hidden {
  overflow: hidden;
}

.section-hero-bus-bg {
  position: absolute;
  top: calc(-1 * clamp(12.688rem, 8.836rem + 16.43vw, 23.625rem));
  right: calc(-1 * clamp(13.063rem, 6.989rem + 25.92vw, 30.313rem));
  width: clamp(22.938rem, 7.423rem + 66.2vw, 67rem);
  height: clamp(10.563rem, 3.718rem + 29.2vw, 30rem);
}

.hero__inner-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.324rem + 0.75vw, 1rem);
}

.section {
  padding: clamp(5rem, 4.648rem + 1.5vw, 6rem) 0;
}
.section.section--pading-top-none {
  padding-top: 0;
}
.section.section--pading-bottom-none {
  padding-bottom: 0;
}
.section.section--none-padding {
  padding: 0;
}

.section--overflow-hidden {
  overflow: hidden;
}

.section.section--bg-secondary {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-on-brand);
}

.section.section--bg-tertiary {
  background-color: var(--color-bg-tertiary);
}

.section__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.648rem + 1.5vw, 3rem);
}

.section__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section__text-wrapper {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section__button-wrraper {
  margin-top: clamp(2rem, 1.648rem + 1.5vw, 3rem);
  display: flex;
  gap: 0.5rem;
}
.section__button-wrraper--center {
  justify-content: center;
}

.image-cover {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.image-contain {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}

.subheading {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--transparent);
  border-radius: 9999px;
  margin-bottom: 1rem;
  display: inline-block;
}
.subheading.subheading--secondary {
  color: var(--color-text-placeholder);
  border-color: var(--color-border-primary);
}
.subheading.subheading--light {
  color: var(--color-text-primary-on-brand);
  border-color: var(--color-border-primary);
}

.text-block {
  display: block;
}

.heading {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 125%;
  letter-spacing: -0.02em;
}
.heading.heading--italic {
  font-style: italic;
}

.heading.heading--2xl {
  font-size: clamp(2.5rem, 1.796rem + 3vw, 4.5rem);
  line-height: 90%;
}
.heading.heading--2xl.heading--2xl-medium {
  line-height: 110%;
  font-weight: 500;
}
.heading.heading--2xl.heading--2xl-semibold {
  line-height: 125%;
  font-weight: 600;
}
.heading.heading--2xl.heading--2xl-bold {
  line-height: 125%;
  font-weight: 700;
}

.heading.heading--xl {
  font-size: 3.75rem;
  line-height: 120%;
}
.heading.heading--xl.heading--xl-medium {
  line-height: 110%;
  font-weight: 500;
}
.heading.heading--xl.heading--xl-semibold {
  line-height: 110%;
  font-weight: 600;
}
.heading.heading--xl.heading--xl-bold {
  line-height: 120%;
  font-weight: 700;
}

.heading.heading--lg {
  font-weight: 400;
  font-size: clamp(1.75rem, 1.31rem + 1.88vw, 3rem);
  line-height: 125%;
}
.heading.heading--lg.heading--lg--medium {
  line-height: 120%;
  font-weight: 500;
}
.heading.heading--lg.heading--lg--semibold {
  line-height: 125%;
  font-weight: 600;
}
.heading.heading--lg.heading--lg--bold {
  line-height: 125%;
  font-weight: 700;
}

.heading.heading--md {
  font-weight: 400;
  font-size: clamp(1.25rem, 1.03rem + 0.94vw, 1.875rem);
  line-height: 122%;
}
.heading.heading--md.heading--md--medium {
  font-weight: 500;
}
.heading.heading--md.heading--md--semibold {
  font-weight: 600;
}
.heading.heading--md.heading--md--bold {
  font-weight: 700;
}

.heading.heading--sm {
  font-weight: 400;
  font-size: clamp(1.25rem, 1.098rem + 0.65vw, 1.875rem);
  line-height: 127%;
}
.heading.heading--sm.heading--sm--medium {
  font-weight: 500;
}
.heading.heading--sm.heading--sm--semibold {
  font-weight: 600;
}
.heading.heading--sm.heading--sm--bold {
  font-weight: 700;
}

.heading.heading--xs {
  font-weight: 400;
  font-size: clamp(1.125rem, 0.993rem + 0.56vw, 1.5rem);
  line-height: 127%;
}
.heading.heading--xs.heading--xs--medium {
  font-weight: 500;
}
.heading.heading--xs.heading--xs--semibold {
  font-weight: 600;
}
.heading.heading--xs.heading--xs--bold {
  font-weight: 700;
}

.section__two-columns_content--motion-bus-card {
  max-width: 32rem;
  width: 100%;
}

.paragraph.paragraph--italic {
  font-style: italic;
}
.paragraph.paragraph--underlined {
  text-decoration: underline;
}

.paragraph--xl {
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  font-weight: 400;
  line-height: 127%;
}
.paragraph--xl.paragraph--xl-medium {
  font-weight: 500;
  line-height: 150%;
}
.paragraph--xl.paragraph--xl-semibold {
  font-weight: 600;
  line-height: 120%;
}
.paragraph--xl.paragraph--xl-bold {
  font-weight: 700;
  line-height: 150%;
}

.paragraph--lg {
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  font-weight: 400;
  line-height: 156%;
}
.paragraph--lg.paragraph--lg-medium {
  font-weight: 500;
}
.paragraph--lg.paragraph--lg-semibold {
  font-weight: 600;
}
.paragraph--lg.paragraph--lg-bold {
  font-weight: 700;
}

.paragraph--md {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  font-weight: 400;
  line-height: 120%;
}
.paragraph--md.paragraph--md-medium {
  font-weight: 500;
}
.paragraph--md.paragraph--md-semibold {
  font-weight: 600;
  line-height: 125%;
}
.paragraph--md.paragraph--md-bold {
  font-weight: 700;
  line-height: 150%;
}

.paragraph--sm {
  font-size: clamp(0.75rem, 0.706rem + 0.19vw, 0.875rem);
  font-weight: 400;
  line-height: 143%;
}
.paragraph--sm.paragraph--sm-medium {
  font-weight: 500;
  line-height: 120%;
}
.paragraph--sm.paragraph--sm-semibold {
  font-weight: 600;
}
.paragraph--sm.paragraph--sm-bold {
  font-weight: 700;
}

.paragraph--xs {
  font-size: clamp(0.75rem, 0.706rem + 0.19vw, 0.875rem);
  font-weight: 400;
  line-height: 150%;
}
.paragraph--xs.paragraph--xs-medium {
  font-weight: 500;
}
.paragraph--xs.paragraph--xs-semibold {
  font-weight: 600;
}
.paragraph--xs.paragraph--xs-bold {
  font-weight: 700;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  color: var(--transparent);
  background-color: var(--transparent);
  cursor: pointer;
  transition: 0.3s ease-in-out all;
  border: 1px solid var(--transparent);
  text-decoration: none;
}
.button svg {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
}
@media (max-width: 767px) {
  .button.button--hiden-mobile-l {
    display: none;
  }
}
.button.button--primary {
  color: var(--color-text-primary-on-brand);
  background-color: var(--color-bg-brand-primary);
  border-color: var(--color-bg-brand-primary);
}
.button.button--primary:hover {
  background-color: #c95705;
  border-color: #c95705;
}
.button.button--primary:focus {
  background-color: #ee7203;
  border-color: #ee7203;
}
.button.button--primary[disabled] {
  color: var(--color-fg-disabled);
  background-color: var(--color-bg-disabled);
  border: 1px solid #e9eaeb;
  pointer-events: none;
}
.button.button--secondary {
  color: var(--color-text-secondary);
  background-color: var(--color-bg-primary);
  border-color: var(--color-border-secondary);
}
.button.button--secondary:hover {
  background-color: #fafafa;
  border-color: #d5d7da;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.0196078431), inset 0 -2px 0 0 rgba(10, 13, 18, 0.0196078431);
}
.button.button--secondary:focus-visible {
  outline: 1px solid #ff900d;
  outline-offset: 2px;
  color: #414651;
}
.button.button--secondary[disabled] {
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.0196078431);
  color: var(--color-fg-disabled);
  border: 1px solid #e9eaeb;
  pointer-events: none;
}
.button.button--secondary-light {
  color: var(--color-text-primary-on-brand);
  border-color: var(--color-border-secondary);
}
.button.button--secondary-light:hover {
  background-color: #fafafa;
  border-color: #d5d7da;
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.0196078431), inset 0 -2px 0 0 rgba(10, 13, 18, 0.0196078431);
  color: #00305f;
}
.button.button--secondary-light:focus-visible {
  outline: 1px solid #ff900d;
  outline-offset: 2px;
  color: #414651;
}
.button.button--secondary-light[disabled] {
  box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.0196078431);
  color: var(--color-fg-disabled);
  border: 1px solid #e9eaeb;
  pointer-events: none;
}
.button.button--secondary-transparent {
  background-color: transparent;
}

.button-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: --color-text-primary;
  border-radius: 0.25rem;
  transition: all 0.3s ease-out;
}
.button-link svg {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
}
.button-link:focus-visible {
  outline: 1px solid #ff900d;
  outline-offset: 2px;
  color: --color-text-primary;
}
.button-link[disabled] {
  color: var(--color-text-disabled);
  pointer-events: none;
}

.buton-circle {
  border: 1px solid var(--color-border-primary);
  border-radius: 9999px;
  padding: 16px;
  width: 3.25rem;
  height: 3.25rem;
  min-width: 3.25rem;
  background: var(--color-bg-primary);
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.buton-circle svg {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
}
.buton-circle:hover {
  border-color: var(--color-border-secondary);
  color: var(--color-fg-brand-primary);
  background-color: #fafafa;
}
.buton-circle .buton-circle__icon {
  width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
}
.buton-circle[disabled] {
  color: var(--color-text-disabled);
  pointer-events: none;
}

.blog-card {
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border-secondary);
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.blog-card:hover {
  box-shadow: 0 5px 5px -3px rgba(10, 13, 18, 0.0156862745), 0 32px 64px -12px rgba(10, 13, 18, 0.0784313725);
}
.blog-card:hover .blog-card__heading-wrapper {
  color: var(--color-text-brand-primary-600);
  transition: all 0.3s ease-in-out;
}
.blog-card:hover .blog-card__image-wrapper img {
  transform: scale(1.1);
}
.blog-card.blog-card--hover-none-shadow:hover {
  box-shadow: none;
}
.blog-card__image-wrapper {
  height: 15rem;
  overflow: hidden;
}
.blog-card__image-wrapper img {
  transition: transform 0.4s cubic-bezier(0.32, 0, 0.29, 0.99);
}
.blog-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
}
.blog-card__content-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blog-card__heading-text_wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blog-card__heading-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-text-primary);
}
.blog-card__tetx-wrapper {
  height: clamp(2.375rem, 1.957rem + 1.78vw, 3.563rem);
}
.blog-card__tetx-wrapper .paragarph {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-card__tetx-wrapper {
    -webkit-line-clamp: 2;
  }
}
.blog-card__heading-icon {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  margin-top: 0.25rem;
}
.blog-card__author-info {
  display: flex;
  gap: 0.5rem;
}
.blog-card__author-info_photo-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 9999px;
  border: 0.75px solid rgba(0, 0, 0, 0.08);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.5rem, 1.06rem + 1.88vw, 2.75rem);
  border-radius: 1.5rem;
  box-shadow: 0 5px 5px -3px rgba(10, 13, 18, 0.0156862745), 0 32px 64px -12px rgba(10, 13, 18, 0.0784313725);
}
.cta-banner__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 48rem;
}
.cta-banner__buttons-wrapper {
  display: flex;
  gap: 0.5rem;
}
.cta-banner--border {
  border: 1px solid var(--color-border-secondary);
}
.cta-banner.cta-banner--light {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}
.cta-banner.cta-banner--dark {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-on-brand);
}
@media (max-width: 991px) {
  .cta-banner {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .cta-banner {
    flex-direction: column;
  }
  .cta-banner__content-wrapper {
    max-width: 100%;
    width: 100%;
  }
  .cta-banner__buttons-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner__buttons-wrapper.cta-banner__buttons-wrapper--none-column {
    flex-direction: row;
    justify-content: center;
  }
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type=time]::-webkit-calendar-picker-indicator,
input[type=datetime-local]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type=time]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Firefox */
input[type=date],
input[type=time],
input[type=datetime-local] {
  -moz-appearance: textfield;
}

/*IE/Edge*/
input[type=date]::-ms-clear,
input[type=time]::-ms-clear {
  display: none;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 1.25rem;
  width: 1.25rem;
  background-image: url("../images/svg/x.svg");
  background-size: 1.25rem 1.25rem;
  cursor: pointer;
}

.form-input_box {
  display: flex;
  flex-direction: column;
}

.label__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0.375rem;
}
.label__wrapper.label__wrapper--lg {
  margin-bottom: 0.5rem;
}
.label__wrapper .label {
  color: var(--color-text-secondary);
}
.label__wrapper .label .label__asterisk {
  color: var(--color-text-brand-primary-600);
}

.form-input__hit-text {
  margin-top: 0.375rem;
  color: var(--color-text-placeholder);
}

.input__wrapper {
  position: relative;
}
.input__wrapper.input-padding__right input {
  padding-right: 2.375rem;
}
.input__wrapper.input-padding__left input {
  padding-left: 2.5rem;
}
.input__wrapper .input__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  height: -moz-max-content;
  height: max-content;
}
.input__wrapper .input__icon svg {
  width: 1rem;
  height: 1rem;
}
.input__wrapper .input__icon.input__icon--left {
  left: 0.875rem;
}
.input__wrapper .input__icon.input__icon--right {
  right: 0.875rem;
}

.input,
.textarea {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 120%;
  color: var(--color-text-gold);
  padding: 1rem 0.875rem;
  border: 1px solid var(--color-border-primary);
  border-radius: 0.5rem;
  width: 100%;
  background: var(--color-bg-primary);
}
.input[disabled],
.textarea[disabled] {
  background-color: var(--color-bg-disabled);
  pointer-events: none;
  color: var(--color-text-disabled);
}

.input:focus,
.textarea:focus {
  border-color: var(--color-border-brand);
}

.input::-moz-placeholder, .textarea::-moz-placeholder {
  color: var(--color-text-placeholder);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--color-text-placeholder);
}

.input[disabled]::-moz-placeholder, .textarea[disabled]::-moz-placeholder {
  color: var(--color-text-disabled);
}

.input[disabled]::placeholder,
.textarea[disabled]::placeholder {
  color: var(--color-text-disabled);
}

.textarea {
  grid-column-start: 1;
  grid-column-end: 4;
  height: 2.25rem;
  resize: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.textarea::-webkit-scrollbar {
  display: none;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.checkbox input {
  display: none;
}
.checkbox .checked {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #cdd2c9;
  border-radius: 0.25rem;
  transition: 0.3s all;
  overflow: hidden;
}
.checkbox .checked svg {
  color: var(--color-text-dark);
}
@media (max-width: 1440px) {
  .checkbox .checked svg {
    width: 0.6875rem;
    height: 0.6875rem;
  }
}
@media (max-width: 1440px) {
  .checkbox .checked {
    width: 1.125rem;
    min-width: 1.125rem;
    height: 1.125rem;
  }
}
.checkbox .checked-active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s all;
}
.checkbox input:checked + .checked {
  background-color: var(--color-white);
}
.checkbox input:checked + .checked .checked-active {
  opacity: 1;
}
.checkbox__text {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-text-dark);
}
@media (max-width: 1440px) {
  .checkbox__text {
    font-size: 1rem;
  }
}
.checkbox__text span {
  font-weight: 600;
}

.breadcrumbs {
  padding-top: 9.375rem;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding-top: 7.5rem;
  }
}
.breadcrumbs .breadcrumbs__inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 130%;
}
.breadcrumbs__link {
  font-weight: 300;
  font-size: 1.25rem;
  color: #b7bdb7;
  transition: 0.3s all;
}
@media (max-width: 1440px) {
  .breadcrumbs__link {
    font-size: 1rem;
  }
}
.breadcrumbs__link:hover {
  color: var(--color-main);
}
.breadcrumbs__text {
  font-weight: 400;
  font-size: 1.25rem;
  color: #b7bdb7;
}
@media (max-width: 1440px) {
  .breadcrumbs__text {
    font-size: 1rem;
  }
}

.tooltip {
  position: relative;
}
.tooltip__inner {
  position: absolute;
  bottom: 100%;
  padding-bottom: 0.75rem;
  max-width: 31.0625rem;
  width: -moz-max-content;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 480px) {
  .tooltip__inner {
    max-width: 20rem;
  }
}
.tooltip-description__inner {
  border-radius: 0.375rem;
  box-shadow: 0 9px 26px 6px rgba(0, 0, 0, 0.1);
  background: #fffdfa;
  padding: 1.375rem;
  max-width: 100%;
}
@media (max-width: 480px) {
  .tooltip-description__inner {
    padding: 1rem;
  }
}
.tooltip-description__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .tooltip-description__content {
    gap: 0.5rem;
  }
}
.tooltip-description__text {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color-main);
}
.tooltip-description__text span {
  font-weight: 400;
  font-style: italic;
}
@media (max-width: 480px) {
  .tooltip-description__text {
    font-size: 0.875rem;
  }
}
.tooltip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tooltip__icon svg circle {
  transition: 0.3s all;
}

.tooltip:hover .tooltip__inner {
  opacity: 1;
  pointer-events: visible;
}
.tooltip:hover .tooltip__icon svg circle {
  fill: var(--color-main);
}

.social__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.125rem;
}
@media (max-width: 767px) {
  .social__list {
    margin-bottom: 1.625rem;
  }
}

.counter {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.counter-result {
  font-size: 1.625rem;
  color: var(--color-text-dark);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .counter-result {
    font-size: 1.375rem;
  }
}
.counter__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  height: 3.125rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(112, 131, 106, 0.3);
  border-radius: 2.5rem;
}
@media (max-width: 767px) {
  .counter__navigation {
    padding: 0.25rem 1rem;
  }
}
.counter__input-wrapper {
  display: flex;
  align-items: center;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.counter__input {
  width: auto;
  min-width: 1ch;
  max-width: 3ch;
  text-align: center;
  border: none;
  background: transparent;
  font: inherit;
  -moz-appearance: textfield;
}
.counter__input::-webkit-outer-spin-button, .counter__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.counter__button {
  background-color: transparent;
  border: none;
  font-size: 1.125rem;
  text-transform: lowercase;
  color: #000;
  cursor: pointer;
  transition: 0.3s all;
}
.counter__button:hover {
  opacity: 0.7;
}

.metric-list {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 1.5rem;
  padding: clamp(2rem, 1.736rem + 1.13vw, 2.75rem) clamp(1.5rem, 1.06rem + 1.88vw, 2.75rem);
  box-shadow: 0 5px 5px -3px rgba(10, 13, 18, 0.0156862745), 0 32px 64px -12px rgba(10, 13, 18, 0.0784313725);
  background: var(--color-bg-secondary);
}
@media (max-width: 767px) {
  .metric-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 20px;
  }
}

.metric-list__item {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--color-border-brand);
  padding-left: 1.375rem;
  max-width: 18.75rem;
  width: 100%;
}
@media (max-width: 767px) {
  .metric-list__item {
    border-top: 2px solid var(--color-border-brand);
    border-left: none;
    padding-left: 0;
    padding-top: 1rem;
  }
}

.section__two-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2.25rem, 1.634rem + 2.63vw, 4rem);
}
@media (max-width: 991px) {
  .section__two-columns {
    flex-direction: column;
  }
}

.section__two-columns_image-wrapper {
  border-radius: 1.25rem;
  width: 100%;
  max-width: clamp(21.438rem, 15.254rem + 26.38vw, 39rem);
  height: clamp(19.5rem, 13.338rem + 26.29vw, 37rem);
  overflow: hidden;
}
@media (max-width: 991px) {
  .section__two-columns_image-wrapper {
    max-width: 100%;
  }
}

.section__two-columns_content-wrapper {
  width: 100%;
  max-width: clamp(21.438rem, 15.254rem + 26.38vw, 39rem);
}
@media (max-width: 991px) {
  .section__two-columns_content-wrapper {
    max-width: 100%;
  }
}

.section__two-columns_content-buttons {
  margin-top: clamp(2rem, 1.648rem + 1.5vw, 3rem);
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
}

.section__announcements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .section__announcements-wrapper {
    display: flex;
    overflow: auto;
    padding-bottom: 1.375rem;
    margin-right: -1rem;
    margin-left: -1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    /* WebKit */
    /* Firefox */
    scrollbar-color: transparent transparent;
    scrollbar-width: thin;
  }
  .section__announcements-wrapper::-webkit-scrollbar {
    height: 0;
    background: transparent;
  }
  .section__announcements-wrapper::-webkit-scrollbar-thumb {
    background: transparent;
  }
  .section__announcements-wrapper .blog-card {
    width: 20.9375rem;
    min-width: 20.9375rem;
    max-width: 20.9375rem;
  }
}

.section__inner-pame-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .section__inner-pame-app {
    gap: 4.25rem;
  }
}

.section__pame-app_bg {
  position: absolute;
}
.section__pame-app_bg img {
  width: 100%;
  height: 100%;
}
.section__pame-app_bg.section__pame-app_bg-yellow {
  width: clamp(22.938rem, 14.245rem + 37.09vw, 47.625rem);
  height: clamp(10.625rem, 6.664rem + 16.9vw, 21.875rem);
  right: calc(-1 * clamp(13.25rem, 8.585rem + 19.91vw, 26.5rem));
  top: clamp(-12rem, -8.605rem - 3.29vw, -11.563rem);
}
.section__pame-app_bg.section__pame-app_bg-orange-alive {
  width: clamp(23.125rem, -0.643rem + 101.41vw, 90.625rem);
  height: clamp(13.125rem, 4.058rem + 38.69vw, 38.875rem);
  left: calc(-1 * clamp(16.25rem, -6.087rem + 95.31vw, 79.688rem));
  bottom: 295px;
}
@media (max-width: 767px) {
  .section__pame-app_bg.section__pame-app_bg-orange-alive {
    bottom: 498px;
  }
}
@media (max-width: 479px) {
  .section__pame-app_bg.section__pame-app_bg-orange-alive {
    bottom: 505px;
    width: 390px;
    min-width: 390px;
    height: 170px;
    left: -266px;
  }
}
.section__pame-app_bg.section__pame-app_bg-blue {
  width: clamp(8.063rem, -29.129rem + 158.69vw, 113.688rem);
  min-width: clamp(8.063rem, -29.129rem + 158.69vw, 113.688rem);
  height: clamp(10.625rem, -2.513rem + 56.06vw, 47.938rem);
  bottom: -352px;
  right: calc(-1 * clamp(6.875rem, -28.138rem + 149.39vw, 106.313rem));
}
@media (max-width: 767px) {
  .section__pame-app_bg.section__pame-app_bg-blue {
    width: 760px;
    min-width: 780px;
    height: 420px;
    bottom: -170px;
    right: -708px;
  }
}

.section__header-pame-app {
  width: 100%;
  max-width: 29rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.section__pame-app_image {
  width: 6.8125rem;
  height: 1.9375rem;
  margin-bottom: clamp(0.063rem, -0.708rem + 3.29vw, 2.25rem);
}

.section__header-pame-app_button-wrapper {
  padding-top: 1rem;
}

.section__pame-app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section__pame-app_mockup-wrapper {
  max-width: clamp(16.25rem, 15.062rem + 5.07vw, 19.625rem);
  width: 100%;
  height: clamp(33rem, 30.535rem + 10.52vw, 40rem);
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
  margin-bottom: calc(-1 * clamp(5.706rem, 4.954rem + 3.21vw, 7.844rem));
}

.section__pame-app_mockup-image {
  width: 100%;
  height: 100%;
}

.section__pame-app_mockup-video_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  padding: 0.75rem 0.8rem;
}

.section__pame-app_mockup-video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.2rem;
  background-color: #1e1e20;
}

.section__pame-app_button-app {
  height: clamp(3.125rem, 2.905rem + 0.94vw, 3.75rem);
}

.section__pame-app_button-qr {
  width: clamp(3.125rem, 2.905rem + 0.94vw, 3.75rem);
  height: clamp(3.125rem, 2.905rem + 0.94vw, 3.75rem);
  min-width: clamp(3.125rem, 2.905rem + 0.94vw, 3.75rem);
}
@media (max-width: 991px) {
  .section__pame-app_button-qr {
    display: none;
  }
}

.section__pame-app_cta-banner {
  width: 100%;
}
@media (max-width: 991px) {
  .section__pame-app_cta-banner {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .section__insights-slider_wrapper {
    margin-right: -1rem;
  }
}

.section__insights-slider_list {
  display: flex;
}
.section__insights-slider_list .section__insights-slider_list-item {
  display: flex;
  height: auto;
}

.section__insights-slider_buttons {
  margin-top: clamp(2rem, 1.648rem + 1.5vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .section__insights-slider_buttons {
    display: none;
  }
}

.footer {
  background: var(--color-bg-secondary);
  padding-top: clamp(5rem, 4.78rem + 0.94vw, 5.625rem);
  padding-bottom: 2rem;
  color: var(--color-text-primary-on-brand);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(5rem, 4.78rem + 0.94vw, 5.625rem);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 991px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__top-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 52rem;
}

.footer__newsletter-form-wrapper {
  width: 100%;
  max-width: 30rem;
}
@media (max-width: 991px) {
  .footer__newsletter-form-wrapper {
    max-width: 100%;
  }
}

.footer__content-info_logo-text {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.986rem + 1.13vw, 2rem);
}

.footer__logo {
  width: 10.3125rem;
  height: 3rem;
  min-width: 10.3125rem;
  transition: opacity 0.3s cubic-bezier(0.32, 0, 0.29, 0.99);
}
.footer__logo:hover {
  opacity: 0.6;
}

.footer__certification_wrapper {
  width: 4.6875rem;
  min-width: 4.6875rem;
  height: 4.6875rem;
  margin-top: clamp(1.25rem, 0.942rem + 1.31vw, 2.125rem);
}

.footer__newsletter-form-inner {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: end;
}
.footer__newsletter-form-inner .form-input__hit-text {
  color: var(--color-text-primary-on-brand);
}
.footer__newsletter-form-inner .form-input__hit-text a {
  transition: color 0.3s cubic-bezier(0.32, 0, 0.29, 0.99);
  font-weight: 400;
  line-height: 143%;
}
.footer__newsletter-form-inner .form-input__hit-text a:hover {
  color: var(--color-alpha-white-40);
}
@media (max-width: 991px) {
  .footer__newsletter-form-inner {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }
}

.footer__body {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.384rem + 2.63vw, 3.75rem);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.648rem + 1.5vw, 3rem);
  padding-top: 3.75rem;
  border-top: 1px solid var(--color-alpha-white-30);
}

.footer__content-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 2rem;
}
@media (max-width: 991px) {
  .footer__content-info {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .footer__content-info {
    grid-template-columns: 1fr;
  }
}

.footer__content-info_box-heading {
  color: var(--color-alpha-white-40);
  margin-bottom: 1rem;
}

.footer__list-nav {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__list-nav_item-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-alpha-white-90);
  transition: color 0.3s cubic-bezier(0.32, 0, 0.29, 0.99);
}
.footer__list-nav_item-link:hover {
  color: var(--color-alpha-white-40);
}

.footer__list-nav_item-link_icon-wrapper {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__list-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin-top: 1.25rem;
}

.footer__list-social_item .footer__list-social_item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  color: var(--color-white);
  transition: color 0.3s cubic-bezier(0.32, 0, 0.29, 0.99);
}
.footer__list-social_item .footer__list-social_item-link:hover {
  color: var(--color-alpha-white-40);
}
.footer__list-social_item svg {
  width: 1.5rem;
}

.footer__content-policy_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 2rem;
}
@media (max-width: 991px) {
  .footer__content-policy_wrapper {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}

.footer__content-policy_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__content-policy_list-item_link {
  transition: color 0.3s cubic-bezier(0.32, 0, 0.29, 0.99);
  color: var(--color-alpha-white-40);
}
.footer__content-policy_list-item_link:hover {
  color: var(--color-alpha-white-90);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-alpha-white-30);
  color: var(--color-alpha-white-40);
}
@media (max-width: 991px) {
  .footer__bottom {
    flex-direction: column;
  }
}

.footer__bottom-link {
  transition: color 0.3s cubic-bezier(0.32, 0, 0.29, 0.99);
}
.footer__bottom-link:hover {
  color: var(--color-alpha-white-90);
}

.cosmetology {
  display: flex;
  flex-direction: column;
}
.cosmetology__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2.5rem;
  width: 100%;
}
@media (max-width: 1280px) {
  .cosmetology__list {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.875rem;
  }
}
@media (max-width: 767px) {
  .cosmetology__list {
    display: flex;
    flex-direction: column;
  }
}
.cosmetology__link {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 767px) {
  .cosmetology__link {
    gap: 1rem;
  }
}
.cosmetology__picture {
  position: relative;
  width: 100%;
  height: 39.5rem;
  overflow: hidden;
}
@media (max-width: 1640px) {
  .cosmetology__picture {
    height: 32.25rem;
  }
}
.cosmetology__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s all;
}
.cosmetology__name {
  display: flex;
  align-items: center;
}
.cosmetology__name svg {
  width: 0;
  padding-right: 0.625rem;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .cosmetology__name svg {
    padding-right: 0;
  }
}
.cosmetology__link:hover .cosmetology__img {
  transform: translate(-50%, -50%) scale(1.1);
}
.cosmetology__link:hover svg {
  width: 1.8125rem;
}
.cosmetology .section__footer {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1440px) {
  .offers {
    margin-left: -2rem;
    width: calc(100% + 4rem);
  }
  .offers .section__header {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .offers {
    margin-left: -1rem;
    width: calc(100% + 2rem);
  }
  .offers .section__header {
    padding-left: 1rem;
  }
}
.offers__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 1440px) {
  .offers__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow: auto;
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .offers__list {
    padding: 0 1rem;
  }
}
.offers-item {
  max-width: 100%;
  flex: 0 0 auto;
  height: auto;
}
.offers-item__link {
  display: flex;
  justify-content: space-between;
  border-radius: 0.625rem;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  background-color: var(--color-bg-grey);
  gap: 1rem;
}
@media (max-width: 1440px) {
  .offers-item__link {
    padding: 1rem 0.75rem;
    min-width: 29.25rem;
  }
}
@media (max-width: 767px) {
  .offers-item__link {
    display: flex;
    flex-direction: column;
    gap: 1.375rem;
    min-width: 21.4375rem;
    height: 100%;
  }
}
.offers-item__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 23.25rem;
}
.offers-item__header {
  padding: 0.25rem 1.125rem;
  border-radius: 0.25rem;
  margin-bottom: 2.5rem;
  background: var(--color-bg-green-light);
}
@media (max-width: 1440px) {
  .offers-item__header {
    padding: 0.125rem 0.625rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .offers-item__header {
    margin-bottom: 1.5rem;
  }
}
.offers-item__header.offers-item__header--bg {
  background-color: #cdbc9e;
}
.offers-item__text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 150%;
  color: var(--color-button-text);
}
@media (max-width: 767px) {
  .offers-item__text {
    font-size: 1rem;
  }
}
.offers-item__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media (max-width: 1440px) {
  .offers-item__body {
    gap: 1.125rem;
  }
}
.offers-item__heading {
  font-weight: 400;
  font-size: 2.625rem;
  line-height: 105%;
  color: var(--color-main);
}
@media (max-width: 1440px) {
  .offers-item__heading {
    font-size: 1.875rem;
    line-height: 100%;
  }
}
@media (max-width: 767px) {
  .offers-item__heading {
    font-size: 1.75rem;
  }
}
.offers-item__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.625rem;
}
@media (max-width: 1440px) {
  .offers-item__footer {
    margin-top: 1.125rem;
  }
}
.offers-item__picture {
  position: relative;
  border-radius: 0.375rem;
  height: 20.875rem;
  max-width: 16.875rem;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .offers-item__picture {
    display: flex;
    width: 9rem;
    min-width: 9rem;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .offers-item__picture {
    height: 16.25rem;
    width: 100%;
    min-width: 100%;
  }
}
.offers-item__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1440px) {
  .offers-item__img {
    min-height: 15.625rem;
  }
}
.offers-item__price {
  background-color: var(--color-button-bg-hover);
  padding: 0.1rem 0.625rem;
}
.offers-item__price-text {
  font-weight: 500;
  font-size: 1.875rem;
  color: var(--color-text-light);
  line-height: 120%;
}
@media (max-width: 1440px) {
  .offers-item__price-text {
    font-size: 1.125rem;
  }
}
.offers-item__sale {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: rgba(37, 61, 46, 0.5);
}
@media (max-width: 1440px) {
  .offers-item__sale {
    font-size: 1rem;
  }
}
.offers-item__present {
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-45%, -90%) rotate(-3deg);
  background-color: #8e654b;
  border-radius: 0.25rem;
  padding: 0 0.625rem;
}
@media (max-width: 1720px) {
  .offers-item__present {
    top: calc(100% + 1rem);
    left: auto;
    right: 0;
    transform: translate(0, 0) rotate(-3deg);
  }
}
@media (max-width: 1440px) {
  .offers-item__present {
    top: 100%;
    transform: translate(0, 0) rotate(-3deg);
  }
}
.offers-item__info {
  position: relative;
}
.offers-item__info .paragraph {
  max-width: 18.75rem;
}
.offers-item__present-text {
  font-weight: 600;
  font-size: 1.875rem;
  text-transform: uppercase;
  color: var(--color-text-light);
  line-height: 120%;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .offers-item__present-text {
    font-size: 1.125rem;
  }
}

.shop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 0.65fr 1fr;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 3.125rem;
}
@media (max-width: 1750px) {
  .shop {
    grid-template-columns: 0.75fr 0.75fr 1fr 1fr;
    row-gap: 1.125rem;
  }
}
@media (max-width: 1280px) {
  .shop {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 2.5rem;
  }
  .shop .heading {
    font-size: 1.875rem;
  }
  .shop .button {
    width: 100%;
  }
  .shop .paragraph {
    max-width: 25.375rem;
  }
}
@media (max-width: 991px) {
  .shop {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .shop {
    row-gap: 1.5rem;
  }
}
.shop-card.shop-card--large {
  height: 100%;
  grid-area: 1/1/3/3;
}
@media (max-width: 1750px) {
  .shop-card.shop-card--large {
    display: grid;
    grid-template-rows: 1fr auto;
  }
}
@media (max-width: 991px) {
  .shop-card.shop-card--large {
    order: 2;
  }
}
.shop__info {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 1.25rem;
  grid-area: 1/3/2/5;
}
@media (max-width: 1750px) {
  .shop__info {
    padding-top: 0;
  }
}
.shop__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 47rem;
}
@media (max-width: 1280px) {
  .shop__header {
    gap: 1.25rem;
  }
}
.shop__footer {
  max-width: 26.5625rem;
  width: 100%;
  margin: auto 0 0 auto;
}
@media (max-width: 1750px) {
  .shop__footer {
    margin: 1rem 0 1rem auto;
  }
}
@media (max-width: 1280px) {
  .shop__footer {
    margin: 1.875rem 0 1rem auto;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .shop__footer {
    margin: 1.875rem 0 2rem;
    max-width: 100%;
  }
}
.shop__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 1.25rem;
  grid-area: 2/3/3/5;
}
@media (max-width: 767px) {
  .shop__cards {
    gap: 0.75rem;
  }
}
.shop-card {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1750px) {
  .shop-card {
    margin-bottom: auto;
  }
}
.shop-card__content {
  position: relative;
  overflow: hidden;
}
.shop-card__label {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  padding: 0.25rem 1.125rem;
  border-radius: 0.25rem;
  background-color: #cdbc9e;
  z-index: 2;
}
.shop-card__label.shop-card__label--color {
  background-color: var(--color-bg-green-light);
}
.shop-card__text {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 150%;
  color: var(--color-button-text);
}
.shop-card__picture {
  aspect-ratio: 1/1;
  background-color: var(--color-white);
}
.shop-card__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}
.shop-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.875rem;
}
@media (max-width: 767px) {
  .shop-card__footer {
    margin-top: 1.25rem;
  }
}
.shop-card__subtitle {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 135%;
  color: #b7bdb7;
}
@media (max-width: 1280px) {
  .shop-card__subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .shop-card__subtitle {
    font-size: 0.875rem;
  }
}
.shop-card__title {
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 123%;
  max-width: 100%;
  color: var(--color-main);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 1280px) {
  .shop-card__title {
    font-size: 1.125rem;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 767px) {
  .shop-card__title {
    font-size: 1rem;
  }
}
.shop-card__price {
  font-size: 1.375rem;
  line-height: 123%;
  color: var(--color-text-dark);
}
@media (max-width: 1280px) {
  .shop-card__price {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .shop-card__price {
    font-size: 1.125rem;
  }
}
.shop-card:hover .shop-card__img {
  transform: translate(-50%, -50%) scale(1.1);
}

.reason-banner {
  position: relative;
  height: 39.4375rem;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
  overflow: hidden;
  margin-bottom: 3.125rem;
}
@media (max-width: 1280px) {
  .reason-banner {
    height: 25.5rem;
  }
}
@media (max-width: 767px) {
  .reason-banner {
    height: auto;
    border-radius: 0;
  }
}
.reason-banner__img {
  max-width: 63.625rem;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1280px) {
  .reason-banner__img {
    height: 25.5rem;
  }
}
@media (max-width: 767px) {
  .reason-banner__img {
    height: auto;
  }
}
.reason-banner__inner {
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .reason-banner__inner {
    height: 9.25rem;
    border-radius: 0.625rem;
    overflow: hidden;
  }
}
.reason-banner__box {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 1.75rem;
  padding-left: 1.75rem;
  max-width: 37.9375rem;
  background-color: var(--color-bg);
  border-top-left-radius: 0.375rem;
  position: absolute;
  bottom: -0.1rem;
  right: 0;
}
@media (max-width: 1280px) {
  .reason-banner__box {
    max-width: 25.125rem;
    padding-top: 1.25rem;
    padding-left: 1.25rem;
    border-top-left-radius: 0.25rem;
  }
}
@media (max-width: 767px) {
  .reason-banner__box {
    position: static;
    margin-top: 1.25rem;
    padding: 0;
    gap: 0.675rem;
  }
}
.reason-banner__box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1rem;
  width: 1rem;
  height: 1rem;
  background: radial-gradient(circle at top left, transparent 1rem, var(--color-bg) 1rem);
}
.reason-banner__box:after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 1rem;
  height: 1rem;
  background: radial-gradient(circle at top left, transparent 1rem, var(--color-bg) 1rem);
}
.reason-banner__paragraph {
  font-size: 1.625rem;
  color: var(--color-bg-green-light);
  line-height: 100%;
}
.reason-banner__paragraph span {
  font-weight: 500;
  color: var(--color-main);
}
@media (max-width: 1280px) {
  .reason-banner__paragraph {
    font-size: 1.125rem;
    max-width: 22.5rem;
  }
}
@media (max-width: 767px) {
  .reason-banner__paragraph {
    font-size: 1rem;
  }
}
.reason__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 1280px) {
  .reason__list {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .reason__list {
    gap: 0.75rem;
  }
}
.reason-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.125rem;
  border: 1px solid rgba(112, 131, 106, 0.6);
  border-radius: 0.375rem;
}
@media (max-width: 1280px) {
  .reason-item {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
  }
  .reason-item .paragraph.paragraph--sm {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .reason-item .paragraph.paragraph--sm {
    font-size: 1rem;
  }
}
.reason-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(210deg, #70836a 0%, #475e40 100%);
}
.reason-item__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reason-item__body .heading {
  text-transform: none;
  font-weight: 500;
}
@media (max-width: 767px) {
  .reason-item__body {
    gap: 1rem;
  }
}

.magazine-slider-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  position: relative;
}
@media (max-width: 1280px) {
  .magazine-slider-item {
    gap: 1.5rem;
    grid-template-columns: 1fr 1.7fr;
  }
  .magazine-slider-item .paragraph {
    max-width: 32.875rem;
  }
}
@media (max-width: 767px) {
  .magazine-slider-item {
    display: flex;
    flex-direction: column;
  }
}
.magazine-slider-item__picture {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.magazine-slider-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s all;
}
.magazine-slider-item__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.magazine-slider-item__date {
  font-size: 1.25rem;
  color: #b7bdb7;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .magazine-slider-item__date {
    font-size: 1rem;
  }
}
.magazine-slider-item__heading {
  margin-bottom: 1.5rem;
}
.magazine-slider-item__heading .heading {
  text-transform: none;
  font-weight: 500;
}
@media (max-width: 767px) {
  .magazine-slider-item__heading .heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 1280px) {
  .magazine-slider-item__heading {
    max-width: 30.3125rem;
  }
}
.magazine-slider-item__link {
  font-weight: 400;
  font-size: 1.25rem;
  text-decoration: underline;
  color: #696c6a;
  margin-top: auto;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .magazine-slider-item__link {
    margin-top: 1.5rem;
  }
}
.magazine-slider-item__link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}
@media (max-width: 1280px) {
  .magazine-slider-item__link {
    font-size: 1.125rem;
  }
}
.magazine-slider-item:hover .magazine-slider-item__img {
  transform: scale(1.1);
}
.magazine-slider-item:hover .magazine-slider-item__link {
  color: var(--color-heading-dark);
}
.magazine-slider {
  position: relative;
}
.magazine-slider__pagination {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media (max-width: 1280px) {
  .magazine-slider__pagination {
    margin-top: 3.125rem;
  }
}
.magazine-slider__navigation {
  display: flex;
  align-items: center;
}
.magazine .pagination__brackets {
  margin-left: 1.25rem;
  margin-bottom: 0.35rem;
}
@media (max-width: 480px) {
  .magazine .pagination__brackets {
    display: none;
  }
}
.magazine .pagination__brackets.pagination__brackets--mar {
  margin-left: 0;
  margin-right: 1.25rem;
}
.magazine-slider__button {
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--color-text-dark);
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.magazine-slider__button:hover {
  color: var(--color-main);
}
.magazine-slider__button.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.magazine-slider__pagination-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  bottom: 0;
  margin: 0 0.25rem;
}
@media (max-width: 767px) {
  .magazine-slider__pagination-container {
    gap: 0.25rem;
  }
}
.magazine .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  opacity: 1;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 110%;
  color: var(--color-text-dark);
  padding: 5px;
  margin: 0;
  border-radius: 0;
  cursor: pointer;
}
.magazine .swiper-pagination-bullet:hover {
  color: #0d2014;
}
.magazine .swiper-pagination-bullet-active {
  color: #0d2014;
}
.magazine .swiper-pagination-bullets {
  display: flex;
  gap: 10px;
}

.present {
  padding: 2.5rem;
  border-radius: 0.375rem;
  background: #0d2014;
  width: 100%;
}
@media (max-width: 767px) {
  .present {
    padding: 1.875rem 1.25rem;
  }
}
.present__subtitle {
  font-weight: 400;
  font-size: 1.25rem;
  color: #897352;
  margin-bottom: 1.75rem;
}
@media (max-width: 1280px) {
  .present__subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .present__subtitle {
    font-size: 1rem;
  }
}
.present .heading.heading--big {
  font-family: var(--second-family);
  text-transform: none;
}
@media (max-width: 1280px) {
  .present .heading.heading--big {
    font-size: 3.75rem;
  }
}
@media (max-width: 767px) {
  .present .heading.heading--big {
    font-size: 2.75rem;
    line-height: 102%;
  }
}
.present__body {
  display: grid;
  grid-template-columns: 1.49fr 1fr;
  gap: 7rem;
}
@media (max-width: 1750px) {
  .present__body {
    grid-template-columns: 1.69fr 1fr;
    gap: 3.75rem;
  }
}
@media (max-width: 1280px) {
  .present__body {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .present__body {
    gap: 1.875rem;
  }
}
.present__info {
  width: 46rem;
}
@media (max-width: 1280px) {
  .present__info {
    width: 100%;
  }
}
.present__paragraph {
  font-weight: 300;
  font-size: 1.25rem;
  color: #e7c697;
  margin-top: 1.875rem;
}
@media (max-width: 1280px) {
  .present__paragraph {
    font-size: 1.125rem;
    max-width: 50rem;
  }
}
@media (max-width: 767px) {
  .present__paragraph {
    font-size: 1rem;
  }
}
.present__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  margin-top: 7rem;
  gap: 2.5rem;
}
@media (max-width: 1750px) {
  .present__footer {
    grid-template-columns: 1fr 1.39fr;
    gap: 1.5rem;
  }
}
@media (max-width: 1280px) {
  .present__footer {
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  .present__footer {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.present-nominal {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (max-width: 767px) {
  .present-nominal {
    gap: 1.125rem;
  }
}
.present-nominal__heading {
  font-weight: 300;
  font-size: 1.125rem;
  color: #897352;
}
.present .nominals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .present .nominals {
    gap: 0.625rem;
  }
}
.present .nominals-item {
  border: 1px solid #918068;
  border-radius: 2.5rem;
  padding: 0.4375rem 1rem;
}
.present .nominals-item__text {
  font-weight: 300;
  font-size: 1.125rem;
  color: #e7c697;
}
@media (max-width: 767px) {
  .present .nominals-item__text {
    font-size: 0.875rem;
  }
}
.present__picture {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .present__picture {
    border-radius: 0.75rem;
    max-height: 27.625rem;
  }
}
.present__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.present .button {
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .present .button {
    margin-top: 0;
  }
}

.feedback__body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 1280px) {
  .feedback__body {
    grid-template-columns: 1.722fr 1fr;
  }
}
@media (max-width: 991px) {
  .feedback__body {
    display: flex;
    flex-direction: column;
  }
}
.feedback__body.feedback__body--contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 3.75rem;
}
@media (max-width: 1280px) {
  .feedback__body.feedback__body--contact {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .feedback__body.feedback__body--contact {
    display: flex;
    flex-direction: column;
  }
}
.feedback__map {
  height: 100%;
  width: 100%;
  border-radius: 0.375rem;
  filter: grayscale(100%) contrast(120%);
}
@media (max-width: 991px) {
  .feedback__map {
    min-height: 18.875rem;
  }
}
.feedback__map.feedback__map--contact {
  height: 31.25rem;
}
@media (max-width: 1280px) {
  .feedback__map.feedback__map--contact {
    height: 25.25rem;
  }
}
@media (max-width: 767px) {
  .feedback__map.feedback__map--contact {
    height: 21.25rem;
  }
}
@media (min-width: 992px) {
  .feedback .ymaps-2-1-79-map {
    height: 100%;
  }
}
.feedback__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  -webkit-backdrop-filter: blur(0.875rem);
          backdrop-filter: blur(0.875rem);
  background-color: #0d2014;
  padding: 3.125rem 2.5rem;
}
@media (max-width: 1280px) {
  .feedback__form {
    padding: 1.625rem;
  }
}
.feedback .heading.heading--light {
  font-family: var(--second-family);
  text-transform: none;
  font-style: italic;
}
@media (max-width: 1280px) {
  .feedback .heading.heading--light {
    font-size: 2.75rem;
  }
}
.feedback__paragraph {
  font-weight: 300;
  font-size: 1.25rem;
  color: #e7c697;
  margin: 1.875rem 0 2.5rem;
}
@media (max-width: 1280px) {
  .feedback__paragraph {
    font-size: 1.125rem;
    margin-top: 1.75rem;
    margin-bottom: 1.875rem;
  }
}

.section__header.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.equipment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.equipment__body {
  max-width: 100%;
  margin-top: 2.5rem;
  position: relative;
}
.equipment-slider {
  max-width: 100%;
}
.equipment-slider__list {
  display: flex;
  width: 100%;
}
.equipment-slide {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  max-width: 100%;
  width: 100%;
}
.equipment-slide__row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.7fr;
  gap: 1.875rem;
}
@media (max-width: 1280px) {
  .equipment-slide__row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .equipment-slide__row {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.equipment-slide__picture {
  display: flex;
  max-width: 100%;
}
@media (max-width: 1280px) {
  .equipment-slide__picture {
    grid-column: 1/3;
  }
}
.equipment-slide__img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-height: 100%;
}
@media (max-width: 1280px) {
  .equipment-slide__info {
    grid-column: 3/5;
  }
}
.equipment-slide__heading {
  font-weight: 400;
  font-size: 2rem;
  line-height: 109%;
  text-transform: uppercase;
  color: var(--color-main);
}
@media (max-width: 1280px) {
  .equipment-slide__heading {
    font-size: 1.875rem;
  }
}
.equipment-slide__paragraph {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.25rem;
}
.equipment-slide__paragraph p {
  font-size: 1.25rem;
}
@media (max-width: 1440px) {
  .equipment-slide__paragraph p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .equipment-slide__paragraph {
    margin-top: 2rem;
  }
}
.equipment-slide__box {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 0.375rem;
}
@media (max-width: 1280px) {
  .equipment-slide__box {
    grid-column: 1/5;
  }
}
@media (max-width: 767px) {
  .equipment-slide__box {
    padding: 1.25rem;
  }
}
.equipment-slide__title {
  font-weight: 400;
  font-size: 2rem;
  color: var(--color-main);
  margin-bottom: 1.875rem;
  line-height: 110%;
}
@media (max-width: 767px) {
  .equipment-slide__title {
    font-size: 1.875rem;
  }
}
.equipment-slide__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.equipment-slide-item {
  display: flex;
  gap: 1.25rem;
  border: 1px solid #c6c6c6;
  border-radius: 0.375rem;
  padding: 1.5rem 2.5rem 1.5rem 1.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .equipment-slide-item {
    flex-direction: column;
    padding: 1.25rem;
  }
}
.equipment-slide-item svg {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 50%;
  transform: translateX(-50%);
}
.equipment-slide-item__number {
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--color-bg-green-light);
}
.equipment-slider__navigation {
  display: flex;
  gap: 1.25rem;
  position: absolute;
  bottom: calc(100% + 3.125rem);
  right: 0;
  z-index: 2;
}
@media (max-width: 1280px) {
  .equipment-slider__navigation {
    bottom: calc(100% + 2.5rem);
  }
}
@media (max-width: 767px) {
  .equipment-slider__navigation {
    bottom: auto;
    top: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }
}
.equipment-slider__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.375rem;
  min-width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background-color: var(--color-bg-green-light);
  border: none;
  cursor: pointer;
  transition: 0.3s all;
}
@media (max-width: 1280px) {
  .equipment-slider__button {
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 767px) {
  .equipment-slider__button {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
  }
}
.equipment-slider__button:hover {
  background-color: var(--color-main);
}
.equipment-slider__button.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.advantages__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 991px) {
  .advantages__list {
    display: flex;
    flex-direction: column;
  }
}
.advantages-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: radial-gradient(158.51% 177.66% at 82.23% -62.25%, #225134 0%, #043817 100%);
  border-radius: 0.375rem;
  padding: 2.125rem;
}
@media (max-width: 767px) {
  .advantages-item {
    padding: 1.25rem;
    gap: 1.5rem;
  }
}
.advantages-item__header {
  display: flex;
  justify-content: space-between;
}
.advantages-item__number {
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--color-text-muted);
}
.advantages-item__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--color-bg);
}
.advantages-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.advantages-item__heading {
  font-weight: 400;
  font-size: 1.375rem;
  color: #f5f4f2;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 1440px) {
  .about {
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}
@media (max-width: 1280px) {
  .about {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.about__picture {
  max-width: 100%;
}
@media (max-width: 1280px) {
  .about__picture {
    grid-area: 1/1/2/3;
  }
}
@media (max-width: 1280px) {
  .about__picture.about__picture--second {
    grid-area: 1/3/2/5;
  }
}
.about__img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 3.125rem;
}
@media (max-width: 1640px) {
  .about__info {
    padding-top: 1.125rem;
  }
}
@media (max-width: 1440px) {
  .about__info {
    padding-top: 0;
    gap: 1.5rem;
  }
}
@media (max-width: 1280px) {
  .about__info {
    grid-area: 2/1/3/5;
  }
}
.about__info .heading {
  text-align: center;
}
.about__paragraph {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1.25rem;
}
@media (max-width: 1440px) {
  .about__paragraph {
    padding: 0;
  }
}
.about__paragraph .paragraph {
  text-align: center;
  line-height: 110%;
}

.tags {
  padding: 1.375rem 0;
  border-top: 1px solid rgba(112, 131, 106, 0.3);
  border-bottom: 1px solid rgba(112, 131, 106, 0.3);
}
.tags__list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2.375rem;
       column-gap: 2.375rem;
  row-gap: 1.25rem;
}
@media (max-width: 991px) {
  .tags__list {
    -moz-column-gap: 2.125rem;
         column-gap: 2.125rem;
  }
}
@media (max-width: 767px) {
  .tags__list {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 1rem;
  }
}
.tags-item__link {
  font-size: 1.125rem;
  color: var(--color-main);
  transition: 0.3s all;
  position: relative;
}
@media (max-width: 767px) {
  .tags-item__link {
    font-size: 1rem;
  }
}
.tags-item__link:after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--color-main);
  transition: 0.3s all;
}
.tags-item__link:hover {
  font-weight: 500;
}
.tags-item__link.js--active {
  font-weight: 500;
}
.tags-item__link:hover:after {
  width: 100%;
}
.tags-item__link.js--active:after {
  width: 100%;
}

.news__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 991px) {
  .news__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .news__list {
    display: flex;
    flex-direction: column;
  }
}
.news-item:first-child {
  grid-column: 1/3;
}
@media (max-width: 767px) {
  .news-item:first-child {
    grid-column: auto;
  }
}
.news-item__link {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
.news-item__link:hover .news-item__img {
  transform: scale(1.1);
}
@media (min-width: 1440px) {
  .news-item__link:hover .news-item__title:after {
    width: 100%;
  }
}
.news-item__picture {
  overflow: hidden;
  max-width: 100%;
  height: 30vw;
}
@media (min-width: 1920px) {
  .news-item__picture {
    height: 35.8125rem;
  }
}
@media (max-width: 991px) {
  .news-item__picture {
    height: 50vw;
  }
}
@media (max-width: 480px) {
  .news-item__picture {
    height: 20rem;
  }
}
.news-item__img {
  max-width: 100%;
  width: 100%;
  border-radius: 0.375rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.3s all;
}
.news-item__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.news-item__footer .paragraph {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.news-item__tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.news-item__tag svg {
  color: var(--color-bg-green-light);
}
.news-item__tag-name {
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--color-bg-green-light);
}
@media (max-width: 1280px) {
  .news-item__tag-name {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .news-item__tag-name {
    font-size: 1.125rem;
  }
}
.news-item__date {
  font-size: 1.125rem;
  color: #c5c7c5;
}
.news-item__title {
  font-weight: 500;
  font-size: 2.125rem;
  color: var(--color-main);
  margin: 1.625rem 0 1.25rem;
  position: relative;
  line-height: 90%;
}
@media (max-width: 1280px) {
  .news-item__title {
    font-size: 1.875rem;
    margin: 1.25rem 0 1rem;
  }
}
@media (max-width: 767px) {
  .news-item__title {
    font-size: 1.75rem;
    margin: 1rem 0 0.75rem;
  }
}
.news-item__title:after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  height: 3px;
  width: 0;
  background-color: var(--color-main);
  transition: 0.3s all;
}

.article {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 0.375rem;
}
@media (max-width: 1280px) {
  .article {
    padding: 1.25rem;
  }
}
@media (max-width: 767px) {
  .article {
    padding: 1.25rem 1rem;
  }
}
.article__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 1280px) {
  .article__header {
    display: flex;
    flex-direction: column;
  }
}
.article__heading {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
  color: var(--color-main);
}
@media (max-width: 1280px) {
  .article__heading {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .article__heading {
    font-size: 1.875rem;
  }
}
.article__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 1280px) {
  .article__body {
    display: flex;
    flex-direction: column;
  }
}
.article__info {
  display: flex;
  flex-direction: column;
}
.article__row {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin-bottom: 1.75rem;
}
.article__rich img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-height: 36.5625rem;
}
@media (max-width: 1280px) {
  .article__rich img {
    min-height: 26.5625rem;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .article__rich img {
    min-height: 20rem;
  }
}
@media (max-width: 767px) {
  .article__rich img {
    width: 100%;
  }
}
.article__rich img.expert__img {
  width: 7.5rem;
  min-width: 7.5rem;
  height: 7.5rem;
  max-height: 7.5rem;
  min-height: auto;
}
@media (max-width: 767px) {
  .article__rich img.expert__img {
    width: 5rem;
    min-width: 5rem;
    height: 5rem;
  }
}
.article__rich h1 {
  font-weight: 500;
  font-size: 3rem;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-main);
}
@media (max-width: 1280px) {
  .article__rich h1 {
    font-size: 2.5rem;
  }
}
.article__rich h2 {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-main);
}
@media (max-width: 1280px) {
  .article__rich h2 {
    font-size: 1.875rem;
  }
}
.article__rich h3 {
  font-weight: 500;
  font-size: 1.625rem;
  color: var(--color-main);
  line-height: 100%;
}
@media (max-width: 767px) {
  .article__rich h3 {
    font-size: 1.375rem;
  }
}
.article__rich h4 {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .article__rich h4 {
    font-size: 1.25rem;
  }
}
.article__rich h5 {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-main);
  line-height: 124%;
  margin-top: 1.5rem;
}
@media (max-width: 1280px) {
  .article__rich h5 {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .article__rich h5 {
    font-size: 1rem;
  }
}
.article__rich p {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-text-dark);
  line-height: 124%;
}
@media (max-width: 767px) {
  .article__rich p {
    font-size: 1rem;
  }
}
.article__rich p:not(:first-child) {
  margin-top: 0.75rem;
}
.article__rich strong {
  font-weight: 500;
}
.article__rich ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.5rem;
}
.article__rich li {
  font-size: 1.25rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-dark);
}
@media (max-width: 1280px) {
  .article__rich li {
    font-size: 1.175rem;
  }
}
@media (max-width: 767px) {
  .article__rich li {
    font-size: 1rem;
    line-height: 110%;
    padding-left: 1rem;
  }
}
.article__rich li:after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: var(--color-text-dark);
}
@media (max-width: 767px) {
  .article__rich li:after {
    top: 0.375rem;
    left: 0;
  }
}
.article__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  background-color: var(--color-bg);
  border-radius: 0.25rem;
}
@media (max-width: 1280px) {
  .article__footer {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    gap: 1.25rem;
  }
}

.expert {
  display: flex;
  align-items: flex-end;
  margin-top: auto;
}
.expert__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 2rem;
}
.expert__img {
  width: 7.5rem;
  min-width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.expert__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.expert__name {
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--color-main);
}
.expert__post {
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: #c5c7c5;
}

.contact .form__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 991px) {
  .contact .form__body {
    display: flex;
    flex-direction: column;
  }
}
.contact__info {
  display: flex;
  gap: 3.75rem;
  width: 100%;
}
@media (max-width: 1280px) {
  .contact__info {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.contact__col {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding-right: 3.75rem;
  border-right: 1px solid #b7bdb7;
}
@media (max-width: 1280px) {
  .contact__col {
    padding-right: 0;
    border-right: none;
    gap: 1.25rem;
  }
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 1280px) {
  .contact-item {
    gap: 0.5rem;
  }
}
.contact-item svg {
  color: var(--color-main);
}
.contact-item__heading {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 135%;
  text-transform: uppercase;
  color: #b7bdb7;
}
.contact-item__paragraph, .contact-item__link {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-main);
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .contact-item__paragraph, .contact-item__link {
    font-size: 1.125rem;
  }
}
.contact-item__link:hover {
  opacity: 0.6;
}
.contact .social__list {
  margin-bottom: 0;
}
@media (max-width: 1280px) {
  .contact .heading.heading--light {
    font-size: 2.25rem;
  }
}

.service__inner {
  display: grid;
  grid-template-columns: 25.375rem 1fr;
  gap: 2.5rem;
}
@media (max-width: 1640px) {
  .service__inner {
    grid-template-columns: 20rem 1fr;
  }
}
@media (max-width: 991px) {
  .service__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.service-panel {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 3.75rem;
}
@media (max-width: 1440px) {
  .service-panel {
    margin-top: 2rem;
  }
}
@media (max-width: 991px) {
  .service-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: auto;
    gap: 1.75rem;
    padding: 0 2rem;
    margin-left: -2rem;
    width: calc(100% + 4rem);
  }
}
@media (max-width: 767px) {
  .service-panel {
    gap: 1.5rem;
    padding: 0 1rem;
    margin-left: -1rem;
    width: calc(100% + 2rem);
    margin-top: 1.5rem;
  }
}
.service-panel__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-text-dark);
  padding: 0.625rem 0;
  cursor: pointer;
  transition: 0.3s all;
}
@media (max-width: 991px) {
  .service-panel__item {
    font-size: 1.125rem;
    white-space: nowrap;
    padding: 0.625rem;
  }
}
.service-panel__item:hover, .service-panel__item.js--active {
  font-weight: 500;
  background-color: var(--color-bg-grey);
}
.service-content__item {
  display: none;
}
.service-content__item.js--active {
  display: block;
  animation: fade 0.3s ease forwards;
}
.service__img {
  width: 100%;
  max-height: 26.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 1440px) {
  .service__img {
    min-height: 20rem;
  }
}
@media (max-width: 991px) {
  .service__img {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 767px) {
  .service__img {
    min-height: 12rem;
  }
}
.service-description {
  margin-bottom: 2rem;
}
.service-description__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: 0.3s all;
}
.service-description__header svg {
  transition: 0.3s all;
}
.service-description__header:hover {
  opacity: 0.7;
}
.service-description__heading {
  font-size: 1.25rem;
  font-weight: 600;
}
.service-description__content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s all;
}
.service-description__content img {
  margin: 1.5rem 0;
  max-height: 20rem;
  min-height: 20rem;
  width: 100%;
}
.service-description__content h2 {
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  .service-description__content h2 {
    font-size: 1.5rem;
  }
}
.service-description__content .article__rich {
  margin: 1.5rem 0;
}
.service-description.js--active .service-description__header svg {
  transform: rotateZ(180deg);
}
.service-description.js--active .service-description__content {
  opacity: 1;
}
.service__subheading {
  font-weight: 400;
  font-size: 2rem;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-main);
}
@media (max-width: 767px) {
  .service__subheading {
    font-size: 1.875rem;
  }
}
.service__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media (max-width: 1440px) {
  .service__list {
    gap: 1.25rem;
  }
}
@media (max-width: 1280px) {
  .service__list {
    display: flex;
    flex-direction: column;
  }
}
.service-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.625rem;
  border-bottom: 1px solid rgba(112, 131, 106, 0.3);
  align-items: center;
  gap: 1.75rem;
}
@media (max-width: 1720px) {
  .service-item {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: flex-start;
    row-gap: 1rem;
  }
}
@media (max-width: 1440px) {
  .service-item {
    padding-bottom: 1.25rem;
  }
}
@media (max-width: 1280px) {
  .service-item {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .service-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }
}
.service-item .button {
  border-radius: 2.5rem;
  height: 2.5rem;
  width: -moz-min-content;
  width: min-content;
  font-size: 1rem;
  padding: 0.625rem 1.5rem;
}
.service-item__col {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .service-item__col {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.service-item__heading {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-main);
  max-width: 20.625rem;
}
@media (max-width: 1440px) {
  .service-item__heading {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .service-item__heading {
    max-width: 30.625rem;
  }
}
.service-item__price {
  font-weight: 500;
  white-space: nowrap;
}

.registration__inner {
  display: grid;
  grid-template-columns: 21.5rem 1fr;
  gap: 3.125rem;
  padding: 1.25rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media (max-width: 1280px) {
  .registration__inner {
    gap: 1.875rem;
  }
}
@media (max-width: 991px) {
  .registration__inner {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
  }
}
.registration__picture {
  width: 100%;
  height: 100%;
  min-height: 29.125rem;
  overflow: hidden;
  border-radius: 0.375rem;
}
@media (max-width: 1440px) {
  .registration__picture {
    min-height: auto;
    height: 27.8rem;
  }
}
@media (max-width: 991px) {
  .registration__picture {
    min-height: auto;
    height: 32.8rem;
  }
}
@media (max-width: 767px) {
  .registration__picture {
    max-height: 25rem;
    height: auto;
  }
}
.registration__img {
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.registration__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 1.25rem 0;
}
@media (max-width: 1440px) {
  .registration__content {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .registration__content {
    padding: 0;
  }
}
.registration__header {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.registration__header .heading {
  text-transform: none;
}
@media (max-width: 1440px) {
  .registration__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
.registration__paragraph {
  max-width: 29.375rem;
}
.registration__paragraph .paragraph {
  font-style: italic;
}
.registration__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 1440px) {
  .registration__body {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .registration__body {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }
}
.registration__body .dropdown {
  width: 100%;
}
.registration .input {
  color: var(--color-text-dark);
  border-color: #a2a4a0;
  padding-bottom: 1.25rem;
}
@media (max-width: 1440px) {
  .registration .input {
    padding-bottom: 1.125rem;
  }
}
.registration .input::-moz-placeholder {
  color: #a2a4a0;
}
.registration .input::placeholder {
  color: #a2a4a0;
}
.registration .input:focus {
  border-color: var(--color-text-dark);
}
.registration .checked {
  margin-top: -0.2rem;
}
@media (max-width: 1440px) {
  .registration .checked {
    margin-top: 0;
  }
}
.registration .dropdown.dropdown--click .dropdown__header {
  border-bottom: 1px solid #a2a4a0;
  padding-bottom: 1.25rem;
}
.registration .dropdown.dropdown--click .dropdown__header svg {
  color: #a2a4a0;
}
.registration .dropdown__header-text {
  color: #a2a4a0;
}
.registration .button {
  display: flex;
  justify-content: center;
  text-align: center;
}

.store__inner {
  display: grid;
  grid-template-columns: 25.3125rem 1fr;
  gap: 2.5rem;
}
@media (max-width: 1740px) {
  .store__inner {
    grid-template-columns: 20rem 1fr;
  }
}
@media (max-width: 1280px) {
  .store__inner {
    grid-template-columns: 17rem 1fr;
  }
}
@media (max-width: 991px) {
  .store__inner {
    display: flex;
    flex-direction: column;
  }
}
.store-sidebar__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.store-sidebar-item:first-child .store-sidebar-item__header {
  padding-top: 0;
}
.store-sidebar-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .store-sidebar-item__header {
    padding: 1rem 0;
  }
  .store-sidebar-item__header svg {
    width: 1.5rem;
  }
}
.store-sidebar-item__heading {
  font-weight: 400;
  font-size: 2rem;
  color: var(--color-main);
}
@media (max-width: 1280px) {
  .store-sidebar-item__heading {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .store-sidebar-item__heading {
    font-size: 1.5rem;
  }
}
.store-sidebar-item__content {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s all;
}
.store-sidebar-item__content-inner {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  max-width: 88rem;
  padding-bottom: 1.875rem;
}
@media (max-width: 1280px) {
  .store-sidebar-item__content-inner {
    padding-bottom: 0.875rem;
  }
}
.store-sidebar-item__paragraph {
  font-weight: 400;
  font-size: 1.25rem;
  color: #3b4966;
}
@media (max-width: 767px) {
  .store-sidebar-item__paragraph {
    font-size: 1rem;
  }
}
.store-sidebar-item__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 160%;
  color: var(--color-text-dark);
}
@media (max-width: 767px) {
  .store-sidebar-item__list {
    font-size: 1rem;
  }
}
.store-sidebar-item__link {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 160%;
  color: var(--color-text-dark);
}
@media (max-width: 1280px) {
  .store-sidebar-item__link {
    font-size: 1.125rem;
  }
}
.store-sidebar-item__point {
  transition: 0.3s all;
}
.store-sidebar-item__point.js--active, .store-sidebar-item__point:hover {
  background-color: var(--color-bg-grey);
}
.store-sidebar-item__point.js--active .store-sidebar-item__link, .store-sidebar-item__point:hover .store-sidebar-item__link {
  font-weight: 500;
  color: var(--color-main);
}
.store-sidebar-item__icon {
  transition: 0.3s all;
}
.store-sidebar-item.js--active .store-sidebar-item__icon {
  transform: rotateZ(180deg);
}
.store__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2.5rem;
}
@media (max-width: 1280px) {
  .store__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .store__list {
    display: flex;
    flex-direction: column;
  }
}
.store__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin-top: 7.5rem;
}
@media (max-width: 1280px) {
  .store__footer {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}
.store-pagination {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.store-pagination__button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.store-pagination__button span {
  font-size: 1.25rem;
  color: #afb0ae;
  transition: 0.3s all;
}
@media (max-width: 1280px) {
  .store-pagination__button span {
    font-size: 1rem;
  }
}
.store-pagination__button svg {
  color: #afb0ae;
  transition: 0.3s all;
}
.store-pagination__button:hover span {
  color: var(--color-text-dark);
}
.store-pagination__button:hover svg {
  color: var(--color-text-dark);
}
.store-pagination__button-prev svg {
  transform: rotateY(180deg);
}
.store-pagination__button.js--hidden {
  display: none;
}
.store-pagination__numbers {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.store-pagination__link {
  font-size: 1.25rem;
  color: #afb0ae;
  transition: 0.3s all;
}
@media (max-width: 1280px) {
  .store-pagination__link {
    font-size: 1rem;
  }
}
.store-pagination__link:hover, .store-pagination__link.js--active {
  color: var(--color-text-dark);
  text-decoration: underline;
}
.store__text {
  font-size: 1.25rem;
  color: #afb0ae;
}
@media (max-width: 1280px) {
  .store__text {
    font-size: 1rem;
  }
}

.product__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.25rem;
}
@media (max-width: 1280px) {
  .product__inner {
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
  }
}
@media (max-width: 991px) {
  .product__inner {
    display: flex;
    flex-direction: column;
  }
}
.product__col {
  position: relative;
}
.product__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (max-width: 1280px) {
  .product__info {
    gap: 1rem;
  }
}
.product__content {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  padding: 2.6rem;
  border-radius: 0.375rem;
  background-color: var(--color-white);
}
@media (max-width: 1280px) {
  .product__content {
    padding: 1.5rem;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .product__content {
    padding: 1rem;
    gap: 1.5rem;
  }
}
.product__header {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
@media (max-width: 1280px) {
  .product__header {
    gap: 1.25rem;
  }
}
.product__subheading {
  font-size: 1.25rem;
  line-height: 135%;
  color: #b7bdb7;
}
@media (max-width: 1280px) {
  .product__subheading {
    font-size: 1.125rem;
  }
}
.product__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .product__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.product__mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product__stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.product__mark-text {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text-dark);
}
.product__body {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media (max-width: 1280px) {
  .product__body {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .product__body {
    gap: 1.5rem;
  }
}
.product__box {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.product-item {
  font-size: 1.125rem;
  color: #c6c6c6;
}
.product-item span {
  color: var(--color-text-dark);
}
.product-description {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 1280px) {
  .product-description {
    gap: 1.25rem;
  }
}
.product-description__heading {
  font-size: 1.625rem;
  line-height: 104%;
  color: var(--color-main);
}
.product__footer {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .product__footer {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.product .button {
  display: flex;
  justify-content: center;
  border-radius: 2.5rem;
  background-color: var(--color-button-bg-hover);
  max-width: 23.75rem;
  padding: 0.85rem 1.875rem;
  height: 3.125rem;
}
.product .button:hover {
  background-color: var(--color-button-bg);
}
.product-tab {
  background-color: var(--color-white);
  width: 100%;
  padding: 2.5rem;
  border-radius: 0.375rem;
}
@media (max-width: 1280px) {
  .product-tab {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .product-tab {
    padding: 1.5rem 1rem;
  }
}
.product-tab__header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  border-bottom: 1px solid rgba(112, 131, 106, 0.3);
}
@media (max-width: 767px) {
  .product-tab__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
    row-gap: 1rem;
  }
}
.product-tab__button {
  font-weight: 400;
  font-size: 1.25rem;
  color: rgba(112, 131, 106, 0.3);
  padding-bottom: 1.125rem;
  border-bottom: 1px solid transparent;
  transition: 0.3s all;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .product-tab__button {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .product-tab__button {
    padding-bottom: 0.75rem;
    font-size: 1rem;
  }
}
.product-tab__button.js--active, .product-tab__button:hover {
  color: var(--color-main);
  border-color: var(--color-main);
}
.product-tab__contents {
  padding-top: 2.5rem;
}
@media (max-width: 991px) {
  .product-tab__contents {
    padding-top: 2rem;
  }
}
.product-tab__content {
  display: none;
}
.product-tab__content.js--active {
  display: block;
  animation: fade 0.3s ease forwards;
}
.product-tab__table {
  border: 1px solid #d4dad2;
  border-radius: 0.25rem;
}
.product-tab__row {
  display: grid;
  grid-template-columns: 11.25rem 1fr;
  gap: 0;
  border-bottom: 1px solid #d4dad2;
}
@media (max-width: 767px) {
  .product-tab__row {
    display: flex;
    flex-direction: column;
  }
}
.product-tab__row:last-child {
  border: none;
}
.product-tab__col {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.76rem;
}
@media (max-width: 767px) {
  .product-tab__col {
    padding: 0.5rem 1.125rem 1.25rem;
  }
}
.product-tab__col.product-tab__col--first {
  padding: 1.25rem 1.125rem;
  border-right: 1px solid #d4dad2;
}
@media (max-width: 767px) {
  .product-tab__col.product-tab__col--first {
    padding: 1.25rem 1.125rem 0.5rem 1.125rem;
    border-right: none;
  }
}
.product-tab__heading {
  font-size: 1.125rem;
  color: #c6c6c6;
}
.product-tab__paragraph {
  font-size: 1.125rem;
  color: var(--color-text-dark);
}
.product-tab__paragraph span {
  font-weight: 600;
}
@media (max-width: 767px) {
  .product-tab__paragraph {
    font-size: 1rem;
  }
}
.product-tab__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .product-tab__info {
    font-size: 1rem;
    gap: 0.5rem;
  }
}
.product-tab__subheading {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-text-dark);
}
.product .shop-card {
  position: sticky;
  top: 7.475rem;
}
@media (max-width: 1740px) {
  .product .shop-card {
    top: 5.75rem;
  }
}
@media (max-width: 991px) {
  .product .shop-card {
    max-height: 40rem;
  }
}
.product .shop-card .shop-card__img {
  -o-object-fit: cover;
     object-fit: cover;
}

.basket__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (max-width: 1440px) {
  .basket__inner {
    display: flex;
    flex-direction: column;
  }
}
.basket__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 1.25rem;
  background-color: var(--color-white);
  border-radius: 0.375rem;
}
@media (max-width: 991px) {
  .basket__list {
    padding: 1rem;
  }
}
.basket-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(112, 131, 106, 0.3);
  width: 100%;
}
@media (max-width: 1440px) {
  .basket-item {
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .basket-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.basket-item:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.basket-item__info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .basket-item__info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.basket-item__picture {
  min-height: 13rem;
  max-width: 13rem;
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
}
@media (max-width: 480px) {
  .basket-item__picture {
    max-width: 100%;
  }
}
.basket-item__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.basket-item__col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (max-width: 767px) {
  .basket-item__col {
    gap: 1rem;
  }
}
.basket__articule {
  font-size: 1.125rem;
  color: #c6c6c6;
}
.basket__articule span {
  color: var(--color-text-dark);
}
.basket-item__navigation {
  display: flex;
  align-items: center;
  gap: 3.75rem;
}
@media (max-width: 991px) {
  .basket-item__navigation {
    gap: 1.875rem;
    margin: 0 auto;
  }
}
.basket-item__button-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all;
}
.basket-item__button-remove:hover {
  transform: rotateZ(180deg);
}
.basket-form {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 1440px) {
  .basket-form {
    width: 100%;
  }
}
.basket-form__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.basket-form__input {
  border-radius: 0.375rem;
  padding: 1.25rem 1.875rem;
  height: 3.75rem;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--color-text-dark);
  background-color: var(--color-white);
}
@media (max-width: 767px) {
  .basket-form__input {
    padding: 1.25rem;
  }
}
.basket-form__input::-moz-placeholder {
  color: #c6c6c6;
}
.basket-form__input::placeholder {
  color: #c6c6c6;
}
.basket-form__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.75rem;
  gap: 2rem;
  background-color: var(--color-white);
  border-radius: 0.375rem;
  padding: 1.25rem 1.875rem;
}
@media (max-width: 767px) {
  .basket-form__item {
    padding: 1.25rem;
  }
}
.basket-form__item-text {
  font-size: 1.125rem;
  color: var(--color-text-dark);
}
@media (max-width: 767px) {
  .basket-form__item-text {
    font-size: 1rem;
  }
}
.basket-form__item-price {
  font-size: 1.375rem;
  color: var(--color-text-dark);
}
@media (max-width: 767px) {
  .basket-form__item-price {
    font-size: 1.125rem;
  }
}
.basket .button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-button-bg-hover);
  padding: 0.85rem 1.875rem;
  height: 3.75rem;
}
.basket .button:hover {
  background-color: var(--color-button-bg);
}

.order__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 2.5rem;
}
@media (max-width: 1280px) {
  .order__inner {
    display: flex;
    flex-direction: column;
  }
}
.order__col {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (max-width: 1280px) {
  .order__col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .order__col {
    gap: 2rem;
  }
}
.order__heading {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 112%;
  color: var(--color-main);
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .order__heading {
    margin-bottom: 2rem;
  }
}
.order-form__table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2.5rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .order-form__table {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
  }
}
.order-form__footer .dropdown__header.dropdown__header--order {
  padding-bottom: 1.375rem;
  border-color: rgba(112, 131, 106, 0.3);
}
.order-form__footer .dropdown__header-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--color-main);
}
.order-form__footer-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 1.875rem;
  margin-bottom: 1.875rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .order-form__footer-box {
    display: flex;
    flex-direction: column;
  }
}
.order-form__dropdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
@media (max-width: 767px) {
  .order-form__dropdown {
    display: flex;
    flex-direction: column;
  }
}
.order .input {
  padding-bottom: 1.375rem;
  border-color: rgba(112, 131, 106, 0.3);
  color: var(--color-text-dark);
}
@media (max-width: 767px) {
  .order .input {
    padding-bottom: 1rem;
  }
}
.order .textarea {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--color-text-dark);
}
.order .input::-moz-placeholder, .order .textarea::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 1.125rem;
  color: #c6c6c6;
}
.order .input::placeholder,
.order .textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 1.125rem;
  color: #c6c6c6;
}
.order .input:focus,
.order .textarea:focus {
  border-color: var(--color-text-dark);
}
.order .textarea {
  grid-column-start: 1;
  grid-column-end: 3;
  padding-bottom: 1.375rem;
  border-color: rgba(112, 131, 106, 0.3);
  color: var(--color-text-dark);
}
.order-info__box {
  padding: 2.5rem;
  background-color: var(--color-white);
  border-radius: 0.375rem;
}
@media (max-width: 767px) {
  .order-info__box {
    padding: 1rem;
  }
}
.order-info__heading {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 112%;
  color: var(--color-main);
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .order-info__heading {
    margin-bottom: 1.5rem;
  }
}
.order-info__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.order-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(112, 131, 106, 0.3);
}
.order-info-item .paragraph {
  color: var(--color-main);
}
@media (max-width: 767px) {
  .order-info-item {
    gap: 1.25rem;
    padding-bottom: 1rem;
  }
}
.order-info-item:last-child {
  border: none;
  padding-bottom: 0;
}
.order-info-item__subheading {
  font-size: 1.125rem;
  color: #c6c6c6;
}
@media (max-width: 767px) {
  .order-info-item__subheading {
    font-size: 1rem;
  }
}
.order-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin: 2.5rem 0;
}
.order-checkboxes .checkbox__text {
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .order-checkboxes .checkbox__text {
    font-size: 1rem;
  }
}
.order .button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-button-bg-hover);
  padding: 0.85rem 1.875rem;
  height: 3.75rem;
  color: var(--color-button-text);
}
.order .button:hover {
  background-color: var(--color-button-bg);
}

.hero--error .hero__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 13.75rem 0;
}
@media (max-width: 1740px) {
  .hero--error .hero__info {
    padding: 8.75rem 0;
  }
}
@media (max-width: 991px) {
  .hero--error .hero__info {
    padding: 5.75rem 0;
  }
}
@media (max-width: 767px) {
  .hero--error .hero__info {
    align-items: center;
    padding: 2.75rem 0;
  }
}
.hero--error .hero__header {
  max-width: 45.0625rem;
  position: relative;
  z-index: 15;
}
@media (max-width: 1440px) {
  .hero--error .hero__header {
    max-width: 32.0625rem;
  }
}
.hero--error .heading {
  font-family: var(--second-family);
  font-style: italic;
}
.hero--error .button {
  width: auto;
  margin-top: 3.75rem;
  background-color: var(--color-bg);
  position: relative;
  z-index: 15;
}
.hero--error .button:hover {
  color: var(--color-button-bg);
  background-color: var(--color-bg);
  opacity: 0.6;
}
.hero--error .hero-picture {
  right: 0;
}
@media (max-width: 767px) {
  .hero--error .hero-picture {
    margin-left: -1.75rem;
    width: calc(100% + 4.25rem);
    padding-top: 1.625rem;
    position: static;
    margin-bottom: -3rem;
  }
  .hero--error .hero-picture .hero-picture__img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.error__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.error__title {
  font-weight: 900;
  font-size: 16.375rem;
  margin-bottom: 3rem;
  line-height: 110%;
  background: linear-gradient(180deg, #3d3b6d 0%, #0b1e46 99.99%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (max-width: 1280px) {
  .error__title {
    font-size: 10rem;
  }
}
@media (max-width: 991px) {
  .error__title {
    font-size: 7.5rem;
  }
}
@media (max-width: 767px) {
  .error__title {
    font-size: 5.625rem;
    margin-bottom: 1.25rem;
  }
}
.error__text {
  font-weight: 600;
  font-size: 3.125rem;
  letter-spacing: -0.05em;
  color: #0b1e46;
  margin-bottom: 3.75rem;
}
@media (max-width: 1280px) {
  .error__text {
    font-size: 2.5rem;
  }
}
@media (max-width: 991px) {
  .error__text {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .error__text {
    font-size: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.error__button {
  width: 100%;
  max-width: 23.75rem;
  padding: 1rem;
  text-align: center;
  border: 1px solid #323063;
  font-weight: 400;
  font-size: 1.375rem;
  color: #323063;
  border-radius: 3.5rem;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .error__button {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }
}
.error__button:hover {
  background-color: #323063;
  color: var(--color-white);
}
.error__bg {
  position: absolute;
  top: calc(50% + 7rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 99vw;
  min-height: 100%;
  z-index: 1;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.search-panel__header {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  margin-bottom: 3.75rem;
  padding-left: 18.75rem;
}
@media (max-width: 1280px) {
  .search-panel__header {
    gap: 2rem;
    margin-bottom: 2rem;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .search-panel__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.search-panel__subheading {
  font-weight: 400;
  font-size: 1.25rem;
  color: #b7bdb7;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .search-panel__subheading {
    font-size: 1.125rem;
    padding-bottom: 0.25rem;
  }
}
.search-panel .input.input--search {
  font-weight: 400;
  font-size: 3.75rem;
  color: var(--color-main);
  padding-bottom: 1.5rem;
  width: 100%;
  border-bottom: 1px solid var(--color-text-placeholder);
}
@media (max-width: 1280px) {
  .search-panel .input.input--search {
    font-size: 2rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) {
  .search-panel .input.input--search {
    font-size: 1.5rem;
    padding-bottom: 0.25rem;
  }
}
.search-panel .input.input--search::-moz-placeholder {
  color: var(--color-text-placeholder);
}
.search-panel .input.input--search::placeholder {
  color: var(--color-text-placeholder);
}
.search-panel__result {
  display: none;
}
.search-panel__result.js--active {
  display: block;
  animation: fade 0.3s ease forwards;
}

.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.25rem;
}
.offer__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 91.25rem;
}
.offer__body .paragraph {
  font-size: 1.25rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .offer__body .paragraph {
    font-size: 1rem;
  }
}

@keyframes slide {
  0% {
    transform: translateY(6rem);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
[data-animation=slide] {
  opacity: 0;
}

[data-animation=slide].js--animate {
  animation: slide 0.95s ease-out forwards;
}

[data-animation=slide][data-animation-delay].js--animate {
  animation-delay: 0.3s;
}

@media (max-width: 991px) {
  [data-animation=slide][data-animation-delay].js--animate {
    animation-delay: 0s;
  }
}
[data-animation=fade] {
  opacity: 0;
  transition: 0.75s all ease-out;
}

[data-animation=fade].js--animate {
  opacity: 1;
}

[data-animation-delay] {
  transition-delay: 0.3s;
}

[data-animation=slide],
[data-animation=fade] {
  will-change: transform, opacity;
}

@keyframes popapShow {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    opacity: 1;
  }
}
@keyframes popapHidden {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}
.popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000000;
  display: none;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
}
.popup__overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.84);
  opacity: 0;
  transition: 300ms ease all;
  cursor: pointer;
}
.popup__content {
  position: relative;
  z-index: 2;
  padding: 3.75rem;
  box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.25);
  background: #f5f4f2;
  width: 100%;
  max-width: 51rem;
  margin: 0 3.75rem;
  min-height: 50vh;
}
@media (max-width: 1440px) {
  .popup__content {
    margin: 0 1.75rem;
  }
}
@media (max-width: 1280px) {
  .popup__content {
    margin: 0 1rem;
    padding: 1.25rem;
  }
}
@media (max-height: 500px) and (max-width: 1280px) {
  .popup__content {
    min-height: 83vh;
  }
}
.popup__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: auto;
  max-height: 90vh;
}
.popup__inner::-webkit-scrollbar {
  width: 5px;
}
.popup__inner::-webkit-scrollbar-thumb {
  background-color: var(--second-color);
  border-radius: 4px;
}
.popup__inner::-webkit-scrollbar-track {
  margin: 60px 0px;
}
.popup__inner::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}
.popup__header {
  margin-bottom: 1.875rem;
}
.popup__button-close {
  position: absolute;
  top: 3.75rem;
  right: 3.75rem;
  display: flex;
  width: 3.25rem;
  height: 3.25rem;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: 300ms ease all;
  cursor: pointer;
  border-radius: 40px;
  border: 1px solid #959595;
}
@media (max-width: 767px) {
  .popup__button-close {
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
  }
}
.popup__button-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.popup-button-close__inner {
  transform: rotate(45deg);
  transition: 0.3s all ease;
}
.popup-button-close__inner {
  position: relative;
  transform: rotate(45deg);
  transition: 0.3s all ease;
}
.popup-button-close__inner::after, .popup-button-close__inner::before {
  content: "";
  position: absolute;
  background-color: #253d2e;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
}
.popup-button-close__inner::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.popup__heading {
  font-weight: 400;
  font-size: 2.875rem;
  color: var(--color-main);
  line-height: 100%;
}
@media (max-width: 767px) {
  .popup__heading {
    font-size: 1.75rem;
  }
}
.popup .form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
@media (max-width: 767px) {
  .popup .form {
    gap: 1.5rem;
  }
}
.popup .input::-moz-placeholder, .popup .textarea::-moz-placeholder {
  color: #cdd2c9;
}
.popup .input::placeholder,
.popup .textarea::placeholder {
  color: #cdd2c9;
}
.popup .input,
.popup .textarea {
  border-color: #a2a4a0;
  color: var(--color-text-dark);
}
.popup .input::-moz-placeholder, .popup .textarea::-moz-placeholder {
  color: #a2a4a0;
}
.popup .input::placeholder,
.popup .textarea::placeholder {
  color: #a2a4a0;
}
.popup .dropdown.dropdown--click .dropdown__header {
  border-color: #a2a4a0;
}
.popup .dropdown.dropdown--click .dropdown__header svg {
  color: #a2a4a0;
}
.popup .dropdown__header-text {
  color: #949494;
}
.popup .dropdown.dropdown--click .dropdown__list {
  max-height: 10.25rem;
}
.popup .form__row .dropdown.dropdown--click .dropdown__inner {
  padding: 1rem;
}
.popup .form__row .dropdown.dropdown--click .dropdown__list {
  gap: 0.25rem;
  max-height: 5rem;
}
.popup .dropdown__content {
  left: 2rem;
}
@media (max-width: 767px) {
  .popup .dropdown__content {
    left: 1rem;
    max-width: calc(100% - 2rem);
  }
}
.popup .button {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .popup .button {
    margin-top: 0;
  }
}
.popup .button:hover {
  background-color: var(--color-button-bg-hover);
}
.popup .dropdown__icon-arrow {
  width: 1.125rem;
  height: 0.625rem;
  position: relative;
}
.popup .dropdown__icon-arrow svg {
  position: absolute;
  top: 0;
  left: 0;
}
.popup iframe {
  overflow: hidden;
}
@media (max-height: 500px) and (max-width: 1280px) {
  .popup iframe {
    min-height: 72vh;
  }
}

.popup.js--active {
  pointer-events: visible;
  opacity: 1;
  display: flex;
}
.popup.js--active .popup__overlay {
  opacity: 1;
}
.popup.js--active .popup__content {
  animation: popapShow 0.5s ease forwards;
}

.popup.js--hidden {
  display: flex;
  opacity: 1;
}
.popup.js--hidden .popup__content {
  animation: popapHidden 0.5s ease forwards;
}/*# sourceMappingURL=style.css.map */