@font-face {
  font-family: "Avenir";
  src: url("../fonts/AvenirLTStd-Medium.otf");
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/AvenirLTStd-Black.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/AvenirLTStd-Heavy.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/AvenirLTStd-Book.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/AvenirLTStd-Light.otf");
  font-weight: 200;
}

@font-face {
  font-family: "Noto-Sans";
  src: url("../fonts/NotoSansSC-Medium.ttf");
}
@font-face {
  font-family: "Noto-Sans";
  src: url("../fonts/NotoSansSC-Black.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Noto-Sans";
  src: url("../fonts/NotoSansSC-Bold.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Noto-Sans";
  src: url("../fonts/NotoSansSC-Regular.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Noto-Sans";
  src: url("../fonts/NotoSansSC-Light.ttf");
  font-weight: 200;
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
/* strong, */
sub,
/* sup, */
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0px;
}

body {
  font-family: "Avenir", sans-serif;
  line-height: 1;
  color: #5f5e4a;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

body:lang(tc) {
  font-family: "Noto-Sans", sans-serif;
  line-height: 1;
  color: #5f5e4a;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

body .content-wrapper {
  flex-grow: 1;
  position: relative;
}

.section-wrapper {
  overflow: hidden;
}

div:has(> section.contactUs-form-section) {
  width: 100%;
  overflow: hidden;
}

.section {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding: 0px 25px;
}

a {
  text-decoration: none;
  color: inherit;
}

.fade {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade.visible {
  opacity: 1;
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1400px) {
  .section {
    padding: 0px 50px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 0px 20px;
  }
}
.site-header {
  position: relative;
  width: 100%;
  height: 1100px;
  display: flex;
  box-shadow: 8px 8px 15px 0px rgba(0, 0, 0, 0.1019607843);
  border-bottom-right-radius: 40px;
  position: relative;
}
.site-header .background-image {
  z-index: -1;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  border-bottom-right-radius: 20px;
  display: none;
}
.site-header .background-image.desktop {
  display: block;
}
.site-header.light-text {
  color: #ffffff;
}
.site-header.light-text .logo-container {
  background-image: url("../images/Y_logo.svg");
}
.site-header.home-header {
  height: 1260px;
}
.site-header .header-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1920px;
  padding: 0px 25px;
  margin: 0px auto;
  align-items: center;
  height: 206px;
}
.site-header .logo-container {
  width: 400px;
  height: auto;
  aspect-ratio: 877/227;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/Y_logo-dark.svg");
}
.site-header .main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1122px;
  width: calc(100% - 400px - 20px);
}
.site-header .main-nav ul {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .main-nav ul li {
  padding: 10px 5px;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 4px transparent solid;
  border-bottom: 4px transparent solid;
}
.site-header .main-nav ul li.active {
  border-bottom: 4px #5f5e4a solid;
}
.site-header .main-nav .menu-tablet {
  display: none;
}
.site-header .main-nav .lang-switch {
  margin-top: -4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  background-color: #a6a6a6;
  border-radius: 50%;
  line-height: 1;
  padding-top: 3px;
  color: white;
}

body:lang(tc) .site-header .main-nav .lang-switch {
  padding-top: 0px;
}

.site-header .social-sidebar {
  z-index: 10;
  position: fixed;
  left: 60px;
  top: calc((100% - 234px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 278px;
}
.site-header .social-sidebar a {
  display: block;
  font-size: 0px;
}
.site-header .social-sidebar a img {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1019607843));
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.site-header .message {
  top: 206px;
  height: calc(100% - 206px);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: calc(50% + 50px);
  width: calc(50% - 50px - 25px);
  max-width: 885px;
  padding-bottom: 120px;
}
.site-header .message p {
  font-weight: 200;
  font-size: 26px;
  line-height: 40px;
}
.site-header .message h1 {
  margin-top: 13px;
  font-weight: 500;
  font-size: 85px;
  letter-spacing: 1px;
}
.site-header .message h1 span {
  font-weight: 200;
  font-size: 60px;
  line-height: 100%;
}
.site-header .message h3 {
  margin-top: -4px;
  font-weight: 200;
  font-size: 26px;
  line-height: 42px;
}
.site-header.home h1 {
  margin-top: 25px;
  letter-spacing: 3px;
}
.site-header.ourStories .message {
  left: calc(50% + 150px);
  width: calc(50% - 150px - 25px);
  max-width: 785px;
}
.site-header.ourStories .message h3 {
  margin-top: 25px;
  line-height: 48px;
}
.site-header.sharings .message {
  left: calc(50% + 200px);
  width: calc(50% - 200px - 25px);
  max-width: 735px;
}
.site-header.sharings .message h3 {
  margin-top: 25px;
  line-height: 48px;
}
.site-header.products .message h3 {
  margin-top: 25px;
  line-height: 48px;
}
.site-header.contactUs .message {
  height: auto;
  margin-top: 0px;
  left: calc(50% + 100px);
  width: calc(50% - 100px - 25px);
  max-width: 835px;
}

@media (min-width: 2000px) {
  .site-header .social-sidebar a img {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 1400px) {
  .site-header .logo-container {
    width: 320px;
  }
  .site-header .main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1122px;
    width: calc(100% - 320px - 20px);
  }
  .site-header .message h1 {
    /* font-size: 72px; */
    font-size: 60px;
  }
}
@media (max-width: 1400px) {
  .site-header {
    height: 426px;
    border-bottom-right-radius: 20px;
  }
  .site-header.home-header {
    height: 488px;
  }
  .site-header .background-image.desktop {
    display: none;
  }
  .site-header .background-image.tablet {
    display: block;
  }
  .site-header .header-wrapper {
    max-width: 100%;
    padding: 0px 50px;
    height: 96px;
  }
  .site-header .logo-container {
    width: 180px;
  }
  .site-header .main-nav .menu-deskop {
    display: none;
  }
  .site-header .main-nav .menu-tablet {
    display: flex;
  }
  .site-header .main-nav .menu-tablet ul {
    z-index: 2;
    justify-content: flex-end;
    gap: 20px;
  }
  .site-header .main-nav .menu-tablet ul li {
    padding: 0px;
  }
  .site-header .main-nav .menu-tablet .menu-tablet-list {
    margin-top: -4px;
    z-index: 1;
    padding: 66px 50px 100px 50px;
    display: none;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 427px;
    background-color: #6fb9c1;
  }
  .site-header .main-nav .menu-tablet .menu-tablet-list ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 52.4px;
  }
  .site-header .main-nav .menu-tablet .menu-tablet-list ul li {
    font-size: 18px;
    padding: 0px 15px 6px 15px;
    color: white;
  }
  .site-header .main-nav .menu-tablet .menu-tablet-list .icon-menu {
    cursor: pointer;
  }
  .site-header .main-nav .menu-tablet .menu-tablet-list.active {
    display: flex;
  }
  .site-header .social-sidebar {
    display: none;
  }
  .site-header .message {
    left: calc(50% + 50px);
    width: calc(50% - 50px - 50px);
    padding-bottom: 135px;
  }
  .site-header .message p {
    font-size: 16px;
    line-height: 20px;
  }
  .site-header .message h1 {
    font-size: 38px;
    line-height: 1;
  }
  .site-header .message h1 span {
    font-size: 38px;
    line-height: 1;
  }
  .site-header .message h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .site-header.ourStories .message, .site-header.products .message, .site-header.sharings .message, .site-header.contactUs .message {
    left: calc(50% + 65px);
    width: calc(50% - 65px - 50px);
  }
  .site-header.ourStories .message h1, .site-header.products .message h1, .site-header.sharings .message h1, .site-header.contactUs .message h1 {
    margin-top: 0px;
    font-size: 38px;
    line-height: 1;
  }
  .site-header.ourStories .message h3, .site-header.products .message h3, .site-header.sharings .message h3, .site-header.contactUs .message h3 {
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
  }
  .site-header.contactUs .message {
    margin-top: -120px;
  }
}
@media (max-width: 900px) {
  .site-header .message h1 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .site-header {
    height: auto;
    border-bottom-right-radius: 20px;
    flex-direction: column;
  }
  .site-header .background-image {
    background-position: center bottom;
  }
  .site-header .background-image.desktop {
    display: none;
  }
  .site-header .background-image.tablet {
    display: none;
  }
  .site-header .background-image.mobile {
    display: block;
  }
  .site-header.home-header {
    height: auto;
  }
  .site-header .header-wrapper {
    padding: 0px 20px;
  }
  .site-header .main-nav .menu-tablet > ul {
    gap: 20px;
  }
  .site-header .main-nav .menu-tablet.active > ul li:first-child {
    display: none;
  }
  .site-header .main-nav .menu-tablet .menu-tablet-list {
    padding: 50px 50px 100px 50px;
    width: 100%;
  }
  .site-header .main-nav .menu-tablet .menu-tablet-list ul {
    gap: 61px;
  }
  .site-header .main-nav .menu-tablet .menu-tablet-list ul li {
    font-size: 20px;
    padding: 0px 10px 6px 10px;
  }
  .site-header .social-sidebar {
    display: none;
  }
  .site-header .message {
    padding: 0px 20px;
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    margin-top: 41px;
    padding-bottom: calc(190px + 45vw);
  }
  .site-header .message p {
    font-size: 21px;
    line-height: 30px;
  }
  .site-header .message h3 {
    margin-top: 4px;
    font-size: 21px;
    line-height: 30px;
  }
  .site-header.home .message {
    margin-top: 21px;
  }
  .site-header.ourStories .message, .site-header.products .message, .site-header.sharings .message, .site-header.contactUs .message {
    left: 0px;
    width: 100%;
    padding-bottom: calc(124px + 45vw);
  }
  .site-header.ourStories .message h1, .site-header.products .message h1, .site-header.sharings .message h1, .site-header.contactUs .message h1 {
    margin-top: 0px;
    font-weight: 400;
    font-size: 38px;
    line-height: 1;
  }
  .site-header.ourStories .message h3, .site-header.products .message h3, .site-header.sharings .message h3, .site-header.contactUs .message h3 {
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
  }
  .site-header.contactUs .message {
    margin-top: 0px;
    text-align: center;
  }
  .site-header.products .message, .site-header.sharings .message {
    width: 75%;
  }
}
.debug-overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  left: 0px;
  top: 0px;
  opacity: 0.2;
}

.footer {
  display: flex;
  width: 100%;
  background: #737373;
  padding: 30px 0px;
  text-align: center;
}
.footer .footer-wrapper {
  width: 100%;
  display: flex;
  max-width: 1920px;
  padding: 0px 25px;
  margin: 0px auto;
  align-items: center;
  color: white;
  justify-content: space-between;
}
.footer .footer-wrapper .logo {
  width: 205px;
  height: auto;
}
.footer .footer-wrapper .right-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer .footer-wrapper .social-menu {
  display: none;
  left: 60px;
  top: calc((100% - 234px) / 2);
  flex-direction: row;
  gap: 20px;
}
.footer .footer-wrapper .social-menu a {
  display: block;
  font-size: 0px;
}
.footer .footer-wrapper .social-menu a img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.footer .footer-wrapper .copy-right {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
}

@media (max-width: 1400px) {
  .footer {
    padding: 30px 0px;
  }
  .footer .footer-wrapper {
    max-width: 100%;
    padding: 0px 50px;
  }
  .footer .footer-wrapper .logo {
    width: 200px;
  }
  .footer .footer-wrapper .social-menu {
    display: flex;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 0px;
  }
  .footer .footer-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 0px 50px;
    gap: 30px;
  }
  .footer .footer-wrapper .logo {
    width: 180px;
  }
  .footer .footer-wrapper .right-container {
    align-items: center;
    gap: 10px;
  }
  .footer .footer-wrapper .social-menu {
    justify-content: center;
    gap: 15px;
  }
}
.section-wrapper {
  margin-top: 120px;
  position: relative;
}
body:lang(tc) .section .button {
  font-family: "Noto-Sans";
}
.section .button {
  text-align: center;
  display: inline-block;
  padding: 10px 40px 6px 40px;
  background-color: transparent;
  font-family: Avenir;
  font-weight: 300;
  color: #5f5e4a;
  border: 1px #5f5e4a solid;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 1px;
  cursor: pointer;
}
.section .button:hover {
  background-color: #5f5e4a;
  color: white;
}
.section p {
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
}

.section h1 {
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 48px;
  line-height: 36px;
}
.section h3 {
  font-weight: 500;
  font-size: 42px;
  line-height: 48px;
}
.section h5 {
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.4px;
}

.section .quote-p {
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.4px;
}
.section .milestone-p {
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.4px;
}
.section .overlay-images {
  pointer-events: none;
}
.section .story-quote-text {
  font-weight: 200;
  font-size: 26px;
  line-height: 40px;
}
.section .story-content-span {
  letter-spacing: 0.4px;
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
}
.section .story-content-h1 {
  letter-spacing: 0.4px;
  margin-top: 2px;
  font-weight: 500;
  font-size: 42px;
  line-height: 48px;
  margin-bottom: 20px;
}
.section .story-content-strong {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: -2px;
}
.section .story-content-p {
  font-weight: 200;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 9px;
}
.section .milestone-date {
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
}
.section .product-text-small {
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.4px;
}
.section .product-text-p {
  letter-spacing: 0.4px;
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
}
.section.image-text-style-section .content-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 200px 350px;
  width: 1133px;
  height: 760px;
  background-color: #f7f7f7;
}
.section.image-text-style-section .overlay-images {
  display: flex;
  position: absolute;
  top: 20px;
  left: 0px;
  height: 680px;
  width: 100%;
  justify-content: space-between;
}
.section.image-text-style-section .overlay-images .right-image,
.section.image-text-style-section .overlay-images .left-image {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 8px 8px 15px 0px rgba(0, 0, 0, 0.1019607843);
  object-fit: cover;
}
.section.image-text-style-section .overlay-images .left-image {
  width: 170px;
}
.section.image-text-style-section .overlay-images .right-image {
  width: calc(100% - 990px);
}
@media (min-width: 1920px) {
  .section.image-text-style-section .overlay-images .left-image {
    width: calc((100% - 1920px) / 2 + 170px);
  }
  .section.image-text-style-section .overlay-images .right-image {
    width: calc((100% - 1920px) / 2 + 930px);
  }
}
.section.image-text-style-2-section {
  flex-direction: row-reverse;
}
.section.image-text-style-2-section .overlay-images .left-image,
.section.image-text-style-2-section .overlay-images .right-image {
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}
.section.image-text-style-2-section .overlay-images .left-image {
  width: calc(100% - 990px);
}
.section.image-text-style-2-section .overlay-images .right-image {
  width: 170px;
}
@media (min-width: 1920px) {
  .section.image-text-style-2-section .overlay-images .left-image {
    width: calc((100% - 1920px) / 2 + 930px);
  }
  .section.image-text-style-2-section .overlay-images .right-image {
    width: calc((100% - 1920px) / 2 + 170px);
  }
}
.section.image-text-style-3-section {
  margin-top: 40px;
  padding-top: 0px;
  padding-bottom: 40px;
}
.section.image-text-style-3-section .content-box {
  margin-top: 0px;
  margin-bottom: 20px;
  height: auto;
  min-height: 600px;
  width: 1100px;
  padding: 100px 260px;
}
.section.image-text-style-3-section .overlay-images {
  height: calc(100% - 20px);
  top: 0px;
}

.home-highlights-background {
  background-color: #f7f7f7;
}

.home-highlights-section {
  flex-direction: column;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 140px;
}
.home-highlights-section h1 {
  height: 104px;
  padding-bottom: 40px;
}
.home-highlights-section .products {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0px 0px;
  gap: 40px 115px;
}
.home-highlights-section .products .product-card {
  position: relative;
  width: calc((100% - 230px) / 2);
  max-width: 693px;
  height: auto;
  aspect-ratio: 1.5;
  display: flex;
}
.home-highlights-section .products .product-card .color-background {
  display: flex;
  width: calc(100% - 60px);
  height: 71.5%;
  margin-top: auto;
  padding-left: 200px;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 8px 8px 15px 0px rgba(0, 0, 0, 0.1019607843);
  margin-left: 60px;
  position: relative;
}
.home-highlights-section .products .product-card p {
  width: 55%;
  max-width: 255px;
  margin: 0px 4% 9% 0px;
  color: white;
  font-weight: 300;
  font-size: 24px;
  line-height: 38px;
  text-align: left;
  position: absolute;
  letter-spacing: 1.5px;
  right: 0px;
  bottom: 0px;
  overflow-wrap: break-word;
  word-break: break-word;
}
body:lang(tc) .home-highlights-section .products .product-card p {
  font-size: 28px;
}

.home-highlights-section .products .product-card > img {
  position: absolute;
  width: 50%;
  height: 100%;
  object-fit: contain;
}
.home-highlights-section .products .product-card.purple .color-background {
  background: linear-gradient(333.33deg, #6d4baf 19.11%, #c5badb 85.68%);
}
.home-highlights-section .products .product-card.red .color-background {
  background: linear-gradient(0deg, #bf5354 0%, #fd9fa1 100%);
}
.home-highlights-section .products .product-card.pink .color-background {
  background: linear-gradient(360deg, #cb619c 0%, #fab6e4 100%);
}
.home-highlights-section .products .product-card.orange .color-background {
  background: linear-gradient(0deg, #ab6138 0%, #ebc3ae 100%);
}
.home-highlights-section .button {
  margin-top: 80px;
}

.home-certifications-section {
  padding: 100px;
}
.home-certifications-section .certifications {
  width: 100%;
  justify-content: space-around;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0px;
}
.home-certifications-section .certifications > div {
  width: 30%;
  max-width: 30%;
  /* max-width: 390px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.home-certifications-section .certifications > div p {
  font-weight: 400;
  width: 320px;
  letter-spacing: 0.4px;
}

.ourStories-partnership-section-wrapper {
  margin-top: 100px;
}

.ourStories-milestones-section {
  flex-direction: column;
  align-items: center;
  padding-top: 160px;
  margin-bottom: 0px;
}
.ourStories-milestones-section h1 {
  margin-bottom: 80px;
}
.ourStories-milestones-section .milestones {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 100px;
}
.ourStories-milestones-section .milestones .milestone {
  display: flex;
  width: 100%;
  position: relative;
}
.ourStories-milestones-section .milestones .milestone .overlay-images {
  display: flex;
  position: absolute;
  z-index: 1;
  width: 100%;
  margin-top: 40px;
}
.ourStories-milestones-section .milestones .milestone .photo,
.ourStories-milestones-section .milestones .milestone .colorbox {
  z-index: 1;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 8px 8px 15px 0px rgba(0, 0, 0, 0.1019607843);
  max-height: 600px;
}
.ourStories-milestones-section .milestones .milestone .photo {
  width: 41%;
  max-width: 787px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 786/600;
}
.ourStories-milestones-section .milestones .milestone .milestone-text {
  background-color: #f7f7f7;
  padding: 135px 220px;
  margin-left: calc(41% - 142px);
  min-height: 600px;
}
.ourStories-milestones-section .milestones .milestone .milestone-text h3 {
  margin-bottom: 30px;
}
.ourStories-milestones-section .milestones .milestone .colorbox {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 167px;
  margin-right: -25px;
}
@media (min-width: 1920px) {
  .ourStories-milestones-section .milestones .milestone .colorbox {
    width: calc(142px + (100vw - 1920px) / 2);
    right: calc(8px + -1 * (100vw - 1920px) / 2);
  }
}
.ourStories-milestones-section .milestones .milestone.milestone-reverse {
  flex-direction: row-reverse;
}
.ourStories-milestones-section .milestones .milestone.milestone-reverse .milestone-text {
  margin-left: 0px;
  margin-right: calc(41% - 142px);
}
.ourStories-milestones-section .milestones .milestone.milestone-reverse .overlay-images {
  flex-direction: row-reverse;
}
.ourStories-milestones-section .milestones .milestone.milestone-reverse .colorbox {
  right: auto;
  left: 0px;
  margin-left: -25px;
  width: 142px;
}
@media (min-width: 1920px) {
  .ourStories-milestones-section .milestones .milestone.milestone-reverse .colorbox {
    width: calc(142px + (100vw - 1920px) / 2);
    left: calc(8px + -1 * (100vw - 1920px) / 2);
  }
}

.section.products-products-section {
  margin: 0px;
  max-width: 100%;
  width: 100%;
  padding: 0px;
}
.section.products-products-section .product-wrapper {
  background-size: cover;
  background-position: center center;
  margin-bottom: -280px;
}
.section.products-products-section .product-wrapper .product {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding: 0px 25px;
  height: 1240px;
  display: flex;
  align-items: center;
}
.section.products-products-section .product-wrapper .product .product-text,
.section.products-products-section .product-wrapper .product .product-image {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.section.products-products-section .product-wrapper .product .product-text {
  flex-grow: 1;
  background-color: white;
  padding: 224px 207px 224px 167px;
  margin-right: -40px;
  > *:first-child {
    margin-top: 0; /* Remove the top margin */
  }
}
.section.products-products-section .product-wrapper .product .product-text h3 {
  margin-top: 5px;
}
.section.products-products-section .product-wrapper .product .product-text p {
  margin-top: 28px;
}
.section.products-products-section .product-wrapper .product .product-image {
  position: relative;
  width: 629px;
  height: auto;
  aspect-ratio: 0.6836956522;
  box-shadow: 8px 8px 15px 0px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
}
.section.products-products-section .product-wrapper .product .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section.products-products-section .product-wrapper .product.product-reverse {
  flex-direction: row-reverse;
}
.section.products-products-section .product-wrapper .product.product-reverse .product-text {
  padding: 224px 167px 224px 207px;
  margin-right: 0px;
  margin-left: -40px;
}
.section.products-products-section .product-wrapper:last-child {
  margin-bottom: 0px;
}

.sharings-story-section {
  align-items: center;
  padding-top: 186px;
}
.sharings-story-section > h1 {
  margin-bottom: 76px;
  font-weight: 400;
  letter-spacing: 2px;
}
.sharings-story-section .story-card {
  display: flex;
  margin-bottom: 40px;
}
.sharings-story-section .story-card .story-image,
.sharings-story-section .story-card .story-quote {
  margin-top: 40px;
  height: 570px;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.sharings-story-section .story-card .story-image {
  width: 24.5%;
  object-fit: cover;
  z-index: 1;
  box-shadow: 8px 8px 15px 0px rgba(0, 0, 0, 0.1019607843);
}
.sharings-story-section .story-card .story-content {
  width: calc(34.5% + 300px);
  margin-left: -150px;
  padding: 100px 240px;
  background-color: #f7f7f7;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sharings-story-section .story-card .story-content h1 {
  margin-top: 2px;
  margin-bottom: 20px;
}
.sharings-story-section .story-card .story-content strong {
  margin-bottom: -2px;
}
.sharings-story-section .story-card .story-content p {
  /* margin-bottom: 9px; */
}
.sharings-story-section .story-card .story-quote {
  position: relative;
  margin-left: -150px;
  background-color: #ebebeb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 41%;
  overflow: hidden;
}
.sharings-story-section .story-card .story-quote > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 84px;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.sharings-story-section .story-card .story-quote .story-quote-icon {
  background-image: url("../images/icon-quote-1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  width: 155px;
  height: auto;
  aspect-ratio: 1.5196078431;
  left: 20px;
  top: 20px;
}
.sharings-story-section .story-card .story-quote .story-quote-icon.right-bottom {
  left: auto;
  top: auto;
  right: 20px;
  bottom: 20px;
}
.sharings-story-section .story-card:nth-child(odd) .story-quote {
  background-color: #f0ebe8;
}
.sharings-story-section .story-card:nth-child(odd) .story-quote .story-quote-icon {
  background-image: url("../images/icon-quote-2.png");
}

.sharings-quotes-section {
  margin-top: 146px;
  margin-bottom: 28px;
}
.sharings-quotes-section h1 {
  text-align: center;
  margin-bottom: 76px;
  line-height: 48px;
  letter-spacing: 2px;
}
.sharings-quotes-section .quotes {
  display: flex;
  gap: 120px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sharings-quotes-section .quotes .quote-card {
  width: calc((100% - 240px) / 3);
  display: flex;
  flex-direction: column;
}
.sharings-quotes-section .quotes .quote-card > img {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.sharings-quotes-section .quotes .quote-card .quote-text {
  padding: 40px 20px;
}
.sharings-quotes-section .quotes .quote-card h5 {
  margin-top: 2px;
}
.sharings-quotes-section .quotes .quote-card h3 {
  margin-top: 4px;
}
.sharings-quotes-section .quotes .quote-card p {
  margin-top: 28px;
}

.contactUs-form-section {
  margin-top: 115px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: row;
  padding: 0px 8%;
  justify-content: space-between;
  gap: 100px;
}
.contactUs-form-section .contact-info {
  /* width: calc((100% - 100px) * 0.45); */
  width: calc((100% - 126px) * 0.8);
}
.contactUs-form-section .contact-info p {
  font-weight: 200;
  font-size: 26px;
  line-height: 32px;
}
.contactUs-form-section .contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 54px;
}
.contactUs-form-section .contact-info ul li {
  display: flex;
  align-items: center;
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.4px;
}
.contactUs-form-section .contact-info ul li img {
  width: 33px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  margin-right: 23px;
}
.contactUs-form-section .contact-form {
  flex-grow: 1;
}
.contactUs-form-section .contact-form .contact-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contactUs-form-section .contact-form .name {
  /* width: calc((100% - 20px) / 2); */
}
.contactUs-form-section .contact-form .phone {
  /* width: calc((100% - 20px) / 2); */
}
.contactUs-form-section .contact-form .email {
  width: 100%;
}
.contactUs-form-section .contact-form .message {
  width: 100%;
  height: 394px;
}
.contactUs-form-section .contact-form .name,
.contactUs-form-section .contact-form .phone,
.contactUs-form-section .contact-form .email,
.contactUs-form-section .contact-form .message {
  border-width: 0px;
  border-radius: 0px;
  background-color: #f7f7f7;
  padding: 10px 20px;
  font-family: Avenir;
  font-weight: 200;
  font-size: 20px;
  line-height: 32px;
}

body:lang(tc) .contactUs-form-section .contact-form .message {
  font-family: "Noto-Sans";
  font-weight: 300;
}

.contactUs-form-section .contact-form .name::placeholder,
.contactUs-form-section .contact-form .phone::placeholder,
.contactUs-form-section .contact-form .email::placeholder,
.contactUs-form-section .contact-form .message::placeholder {
  opacity: 0.6;
  letter-spacing: 0.4px;
}
.contactUs-form-section .contact-form .contact-form-submit {
  text-align: right;
}
.contactUs-form-section .contact-form .contact-form-submit .button {
  margin-top: 40px;
}

@media (max-width: 1400px) {
  .section .quote-h5 {
    font-weight: 200;
    font-size: 20px;
    line-height: 32px;
  }
  .section .quote-h3 {
    font-weight: 500;
    font-size: 42px;
    line-height: 48px;
  }
  .section .quote-p {
    font-weight: 200;
    font-size: 20px;
    line-height: 32px;
  }
  .home-highlights-section .products {
    gap: 50px;
  }
  .home-highlights-section .products .product-card {
    width: calc((100% - 100px) / 2);
  }
  .home-highlights-section .products .product-card p {
    width: 50%;
  }
  .ourStories-milestones-section .milestones .milestone .milestone-text {
    background-color: #f7f7f7;
    padding: 135px 180px;
  }
  .section.products-products-section .product-wrapper .product .product-text {
    padding: 100px 97px 100px 87px;
  }
  .section.products-products-section .product-wrapper .product.product-reverse .product-text {
    padding: 100px 87px 100px 97px;
  }
  .section.products-products-section .product-wrapper:last-child {
    margin-bottom: 0px;
  }
  .sharings-story-section .story-card .story-content {
    padding: 80px 180px;
  }
  .sharings-story-section .story-card .story-quote > span {
    padding: 0px 54px;
  }
  .sharings-quotes-section .quotes {
    gap: 6%;
  }
  .sharings-quotes-section .quotes .quote-card {
    width: 29.3333333333%;
    display: flex;
    flex-direction: column;
  }
  .sharings-quotes-section .quotes .quote-card > img {
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .sharings-quotes-section .quotes .quote-card .quote-text {
    padding: 40px 20px;
  }
  .sharings-quotes-section .quotes .quote-card .quote-h5 {
    margin-top: 2px;
  }
  .sharings-quotes-section .quotes .quote-card .quote-h3 {
    margin-top: 4px;
  }
  .sharings-quotes-section .quotes .quote-card .quote-p {
    margin-top: 28px;
  }
}
@media (max-width: 1400px) {
  .section-wrapper {
    margin-top: 50px;
  }
  .section .button {
    padding: 8px 20px 4px 20px;
    font-size: 16px;
    letter-spacing: 1px;
  }
  .section p {
    font-size: 16px;
    line-height: 26px;
  }
  .section h1 {
    font-size: 38px;
  }
  .section h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .section h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
  }
  .section .quote-p {
    margin-top: 5px;
    font-size: 16px;
    line-height: 26px;
  }
  .section .milestone-p {
    font-size: 16px;
    line-height: 26px;
  }
  .section .story-quote-text {
    font-size: 16px;
    line-height: 26px;
  }
  .section .story-content-span {
    font-size: 16px;
  }
  .section .story-content-h1 {
    font-size: 26px;
    line-height: 34px;
  }
  .section .story-content-strong {
    font-size: 16px;
    line-height: 32px;
  }
  .section .story-content-p {
    font-size: 16px;
    line-height: 30px;
  }
  .section .milestone-date {
    font-size: 16px;
    line-height: 26px;
  }
  .section .product-text-small {
    font-size: 16px;
    line-height: 26px;
  }
  .section .product-text-p {
    font-size: 16px;
    line-height: 26px;
  }
  .section.image-text-style-section .content-box {
    margin-left: 35px;
    padding: 67px 80px;
    width: 526px;
    height: auto;
  }
  .section.image-text-style-section .overlay-images {
    display: flex;
    position: absolute;
    height: calc(100% - 40px);
  }
  .section.image-text-style-section .overlay-images .left-image,
  .section.image-text-style-section .overlay-images .right-image {
    border-top-left-radius: 15.5px;
    border-bottom-right-radius: 15.5px;
  }
  .section.image-text-style-section .overlay-images .left-image {
    border-top-left-radius: 0px;
    width: 120px;
  }
  .section.image-text-style-section .overlay-images .right-image {
    border-bottom-right-radius: 0px;
    width: calc(100% - 526px - 50px);
  }
  .section.image-text-style-2-section .content-box {
    margin-right: 35px;
    width: 526px;
    min-height: 326px;
  }
  .section.image-text-style-2-section .overlay-images .left-image,
  .section.image-text-style-2-section .overlay-images .right-image {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 15.5px;
    border-bottom-left-radius: 15.5px;
  }
  .section.image-text-style-2-section .overlay-images .left-image {
    width: calc(100% - 526px - 50px);
  }
  .section.image-text-style-2-section .overlay-images .right-image {
    width: 120px;
  }
  .section.image-text-style-3-section {
    margin-top: 15px;
    padding-top: 0px;
    padding-bottom: 15px;
  }
  .section.image-text-style-3-section .content-box {
    min-height: 0px;
    padding: 58px 80px;
  }
  .section.image-text-style-3-section .overlay-images {
    display: flex;
    position: absolute;
    height: calc(100% - 15px);
  }
  .section.image-text-style-3-section .overlay-images .left-image {
    border-top-left-radius: 0px;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.1019607843);
    width: 120px;
  }
  .section.image-text-style-3-section .overlay-images .right-image {
    border-bottom-right-radius: 0px;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.1019607843);
    width: calc(100% - 526px - 50px);
  }
  .home-highlights-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home-highlights-section h1 {
    height: auto;
    padding-bottom: 35px;
  }
  .home-highlights-section .products {
    gap: 30px 6%;
  }
  .home-highlights-section .products .product-card {
    width: 47%;
    max-width: auto;
  }
  .home-highlights-section .products .product-card .color-background {
    border-top-left-radius: 22.57px;
    border-bottom-right-radius: 22.57px;
    margin-left: 70px;
  }
  .home-highlights-section .products .product-card p {
    width: 55%;
    font-size: 18px;
    line-height: 24px;
  }
  .home-highlights-section .button {
    width: 247px;
    margin-top: 50px;
  }
  .home-certifications-section {
    padding: 40px 50px;
  }
  .home-certifications-section .certifications {
    align-items: flex-start;
  }
  .home-certifications-section .certifications > div {
    width: 30%;
    max-width: 30%;
    gap: 35px;
  }
  .home-certifications-section .certifications > div img {
    position: relative;
    width: 134px;
    height: 75px;
    object-fit: contain;
  }
  .home-certifications-section .certifications > div p {
    font-weight: 400;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  .home-certifications-section .certifications > div:nth-child(2) img {
    width: 130px;
  }
  .home-certifications-section .certifications > div:nth-child(3) img {
    width: 57px;
  }
  .ourStories-milestones-section {
    padding-top: 66px;
  }
  .ourStories-milestones-section h1 {
    margin-bottom: 46px;
  }
  .ourStories-milestones-section .milestones {
    margin-bottom: 50px;
  }
  .ourStories-milestones-section .milestones .milestone .overlay-images {
    align-items: flex-start;
    width: 100%;
    height: calc(100% - 120px);
    margin-top: 60px;
  }
  .ourStories-milestones-section .milestones .milestone .photo,
  .ourStories-milestones-section .milestones .milestone .colorbox {
    border-top-left-radius: 17.57px;
    border-bottom-right-radius: 17.57px;
  }
  .ourStories-milestones-section .milestones .milestone .photo {
    width: 32%;
    aspect-ratio: 346/264;
  }
  .ourStories-milestones-section .milestones .milestone .milestone-text {
    padding: 60px 70px;
    margin-left: calc(32% - 40px);
    min-height: 380px;
  }
  .ourStories-milestones-section .milestones .milestone .milestone-text h3 {
    margin-top: 8px;
    margin-bottom: 10px;
  }
  .ourStories-milestones-section .milestones .milestone .colorbox {
    top: auto;
    bottom: 0px;
    height: 21.7vw;
    width: 75px;
    margin-right: -50px;
    border-bottom-right-radius: 0px;
  }
  .ourStories-milestones-section .milestones .milestone.milestone-reverse .milestone-text {
    margin-left: 0px;
    margin-right: calc(32% - 40px);
  }
  .ourStories-milestones-section .milestones .milestone.milestone-reverse .colorbox {
    right: auto;
    left: 0px;
    margin-left: -50px;
    width: 75px;
    border-bottom-right-radius: 17.57px;
    border-top-left-radius: 0px;
  }
  .section.products-products-section .product-wrapper {
    background-size: cover;
    background-position: center center;
    margin-bottom: -94px;
    padding-top: 94px;
    padding-bottom: 94px;
  }
  .section.products-products-section .product-wrapper .product {
    max-width: 100%;
    padding: 0px 50px;
    height: auto;
  }
  .section.products-products-section .product-wrapper .product .product-text,
  .section.products-products-section .product-wrapper .product .product-image {
    border-top-left-radius: 23.39px;
    border-bottom-right-radius: 23.39px;
  }
  .section.products-products-section .product-wrapper .product .product-text {
    background-color: white;
    padding: 73px 100px 73px 63px;
  }
  .section.products-products-section .product-wrapper .product .product-text h3 {
    margin-top: 0px;
  }
  .section.products-products-section .product-wrapper .product .product-text p {
    margin-top: 10px;
  }
  .section.products-products-section .product-wrapper .product .product-image {
    width: 294px;
    overflow: hidden;
  }
  .section.products-products-section .product-wrapper .product.product-reverse {
    flex-direction: row-reverse;
  }
  .section.products-products-section .product-wrapper .product.product-reverse .product-text {
    padding: 78px 72px 78px 100px;
    margin-right: 0px;
    margin-left: -40px;
  }
  .section.products-products-section .product-wrapper:last-child {
    margin-bottom: 0px;
  }
  .sharings-story-section {
    padding-top: 82px;
  }
  .sharings-story-section > h1 {
    margin-bottom: 46px;
    font-weight: 400;
  }
  .sharings-story-section .story-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 0px;
  }
  .sharings-story-section .story-card .story-image,
  .sharings-story-section .story-card .story-quote {
    border-top-left-radius: 31.78px;
    border-bottom-right-radius: 31.78px;
  }
  .sharings-story-section .story-card .story-image {
    margin-top: 35px;
    width: 40%;
    max-width: 371px;
    aspect-ratio: 371/452;
    height: auto;
    margin-bottom: 150px;
  }
  .sharings-story-section .story-card .story-content {
    flex: 1;
    width: calc(60% + 115px);
    margin-left: -115px;
    padding: 120px 50px 165px 165px;
    min-height: auto;
  }
  .sharings-story-section .story-card .story-content h1 {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .sharings-story-section .story-card .story-content p {
    /* margin-top: -7px; */
  }
  .sharings-story-section .story-card .story-quote {
    margin-top: -120px;
    height: auto;
    margin-left: 40px;
    width: 70%;
  }
  .sharings-story-section .story-card .story-quote > span {
    padding: 110px 84px;
  }
  .sharings-story-section .story-card .story-quote .story-quote-icon {
    width: 119px;
    left: 14px;
    top: 14px;
  }
  .sharings-story-section .story-card .story-quote .story-quote-icon.right-bottom {
    right: 14px;
    bottom: 14px;
  }
  .sharings-story-section .story-card:nth-child(odd) .story-quote {
    background-color: #f0ebe8;
  }
  .sharings-story-section .story-card:nth-child(odd) .story-quote .story-quote-icon {
    background-image: url("../images/icon-quote-2.png");
  }
  .sharings-quotes-section {
    margin-top: 45px;
    margin-bottom: 50px;
  }
  .sharings-quotes-section h1 {
    margin-bottom: 47px;
  }
  .sharings-quotes-section .quotes {
    gap: 10px;
  }
  .sharings-quotes-section .quotes .quote-card {
    width: calc((100% - 20px) / 3);
  }
  .sharings-quotes-section .quotes .quote-card > img {
    border-top-left-radius: 20.94px;
    border-bottom-right-radius: 20.94px;
  }
  .sharings-quotes-section .quotes .quote-card .quote-text {
    display: flex;
    flex-direction: column;
    padding: 21px 10.5px;
  }
  .sharings-quotes-section .quotes .quote-card .quote-h5 {
    margin-top: 5px;
  }
  .sharings-quotes-section .quotes .quote-card .quote-h3 {
    margin-top: 2px;
    order: -1;
  }
  .sharings-quotes-section .quotes .quote-card .quote-p {
    margin-top: 5px;
  }
  .contactUs-form-section {
    margin-top: 62px;
    margin-bottom: 50px;
    gap: 20px;
    padding: 0px 50px;
  }
  .contactUs-form-section .contact-info {
    /* width: calc((100% - 20px) * 0.45); */
    width: 112%;
  }
  .contactUs-form-section .contact-info p {
    font-size: 16px;
    line-height: 26px;
  }
  .contactUs-form-section .contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 24px;
  }
  .contactUs-form-section .contact-info ul li {
    font-size: 16px;
    line-height: 26px;
  }
  .contactUs-form-section .contact-info ul li img {
    width: 30px;
    margin-right: 16px;
  }
  .contactUs-form-section .contact-info ul li:nth-child(2) img {
    height: 23px;
  }
  .contactUs-form-section .contact-info ul li:nth-child(3) img {
    height: 17px;
  }
  .contactUs-form-section .contact-form {
    /* width: calc((100% - 20px) * 0.55); */
  }
  .contactUs-form-section .contact-form .contact-form-row {
    gap: 10px;
  }
  .contactUs-form-section .contact-form .name {
    /* width: calc((100% - 10px) / 2); */
  }
  .contactUs-form-section .contact-form .phone {
    /* width: calc((100% - 10px) / 2); */
  }
  .contactUs-form-section .contact-form .message {
    height: 209px;
  }
  .contactUs-form-section .contact-form .name,
  .contactUs-form-section .contact-form .phone,
  .contactUs-form-section .contact-form .email,
  .contactUs-form-section .contact-form .message {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 26px;
  }
  .contactUs-form-section .contact-form .contact-form-submit {
    text-align: center;
  }
  .contactUs-form-section .contact-form .contact-form-submit .button {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .section-wrapper {
    margin-top: 50px;
  }
  .section p {
    font-size: 21px;
    line-height: 33px;
  }
  .section .quote-p {
    font-size: 21px;
    line-height: 33px;
  }
  .section .milestone-p {
    font-size: 21px;
    line-height: 33px;
  }

  .section .story-content-strong {
    line-height: 30px;
  }
  .section .story-content-p {
    font-size: 21px;
    line-height: 33px;
  }
  .section .product-text-small {
    font-size: 21px;
    line-height: 33px;
  }
  .section .product-text-p {
    font-size: 21px;
    line-height: 33px;
  }
  .section.image-text-style-section .content-box {
    margin-top: 240px;
    margin-left: -20px;
    margin-right: 0px;
    margin-bottom: 95px;
    padding: 67px 84px;
    width: calc(100% + 20px);
    height: auto;
  }
  .section.image-text-style-section .overlay-images {
    top: 0px;
    margin-top: 0px;
    flex-direction: column-reverse;
    width: 100%;
    height: 100%;
  }
  .section.image-text-style-section .overlay-images .left-image {
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 15.55px;
    border-top-right-radius: 15.55px;
    width: 263px;
    height: 117px;
  }
  .section.image-text-style-section .overlay-images .right-image {
    align-self: flex-end;
    width: calc(100% - 84px);
    height: 264px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 15.5px;
    border-top-left-radius: 15.5px;
  }
  .section.image-text-style-2-section .overlay-images {
    flex-direction: column;
  }
  .section.image-text-style-2-section .overlay-images .left-image {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 15.5px;
    border-bottom-left-radius: 15.5px;
    width: calc(100% - 84px);
    height: 264px;
  }
  .section.image-text-style-2-section .overlay-images .right-image {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 15.5px;
    border-top-left-radius: 15.5px;
    width: 263px;
    height: 117px;
  }
  .section.image-text-style-3-section .content-box {
    margin-top: 216px;
    padding: 75px 84px;
    margin-bottom: 65px;
  }
  .section.image-text-style-3-section .overlay-images {
    height: 100%;
  }
  .section.image-text-style-3-section .overlay-images .left-image,
  .section.image-text-style-3-section .overlay-images .right-image {
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 15.55px;
    border-bottom-right-radius: 15.55px;
  }
  .section.image-text-style-3-section .overlay-images .left-image {
    width: 263px;
    height: 117px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 15.55px;
    border-top-right-radius: 15.55px;
  }
  .section.image-text-style-3-section .overlay-images .right-image {
    align-self: flex-end;
    width: calc(100% - 84px);
    height: 264px;
  }
  .home-highlights-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }
  .home-highlights-section h1 {
    height: auto;
    padding-bottom: 0px;
  }
  .home-highlights-section .products {
    align-items: center;
    gap: 40px;
  }
  .home-highlights-section .products .product-card {
    width: 90%;
    max-width: auto;
  }
  .home-highlights-section .products .product-card p {
    margin-bottom: 20px;
    margin-right: 20px;
    width: 45%;
  }
  .home-highlights-section .button {
    width: 247px;
    margin-top: 50px;
  }
  .home-certifications-section {
    padding: 50px 40px;
    margin-bottom: 75px;
  }
  .home-certifications-section .certifications {
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 35px;
  }
  .home-certifications-section .certifications > div {
    width: calc((100% - 35px) / 2);
    max-width: 100%;
    gap: 25px;
  }
  .home-certifications-section .certifications > div p {
    font-size: 18px;
  }
  .ourStories-partnership-section-wrapper {
    margin-top: 60px;
  }
  .ourStories-milestones-section {
    padding-top: 82px;
    margin-bottom: 70px;
  }
  .ourStories-milestones-section .milestones {
    gap: 50px;
  }
  .ourStories-milestones-section .milestones .milestone .overlay-images {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% + 40px);
    height: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: -20px;
  }
  .ourStories-milestones-section .milestones .milestone .photo {
    width: calc(100% - 84px);
    height: 264px;
  }
  .ourStories-milestones-section .milestones .milestone .milestone-text {
    margin-top: 240px;
    padding: 78px 64px 78px 40px;
    margin-left: 0px;
    margin-right: -20px;
    min-height: 0px;
    margin-bottom: 70px;
  }
  .ourStories-milestones-section .milestones .milestone .colorbox {
    top: auto;
    bottom: 0px;
    right: 0px;
    width: 263px;
    height: 117px;
    margin-right: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 15.55px;
    border-top-right-radius: 15.55px;
  }
  .ourStories-milestones-section .milestones .milestone.milestone-reverse {
    align-items: flex-start;
  }
  .ourStories-milestones-section .milestones .milestone.milestone-reverse .overlay-images {
    flex-direction: column;
    right: auto;
    left: 0px;
  }
  .ourStories-milestones-section .milestones .milestone.milestone-reverse .photo {
    align-self: flex-end;
  }
  .ourStories-milestones-section .milestones .milestone.milestone-reverse .milestone-text {
    padding: 78px 40px 78px 64px;
    margin-left: -20px;
    margin-right: 0px;
  }
  .ourStories-milestones-section .milestones .milestone.milestone-reverse .colorbox {
    top: auto;
    bottom: 0px;
    right: auto;
    width: 263px;
    height: 117px;
    left: 0px;
    margin-left: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 15.55px;
    border-top-right-radius: 15.55px;
  }
  .section.products-products-section .product-wrapper {
    overflow: hidden;
    margin-bottom: -50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section.products-products-section .product-wrapper .product {
    flex-direction: column;
    width: 100%;
    padding: 0px 20px;
    height: auto;
  }
  .section.products-products-section .product-wrapper .product .product-text,
  .section.products-products-section .product-wrapper .product .product-image {
    margin-left: 0px;
    margin-right: 0px;
  }
  .section.products-products-section .product-wrapper .product .product-text {
    padding: 52px 70px 100px 70px;
  }
  .section.products-products-section .product-wrapper .product .product-image {
    align-self: flex-end;
    margin-right: 50px;
    margin-top: -70px;
    width: 294px;
    max-width: calc(100% - 50px);
    overflow: hidden;
  }
  .section.products-products-section .product-wrapper .product.product-reverse {
    flex-direction: column;
  }
  .section.products-products-section .product-wrapper .product.product-reverse .product-text {
    padding: 52px 70px 100px 70px;
    margin-right: 0px;
    margin-left: 0px;
  }
  .section.products-products-section .product-wrapper .product.product-reverse .product-image {
    align-self: flex-start;
    margin-right: 0px;
    margin-left: 50px;
  }
  .sharings-story-section {
    padding-top: 46px;
  }
  .sharings-story-section .story-card {
    margin-bottom: 126px;
  }
  .sharings-story-section .story-card .story-image {
    margin-bottom: 110px;
  }
  .sharings-story-section .story-card .story-content {
    overflow-y: auto;
    width: 60%;
    margin-left: -50px;
    padding: 30px 30px 110px 75px;
  }
  .sharings-story-section .story-card .story-quote {
    margin-top: -60px;
    height: auto;
    margin-left: 0px;
    width: calc(100% - 80px);
  }
  .sharings-story-section .story-card .story-quote > span {
    padding: 50px 40px;
  }
  .sharings-story-section .story-card .story-quote .story-quote-icon {
    width: 77px;
    left: 12px;
    top: 12px;
  }
  .sharings-story-section .story-card .story-quote .story-quote-icon.right-bottom {
    right: 12px;
    bottom: 12px;
  }
  .sharings-story-section .story-card:last-child {
    margin-bottom: 0px;
  }
  .sharings-quotes-section {
    margin-top: 80px;
    margin-bottom: 103px;
  }
  .sharings-quotes-section h1 {
    margin-bottom: 47px;
  }
  .sharings-quotes-section .quotes {
    gap: 50px;
    flex-direction: column;
  }
  .sharings-quotes-section .quotes .quote-card {
    width: 100%;
  }
  .sharings-quotes-section .quotes .quote-card > img {
    height: auto;
    aspect-ratio: 536/369;
    object-fit: cover;
    object-position: 50% 20%;
  }
  .sharings-quotes-section .quotes .quote-card .quote-text {
    display: flex;
    flex-direction: column;
    padding: 21px 10.5px;
  }
  .contactUs-form-section {
    flex-direction: column;
    margin-top: 53px;
    margin-bottom: 125px;
    gap: 50px;
    padding: 0px 20px;
  }
  .contactUs-form-section .contact-info {
    width: 100%;
  }
  .contactUs-form-section .contact-info p {
    font-size: 21px;
    line-height: 33px;
  }
  .contactUs-form-section .contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 24px;
  }
  .contactUs-form-section .contact-info ul li {
    font-size: 21px;
    line-height: 33px;
  }
  .contactUs-form-section .contact-info ul li img {
    width: 40px;
    margin-right: 16px;
  }
  .contactUs-form-section .contact-info ul li:nth-child(2) img {
    height: 29px;
  }
  .contactUs-form-section .contact-info ul li:nth-child(3) img {
    height: 21px;
  }
  .contactUs-form-section .contact-form {
    width: 100%;
  }
  .contactUs-form-section .contact-form .contact-form-row {
    gap: 10px;
  }
  .contactUs-form-section .contact-form .name {
    /* width: calc((100% - 10px) / 2); */
  }
  .contactUs-form-section .contact-form .phone {
    /* width: calc((100% - 10px) / 2); */
  }
  .contactUs-form-section .contact-form .message {
    height: 209px;
  }
  .contactUs-form-section .contact-form .name,
  .contactUs-form-section .contact-form .phone,
  .contactUs-form-section .contact-form .email,
  .contactUs-form-section .contact-form .message {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 26px;
  }
  .contactUs-form-section .contact-form .contact-form-submit {
    text-align: center;
  }
  .contactUs-form-section .contact-form .contact-form-submit .button {
    margin-top: 50px;
  }
}
@media (max-width: 420px) {
  .home-certifications-section .certifications > div {
    width: 100%;
  }
}