* {
  font-size: 10px;
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

header {
  max-width: 1440px;
  margin: auto;
  padding: 0 82px;
  background-color: #FFFFFF;
  position: relative;
}
@media (max-width: 796px) {
  header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  header {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.header__menu {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #181C29;
}
.header__logo:hover {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__logo:hover {
    cursor: default;
  }
}
@media (hover: none) and (pointer: coarse) {
  .header__logo:hover {
    cursor: default;
  }
}

.header__navigation {
  display: flex;
  gap: 8px;
}
.header__navigation a {
  padding: 12px 20px;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #181C29;
}
.header__navigation a:hover {
  background-color: rgba(255, 70, 70, 0.1019607843);
  border-radius: 12px;
  color: #FF4646;
}
@media (hover: none) and (pointer: coarse) {
  .header__navigation a:hover {
    cursor: default;
    background-color: transparent;
    color: #181C29;
  }
}
@media (max-width: 768px) {
  .header__navigation {
    display: none;
  }
}

.burger-menu {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 64px;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  border-radius: 20px;
  transform: translateX(100%);
  transition: all 0.6s ease-out;
}
@media (max-width: 768px) {
  .burger-menu {
    display: inline-flex;
  }
}

.burger-menu_visible {
  transform: translateX(0);
}

.burger__navigation {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  top: -30px;
}
.burger__navigation a {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  line-height: 36.48px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  text-align: center;
  color: #181C29;
  text-decoration: none;
  padding: 12px 20px;
}

.burger {
  display: none;
  position: relative;
  width: 40px;
}
.burger::after {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: 15.5px;
  right: calc(50% - 10px);
  background-color: #181C29;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.burger::before {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  top: 15.5px;
  right: calc(50% - 10px);
  background-color: #181C29;
  border-radius: 1px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .burger {
    display: inline-block;
  }
}

.burger_cross::after {
  transform-origin: left;
  transform: rotate(-45deg) translate(0px, 4px);
}
.burger_cross::before {
  transform-origin: left;
  transform: rotate(45deg) translate(0px, -4px);
}

.disable-scrolling {
  overflow-y: hidden;
}

.hero {
  max-width: 1440px;
  margin: auto;
  padding: 60px 82px;
  background-color: #FF4646;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-image: url("./assets/img/bg-snow.png"), url("./assets/img/bg-ball.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 796px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.hero__container {
  max-width: 426px;
  margin: auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__container .caption {
  font-family: Allura;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFFFFF;
}
.hero__container .title {
  font-family: Montserrat;
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
}
.hero__container .button {
  width: 235px;
  height: 56px;
  padding: 20px 32px;
  border: none;
  border-radius: 20px;
  background-color: #181C29;
  transition: all 0.3s ease;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
}
.hero__container .button:hover {
  background-color: #FFFFFF;
  color: #181C29;
  cursor: pointer;
}
@media (hover: none) and (pointer: coarse) {
  .hero__container .button:hover {
    background-color: #181C29;
    color: #FFFFFF;
    cursor: default;
  }
}

.about {
  max-width: 1440px;
  margin: auto;
  padding: 60px 82px;
  background-color: #FF4646;
  background-image: url("./assets/img/bg-snow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 796px) {
  .about {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .about {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.about__content {
  display: flex;
  width: 100%;
  border-radius: 20px;
  background-color: #FFFFFF;
}
@media (max-width: 767px) {
  .about__content {
    flex-direction: column;
  }
}

.text-wrapper {
  flex: 1 1 50%;
}
@media (max-width: 767px) {
  .text-wrapper {
    flex: 1 1 auto;
    height: auto;
  }
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 100px 152px 100px 60px;
  padding: 60px 0;
}
.text-content .caption {
  font-family: Allura;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FF4646;
}
.text-content .title {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  line-height: 36.48px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  text-align: left;
  color: #181C29;
}
.text-content .paragraph {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.68px;
  text-align: left;
  color: #181C29;
}
@media (max-width: 768px) {
  .text-content {
    margin: 46px 60px;
  }
}
@media (max-width: 767px) {
  .text-content {
    margin: 0 20px;
  }
}

.img-wrapper {
  background-image: url("./assets/img/santa.png");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  flex: 1 1 50%;
}
@media (max-width: 767px) {
  .img-wrapper {
    flex: 1 1 auto;
    height: 528px;
  }
}

.slider-section {
  max-width: 1440px;
  margin: auto;
  padding: 60px 82px;
  background-color: #FF4646;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  background-image: url("./assets/img/bg-snow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 796px) {
  .slider-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .slider-section {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-title .caption {
  font-family: Allura;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFFFFF;
}
.section-title .title {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  line-height: 36.48px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}
.slider-container .slider-text {
  font-family: Montserrat;
  font-size: 80px;
  font-weight: 600;
  line-height: 97.52px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}
.slider-container .slider-image {
  border-radius: 20px;
}

.slider-buttons-container {
  display: flex;
  justify-content: end;
  gap: 20px;
}
.slider-buttons-container .slider-button.active {
  width: 56px;
  height: 56px;
  background: none;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
}
.slider-buttons-container .slider-button.active path {
  stroke-opacity: 1;
}
.slider-buttons-container .slider-button.active:hover {
  background-color: #FFFFFF;
  cursor: pointer;
}
.slider-buttons-container .slider-button.active:hover path {
  stroke: #FF4646;
}
@media (hover: none) and (pointer: coarse) {
  .slider-buttons-container .slider-button.active:hover {
    background: none;
    cursor: default;
  }
  .slider-buttons-container .slider-button.active:hover path {
    stroke: #FFFFFF;
  }
}
.slider-buttons-container .slider-button.inactive {
  width: 56px;
  height: 56px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
}

.best-gifts {
  max-width: 1440px;
  margin: auto;
  padding: 60px 82px;
  background-color: #FF4646;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-image: url("./assets/img/bg-snow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 796px) {
  .best-gifts {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .best-gifts {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.card {
  width: 310px;
  height: 342px;
  border-radius: 20px;
  background-color: #ECF3F8;
}
.card:hover {
  cursor: pointer;
}
.card:hover .card__header {
  color: #FF4646;
}
@media (hover: none) and (pointer: coarse) {
  .card:hover {
    cursor: default;
  }
  .card:hover .card__header {
    color: #181C29;
  }
}
.card .card__label {
  width: 100%;
  height: 112px;
  padding: 20px;
  border-radius: 20px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card .card__tag {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 600;
  line-height: 15.6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: left;
  color: #181C29;
}
.card .card__tag_purple {
  color: #4361FF;
}
.card .card__tag_green {
  color: #06A44F;
}
.card .card__tag_pink {
  color: #FF43F7;
}
.card .card__header {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 24.32px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  text-align: left;
  color: #181C29;
}

.cta {
  max-width: 1440px;
  margin: auto;
  padding: 60px 82px;
  background-color: #FF4646;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-image: url("./assets/img/bg-snow.png"), url("./assets/img/bg-forest.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 796px) {
  .cta {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .cta {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.cta__container {
  max-width: 426px;
  margin: auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta__container .cta__header {
  padding-top: 60px;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  line-height: 36.48px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
}
.cta__container .button {
  width: 235px;
  height: 56px;
  padding: 20px 32px;
  border: none;
  border-radius: 20px;
  background-color: #181C29;
  transition: all 0.3s ease;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
}
.cta__container .button:hover {
  background-color: #FFFFFF;
  color: #181C29;
  cursor: pointer;
}
@media (hover: none) and (pointer: coarse) {
  .cta__container .button:hover {
    background-color: #181C29;
    color: #FFFFFF;
    cursor: default;
  }
}

.timer-container {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timer-container .caption {
  font-family: Allura;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFFFFF;
}

.timer {
  display: flex;
  justify-content: center;
  padding: 8px 12px 12px 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
}
.timer .timer__cell {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.timer .timer__cell::after {
  position: absolute;
  content: "";
  bottom: 16px;
  right: 0;
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.4);
}
.timer .timer__cell:last-child {
  position: static;
}
.timer .time {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  line-height: 36.48px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
}
.timer .timer__label {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 600;
  line-height: 15.6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
}

.footer {
  max-width: 1440px;
  margin: auto;
  padding: 60px 82px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}
@media (max-width: 796px) {
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.contacts {
  display: flex;
  gap: 12px;
  width: 100%;
}
@media (max-width: 1210px) {
  .contacts {
    flex-direction: column;
  }
}

.contacts__card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  background-color: #ECF3F8;
  border-radius: 20px;
  text-decoration: none;
}
.contacts__card:hover {
  cursor: pointer;
}
.contacts__card:hover .contacts__link {
  color: #FF4646;
}
.contacts__card:hover .contacts__label {
  color: #FF4646;
}
@media (hover: none) and (pointer: coarse) {
  .contacts__card:hover {
    cursor: default;
  }
  .contacts__card:hover .contacts__link {
    color: #181C29;
  }
  .contacts__card:hover .contacts__label {
    color: #181C29;
  }
}
.contacts__card .contacts__link {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  line-height: 36.48px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  text-align: center;
  color: #181C29;
}
.contacts__card .contacts__label {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 24.32px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  text-align: center;
  color: #181C29;
}

.link-container {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.link-container .link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.link-container .link:hover path {
  stroke: #FF4646;
}
@media (hover: none) and (pointer: coarse) {
  .link-container .link:hover path {
    stroke: #181C29;
  }
}

.social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social .paragraph {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.68px;
  text-align: center;
  color: #181C29;
}
.social .rsschool-link {
  font-family: Allura;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #181C29;
  text-decoration: none;
}
.social .rsschool-link:hover {
  color: #FF4646;
}
@media (hover: none) and (pointer: coarse) {
  .social .rsschool-link:hover {
    color: #181C29;
  }
}

.area-outside-the-modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
  transition: display 1s ease;
}

.area-outside-the-modal_enabled {
  display: block;
}

.area-outside-the-modal_disabled {
  display: none;
}

.modal {
  width: 400px;
  display: flex;
  flex-direction: column;
  background-color: #ECF3F8;
  border-radius: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 152;
}
@media (max-width: 767px) {
  .modal {
    width: 364px;
  }
}

.modal__image-container {
  width: 100%;
  height: 230px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.modal__image-purple {
  background-image: url("./assets/img/gift-for-work.png");
}

.modal__image-green {
  background-image: url("./assets/img/gift-for-health.png");
}

.modal__image-pink {
  background-image: url("./assets/img/gift-for-harmony.png");
}

.modal__label {
  padding: 20px;
  border-radius: 20px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__header-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal__header-container .modal__tag {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 600;
  line-height: 15.6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: left;
  color: #181C29;
}
.modal__header-container .modal__tag_pink {
  color: #FF43F7;
}
.modal__header-container .modal__tag_purple {
  color: #4361FF;
}
.modal__header-container .modal__tag_green {
  color: #06A44F;
}
.modal__header-container .modal__header {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 24.32px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  text-align: left;
  color: #181C29;
}
.modal__header-container .modal__description {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.68px;
  text-align: left;
  color: #181C29;
}

.modal__details-container .modal__details-title {
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #181C29;
  margin-bottom: 8px;
}

.detail {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail .detail__title {
  flex-grow: 1;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.68px;
  text-align: left;
  color: #181C29;
}
.detail .detail__value {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.68px;
  text-align: left;
  color: #181C29;
}
.detail .detail__graphic-value-container {
  display: flex;
  gap: 8px;
}
.detail .detail__graphic-value-container .value-point {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__close-button {
  width: 40px;
  height: 40px;
  padding: 10px;
  position: absolute;
  top: 12px;
  right: 12px;
}
.modal__close-button::after {
  content: "";
  width: 28px;
  height: 2px;
  position: absolute;
  bottom: 19px;
  right: calc(50% - 14px);
  background-color: #181C29;
  border-radius: 100px;
  transform: rotate(-45deg);
}
.modal__close-button::before {
  content: "";
  width: 28px;
  height: 2px;
  position: absolute;
  top: 19px;
  right: calc(50% - 14px);
  background-color: #181C29;
  border-radius: 100px;
  transform: rotate(45deg);
}
.modal__close-button:hover {
  cursor: pointer;
  background-color: rgba(255, 70, 70, 0.1019607843);
  border-radius: 12px;
}
@media (hover: none) and (pointer: coarse) {
  .modal__close-button:hover {
    background-color: transparent;
  }
}

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