html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

*,
*::before,
*::after {
  box-sizing: border-box; }

:root {
  --top-bar-padding-inline: 16px;
  --top-bar-padding-block: 20px; }

.button-contact, .button-big, .button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #f9512e;
  transition: all 0.3s; }
  .button-contact:focus, .button-big:focus, .button-arrow:focus {
    color: #b2341a;
    outline: none; }

.button-contact, .button-arrow, .nav__link, .footer__link {
  position: relative;
  width: fit-content; }
  .button-contact::after, .button-arrow::after, .nav__link::after, .footer__link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: currentColor;
    transform: scale(0);
    transition: transform 0.3s; }
  .button-contact:hover::after, .button-arrow:hover::after, .nav__link:hover::after, .footer__link:hover::after {
    transform: scale(1); }

.header__title, .products__title, .about__title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  line-height: 85%;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #f9512e; }
  @media (min-width: 639.98px) {
    .header__title, .products__title, .about__title {
      font-size: 56px; } }
  @media (min-width: 1023.98px) {
    .header__title, .products__title, .about__title {
      font-size: 72px; } }

@keyframes move {
  0% {
    transform: translateY(-200%); }
  100% {
    transform: translateY(-40%); } }

@keyframes move-mobile {
  0% {
    transform: translateY(-200%); }
  100% {
    transform: translateY(0); } }

