* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  outline: none;
}
.p-lr {
  padding-left: 108px;
  padding-right: 108px;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
}
body {
  background: #fff;
}
nav {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  .logo {
    min-width: 130px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
    }
  }
  .navbar-main {
    display: flex;
    align-items: center;
    gap: 24px;
    .navbar-links {
      display: flex;
      align-items: center;
      gap: 16px;
      .link-menu {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
        .menu-main-link {
          display: flex;
          align-items: center;
          gap: 4px;
          font-weight: 400;
          font-size: 14px;
          line-height: 20px;
          color: #000;
          position: relative;
          img {
            width: 18px;
            height: 18px;
            min-width: 18px;
            transition: 0.25s ease-in-out;
          }
          &::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0%;
            height: 1px;
            background: #000;
            transition: 0.25s ease-in-out;
          }
        }
        .sub-menu {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          position: absolute;
          gap: 6px;
          border: 1px solid #000;
          padding: 12px;
          border-radius: 16px;
          width: max-content;
          background: #fff;
          z-index: 2;
          top: 66px;
          opacity: 0;
          visibility: hidden;
          transition: 0.25s ease-in-out;
          .sub-menu-link {
            font-size: 16px;
            line-height: 24px;
            color: #000;
            font-weight: 400;
            padding-bottom: 6px;
            transition: 0.25s ease-in-out;
            &:hover {
              color: #f2acb9;
            }
          }
        }
        &:hover {
          .menu-main-link {
            img {
              transform: rotate(180deg);
            }
            &::after {
              width: 100%;
            }
          }
          .sub-menu {
            top: 56px;
            opacity: 1;
            visibility: visible;
          }
        }
      }
      .navbar-link {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #000;
        position: relative;
        &::after {
          content: "";
          position: absolute;
          bottom: -4px;
          left: 0;
          width: 0%;
          height: 1px;
          background: #000;
          transition: 0.25s ease-in-out;
        }
        &:hover {
          &::after {
            width: 100%;
          }
        }
      }
    }
    .navbar-main-right {
      display: flex;
      align-items: center;
      gap: 16px;
      .right-links {
        display: flex;
        align-items: center;
        gap: 12px;
        .right-link {
          padding: 12px;
          border: 1px solid #000000;
          border-radius: 100px;
          display: flex;
          align-items: center;
          gap: 8px;
          font-weight: 400;
          font-size: 14px;
          line-height: 22px;
          color: #000;
          transition: 0.25s ease-in-out;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
          }
          &:hover {
            background: #f2acb9;
          }
        }
      }
      .language {
        display: flex;
        flex-direction: column;
        align-items: start;
        position: relative;
        .lang-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 32px;
          height: 32px;
          min-width: 32px;
          transition: 0.25s ease-in-out;
          img {
            width: 100%;
            height: 100%;
          }
        }
        .other-languages {
          display: flex;
          flex-direction: column;
          align-items: start;
          width: 40px;
          position: absolute;
          z-index: 13;
          left: 0;
          top: 50px;
          padding: 4px;
          background: #fff;
          border-radius: 8px;
          border: 1px solid #000;
          gap: 4px;
          transition: 0.3s ease-in-out;
          opacity: 0;
          visibility: hidden;
          .lang-item {
            font-size: 14px;
            line-height: 20px;
            color: #000;
            font-weight: 400;
            width: 100%;
            border-bottom: 1px solid #000;
            text-align: center;
            transition: 0.25s ease-in-out;
            padding-bottom: 4px;
            &:hover {
              color: #f2acb9;
              border-color: #f2acb9;
            }
            &:last-child {
              border-bottom: none;
              padding-bottom: 0;
            }
          }
        }
      }
      .language.active {
        .lang-btn {
          transform: rotate(180deg);
        }
        .other-languages {
          top: 40px;
          opacity: 1;
          visibility: visible;
        }
      }
    }
    .hamburger {
      display: none;
      position: relative;
      width: 28px;
      height: 28px;
      min-width: 28px;
      align-items: center;
      justify-content: center;
      img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transition: 0.25s ease-in-out;
      }
      .hamburgerIcon {
        transform: scale(1);
      }
      .closeIcon {
        transform: scale(0);
      }
    }
    .hamburger.active {
      .hamburgerIcon {
        transform: scale(0);
      }
      .closeIcon {
        transform: scale(1);
      }
    }
  }
}
.mobileMenu {
  position: fixed;
  z-index: 10;
  width: 100%;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow-y: hidden;
  transition: 0.3s ease-in-out;
  .link-menu {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    .menu-main-link {
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      position: relative;
      width: 100%;
    }
    .sub-menu {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      width: 100%;
      padding-left: 6px;
      .sub-menu-link {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        color: #000;
        font-weight: 400;
      }
    }
  }
  .navbar-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    width: 100%;
  }
  .navbar-link2 {
    padding: 10px 12px;
    border: 1px solid #000000;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    width: 100%;
    transition: 0.25s ease-in-out;
    img {
      width: 22px;
      height: 22px;
      min-width: 22px;
    }
    &:hover {
      background: #f2acb9;
    }
  }
}
.mobileMenu.active {
  height: 352px;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow-y: auto;
}
.home-hero-swiper {
  width: 100%;
  height: 700px;
  .home-hero-item {
    width: 100%;
    height: 100%;
    position: relative;
    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-content-container {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: end;
      width: 100%;
      max-width: 1440px;
      height: 100%;
      z-index: 2;
      justify-content: start;
      .hero-content {
        max-width: 580px;
        width: 100%;
        background: #fff;
        padding: 40px 60px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .hero-title {
          font-family: "Montserrat";
          font-weight: 600;
          font-size: 42px;
          line-height: 56px;
          color: #000;
          text-transform: uppercase;
        }
        .hero-description {
          margin-top: 12px;
          p {
            font-weight: 300;
            font-size: 18px;
            line-height: 26px;
            color: #000;
          }
        }
        .more {
          margin-top: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          max-width: 250px;
          width: 100%;
          border: 1px solid #000000;
          border-radius: 100px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
          padding: 12px;
          transition: 0.25s ease-in-out;
          &:hover {
            background: #f2acb9;
          }
        }
      }
    }
  }
  .swiper-pagination-wrapper {
    position: absolute;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    max-width: 1440px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    bottom: 80px;
    .swiper-pagination {
      position: initial;
      width: 240px;
      display: flex;
      align-items: center;
      gap: 10px;
      .swiper-pagination-bullet {
        width: 100%;
        height: 4px;
        display: block;
        opacity: 1;
        background: #dbdbdb;
        border-radius: 100px;
        margin: 0;
        transition: 0.25s ease-in-out;
      }
      .swiper-pagination-bullet-active {
        background: #4d4d4d;
      }
    }
  }
}
.home-about {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .small-title {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
  }
  .normal-title {
    margin-top: 20px;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    color: #000;
    max-width: 570px;
  }
  .more {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 250px;
    width: 100%;
    border: 1px solid #000000;
    border-radius: 100px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    padding: 12px;
    transition: 0.25s ease-in-out;
    &:hover {
      background: #f2acb9;
    }
  }
}
.home-products {
  margin-top: 80px;
  width: 100%;
  padding: 40px 0;
  background: #fef0d6;
  .normal-title {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
  }
  .home-products-swiper {
    margin-top: 48px;
    width: 100%;
    .product-item {
      display: flex;
      align-items: center;
      width: 680px;
      gap: 60px;
      .item-image {
        min-width: 344px;
        width: 344px;
        height: 376px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
          max-width: 344px;
          max-height: 376px;
          object-fit: contain;
        }
      }
      .item-body {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        opacity: 0;
        transition: 0.75s ease-in-out;
        .item-title {
          font-family: "Montserrat";
          font-weight: 400;
          font-size: 26px;
          line-height: 36px;
          color: #000;
        }
        .item-description {
          margin-top: 12px;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #000;
          }
        }
        .more {
          margin-top: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          border: 1px solid #000000;
          border-radius: 100px;
          background: #fff;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
          padding: 12px 16px;
          transition: 0.25s ease-in-out;
          &:hover {
            background: #f2acb9;
          }
        }
      }
    }
    .swiper-slide-active {
      .item-body {
        opacity: 1;
      }
    }
    .swiper-button-pagination {
      position: relative;
      max-width: 1440px;
      width: 100%;
      margin: 48px auto 0;
      display: flex;
      flex-direction: column;
      .swiper-pagination {
        width: 100%;
        background: #fff;
        border-radius: 100px;
        display: flex;
        align-items: center;
        position: initial;
        gap: 0;
        .swiper-pagination-bullet {
          opacity: 1;
          width: 100%;
          margin: 0;
          height: 4px;
          border-radius: 100px;
          background: #fff;
          transition: 0.25s ease-in-out;
        }
        .swiper-pagination-bullet-active {
          background: #000;
        }
      }
      .swiper-buttons {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 20px;
        position: relative;
        margin-left: auto;
        .swiper-button-next,
        .swiper-button-prev {
          position: initial;
          margin: 0;
          width: 50px;
          height: 50px;
          background: #fff;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 100px;
          transition: 0.25s ease-in-out;
          &::after {
            color: #000;
            --swiper-navigation-size: 14px;
          }
          &:hover {
            background: #f2acb9;
          }
        }
      }
    }
  }
}
.how-we-produce {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  .how-we-produce-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
  .how-we-produce-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: center;
      text-transform: uppercase;
      color: #000;
    }
    .description {
      margin-top: 24px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
      }
    }
    .more {
      margin-top: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
}
.home-bePartner {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  .home-bePartner-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
  .home-bePartner-content {
    max-width: 430px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      text-transform: uppercase;
      color: #000;
    }
    .description {
      margin-top: 24px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
      }
    }
    .more {
      margin-top: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
}
.address-banners {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  display: flex;
  gap: 40px 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  .banner-item {
    max-width: 515px;
    width: 100%;
    position: relative;
    height: 490px;
    .bannerImg {
      max-width: 320px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .banner-body {
      position: absolute;
      right: 0;
      bottom: 0;
      max-width: 350px;
      width: 100%;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 20px;
      .body-title {
        font-weight: 500;
        font-size: 20px;
        line-height: 28px;
        color: #000;
        font-family: "Montserrat";
      }
      .more {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        color: #000;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
        }
      }
    }
  }
}
.home-product-info {
  margin-top: 80px;
  padding: 60px 0;
  background: #fef0d6;
  width: 100%;
  .product-info-container {
    display: flex;
    align-items: end;
    gap: 48px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .product-info-image {
      max-width: 600px;
      min-width: 500px;
      width: 100%;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .product-info-content {
      max-width: 580px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background: #ffffff;
      padding: 30px;
      position: relative;
      .content-sticker {
        position: absolute;
        left: 0;
        width: 180px;
        top: -125px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
      .normal-title {
        font-family: "Montserrat";
        font-weight: 500;
        font-size: 32px;
        line-height: 42px;
        text-transform: uppercase;
        color: #000;
      }
      .description {
        margin-top: 24px;
        ul {
          padding-left: 18px;
        }
        p,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
        }
      }
      .more {
        margin-top: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        max-width: 192px;
        width: 100%;
        border: 1px solid #000000;
        border-radius: 100px;
        background: #fff;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        padding: 12px 16px;
        transition: 0.25s ease-in-out;
        &:hover {
          background: #f2acb9;
        }
      }
    }
  }
}
.home-receipts {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 24px;
  margin: 80px auto 0;
  position: relative;
  .receipt-item {
    width: 25%;
    height: 424px;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.25s ease-in-out;
    }
    &:hover {
      img {
        transform: scale(1.1);
      }
    }
    &:first-child {
      width: 50%;
    }
  }
  .quick-link {
    position: absolute;
    bottom: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #000000;
    padding: 20px;
    img {
      width: 24px;
      height: 24px;
      min-width: 24px;
    }
  }
}
.home-contact {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .normal-title {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    color: #000;
  }
  .small-title {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #000;
  }
  .home-contact-items {
    max-width: 580px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    border: 6px solid #fef0d6;
    padding: 60px;
    gap: 16px;
    .home-contact-item {
      display: flex;
      align-items: center;
      max-width: 280px;
      width: 100%;
      gap: 20px;
      .icon {
        min-width: 28px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: auto;
          height: auto;
          max-width: 28px;
          max-height: 28px;
        }
      }
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
      }
    }
  }
}
.infinity-text-container {
  width: 100%;
  padding: 8px 24px;
  background: #5c2a2b;
  margin-top: 60px;
  .infinity-text-swiper {
    width: 100%;
    .swiper-wrapper {
      transition-timing-function: linear;
      .infinity-text-item {
        width: max-content;
        p {
          font-family: "Montserrat";
          font-size: 20px;
          font-weight: 500;
          line-height: 30px;
          color: #fff;
        }
      }
    }
  }
}
footer {
  width: 100%;
  position: relative;
  padding: 40px 0 110px;
  .footer-decoration {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 190px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
  .footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-left: 212px;
    .footer-main {
      width: 100%;
      display: flex;
      align-items: center;
      .footer-logo {
        width: 130px;
        min-width: 130px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
      .footer-links {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-left: 80px;
        .footer-link {
          font-weight: 400;
          font-size: 14px;
          line-height: 22px;
          color: #000;
        }
      }
      .socials {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-left: auto;
        .social-item {
          width: 24px;
          height: 24px;
          min-width: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            width: 100%;
            height: 100%;
          }
        }
      }
    }
    .copyRight {
      margin-top: 70px;
      margin-left: auto;
      font-weight: 400;
      font-size: 12px;
      line-height: 16px;
      text-align: right;
      color: #000;
    }
  }
}

