html {
  scroll-behavior: smooth;
}


/* Header */
.headerBgr__wrapper {
  background-image: url("../assets/images/Background1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 973px;
  position: relative;
  transition: background-position 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1442px;
  margin: 0 auto;
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 65px 0 0 0;
  justify-content: space-between;
  position: relative;
}

.header__logo_link {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 200;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 83px;
}

.nav__link {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 165%;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: 0.5s ease;
}

.nav__link:hover,
.nav__link.active {
  color: rgb(255, 67, 10);
}

/* Burger */
.burger {
  width: 30px;
  height: 20px;
  position: relative;
  pointer-events: none;
  display: none;
  z-index: 1001;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: white;
  left: 0;
  transition: all 0.3s ease;
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.burger::after,
.burger::before,
.burger::after {
  background: white;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger::before {
  top: 0;
}

.burger.active::before {
  transform: rotate(45deg);
  top: 9px;
}

.burger.active::after {
  transform: rotate(-45deg);
  bottom: 9px;
}

.burger::after,
.burger::before,
.burger span {
  transition: 0.3s ease;
}

.burger span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.burger.active span {
  opacity: 0;
}

/* Burger nav */
.burger__nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 24%;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* для Safari */
  background: rgba(20, 20, 20, 0.2);
  box-shadow: inset 20px 0 30px rgba(0, 0, 0, 0.2),
    inset -20px 0 30px rgba(0, 0, 0, 0.2);

  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 50;
}

.burger__nav.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.burger__nav_wrapper {
  display: flex;
  justify-content: end;
  padding: 10px 20px;
}

.burger__nav_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
  padding-top: 70px;
}

.burger__nav_link {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.burger__nav_link.active {
  color: rgb(255, 67, 10);
}

/* Intro section */
.intro {
  position: relative;
  z-index: 10;
  padding-bottom: 113px;
}

.intro__content {
  margin-top: 155px;
}

.intro__title {
  max-width: 751px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
}

.intro__title span {
  color: rgb(255, 67, 10);
}

.intro__text {
  max-width: 720px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 125%;
  color: rgb(255, 255, 255);
  margin-top: 30px;
}

.intro__text span {
  font-weight: 500;
  color: rgb(255, 205, 156);
}

/* .btn__link {
  display: inline-block;
  width: 350px;
  height: 92px;
  background-image: url("../assets/images/Btn.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  position: relative;
  margin-top: 70px;
} */

/* .btn__link span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  pointer-events: none;
} */

.decor1 {
  position: absolute;
  top: 233px;
  right: 41px;
  z-index: 11;
}

.decor1__img,
.decor5__img {
  animation: soft-shake 4s infinite ease-in-out;
}

@keyframes soft-shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(6px, -6px);
  }
  50% {
    transform: translate(-6px, 6px);
  }
  75% {
    transform: translate(6px, 6px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.decor2__img,
.decor6__img {
  animation: shake 4s infinite ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(3px, -3px) rotate(0.8deg);
  }
  50% {
    transform: translate(-3px, 3px) rotate(-0.8deg);
  }
  75% {
    transform: translate(3px, 3px) rotate(0.8deg);
  }
}

.decor3__img,
.decor4__img {
  animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.decor2 {
  position: absolute;
  top: 905px;
  left: 237px;
  z-index: 11;
}

/* Popular section */
.popular__wrapper {
  /* background-image: linear-gradient(rgba(13, 14, 22, 0.8)),
    url("../assets/images/Background2.png"); */
  background: linear-gradient(
      to bottom,
      rgba(13, 14, 22, 0.8),
      rgba(13, 14, 22, 0.8)
    ),
    url("../assets/images/Background2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 962px;
  position: relative;
}

.popular__content {
  max-width: 1054px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 270px;
}

.popular__title {
  max-width: 950px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 700;
  font-size: 65px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: rgb(255, 255, 255);
}

.popular__title span {
  color: rgb(255, 67, 10);
}

.popular__text {
  max-width: 1054px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 100%;
  text-align: center;
  color: rgb(255, 255, 255);
  margin-top: 39px;
}

.popular__text span {
  font-weight: 500;
  color: rgb(255, 205, 156);
}

/* .popularBtn {
  margin-top: 77px;
} */

.decor3 {
  position: absolute;
  top: 115px;
  left: 0;
  z-index: 12;
}

.decor3_mob {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 20;
  display: none;
}

.decor4 {
  position: absolute;
  top: 660px;
  right: 34px;
  z-index: 12;
}

.decor4_mob {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  display: none;
}

.decor4__mob_hiden {
  position: absolute;
  top: 0;
  right: 0;
  width: 221px;
  height: 300px;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

/* Pushing section */
.pushing__wrapper {
  background-image: url("../assets/images/Background3.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 960px;
  transition: background-position 0.3s ease;
}

.pushing__container {
  max-width: 1615px;
  display: flex;
  justify-content: end;
}

.pushing__content {
  max-width: 705px;
  margin-top: 197px;
}
.pushing__title {
  max-width: 690px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.pushing__title span {
  color: rgb(255, 67, 10);
}

.pushing__text {
  max-width: 705px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 100%;
  color: #fff;
  margin-top: 50px;
}

.pushing__text_mob {
  max-width: 337px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  display: none;
}

.pushing__text_mob span {
  color: #ffcd9c;
}

.pushing__text span {
  font-weight: 500;
  color: #ffcd9c;
}

.decor5 {
  position: absolute;
  top: 178px;
  left: 50px;
  z-index: 13;
  pointer-events: none;
}

.background {
  background-color: #0d0e16;
  width: 100%;
  min-height: 40px;
  display: none;
}

/* Fresh section */
.fresh__wrapper {
  background: linear-gradient(
      to bottom,
      rgba(13, 14, 22, 0.8),
      rgba(13, 14, 22, 0.8)
    ),
    url("../assets/images/Background4.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 962px;
}

.fresh__content {
  max-width: 1263px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 175px;
}

.fresh__title {
  max-width: 925px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: rgb(255, 255, 255);
}

.fresh__title span {
  color: rgb(255, 67, 10);
}

.fresh__text {
  max-width: 1263px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 100%;
  text-align: center;
  color: rgb(255, 255, 255);
  margin-top: 48px;
}

.fresh__text span {
  display: inline-block;
  font-weight: 500;
  color: rgb(255, 205, 156);
  padding-top: 40px;
}

.decor6__mob_hiden {
  position: absolute;
  top: 0;
  right: 0;
  width: 155px;
  height: 730px;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.decor6 {
  position: absolute;
  top: -48px;
  right: -49px;
  z-index: 13;
}

/* Footer */
.footer__wrapper {
  background: #0d0e16;
  padding: 100px;
}

.footer__container {
  max-width: 1451px;
  margin: 0 auto;
}

.nextStep__subtitle {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 52%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.nextStep__text {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 20px;
  line-height: 52%;
  color: #fff;
}

.nextStep__email_icon {
  background: url("../assets/images/icon/email.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
}

.nextStep__email_link {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0.04em;
  color: #ff430a;
  text-decoration: none;
}

.nextStep__email {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__content {
  max-width: 670px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.address__subtitle {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #fff;
}

.address__text {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #fff;
}

.company__text {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  letter-spacing: 0.05em;
  color: #fff;
}

.company__text span {
  font-weight: 700;
}

.footer__contacts {
  display: flex;
  justify-content: space-between;
  margin-top: 105px;
}

/* Адаптив */
@media (max-width: 1800px) {
  .decor1 {
    max-width: 785px;
  }

  .decor2 {
    max-width: 650px;
  }

  .decor5 {
    left: 100px;
  }
}

@media (max-width: 1600px) {
  .headerBgr__wrapper {
    background-position: 70% center;
  }

  .pushing__wrapper {
    background-position: 35% center;
  }

  .decor2 {
    left: 100px;
  }

  .decor3 {
    max-width: 350px;
  }

  .decor5 {
    left: 120px;
  }
}

@media (max-width: 1500px) {
  .headerBgr__wrapper,
  .popular__wrapper,
  .pushing__wrapper,
  .fresh__wrapper {
    padding: 0 60px;
  }

  .decor1 {
    max-width: 685px;
  }

  .intro__title,
  .popular__title,
  .pushing__title,
  .fresh__title {
    font-size: 54px;
  }

  .intro__text,
  .popular__text,
  .pushing__text,
  .fresh__text {
    font-size: 32px;
  }

  /* .btn__link {
    width: 300px;
    height: 80px;
  } */

  /* .btn__link span {
    font-size: 20.5px;
  } */

  .decor2 {
    max-width: 600px;
    top: 920px;
  }

  .decor3 {
    max-width: 300px;
    top: 52px;
  }

  .pushing__wrapper {
    background-position: 20% center;
  }

  .decor5 {
    max-width: 750px;
  }
}

@media (max-width: 1366px) {
  .decor1 {
    max-width: 580px;
  }

  .decor2 {
    max-width: 650px;
    top: 902px;
  }

  .decor3 {
    max-width: 310px;
  }

  .decor5 {
    max-width: 600px;
  }

  .decor6 {
    max-width: 155px;
  }

  .intro__content {
    margin-top: 100px;
  }

  .popular__content {
    padding-top: 290px;
  }

  .popular__title,
  .intro__title,
  .pushing__title,
  .fresh__title {
    font-size: 58px;
  }

  .popular__text,
  .intro__text,
  .pushing__text,
  .fresh__text {
    font-size: 35px;
  }
}

@media (max-width: 1180px) {
  .header__inner {
    padding: 50px 0 0 0;
  }

  .logo__icon svg {
    width: 32px;
    height: 32px;
  }

  .logo__latters svg {
    width: 175px;
  }

  .nav__link {
    font-size: 16px;
  }

  .intro__title {
    max-width: 550px;
    font-size: 40px;
  }

  .intro__text {
    max-width: 550px;
    font-size: 25px;
  }

  /* .btn__link {
    width: 250px;
    height: 65px;
  } */

  /* .btn__link span {
    font-size: 15.5px;
  } */

  .decor2 {
    max-width: 650px;
    top: 870px;
  }

  .popular__content {
    max-width: 600px;
  }

  .popular__title {
    font-size: 40px;
  }

  .popular__text {
    font-size: 25px;
  }

  .pushing__content {
    margin-top: 225px;
  }

  .pushing__title {
    font-size: 40px;
  }

  .pushing__text {
    font-size: 25px;
    margin-top: 45px;
  }

  .fresh__content {
    padding-top: 225px;
  }

  .fresh__title {
    font-size: 40px;
  }

  .fresh__text {
    font-size: 25px;
  }

  .footer__wrapper {
    padding: 100px 50px 100px;
  }
}

@media (max-width: 1024px) {
  .decor1 {
    max-width: 515px;
    top: 285px;
  }

  .decor2 {
    max-width: 560px;
    top: 890px;
    left: 70px;
  }

  .decor3 {
    max-width: 230px;
  }

  .pushing__wrapper {
    min-height: 800px;
  }

  .pushing__content {
    max-width: 550px;
  }

  .fresh__wrapper {
    min-height: 800px;
  }

  .footer__contacts {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 430px) {
  .headerBgr__wrapper {
    background-image: url("../assets/images/mob/Background_mobNew.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
    width: 100%;
    min-height: 100svh;
  }

  .header__inner {
    padding: 40px 0 0 0;
  }

  .logo__icon svg {
    width: 26px;
    height: 27px;
  }

  .logo__latters svg {
    width: 150px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: block;
    pointer-events: auto;
  }

  .burger::before,
  .burger::after {
    display: block;
  }

  .burger span {
    display: block;
  }

  .decor1 {
    max-width: 300px;
    top: 550px;
  }

  .decor5 {
    top: 350px;
    left: 0;
    max-width: 400px;
  }

  .decor2 {
    left: 10px;
    max-width: 410px;
  }

  .decor3 {
    display: none;
  }

  .decor3_mob {
    display: block;
    max-width: 350px;
    bottom: -202px;
    left: 30px;
  }

  .decor4 {
    display: none;
  }

  .decor4_mob {
    display: block;
    top: -17px;
    right: 0;
  }

  .decor3_mob,
  .decor4_mob {
    animation: pulse 4s infinite ease-in-out;
  }

  @keyframes pulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
  }

  .intro {
    padding-bottom: 0;
  }

  .intro__content {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
  }

  .container {
    max-width: 390px;
  }

  .intro__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
  }

  .intro__text {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: #fff;
    max-width: 337px;
    margin-top: 15px;
  }

  .intro__text span {
    font-weight: 500;
    color: #b1fcff;
  }

  .popular__wrapper,
  .pushing__wrapper,
  .fresh__wrapper {
    padding: 0;
  }

  .intro__title {
    max-width: 355px;
  }

  .popular__title {
    max-width: 348px;
    font-size: 48px;
    line-height: 75%;
  }

  .popular__text {
    max-width: 337px;
    font-size: 30px;
    line-height: 100%;
    margin-top: 24px;
  }

  .popular__content {
    padding-top: 265px;
  }


  .pushing {
    background-color: #030206;
  }

  .pushing__wrapper {
    background-image: url("../assets/images/mob/Background_mob1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    min-height: 1012px;
  }

  .pushing__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 550px;
  }

  .pushing__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 75%;
    text-align: center;
  }

  .pushing__text {
    max-width: 337px;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
  }

  .fresh__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 75%;
    text-align: center;
  }

  .fresh__text {
    max-width: 337px;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
  }

  .fresh__content {
    padding-top: 228px;
  }

  .footer__wrapper {
    padding: 100px 50px 100px;
  }

  .footer__contacts {
    flex-direction: column;
    gap: 15px;
  }

  .nextStep__subtitle {
    font-size: 40px;
  }
}
