@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-SemiBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter_24pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.2s linear;
  opacity: 1;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: #111827;
  border-radius: 5rem;
}

.heading {
  text-align: center;
}
.heading h2 {
  font-size: 3rem;
  line-height: 3.6rem;
  color: #111827;
  margin-bottom: 1.6rem;
  font-weight: 600;
}
.heading p {
  font-size: 2rem;
  line-height: 2.8rem;
  color: #4b5563;
  max-width: 620px;
  margin: 0 auto;
}

.logo img {
  width: 60px;
}

.box h3 {
  font-size: 2rem;
  line-height: 2.8rem;
  color: #111827;
  margin-bottom: 1.2px;
}
.box p {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #4b5563;
  font-weight: 500;
}

.btn {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: 1.7rem;
  padding: 1.2rem 6rem;
  background: #509755;
  border-radius: 8px;
  font-weight: 500;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem !important;
  line-height: 2.8rem !important;
  color: #111827;
  font-weight: 700;
}
.logo-block .logo img {
  width: 3rem;
}

.container {
  max-width: 1400px;
  padding: 0 1rem;
  margin: 0 auto;
}

section {
  margin: 10rem 0;
}

.dropdown {
  position: relative;
  font-size: 1.5rem;
  color: #4b5563;
  font-weight: 500;
}
.dropdown .dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.dropdown .dropdown-btn .fa-caret-up {
  transform: rotate(180deg);
}
.dropdown .dropdown-content {
  position: absolute;
  bottom: -5rem;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
  background-color: #fff;
  border-radius: 0.8rem;
  opacity: 0;
  pointer-events: none;
}
.dropdown .dropdown-content.active {
  bottom: -3.5rem;
  pointer-events: all;
  opacity: 1;
  box-shadow: -2px 17px 29px 0px rgba(0, 0, 0, 0.2);
}

#menu-btn {
  width: 3rem;
  text-align: center;
  color: #111827;
  font-size: 2.5rem;
  cursor: pointer;
}

.header {
  background-color: #f9fafb;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 3rem 1rem;
}
.header .header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header .header-wrapper .navbar ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header .header-wrapper .navbar ul li a {
  font-size: 1.5rem;
  color: #4b5563;
  font-weight: 500;
}
.header .header-wrapper .navbar ul li a:hover {
  color: #509755;
}
.header .header-wrapper .controllers-mobile {
  display: none;
}
.header .header-wrapper .controllers-mobile .fa-times {
  transform: rotate(180deg);
}

.hero {
  background-image: url("/images/hero.webp");
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: 9rem;
}
.hero .container {
  height: 100%;
}
.hero .container .hero-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.hero .container .hero-wrapper .hero-content {
  max-width: 663px;
}
.hero .container .hero-wrapper .hero-content h1 {
  font-size: 4.8rem;
  line-height: 1;
  color: #111827;
  margin-bottom: 2.4rem;
  font-weight: 700;
  color: #fff !important;
}
.hero .container .hero-wrapper .hero-content p {
  font-size: 2rem;
  line-height: 2.8rem;
  color: #4b5563;
  font-weight: 500;
  margin-bottom: 3.2rem;
  color: #fff !important;
}