/* Products */

.product-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .hero-content {
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 600px;
    min-width: 550px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.products {
  max-width: 1440px;
  width: 100%;
  margin: 120px auto 0;
  .products-filter-area {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    .product-filter {
      position: relative;
      select {
        background: #f8f8f8;
        border: 1px solid #f3f3f3;
        border-radius: 100px;
        padding: 12px 50px 12px 16px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: none;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        min-width: 184px;
      }
      .icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        min-width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 16px;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
    .products-search {
      display: flex;
      align-items: center;
      background: #f8f8f8;
      border: 1px solid #f3f3f3;
      border-radius: 100px;
      gap: 12px;
      padding: 12px 16px;
      input {
        background: transparent;
        border: none;
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        &::placeholder {
          color: #a6a6a6;
        }
      }
      .searchBtn {
        width: 24px;
        height: 24px;
        min-width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
  .products-list {
    margin-top: 36px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    .product-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background: #f7f6f5;
      padding: 24px 20px;
      .product-name {
        font-family: "Montserrat";
        font-weight: 500;
        font-size: 20px;
        line-height: 28px;
        color: #000;
      }
      .product-image {
        margin: 5px auto 0;
        max-width: 260px;
        height: 220px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.25s ease-in-out;
        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
      .more {
        width: 24px;
        height: 24px;
        min-width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
      &:hover {
        .product-image {
          transform: scale(1.1);
        }
      }
    }
  }
  .more-products {
    margin: 36px auto 0;
    display: flex;
    max-width: 250px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #000000;
    border-radius: 100px;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    padding: 12px 16px;
    transition: 0.25s ease-in-out;
    &:hover {
      background: #f2acb9;
    }
  }
}

/* Product Detail */
.product-detail {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .product-detail-main {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    .detail-image {
      max-width: 700px;
      width: 100%;
      height: 460px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      background: #f7f6f5;
      img {
        max-width: 375px;
        height: 320px;
        width: 100%;
        object-fit: contain;
      }
    }
    .detail-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      max-width: 500px;
      width: 100%;
      .normal-title {
        font-family: "Montserrat";
        font-weight: 500;
        font-size: 32px;
        line-height: 42px;
        text-align: start;
        color: #000;
      }
      .description {
        margin-top: 16px;
        ul {
          padding-left: 18px;
        }
        p,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #6b6b6b;
        }
      }
      .search_nearby {
        margin-top: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        max-width: 240px;
        border: 1px solid #000000;
        border-radius: 100px;
        background: #fff;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        padding: 12px 16px;
        transition: 0.25s ease-in-out;
        &:hover {
          background: #f2acb9;
        }
      }
      .available-sizes {
        width: 100%;
        margin-top: 36px;
        padding-top: 24px;
        border-top: 1px solid #000;
        .available-sizes-title {
          font-weight: 400;
          font-size: 20px;
          line-height: 24px;
          color: #000;
        }
        .sizes-items {
          margin-top: 16px;
          display: flex;
          flex-wrap: wrap;
          gap: 12px;
          width: 100%;
          .size-item {
            padding: 12px 16px;
            background: #f3f3f3;
            font-weight: 400;
            font-size: 18px;
            line-height: 24px;
            text-align: center;
            border-radius: 8px;
            color: #000;
          }
        }
      }
    }
  }
  .product-shortInfo {
    width: 100%;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    .small-title {
      font-family: "Montserrat";
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      text-transform: uppercase;
      color: #000;
    }
    .normal-title {
      margin-top: 20px;
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: center;
      color: #000;
      width: 100%;
      max-width: 650px;
    }
  }
  .useful-ingredient {
    width: 100%;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    .useful-ingredient-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .left-title {
        font-family: "Montserrat";
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
      }
      .ingredientsValueBtn {
        margin-top: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        border: 1px solid #000000;
        border-radius: 100px;
        background: #fff;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        padding: 12px;
        transition: 0.25s ease-in-out;
        &:hover {
          background: #f2acb9;
        }
      }
    }
    .ingredient {
      max-width: 530px;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      row-gap: 16px;
      .ingredient-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 15px 0;
        border-right: 1px solid #a7a7a7;
        p {
          font-family: "Montserrat";
          font-weight: 500;
          font-size: 60px;
          line-height: 80px;
          color: #000;
        }
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
        }
        &:nth-child(even) {
          align-items: end;
          border-right: none;
        }
      }
    }
  }
}
.productFaq-section {
  margin-top: 80px;
  width: 100%;
  padding: 80px 0;
  background: #f7f6f5;
  .faq-container {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    .faq-image {
      min-width: 392px;
      width: 392px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .faq {
      max-width: 700px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .faq-item {
        border-bottom: 1px solid #dcdcdc;
        width: 100%;
        .faq-question {
          width: 100%;
          padding: 16px 0;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 20px;
          .question-title {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #3d3d3d;
            text-align: left;
          }
          .icon {
            transition: 0.3s ease-in-out;
            width: 20px;
            height: 20px;
            min-width: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 100%;
              height: 100%;
            }
          }
        }
        .faq-answer {
          height: 0;
          overflow: hidden;
          transition: height 0.3s ease;
          font-size: 16px;
          line-height: 24px;
          font-weight: 400;
          color: #3a3a3a;
        }

        .faq-answer.active {
          padding-bottom: 16px;
        }

        .icon.active {
          transform: rotate(180deg);
        }
      }
    }
  }
}
.ingredient-modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 19;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  .ingredient-modal {
    max-width: 1440px;
    overflow-y: auto;
    height: 100%;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 150px;
    .closeIngredient {
      width: 36px;
      height: 36px;
      min-width: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .ingredient-text {
      width: 100%;
      margin-top: 80px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
      }
    }
  }
}

