@import url('https://fonts.googleapis.com/css2?family=Allura&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.allura-regular {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat";
  /* font-optical-sizing: auto; */
  font-style: normal;
}

:root {
  --Primary: rgba(255, 70, 70, 1);
  --Primary10: rgba(255, 70, 70, 0.1);
  --Dark: #181C29;
  --Static-White: rgba(255, 255, 255, 1);
  --Static-White40: rgba(255, 255, 255, 0.4);
  --Static-White20: rgba(255, 255, 255, 0.2);
  --Tag-Purple: #4361FF;
  --Tag-Pink: #FF43F7;
  --Tag-Green: #06A44F;
  --Content-Background: #ECF3F8;
  --Overlay: rgba(24, 28, 41, 0.8);
}

/* page start */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  font-family:"Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  background: var(--Static-White);
  color: var(--dark);
  scrollbar-gutter: stable;
}

body {
  scrollbar-gutter: stable;
}

body:has(dialog[open]) {
  overflow: hidden;
}

@media screen and (width <= 768px) {
  body:has(.burger._active) {
    overflow: hidden;
  }
}


.page {
  width: 100%;
}

.page-wrapper {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  background: var(--Static-White);
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: calc(1em/100*18);
  text-transform: uppercase;
}

h2 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: calc(1em/100*16);
  text-transform: uppercase;
}

h3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: calc(1em/100*8);
  text-transform: uppercase;
}

h4 {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 130%;
  letter-spacing: calc(1em/100*5);
  /* letter-spacing: (1em / 100 * 18); */

  text-transform: uppercase;
}

.action-large {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: calc(1em/100*16);
  text-transform: uppercase;
}

.action-small {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 130%;
  letter-spacing: calc(1em/100*5);
  text-transform: uppercase;
}

.caption {
  font-family: "Allura", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: calc(1em/100*5);
}

.slider__text {
  font-weight: 600;
  font-size: 5rem;
  text-transform: uppercase;
}

