@font-face {
  font-family: "Courier";
  src: url("/assets/fonts/Courier-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Courier";
  src: url("/assets/fonts/Courier-Italic.ttf");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Courier";
  src: url("/assets/fonts/Courier-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Courier";
  src: url("/assets/fonts/Courier-BoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "STARSHINES";
  src: url("/assets/fonts/DFVN-STARSHINES-ITALIC.TTF");
  font-style: italic;
}
@font-face {
  font-family: "STARSHINES";
  src: url("/assets/fonts/DFVN-STARSHINES-REGULAR.TTF");
}
body {
  font-family: "Montserrat", sans-serif;
  --color-orange: #f29328;
  --color-green: #699d36;
  background-color: #f9fcf4;
  overflow-x: hidden;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  background: #e07a2a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: none;
  border-radius: 50px;
  padding-left: 24px;
  padding-right: 8px;
  height: 48px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-cta i {
  font-size: 32px;
  margin-left: 12px;
}
.btn-cta.btn-cta-outline {
  border: 1px solid #e07a2a;
  background: transparent;
  color: #e07a2a;
}
.btn-cta.no-icon {
  padding-right: 24px;
}
.btn-cta:hover {
  background: #c86a1e;
  color: #fff;
}

.slick-prev:before,
.slick-next:before {
  color: var(--color-green);
  opacity: 0.7;
}

.slick-next {
  right: 0;
}

.slick-prev {
  left: 0;
}

#app-wrapper {
  overflow-x: hidden;
}

#app-nav {
  position: fixed;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(to bottom, #fff, transparent);
  filter: drop-shadow(0 -80px 5px #fff);
}
#app-nav .nav-items {
  display: none;
  gap: 60px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
#app-nav .nav-items a {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
}
#app-nav .nav-items a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
#app-nav .nav-items a:hover::after {
  transform: scaleX(1);
}
#app-nav .app-nav-sm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
#app-nav .app-nav-brands {
  display: flex;
  align-items: center;
  gap: 24px;
}
#app-nav .app-nav-brands a {
  display: none;
}
#app-nav .app-nav-brands a.tagom {
  margin-top: 4px;
}
#app-nav .app-nav-brands a.tagom img {
  height: 20px;
}
#app-nav .app-nav-brands a img {
  opacity: 0.6;
  height: 24px;
}
#app-nav .menu-toggler svg:last-child {
  display: none;
}
#app-nav.open {
  height: 100vh;
  height: 100dvh;
  background: var(--color-green);
}
#app-nav.open .app-nav-inner {
  height: 100%;
  width: 100%;
  position: relative;
}
#app-nav.open .app-nav-brands a {
  display: inline-block;
}
#app-nav.open .menu-toggler svg:last-child {
  display: inline-block;
}
#app-nav.open .menu-toggler svg:first-child {
  display: none;
}
#app-nav.open .nav-items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  gap: 24px;
  color: #fff;
}
#app-nav.open .nav-items a {
  font-size: inherit;
  color: inherit;
}
#app-nav.open .nav-items a::after {
  color: inherit;
}

#app-nav-sm-menu-toggler {
  padding: 0;
  border: 0;
  background: none;
  width: 22px;
}

#app-banner {
  height: 100dvh;
  width: 100%;
  position: relative;
  background-position: top center;
  background-size: 100% auto;
}
#app-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60%;
  width: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
#app-banner .inner {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#app-banner .app-banner-content {
  color: #fff;
}
#app-banner .app-banner-content .label {
  text-transform: uppercase;
}
#app-banner .app-banner-content .title {
  font-family: "StarShines";
  margin: 20px 0;
  font-size: 45px;
}
#app-banner .app-banner-content .description {
  margin-bottom: 24px;
  font-size: 18px;
}
#app-banner .app-banner-content .actions .btn-cta {
  text-transform: uppercase;
  color: inherit;
  padding: 0 32px;
  font-weight: 500;
  font-size: 18px;
  background-color: var(--color-orange);
}
#app-banner .text-banner {
  width: 100%;
  margin-top: -120px;
  position: relative;
  margin-bottom: -120px;
  z-index: 1;
}