/* Vacancy */

.vacancy-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .hero-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 600px;
    min-width: 550px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.vacancies {
  max-width: 1440px;
  width: 100%;
  margin: 144px auto 0;
  .vacancy-section-title {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #000;
  }
  .vacancy-list {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .vacancy-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 20px;
      border: 1px solid #f5f5f5;
      border-bottom: none;
      padding: 20px 16px;
      &:last-child {
        border-bottom: 1px solid #f5f5f5;
      }
      .vacany-name {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        color: #000;
      }
      .applyVacancy {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        text-wrap: nowrap;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
        }
      }
    }
  }
}
.applyVacanancy-modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 19;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  .applyVacanancy-modal {
    max-width: 1440px;
    overflow-y: auto;
    height: 100%;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 150px;
    .closeApplyVacanancy {
      width: 36px;
      height: 36px;
      min-width: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .applyVacanancy {
      margin-top: 80px;
      width: 100%;
      border: 1px solid rgba(92, 92, 92, 0.05);
      box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
      padding: 40px 24px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      .form-items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        .form-item {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          gap: 16px;
          label {
            font-weight: 600;
            font-size: 14px;
            line-height: 18px;
            color: #848484;
          }
          input {
            border: 1px solid #f3f3f3;
            background: #fbfbfb;
            box-shadow: 0px 4px 5.5px 0px rgba(241, 241, 241, 0.25);
            width: 100%;
            padding: 16px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #000;
            &::placeholder {
              color: #848484;
            }
          }
        }
      }
      .upload-cv {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
        label {
          font-weight: 600;
          font-size: 14px;
          line-height: 18px;
          color: #848484;
        }
        .upload-file {
          width: 100%;
          border: 1px dashed #c1c1c1;
          border-radius: 6px;
          padding: 16px;
          display: flex;
          align-items: center;
          gap: 16px;
          position: relative;
          .icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f2f2f2;
            border-radius: 8px;
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
          }
          input {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            cursor: pointer;
            opacity: 0;
          }
          .upload-file-body {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            .body-title {
              font-weight: 500;
              font-size: 14px;
              line-height: 20px;
              color: #424242;
            }
            .body-subTitle {
              font-weight: 400;
              font-size: 12px;
              line-height: 16px;
              color: #787878;
            }
          }
          .loadedFile {
            display: none;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 12px;
            .loadedFile-name {
              font-weight: 500;
              font-size: 14px;
              line-height: 20px;
              color: #000;
            }
            .removeFile {
              width: 28px;
              height: 28px;
              min-width: 28px;
              display: flex;
              align-items: center;
              justify-content: center;
              position: relative;
              z-index: 3;
              img {
                width: 100%;
                height: 100%;
              }
            }
          }
        }
      }
      .submitApplyVacancies {
        padding: 16px;
        width: 100%;
        background: #fff;
        border-radius: 100px;
        border: 1px solid #000;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        transition: 0.25s ease-in-out;
        &:hover {
          background: #f2acb9;
        }
      }
    }
  }
}

/* Partners */
.partners-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .hero-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 600px;
    min-width: 550px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.partners-direction {
  max-width: 1440px;
  width: 100%;
  margin: 144px auto 0;
  .partners-direction-title {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #000;
  }
  .direction-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
    .direction-item {
      border: 1px solid #f5f5f5;
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      .direction-title {
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        color: #404040;
      }
      .direction-description {
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #828282;
        }
      }
    }
  }
}
.why-us {
  max-width: 1440px;
  width: 100%;
  margin: 160px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  .why-us-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 16px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #3b3b3b;
      }
    }
    .applyPartnerBtn {
      margin-top: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .why-us-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.apply-modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 19;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  .apply-modal {
    max-width: 1440px;
    overflow-y: auto;
    height: 100%;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 150px;
    .closeApply {
      width: 36px;
      height: 36px;
      min-width: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .apply-modal-main {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(396px, 496px) minmax(604px, 704px);
      gap: 24px;
      margin-top: 80px;
      .apply-info {
        border: 1px solid rgba(92, 92, 92, 0.05);
        box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
        background: #ffffff;
        padding: 40px 24px;
        max-width: 496px;
        width: 100%;
        .apply-info-title {
          font-family: "Montserrat";
          font-weight: 600;
          font-size: 24px;
          line-height: 32px;
          color: #000;
        }
        .apply-info-description {
          margin-top: 12px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #666666;
        }
        .contact-items {
          margin-top: 24px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 16px;
          .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            .icon {
              width: 56px;
              height: 56px;
              min-width: 56px;
              display: flex;
              align-items: center;
              justify-content: center;
              background: rgba(170, 170, 170, 0.1);
              border-radius: 100px;
              img {
                width: 28px;
                height: 28px;
              }
            }
            .contact-item-body {
              display: flex;
              flex-direction: column;
              align-items: flex-start;
              gap: 8px;
              .item-body-title {
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                color: #2c3e2f;
              }
              span,
              a {
                font-weight: 400;
                font-size: 14px;
                line-height: 20px;
                color: #666666;
              }
            }
          }
        }
        .our-socials {
          margin-top: 30px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          .our-socials-title {
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #000;
          }
          .socials {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 16px;
            .social-item {
              width: 24px;
              height: 24px;
              min-width: 24px;
              display: flex;
              align-items: center;
              justify-content: center;
              img {
                width: 100%;
                height: 100%;
              }
            }
          }
        }
      }
      .applyForm {
        width: 100%;
        border: 1px solid rgba(92, 92, 92, 0.05);
        box-shadow: 0px 4px 8.6px 0px rgba(132, 132, 132, 0.05);
        padding: 40px 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        .form-items {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 24px;
        }
        .form-item {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          gap: 16px;
          label {
            font-weight: 600;
            font-size: 14px;
            line-height: 18px;
            color: #848484;
          }
          input,
          textarea {
            border: 1px solid #f3f3f3;
            background: #fbfbfb;
            box-shadow: 0px 4px 5.5px 0px rgba(241, 241, 241, 0.25);
            width: 100%;
            padding: 16px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #000;
            &::placeholder {
              color: #848484;
            }
          }
        }
        textarea {
          height: 90px;
          resize: none;
        }
        .submitApplyBtn {
          padding: 16px;
          width: 100%;
          background: #fff;
          border-radius: 100px;
          border: 1px solid #000;
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          color: #000;
          transition: 0.25s ease-in-out;
          &:hover {
            background: #f2acb9;
          }
        }
      }
    }
  }
}

