:root {
  --blue: #00338E;
  --white: #ffffff;
  --font-heading: 'Odds';
  --font-subheading: 'Iskra';
}

@font-face {
  font-family: "Odds";
  src: url("../fonts/Odds/Odds-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Iskra";
  src: url("../fonts/Iskra/iskra_medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: url("../imgs//background_main.png") center/cover no-repeat;
  overflow-x: hidden;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.main {
  flex: 1 0 auto;
}

/* Components */
.language {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.language.show {
  display: flex;
}
.language__menu {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 40%;
  height: 50%;
  padding: 40px;
  border-radius: 40px;
}
.language {
  z-index: 100;
}
.language__choice {
  font-size: 1vw;
  text-decoration: none;
  color: var(--blue);
  border: 1px var(--blue) solid;
  border-radius: 15px;
  padding: 10px;
  width: 80%;
  height: 15%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.language__choice:hover {
  background: #dedede;
}

.header {
  padding: 15px 100px;
  --header-background: rgba(255, 255, 255, 0.3);
  --header-link-color: var(--blue);
}
.header__container {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--header-background);
  border-radius: 100px;
}
.header__logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 84px;
  transform: translate(-25%, -50%);
}
.header__nav {
  display: flex;
}
.header__link {
  color: var(--header-link-color);
  font-weight: bold;
  text-decoration: none;
}
.header__language {
  position: absolute;
  right: 5%;
  translate: 5% 0;
  width: 40px;
  height: 40px;
  background-color: var(--blue);
  -webkit-mask: url("/assets/imgs/header/language.png") no-repeat center;
  mask: url("/assets/imgs/header/language.png") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  cursor: pointer;
}

.hero {
  --hero-title-font-family: var(--font-heading);
  --hero-title-color: var(--blue);
  position: relative;
}
.hero__background {
  width: 100%;
  display: block;
}
.hero__background.mobile {
  display: none;
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 13vw 0 0 5vw;
}
.hero__title {
  font-family: var(--hero-title-font-family);
  font-size: 7vw;
  line-height: 1;
  color: var(--hero-title-color);
  text-shadow: 0.3vw 0.3vw 0 white, -0.3vw 0.3vw 0 white, 0.3vw -0.3vw 0 white, -0.3vw -0.3vw 0 white;
}

.promo {
  --promo-title-font: var(--font-heading);
  --promo-title-color: var(--blue);
  height: 60vw;
  position: relative;
}
.promo__container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo__title {
  color: var(--promo-title-color);
  font-family: var(--promo-title-font);
  font-size: 5vw;
  line-height: 120%;
  z-index: 3;
  text-shadow: 0.3vw 0.3vw 0 white, -0.3vw 0.3vw 0 white, 0.3vw -0.3vw 0 white, -0.3vw -0.3vw 0 white;
  text-align: center;
}
.promo__decor {
  position: absolute;
  z-index: 2;
}
.promo__decor--eggs {
  width: 25%;
  bottom: -5%;
  left: 0;
}
.promo__decor--milk {
  width: 25%;
  top: -5%;
  left: 0;
}
.promo__decor--flour {
  width: 25%;
  right: 0;
  bottom: 0;
}
.promo__decor--chocolate {
  width: 20%;
  right: 5%;
  top: 0;
  translate: -5% 0;
}
.promo__decor--line {
  width: 100%;
  bottom: 20%;
  z-index: 1;
}
.promo__decor--light {
  width: 100%;
  z-index: 1;
}

.flavors {
  --flavors-title-font: var(--font-heading);
  --flavors-description-font: var(--font-subheading);
  --flavor-name-font: var(--font-subheading);
  --flavors-title-font-color: var(--blue);
  --flavors-description-font-color: var(--blue);
  --flavor-name-font-color: var(--blue);
  position: relative;
}
.flavors__container {
  position: relative;
}
.flavors__background {
  width: 100%;
}
.flavors__content {
  position: absolute;
  top: 15%;
  left: 10%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flavors__title {
  color: var(--flavors-title-font-color);
  font-family: var(--flavors-title-font);
  font-size: 5vw;
  line-height: 120%;
  text-wrap: nowrap;
}
.flavors__description {
  color: var(--flavors-description-font-color);
  font-family: var(--flavors-description-font);
  font-size: 2vw;
  line-height: 150%;
  text-wrap: nowrap;
}
.flavors__slider {
  position: absolute;
  bottom: 10%;
  width: 100%;
  height: 50%;
}
.flavors__slider__viewport {
  height: 100%;
  overflow: hidden;
}
.flavors__slider__track {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  touch-action: pan-y;
  user-select: none;
  will-change: transform;
  cursor: grab;
  padding: 0 20px;
  -webkit-user-drag: none;
}
.flavors__slider__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3vw;
  position: relative;
  min-width: calc(33.3333333333% - 10px);
  flex: 1 1 30%;
}
.flavors__slider__card:hover .flavor__item__decor {
  transform: translate(-50%, -50%) scale(1) rotate(0);
}

.flavor__image {
  position: relative;
  display: block;
  width: 80%;
  z-index: 2;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.flavor__name {
  color: var(--flavor-name-font-color);
  font-family: var(--flavor-name-font);
  font-size: 1.5vw;
  text-align: center;
  z-index: 2;
  text-wrap: nowrap;
}
.flavor__item__decor {
  position: absolute;
  width: 100%;
  top: 30%;
  left: 50%;
  z-index: 1;
  transition: 0.5s;
  display: block;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.flavor__item__decor:nth-child(1) {
  transition-delay: 0.04s;
  transform: translate(-50%, -50%) scale(0) rotate(18deg);
}
.flavor__item__decor:nth-child(2) {
  transition-delay: 0.08s;
  transform: translate(-50%, -50%) scale(0) rotate(21deg);
}
.flavor__item__decor:nth-child(3) {
  transition-delay: 0.12s;
  transform: translate(-50%, -50%) scale(0) rotate(24deg);
}
.flavor__item__decor:nth-child(4) {
  transition-delay: 0.16s;
  transform: translate(-50%, -50%) scale(0) rotate(27deg);
}
.flavor__item__decor:nth-child(5) {
  transition-delay: 0.2s;
  transform: translate(-50%, -50%) scale(0) rotate(30deg);
}
.flavor__item__decor:nth-child(6) {
  transition-delay: 0.24s;
  transform: translate(-50%, -50%) scale(0) rotate(33deg);
}
.flavor__item__decor:nth-child(7) {
  transition-delay: 0.28s;
  transform: translate(-50%, -50%) scale(0) rotate(36deg);
}
.flavor__item__decor:nth-child(8) {
  transition-delay: 0.32s;
  transform: translate(-50%, -50%) scale(0) rotate(39deg);
}
.flavor__item__decor:nth-child(9) {
  transition-delay: 0.36s;
  transform: translate(-50%, -50%) scale(0) rotate(42deg);
}
.flavor__item__decor:nth-child(10) {
  transition-delay: 0.4s;
  transform: translate(-50%, -50%) scale(0) rotate(45deg);
}
.flavor__item__decor:nth-child(11) {
  transition-delay: 0.44s;
  transform: translate(-50%, -50%) scale(0) rotate(48deg);
}

.creative {
  --creative-title-font: var(--font-heading);
  --creative-title-font-color: var(--blue);
  --creative-description-font: var(--font-subheading);
  --creative-description-font-color: var(--blue);
  --creative-button-color: var(--blue);
  --creative-button-color-hover: #022C79FF;
  --creative-button-font-color: var(--white);
  --creative-button-font: var(--font-base);
}
.creative__container {
  position: relative;
}
.creative__background {
  width: 100%;
}
.creative__content {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.creative__title {
  color: var(--creative-title-font-color);
  font-family: var(--creative-title-font);
  text-align: center;
  font-size: 4vw;
  text-shadow: 0.3vw 0.3vw 0 white, -0.3vw 0.3vw 0 white, 0.3vw -0.3vw 0 white, -0.3vw -0.3vw 0 white;
  text-wrap: nowrap;
}
.creative__description {
  color: var(--creative-description-font-color);
  font-family: var(--creative-description-font);
  text-align: center;
  font-size: 2vw;
  text-wrap: nowrap;
}
.creative__button {
  color: var(--creative-button-font-color);
  background-color: var(--creative-button-color);
  font-family: var(--creative-button-font);
  text-decoration: none;
  padding: 2vw 5vw;
  border-radius: 50px;
  cursor: pointer;
  font-size: 2vw;
  text-wrap: nowrap;
}
.creative__button:hover {
  background-color: var(--creative-button-color-hover);
}

.footer {
  --footer-background: var(--blue);
  --footer-company-color: rgba(255, 255, 255, 0.5);
  --footer-link-color: var(--white);
  flex-shrink: 0;
  background: var(--footer-background);
}
.footer__container {
  padding: 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.footer__info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
  text-align: center;
}
.footer__company {
  color: var(--footer-company-color);
}
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--footer-link-color);
  text-decoration: none;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo img {
  width: 50%;
}

/* Layout */
@media (max-width: 1024px) {
  .language__menu {
    width: 80%;
    height: 50%;
  }
  .language__choice {
    font-size: 3vw;
  }
  .header {
    padding: 15px 50px;
  }
  .hero__background {
    display: none;
  }
  .hero__background.mobile {
    display: block;
  }
  .hero__title {
    font-size: 14vw;
  }
  .footer__info {
    flex-direction: column;
    gap: 30px;
  }
  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
}

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