#section1 {
  --color-orange: #f29328;
  --color-green: #699d36;
  background-color: #f9fcf4;
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding-top: 150px;
}
#section1 .section-title {
  position: relative;
}
#section1 .section-title .background-text {
  font-size: 8vw;
  font-weight: 900;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
  color: #fff;
}
#section1 .section-title h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#section1 h2 {
  font-family: "Courier";
  text-align: center;
  color: var(--color-green);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 44px;
}
#section1 h2 > span {
  font-size: 60px;
}
#section1 .pc1__lines {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
#section1 .pc1__star {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
#section1 .pc1__star--tl {
  left: 160px;
  top: 425px;
  width: 273px;
  transform: rotate(-50.54deg);
}
#section1 .pc1__star--tr {
  right: 160px;
  top: 392px;
  width: 273px;
  transform: rotate(-50.54deg);
}
#section1 .pc1__star--ml {
  left: calc(12% + 121px);
  top: 1300px;
  width: 167px;
  transform: rotate(-50.54deg);
}
#section1 .pc1__star--br-big {
  right: calc(25% - 45px);
  bottom: 400px;
  width: 272px;
  transform: rotate(-127.61deg);
}
#section1 .pc1__star--br-sm {
  left: 111px;
  bottom: 300px;
  width: 157px;
  transform: rotate(-127.61deg);
}
#section1 .pc1__partners {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding-bottom: 150px;
}
#section1 .pc1__partners_row {
  display: flex;
  gap: 20px;
}
#section1 .pc1__partners_row:nth-child(2) {
  margin-top: -150px;
}
#section1 .pc1__partners_row .pc1__partners_col {
  flex: 1;
  overflow: hidden;
}
#section1 .pc1__partners_row .pc1__partners_col:nth-child(2) {
  width: 40%;
  flex: unset;
  overflow: hidden;
}
#section1 .pc1__partner {
  position: relative;
}
#section1 .pc1__partner .pc1__partner-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  max-width: 100%;
  flex-shrink: 0;
}
#section1 .pc1__partner .pc1__partner-photo::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
#section1 .pc1__partner .pc1__partner-photo img:not(.pc1__partner-logo) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#section1 .pc1__partner .pc1__partner-photo .pc1__partner-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  height: 77px;
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
#section1 .pc1-desc {
  margin-top: 24px;
  line-height: 1.8;
  text-align: justify;
  color: #000;
  margin-bottom: 0;
}
#section1 .btn-cta {
  margin-top: 28px;
  padding: 0 12px 0 20px;
  width: 100%;
}
#section1 .btn-cta span {
  margin-left: 4px;
}
#section1 .btn-cta i {
  margin-left: auto;
}
#section1 .pc1__center {
  position: relative;
}
#section1 .pc1__center .pc1__bag {
  position: relative;
  width: 72%;
  margin: auto;
  margin-bottom: 40px;
}
#section1 .pc1__center .pc1__bag::before {
  content: "";
  width: 100%;
  display: block;
  aspect-ratio: 1;
  background-color: #ffcf5f;
  border-radius: 100%;
  opacity: 0.53;
}
#section1 .pc1__center .pc1__bag img {
  width: 105%;
  display: block;
  position: absolute;
  left: -12%;
  top: 18%;
}
#section1 .pc1__project {
  position: relative;
  z-index: 1;
  margin-top: 80px;
}
#section1 .pc1__project .pc1__project-img {
  width: 72%;
  margin: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 40px;
}
#section1 .pc1__project .pc1__project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#section2 {
  background-color: #ffffff;
  position: relative;
  isolation: isolate;
  margin: 50px 0;
}
#section2::before {
  content: "";
  width: 100%;
  background-image: url(/assets/images/section4-border-white.png);
  background-size: auto 100%;
  background-position: top center;
  display: block;
  position: absolute;
  left: 0;
  top: -50px;
  height: 50px;
  overflow: hidden;
}
#section2::after {
  content: "";
  width: 100%;
  background-image: url(/assets/images/section4-border-white.png);
  transform: scaleY(-1);
  background-size: auto 100%;
  background-position: top center;
  display: block;
  position: absolute;
  left: 0;
  bottom: -50px;
  height: 50px;
}
#section2 .paragraph-box {
  z-index: 6;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
}
#section2 .paragraph-box .govogiay-logo {
  width: 220px;
  margin-bottom: 40px;
}
#section2 .paragraph-box h3 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 24px;
  color: var(--color-green);
  margin-bottom: 16px;
}
#section2 .paragraph-box p {
  margin: 0;
  text-align: justify;
}
#section2 > .inner {
  position: relative;
  padding: 50px 0;
}
#section2 .img-bg {
  width: 100%;
}