/* Receipt */
.receipt-hero {
  width: 100%;
  padding: 40px 0;
  background: #f0f6fa;
  .receipt-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .hero-content {
      max-width: 720px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .small-title {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #000;
      }
      .normal-title {
        margin-top: 14px;
        font-family: "Montserrat";
        font-weight: 500;
        font-size: 32px;
        line-height: 42px;
        text-align: start;
        color: #000;
      }
      .description {
        margin-top: 10px;
        ul {
          padding-left: 18px;
        }
        p,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #6b6b6b;
        }
      }
      .more {
        margin-top: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid #000000;
        border-radius: 100px;
        background: #fff;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        padding: 12px 16px;
        transition: 0.25s ease-in-out;
        &:hover {
          background: #f2acb9;
        }
      }
    }
    .hero-image {
      max-width: 392px;
      width: 100%;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
.receipts {
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .receipts-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 24px;
    .receipt-item {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .receipt-img {
        width: 100%;
        height: 320px;
        overflow: hidden;
        img {
          width: 100%;
          height: 100%;
          transition: 0.25s ease-in-out;
          object-fit: cover;
        }
        &:hover {
          img {
            transform: scale(1.1);
          }
        }
      }
      .receipt-body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 12px;
        gap: 10px;
        .make-time {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
        }
        .receipt-name {
          font-family: "Montserrat";
          font-weight: 500;
          font-size: 18px;
          line-height: 30px;
          color: #000;
        }
      }
    }
  }
  .more-receipts {
    margin: 36px auto 0;
    width: max-content;
    min-width: 174px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #000000;
    border-radius: 100px;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    padding: 12px 16px;
    transition: 0.25s ease-in-out;
    &:hover {
      background: #f2acb9;
    }
  }
}

/* Receipt Detail */
.receipt-detail-hero {
  width: 100%;
  padding: 40px 0;
  background: #f0f6fa;
  .receipt-detail-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .hero-content {
      max-width: 720px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .normal-title {
        font-family: "Montserrat";
        font-weight: 500;
        font-size: 32px;
        line-height: 42px;
        text-align: start;
        color: #000;
      }
      .short-detail {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        .short-detail-item {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
          padding-right: 14px;
          border-right: 1px solid #000;
          &:last-child {
            padding-right: 0;
            border-right: none;
          }
        }
      }
    }
    .hero-image {
      max-width: 392px;
      width: 100%;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
.receipt-detail {
  margin: 80px auto 0;
  max-width: 1440px;
  width: 100%;
  .receipt-detail-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    .receipt-ingredients {
      max-width: 400px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 16px;
      background: #fbfbfb;
      .receipt-ingredients-title {
        font-family: "Montserrat";
        font-weight: 400;
        font-size: 20px;
        line-height: 24px;
        color: #000;
      }
      .ingredients-list {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        .ingredient-item {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
        }
      }
    }
    .preparation-method {
      max-width: 700px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .preparation-method-title {
        font-family: "Montserrat";
        font-weight: 400;
        font-size: 20px;
        line-height: 24px;
        color: #000;
      }
      .methods {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 20px;
        width: 100%;
        .method-item {
          display: flex;
          align-items: center;
          gap: 16px;
          width: 100%;
          .method-number {
            width: 50px;
            height: 50px;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            border: 1px solid #000000;
            font-weight: 500;
            font-size: 20px;
            line-height: 24px;
            text-align: center;
            color: #000;
          }
          .method-text {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #000;
          }
        }
      }
    }
  }
  .products-used {
    margin-top: 80px;
    width: 100%;
    .products-used-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 20px;
      line-height: 24px;
      color: #000;
    }
    .products-used-cards {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      .products-used-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px;
        background: #f7f6f5;
        .card-title {
          font-family: "Montserrat";
          font-weight: 500;
          font-size: 20px;
          line-height: 24px;
          text-align: center;
          color: #000;
        }
        .card-image {
          margin-top: 36px;
          width: 160px;
          height: 120px;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: 0.25s ease-in-out;
          img {
            max-width: 160px;
            max-height: 120px;
            width: 100%;
            height: 100%;
            object-fit: contain;
          }
        }
        .card-more {
          margin-top: 48px;
          display: flex;
          align-items: center;
          gap: 8px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          text-align: center;
          color: #000;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
          }
        }
        &:hover {
          .card-image {
            transform: scale(1.1);
          }
        }
      }
    }
  }
}

/* Faq */

.faq-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .hero-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 600px;
    min-width: 550px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.faq-section {
  margin-top: 80px;
  width: 100%;
  padding: 80px 0;
  background: #f7f6f5;
  .faq-container {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    .faq-image {
      min-width: 392px;
      width: 392px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .faq-main {
      max-width: 700px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .faq-title {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #000;
      }
      .faq {
        width: 100%;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .faq-item {
          border-bottom: 1px solid #dcdcdc;
          width: 100%;
          .faq-question {
            width: 100%;
            padding: 16px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            .question-title {
              font-weight: 500;
              font-size: 16px;
              line-height: 24px;
              color: #3d3d3d;
              text-align: left;
            }
            .icon {
              transition: 0.3s ease-in-out;
              width: 20px;
              height: 20px;
              min-width: 20px;
              display: flex;
              align-items: center;
              justify-content: center;
              img {
                width: 100%;
                height: 100%;
              }
            }
          }
          .faq-answer {
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            color: #3a3a3a;
          }

          .faq-answer.active {
            padding-bottom: 16px;
          }

          .icon.active {
            transform: rotate(180deg);
          }
        }
      }
    }
  }
}

/* Contact */

.contact-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .hero-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 600px;
    min-width: 550px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.contact-faq {
  max-width: 1440px;
  width: 100%;
  margin: 120px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .small-title {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
  }
  .normal-title {
    margin-top: 20px;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    color: #000;
    width: 100%;
    max-width: 650px;
  }
  .more {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 220px;
    width: 100%;
    border: 1px solid #000000;
    border-radius: 100px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    padding: 12px;
    transition: 0.25s ease-in-out;
    &:hover {
      background: #f2acb9;
    }
  }
}
.contact-joinUs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  margin: 80px auto 0;
  .hero-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 392px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.contact-callUs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  margin: 80px auto 0;
  .hero-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 392px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.contact-address {
  margin: 160px auto 0;
  width: 100%;
  max-width: 1440px;
  .contact-address-title {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #000;
  }
  .contact-address-desc {
    margin: 12px auto 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #5e5e5e;
    max-width: 620px;
    text-align: center;
  }
  .branch-wrapper {
    margin-top: 40px;
    width: 100%;
    overflow-x: auto;
    .branch-table {
      width: 100%;
      border-collapse: collapse;
      th {
        font-family: "Montserrat";
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        text-align: left;
        padding-bottom: 24px;
        color: #000;
      }
      td {
        padding: 12px 0;
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        color: #656565;
      }
    }
  }
}

/* About */

.about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .hero-content {
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 600px;
    min-width: 550px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.about-shortInfo {
  max-width: 1440px;
  width: 100%;
  margin: 120px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  .small-title {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
  }
  .normal-title {
    margin-top: 20px;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    color: #000;
    width: 100%;
    max-width: 780px;
  }
}
.about-mainInfo {
  width: 100%;
  padding: 70px 0;
  margin-top: 80px;
  background: #000;
  .about-mainInfo-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .mainInfo-content {
      max-width: 520px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .mainInfo-title {
        font-family: "Montserrat";
        font-weight: 500;
        font-size: 28px;
        line-height: 36px;
        text-align: start;
        color: #fff;
      }
      .mainInfo-description {
        margin-top: 24px;
        ul {
          padding-left: 18px;
        }
        p,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
        }
      }
    }
    .mainInfo-image {
      max-width: 475px;
      width: 100%;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
.about-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .hero-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 392px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.about-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin: 80px auto 0;
  .hero-content {
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .normal-title {
      font-family: "Montserrat";
      font-weight: 500;
      font-size: 32px;
      line-height: 42px;
      text-align: start;
      color: #000;
    }
    .description {
      margin-top: 10px;
      ul {
        padding-left: 18px;
      }
      p,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6b6b6b;
      }
    }
    .more {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid #000000;
      border-radius: 100px;
      background: #fff;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #000;
      padding: 12px 16px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #f2acb9;
      }
    }
  }
  .hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}

