html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

button {
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat-Regular"), url("../../assets/fonts/MontserratRegular.woff2") format("woff2"), url("../../assets/fonts/MontserratRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat-SemiBold"), url("../../assets/fonts/MontserratSemiBold.woff2") format("woff2"), url("../../assets/fonts/MontserratSemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Allura";
  src: local("Allura-Regular"), url("../../assets/fonts/AlluraRegular.woff2") format("woff2"), url("../../assets/fonts/AlluraRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 82px;
}

.stop-scroll {
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

.burger {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 40px;
  height: 40px;
  background-color: transparent;
  position: relative;
}
.burger__line {
  position: absolute;
  width: 20px;
  left: 10px;
  height: 2px;
  background-color: #181c29;
  -webkit-transition: rotate 0.2s ease;
  transition: rotate 0.2s ease;
}
.burger__line:nth-child(1) {
  top: 15px;
}
.burger__line:nth-child(2) {
  bottom: 15px;
}

@media (max-width: 768px) {
  .burger {
    display: block;
    z-index: 4;
  }
  .burger.active .burger__line:nth-child(1) {
    top: 19px;
    rotate: 45deg;
  }
  .burger.active .burger__line:nth-child(2) {
    bottom: 19px;
    rotate: -45deg;
  }
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  padding: 8px 20px;
}
.header__logo img {
  margin-right: 8px;
  width: 24px;
  height: 24px;
}
.header .logo {
  position: relative;
  z-index: 4;
}
.header .logo__title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.header .nav {
  -ms-flex-line-pack: center;
      align-content: center;
}
.header .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.header .nav__item {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.header .nav__item:nth-child(1) .nav__link {
  color: #ff4646;
  background-color: rgba(255, 70, 70, 0.1);
  pointer-events: none;
}
.header .nav__link {
  padding: 12px 20px;
  border-radius: 12px;
  -webkit-transition: color 0.2s ease-out, background-color 0.2s ease-out;
  transition: color 0.2s ease-out, background-color 0.2s ease-out;
}
@media (hover: hover) {
  .header .nav__link:hover {
    color: #ff4646;
    background-color: rgba(255, 70, 70, 0.1);
  }
}

.gifts .container {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ff4646;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
.gifts .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../../assets/image/bg-garland.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.gifts__container {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 21px;
}
.gifts__title {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-align: center;
  max-width: 15em;
}
.gifts__buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
}
.gifts__button {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.gifts__button-tab {
  background-color: inherit;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.gifts__button-tab.active {
  background-color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
@media (hover: hover) {
  .gifts__button-tab:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.gifts__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}

.card {
  background-color: #ecf3f8;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 310px;
  min-height: 342px;
}
.card__image {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  width: 310px;
  min-height: 230px;
  max-width: none;
}
.card__content {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  padding: 20px;
  text-align: left;
  border-radius: 20px;
  background-color: #fff;
}
@media (hover: hover) {
  .card:hover {
    cursor: pointer;
  }
  .card:hover .card__subtitle {
    color: #ff4646;
  }
}
.card__subtitle {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.08em;
  color: #181c29;
}
.card__title {
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.card__title--green {
  color: #06a44f;
}
.card__title--blue {
  color: #4361ff;
}
.card__title--pink {
  color: #ff43f7;
}

.footer .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer__contacts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ecf3f8;
  border-radius: 20px;
  padding: 20px;
  row-gap: 12px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .footer__contact:hover {
    color: #ff4646;
  }
}
.footer__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.08em;
}
@media (hover: hover) {
  .footer__name:hover {
    color: #ff4646;
  }
}
.footer__image {
  width: 80px;
  height: 80px;
}
.footer__link {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.16em;
}
.footer__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.footer__link-school {
  font-family: "Allura", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .footer__link-school:hover {
    color: #ff4646;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  row-gap: 12px;
}
.footer__descr {
  line-height: 1.48;
  text-transform: none;
}
.footer__social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 196px;
  width: 100%;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.footer__social-link img {
  width: 24px;
  height: 24px;
}
.footer__area {
  display: inline-block;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 40px;
  height: 40px;
}
.footer__area path {
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}
@media (hover: hover) {
  .footer__area:hover path {
    stroke: #ff4646;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .header .nav {
    display: block;
    overflow-x: hidden;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    -webkit-transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
    transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
  }
  .header .nav__list {
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    padding-top: 68px;
    row-gap: 32px;
    height: 100vh;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    right: -100%;
    -webkit-transition: right 0.3s ease-out;
    transition: right 0.3s ease-out;
  }
  .header .nav__list.active {
    right: 0;
  }
  .header .nav__link {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.52;
    letter-spacing: 0.16em;
  }
  .header .nav.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 576px) {
  .gifts__buttons {
    -webkit-column-gap: 1px;
       -moz-column-gap: 1px;
            column-gap: 1px;
  }
  .gifts__button-tab {
    padding: 12px 8px;
  }
}
@media (max-width: 1200px) {
  .footer__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
  }
}
.pop-up {
  content: "";
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(24, 28, 41, 0.8);
  padding: 0 8px;
}
.pop-up__close {
  position: absolute;
  top: 12px;
  right: 12px;
  justify-items: center;
  width: 40px;
  height: 40px;
  background-color: inherit;
  z-index: 15;
  pointer-events: auto;
}
.pop-up__line {
  display: block;
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #181c29;
  pointer-events: none;
}
.pop-up__line:nth-child(1) {
  left: 19px;
  bottom: 5px;
  rotate: 45deg;
}
.pop-up__line:nth-child(2) {
  left: 19px;
  bottom: 5px;
  rotate: -45deg;
}
.pop-up__subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.52;
  letter-spacing: 0.08em;
  color: #181c29;
  margin-bottom: 8px;
}
.pop-up .card {
  position: relative;
  max-width: 400px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  cursor: auto;
}
.pop-up .card__wrapper {
  padding: 20px;
  text-align: left;
  border-radius: 20px;
  background-color: #fff;
}
.pop-up .card__wrapper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
}
.pop-up .card__wrapper-image {
  overflow: hidden;
  height: 230px;
  position: relative;
}
.pop-up .card__content {
  padding: 0;
  padding-bottom: 20px;
}
.pop-up .card__image {
  position: absolute;
  max-width: 400px;
  width: 100%;
  top: -34px;
  left: 0;
}
.pop-up .card__desc {
  text-transform: none;
  line-height: 1.48;
}
.pop-up .card__item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pop-up .card__list-bottom {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pop-up .card__list-snowflakes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.pop-up .card__snowflake {
  width: 16px;
  height: 16px;
}
.pop-up.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 381px) {
  .pop-up .card__image {
    top: -19px;
  }
}
@media (max-width: 768px) {
  .scroll-top {
    display: none;
    position: fixed;
    right: 8px;
    bottom: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100px;
    border: 1px solid #ff4646;
    background-color: inherit;
    cursor: pointer;
    background: #fff;
    z-index: 15;
  }
  .scroll-top svg {
    width: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .scroll-top path {
    stroke: #ff4646;
  }
  .scroll-top.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}/*# sourceMappingURL=style.css.map */