#section3 > .inner {
  padding: 150px 0;
}
#section3 .grid {
  display: flex;
  gap: 50px;
  margin-bottom: 150px;
  margin-top: 50px;
}
#section3 .grid .photos {
  flex: 1;
  display: flex;
  gap: 24px;
}
#section3 .grid .photos .img {
  flex: 1;
}
#section3 .grid .photos .img img {
  max-width: 100%;
  display: block;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  -o-object-position: center;
     object-position: center;
}
#section3 .grid .photos .img p {
  display: none;
}
#section3 .grid .text {
  flex: 1;
}
#section3 .grid .text p {
  text-align: justify;
}
#section3 .achievement-title {
  margin-bottom: 70px;
  text-align: center;
}
#section3 .achievement-title .star {
  width: 90px;
}
#section3 .achievement-title h2 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-green);
}
#section3 .achievements .actions {
  margin-top: 100px;
  text-align: center;
}
#section3 .achievements .actions .btn-cta span {
  color: #333;
}
#section3 .achievements .actions .btn-cta:hover span {
  color: #fff;
}
#section3 .achievements-grid {
  display: flex;
  gap: 80px;
}
#section3 .achievement-box {
  flex: 1;
  text-align: center;
}
#section3 .achievement-box .achievement-inner {
  position: relative;
}
#section3 .achievement-box .achievement-inner img {
  max-width: 100%;
}
#section3 .achievement-box .achievement-inner .achievement-values {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#section3 .achievement-box .achievement-inner .achievement-values .number {
  font-weight: 600;
  font-size: 50px;
}
#section3 .achievement-box .achievement-inner .achievement-values .number.single {
  transform: scale(1.5);
}
#section3 .achievement-box .achievement-inner .achievement-values .unit {
  font-weight: 600;
  font-size: 30px;
}
#section3 .achievement-box p {
  margin-bottom: 0;
  font-size: 20px;
  margin-top: 12px;
}

#section4 {
  position: relative;
  background-color: #eaf8de;
  margin: 50px 0;
}
#section4::before {
  content: "";
  width: 100%;
  background-image: url(/assets/images/section4-border.png);
  background-size: auto 100%;
  background-position: top center;
  display: block;
  position: absolute;
  left: 0;
  top: -50px;
  height: 50px;
}
#section4::after {
  content: "";
  width: 100%;
  background-image: url(/assets/images/section4-border.png);
  transform: scaleY(-1);
  background-size: auto 100%;
  background-position: top center;
  display: block;
  position: absolute;
  left: 0;
  bottom: -50px;
  height: 50px;
}
#section4 .section-title {
  position: relative;
}
#section4 .section-title .background-text {
  font-size: 8vw;
  font-weight: 900;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
  color: #fff;
}
#section4 .section-title h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#section4 h2 {
  font-family: "Courier";
  text-align: center;
  color: var(--color-green);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 55px;
}
#section4 .inner {
  padding: 100px 0;
}
#section4 .img {
  text-align: center;
}
#section4 .img img {
  max-width: 680px;
  width: 100%;
}

#section6 > .inner {
  padding-top: 150px;
  padding-bottom: 0;
}
#section6 .grid {
  padding: 30px 0;
}
#section6 .grid .item {
  text-align: left;
}
#section6 .grid .item .title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
#section6 .grid .item .img {
  text-align: center;
}
#section6 .grid .item .img img {
  height: 160px;
  margin-bottom: 40px;
}
#section6 .grid .item p {
  text-align: justify;
}

#section7 {
  background-color: #fff;
  position: relative;
  margin: 50px 0;
}
#section7::after {
  content: "";
  width: 100%;
  background-image: url(/assets/images/section4-border-white.png);
  transform: scaleY(-1);
  background-size: auto 100%;
  background-position: top center;
  display: block;
  position: absolute;
  left: 0;
  bottom: -50px;
  height: 50px;
}
#section7 .section-title {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #f9fcf4 50%, #ffffff 50%);
}
#section7 .section-title .section-title-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin-top: 10%;
}
#section7 .section-title > .bg {
  width: 100%;
}
#section7 .section-title .background-text {
  font-size: 8vw;
  font-weight: 900;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
  color: #57921d;
}
#section7 .section-title h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Courier";
  font-size: 55px;
  white-space: nowrap;
}
#section7 .thumb-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  justify-content: center;
}
#section7 .thumb-list .thumb-item {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  transition: border-color 0.15s;
}
#section7 .thumb-list .thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#section7 .thumb-list .thumb-item.active, #section7 .thumb-list .thumb-item:hover {
  border: 2px solid #54ab47;
}
#section7 .product-info-wrapper .label-small {
  font-size: 16px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}