@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 60px;
    padding-right: 60px;
  }
  nav {
    padding-top: 16px;
    padding-bottom: 16px;
    .logo {
      min-width: 110px;
      width: 110px;
    }
    .navbar-main {
      gap: 16px;
      .navbar-links {
        gap: 12px;
        .link-menu {
          padding: 14px 0;
          .sub-menu {
            top: 58px;
          }
          &:hover {
            .sub-menu {
              top: 48px;
            }
          }
        }
      }
      .navbar-main-right {
        gap: 12px;
        .language {
          .lang-btn {
            width: 28px;
            height: 28px;
            min-width: 28px;
          }
          .other-languages {
            width: 40px;
            top: 48px;
          }
        }
        .language.active {
          .other-languages {
            top: 38px;
          }
        }
      }
    }
  }
  .home-hero-swiper {
    height: 500px;
    .home-hero-item {
      .hero-content-container {
        .hero-content {
          max-width: 580px;
          padding: 30px 40px;
          .hero-title {
            font-size: 36px;
            line-height: 48px;
          }
          .hero-description {
            p {
              font-size: 16px;
              line-height: 24px;
            }
          }
          .more {
            margin-top: 20px;
            max-width: 230px;
          }
        }
      }
    }
    .swiper-pagination-wrapper {
      bottom: 80px;
      .swiper-pagination {
        width: 200px;
      }
    }
  }
  .home-about {
    margin: 60px auto 0;
    .normal-title {
      margin-top: 16px;
      font-size: 28px;
      line-height: 36px;
      max-width: 470px;
    }
    .more {
      margin-top: 30px;
      max-width: 230px;
    }
  }
  .home-products {
    margin-top: 60px;
    padding: 30px 0;
    .normal-title {
      font-size: 28px;
      line-height: 36px;
    }
    .home-products-swiper {
      margin-top: 40px;
      .product-item {
        width: 580px;
        gap: 40px;
        .item-image {
          min-width: 304px;
          width: 304px;
          height: 336px;
          img {
            max-width: 304px;
            max-height: 336px;
          }
        }
        .item-body {
          .item-title {
            font-size: 24px;
            line-height: 32px;
          }
          .item-description {
            margin-top: 10px;
            p {
              font-size: 14px;
              line-height: 20px;
            }
          }
          .more {
            margin-top: 20px;
          }
        }
      }
      .swiper-button-pagination {
        margin: 40px auto 0;
        .swiper-buttons {
          .swiper-button-next,
          .swiper-button-prev {
            width: 44px;
            height: 44px;
            &::after {
              --swiper-navigation-size: 12px;
            }
          }
        }
      }
    }
  }
  .how-we-produce {
    margin: 60px auto 0;
    .how-we-produce-image {
      max-width: 550px;
    }
    .how-we-produce-content {
      max-width: 450px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        margin-top: 20px;
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 28px;
      }
    }
  }
  .home-bePartner {
    margin: 60px auto 0;
    .home-bePartner-image {
      max-width: 550px;
    }
    .home-bePartner-content {
      max-width: 380px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        margin-top: 20px;
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 28px;
      }
    }
  }
  .address-banners {
    margin: 60px auto 0;
    .banner-item {
      max-width: 420px;
      height: 395px;
      .bannerImg {
        max-width: 270px;
      }
      .banner-body {
        gap: 16px;
        .body-title {
          font-size: 18px;
          line-height: 24px;
        }
        .more {
          gap: 6px;
          font-size: 16px;
          line-height: 24px;
          color: #000;
          img {
            width: 20px;
            height: 20px;
            min-width: 20px;
          }
        }
      }
    }
  }
  .home-product-info {
    margin-top: 60px;
    padding: 50px 0;
    .product-info-container {
      gap: 40px;
      .product-info-image {
        max-width: 550px;
        min-width: 450px;
      }
      .product-info-content {
        max-width: 530px;
        padding: 24px;
        .content-sticker {
          width: 160px;
          top: -105px;
        }
        .normal-title {
          font-size: 28px;
          line-height: 36px;
        }
        .description {
          margin-top: 20px;
          p,
          li {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .more {
          margin-top: 28px;
        }
      }
    }
  }
  .home-receipts {
    gap: 20px;
    margin: 60px auto 0;
    .receipt-item {
      height: 374px;
    }
    .quick-link {
      gap: 16px;
      font-size: 20px;
      line-height: 30px;
      padding: 18px;
      img {
        width: 20px;
        height: 20px;
        min-width: 20px;
      }
    }
  }
  .home-contact {
    margin: 60px auto 0;
    .normal-title {
      font-size: 24px;
    }
    .small-title {
      margin-top: 18px;
    }
    .home-contact-items {
      max-width: 480px;
      margin-top: 30px;
      padding: 40px;
      gap: 14px;
      .home-contact-item {
        max-width: 280px;
        gap: 18px;
        .icon {
          min-width: 24px;
          width: 24px;
          height: 24px;
          img {
            max-width: 24px;
            max-height: 24px;
          }
        }
        p {
          font-size: 15px;
          line-height: 22px;
        }
      }
    }
  }
  .infinity-text-container {
    padding: 6px 20px;
    margin-top: 45px;
    .infinity-text-swiper {
      width: 100%;
      .swiper-wrapper {
        .infinity-text-item {
          p {
            font-size: 18px;
            line-height: 28px;
          }
        }
      }
    }
  }
  footer {
    padding: 30px 0 90px;
    .footer-decoration {
      width: 170px;
    }
    .footer-container {
      padding-left: 140px;
      .footer-main {
        .footer-logo {
          width: 110px;
          min-width: 110px;
        }
        .footer-links {
          gap: 30px;
          margin-left: 60px;
        }
        .socials {
          gap: 14px;
        }
      }
      .copyRight {
        margin-top: 50px;
      }
    }
  }

  .product-hero {
    gap: 30px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 400px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
    .hero-image {
      max-width: 500px;
      min-width: 350px;
    }
  }
  .products {
    margin: 80px auto 0;
    .products-list {
      margin-top: 30px;
      gap: 20px;
    }
    .more-products {
      margin: 30px auto 0;
      max-width: 230px;
    }
  }

  .product-detail {
    margin: 60px auto 0;
    .product-detail-main {
      gap: 20px;
      .detail-image {
        max-width: 600px;
        min-width: 350px;
        height: 400px;
        padding: 30px;
        img {
          max-width: 325px;
          height: 300px;
        }
      }
      .detail-info {
        .normal-title {
          font-size: 28px;
          line-height: 36px;
        }
        .description {
          margin-top: 12px;
          p,
          li {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .search_nearby {
          margin-top: 20px;
        }
        .available-sizes {
          margin-top: 30px;
          padding-top: 20px;
          .available-sizes-title {
            font-size: 18px;
          }
          .sizes-items {
            margin-top: 14px;
            gap: 10px;
            .size-item {
              padding: 10px 14px;
              font-size: 16px;
            }
          }
        }
      }
    }
    .product-shortInfo {
      margin: 60px auto 0;
      .normal-title {
        margin-top: 16px;
        font-size: 28px;
        line-height: 36px;
        max-width: 600px;
      }
    }
    .useful-ingredient {
      margin-top: 60px;
      gap: 30px;
      .useful-ingredient-left {
        .ingredientsValueBtn {
          margin-top: 12px;
        }
      }
      .ingredient {
        max-width: 340px;
        .ingredient-item {
          gap: 14px;
          padding: 12px 0;
          p {
            font-size: 48px;
            line-height: 64px;
          }
        }
      }
    }
  }
  .productFaq-section {
    margin-top: 60px;
    padding: 60px 0;
    .faq-container {
      gap: 30px;
      .faq-image {
        min-width: 362px;
        width: 362px;
      }
      .faq-main {
        .faq-title {
          font-size: 20px;
          line-height: 28px;
        }
        .faq {
          margin-top: 16px;
          .faq-item {
            .faq-question {
              padding: 14px 0;
              gap: 16px;
            }

            .faq-answer.active {
              padding-bottom: 14px;
            }
          }
        }
      }
    }
  }
  .ingredient-modal-overlay {
    .ingredient-modal {
      padding-top: 30px;
      padding-bottom: 120px;
      .closeIngredient {
        width: 32px;
        height: 32px;
        min-width: 32px;
      }
      .ingredient-text {
        margin-top: 60px;
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
  }

  .vacancy-hero {
    gap: 30px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 440px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
    .hero-image {
      max-width: 500px;
      min-width: 350px;
    }
  }
  .vacancies {
    margin: 104px auto 0;
    .vacancy-section-title {
      font-size: 20px;
      line-height: 30px;
    }
    .vacancy-list {
      margin-top: 20px;
      .vacancy-item {
        width: 100%;
        gap: 16px;
        padding: 16px 12px;
        .vacany-name {
          font-size: 16px;
          line-height: 24px;
        }
        .applyVacancy {
          gap: 6px;
          font-size: 15px;
          line-height: 22px;
          img {
            width: 22px;
            height: 22px;
            min-width: 22px;
          }
        }
      }
    }
  }
  .applyVacanancy-modal-overlay {
    .applyVacanancy-modal {
      padding-top: 30px;
      padding-bottom: 120px;
      .closeApplyVacanancy {
        width: 32px;
        height: 32px;
        min-width: 32px;
      }
      .applyVacanancy {
        margin-top: 60px;
        padding: 36px 20px;
        gap: 20px;
        .form-items {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
          .form-item {
            gap: 12px;
            input {
              padding: 14px;
            }
          }
        }
        .upload-cv {
          gap: 12px;
          .upload-file {
            padding: 14px;
            gap: 14px;
            .icon {
              width: 40px;
              height: 40px;
              min-width: 40px;
              img {
                width: 20px;
                height: 20px;
                min-width: 20px;
              }
            }
            .upload-file-body {
              gap: 6px;
            }
            .loadedFile {
              gap: 10px;
            }
          }
        }
        .submitApplyVacancies {
          padding: 14px;
          font-size: 15px;
          line-height: 22px;
        }
      }
    }
  }

  .partners-hero {
    gap: 30px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 440px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
    .hero-image {
      max-width: 500px;
      min-width: 350px;
    }
  }
  .partners-direction {
    margin: 104px auto 0;
    .partners-direction-title {
      font-size: 20px;
      line-height: 30px;
    }
    .direction-items {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 20px;
      .direction-item {
        padding: 14px;
        gap: 14px;
        .direction-title {
          font-size: 16px;
          line-height: 24px;
        }
        .direction-description {
          p {
            font-size: 14px;
            line-height: 20px;
          }
        }
      }
    }
  }
  .why-us {
    margin: 120px auto 0;
    gap: 30px;
    .why-us-content {
      max-width: 440px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        margin-top: 12px;
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .applyPartnerBtn {
        margin-top: 30px;
      }
    }
  }
  .apply-modal-overlay {
    .apply-modal {
      padding-top: 30px;
      padding-bottom: 120px;
      .closeApply {
        width: 32px;
        height: 32px;
        min-width: 32px;
      }
      .apply-modal-main {
        grid-template-columns: minmax(240px, 400px) minmax(604px, 704px);
        gap: 20px;
        margin-top: 60px;
        .apply-info {
          padding: 36px 20px;
          max-width: 400px;
          .apply-info-title {
            font-size: 20px;
            line-height: 28px;
            color: #000;
          }
          .apply-info-description {
            margin-top: 10px;
            font-size: 14px;
            line-height: 20px;
          }
          .contact-items {
            margin-top: 20px;
            gap: 14px;
            .contact-item {
              gap: 10px;
              .icon {
                width: 48px;
                height: 48px;
                min-width: 48px;
                img {
                  width: 24px;
                  height: 24px;
                }
              }
              .contact-item-body {
                gap: 6px;
              }
            }
          }
          .our-socials {
            margin-top: 24px;
            .socials {
              gap: 14px;
              margin-top: 14px;
            }
          }
        }
        .applyForm {
          padding: 36px 20px;
          gap: 20px;
          .form-items {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
          }
          .form-item {
            gap: 12px;
            input,
            textarea {
              padding: 14px;
            }
          }
          .submitApplyBtn {
            padding: 14px;
            font-size: 15px;
            line-height: 22px;
          }
        }
      }
    }
  }

  .receipt-hero {
    padding: 32px 0;
    .receipt-hero-container {
      gap: 30px;
      .hero-content {
        max-width: 520px;
        .normal-title {
          font-size: 28px;
          line-height: 36px;
        }
        .description {
          p,
          li {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .more {
          margin-top: 20px;
        }
      }
    }
  }
  .receipts {
    margin: 60px auto 0;
    .receipts-list {
      grid-template-columns: repeat(3, 1fr);
      gap: 30px 20px;
      .receipt-item {
        .receipt-img {
          height: 360px;
        }
        .receipt-body {
          margin-top: 10px;
        }
      }
    }
    .more-receipts {
      margin: 30px auto 0;
      min-width: 154px;
    }
  }

  .receipt-detail-hero {
    padding: 32px 0;
    .receipt-detail-hero-container {
      gap: 30px;
      .hero-content {
        max-width: 520px;
        .normal-title {
          font-size: 28px;
          line-height: 36px;
        }
        .short-detail {
          margin-top: 10px;
          gap: 12px;
          .short-detail-item {
            font-size: 14px;
            line-height: 20px;
            padding-right: 12px;
          }
        }
      }
    }
  }
  .receipt-detail {
    margin: 60px auto 0;
    .receipt-detail-main {
      gap: 30px;
      .receipt-ingredients {
        max-width: 350px;
        padding: 14px;
        .receipt-ingredients-title {
          font-size: 18px;
          line-height: 24px;
        }
        .ingredients-list {
          margin-top: 16px;
          gap: 16px;
          .ingredient-item {
            font-size: 14px;
            line-height: 20px;
          }
        }
      }
      .preparation-method {
        .preparation-method-title {
          font-size: 18px;
          line-height: 24px;
        }
        .methods {
          gap: 16px;
          margin-top: 16px;
          .method-item {
            gap: 12px;
            .method-number {
              width: 44px;
              height: 44px;
              min-width: 44px;
              font-size: 16px;
            }
            .method-text {
              font-size: 15px;
              line-height: 22px;
            }
          }
        }
      }
    }
    .products-used {
      margin-top: 60px;
      .products-used-title {
        font-size: 18px;
        line-height: 24px;
      }
      .products-used-cards {
        margin-top: 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        .products-used-card {
          padding: 36px;
          .card-title {
            font-size: 18px;
            line-height: 24px;
          }
          .card-image {
            margin-top: 30px;
            width: 140px;
            height: 100px;
            img {
              max-width: 140px;
              max-height: 100px;
            }
          }
          .card-more {
            margin-top: 40px;
          }
        }
      }
    }
  }

  .faq-hero {
    gap: 30px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 440px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
    .hero-image {
      max-width: 500px;
      min-width: 350px;
    }
  }
  .faq-section {
    margin-top: 60px;
    padding: 60px 0;
    .faq-container {
      gap: 30px;
      .faq-image {
        min-width: 362px;
        width: 362px;
      }
      .faq-main {
        .faq-title {
          font-size: 20px;
          line-height: 28px;
        }
        .faq {
          margin-top: 16px;
          .faq-item {
            .faq-question {
              padding: 14px 0;
              gap: 16px;
            }

            .faq-answer.active {
              padding-bottom: 14px;
            }
          }
        }
      }
    }
  }

  .contact-hero {
    gap: 30px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 440px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
    .hero-image {
      max-width: 500px;
      min-width: 350px;
    }
  }
  .contact-faq {
    margin: 100px auto 0;
    .normal-title {
      margin-top: 16px;
      font-size: 28px;
      line-height: 36px;
      max-width: 600px;
    }
    .more {
      margin-top: 30px;
      max-width: 200px;
    }
  }
  .contact-joinUs {
    gap: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 440px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
  }
  .contact-callUs {
    gap: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 440px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
  }
  .contact-address {
    margin: 120px auto 0;
    .contact-address-title {
      font-size: 20px;
      line-height: 30px;
    }
    .contact-address-desc {
      margin: 10px auto 0;
      font-size: 15px;
      line-height: 22px;
      max-width: 600px;
    }
    .branch-wrapper {
      margin-top: 30px;
      .branch-table {
        th {
          font-size: 18px;
          padding-bottom: 20px;
        }
        td {
          padding: 10px 0;
          font-size: 16px;
        }
      }
    }
  }

  .about-hero {
    gap: 30px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 400px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
    .hero-image {
      max-width: 500px;
      min-width: 350px;
    }
  }
  .about-shortInfo {
    margin: 100px auto 0;
    .normal-title {
      margin-top: 16px;
      font-size: 28px;
      line-height: 36px;
      max-width: 700px;
    }
  }
  .about-mainInfo {
    padding: 50px 0;
    margin-top: 60px;
    .about-mainInfo-container {
      gap: 40px;
      .mainInfo-content {
        .mainInfo-title {
          font-size: 24px;
          line-height: 32px;
        }
        .mainInfo-description {
          margin-top: 20px;
          p,
          li {
            font-size: 14px;
            line-height: 20px;
          }
        }
      }
      .mainInfo-image {
        max-width: 425px;
      }
    }
  }
  .about-info {
    gap: 30px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 400px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
  }
  .about-contact {
    gap: 30px;
    margin: 60px auto 0;
    .hero-content {
      max-width: 440px;
      .normal-title {
        font-size: 28px;
        line-height: 36px;
      }
      .description {
        p,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .more {
        margin-top: 20px;
      }
    }
    .hero-image {
      max-width: 500px;
      min-width: 350px;
    }
  }
}
@media only screen and (max-width: 1080px) {
  nav {
    .navbar-main {
      .navbar-links {
        display: none;
      }
      .navbar-main-right {
        gap: 12px;
        .right-links {
          display: none;
        }
        .language {
          .lang-btn {
            width: 28px;
            height: 28px;
            min-width: 28px;
          }
          .other-languages {
            width: 40px;
            top: 48px;
          }
        }
        .language.active {
          .other-languages {
            top: 38px;
          }
        }
      }
      .hamburger {
        display: flex;
      }
    }
  }
  .mobileMenu {
    display: flex;
  }
}
@media only screen and (max-width: 992px) {
  .home-hero-swiper {
    height: 700px;
    .home-hero-item {
      .hero-content-container {
        background: #fff;
        height: max-content;
        top: auto;
        bottom: 0;
        transform: translate(-50%, 0);
        .hero-content {
          max-width: 100%;
          padding: 30px 0 40px;
        }
      }
    }
    .swiper-pagination-wrapper {
      bottom: 0;

      .swiper-pagination {
        width: 200px;
      }
    }
  }
  .home-products {
    .home-products-swiper {
      .product-item {
        width: 480px;
        gap: 30px;
        .item-image {
          min-width: 254px;
          width: 254px;
          height: 286px;
          img {
            max-width: 254px;
            max-height: 286px;
          }
        }
      }
    }
  }
  .how-we-produce {
    flex-direction: column-reverse;
    .how-we-produce-image {
      max-width: 600px;
    }
    .how-we-produce-content {
      max-width: 100%;
    }
  }
  .home-bePartner {
    flex-direction: column;
    .home-bePartner-image {
      margin-left: auto;
    }
    .home-bePartner-content {
      max-width: 100%;
    }
  }
  .address-banners {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    .banner-item {
      max-width: 450px;
      height: 435px;
      .bannerImg {
        max-width: 320px;
      }
      &:nth-child(even) {
        margin-left: auto;
      }
    }
  }
  .home-product-info {
    padding: 120px 0 50px;
    .product-info-container {
      flex-direction: column-reverse;
      align-items: flex-start;
      .product-info-image {
        max-width: 100%;
        min-width: 0;
      }
      .product-info-content {
        max-width: 100%;
        .content-sticker {
          width: 140px;
          top: -90px;
        }
      }
    }
  }
  .home-receipts {
    .receipt-item {
      height: 324px;
    }
  }
  footer {
    .footer-container {
      padding-left: 60px;
      .footer-main {
        flex-direction: column;
        gap: 40px;
        .footer-links {
          margin-left: 0;
        }
        .socials {
          margin-left: 0;
        }
      }
    }
  }

  .products {
    .products-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .partners-direction {
    .direction-items {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .apply-modal-overlay {
    .apply-modal {
      .apply-modal-main {
        grid-template-columns: minmax(300px, 400px) minmax(300px, 452px);
        .applyForm {
          .form-items {
            grid-template-columns: repeat(1, 1fr);
          }
        }
      }
    }
  }

  .receipt-hero {
    .receipt-hero-container {
      .hero-content {
        max-width: 420px;
      }
      .hero-image {
        max-width: 332px;
      }
    }
  }
  .receipts {
    .receipts-list {
      .receipt-item {
        .receipt-img {
          height: 280px;
        }
      }
    }
  }

  .receipt-detail-hero {
    .receipt-detail-hero-container {
      .hero-content {
        max-width: 420px;
      }
      .hero-image {
        max-width: 332px;
      }
    }
  }
  .receipt-detail {
    .receipt-detail-main {
      flex-direction: column;
      .receipt-ingredients {
        max-width: 100%;
      }
      .preparation-method {
        max-width: 100%;
      }
    }
  }

  .faq-section {
    .faq-container {
      .faq-image {
        min-width: 322px;
        width: 322px;
      }
    }
  }
  .productFaq-section {
    .faq-container {
      .faq-image {
        min-width: 322px;
        width: 322px;
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  nav {
    .logo {
      width: 100px;
      min-width: 100px;
    }
  }
  .home-hero-swiper {
    height: 500px;
    .home-hero-item {
      .hero-content-container {
        .hero-content {
          padding: 20px 0 40px;
          .hero-title {
            font-size: 28px;
            line-height: 36px;
          }
          .hero-description {
            p {
              font-size: 14px;
              line-height: 20px;
            }
          }
          .more {
            margin-top: 16px;
            max-width: 200px;
          }
        }
      }
    }
    .swiper-pagination-wrapper {
      bottom: 0;
      .swiper-pagination {
        width: 160px;
      }
    }
  }
  .home-about {
    margin: 40px auto 0;
    .normal-title {
      font-size: 24px;
      line-height: 32px;
      max-width: 100%;
    }
    .more {
      margin-top: 24px;
      max-width: 200px;
    }
  }
  .home-products {
    margin-top: 40px;
    padding: 20px 0;
    .normal-title {
      font-size: 24px;
      line-height: 32px;
    }
    .home-products-swiper {
      margin-top: 36px;
      .product-item {
        width: 400px;
        gap: 20px;
        flex-direction: column;
        .item-image {
          min-width: 0;
          width: 100%;
          height: 354px;
          img {
            max-width: 100%;
            max-height: 100%;
          }
        }
        .item-body {
          align-items: center;
          .item-title {
            font-size: 20px;
            line-height: 28px;
          }
          .item-description {
            p {
              text-align: center;
            }
          }
          .more {
            margin-top: 16px;
          }
        }
      }
      .swiper-button-pagination {
        margin: 36px auto 0;
      }
    }
  }
  .how-we-produce {
    margin: 40px auto 0;
    flex-direction: column-reverse;
    .how-we-produce-image {
      max-width: 100%;
    }
    .how-we-produce-content {
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 24px;
      }
    }
  }
  .home-bePartner {
    margin: 40px auto 0;
    .home-bePartner-image {
      max-width: 100%;
    }
    .home-bePartner-content {
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 24px;
      }
    }
  }
  .address-banners {
    margin: 40px auto 0;
  }
  .home-product-info {
    margin-top: 40px;
    padding: 80px 0 40px;
    .product-info-container {
      gap: 30px;
      .product-info-image {
        max-width: 100%;
        width: 100%;
        height: 400px;
        img {
          object-fit: cover;
        }
      }
      .product-info-content {
        .content-sticker {
          width: 100px;
          top: -60px;
        }
        .normal-title {
          font-size: 24px;
          line-height: 32px;
        }
        .more {
          margin-top: 24px;
        }
      }
    }
  }
  .home-receipts {
    margin: 40px auto 0;
    flex-direction: column;
    .receipt-item {
      height: 424px;
      width: 100%;
      &:first-child {
        width: 100%;
      }
    }
  }
  .home-contact {
    margin: 40px auto 0;
    .small-title {
      margin-top: 16px;
    }
    .home-contact-items {
      max-width: 400px;
      padding: 20px;
      .home-contact-item {
        gap: 16px;
      }
    }
  }
  .infinity-text-container {
    margin-top: 30px;
    .infinity-text-swiper {
      .swiper-wrapper {
        .infinity-text-item {
          p {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
    }
  }
  footer {
    padding: 30px 0;
    .footer-decoration {
      width: 150px;
    }
    .footer-container {
      padding-left: 20px;
      .footer-main {
        flex-direction: column;
        gap: 30px;
        .footer-links {
          flex-direction: column;
          gap: 20px;
        }
      }
      .copyRight {
        margin-top: 40px;
        margin-left: 0;
        text-align: center;
      }
    }
  }

  .product-hero {
    gap: 24px;
    margin: 40px auto 0;
    flex-direction: column;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 100%;
      min-width: 0;
    }
  }
  .products {
    margin: 60px auto 0;
    .products-filter-area {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      .product-filter {
        select {
          padding: 8px 40px 8px 12px;
          min-width: 184px;
        }
        .icon {
          width: 20px;
          height: 20px;
          min-width: 20px;
          right: 12px;
        }
      }
      .products-search {
        width: 100%;
        gap: 10px;
        padding: 8px 12px;
        .searchBtn {
          width: 20px;
          height: 20px;
        }
      }
    }
    .products-list {
      margin-top: 24px;
      gap: 16px;
    }
    .more-products {
      margin: 24px auto 0;
      max-width: 200px;
    }
  }

  .product-detail {
    margin: 40px auto 0;
    .product-detail-main {
      gap: 24px;
      flex-direction: column;
      .detail-image {
        max-width: 100%;
        min-width: 0;
        height: 500px;
        padding: 20px;
        img {
          max-width: 350px;
          height: 325px;
        }
      }
      .detail-info {
        max-width: 100%;
        .normal-title {
          font-size: 24px;
          line-height: 32px;
        }
        .search_nearby {
          margin-top: 16px;
        }
        .available-sizes {
          margin-top: 24px;
          padding-top: 16px;
          .sizes-items {
            margin-top: 14px;
          }
        }
      }
    }
    .product-shortInfo {
      margin: 40px auto 0;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
        max-width: 100%;
      }
    }
    .useful-ingredient {
      margin-top: 40px;
      gap: 40px;
      flex-direction: column;
      align-items: flex-start;
      .ingredient {
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
        .ingredient-item {
          gap: 10px;
          p {
            font-size: 40px;
            line-height: 52px;
          }
        }
      }
    }
  }
  .productFaq-section {
    margin-top: 40px;
    padding: 40px 0;
    .faq-container {
      gap: 24px;
      flex-direction: column;
      .faq-image {
        min-width: 0;
        width: 100%;
        max-width: 362px;
      }
    }
  }
  .ingredient-modal-overlay {
    .ingredient-modal {
      padding-top: 20px;
      padding-bottom: 80px;
      .ingredient-text {
        margin-top: 40px;
      }
    }
  }

  .vacancy-hero {
    gap: 24px;
    margin: 40px auto 0;
    flex-direction: column;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 100%;
      min-width: 0;
    }
  }
  .vacancies {
    margin: 64px auto 0;
  }
  .applyVacanancy-modal-overlay {
    .applyVacanancy-modal {
      padding-top: 20px;
      padding-bottom: 80px;
      .applyVacanancy {
        margin-top: 40px;
        padding: 30px 20px;
        .form-items {
          grid-template-columns: repeat(1, 1fr);
        }
      }
    }
  }

  .partners-hero {
    gap: 24px;
    margin: 40px auto 0;
    flex-direction: column;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 100%;
      min-width: 0;
    }
  }
  .partners-direction {
    margin: 64px auto 0;
  }
  .why-us {
    margin: 80px auto 0;
    gap: 24px;
    flex-direction: column-reverse;
    align-items: flex-start;
    .why-us-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .applyPartnerBtn {
        margin-top: 24px;
      }
    }
    .why-us-image {
      max-width: 500px;
      margin-left: auto;
    }
  }
  .apply-modal-overlay {
    .apply-modal {
      padding-top: 20px;
      padding-bottom: 80px;
      .apply-modal-main {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .apply-info {
          padding: 30px 20px;
          max-width: 100%;
        }
        .applyForm {
          padding: 30px 20px;
        }
      }
    }
  }

  .receipt-hero {
    padding: 24px 0;
    .receipt-hero-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      .hero-content {
        max-width: 100%;
        .normal-title {
          font-size: 24px;
          line-height: 32px;
        }
        .more {
          margin-top: 16px;
        }
      }
      .hero-image {
        max-width: 450px;
        margin-left: auto;
      }
    }
  }
  .receipts {
    margin: 40px auto 0;
    .receipts-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px 20px;
      .receipt-item {
        .receipt-img {
          height: 320px;
        }
        .receipt-body {
          .receipt-name {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
    }
    .more-receipts {
      margin: 24px auto 0;
    }
  }

  .receipt-detail-hero {
    padding: 24px 0;
    .receipt-detail-hero-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      .hero-content {
        max-width: 100%;
        .normal-title {
          font-size: 24px;
          line-height: 32px;
        }
      }
      .hero-image {
        max-width: 450px;
        margin-left: auto;
      }
    }
  }
  .receipt-detail {
    margin: 40px auto 0;
    .receipt-detail-main {
      gap: 24px;
    }
    .products-used {
      margin-top: 40px;
      .products-used-cards {
        grid-template-columns: repeat(2, 1fr);
        .products-used-card {
          padding: 24px;
          .card-title {
            font-size: 16px;
          }
          .card-image {
            margin-top: 24px;
          }
          .card-more {
            margin-top: 36px;
          }
        }
      }
    }
  }

  .faq-hero {
    gap: 24px;
    margin: 40px auto 0;
    flex-direction: column;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 100%;
      min-width: 0;
    }
  }
  .faq-section {
    margin-top: 40px;
    padding: 40px 0;
    .faq-container {
      gap: 24px;
      flex-direction: column-reverse;
      .faq-image {
        min-width: 0;
        width: 100%;
        max-width: 322px;
      }
    }
  }

  .contact-hero {
    gap: 24px;
    margin: 40px auto 0;
    flex-direction: column;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 100%;
      min-width: 0;
    }
  }
  .contact-faq {
    margin: 80px auto 0;
    .normal-title {
      font-size: 24px;
      line-height: 32px;
      max-width: 100%;
    }
    .more {
      margin-top: 24px;
    }
  }
  .contact-joinUs {
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 40px auto 0;
    flex-direction: column;
    align-items: flex-start;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 500px;
      margin-left: auto;
    }
  }
  .contact-callUs {
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 40px auto 0;
    flex-direction: column-reverse;
    align-items: flex-start;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 500px;
    }
  }
  .contact-address {
    margin: 80px auto 0;
    .branch-wrapper {
      margin-top: 24px;
      .branch-table {
        th {
          min-width: 130px;
          font-size: 18px;
          padding-bottom: 20px;
          padding-left: 10px;
          padding-right: 10px;
          text-wrap: nowrap;
          &:nth-child(1) {
            min-width: 240px;
          }
          &:nth-child(2) {
            min-width: 180px;
          }
        }
        td {
          padding: 10px;
          font-size: 16px;
        }
      }
    }
  }

  .about-hero {
    gap: 24px;
    margin: 40px auto 0;
    flex-direction: column;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 100%;
      min-width: 0;
    }
  }
  .about-shortInfo {
    margin: 80px auto 0;
    .normal-title {
      font-size: 24px;
      line-height: 32px;
      max-width: 100%;
    }
  }
  .about-mainInfo {
    padding: 30px 0;
    margin-top: 40px;
    .about-mainInfo-container {
      gap: 32px;
      flex-direction: column-reverse;

      .mainInfo-content {
        max-width: 100%;
        .mainInfo-description {
          margin-top: 16px;
        }
      }
      .mainInfo-image {
        max-width: 100%;
      }
    }
  }
  .about-info {
    gap: 24px;
    margin: 40px auto 0;
    flex-direction: column;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 450px;
      margin-left: auto;
    }
  }
  .about-contact {
    gap: 24px;
    margin: 40px auto 0;
    flex-direction: column;
    .hero-content {
      max-width: 100%;
      .normal-title {
        font-size: 24px;
        line-height: 32px;
      }
      .more {
        margin-top: 16px;
      }
    }
    .hero-image {
      max-width: 100%;
      min-width: 0;
    }
  }
}
@media only screen and (max-width: 575px) {
  .home-products {
    .home-products-swiper {
      .product-item {
        width: 360px;
        .item-image {
          height: 334px;
        }
      }
    }
  }
  .address-banners {
    .banner-item {
      max-width: 100%;
      height: 400px;
      .bannerImg {
        max-width: 260px;
      }
      .banner-body {
        max-width: 270px;
      }
    }
  }
  .home-receipts {
    .receipt-item {
      height: 324px;
    }
  }
  .products {
    .products-list {
      .product-item {
        padding: 20px 16px;
        .product-name {
          font-size: 16px;
          line-height: 24px;
        }
        .product-image {
          max-width: 180px;
          height: 140px;
        }
        .more {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
      }
    }
  }
  .receipts {
    .receipts-list {
      .receipt-item {
        .receipt-img {
          height: 220px;
        }
      }
    }
  }
  .receipt-detail {
    .products-used {
      .products-used-cards {
        grid-template-columns: repeat(1, 1fr);
      }
    }
  }
  .product-detail {
    .product-detail-main {
      .detail-image {
        height: 300px;
        padding: 20px;
        img {
          max-width: 325px;
          height: 300px;
        }
      }
    }
  }
}