li {
  list-style-type:none;
}

  /* page end */
  .scroll-to-top {
    display: none;
    position: fixed;
    bottom: 8px;
    right: 8px;
    width: 56px;
    height: 56px;
    padding: var(--Space-0, 0px);
    justify-content: center;
    align-items: center;
    gap: var(--Space-0, 0px);
    border-radius: 100px;
    border: 1px solid var(--Primary, #FF4646);
    background: var(--Static-White, #FFF);
    z-index: 10;
    cursor: pointer;
  }

  /* header start */

.header {
    display: flex;
    padding: 0px 8px;
    flex-direction: column;
    align-items: center;
    gap: var(--Space-0, 0px);
    align-self: stretch;
    background: var(--Static-White);
    width: 100%;
    position: relative;
  }

.header-container {
    display: flex;
    max-width: 1276px;
    padding: 12px 0px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

.logo__container {
    display: flex;
    padding: var(--Space-8, 8px) var(--Space-20, 20px);
    align-items: center;
    gap: var(--Space-8, 8px);
  }

.logo {
  width: 24px;
  height: 24px;
}

.logo__text {
  color: var(--Dark);
  text-decoration: none;
  letter-spacing: 0.6px;
}

.nav__container {
  display: flex;
  padding: var(--Space-0, 0px);
  justify-content: flex-end;
  align-items: center;
  gap: var(--Space-0, 0px);
  flex: 1 0 0;
  align-self: stretch;
  }

.nav__items {
  display: flex;
  padding: var(--Space-0, 0px);
  align-items: center;
  justify-content: center;
  gap: var(--Space-8, 8px);
  transition: all 0.5s;
}

.nav__item {
  display: flex;
  padding: var(--Space-12, 12px) var(--Space-20, 20px);
  justify-content: center;
  align-items: center;
  gap: var(--Space-0, 0px);
  border-radius: 12px;
  transition: all .2s ease-in-out
}

@media (pointer: fine) and (hover:hover) {
  .nav__item:hover {
    background-color: var(--Primary10);
    color: var(--Primary);
    transition: all .4s ease-in-out
  }
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--Space-8, 8px);
  position: relative;
  cursor: pointer;
}

.burger span {
  width: 20px;
  position: absolute;
  left: 10px;
  transition: all 0.2s ease 0s;
  background-color: var(--Dark, #181C29);
  }

.span1{
  top: 16px;
  height: 2px;
}

.span2 {
  bottom: 16px;
  height: 2px;
}

.burger._active .span1 {
    top: 50%;
    transform: rotate(-45deg);
    transition: all 0.3s ease 0s;
  }

.burger._active .span2 {
    top: 50%;
    transform: rotate(45deg);
    transition: all 0.3s ease 0s;
  }

@media screen and (width <= 768px) {

  .burger {
    display: flex;
    transition: all 0.4s ease 0s;
  }

  .nav__items {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    top: 60px;
    right: -100%;
    height: 0vh;
    transition: all 0.5s ease 0s;
    opacity: 0;
    background: var(--Static-White, #FFF);
    overflow: hidden;
    z-index: 1;
  }

  .nav__items._active {
    right: 0;
    height: 100vh;
    width: 100%;
    opacity: 1;
    transition: all 0.5s ease 0s;
    }

  .nav__link {
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: calc(1em/100*16);
  }
}

  /* header end */

.main {
  width: 100%;
}

  /* hero start */

.main-section {
  display: flex;
  padding: var(--Space-60, 60px) var(--Space-8, 8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--Space-0, 0px);
  align-self: stretch;
  background: url("../assets/images/bg-snow.png"), var(--Primary);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.hero {
  width: 100%;
  border-radius: 20px 20px 0px 0px;
  background: url("../assets/images/bg-ball.png"), url("../assets/images/bg-snow.png"),  var(--Primary);
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  }

.hero-container {
  display: flex;
  max-width: 430px;
  padding: var(--Space-60, 60px) var(--Space-0, 0px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--Space-12, 12px);
  align-self:center;
  }

.hero__subtitle {
  align-self: stretch;
  color: var(--Static-White);
  text-align: center;
}

.hero__title {
  align-self: stretch;
  color: var(--Static-White);
  text-align: center;
}

.hero__button {
  display: flex;
  padding: var(--Space-20, 20px) var(--Space-32, 32px);
  justify-content: center;
  align-items: center;
  gap: var(--Space-0, 0px);
  border-radius: 20px;
  background: var(--Dark);
  color: var(--Static-White);
  transition: all .2s ease-in-out;
  cursor: pointer;
}

@media (pointer: fine) and (hover:hover) {
  .hero__button:hover {
    background: var(--Static-White);
    color: var(--Dark);
    transition: all .4s ease-in-out;
  }
}

.hero__button:active {
  animation: dissolve 1s ease-in-out;
  filter: blur(0);
}

@keyframes dissolve {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

.hero__text {
  align-self: stretch;
  color: var(--Static-White);
  text-align: center;
}

  /* hero end */
  /* about start */

.about {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
  padding: var(--Space-60, 60px) var(--Space-8, 8px);
  justify-content: center;
  }

.about-container {
  display: flex;
  max-width: 1276px;
  padding: var(--Space-0, 0px);
  align-items: center;
  gap: var(--Space-0, 0px);
  flex: 1 0 0;
  border-radius: 20px;
  background: var(--Static-White);
}

.about__text-block {
  display: flex;
  padding: 0px;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--Space-0, 0px);
  flex: 1 1 0;
  align-self: stretch;
}

.about__text-box {
  display: flex;
  flex: 1 1 0;
  max-width: 546px;
  padding: 60px 60px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--Space-20, 20px);
  align-self: stretch;
}

.about__subtitle {
  align-self: stretch;
  color: var(--Primary, #FF4646);
}

.about__title,
.about__text {
  align-self: stretch;
  color: var(--Dark, #181C29);
}

.about__img-block {
  display: flex;
  width: 50%;
  height: 528px;
  padding: var(--Space-0, 0px);
  flex: 1 1 0;
  border-radius: 20px;
  align-self: stretch;
  background: url("../assets/images/santa.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (width <= 600px) {
  .about-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .about__text-block {
    padding: 0px 20px;
    width: 100%;
    align-self: stretch;
  }
  .about__img-block {
    width: 100%;
    min-height: 530px;
  }
  .about__text-box {
    max-width: 428px;
    padding: 60px 0px;
  }
}

  /* about end */
  /* slider start */

.slider {
  color: var(--Static-White, #FFF);
  /* width: 100%; */
  overflow: hidden;
}

.slider-container {
  display: flex;
  max-width: 1276px;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--Space-20, 20px);
  width: 100%;
  position: relative;
}

.slider__top {
  display: flex;
  max-width: 426px;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  gap: var(--Space-12, 12px);
  margin: 0 auto;
}

.slider__subtitle {
  align-self: stretch;
  text-align: center;
}

.slider__title {
  align-self: stretch;
  text-align: center;
}

.slider__row {
  display: flex;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--Space-0, 0px);
  width: 100%;
  position: relative;
  height: 200px;
}

.slider__box {
  display: flex;
  padding: var(--Space-0, 0px);
  align-items: center;
  gap: var(--Space-20, 20px);
  position: absolute;
  left: 0;
  transition: all .4s ease-in-out;
  transform: translate(-0px);
}

.slider__text {
  display: flex;
  padding: var(--Space-0, 0px);
  align-items: center;
  gap: var(--Space-20, 20px);
}

.slider__image-container {
  display: flex;
  width: 200px;
  height: 200px;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--Space-0, 0px);
  border-radius: 20px;
}

.slider__img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.slider__bottom {
  display: flex;
  padding: var(--Space-0, 0px);
  justify-content: flex-end;
  align-items: center;
  gap: var(--Space-20, 20px);
  width: 100%;
}

.slider__btn {
  display: flex;
  width: 56px;
  height: 56px;
  padding: var(--Space-0, 0px);
  justify-content: center;
  align-items: center;
  gap: var(--Space-0, 0px);
  border-radius: 20px;
  background-color: var(--Primary);

  color: var(--Static-White);
  border: 1px solid var(--Static-White);
  pointer-events: all;
  cursor: pointer;
}

@media (pointer: fine) and (hover:hover) {
  .slider__btn:hover {
    background-color: var(--Static-White);
    transition: all .3s ease-in-out;
  }
  .slider__btn:hover svg {
    stroke: var(--Primary);
    transition: all .2s ease-in-out;
  }
}

.slider__btn svg {
  stroke-opacity: 1;
  stroke: var(--Static-White);
}

.disabled {
  color: var(--Static-White-40);
  border: 1px solid var(--Static-White-40, rgba(255, 255, 255, 0.40));
  pointer-events: none;
}

.arrow-left,
.arrow-right {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.disabled svg {
  stroke-opacity: 0.4;
  stroke: var(--Static-White);
}



  /* slider end */

  /* gifts  start */

.gifts-container {
  display: flex;
  width: 100%;
  max-width: 1276px;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--Space-20, 20px);
  align-self: center;
}

.gifts__text {
  display: flex;
  max-width: 426px;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  gap: var(--Space-12, 12px);
  align-self: center;
  color: var(--Static-White, #FFF);
}

.gifts__subtitle {
  align-self: stretch;
  text-align: center;
}

.gifts__title {
  align-self: stretch;
  text-align: center;
}

.gifts__cards {
  display: flex;
  padding: var(--Space-0, 0px);
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: var(--Space-12, 12px);
  align-self: stretch;
  flex-wrap: wrap;
}

.card {
  display: flex;
  width: 310px;
  height: 342px;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  gap: var(--Space-0, 0px);
  border-radius: 20px;
  background: var(--Content-Background, #ECF3F8);
  cursor: pointer;
}

@media (pointer: fine) and (hover:hover){
  .card:hover .card__name {
  color: var(--Primary);
  transition: all .3s ease-in-out
  }
}

.card__image-container {
  display: flex;
width: 310px;
height: 230px;
padding: var(--Space-0, 0px);
flex-direction: column;
justify-content: center;
align-items: center;
gap: var(--Space-0, 0px);
flex-shrink: 0;
}

.card__text-container {
  display: flex;
  padding: var(--Space-20, 20px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--Space-8, 8px);
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  background: var(--Static-White);
}

.card[data-for="For Work"] {
  color: var(--Tag-Purple);
}

.card[data-for="For Work"] .card__image-container {
  background: url("../assets/images/gift-for-work.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.card[data-for="For Harmony"] {
  color: var(--Tag-Pink);
}

.card[data-for="For Harmony"] .card__image-container {
  background: url("../assets/images/gift-for-harmony.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.card[data-for="For Health"] {
  color: var(--Tag-Green);
}

.card[data-for="For Health"] .card__image-container {
  background: url("../assets/images/gift-for-health.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.card__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-self: stretch;
  overflow: hidden;
  color: var(--Dark, #181C29);
  text-overflow: ellipsis;
  transition: all .1s ease-in-out;
  text-overflow: ellipsis;
}

  /* gifts end */
  /* cta  start */

.cta {
  border-radius: 0px 0px 20px 20px;
  background: url("../assets/images/bg-forest.png"), url("../assets/images/bg-snow.png"),  var(--Primary);
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
}

.cta-container {
  display: flex;
  max-width: 1276px;
  padding: var(--Space-60, 60px) var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: var(--Space-0, 0px);
  border-radius: 20px;
  width: 100%;
  color: var(--Static-White, #FFF);
}
.cta-wrapper {
  display: flex;
  max-width: 426px;
  padding: var(--Space-60, 60px) var(--Space-0, 0px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--Space-20, 20px);
}

.cta__title {
  text-align: center;
}

.cta__content {
  display: flex;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  gap: var(--Space-8, 8px);
}

.cta__timer {
  display: flex;
padding: var(--Space-8, 8px) var(--Space-12, 12px) var(--Space-12, 12px) var(--Space-12, 12px);
align-items: center;
gap: var(--Space-0, 0px);
border-radius: 20px;
background: var(--Static-White-40, rgba(255, 255, 255, 0.40));
}

.timer__container {
  display: flex;
  width: var(--Size-80, 80px);
  padding: var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  gap: var(--Space-0, 0px);
}

/* @keyframes blink {
  0% { opacity: 0.5 }
  25% { opacity: 1 }
  50% { opacity: 1 }
  75% { opacity: 1 }
  100% { opacity: 0.5 }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#letter1 {
  display: inline-block;
  animation-name: blink, rotate;
  animation-duration: 10s, 2s;
  animation-iteration-count: infinite, infinite;
}

#letter {
  display: inline-block;
  animation-name: rotate;
  animation-duration: 60s;
  animation-iteration-count: infinite;
}

.timer__period {
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: 1;
} */

.timer__separator {
  width: 1px;
  height: 20px;
  background: var(--Static-White-40, rgba(255, 255, 255, 0.40));
}

  /* cta end */

  /* footer start */

.footer {
  display: flex;
  padding: var(--Space-60, 60px) var(--Space-8, 8px);
  flex-direction: column;
  align-items: center;
  gap: var(--Space-0, 0px);
  background: var(--Static-White, #FFF);
  width: 100%;
}

.footer-container {
  display: flex;
  max-width: 1276px;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  gap: var(--Space-60, 60px);
  width: 100%;
}

.footer__icon {
  width: var(--Size-80, 80px);
  height: var(--Size-80, 80px);
}

.footer__contacts {
  display: flex;
  padding: var(--Space-0, 0px);
  justify-content: center;
  align-items: center;
  gap: var(--Space-12, 12px);
  align-self: stretch;
  border-radius: 60px;
}

@media screen and (width <= 1060px) {
  .footer__contacts {
    flex-direction: column;
  }
}

.footer__item {
  display: flex;
  padding: var(--Space-20, 20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--Space-12, 12px);
  flex: 1 0 0;
  border-radius: 20px;
  background: var(--Content-Background, #ECF3F8);
  cursor: pointer;
  transition: all .1s ease-in-out;
  width: 100%;
}

@media (pointer: fine) and (hover:hover) {
  .footer__item:hover {
    color: var(--Primary);
    transition: all .3s ease-in-out
  }
}

.footer__title {
vertical-align:baseline;
}

.footer__icons {
  display: flex;
  padding: var(--Space-0, 0px);
  flex-direction: column;
  align-items: center;
  gap: var(--Space-12, 12px);
  align-self: stretch;
}

.socials {
  display: flex;
  padding: var(--Space-0, 0px);
  justify-content: center;
  align-items: flex-start;
  gap: var(--Space-12, 12px);
}

.socials__link {
  display: flex;
  padding: var(--Space-8, 8px);
  justify-content: center;
  align-items: center;
  gap: var(--Space-0, 0px);
  cursor: pointer;
  transition: all .1s ease-in-out;
  stroke: var(--Dark);
}

@media (pointer: fine) and (hover:hover) {
  .socials__link:hover {
    stroke: var(--Primary);
    transition: all .3s ease-in-out
  }

  .school-link:hover {
    color: var(--Primary);
    transition: all .3s ease-in-out
  }
}

  /* footer end */

@media screen and (prefers-reduced-motion: reduce) {
  * {
    /* Very short durations means JavaScript that relies on events still works */
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