#section7 .product-info-wrapper .product-name {
  font-size: 28px;
  font-weight: 800;
  color: #2a9d2a;
  line-height: 1.25;
  margin-bottom: 18px;
}
#section7 .product-info-wrapper .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
#section7 .product-info-wrapper .price-label {
  font-weight: 800;
  color: #333;
}
#section7 .product-info-wrapper .price-value {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  line-height: 1;
}
#section7 .product-info-wrapper .price-unit {
  font-size: 12px;
  font-weight: 700;
  color: #555;
}
#section7 .product-info-wrapper .spec-line {
  margin-bottom: 6px;
  color: #333;
}
#section7 .product-info-wrapper .spec-line strong {
  font-weight: 700;
}
#section7 .product-info-wrapper .meaning-text {
  color: #333;
  line-height: 1.65;
  margin-top: 4px;
  margin-bottom: 24px;
}
#section7 .product-info-wrapper .meaning-text strong {
  font-weight: 700;
}
#section7 .cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 50px;
}

#mainImgWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

#mainImg {
  max-width: 100%;
  max-height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}

.line-clamp-3 {
  overflow: hidden;
  line-height: 1.5;
}

.line-clamp-md + .view-more-btn {
  display: none;
  margin-top: 6px;
  background: none;
  border: none;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font-size: 14px;
  float: right;
}

