:root {
  --Primary: #ff4646;
  --Primary-10: rgba(255, 70, 70, 0.1);
  --Dark: #181c29;
  --Static-White: #fff;
  --Static-White-40: rgba(255, 255, 255, 0.4);
  --Static-White-20: rgba(255, 255, 255, 0.2);
  --Tag-Purple: #4361ff;
  --Tag-Pink: #ff43f7;
  --Tag-Green: #06a44f;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Allura";
  src: url("../fonts/Allura-Regular.ttf");
}
.container {
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--Primary);
}

.card {
  max-width: 310px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: #ecf3f8;
  color: var(--Dark);
}
.card_modal {
  position: relative;
  cursor: default;
  max-width: 400px;
}
.card_modal .card__container {
  height: auto;
}
.card__image {
  width: 310px;
  height: 230px;
}
.card__image_modal {
  object-fit: cover;
  width: 100%;
}
.card__container {
  width: 100%;
  box-sizing: border-box;
  height: 72px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__container_horizontal {
  width: auto;
  justify-content: space-between;
  flex-direction: row;
}
.card__container_horizontal12 {
  align-items: center;
  width: 100%;
  flex-direction: row;
  gap: 12px;
}
.card__category {
  font-weight: 600;
  font-size: 12px;
  line-height: 130%; /* 15.6px */
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.card__category_work {
  color: var(--Tag-Purple);
}
.card__category_harmony {
  color: var(--Tag-Pink);
}
.card__category_health {
  color: var(--Tag-Green);
}
.card__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 152%; /* 24.32px */
  letter-spacing: 1.28px;
  text-transform: uppercase;
  transition: color 0.5s ease-in;
}
.card__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 148%;
}
.card__description_gr {
  flex-grow: 1;
}
.card__wraper {
  border-radius: 20px;
  padding: 20px;
  background-color: var(--Static-White);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card__cross {
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card__line {
  position: relative;
  background-color: var(--Dark);
  width: 2px;
  height: 25px;
  border-radius: 10px;
}
.card__line:first-child {
  transform: rotate(45deg);
}
.card__line:last-child {
  left: -2px;
  transform: rotate(-45deg);
}
.card__star {
  fill: var(--Primary-10);
}
.card__star_active {
  fill: var(--Primary);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover .card__title {
    color: var(--Primary);
  }
  .card:hover {
    cursor: pointer;
  }
  .card_modal:hover {
    cursor: default;
  }
  .card_modal:hover .card__title {
    color: var(--Dark);
  }
}
@media only screen and (max-width: 416px) {
  .card_modal {
    width: calc(100vw - 16px);
  }
}
.footer {
  background-color: var(--Static-White);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  padding: 60px 60px;
  color: var(--Dark);
}
.footer__content {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__wraper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
}
.footer__link {
  max-width: 417.31px;
  width: calc((100% - 24px) / 3);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
  background-color: #ecf3f8;
  border-radius: 20px;
  min-width: 333px;
  box-sizing: border-box;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: color 0.5s ease-in;
}
.footer__image {
  width: 80px;
  height: 80px;
}
.footer__title {
  font-size: 24px;
  line-height: 152%; /* 36.48px */
  letter-spacing: 3.84px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer__description {
  font-size: 16px;
  line-height: 152%; /* 24.32px */
  letter-spacing: 1.28px;
  text-transform: uppercase;
}
.footer__icon {
  padding: 8px;
}
.footer__icon svg {
  transition: stroke 0.4s ease-in;
  width: 24px;
  height: 24px;
  stroke: var(--Dark);
}
.footer__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 148%;
}
.footer__caption {
  font-family: Allura;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%; /* 24px */
  letter-spacing: 1.2px;
  color: inherit;
}
.footer__link-caption {
  text-decoration: none;
  color: inherit;
  transition: color 0.4s ease-in;
}

@media (hover: hover) and (pointer: fine) {
  .footer__link:hover {
    cursor: pointer;
    color: var(--Primary);
  }
  .footer__icon:hover {
    cursor: pointer;
  }
  .footer__icon:hover svg {
    stroke: var(--Primary);
  }
  .footer__link-caption:hover {
    color: var(--Primary);
  }
}
@media only screen and (max-width: 1143px) {
  .footer__wraper,
  .footer__link {
    width: 100%;
    max-width: none;
  }
  .footer {
    padding: 60px clamp(8px, 11.012vw - 76.5728px, 82px);
  }
}
.header {
  position: relative;
  z-index: 101;
  padding: 12px clamp(8px, 11.012vw - 76.573px, 82px);
  background-color: var(--Static-White);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--Dark);
}
.header__logo {
  padding: 8px 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.header__logo-image {
  width: 24px;
  height: 24px;
}

dialog {
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  outline: none;
  transition: transform 1s ease, opacity 0.8s ease, display 0.8s ease-in-out allow-discrete;
}
dialog[open] {
  opacity: 1;
  display: flex;
}
@starting-style {
  dialog[open] {
    opacity: 0;
  }
}
dialog:not([open]) {
  opacity: 0;
}

@media only screen and (max-width: 379px) {
  dialog {
    width: 100%;
    height: 100%;
  }
}
.navigation__list {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.navigation__item {
  list-style: none;
  border-radius: 12px;
  transition: background-color 0.4s ease-in, color 0.4s ease-in;
}
.navigation__item_active {
  background-color: var(--Primary-10);
  color: var(--Primary);
}
.navigation__item_active .navigation__link {
  pointer-events: none;
}
.navigation__link {
  display: inline-block;
  padding: 12px 20px;
  text-decoration: none;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .navigation__item:hover {
    cursor: pointer;
    background-color: var(--Primary-10);
    color: var(--Primary);
  }
  .navigation__item_active:hover {
    cursor: default;
  }
}
@media only screen and (max-width: 768px) {
  .navigation {
    z-index: 100;
    width: 100vw;
    position: fixed;
    overflow-y: auto;
    height: calc(100vh - 62px);
    background-color: var(--Static-White);
    transition: transform 0.5s ease-in;
    top: 62px;
    left: 100vw;
    transform: translateX(0);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36.48px;
    letter-spacing: 0.16em;
  }
  .navigation__list {
    height: max-content;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .navigation_active {
    transform: translateX(-100vw);
  }
}
.page {
  position: relative;
  max-width: 1440px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  color: var(--Static-White);
  margin: auto;
}

.enabled-scroll {
  overflow: hidden;
}

.section {
  background-image: url("../images/bg-snow.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px clamp(8px, 11.012vw - 76.5728px, 82px);
}
.section_hero {
  background-image: url("../images/bg-ball.png"), url("../images/bg-snow.png");
  box-sizing: border-box;
}
.section_about {
  color: var(--Dark);
}
.section_cta {
  background-image: url("../images/bg-forest.png"), url("../images/bg-snow.png");
}
.section_cta .section__content {
  text-align: center;
}
.section_gifts {
  background-image: url("../images/bg-garland.png");
  background-position: top;
  background-size: contain;
}
.section__content {
  margin: auto;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section__content_sm-gap {
  gap: 12px;
}
.section__content_padding60 {
  padding: 60px 0;
}
.section__caption {
  font-family: "Allura";
  font-size: 24px;
  font-weight: 400;
  line-height: 100%; /* 24px */
  letter-spacing: 1.2px;
}
.section__caption_primary {
  align-self: flex-start;
  color: var(--Primary);
}
.section__title {
  font-weight: 600;
  max-width: 432px;
  font-size: 24px;
  line-height: 152%; /* 36.48px */
  letter-spacing: 3.84px;
  text-transform: uppercase;
}
.section__title_main {
  text-align: center;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 5.76px;
}
.section__button {
  font-weight: 600;
  padding: 20px 32px;
  background-color: var(--Dark);
  font-size: 12px;
  line-height: 130%; /* 15.6px */
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 20px;
  color: var(--Static-White);
  transition: background-color 0.5s ease-in, color 0.5s ease-in;
}
.section__button:active {
  background-color: var(--Static-White);
  color: var(--Dark);
}
.section__wraper {
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  background-color: var(--Static-White);
  overflow: hidden;
}
.section__content-wraper {
  background-color: var(--Static-White);
  padding: 0 60px;
  display: flex;
  align-items: center;
}
.section__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 148%;
  max-width: 426px;
}
.section__image-wrapper {
  background-image: url(../images/santa.png);
  background-position: center;
  width: 638px;
  height: 528px;
  border-radius: 20px;
}
.section__title-wraper {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.section__slider {
  align-self: flex-start;
}
.section__gallery {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1276px;
}
.section__switches {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.section__switch {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 130%; /* 15.6px */
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background-color 0.5s ease-in;
}
.section__switch_active {
  pointer-events: none;
  background-color: var(--Static-White-20);
}
.section__switch:active {
  background-color: var(--Static-White-20);
}
.section__up-button {
  display: none;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--Primary);
  background: var(--Static-White);
  position: fixed;
  right: 8px;
  bottom: 8px;
  cursor: pointer;
}

@media only screen and (max-width: 1439px) {
  .section__gallery_max-w {
    max-width: 632px;
  }
}
@media only screen and (max-width: 492px) {
  .section__switches {
    gap: 2px;
  }
  .section__switch {
    padding: 12px 7px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .section__button:hover {
    cursor: pointer;
    background-color: var(--Static-White);
    color: var(--Dark);
  }
  .section__switch:hover {
    cursor: pointer;
    background-color: var(--Static-White-20);
  }
}
@media only screen and (max-width: 650px) {
  .section__wraper {
    flex-direction: column;
  }
  .section__content-wraper {
    padding: 0 clamp(20px, 5.26vw, 60px);
  }
  .section__image-wrapper {
    width: auto;
  }
}
@media only screen and (max-width: 768px) {
  .section__up-button_active {
    display: flex;
  }
}
.slider__wraper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  align-self: flex-start;
  transition: translate 0.4s ease-in-out;
}
.slider__text {
  font-size: 80px;
  line-height: normal;
  text-transform: uppercase;
}
.slider__image {
  width: 200px;
  height: 200px;
  border-radius: 20px;
}
.slider__arrows {
  position: relative;
  left: clamp(5px, 100vw - (11.012vw - 76.5728px) * 2 - 132px, 1144px);
  margin-top: 20px;
  display: inline-flex;
  flex-direction: row;
  gap: 20px;
  align-self: flex-end;
}
.slider__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  stroke: var(--Static-White);
  border: 1px solid var(--Static-White);
  transition: background-color 0.4s ease-in, stroke 0.4s ease-in;
}
.slider__arrow_inactive {
  pointer-events: none;
  stroke: var(--Static-White-40);
  border-color: var(--Static-White-40);
}
.slider__arrow svg {
  stroke: inherit;
}

@media only screen and (max-width: 768px) {
  .slider__arrows {
    left: clamp(5px, 100vw - 132px - 16px, 1162px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .slider__arrow:hover {
    cursor: pointer;
    background-color: var(--Static-White);
    stroke: var(--Primary);
  }
}
.timer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timer__time {
  padding: 8px 12px;
  display: flex;
  background-color: var(--Static-White-40);
  border-radius: 20px;
}
.timer__section {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 80px;
}
.timer__section:not(:first-child)::after {
  position: absolute;
  top: 15px;
  content: "";
  width: 1px;
  height: 20px;
  background-color: var(--Static-White);
}
.timer__number {
  text-align: center;
  font-size: 24px;
  line-height: 152%; /* 36.48px */
  letter-spacing: 3.84px;
  text-transform: uppercase;
}
.timer__text {
  text-align: center;
  font-size: 12px;
  line-height: 130%; /* 15.6px */
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.burger-menu {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 100px;
  position: relative;
}
.burger-menu_active .burger-menu__item:first-child {
  transform: rotate(45deg);
}
.burger-menu_active .burger-menu__item:last-child {
  transform: rotate(-45deg);
}
.burger-menu__item {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 20px;
  background-color: var(--Dark);
  transition: transform 0.3s ease-in;
}
.burger-menu__item:first-child {
  transform: translateY(4px);
}
.burger-menu__item:last-child {
  transform: translateY(-4px);
}

@media only screen and (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
}
@media (hover: hover) and (pointer: fine) {
  .burger-menu:hover {
    cursor: pointer;
  }
}
html {
  scroll-behavior: smooth;
}

/*# sourceMappingURL=style.css.map */