.about {
  background-color: #f9fafb;
  padding: 10rem 0;
}
.about .about-wrapper {
  display: flex;
  gap: 3rem;
  margin-top: 6.4rem;
}
.about .about-wrapper .about-content {
  flex: 2;
}
.about .about-wrapper .about-content h3 {
  font-size: 2.8rem;
  line-height: 3rem;
  color: #111827;
  margin-bottom: 1.6rem;
}
.about .about-wrapper .about-content p {
  font-size: 2rem;
  line-height: 2.8rem;
  color: #4b5563;
  margin-bottom: 1.6rem;
}
.about .about-wrapper .about-content .about-image {
  border-radius: 0.8rem;
  overflow: hidden;
  max-height: 40rem;
}
.about .about-wrapper .about-content .about-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
.about .about-wrapper .about-founders {
  flex: 1;
}
.about .about-wrapper .about-founders h3 {
  font-size: 2.8rem;
  line-height: 3rem;
  color: #111827;
  margin-bottom: 1.6rem;
}
.about .about-wrapper .about-founders .about-founders-wrapper .about-founders-box {
  padding: 1.5rem 0;
}
.about .about-wrapper .about-founders .about-founders-wrapper .about-founders-box h4 {
  font-size: 2rem;
  line-height: 2.8rem;
  color: #111827;
  font-weight: 500;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about .about-wrapper .about-founders .about-founders-wrapper .about-founders-box h4 i {
  font-size: 2rem;
  color: #4b5563;
}

.cooperation {
  position: relative;
}
.cooperation .pear-icon {
  position: absolute;
  left: 0;
  top: -15rem;
  max-width: 25rem;
  filter: drop-shadow(0px 0px 15rem #f07e1e);
}
.cooperation .apple-icon {
  position: absolute;
  right: 0;
  top: -20rem;
  max-width: 25rem;
  filter: drop-shadow(0px 0px 15rem #509755);
}
.cooperation-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 6.4rem;
  margin-bottom: 4.8rem;
}
.cooperation-wrapper .cooperation-box {
  text-align: center;
}
.cooperation-wrapper .cooperation-box .cooperation-icon {
  width: 5rem;
  height: 5rem;
  background-color: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
  background-color: rgba(146, 197, 94, 0.2117647059);
}
.cooperation-wrapper .cooperation-box .cooperation-icon i {
  font-size: 2rem;
  color: #92c55e;
}
.cooperation-banner {
  height: 70vh;
  width: 100%;
  background-image: url("/images/cooperation.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.quality {
  background-color: #f9fafb;
  padding: 10rem 0;
  position: relative;
}
.quality .melon-icon {
  position: absolute;
  top: -5rem;
  left: 0;
  max-width: 30rem;
  filter: drop-shadow(0px 0px 15rem #f07e1e);
}
.quality .granate-icon {
  position: absolute;
  top: -20rem;
  right: 0;
  max-width: 40rem;
}
.quality-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 6.4rem;
}
.quality-wrapper .quality-box {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.8rem;
}
.quality-wrapper .quality-box .quality-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}
.quality-wrapper .quality-box .quality-header .quality-icon i {
  font-size: 2rem;
}
.quality-wrapper .quality-box .quality-header .quality-icon.orange {
  color: #f07e1e;
}
.quality-wrapper .quality-box .quality-header .quality-icon.green {
  color: #92c55e;
}
.quality-wrapper .qulity-product {
  height: 12.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  position: relative;
  border-radius: 0.8rem;
}
.quality-wrapper .qulity-product .quality-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
}
.quality-wrapper .qulity-product .quality-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.quality-wrapper .qulity-product .quality-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quality-wrapper .qulity-product p {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}
.quality-wrapper .qulity-product:hover .quality-img img {
  transform: scale(1.2);
}

.logistics-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 6.4rem;
}
.logistics-wrapper .logistics-box {
  text-align: center;
  padding: 2.2rem;
  border: 0.1rem solid;
  border-radius: 1.5rem;
}
.logistics-wrapper .logistics-box .logistics-icon {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
}
.logistics-wrapper .logistics-box .logistics-icon i {
  font-size: 3rem;
}
.logistics-wrapper .logistics-box.red {
  border-color: #fb0536;
  background-color: #ffd1cf;
}
.logistics-wrapper .logistics-box.red .logistics-icon i {
  color: #fb0536;
}
.logistics-wrapper .logistics-box.blue {
  border-color: #609cc0;
  background-color: #d4fcfe;
}
.logistics-wrapper .logistics-box.blue .logistics-icon i {
  color: #609cc0;
}
.logistics-wrapper .logistics-box.green {
  border-color: #509755;
  background-color: rgba(146, 197, 94, 0.2117647059);
}
.logistics-wrapper .logistics-box.green .logistics-icon i {
  color: #509755;
}
.logistics-wrapper .logistics-box.orange {
  border-color: #f07e1e;
  background-color: #ffe7d7;
}
.logistics-wrapper .logistics-box.orange .logistics-icon i {
  color: #f07e1e;
}

