@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  overflow-x: hidden;
}

.content {
  position: relative;
  overflow: hidden;
}

.wrapper {
  max-width: 1440px;
  min-width: 380px;
  margin: 0 auto;
}

.wrapper-padding {
  padding: 60px 2%;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 82px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .header__container {
    padding: 0px 8px;
  }
}

.logo {
  display: flex;
  align-items: center;
  margin: 12px 0;
  padding: 8px 20px;
  text-decoration: none;
  column-gap: 8px;
  cursor: pointer;
}

.logo__text {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #181C29;
}

.logo__img {
  background-image: url("pictures/svgs/snowflake.svg");
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
}

.nav {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

a {
  text-decoration: none;
}

.nav__list {
  display: flex;
  column-gap: 8px;
  margin: 0;
  padding: 0;
}
.nav__list a {
  display: block;
  color: #181C29;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 20px;
}

.list__item {
  list-style-type: none;
}

.hero-section__content {
  background-image: url(pictures/backgrounds/bg-ball.png), url(pictures/backgrounds/bg-snow.png);
  background-color: #FF4646;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.hero-section__container {
  max-width: 426px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.caption {
  font-family: Allura, cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

h1 {
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
}

.button {
  background-color: #181C29;
  padding: 20px 32px;
  max-width: 235px;
  border-radius: 20px;
  margin: 0 auto;
  text-align: center;
}

.button__link--black {
  color: #FFFFFF;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-section__caption-1 {
  margin: 60px 0px 12px;
}

.hero-section__header-1 {
  margin: 0;
  margin-bottom: 12px;
}

.hero-section__caption-2 {
  margin: 12px 0px 60px;
}

.about-section__container {
  display: flex;
  flex-direction: row;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin: 0 82px;
  max-height: 528px;
}
@media (max-width: 1200px) {
  .about-section__container {
    margin: 0 4%;
  }
}
@media (max-width: 1000px) {
  .about-section__container {
    margin: 0 3%;
  }
}
@media (max-width: 900px) {
  .about-section__container {
    margin: 0 2%;
  }
}
@media (max-width: 800px) {
  .about-section__container {
    margin: 0 1%;
  }
}
@media (max-width: 767px) {
  .about-section__container {
    flex-direction: column;
    max-height: none;
    margin: 0 8px;
  }
}

.about-section__text-container {
  margin: 100px 152px 100px 60px;
}
@media (max-width: 1000px) {
  .about-section__text-container {
    margin: 46px 8%;
  }
}
@media (max-width: 400px) {
  .about-section__text-container {
    margin: 0 20px;
    max-width: 324px;
  }
}

.about-section__caption {
  display: inline-block;
  color: #FF4646;
  margin-top: 60px;
  margin-bottom: 20px;
}

h2 {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #181C29;
  margin: 0;
}

.about-section__paragraph {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #181C29;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media (min-width: 1440px) {
  .about-section__paragraph {
    width: 426px;
  }
}
@media (max-width: 1288px) {
  .about-section__paragraph {
    min-width: 256px;
  }
}

.about-section__image-container {
  width: 100%;
  min-width: 376px;
}
@media (max-width: 767px) {
  .about-section__image-container {
    min-width: 364px;
  }
}

.about-section__image {
  background-image: url(pictures/big_images/santa.png);
  width: 100%;
  height: 528px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.slider-section {
  background-color: #FFFFFF;
}

.background {
  background-color: #FF4646;
  background-image: url(pictures/backgrounds/bg-snow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 0px;
}

.slider-over {
  overflow: hidden;
}

.slider-section__text-content {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.slider-text-container__caption {
  color: #FFFFFF;
  display: inline-block;
}

.slider-test-container__h-2 {
  color: #FFFFFF;
  text-align: center;
}

.row {
  margin: 20px 0px;
}

.slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  overflow: hidden;
  width: 1993px;
  column-gap: 20px;
  justify-content: center;
}

.slider__image {
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.slider__image-1 {
  background-image: url(pictures/big_images/snowman.png);
}

.slider__image-2 {
  background-image: url(pictures/big_images/christmas-trees.png);
}

.slider__image-3 {
  background-image: url(pictures/big_images/christmas-tree-ball.png);
}

.slider__image-4 {
  background-image: url(pictures/big_images/fairytale-house.png);
}

.slider__span {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 98px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.slider-secttion__content {
  margin: 0 82px;
  transition: margin 0.5s ease;
}
@media (max-width: 1200px) {
  .slider-secttion__content {
    margin: 0 8px;
  }
}

.container-buttons {
  display: flex;
  column-gap: 20px;
  justify-content: end;
}

.slider__button {
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  background-color: transparent;
  padding: 27px;
  transition: background-color 0.5s ease-in-out;
}

.left-button {
  background-image: url(pictures/small_images/arrow-left.png);
  background-position: center;
  background-repeat: no-repeat;
}

.right-button {
  background-image: url(pictures/small_images/arrow-right.png);
  background-position: center;
  background-repeat: no-repeat;
}

.best-gifts__content {
  padding: 60px 0px;
  background-color: #FF4646;
  background-image: url(pictures/backgrounds/bg-snow.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.best-gifts__content .best-gifts__container {
  margin: 0 8px;
}
.best-gifts__content .best-gifts__container .best-gifts__header {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  text-align: center;
}
.best-gifts__content .best-gifts__container .best-gifts__header .best-gifts__h-2 {
  color: #FFFFFF;
}

h3 {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #181C29;
  margin: 0;
}

h4 {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.h-4--blue {
  color: #4361FF;
}

.h-4--green {
  color: #06A44F;
}

.h-4--pink {
  color: #FF43F7;
}

.best-gifts__cards {
  display: flex;
  flex-direction: row;
  column-gap: 12px;
  row-gap: 12px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cards-container__card {
  background-color: #ECF3F8;
  border-radius: 20px;
  cursor: pointer;
}

.card-image {
  width: 310px;
  height: 230px;
  background-color: transparent;
  background-size: cover;
  background-position: center;
}

.card-text {
  width: 310px;
  height: 72px;
}

.card-one__image, .card-three__image {
  background-image: url(pictures/big_images/gift-for-work.png);
  background-size: cover;
  background-position: center;
}

.card-two__image {
  background-image: url(pictures/big_images/gift-for-health.png);
  background-size: cover;
  background-position: center;
}

.card-four__image {
  background-image: url(pictures/big_images/gift-for-harmony.png);
  background-size: cover;
  background-position: center;
}

.card-text {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  max-width: 270px;
}

.cta__wrapper-background {
  background-color: #FF4646;
  background-image: url(pictures/backgrounds/bg-forest.png), url(pictures/backgrounds/bg-snow.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.cta__container {
  padding: 60px 0;
  margin: 0 8px;
  display: flex;
  justify-content: center;
}

.cta__content {
  width: 426px;
  margin: 60px auto;
}

.cta__header-2 {
  padding: 60px 0 20px;
  color: #FFFFFF;
  text-align: center;
}

.cta__button {
  padding: 20px 0;
}

.cta__timer-container {
  padding: 19px 0 60px;
}

.cta__timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}

.timer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 8px 12px;
}

.timer__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  height: 52px;
  position: relative;
}
.timer__cell::before {
  display: block;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #FFFFFF;
  position: absolute; /* Позиционируем псевдоэлемент */
  right: 0; /* Местоположение слева */
  top: 50%; /* Вертикальное центрирование */
  transform: translateY(-50%); /* Центрируем по вертикали */
}
.timer__cell:last-child::before {
  display: none;
}

.timer__h-2, .timer__h-4 {
  color: #FFFFFF;
}

.footer__top-container {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
@media (max-width: 1300px) {
  .footer__top-container {
    flex-direction: column;
  }
}

.info-card {
  background-color: #ECF3F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 0 12px;
  row-gap: 12px;
  width: 33%;
}
@media (max-width: 1300px) {
  .info-card {
    width: 100%;
    padding: 0;
  }
}
.info-card span {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #181C29;
}
.info-card h3 {
  padding-bottom: 20px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  padding: 60px 74px;
  row-gap: 60px;
  margin: 0 8px;
}
@media (max-width: 1300px) {
  .footer__content {
    padding: 60px 0;
  }
}

.info-card__image {
  width: 80px;
  height: 80px;
  margin-top: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.info-card__image1 {
  background-image: url(pictures/svgs/santa-claus.svg);
}

.info-card__image2 {
  background-image: url(pictures/svgs/christmas-tree.svg);
}

.info-card__image3 {
  background-image: url(pictures/svgs/snake.svg);
}

.footer__caption {
  color: #181C29;
}

.footer__bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.socials {
  display: flex;
  flex-direction: row;
  column-gap: 12px;
}
.socials a {
  display: block;
  width: 40px;
  height: 40px;
}

.telergram {
  background-image: url(pictures/small_images/telegram.png);
  background-position: center;
  background-repeat: no-repeat;
}

.facebook {
  background-image: url(pictures/small_images/facebook.png);
  background-position: center;
  background-repeat: no-repeat;
}

.insta {
  background-image: url(pictures/small_images/instagram.png);
  background-position: center;
  background-repeat: no-repeat;
}

.x {
  background-image: url(pictures/small_images/X.png);
  background-position: center;
  background-repeat: no-repeat;
}

.copyright {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #181C29;
  margin-bottom: 7px;
}

@media (hover: hover) {
  .footer__caption:hover {
    transition: 0.5s;
    color: #FF4646;
    cursor: pointer;
  }
  .telergram:hover {
    transition: 0.5s;
    background-image: url(pictures/small_images/telegram-red.png);
  }
  .facebook:hover {
    transition: 0.5s;
    background-image: url(pictures/small_images/facebook-red.png);
  }
  .insta:hover {
    transition: 0.5s;
    background-image: url(pictures/small_images/instagram-red.png);
  }
  .x:hover {
    transition: 0.5s;
    background-image: url(pictures/small_images/X-red.png);
  }
  .info-card:hover span {
    transition: 0.5s;
    color: #FF4646;
  }
  .info-card:hover h3 {
    transition: 0.5s;
    color: #FF4646;
  }
  .cards-container__card:hover h3 {
    transition: 0.5s;
    color: #FF4646;
  }
  .list__item:hover {
    transition: 0.5s;
    background-color: rgba(255, 70, 70, 0.1);
    border-radius: 20px;
    cursor: pointer;
  }
  .list__item:hover a {
    transition: 0.5s;
    color: #FF4646;
  }
  .button:hover {
    transition: 0.5s;
    cursor: pointer;
    background-color: #FFFFFF;
  }
  .button:hover a {
    transition: 0.5s;
    color: #181C29;
  }
  .right-button:hover {
    background-image: url(pictures/small_images/arrow-right-hovered.png);
    background-color: #FFFFFF;
    cursor: pointer;
  }
}
.burger {
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  background-color: transparent;
  padding: 16px 10px;
  z-index: 101;
  transition: all 0.5s linear;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }
}
.burger__line {
  position: relative;
  transition: all 0.5s linear;
}
.burger__line::before {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #181C29;
  transition: all 0.5s linear;
  margin: 0 auto;
}

.burger-line-1::before {
  animation: defBurgerMinus 0.5s ease-in forwards;
}

.burger-line-2::before {
  animation: defBurgerPlus 0.5s ease-in forwards;
}

.burger-menu {
  transform: translateX(100%);
  transition: all 0.5s linear;
  position: absolute;
  right: 0%;
  top: 0%;
  background-color: #FFFFFF;
  display: none;
  width: 100%;
  transition: all 0.5s ease-in-out;
  z-index: 100;
  height: calc(100vh - 64px);
  margin-top: 64px;
}
@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }
}

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

.no-vertical-scroll {
  overflow-y: hidden;
}

.burger-cross {
  row-gap: 0px;
}

.plus45::before {
  animation: linePlus 0.5s ease-in forwards;
}

.minus45::before {
  animation: lineMinus 0.5s ease-in forwards;
}

.nav-burger {
  background-color: #FFFFFF;
  height: 100%;
}
.nav-burger__list {
  padding: 0;
  list-style-type: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.list-burger {
  row-gap: 8px;
  margin: 0;
}
.list-burger__item {
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.list-burger__item a {
  color: #181C29;
  padding: 12px 20px;
  display: block;
}

.card__description {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #181C29;
}

.invisible {
  display: none;
}

.screen-modal {
  background-color: rgba(24, 28, 41, 0.8);
  position: fixed;
  z-index: 800;
  top: 0px;
  width: 100%;
  height: 100vh;
}

.screen-modal--active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal {
  height: 514px;
  max-width: 400px;
  min-width: 364px;
  margin: auto;
  background-color: #ECF3F8;
  border-radius: 20px;
  position: fixed;
}
.modal__image {
  height: 230px;
  background-color: transparent;
  background-size: cover;
  background-position: center;
}
.modal__text-container {
  background-color: #FFFFFF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 20px;
}
.modal__description {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.modal__stat {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.modal__stat-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.modal__score-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 164px;
}
.modal__span {
  display: block;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #181C29;
  width: 184px;
}
.modal__score-span {
  display: block;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #181C29;
  width: 40px;
}
.modal__container-stars {
  display: flex;
  width: 112px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 4px 0;
}

.model__container-stars {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 8px;
}

.star {
  width: 16px;
  height: 16px;
  padding-top: 2px;
}

@keyframes lineMinus {
  0% {
    transform: rotate(0deg);
    width: 20px;
  }
  50% {
    width: 0px;
  }
  100% {
    transform: rotate(-45deg);
    width: 20px;
  }
}
@keyframes linePlus {
  0% {
    transform: rotate(0deg);
    width: 20px;
  }
  50% {
    width: 0px;
  }
  100% {
    transform: rotate(45deg);
    width: 20px;
  }
}
@keyframes defBurgerMinus {
  0% {
    transform: rotate(-45deg);
    width: 20px;
  }
  50% {
    width: 0px;
  }
  100% {
    transform: rotate(0);
    width: 20px;
  }
}
@keyframes defBurgerPlus {
  0% {
    transform: rotate(45deg);
    width: 20px;
  }
  50% {
    width: 0px;
  }
  100% {
    transform: rotate(0);
    width: 20px;
  }
}

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