@keyframes scale {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

@keyframes opacity {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes top-bar-move {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }

@keyframes rotate {
  0% {
    transform: rotate(0); }
  25% {
    transform: rotate(-15deg); }
  50% {
    transform: rotate(15deg); }
  75% {
    transform: rotate(-15deg); }
  100% {
    transform: rotate(0); } }

@keyframes arrow-move {
  0% {
    transform: translateX(0); }
  25% {
    transform: translateX(-5px); }
  50% {
    transform: translateX(5px); }
  75% {
    transform: translateX(-5px); }
  100% {
    transform: translateX(0); } }

@keyframes blink {
  0% {
    color: #fff; }
  25% {
    color: #f9512e; }
  50% {
    color: #fff; }
  75% {
    color: #f9512e; }
  100% {
    color: #fff; } }

@font-face {
  font-family: "Inter";
  src: url("./Inter-Regular.9d8ec52b.woff2") format("woff2"), url("./Inter-Regular.845b86a3.woff") format("woff"), url("./Inter-Regular.7951e3c2.ttf") format("ttf");
  font-display: swap;
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Inter";
  src: url("./Inter-Medium.c6998dac.woff2") format("woff2"), url("./Inter-Medium.5d0089bd.woff") format("woff"), url("./Inter-Medium.c48570a4.ttf") format("ttf");
  font-display: swap;
  font-weight: 500;
  font-style: normal; }

.page {
  scroll-behavior: smooth;
  min-height: 100vh;
  background-color: #ffeefc; }
  .page:has(.page__menu:target) {
    overflow: hidden; }
  .page:has(.page__contact:target) .page__contact-title {
    animation: blink 4s ease-out 500ms 1 forwards; }
  .page__body {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #1c1a26;
    background-color: #ffeefc; }
  .page__menu {
    position: fixed;
    z-index: 5;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: all 0.3s; }
    .page__menu:target {
      opacity: 1;
      pointer-events: all;
      transform: translateX(0); }
  .page__goTop-btn {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    right: 30px;
    border: none;
    outline: none;
    background-color: #fba28f;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 30px;
    line-height: 30px;
    width: 50px;
    z-index: 2;
    height: 50px;
    bottom: -70px;
    transition-property: background-color, bottom;
    transition-duration: 0.3s; }
    .page__goTop-btn--show {
      bottom: 20px; }
    .page__goTop-btn:hover {
      background-color: #f9512e; }

.container {
  margin-inline: auto;
  max-width: 308px;
  padding-inline: 10px; }
  @media (min-width: 639.98px) {
    .container {
      max-width: 710px;
      padding-inline: 15px; } }
  @media (min-width: 1023.98px) {
    .container {
      max-width: 1142px; } }
  @media (min-width: 1199.98px) {
    .container {
      max-width: 1222px; } }

.button-contact:hover .button-contact__svg {
  animation: rotate 0.7s; }

.button-big {
  padding-block: 14px;
  border: 2px solid currentColor;
  border-radius: 32px; }
  .button-big:hover {
    background-color: #f9512e;
    color: #fff; }
  .button-big:hover::after {
    display: none; }
  .button-big:focus {
    background-color: #b2341a;
    color: #fff; }

.button-arrow {
  width: fit-content; }
  .button-arrow::after {
    transform-origin: left; }
  .button-arrow__svg {
    fill: currentColor; }
  .button-arrow:hover .button-arrow__svg {
    animation: arrow-move 0.7s; }

.icon {
  display: block;
  fill: currentColor;
  width: 24px;
  height: 24px; }

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 24px; }
  @media (min-width: 1023.98px) {
    .nav__list {
      flex-direction: row;
      gap: 56px; } }

.nav__item {
  display: flex;
  justify-content: center;
  align-items: center; }
  .nav__item--extra-padding {
    padding-top: 8px; }

.nav__link {
  display: block;
  padding-inline: 4px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: #1c1a26;
  transition: color 0.3s; }
  .nav__link:hover {
    color: #f9512e; }
  .nav__link:focus {
    color: #b2341a;
    outline-color: currentColor; }
  .nav__link--contact {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #f9512e; }

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--top-bar-padding-block) var(--top-bar-padding-inline); }
  @media (min-width: 1023.98px) {
    .top-bar {
      --top-bar-padding-block: 28px;
      --top-bar-padding-inline: 32px; } }
  .top-bar__logo-link {
    display: flex; }
  .top-bar__logo {
    height: 32px;
    transform: scale(1);
    transition: transform 0.3s; }
    .top-bar__logo:hover {
      transform: scale(1.2); }
  .top-bar__button {
    color: #1c1a26;
    transition: color 0.3s; }
    .top-bar__button:hover {
      color: #f9512e; }
  @media (min-width: 1023.98px) {
    .top-bar__menu {
      display: none; } }

.header {
  min-height: min(100vh, 700px);
  background-color: #ffeefc; }
  @media (min-width: 1023.98px) {
    .header {
      min-height: min(100vh, 960px);
      position: relative;
      z-index: 2; } }
  .header__top-bar {
    transform: translateY(-100%);
    animation: top-bar-move 0.7s ease-out 2.5s 1 forwards; }
  .header__nav {
    display: none; }
    @media (min-width: 1023.98px) {
      .header__nav {
        display: flex; } }
  .header__bottom {
    --grid-columns: 2;
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    column-gap: 16px;
    padding-block: 32px 40px; }
    @media (min-width: 639.98px) {
      .header__bottom {
        --grid-columns: 8;
        gap: 24px; } }
    @media (min-width: 639.98px) {
      .header__bottom {
        padding-block: 80px 228px; } }
    @media (min-width: 1023.98px) {
      .header__bottom {
        padding-block: 135px 161px; } }
    @media (min-width: 1199.98px) {
      .header__bottom {
        padding-block: 144px 138px; } }
  .header__text {
    grid-column: 1 / -1;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: opacity 0.7s ease-out 2s 1 forwards; }
    @media (min-width: 639.98px) {
      .header__text {
        max-width: 280px;
        text-align: left;
        margin-bottom: 146px; } }
    @media (min-width: 1023.98px) {
      .header__text {
        max-width: 260px;
        margin-bottom: 8px; } }
    @media (min-width: 1199.98px) {
      .header__text {
        max-width: 280px;
        margin-bottom: 40px; } }
  .header__title {
    grid-column: 1 / -1;
    position: relative;
    font-weight: 400;
    font-size: 64px;
    text-align: center;
    z-index: 4;
    --grid-columns: 2;
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    column-gap: 16px; }
    @media (min-width: 639.98px) {
      .header__title {
        --grid-columns: 8;
        gap: 24px; } }
    @media (min-width: 639.98px) {
      .header__title {
        margin-bottom: 210px;
        font-size: 80px; } }
    @media (min-width: 1023.98px) {
      .header__title {
        font-size: 136px;
        margin-bottom: 64px; } }
    @media (min-width: 1199.98px) {
      .header__title {
        font-size: 144px; } }
    .header__title::after {
      content: "";
      display: block;
      width: 100%;
      padding-bottom: 100%;
      background-image: url("./Cookie.f1774288.webp");
      background-size: cover;
      background-position: center;
      grid-column: 1 / -1;
      animation: move-mobile 1s; }
      @media (min-width: 639.98px) {
        .header__title::after {
          background-image: url("./Cookie.b40b3b18.webp");
          position: absolute;
          z-index: -1;
          top: 0;
          transform: translateY(-40%);
          grid-column: 3 / 7;
          animation: move 1s; } }
      @media (min-width: 1023.98px) {
        .header__title::after {
          background-image: url("./Cookie.65de6b28.webp"); } }
      @media (min-width: 1199.98px) {
        .header__title::after {
          background-image: url("./Cookie.e8f96dff.webp"); } }
  .header__title-content {
    grid-column: 1 / -1;
    transform: scale(0);
    animation: scale 1s ease-out 1s 1 forwards; }
  .header__button {
    grid-column: 1 / -1;
    opacity: 0;
    animation: opacity 0.7s ease-out 2s 1 forwards; }
    @media (min-width: 639.98px) {
      .header__button {
        grid-column: 3 / 7; } }
    @media (min-width: 1023.98px) {
      .header__button {
        grid-column: 1 / 3; } }

.menu {
  background-color: #ffeefc; }
  .menu__top-bar {
    padding-top: 0;
    position: sticky;
    top: var(--top-bar-padding-block);
    z-index: 1;
    background-color: #ffeefc; }
  .menu__nav-wrapper {
    position: relative;
    height: 100vh;
    width: 100%; }
  .menu__nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-block: 64px 72px;
  background-color: #ffeefc; }
  @media (min-width: 639.98px) {
    .main {
      padding-block: 0 152px; } }
  @media (min-width: 1023.98px) {
    .main {
      position: relative;
      z-index: 2;
      padding-block: 0 56px; } }

.products__title {
  margin-bottom: 24px; }

.products__content {
  --grid-columns: 2;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  column-gap: 16px;
  row-gap: 56px; }
  @media (min-width: 639.98px) {
    .products__content {
      --grid-columns: 8;
      gap: 24px; } }
  @media (min-width: 639.98px) {
    .products__content {
      row-gap: 80px; } }

.products__description {
  letter-spacing: -0.01em;
  grid-column: 1 / -1; }

.products__cards-row {
  display: flex;
  flex-direction: column;
  gap: 56px;
  grid-column: span 2; }
  @media (min-width: 639.98px) {
    .products__cards-row {
      grid-column: span 8;
      flex-direction: row;
      gap: 24px; } }
  @media (min-width: 1023.98px) {
    .products__cards-row {
      grid-column: span 6; } }
  @media (min-width: 1023.98px) {
    .products__cards-row--right {
      grid-column: 3 / -1; } }

@media (min-width: 639.98px) {
  .card {
    width: 50%; } }

.card__img {
  display: flex;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: center center;
  transition: all 0.3s; }
  .card__img:hover {
    transform: scale(1.01);
    box-shadow: 0 0 28px #fba28f; }

.card__title {
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #7f8096; }

.card__text {
  margin-bottom: 16px; }

.about__content {
  --grid-columns: 2;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  column-gap: 16px; }
  @media (min-width: 639.98px) {
    .about__content {
      --grid-columns: 8;
      gap: 24px; } }
  @media (min-width: 639.98px) {
    .about__content {
      background-image: url("./crumbs.c12ad6e8.webp");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center; } }

.about__title {
  margin-bottom: 32px;
  grid-column: span 2; }
  @media (min-width: 639.98px) {
    .about__title {
      grid-column: span 4; } }
  @media (min-width: 1023.98px) {
    .about__title {
      font-size: 72px; } }

.about__description {
  letter-spacing: -0.01em;
  margin-bottom: 64px;
  grid-column: span 2; }
  @media (min-width: 639.98px) {
    .about__description {
      grid-column: span 4;
      margin-bottom: 80px; } }
  @media (min-width: 1023.98px) {
    .about__description {
      margin-bottom: 146px; } }

.data-list {
  grid-column: span 2;
  background-image: url("./crumbs.c12ad6e8.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  --grid-columns: 2;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  column-gap: 16px;
  row-gap: 48px; }
  @media (min-width: 639.98px) {
    .data-list {
      background-image: none;
      grid-column: span 8; } }
  @media (min-width: 639.98px) {
    .data-list {
      --grid-columns: 8;
      gap: 24px; } }
  .data-list__group {
    grid-column: span 2; }
    @media (min-width: 639.98px) {
      .data-list__group {
        grid-column: span 4; } }
  .data-list__term {
    margin-bottom: 8px;
    font-size: 96px;
    line-height: 85%;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #f9512e; }

.social {
  grid-area: social;
  display: flex;
  gap: 32px; }
  .social__link {
    display: flex;
    fill: currentColor;
    color: #f9512e;
    transition: color 0.3s; }
    .social__link:hover {
      color: #fff; }

.footer {
  --gap: 16px;
  padding-block: 61px 56px;
  background-color: #1c1a26; }
  @media (min-width: 1023.98px) {
    .footer {
      position: sticky;
      z-index: 1;
      bottom: 0; } }
  @media (min-width: 639.98px) {
    .footer {
      padding-block: 88px; } }
  .footer__content {
    --grid-columns: 2;
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    column-gap: 16px;
    row-gap: 40px;
    grid-template-areas: "lg lg" "menu menu" "cu cu" "call-us call-us" "email-us email-us" "social social" "copyright copyright"; }
    @media (min-width: 639.98px) {
      .footer__content {
        --grid-columns: 8;
        gap: 24px; } }
    @media (min-width: 639.98px) {
      .footer__content {
        row-gap: 40px;
        grid-template-areas: "lg lg lg lg cu cu cu cu" "menu menu menu menu call-us call-us call-us call-us" "menu menu menu menu email-us email-us email-us email-us" "social social social social copyright copyright copyright copyright"; } }
    @media (min-width: 1023.98px) {
      .footer__content {
        row-gap: 40px;
        grid-template-areas: "lg lg lg lg cu cu cu cu" "menu menu menu menu call-us call-us email-us email-us" "social social social social copyright copyright copyright copyright"; } }
  .footer__logo {
    display: flex;
    width: fit-content;
    height: 40px;
    grid-area: lg;
    transition: transform 0.3s; }
    .footer__logo:hover {
      transform: scale(1.2); }
  .footer__menu {
    grid-area: menu;
    margin-bottom: 24px; }
    @media (min-width: 1023.98px) {
      .footer__menu {
        margin-bottom: 8px; } }
  .footer__subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #7f8096;
    margin-bottom: var(--gap); }
  .footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--gap); }
  .footer__link {
    display: block;
    letter-spacing: -0.01em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s; }
    .footer__link:hover {
      color: #f9512e; }
  .footer__contacts-title {
    grid-area: cu;
    font-size: 48px;
    line-height: 85%;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #fff;
    width: min-content; }
    @media (min-width: 639.98px) {
      .footer__contacts-title {
        font-size: 56px; } }
    @media (min-width: 1023.98px) {
      .footer__contacts-title {
        font-size: 72px;
        width: fit-content; } }
  .footer__call-us {
    grid-area: call-us; }
  .footer__email {
    grid-area: email-us; }
    @media (min-width: 639.98px) {
      .footer__email {
        margin-bottom: 8px; } }
  .footer__copyright {
    grid-area: copyright;
    letter-spacing: -0.01em;
    color: #7f8096; }

::-webkit-scrollbar {
  width: 10px; }

::-webkit-scrollbar-track {
  background-color: #ffeefc;
  transition: background-color 0.3s; }
  ::-webkit-scrollbar-track:hover {
    background-color: rgba(105, 105, 105, 0.3); }

::-webkit-scrollbar-thumb {
  background-color: #fba28f;
  border-radius: 5px;
  transition: background-color 0.3s; }
  ::-webkit-scrollbar-thumb:hover {
    background-color: #f9512e; }


/*# sourceMappingURL=/main.48b3db1d.css.map */