.calendar {
  background-color: #f9fafb;
  padding: 10rem 0;
  color: #4b5563;
}
.calendar table {
  width: 100%;
  text-align: center;
}
.calendar table thead {
  height: 12rem;
}
.calendar table thead th {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
}
.calendar table tbody tr {
  padding: 2rem 0;
}
.calendar table tbody tr:not(:last-child) {
  box-shadow: 0 2px 0 -1px #cacaca;
}
.calendar table tbody tr td {
  padding: 2rem 0;
}
.calendar table tbody tr td .hide-for-large {
  display: none;
}
.calendar table tbody tr td i {
  color: #92c55e;
}
.calendar table tbody tr td.product {
  font-size: 1.4rem;
  text-align: left;
  min-width: 10rem;
  font-weight: 500;
}

.export-banner {
  margin-top: 6.4rem;
  height: 35rem;
  background-image: url("/images/export.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}
.export-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.export-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 6.4rem;
}
.export-wrapper .export-box {
  text-align: center;
}
.export-wrapper .export-box h4 {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #111827;
  font-weight: 500;
}
.export-wrapper .export-box p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #4b5563;
}

.footer {
  position: relative;
  clear: both;
  padding: 10rem 0;
  background-color: #111827;
}
.footer-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-wrapper ul {
  display: flex;
  flex-direction: column;
  max-width: 30rem;
  gap: 1rem;
}
.footer-wrapper ul li {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #4b5563;
  color: #9ca3af !important;
}
.footer-wrapper ul li a {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #4b5563;
  color: #9ca3af !important;
}
.footer-wrapper ul li a:hover {
  color: #fff !important;
}
.footer-wrapper ul li .logo-block {
  color: #fff !important;
  margin-bottom: 1rem;
}
.footer-wrapper ul .footer-content__header {
  color: #fff !important;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  section {
    margin: 5rem 0;
  }
  .about,
  .quality,
  .export {
    padding: 5rem 0;
  }
  .header .header-wrapper .controllers-mobile {
    display: flex !important;
    align-items: center;
    gap: 2rem;
  }
  .header .header-wrapper .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    padding: 3rem;
    background-color: #f9fafb;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .header-wrapper .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .header-wrapper .navbar ul {
    align-items: start;
    flex-direction: column;
    gap: 3rem;
  }
  .header .header-wrapper .navbar ul .dropdown {
    display: none;
  }
  .hero-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hero-wrapper .hero-content h1 {
    font-size: 3rem;
    line-height: 1;
    color: #111827;
  }
  .hero-wrapper .hero-content p {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #4b5563;
  }
  .cooperation .pear-icon {
    max-width: 15rem;
    top: -10rem;
  }
  .cooperation .apple-icon {
    max-width: 15rem;
    top: -10rem;
  }
  .quality .melon-icon {
    max-width: 15rem;
    top: -3rem;
  }
  .quality .granate-icon {
    max-width: 25rem;
    top: -15rem;
  }
}
@media (max-width: 900px) {
  .about .about-wrapper {
    flex-direction: column;
  }
  .about .about-wrapper .about-content {
    flex: 1;
  }
  .about .about-wrapper .about-content h3 {
    font-size: 2rem;
    line-height: 2.8rem;
    color: #111827;
  }
  .about .about-wrapper .about-content p {
    font-size: 1.7rem;
    line-height: 2rem;
    color: #4b5563;
  }
  .about .about-wrapper .about-founders {
    flex: 1;
  }
  .about .about-wrapper .about-founders h3 {
    font-size: 2rem;
    line-height: 2.8rem;
    color: #111827;
  }
}
@media (max-width: 768px) {
  .calendar table {
    display: block;
  }
  .calendar table thead {
    display: none;
  }
  .calendar table tbody {
    display: block;
  }
  .calendar table tbody tr {
    display: block;
    width: 100%;
  }
  .calendar table tbody tr td {
    display: block;
  }
  .calendar table tbody tr td .hide-for-large {
    display: inline-block;
    font-size: 1.5rem;
    width: 10rem;
    text-align: left;
    margin-left: 1.5rem;
  }
  .calendar table tbody tr td.show-for-large {
    display: none;
  }
  .calendar table tbody tr td.product {
    text-align: center;
    font-size: 1.6rem;
  }
  .cooperation .pear-icon {
    max-width: 8rem;
    top: -10rem;
  }
  .cooperation .apple-icon {
    max-width: 8rem;
    top: -10rem;
  }
  .quality .melon-icon {
    max-width: 10rem;
    top: -3rem;
  }
  .quality .granate-icon {
    max-width: 15rem;
    top: -10rem;
  }
}