@media screen and (max-width: 992px) {
  #app-banner {
    background-size: cover;
    background-repeat: no-repeat;
  }
  #app-banner > .inner {
    justify-content: flex-end;
    padding-bottom: 30%;
  }
  #app-banner .app-banner-content {
    padding: 0 20px;
  }
  #app-banner .app-banner-content .title {
    font-size: clamp(2rem, 4vw + 1rem, 5rem);
  }
  #app-banner .app-banner-content .description {
    font-size: 1.2rem;
  }
  #app-banner .app-banner-content .actions .btn-cta {
    font-size: 16px;
  }
  #section1 .btn-cta {
    width: auto;
    z-index: 1;
    position: relative;
    background-color: #f9fcf4;
  }
  #section1 .btn-cta > span {
    display: none;
  }
  #section1 .btn-cta i {
    margin-left: 12px;
  }
}
@media screen and (max-width: 600px) {
  #app-banner {
    background-size: cover;
    background-repeat: no-repeat;
  }
  #app-banner > .inner {
    justify-content: flex-end;
    padding-bottom: 30%;
  }
  #app-banner .app-banner-content {
    padding: 0 20px;
  }
  #app-banner .app-banner-content .title {
    font-size: 30px;
    line-height: 1.5;
    margin: 16px 0;
  }
  #app-banner .app-banner-content .title span {
    display: block;
  }
  #app-banner .app-banner-content .description {
    font-size: 14px;
  }
  #app-banner .app-banner-content .actions .btn-cta {
    font-size: 16px;
  }
  .btn-cta {
    height: 40px;
    font-size: 12px;
  }
  #section1 {
    padding-top: 60px;
  }
  #section1 > .inner {
    padding: 50px 0;
  }
  #section1 .section-title .background-text {
    font-size: 55px;
  }
  #section1 .section-title h2 {
    white-space: nowrap;
    font-size: 20px;
  }
  #section1 .section-title h2 span {
    font-size: 36px;
  }
  #section1 .pc1__partners {
    margin-top: 20px;
    padding-bottom: 50px;
  }
  #section1 .pc1__project {
    margin-top: 20px;
  }
  #section1 .pc1__partners_row {
    flex-direction: column;
    margin-bottom: 16px;
  }
  #section1 .pc1__partners_row:nth-child(2) {
    margin-top: 0;
  }
  #section1 .pc1__partners_row .pc1__partners_col:nth-child(2) {
    width: 100%;
  }
  #section1 .pc1__partners_row .pc1__center .pc1__bag {
    width: 220px;
  }
  #section1 .pc1__partners_row .pc1__partners_col {
    padding: 0 30px;
  }
  #section1 .pc1__partner .pc1__partner-photo {
    max-width: 220px;
    margin: auto;
  }
  #section1 .btn-cta {
    width: auto;
  }
  #section2 .paragraph-box {
    width: auto;
    padding: 0 30px;
  }
  #section2 .paragraph-box .govogiay-logo {
    width: 150px;
    margin-bottom: 30px;
  }
  #section3 .grid {
    flex-direction: column;
    margin-bottom: 70px;
  }
  #section3 .grid .photos {
    flex: unset;
    gap: 40px;
    flex-direction: column;
  }
  #section3 .grid .photos .img {
    padding: 0 30px;
  }
  #section3 .grid .photos .img p {
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
  }
  #section3 .grid .text {
    display: none;
  }
  #section3 .achievements .actions {
    margin-top: 50px;
  }
  #section3 .achievements .btn-cta {
    padding-left: 16px;
    font-size: 10px;
  }
  #section3 .achievement-title {
    margin-bottom: 40px;
  }
  #section3 .achievement-title .star {
    width: 55px;
  }
  #section3 .achievement-title h2 {
    font-size: 22px;
    margin-top: 12px;
  }
  #section3 .achievements-grid {
    gap: 20px;
    padding: 0 10px;
  }
  #section3 .achievements-grid .achievement-box p {
    font-size: 12px;
  }
  #section3 .achievements-grid .achievement-box .achievement-inner .achievement-values .number {
    font-size: 18px;
  }
  #section3 .achievements-grid .achievement-box .achievement-inner .achievement-values .unit {
    font-size: 11px;
  }
  #section4 .section-title .background-text {
    font-size: 55px;
  }
  #section4 .section-title h2 {
    white-space: nowrap;
    font-size: 36px;
  }
  #section4 .img {
    padding: 0 30px;
  }
  #section6 .grid {
    display: block;
    padding: 30px;
  }
  #section6 .grid .slick-dots {
    left: 0;
  }
  #section6 .grid .item .img {
    margin-bottom: 24px;
  }
  #section6 .grid .item .img img {
    height: auto;
    max-width: 90%;
    max-height: 160px;
    margin: auto;
  }
  #section6 .grid .item .title {
    text-align: left !important;
  }
  #section6 .grid .item .title,
  #section6 .grid .item p {
    max-width: 100% !important;
  }
  #section7 .section-title .background-text {
    font-size: 44px;
    white-space: nowrap;
  }
  #section7 .section-title h2 {
    white-space: nowrap;
    font-size: 36px;
  }
  #section7 .cta-section {
    flex-direction: column;
  }
  #section7 .product-info-wrapper .product-name {
    font-size: 24px;
  }
  #section7 .product-info-wrapper .actions {
    text-align: center;
  }
  #section7 .thumb-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  #section7 .thumb-list::-webkit-scrollbar {
    display: none;
  }
  #section7 .thumb-item {
    flex-shrink: 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
  .line-clamp-3.expanded {
    -webkit-line-clamp: unset;
  }
  .line-clamp-md + .view-more-btn {
    display: inline-block;
  }
}
@media screen and (min-width: 992px) {
  #app-nav .app-nav-sm-header {
    display: none;
  }
  #app-nav .nav-items {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #section2 .paragraph-box {
    width: 50%;
    max-width: 650px;
    margin-left: 30px;
    margin-top: 50px;
  }
  #section1 .pc1-desc {
    line-height: 1.5;
  }
  #section3 .grid .photos {
    flex-direction: column;
  }
  #section3 .grid .text p {
    line-height: 1.8;
  }
  #section3 .achievement-title h2 {
    font-size: 32px;
  }
  #section3 .achievements-grid {
    gap: 60px;
  }
  #section3 .achievement-box p {
    font-size: 14px;
  }
  #section3 .achievement-box .achievement-inner .achievement-values .number {
    font-size: 32px;
  }
  #section3 .achievement-box .achievement-inner .achievement-values .unit {
    font-size: 15px;
  }
  #section6 .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 80px;
  }
  #section6 .grid .item:last-child {
    grid-column: span 2;
    text-align: center;
    margin-top: 30px;
  }
  #section6 .grid .item:last-child .title,
  #section6 .grid .item:last-child p {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) and (orientation: portrait) {
  #section2 .paragraph-box {
    margin-top: 10%;
  }
}
@media screen and (min-width: 992px) and (orientation: landscape) {
  #section2 .paragraph-box {
    position: absolute;
    width: 400px;
    top: 100px;
    left: 0;
    margin-top: 0;
    margin-left: 0;
  }
  #section2 .paragraph-box h3 {
    margin-bottom: 16px;
  }
  #section6 .grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px 80px;
  }
  #section6 .grid .item {
    grid-column: span 2;
  }
  #section6 .grid .item:nth-child(4), #section6 .grid .item:nth-child(5) {
    grid-column: span 3;
  }
  #section6 .grid .item:nth-child(4) p,
  #section6 .grid .item:nth-child(4) .title, #section6 .grid .item:nth-child(5) p,
  #section6 .grid .item:nth-child(5) .title {
    max-width: 66.66%;
    margin-left: auto;
    margin-right: auto;
  }
}/*# sourceMappingURL=style.css.map */