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

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

:after,
:before {
  box-sizing: inherit;
}

:root {
  --fs48: 4.8rem;
  --fs40: 4rem;
  --fs30: 3rem;
  --fs24: 2.4rem;
  --fs22: 2.2rem;
  --fs20: 2rem;
  --fs18: 1.8rem;
  --fs16: 1.6rem;
  --fs14: 1.4rem;
  --fs12: 1.2rem;
  --lh65: 6.5rem;
  --lh60: 6rem;
  --lh54: 5.5rem;
  --lh48: 4.8rem;
  --lh40: 4rem;
  --lh36: 3.6rem;
  --lh28: 2.8rem;
  --lh26: 2.6rem;
  --lh24: 2.4rem;
  --lh22: 2.2rem;
  --lh20: 2rem;
  --height-header: 80px;
  --height-button: 42px;
  --pd-section: 100px;
  --gap: 20px;
  --minicart-width: 48px;
  --max-section-height: 796px;
  --container-width: 1470px;
  --screen-width: 100vw;
  --halfPadding: calc((var(--screen-width) - var(--container-width)) / 2);
}

@media (max-width: 991px) {
  :root {
    --height-header: 56px;
    --fs48: 3rem;
    --lh65: 4rem;
  }
}
@media (max-width: 767px) {
  :root {
    --fs24: 2rem;
    --lh36: 2.8rem;
    --fs20: 1.8rem;
    --lh28: 2.6rem;
    --pd-section: 50px;
    --gap: 18px;
  }
}
@media (max-width: 1599px) {
  :root {
    --container-width: 1280px;
  }
}
@media (max-width: 1199px) {
  :root {
    --container-width: 992px;
  }
}
@media (max-width: 991px) {
  :root {
    --container-width: 760px;
  }
}
@media (max-width: 767px) {
  :root {
    --container-width: 540px;
  }
}
@media (min-width: 2600px) {
  :root {
    --screen-width: 2600px;
  }
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-text-rendering: optimizeSpeed;
  text-rendering: optimizeSpeed;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #000;
  font-family: nl;
  font-size: var(--fs20);
  letter-spacing: -0.3px;
  line-height: var(--lh28);
  margin: auto;
  max-width: 2600px;
  overflow-x: hidden;
  text-transform: none;
  width: 100%;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #ddd;
}

body::-webkit-scrollbar-thumb {
  background: #086d46;
}

body.--disable-scroll {
  height: 100vh;
  overflow: hidden;
}

body .wrapper {
  position: relative;
  z-index: 10;
}

body .wrapper .--pdtop {
  padding-top: var(--ptop);
}

body .main {
  margin: auto;
  opacity: 1;
  padding-top: var(--height-header);
  pointer-events: auto;
  position: relative;
  width: 100%;
  z-index: 50;
}

body section {
  position: relative;
  will-change: transform;
}

body .--pt {
  padding-top: var(--pd-section);
}

body .--pb {
  padding-bottom: var(--pd-section);
}

body .--ptb {
  padding: var(--pd-section) 0;
}

body .overlay {
  background: rgba(0, 0, 0, 0.2);
  height: 100vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100vw;
  z-index: 300;
}

body .overlay.active {
  opacity: 1;
  pointer-events: auto;
}

body .container {
  max-width: var(--container-width);
  padding-left: var(--gap);
  padding-right: var(--gap);
  z-index: 9;
}

body .container,
body .container-fluid {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}

body .container-fluid {
  max-width: 2500px;
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 1199px) {
  body .container-fluid {
    max-width: 1230px;
    padding-left: var(--gap);
    padding-right: var(--gap);
  }
}
@media screen and (max-width: 767px) {
  body .container-fluid {
    padding-left: var(--gap);
    padding-right: var(--gap);
  }
}
body .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--gap) * -1);
  margin-right: calc(var(--gap) * -1);
}

body .no-gutters {
  margin-left: 0;
  margin-right: 0;
}

body .no-gap > .col,
body .no-gap > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

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

@media screen and (max-width: 991px) {
  body .--grid-2 {
    grid-template-columns: 1fr;
  }
}
body .--grid-12 {
  -moz-column-gap: var(--gap);
  column-gap: var(--gap);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

@media screen and (max-width: 991px) {
  body .--grid-12 {
    grid-template-columns: 1fr;
  }
}
body .half-pd.--hpd-right {
  padding-right: var(--halfPadding);
}

body .half-pd.--hpd-left {
  padding-left: var(--halfPadding);
}

body.--menu-show {
  overflow: hidden;
}

.loading {
  background: #fff;
  height: 100%;
  left: 0;
  opacity: 1;
  pointer-events: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
}

.loading.--hide {
  opacity: 0;
  pointer-events: none;
}

sup {
  font-size: smaller;
  vertical-align: super;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  outline: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

img.--center {
  display: block;
  margin: 0 auto;
}

a {
  color: #086d46;
  outline: 0;
  text-decoration: none;
}

a.--hover-link {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

a.--hover-link:hover {
  opacity: 0.6;
}

strong {
  font-family: nb;
}

.--hidden {
  display: none;
}

.heading {
  color: #086d46;
  display: block;
  font-family: nsb;
  letter-spacing: -0.02em;
}

.heading.--h1,
.heading.--h2 {
  font-size: var(--fs40);
  line-height: var(--lh48);
}

.heading.--h3 {
  font-size: var(--fs24);
  line-height: var(--lh28);
}

.heading.--h4 {
  font-size: var(--fs24);
  line-height: var(--lh36);
}

.heading.--black-cl {
  color: #000;
}

.heading.--white-cl {
  color: #fff;
}

.heading.--blue-cl {
  color: #007fc6;
}

.heading.--green-cl {
  color: #6dbe4b;
}

.heading.--lowercase {
  text-transform: none;
}

.heading.--uppercase {
  text-transform: uppercase;
}

.heading.--mb {
  margin-bottom: 30px;
}

.heading.--center {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .heading br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .heading.--h1 {
    font-size: var(--fs30);
    line-height: var(--lh40);
  }
  .heading.--h2 {
    font-size: 2.4rem;
    line-height: 3.3rem;
  }
  .heading.--h3 {
    font-size: var(--fs24);
    line-height: var(--lh36);
  }
  .heading.--mb {
    margin-bottom: 20px;
  }
}
@media (max-width: 389px) {
  .heading.--h1 {
    font-size: 2.5rem;
    line-height: 3.4rem;
  }
}
.subtitle {
  color: #086d46;
  font-family: bb;
  font-size: var(--fs20);
  letter-spacing: 0;
  line-height: var(--lh40);
  margin-bottom: 5px;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .subtitle {
    font-size: var(--fs14);
    line-height: var(--lh22);
  }
}
.labletitle {
  color: #ffce02;
  font-family: nb;
  font-size: var(--fs14);
  line-height: var(--lh24);
  text-transform: uppercase;
}

.bodytext.--t24 {
  font-size: var(--fs24);
  line-height: var(--lh36);
}

.bodytext.--t20 {
  font-size: var(--fs30);
  font-size: var(--fs20);
  line-height: var(--lh40);
  line-height: var(--lh28);
}

.bodytext.--t18 {
  font-size: var(--fs18);
  line-height: var(--lh26);
}

.bodytext.--t16 {
  font-size: var(--fs16);
  line-height: var(--lh24);
}

.bodytext.--t14 {
  font-size: var(--fs14);
  line-height: var(--lh22);
}

.bodytext.--t12 {
  font-size: var(--fs12);
  line-height: var(--lh20);
}

.bodytext.--up {
  text-transform: uppercase;
}

.bodytext.--cap {
  text-transform: capitalize;
}

.bodytext.--white-cl {
  color: #fff;
}

.bodytext.--bold {
  font-family: nb;
}

@media screen and (max-width: 767px) {
  .bodytext.--up.--t14 {
    font-size: var(--fs12);
    line-height: var(--lh20);
  }
}
.--text-white-cl {
  color: #fff;
}

.--text-black-cl {
  color: #000;
}

.--text-main-cl {
  color: #086d46;
}

.--text-yellow-cl {
  color: #ffce02;
}

.btnmain,
.productdetail-page .scnutrition .tab-button {
  align-items: center;
  background: var(--bg, #fff);
  border-radius: 50px;
  color: #086d46;
  cursor: pointer;
  display: flex;
  font-family: nsb;
  font-size: var(--fs16);
  height: 54px;
  justify-content: center;
  line-height: var(--lh24);
  padding: 0 25px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
}

.btnmain img,
.btnmain svg,
.productdetail-page .scnutrition .tab-button img,
.productdetail-page .scnutrition .tab-button svg {
  margin-right: 10px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btnmain img path,
.btnmain svg path,
.productdetail-page .scnutrition .tab-button img path,
.productdetail-page .scnutrition .tab-button svg path {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btnmain svg path[fill],
.productdetail-page .scnutrition .tab-button svg path[fill] {
  fill: currentColor;
}

.btnmain svg path[stroke],
.productdetail-page .scnutrition .tab-button svg path[stroke] {
  stroke: currentColor;
}

.btnmain.--round,
.productdetail-page .scnutrition .--round.tab-button {
  background-color: var(--bg, transparent);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  font-family: nb;
  height: 52px;
  padding: 0 24px;
}

.btnmain.--round:hover,
.productdetail-page .scnutrition .--round.tab-button:hover {
  border: 1px solid #086d46;
}

.btnmain.--round.--white-cl,
.productdetail-page .scnutrition .--round.--white-cl.tab-button {
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btnmain.--round.--white-cl:hover,
.productdetail-page .scnutrition .--round.--white-cl.tab-button:hover {
  background: #6dbe4b;
  border: 1px solid #6dbe4b;
}

.btnmain.--round span .textmobile,
.productdetail-page .scnutrition .--round.tab-button span .textmobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .btnmain.--round .icon,
  .productdetail-page .scnutrition .--round.tab-button .icon {
    width: 16px;
  }
  .btnmain.--round span .textdesktop,
  .productdetail-page .scnutrition .--round.tab-button span .textdesktop {
    display: none;
  }
  .btnmain.--round span .textmobile,
  .productdetail-page .scnutrition .--round.tab-button span .textmobile {
    display: inline-block;
  }
}
.btnmain.--text-green-cl,
.productdetail-page .scnutrition .--text-green-cl.tab-button {
  color: #086d46;
}

.btnmain.--text-green-cl svg,
.productdetail-page .scnutrition .--text-green-cl.tab-button svg {
  margin-left: 8px;
}

.btnmain.--text-green-cl svg path,
.productdetail-page .scnutrition .--text-green-cl.tab-button svg path {
  fill: #086d46;
}

.btnmain.--text-black-cl,
.productdetail-page .scnutrition .--text-black-cl.tab-button {
  color: #000;
}

.btnmain.--text-black-cl:hover,
.productdetail-page .scnutrition .--text-black-cl.tab-button:hover {
  border: 1px solid #fff;
}

.btnmain.--gray-cl,
.productdetail-page .scnutrition .--gray-cl.tab-button {
  background: #f4f4f4;
  border: 0;
}

.btnmain.--gray-cl:hover,
.productdetail-page .scnutrition .--gray-cl.tab-button:hover {
  border: none;
}

.btnmain.--main-border,
.productdetail-page .scnutrition .--main-border.tab-button {
  border: 1px solid #086d46;
  color: #086d46;
}

.btnmain.--main-cl,
.productdetail-page .scnutrition .--main-cl.tab-button {
  background: #086d46;
  color: #fff;
}

.btnmain.--main-cl:hover,
.productdetail-page .scnutrition .--main-cl.tab-button:hover {
  background: #6dbe4b;
}

.btnmain.--bg-white-cl,
.productdetail-page .scnutrition .--bg-white-cl.tab-button {
  background: #fff;
}

.btnmain.--bg-white-cl:hover,
.productdetail-page .scnutrition .--bg-white-cl.tab-button:hover {
  border: none;
}

.btnmain.--bg-yellow-cl,
.productdetail-page .scnutrition .--bg-yellow-cl.tab-button {
  background-color: #ffce02;
  color: #000;
}

.btnmain.--bg-white-cl,
.productdetail-page .scnutrition .--bg-white-cl.tab-button {
  background-color: #fff;
}

.btnmain.--bg-mainlight-cl,
.productdetail-page .scnutrition .--bg-mainlight-cl.tab-button {
  background-color: #e1f0de;
}

.btnmain.--bg-mainlight-cl svg,
.productdetail-page .scnutrition .--bg-mainlight-cl.tab-button svg {
  margin-left: 0;
}

.btnmain.--bg-mainlight-cl:hover svg *,
.productdetail-page .scnutrition .--bg-mainlight-cl.tab-button:hover svg * {
  fill: #fff;
}

.btnmain.--center,
.productdetail-page .scnutrition .--center.tab-button {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btnmain.--small,
.productdetail-page .scnutrition .--small.tab-button {
  height: 46px;
}

.btnmain.--extrasmall,
.productdetail-page .scnutrition .--extrasmall.tab-button {
  height: 36px;
  line-height: 1;
}

.btnmain:hover,
.productdetail-page .scnutrition .tab-button:hover {
  background: var(--hover-bg, #086d46);
  color: #fff;
}

.btnmain:hover svg path[fill],
.productdetail-page .scnutrition .tab-button:hover svg path[fill] {
  fill: #fff;
}

.btnmain:hover svg path[stroke],
.productdetail-page .scnutrition .tab-button:hover svg path[stroke] {
  stroke: #fff;
}

.btnmain:hover.--round.--green-cl,
.productdetail-page .scnutrition .tab-button:hover.--round.--green-cl {
  color: #fff;
}

.btnmain:disabled,
.productdetail-page .scnutrition .tab-button:disabled {
  background: #6dbe4b;
}

@media screen and (max-width: 767px) {
  .btnmain,
  .productdetail-page .scnutrition .tab-button {
    font-size: var(--fs14);
    height: 40px;
    line-height: var(--lh22);
    padding: 0 20px;
  }
  .btnmain img,
  .btnmain svg,
  .productdetail-page .scnutrition .tab-button img,
  .productdetail-page .scnutrition .tab-button svg {
    margin-right: 6px;
  }
  .btnmain.--round,
  .productdetail-page .scnutrition .--round.tab-button {
    height: 38px;
    padding: 0 18px;
  }
  .btnmain.--small,
  .productdetail-page .scnutrition .--small.tab-button {
    height: 38px;
  }
}
.btnmaingroup {
  display: flex;
  margin: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 var(--gap);
}

.btnmaingroup .btnmain,
.btnmaingroup .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .btnmaingroup .tab-button {
  margin: 0 calc(var(--gap) / 2);
}

.btncircle {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}

.badge,
.btncircle {
  align-items: center;
  display: flex;
}

.badge {
  background: #e1f0de;
  border-radius: 40px;
  font-size: var(--fs12);
  height: 32px;
  justify-content: center;
  line-height: var(--lh20);
  min-width: 78px;
}

.badge.--center {
  margin-left: auto;
  margin-right: auto;
}

.btnmicrosite {
  background: #076296;
  color: #fff;
  margin: 3rem auto;
}

.btn-download-cbo {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  justify-content: center;
  text-decoration: underline;
}

.btn-download-cbo svg {
  margin-left: 5px;
  width: 10px;
}

.sccomponents {
  background: #949494;
  padding: 160px 0 80px;
}

.contentdetail h1,
.contentdetail h2,
.contentdetail h3,
.contentdetail h4,
.contentdetail h5,
.contentdetail h6 {
  display: block;
  font-family: nb;
}

.contentdetail h1 {
  font-size: var(--fs48);
  line-height: var(--lh60);
  margin: 0 0 0.67rem;
}

.contentdetail h2 {
  font-size: var(--fs30);
  line-height: var(--lh40);
  margin: 0 0 2rem;
}

.contentdetail h3 {
  font-size: var(--fs24);
  line-height: var(--lh36);
  margin: 0 0 0.83rem;
}

.contentdetail h4 {
  font-size: 2rem;
  line-height: 3rem;
  margin: 0 0 1.5rem;
}

.contentdetail h5 {
  font-size: 1.8rem;
  margin: 0 0 1.67rem;
}

.contentdetail h6 {
  font-size: 1.6rem;
  margin: 0 0 1.67rem;
}

.contentdetail p {
  margin: 0 0 2.12rem;
}

.contentdetail a {
  color: #086d46;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.contentdetail a:hover {
  opacity: 0.6;
}

.contentdetail ol,
.contentdetail ul {
  list-style: initial;
  padding-left: 40px;
}

.contentdetail ol li,
.contentdetail ul li {
  padding: 5px 0;
}

.contentdetail img {
  display: block;
  height: auto;
  margin: 45px auto;
  overflow: hidden;
}

.contentdetail .thumbnail img {
  margin-top: 0;
}

.contentdetail .img em {
  display: table;
  font-size: var(--fs16);
  font-style: italic;
  line-height: var(--lh24);
  margin: -35px auto 50px;
  text-align: center;
}

.contentdetail .video {
  height: 0;
  margin: 25px auto;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}

.contentdetail .video iframe,
.contentdetail .video video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .contentdetail img {
    margin: 25px auto;
  }
  .contentdetail .img em {
    display: table;
    font-size: var(--fs16);
    font-style: italic;
    line-height: var(--lh24);
    margin: -15px auto 25px;
    text-align: center;
  }
}
.slcontrols {
  align-items: center;
  display: flex;
  font-size: var(--fs12);
  line-height: var(--lh20);
}

.slcontrols__paging span:nth-child(2) {
  margin: 0 3px;
}

.slcontrols__progress {
  background: rgba(0, 0, 0, 0.2);
  height: 2px;
  margin: 0 20px 0 30px;
  position: relative;
  width: 150px;
}

.slcontrols__progress .progress {
  background-color: #000;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 20%;
}

@media screen and (max-width: 1199px) {
  .slcontrols__progress {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .slcontrols__paging {
    margin-right: 10px;
  }
  .slcontrols__progress {
    height: 1px;
  }
  .slcontrols__progress.--hidden-mb {
    display: none;
  }
}
.slcontrols__control {
  align-items: center;
  display: flex;
  margin-right: -12px;
}

.slcontrols__control-btn {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 40px;
}

.slcontrols__control-btn:hover {
  opacity: 0.5;
}

.slcontrols__control-btn.--prev {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .slcontrols__control {
    margin-right: -10px;
  }
  .slcontrols__control-btn {
    height: 34px;
    width: 34px;
  }
}
.social,
.social__item {
  align-items: center;
  display: flex;
}

.social__item {
  background-color: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 50%;
  height: 52px;
  justify-content: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 52px;
}

.social__item:not(:last-child) {
  margin-right: 15px;
}

.social__item:hover {
  background: #6dbe4b;
  border: 1px solid #6dbe4b;
}

@media screen and (max-width: 767px) {
  .social__item {
    height: 38px;
    width: 38px;
  }
  .social__item img {
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 18px;
  }
  .social__item:not(:last-child) {
    margin-right: 10px;
  }
}
.contactsocial {
  align-items: center;
  display: flex;
}

.contactsocial .btnmain,
.contactsocial .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .contactsocial .tab-button {
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .contactsocial .btnmain,
  .contactsocial .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .contactsocial .tab-button {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 358px) {
  .contactsocial {
    align-items: flex-start;
    flex-direction: column;
  }
  .contactsocial .btnmain,
  .contactsocial .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .contactsocial .tab-button {
    margin-bottom: 18px;
    margin-right: 0;
  }
}
.form {
  --height-input: 50px;
  width: 100%;
}

.form__group {
  margin-bottom: 20px;
}

.form__group .error__text {
  opacity: 0;
  pointer-events: none;
}

.form__group.error {
  position: relative;
}

.form__group.error .form__control {
  background-color: #fae3e3;
  color: #c50000;
}

.form__group.error .form__control:focus {
  border: 1px solid #c50000;
}

.form__group.error .form__control::-moz-placeholder {
  color: #c50000;
}

.form__group.error .form__control::placeholder {
  color: #c50000;
}

.form__group.error .error__text {
  bottom: -32px;
  color: #c50000;
  font-family: br;
  font-size: var(--fs14);
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  right: 0;
}

.form__label {
  display: block;
  font-family: nsb;
  margin-bottom: 10px;
}

.form__control,
.form__label {
  color: #000;
  font-size: var(--fs16);
}

.form__control {
  align-items: center;
  background-clip: padding-box;
  background-color: #f4f4f4;
  border: 1px solid transparent;
  border-radius: 30px;
  display: flex;
  font-family: nl;
  height: var(--height-input);
  outline: 0;
  padding: 0 20px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
}

.form__control::-moz-placeholder {
  color: #555;
}

.form__control::placeholder {
  color: #555;
}

.form__control:focus {
  border: 1px solid #086d46;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.form textarea {
  background-clip: padding-box;
  border-radius: 15px;
  height: 100px;
  padding-top: 15px;
  resize: none;
}

.form button {
  cursor: pointer;
}

.form button svg {
  fill: #fff;
}

@media screen and (max-width: 767px) {
  .form__control {
    --height-input: 40px;
  }
}
.textbox.--center {
  text-align: center;
}

.textbox__heading {
  color: var(--color, #086d46);
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .textbox__heading {
    margin-bottom: 24px;
  }
}
.sccontent {
  padding: 117px 0;
}

.sccontent .textbox {
  grid-column-end: 11;
  grid-column-start: 3;
}

.sccontent__img {
  margin-bottom: 10px;
}

.sccontent__img img {
  margin: 0 auto;
}

.sccontent__btn {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.productdetail-page .scnutrition .sccontent__btn .tab-button:not(:first-child),
.sccontent__btn .btnmain:not(:first-child),
.sccontent__btn .productdetail-page .scnutrition .tab-button:not(:first-child) {
  margin-left: var(--gap);
}

@media screen and (max-width: 1199px) {
  .sccontent .textbox br {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .sccontent .textbox {
    grid-column: initial;
  }
}
@media screen and (max-width: 767px) {
  .sccontent {
    padding: 70px 0;
  }
  .sccontent__btn {
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    max-width: -moz-min-content;
    max-width: min-content;
  }
  .productdetail-page .scnutrition .sccontent__btn .tab-button,
  .sccontent__btn .btnmain,
  .sccontent__btn .productdetail-page .scnutrition .tab-button {
    width: 100%;
  }
  .productdetail-page .scnutrition .sccontent__btn .tab-button:not(:first-child),
  .sccontent__btn .btnmain:not(:first-child),
  .sccontent__btn .productdetail-page .scnutrition .tab-button:not(:first-child) {
    margin: 10px 0 0;
  }
}
.cardtext {
  margin: auto;
  max-width: var(--container-width);
  padding: 90px 0;
}

.cardtext-inner {
  display: flex;
  margin: auto;
  max-width: 83.3333333333%;
}

.cardtext-item {
  flex: 1;
}

.cardtext-item:not(:last-child) {
  margin-right: 20px;
}

.cardtext-item .text {
  color: var(--color, #086d46);
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .cardtext-inner {
    flex-direction: column;
    max-width: 100%;
    padding: 0 var(--gap);
  }
  .cardtext-item:not(:last-child) {
    margin-bottom: 30px;
    margin-right: 0;
  }
  .cardtext-item .text {
    margin-bottom: 20px;
  }
}
.compgrid__img img {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-height: 840px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.compgrid__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compgrid__options .btnmain:hover,
.compgrid__options .productdetail-page .scnutrition .tab-button:hover,
.productdetail-page .scnutrition .compgrid__options .tab-button:hover {
  color: #fff !important;
}

.compgrid__options .group-button {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.compgrid__options .group-button .btnmain,
.compgrid__options .group-button .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .compgrid__options .group-button .tab-button {
  margin-bottom: 10px;
  margin-top: 0 !important;
}

.compgrid.--style-1 {
  --pd: 115px;
  --pd-left: 115px;
  --pd-right: 115px;
  --pd-vertical: 68px;
  --image-height: 495px;
}

.compgrid.--style-1 .compgrid__text {
  background-color: var(--main-color, #086d46);
  flex: 1;
  padding: var(--pd-vertical) var(--pd-right) var(--pd-vertical) var(--pd-left);
}

.compgrid.--style-1 .compgrid__column {
  align-items: stretch;
  display: flex;
  flex-direction: column;
}

.compgrid.--style-1 .compgrid__img {
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.compgrid.--style-1 .compgrid__img img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  .compgrid.--style-1 {
    --image-height: 300x;
    --pd-vertical: 40px;
  }
  .compgrid.--style-1__column {
    flex-direction: column-reverse;
  }
}
.compgrid.--style-1 .compgrid__column:nth-child(odd) .compgrid__text {
  --pd-left: var(--halfPadding);
}

@media (max-width: 1280px) {
  .compgrid.--style-1 .compgrid__column:nth-child(odd) .compgrid__text {
    --pd-left: calc(var(--pd) / 2);
  }
}
@media screen and (max-width: 991px) {
  .compgrid.--style-1 .compgrid__column:nth-child(odd) .compgrid__text {
    --pd-left: var(--gap);
    --pd-right: var(--gap);
  }
}
.compgrid.--style-1 .compgrid__column:nth-child(2n) .compgrid__text {
  --pd-right: var(--halfPadding);
}

@media (max-width: 1280px) {
  .compgrid.--style-1 .compgrid__column:nth-child(2n) .compgrid__text {
    --pd-left: calc(var(--pd) / 2);
  }
}
@media screen and (max-width: 991px) {
  .compgrid.--style-1 .compgrid__column:nth-child(2n) .compgrid__text {
    --pd-left: var(--gap);
    --pd-right: var(--gap);
  }
}
.compgrid.--style-2 {
  --text-padding: 0 105px 0 var(--halfPadding);
  background-color: var(--main-color, #086d46);
}

.compgrid.--style-2 .compgrid__text {
  height: 100%;
  padding: var(--text-padding);
}

.compgrid.--style-2 .compgrid__text .heading {
  margin-bottom: 25px;
}

.compgrid.--style-2 .compgrid__options {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}

.compgrid.--style-2 .compgrid__options .btnmain,
.compgrid.--style-2 .compgrid__options .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .compgrid.--style-2 .compgrid__options .tab-button {
  margin-right: 10px;
}

.compgrid.--style-2 .compgrid__options .btnmain:not(:last-child),
.compgrid.--style-2 .compgrid__options .productdetail-page .scnutrition .tab-button:not(:last-child),
.productdetail-page .scnutrition .compgrid.--style-2 .compgrid__options .tab-button:not(:last-child) {
  margin-bottom: 10px;
}

.compgrid.--style-2 .compgrid__options .btnmain:last-child,
.compgrid.--style-2 .compgrid__options .productdetail-page .scnutrition .tab-button:last-child,
.productdetail-page .scnutrition .compgrid.--style-2 .compgrid__options .tab-button:last-child {
  margin-top: 50px;
}

.compgrid.--style-2 .compgrid__options .outer {
  width: -moz-max-content;
  width: max-content;
}

.compgrid.--style-2 .compgrid__options .outer > a:hover {
  background: #086d46;
  border: 0;
  color: #fff;
}

.compgrid.--style-2 .compgrid__options .outer .btn-download-cbo:hover {
  background: transparent;
}

.compgrid.--style-2 .compgrid__options > a:hover {
  color: #fff;
}

.compgrid.--style-2.--reverse {
  grid-auto-flow: dense;
}

.compgrid.--style-2.--reverse .compgrid__column:first-child {
  grid-column: 2;
}

.compgrid.--style-2.--reverse .compgrid__text {
  --text-padding: 0 var(--halfPadding) 0 105px;
}

@media (max-width: 1280px) and (min-width: 992px) {
  .compgrid.--style-2 .compgrid__text {
    padding: 70px 57px;
  }
}
@media screen and (max-width: 991px) {
  .compgrid.--style-2 .compgrid__column:first-child {
    grid-row-start: 2;
  }
  .compgrid.--style-2 .compgrid__text {
    padding: 60px var(--gap);
  }
  .compgrid.--style-2 .compgrid__options .btnmain:last-child,
  .compgrid.--style-2 .compgrid__options .productdetail-page .scnutrition .tab-button:last-child,
  .productdetail-page .scnutrition .compgrid.--style-2 .compgrid__options .tab-button:last-child {
    margin-top: 30px;
  }
  .compgrid.--style-2.--reverse .compgrid__column:first-child {
    grid-column: initial;
    grid-row: 2;
  }
}
@media screen and (max-width: 767px) {
  .compgrid.--style-2 .compgrid__text .heading {
    margin-bottom: 30px;
  }
  .compgrid.--style-2 .compgrid__options .btnmain:last-child,
  .compgrid.--style-2 .compgrid__options .productdetail-page .scnutrition .tab-button:last-child,
  .productdetail-page .scnutrition .compgrid.--style-2 .compgrid__options .tab-button:last-child {
    margin-top: 20px;
  }
}
.compgrid.--style-3 {
  --text-padding: 100px 105px 100px clamp(var(--gap), var(--halfPadding), 100%);
  background-color: var(--main-color, #086d46);
  display: flex;
}

.compgrid.--style-3 .compgrid__column {
  flex: 1;
}

.compgrid.--style-3 .compgrid__text {
  font-size: var(--fs16);
  height: 100%;
  line-height: var(--lh24);
  padding: var(--text-padding);
}

.compgrid.--style-3 .compgrid__text .heading {
  margin-bottom: 40px;
}

.compgrid.--style-3 .compgrid__img {
  flex: 0 0 58.3333333333%;
}

.compgrid.--style-3.--reverse {
  flex-direction: row-reverse;
}

.compgrid.--style-3.--reverse .compgrid__text {
  --text-padding: 154px clamp(var(--gap), var(--halfPadding), 100%) 154px 105px;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .compgrid.--style-3 {
    --text-padding: 100px 50px 100px clamp(var(--gap), var(--halfPadding), 100%);
  }
  .compgrid.--style-3.--reverse .compgrid__text {
    --text-padding: 100px clamp(var(--gap), var(--halfPadding), 100%) 100px 50px;
  }
}
@media screen and (max-width: 991px) {
  .compgrid.--style-3,
  .compgrid.--style-3.--reverse {
    flex-direction: column-reverse;
  }
  .compgrid.--style-3 .compgrid__text {
    padding: 60px var(--gap);
  }
  .compgrid .heading br {
    display: initial;
  }
}
.totop {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .totop {
    padding: 60px 0 40px;
  }
}
.tags-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tags-title {
  font-family: nb;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.tags-wrapper {
  --tag-gap: 10px;
  display: flex;
  flex-wrap: wrap;
}

.tags-item:not(:last-child) {
  margin: 0 var(--tag-gap) var(--tag-gap) 0;
}

.popup {
  align-items: center;
  background-color: transparent;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 var(--gap);
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s;
  z-index: 350;
}

.popup.active {
  opacity: 1;
  pointer-events: all;
  transition: all 0.3s;
}

.popup__content {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 40px 80px;
  text-align: center;
  width: calc(100% - var(--gap));
}

.popup__content .btn-group {
  display: flex;
  justify-content: center;
}

.popup__content .btn-group .btnmain:not(:last-child),
.popup__content .btn-group .productdetail-page .scnutrition .tab-button:not(:last-child),
.productdetail-page .scnutrition .popup__content .btn-group .tab-button:not(:last-child) {
  margin-right: 10px;
}

.popup__content p {
  margin: 20px 0;
}

@media screen and (max-width: 767px) {
  .popup__content {
    padding: 20px 40px;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination .page-item {
  color: #086d46;
  font-family: nsb;
  font-size: var(--fs16);
  padding: 15px 10px;
  transition: all 0.3s;
}

.pagination .page-item a {
  color: inherit;
  font-family: inherit;
}

.pagination .page-item:hover {
  color: #ffce02;
  transition: all 0.3s;
}

.pagination .page-item.active {
  color: #000;
}

.breadcrumbs {
  font-size: var(--fs16);
  justify-content: start;
  line-height: var(--lh24);
  padding: 8px 0;
}

.breadcrumbs,
.breadcrumbs-item {
  align-items: center;
  display: flex;
}

.breadcrumbs-item {
  flex-shrink: 0;
  flex: 1;
  max-width: -moz-max-content;
  max-width: max-content;
}

.breadcrumbs-item:not(:last-child):after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12.5 10 .354-.354.353.354-.353.354L12.5 10ZM7.854 4.646l5 5-.708.708-5-5 .708-.708Zm5 5.708-5 5-.708-.708 5-5 .708.708Z' fill='%23C4C4C4'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 20px;
  margin: 0 5px;
  width: 20px;
}

.breadcrumbs-item.active {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #000;
  cursor: text;
  display: -webkit-inline-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs-item.active a {
  color: inherit;
}

@media screen and (max-width: 991px) {
  .breadcrumbs {
    display: none;
  }
}
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  height: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform;
}

.flickity-slider {
  height: 100%;
  position: absolute;
  width: 100%;
  will-change: transform;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-page-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.flickity-page-dots .dot {
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  height: 9px;
  margin: 0 5px;
  width: 9px;
}

.flickity-page-dots .dot.is-selected {
  background: #086d46;
}

.flickity-prev-next-button {
  background: #086d46;
  background-image: url(../img/ic_arrow_black.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: var(--height-button);
  position: absolute;
  right: calc(var(--height-button) / 2 * -1);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: var(--height-button);
}

.flickity-prev-next-button svg {
  display: none;
}

.flickity-prev-next-button.previous {
  left: calc(var(--height-button) / 2 * -1);
  right: auto;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 60px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -60px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-60px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(60px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-60px, 60px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(60px, 60px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-60px, -60px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(60px, -60px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 60px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -60px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-60px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(60px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 60px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -60px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-60px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(60px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

.dp-wrap {
  perspective: 1000px;
  position: relative;
}

.dp-slider {
  height: 100%;
  position: absolute;
  width: 100%;
}

.dp-slider,
.dp-slider div {
  transform-style: preserve-3d;
}

.dp_item {
  color: #fff;
  display: block;
  position: absolute;
  text-align: center;
  transition: transform 1.2s;
}

.dp-img img {
  border-left: 1px solid #fff;
}

#dp-slider .dp_item:first-child {
  transform: rotateY(0deg) translateX(0) scale(1) !important;
  z-index: 10 !important;
}

.dp_item[data-position="2"] {
  opacity: 0.8;
  transform: rotateY(0deg) translateY(10%) scale(0.9);
  z-index: 9;
}

.dp_item[data-position="3"] {
  opacity: 0.3;
  transform: rotateY(0deg) translateY(20%) scale(0.8);
  z-index: 8;
}

#dp-next,
#dp-prev {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 33px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  width: 33px;
  z-index: 10;
}

@media screen and (max-width: 991px) {
  #dp-next,
  #dp-prev {
    bottom: -20%;
    right: 50%;
    top: auto;
    transform: translateX(100%);
  }
}
#dp-prev {
  left: 0;
  right: auto;
}

@media screen and (max-width: 991px) {
  #dp-prev {
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-100%);
  }
}
#dp-dots {
  align-items: center;
  bottom: 25px;
  cursor: default;
  display: flex;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 12;
}

#dp-dots li {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  opacity: 0.5;
  transition: all 0.3s;
  width: 10px;
}

#dp-dots li:not(:last-child) {
  margin-right: 8px;
}

#dp-dots li:hover {
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s;
}

#dp-dots li.active {
  height: 20px;
  opacity: 1;
  transition: all 0.3s;
  width: 20px;
}

.dp_item {
  align-items: center;
  background: transparent;
  border-top: none;
  display: flex;
  overflow: hidden;
}

.dp-img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right;
  object-position: right;
}

#dp-slider,
.dp-img img {
  height: 100%;
}

#dp-slider .dp_item:hover:not(:first-child) {
  cursor: pointer;
}

.header {
  --pd-menu: 12px;
  background-color: #fff;
  height: var(--height-header);
  max-width: 2600px;
  position: fixed;
  top: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
  z-index: 110;
}

.header.is-hidden {
  transform: translate(-50%, -100%);
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
}

.header.--bg-white {
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
  height: calc(var(--height-header) - 14px);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.header .container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.header__logo img {
  position: relative;
  top: 3px;
}

.header__menu {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.header__menu li a {
  font-family: nsb;
  font-size: var(--fs16);
  line-height: var(--lh24);
  padding: 4px var(--pd-menu);
  position: relative;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  white-space: nowrap;
}

.header__menu li a:after {
  background: #ffce02;
  bottom: 0;
  content: "";
  height: 2px;
  left: var(--pd-menu);
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: calc(100% - var(--pd-menu) * 2);
}

.header__menu li a.dim {
  opacity: 0.5;
}

.header__menu li a.active:after {
  opacity: 1;
}

.header__right {
  align-items: center;
  display: flex;
}

.header__right-btnmenu,
.header__right-search {
  cursor: pointer;
  position: relative;
}

.header__right-btnmenu {
  height: 16px;
  margin: 0 16px;
  width: 20px;
  z-index: 55;
}

.header__right-btnmenu span {
  background: #086d46;
  height: 1px;
  position: absolute;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
}

.header__right-btnmenu span:first-child {
  top: 4px;
}

.header__right-btnmenu span:last-child {
  bottom: 4px;
}

.header__right-btnmenu.active span {
  background: #fff;
}

.header__right-btnmenu.active span:first-child {
  top: 4px;
  transform: rotate(45deg) translate(3px, 3px);
  -webkit-transform: rotate(45deg) translate(3px, 3px);
  -moz-transform: rotate(45deg) translate(3px, 3px);
  -ms-transform: rotate(45deg) translate(3px, 3px);
  -o-transform: rotate(45deg) translate(3px, 3px);
}

.header__right-btnmenu.active span:last-child {
  bottom: 4px;
  transform: rotate(-45deg) translate(2px, -2px);
  -webkit-transform: rotate(-45deg) translate(2px, -2px);
  -moz-transform: rotate(-45deg) translate(2px, -2px);
  -ms-transform: rotate(-45deg) translate(2px, -2px);
  -o-transform: rotate(-45deg) translate(2px, -2px);
}

.header__right-lang {
  font-family: nsb;
  font-size: var(--fs14);
  line-height: var(--lh22);
}

.header__right-lang a {
  padding: 0 4px;
}

.header__right-lang a.active {
  opacity: 0.5;
  pointer-events: none;
}

.header__right-lang a:last-child {
  padding-right: 0;
}

@media (max-width: 1260px) {
  .header {
    --pd-menu: 8px;
  }
}
@media screen and (max-width: 1199px) {
  .header.--bg-white {
    height: var(--height-header);
  }
  .header__menu {
    display: none;
  }
  .header__right-btnmenu {
    margin: 0 0 0 18px;
  }
  .header__right-lang {
    display: none;
  }
}
.input-search {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  border: 1px solid #086d46;
  border-radius: 30px;
  color: #000;
  display: block;
  opacity: 0;
  outline: 0;
  padding: 1rem 1.75rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 220px;
}

.input-search.active {
  opacity: 1;
  pointer-events: auto;
  right: 25px;
  transition: all 0.3s;
}

.nav {
  align-items: center;
  background: #086d46;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 100px 25px 50px;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
  z-index: 50;
}

.nav__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.nav__menu {
  margin-bottom: 30px;
}

.nav__menu li a {
  color: #fff;
  display: block;
  font-family: nsb;
  font-size: var(--fs20);
  line-height: var(--lh24);
  padding: 13px 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.nav__menu li a.active,
.nav__menu li a:hover {
  color: #ffce02;
}

.nav__menu li.nav__menu-lang {
  display: flex;
}

.nav__menu li.nav__menu-lang a {
  font-size: var(--fs14);
  line-height: var(--lh22);
  opacity: 0.5;
}

.nav__menu li.nav__menu-lang a:not(:last-child) {
  margin-right: 10px;
}

.nav__menu li.nav__menu-lang a.active {
  color: #fff;
  opacity: 1;
}

.nav.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-height: 500px) {
  .nav {
    padding: 50px 25px;
  }
}
.minicart-overlay {
  background: rgba(0, 0, 0, 0.3);
  height: 100vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: all 0.3s;
  width: 100vw;
  z-index: 90;
}

.minicart-overlay.show {
  opacity: 1;
  pointer-events: all;
  transition: all 0.3s;
}

.minicart .normal-block {
  bottom: auto;
  display: block;
  left: auto;
  right: auto;
  top: auto;
}

.minicart .fixed,
.minicart .minicart-nav,
.minicart .minicart-wrap {
  bottom: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.minicart .cart-total .total-number {
  color: #086d46;
}

.minicart-nav {
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  letter-spacing: -0.02em;
  width: 48px;
  writing-mode: vertical-lr;
  z-index: 111;
}

.minicart-nav .navigator {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  display: flex;
  flex: 1;
  height: 100%;
  padding: 24px 0;
  width: 100%;
}

.minicart-nav .navigator svg {
  margin-bottom: 20px;
}

.minicart-nav .cart-total {
  height: -moz-max-content;
  height: max-content;
  padding: 40px 0;
}

.minicart-wrap {
  background-color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: all 0.3s;
  transition-timing-function: ease-in;
  width: 300px;
  z-index: 113;
}

.minicart .cart-header {
  padding: 30px 30px 0;
}

.minicart .cart-header .close-btn {
  --sz: 30px;
  align-items: center;
  cursor: pointer;
  display: flex;
  height: var(--sz);
  justify-content: center;
  margin-left: auto;
  margin-right: -20px;
  width: var(--sz);
}

.minicart .cart-header .header-content {
  margin: 20px 0 14px;
}

.minicart .cart-body {
  flex: 1;
  overflow: hidden;
  padding: 0 10px 0 30px;
}

.minicart .cart-footer {
  align-items: center;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.minicart .cart-footer .cart-total {
  margin-bottom: 20px;
}

.minicart .cart-list {
  max-height: 100%;
  overflow: auto;
  padding: 10px 16px 10px 0;
}

.minicart .cart-list::-webkit-scrollbar {
  width: 4px;
}

.minicart .cart-list::-webkit-scrollbar-track {
  background: none;
}

.minicart .cart-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

.minicart .cart-item {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  display: flex;
  margin-bottom: 10px;
  padding: 10px;
}

.minicart .cart-item .product-img {
  margin: 0;
  overflow: hidden;
  padding-top: 80px;
  position: relative;
  width: 80px;
}

.minicart .cart-item .product-img img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.minicart .cart-item .product-name a {
  color: #000;
}

.minicart .cart-item .product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  margin-left: 10px;
}

.minicart .cart-item .product-options {
  display: flex;
  justify-content: flex-end;
}

.minicart .cart-item .product-options [class$=btn] {
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  height: 22px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 22px;
}

.minicart .cart-item .product-options [class$=btn]:not(:last-child) {
  margin-right: 10px;
}

.minicart .cart-item .product-options [class$=btn]:before {
  background: var(--btn-style);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s;
}

.minicart .cart-item .product-options [class$=btn]:hover:before {
  opacity: 0.25;
  transition: all 0.3s;
}

.minicart.show .minicart-wrap {
  transform: translateX(0);
  transition-timing-function: ease-out;
  transition: all 0.3s;
}

.minicart.show .minicart-overlay {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 991px) {
  .minicart {
    --height-navigator: 60px;
    --border-rds: 10px;
    border-top-left-radius: var(--border-rds);
    border-top-right-radius: var(--border-rds);
    bottom: 0;
    box-shadow: 0 -3px 17px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 88vh;
    overflow: hidden;
    position: fixed;
    right: 0;
    transform: translateY(calc(100% - var(--height-navigator)));
    width: 100vw;
    z-index: 100;
  }
  .minicart,
  .minicart.show {
    transition: all 0.3s;
    will-change: transform;
  }
  .minicart.show {
    transform: translateY(0);
  }
  .minicart.show .overlay {
    background: rgba(0, 0, 0, 0.2);
  }
  .minicart.show .minicart-nav .navigator svg {
    transform: rotate(270deg);
    transition: all 0.3s;
  }
  .minicart .minicart-nav {
    height: var(--height-navigator);
    padding: 0;
    position: relative;
    width: 100%;
    writing-mode: initial;
  }
  .minicart .minicart-nav .navigator {
    border-bottom: 0;
    border-right: 1px solid #e5e5e5;
    padding-left: 20px;
  }
  .minicart .minicart-nav .navigator svg {
    margin-bottom: 0;
    margin-right: 10px;
    transform: rotate(90deg);
    transition: all 0.3s;
  }
  .minicart .minicart-nav .cart-total {
    padding: 0 20px;
  }
  .minicart .minicart-wrap {
    flex: 1;
    position: relative;
    transform: none;
    width: 100%;
  }
  .minicart .cart-header {
    padding: 20px 20px 0;
  }
  .minicart .cart-header .header-content {
    margin: 0;
  }
  .minicart .cart-header .close-btn {
    display: none;
  }
  .minicart .cart-item .product-info {
    flex: 1;
  }
  .minicart .cart-footer {
    height: 60px;
    padding: 0;
  }
  .minicart .cart-footer .btnmain,
  .minicart .cart-footer .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .minicart .cart-footer .tab-button {
    border: none;
    border-radius: 0;
    height: 100%;
    width: 100%;
  }
  .minicart .cart-footer .cart-total {
    display: none;
  }
}
@media (max-width: 576px) {
  .minicart .minicart-nav .cart-total .line {
    display: block;
  }
}
.footer {
  position: relative;
  z-index: 40;
}

.footer__shape,
.footer__shape img {
  width: 100%;
}

.footer__main {
  background: #086d46;
  color: #fff;
  padding: 40px 0 25px;
}

.footer__main-brand {
  align-items: center;
  display: flex;
}

.footer__main-brand .divide {
  background: hsla(0, 0%, 100%, 0.5);
  display: block;
  height: 40px;
  margin: 0 24px;
  width: 1px;
}

.footer__main-menu {
  display: flex;
  margin: 42px 0;
}

.footer__main-menu li {
  margin-right: 45px;
}

.footer__main-menu li a {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.footer__main-menu li a:hover {
  color: #fff;
}

.footer__main-mid {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.footer__main-mid .submenu {
  grid-column: 1/9;
}

.footer__main-mid .submenu .labletitle {
  margin-bottom: 20px;
}

.footer__main-mid .submenu__inner {
  -moz-column-gap: var(--gap);
  column-gap: var(--gap);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.footer__main-mid .submenu__inner ul li a {
  align-items: center;
  color: #fff;
  display: block;
  display: flex;
  font-family: nr;
  font-size: var(--fs16);
  line-height: var(--lh24);
  padding: 4px 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  white-space: nowrap;
}

.footer__main-mid .submenu__inner ul li a i {
  background: url(../img/arrow-next-white.svg) no-repeat 50%;
  background-size: contain;
  display: block;
  height: 16px;
  margin-right: 10px;
  width: 16px;
}

@media (max-width: 400px) {
  .footer__main-mid .submenu__inner ul li a i {
    height: 13px;
    margin-right: 6px;
    width: 13px;
  }
}
.footer__main-mid .submenu__inner ul li a:hover {
  opacity: 0.6;
}

@media (max-width: 374px) {
  .footer__main-mid .submenu__inner ul li a {
    font-size: var(--fs14);
  }
  .footer__main-mid .submenu__inner {
    gap: 15px;
  }
}
.footer__main-mid .btnft {
  align-items: flex-end;
  display: flex;
  grid-column: 9/13;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.footer__main-bottom {
  margin-bottom: 50px;
}

.footer__main-bottom .labletitle {
  margin-bottom: 20px;
}

.footer__main-bottom .btcontent {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer__main-bottom .btcontent a,
.footer__main-bottom .btcontent p {
  color: #fff;
  font-size: var(--fs16);
  line-height: var(--lh24);
}

.footer__main-bottom .btcontent__phone a {
  display: block;
}

.footer__main-copy p {
  opacity: 0.5;
}

@media (max-width: 1240px) {
  .footer__main-menu {
    display: grid;
    grid-template-columns: repeat(4, auto);
  }
}
@media screen and (max-width: 1199px) {
  .footer__main {
    padding: 20px 0;
  }
  .footer__main-brand .logo img {
    width: 122px;
  }
  .footer__main-bottom .btcontent {
    display: grid;
    gap: var(--gap);
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__main-bottom .btcontent__info {
    grid-column: 1/2;
  }
  .footer__main-bottom .btcontent__phone {
    grid-column: 2/3;
  }
  .footer__main-bottom .btcontent__social {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 991px) {
  .footer__main-brand {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }
  .footer__main-brand .logo {
    margin-bottom: 10px;
  }
  .footer__main-brand .divide {
    display: none;
  }
  .footer__main-menu {
    -moz-column-gap: var(--gap);
    column-gap: var(--gap);
    display: grid;
    grid-template-columns: auto auto;
    margin: 30px 0;
  }
  .footer__main-menu li {
    margin-right: 0;
  }
  .footer__main-menu li a {
    display: block;
    padding: 5px 0;
    text-transform: none;
  }
  .footer__main-mid {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .footer__main-mid .submenu {
    grid-column: 1/9;
  }
  .footer__main-mid .submenu__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__main-menu {
    margin: 25px 0;
  }
  .footer__main-mid .submenu {
    grid-column: 1/12;
  }
  .footer__main-mid .submenu .labletitle {
    margin-bottom: 10px;
  }
  .footer__main-mid .btnft {
    grid-column: 1/12;
    justify-content: flex-start;
    margin-top: 20px;
  }
  .footer__main-bottom {
    margin-bottom: 35px;
  }
  .footer__main-bottom .labletitle {
    margin-bottom: 10px;
  }
  .footer__main-bottom .btcontent {
    grid-template-columns: 1fr;
  }
  .footer__main-bottom .btcontent a,
  .footer__main-bottom .btcontent p {
    font-size: var(--fs14);
    line-height: var(--lh24);
  }
  .footer__main-bottom .btcontent__info,
  .footer__main-bottom .btcontent__phone,
  .footer__main-bottom .btcontent__social {
    grid-column: 1/2;
  }
}
@media (max-width: 378px) {
  .footer__main-menu {
    grid-template-columns: auto;
  }
}
.notfoundpage .notfound .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 60vh;
}

.notfoundpage .notfound .heading {
  font-size: 10rem;
  line-height: 1;
}

.notfoundpage .notfound .text {
  line-height: 1.5;
  margin-top: 5px;
}

.notfoundpage .notfound .btnmain,
.notfoundpage .notfound .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .notfoundpage .notfound .tab-button {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .notfoundpage .notfound .heading {
    font-size: 8rem;
  }
}
.scherohome__slider {
  height: calc(100vh - var(--height-header));
  max-height: 1336px;
  position: relative;
  width: 100%;
}

.scherohome__slider .flickity-viewport {
  height: 100% !important;
}

.scherohome__slider .slide {
  height: 100%;
  padding-bottom: 170px;
  transition: opacity 0.04s;
  -webkit-transition: opacity 0.04s;
  -moz-transition: opacity 0.04s;
  -ms-transition: opacity 0.04s;
  -o-transition: opacity 0.04s;
  width: 100%;
}

.scherohome__slider .slide .container {
  align-items: flex-end;
  display: flex;
  height: 100%;
}

.scherohome__slider .slide img,
.scherohome__slider .slide picture {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
}

.scherohome__slider .slide__content {
  position: relative;
  width: 100%;
}

.scherohome__slider .slide__content .heading {
  --main-color: $main-cl;
  color: var(--main-color);
  margin-bottom: 0;
}

.productdetail-page .scnutrition .scherohome__slider .slide__content .tab-button,
.scherohome__slider .slide__content .btnmain,
.scherohome__slider .slide__content .productdetail-page .scnutrition .tab-button {
  bottom: 0;
  position: absolute;
  right: 0;
}

.scherohome__controls {
  bottom: 60px;
  position: absolute;
  width: 100%;
}

.scherohome__controls .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.scherohome__controls-scroll {
  align-items: center;
  display: flex;
}

.scherohome__controls-scroll .mouse {
  align-items: center;
  border: 1px solid #333;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 28px;
  justify-content: center;
  margin-right: 8px;
  width: 16px;
}

.scherohome__controls-scroll .mouse span {
  animation: dotsfade 1.5s infinite;
  -webkit-animation: dotsfade 1.5s infinite;
  -moz-animation: dotsfade 1.5s infinite;
  -ms-animation: dotsfade 1.5s infinite;
  -o-animation: dotsfade 1.5s infinite;
  background: #333;
  border-radius: 50%;
  height: 2px;
  width: 2px;
}

.scherohome__controls-scroll .mouse span:first-child {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}

.scherohome__controls-scroll .mouse span:nth-child(2) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  margin: 3px 0;
}

.scherohome__controls-scroll .mouse span:nth-child(3) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
}

@media (min-height: 1200px) {
  .scherohome__slider {
    max-height: 1336px;
  }
}
@media screen and (max-width: 1599px) {
  .scherohome__slider .slide {
    padding-bottom: 120px;
  }
  .scherohome__controls {
    bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .scherohome__slider {
    height: calc(700px - var(--height-header));
  }
}
@media screen and (max-width: 991px) {
  .scherohome__slider .slide {
    padding-bottom: 80px;
  }
  .scherohome__slider .slide__content .heading {
    margin-bottom: 20px;
  }
  .scherohome__slider .slide__content .heading br {
    display: none;
  }
  .productdetail-page .scnutrition .scherohome__slider .slide__content .tab-button,
  .scherohome__slider .slide__content .btnmain,
  .scherohome__slider .slide__content .productdetail-page .scnutrition .tab-button {
    position: relative;
  }
  .scherohome__controls {
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .scherohome__slider {
    height: calc(100vh - var(--height-header));
  }
  .scherohome__slider .slide {
    padding-top: 40px;
  }
  .scherohome__slider .slide .container {
    align-items: flex-start;
  }
}
@media (max-width: 360px) {
  .scherohome__slider .slide {
    padding-top: 25px;
  }
  .scherohome__slider .slide__content .heading {
    margin-bottom: 15px;
  }
}
.scstory {
  --pdSection: 400px;
  background: url(../img/bg-story.jpg) no-repeat 50%;
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
}

.scstory__inner {
  display: grid;
  grid-template-columns: 100vw 1515px 2177px 1797px 2760px 1607px 100vw;
  height: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.scstory__inner .screen {
  height: 100vh;
  position: relative;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  will-change: transform;
  z-index: 10;
}

.scstory__inner .screen:not(:first-child),
.scstory__inner .screen:not(:last-child) {
  padding: 0 var(--pdSection);
}

.scstory__inner .screen:first-child,
.scstory__inner .screen:last-child {
  padding: 0;
}

.scstory__inner .screen .container {
  height: 100%;
}

.scstory__inner .screen .iconmain {
  align-items: center;
  background: var(--color);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 140px;
  justify-content: center;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: 0.3s cubic-bezier(0.59, 0.29, 0.15, 0.93);
  -webkit-transition: 0.3s cubic-bezier(0.59, 0.29, 0.15, 0.93);
  -moz-transition: 0.3s cubic-bezier(0.59, 0.29, 0.15, 0.93);
  -ms-transition: 0.3s cubic-bezier(0.59, 0.29, 0.15, 0.93);
  -o-transition: 0.3s cubic-bezier(0.59, 0.29, 0.15, 0.93);
  width: 140px;
}

.scstory__inner .screen .iconmain.active {
  opacity: 0.4;
}

.scstory__inner .screen .iconmain:first-child {
  pointer-events: none;
}

.scstory__inner .screen .iconmain:not(:first-child):hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.scstory__inner .screen .listcircle {
  display: flex;
  position: absolute;
  right: var(--pdSection);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  will-change: transform;
}

.scstory__inner .screen .listcircle .iconmain {
  margin: 0 25px;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-1turn);
    -webkit-transform: translate(-50%, -50%) rotate(-1turn);
    -moz-transform: translate(-50%, -50%) rotate(-1turn);
    -ms-transform: translate(-50%, -50%) rotate(-1turn);
    -o-transform: translate(-50%, -50%) rotate(-1turn);
  }
}
.scstory__inner .screen .listcircle .iconmain:first-child {
  margin-left: 0;
  position: relative;
}

.scstory__inner .screen .listcircle .iconmain:first-child img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.scstory__inner .screen .listcircle .iconmain:first-child img.iconmaintext {
  animation: rotate 6s linear infinite;
  -webkit-animation: rotate 6s linear infinite;
  -moz-animation: rotate 6s linear infinite;
  -ms-animation: rotate 6s linear infinite;
  -o-animation: rotate 6s linear infinite;
  will-change: transform;
}

.scstory__inner .screen .listcircle .iconmain:last-child {
  margin-right: 0;
}

.scstory__inner .screen.screen01 .textbox {
  max-width: 380px;
  position: absolute;
  text-align: center;
}

.scstory__inner .screen.screen01 .iconlist,
.scstory__inner .screen.screen01 .textbox {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.scstory__inner .screen.screen01 .iconlist {
  height: 285px;
  margin: auto;
  position: relative;
  position: absolute;
  width: 820px;
}

.scstory__inner .screen.screen01 .iconlist .icon {
  align-items: center;
  background: #ffce02;
  border-radius: 50%;
  display: flex;
  height: 85px;
  justify-content: center;
  position: absolute;
  width: 85px;
}

.scstory__inner .screen.screen01 .iconlist .icon:first-child {
  left: 30px;
  top: 0;
}

.scstory__inner .screen.screen01 .iconlist .icon:nth-child(2) {
  bottom: 0;
  left: 120px;
}

.scstory__inner .screen.screen01 .iconlist .icon:nth-child(3) {
  right: 0;
  top: 0;
}

.scstory__inner .screen.screen01 .iconlist .icon:nth-child(4) {
  bottom: 0;
  right: 100px;
}

.scstory__inner .screen.screen02 .iconmain {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.scstory__textbox .textbox {
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 70px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 740px;
}

.scstory__textbox .textbox.active {
  opacity: 1;
  pointer-events: auto;
}

.scstory__textbox .textbox:first-child,
.scstory__textbox .textbox:last-child {
  display: none;
  max-width: 380px;
  padding-top: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

@media (max-height: 800px) {
  .scstory__textbox .textbox {
    top: 45px;
  }
  .scstory__textbox .textbox .heading.--mb {
    margin-bottom: 15px;
  }
}
.scstory__content {
  --ptTextBox: 100px;
  --sizeCircle: 500px;
  --sizeImg: 500px;
  --pdTopBottom: 80px;
  --pdLeftRight: 80px;
  --t: 0.4s;
  height: 100vh;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 40;
}

.scstory__content .item {
  height: 100%;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 100%;
}

.scstory__content .item,
.scstory__content .item.active {
  transition: var(--t);
  -webkit-transition: var(--t);
  -moz-transition: var(--t);
  -ms-transition: var(--t);
  -o-transition: var(--t);
}

.scstory__content .item.active {
  opacity: 1;
  pointer-events: auto;
}

.scstory__content .item__textbox {
  padding-top: var(--ptTextBox);
}

.scstory__content .item__textbox .desc,
.scstory__content .item__textbox .heading {
  opacity: 0;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
  transition: var(--t);
  -webkit-transition: var(--t);
  -moz-transition: var(--t);
  -ms-transition: var(--t);
  -o-transition: var(--t);
}

.scstory__content .item__textbox .desc {
  color: var(--color);
  font-size: var(--fs24);
  line-height: var(--lh36);
  margin-top: 6px;
}

.scstory__content .item__circle {
  align-items: center;
  background: var(--color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: var(--sizeCircle);
  justify-content: center;
  left: 50%;
  margin: auto;
  opacity: 0;
  padding: var(--pdTopBottom) var(--pdLeftRight);
  position: absolute;
  top: 43%;
  transform: translate(-50%, -50%) scale(0.3);
  -webkit-transform: translate(-50%, -50%) scale(0.3);
  -moz-transform: translate(-50%, -50%) scale(0.3);
  -ms-transform: translate(-50%, -50%) scale(0.3);
  -o-transform: translate(-50%, -50%) scale(0.3);
  transition: var(--t);
  -webkit-transition: var(--t);
  -moz-transition: var(--t);
  -ms-transition: var(--t);
  -o-transition: var(--t);
  width: var(--sizeCircle);
  z-index: 8;
}

.scstory__content .item__circle .icon {
  margin: 0 auto;
}

.scstory__content .item__circle .text {
  color: #fff;
  font-family: nsb;
  margin-top: 15px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

.scstory__content .item__img {
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 10;
}

.scstory__content .item__img img {
  height: var(--sizeImg);
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0;
  position: relative;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transition: var(--t);
  -webkit-transition: var(--t);
  -moz-transition: var(--t);
  -ms-transition: var(--t);
  -o-transition: var(--t);
}

.scstory__content.active {
  pointer-events: auto;
}

.scstory__content.active .item__textbox .heading {
  transition: var(--t) 0.1s;
  -webkit-transition: var(--t) 0.1s;
  -moz-transition: var(--t) 0.1s;
  -ms-transition: var(--t) 0.1s;
  -o-transition: var(--t) 0.1s;
}

.scstory__content.active .item__textbox .desc,
.scstory__content.active .item__textbox .heading {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.scstory__content.active .item__textbox .desc {
  transition: var(--t) 0.2s;
  -webkit-transition: var(--t) 0.2s;
  -moz-transition: var(--t) 0.2s;
  -ms-transition: var(--t) 0.2s;
  -o-transition: var(--t) 0.2s;
}

.scstory__content.active .item__circle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transition: var(--t) 0.2s cubic-bezier(0.56, 0.38, 0.22, 0.96);
  -webkit-transition: var(--t) 0.2s cubic-bezier(0.56, 0.38, 0.22, 0.96);
  -moz-transition: var(--t) 0.2s cubic-bezier(0.56, 0.38, 0.22, 0.96);
  -ms-transition: var(--t) 0.2s cubic-bezier(0.56, 0.38, 0.22, 0.96);
  -o-transition: var(--t) 0.2s cubic-bezier(0.56, 0.38, 0.22, 0.96);
}

.scstory__content.active .item__img img {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transition: var(--t) 0.28s cubic-bezier(0.56, 0.38, 0.22, 0.96);
  -webkit-transition: var(--t) 0.28s cubic-bezier(0.56, 0.38, 0.22, 0.96);
  -moz-transition: var(--t) 0.28s cubic-bezier(0.56, 0.38, 0.22, 0.96);
  -ms-transition: var(--t) 0.28s cubic-bezier(0.56, 0.38, 0.22, 0.96);
  -o-transition: var(--t) 0.28s cubic-bezier(0.56, 0.38, 0.22, 0.96);
}

@media (max-height: 1180px) {
  .scstory__content {
    --sizeCircle: 380px;
    --pdLeftRight: 40px;
    --sizeImg: 470px;
  }
}
@media (max-height: 1120px) {
  .scstory__content {
    --ptTextBox: 60px;
    --sizeImg: 420px;
  }
}
@media (max-height: 970px) {
  .scstory__content {
    --ptTextBox: 40px;
    --sizeImg: 330px;
  }
}
@media (max-height: 780px) {
  .scstory__content {
    --ptTextBox: 20px;
    --sizeCircle: 330px;
    --pdTopBottom: 60px;
    --pdLeftRight: 56px;
    --sizeImg: 230px;
  }
  .scstory__content .item__circle .text {
    font-size: var(--fs18);
    line-height: var(--lh26);
    margin-top: 15px;
  }
}
.scstory__heart {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  width: 100%;
  will-change: transform;
}

.scstory__heart img {
  width: 100%;
}

.scstory.--blur .scstory__inner {
  filter: blur(25px);
  -webkit-filter: blur(25px);
}

.scstory.--blur .scstory__inner,
.scstory.--blur .scstory__textbox .textbox {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.scstory.--blur .scstory__textbox .textbox {
  opacity: 0;
}

.sctinhhoa {
  --hSection: 2000px;
}

.sctinhhoa__content {
  max-width: 830px;
  padding-top: 100px;
  position: absolute;
}

.sctinhhoa__content ul {
  margin-top: 50px;
  max-width: 420px;
}

.sctinhhoa__content ul li {
  align-items: center;
  display: flex;
  margin: 20px 0;
}

.sctinhhoa__content ul li img {
  flex-shrink: 0;
}

.sctinhhoa__content ul li i {
  margin-right: 10px;
  min-width: 50px;
  width: 50px;
}

.sctinhhoa__bg {
  height: var(--hSection);
  overflow: hidden;
}

.sctinhhoa__bg img,
.sctinhhoa__bg picture {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  width: 100%;
}

@media (max-width: 3000px) {
  .sctinhhoa {
    --hSection: 1500px;
  }
}
@media (max-width: 2200px) {
  .sctinhhoa {
    --hSection: 1300px;
  }
}
@media (max-width: 1920px) {
  .sctinhhoa {
    --hSection: 1130px;
  }
}
@media (max-width: 1440px) {
  .sctinhhoa__content {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .sctinhhoa {
    --hSection: auto;
    background: #f3f3f3;
  }
  .sctinhhoa__content {
    padding-top: var(--pd-section);
    position: relative;
  }
  .sctinhhoa__content ul {
    margin-top: 25px;
  }
  .sctinhhoa__content ul li {
    margin: 22px 0;
  }
  .sctinhhoa__content ul li .bodytext.--t24 {
    font-size: var(--fs18);
    line-height: var(--lh26);
  }
  .sctinhhoa__bg img,
  .sctinhhoa__bg picture {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom;
    object-position: bottom;
    width: 100%;
  }
}
.scnguyenlieu {
  --hSlider: 1200px;
  overflow: hidden;
}

.scnguyenlieu__content {
  position: absolute;
}

.scnguyenlieu__slider {
  height: var(--hSlider);
  position: relative;
  width: 100%;
}

.scnguyenlieu__slider .sliders {
  height: 100%;
  width: 100%;
}

.scnguyenlieu__slider .sliders .flickity-viewport {
  height: 100% !important;
}

.scnguyenlieu__slider .sliders .slide {
  height: 100%;
  transition: opacity 0.04s;
  -webkit-transition: opacity 0.04s;
  -moz-transition: opacity 0.04s;
  -ms-transition: opacity 0.04s;
  -o-transition: opacity 0.04s;
  width: 100%;
}

.scnguyenlieu__slider .sliders .slide img,
.scnguyenlieu__slider .sliders .slide picture {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  width: 100%;
}

.scnguyenlieu__slider .shape {
  bottom: -2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.scnguyenlieu__slider .shape img {
  width: 100%;
}

.scnguyenlieu .slcontrols {
  bottom: 10px;
  position: absolute;
  right: var(--gap);
}

@media (max-width: 1920px) {
  .scnguyenlieu {
    --hSlider: 900px;
  }
}
@media (max-width: 1440px) {
  .scnguyenlieu {
    --hSlider: 700px;
  }
}
@media screen and (max-width: 1199px) {
  .scnguyenlieu {
    --hSlider: 700px;
  }
  .scnguyenlieu__content {
    max-width: 824px;
  }
  .scnguyenlieu__slider .shape {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 1400px;
  }
}
@media screen and (max-width: 767px) {
  .scnguyenlieu {
    --hSlider: 500px;
  }
  .scnguyenlieu__content {
    position: relative;
  }
  .scnguyenlieu__slider .shape {
    min-width: 700px;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .scnguyenlieu {
    --hSlider: 380px;
  }
  .scnguyenlieu__slider {
    margin-top: -40px;
  }
  .scnguyenlieu .slcontrols {
    justify-content: center;
    left: 50%;
    padding: 0 var(--gap);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 100%;
  }
  .scnguyenlieu .slcontrols__progress {
    display: block;
    margin: 0 5px;
    width: 100%;
  }
}
.scsanxuat {
  overflow: hidden;
}

.scsanxuat__content {
  max-width: 680px;
  padding-top: 140px;
  position: absolute;
}

.scsanxuat__bg img,
.scsanxuat__bg picture {
  width: 100%;
}

@media screen and (max-width: 1599px) {
  .scsanxuat__bg img,
  .scsanxuat__bg picture {
    max-width: none;
    width: 1800px;
  }
}
@media screen and (max-width: 1199px) {
  .scsanxuat__bg img,
  .scsanxuat__bg picture {
    position: relative;
    right: 130px;
    width: 1800px;
  }
}
@media screen and (max-width: 991px) {
  .scsanxuat__bg img,
  .scsanxuat__bg picture {
    right: 200px;
  }
}
@media screen and (max-width: 767px) {
  .scsanxuat__content {
    padding-bottom: 10px;
    padding-top: var(--pd-section);
    position: relative;
  }
  .scsanxuat__bg img,
  .scsanxuat__bg picture {
    max-width: 100%;
    right: 0;
    width: 100%;
  }
}
.scgiaiphap {
  overflow-x: hidden;
  padding-bottom: 70px;
  padding-top: 140px;
}

.scgiaiphap__top {
  align-items: flex-end;
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr 300px;
}

.productdetail-page .scnutrition .scgiaiphap__top .tab-button,
.scgiaiphap__top .btnmain,
.scgiaiphap__top .productdetail-page .scnutrition .tab-button {
  justify-self: flex-end;
  margin-bottom: 5px;
}

.scgiaiphap__slider .sliders {
  margin: 60px 0;
}

.scgiaiphap__slider .sliders .flickity-viewport {
  overflow: initial;
}

.scgiaiphap__slider .sliders .slide {
  margin-right: var(--gap);
  width: calc(var(--container-width) / 4 - var(--gap) * 2 / 4 - var(--gap) * 2 / 4);
}

.scgiaiphap__slider .sliders .slide__img {
  border-radius: 20px;
  display: block;
  height: 0;
  overflow: hidden;
  padding-bottom: 112.5%;
  position: relative;
  width: 100%;
}

.scgiaiphap__slider .sliders .slide__img img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
}

.scgiaiphap__slider .sliders .slide__img:hover img {
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
}

.scgiaiphap__slider .sliders .slide__caption {
  margin-top: 30px;
}

.scgiaiphap__slider .sliders .slide__caption .heading {
  margin-top: 8px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.scgiaiphap__slider .sliders .slide__caption .heading:hover {
  color: #086d46;
}

.scgiaiphap .slcontrols__progress {
  margin-left: 0;
  width: calc(100% - 80px);
}

@media screen and (max-width: 991px) {
  .scgiaiphap__top {
    grid-template-columns: 1fr;
  }
  .productdetail-page .scnutrition .scgiaiphap__top .tab-button,
  .scgiaiphap__top .btnmain,
  .scgiaiphap__top .productdetail-page .scnutrition .tab-button {
    margin-bottom: 0;
    margin-top: 14px;
  }
  .scgiaiphap__slider .sliders .slide {
    width: calc(var(--container-width) / 2 - var(--gap) * 2 / 2 - var(--gap) * 1 / 2);
  }
}
@media screen and (max-width: 767px) {
  .scgiaiphap {
    padding-bottom: 0;
  }
  .productdetail-page .scnutrition .scgiaiphap__top .tab-button,
  .scgiaiphap__top .btnmain,
  .scgiaiphap__top .productdetail-page .scnutrition .tab-button {
    margin-top: 10px;
  }
  .scgiaiphap__slider .sliders {
    margin: 50px 0 40px;
  }
  .scgiaiphap__slider .sliders .slide {
    width: calc(var(--container-width) / 1 - var(--gap) * 2 / 1 - var(--gap) * 1 / 1 - 160px);
  }
  .scgiaiphap__slider .sliders .slide__img {
    border-radius: 15px;
  }
  .scgiaiphap__slider .sliders .slide__caption {
    margin-top: 20px;
  }
  .scgiaiphap__slider .sliders .slide__caption .heading {
    margin-top: 3px;
  }
}
@media (max-width: 374px) {
  .scgiaiphap__slider .sliders .slide {
    width: calc(var(--container-width) / 1 - var(--gap) * 2 / 1 - var(--gap) * 1 / 1 - 220px);
  }
}
.scsuckhoe {
  padding: 50px 0;
}

.scsuckhoe__content .heading {
  grid-column: 1/7;
}

.scsuckhoe__content .desc {
  grid-column: 7/13;
  padding-top: 15px;
}

.scsuckhoe__slider {
  margin: 70px 0 20px;
}

.scsuckhoe__slider .slide {
  transition: opacity 0.04s;
  -webkit-transition: opacity 0.04s;
  -moz-transition: opacity 0.04s;
  -ms-transition: opacity 0.04s;
  -o-transition: opacity 0.04s;
  width: 100%;
}

.scsuckhoe__slider .slide__img img {
  width: 100%;
}

.scsuckhoe__slider .slide__content {
  margin-top: 40px;
}

.scsuckhoe__tabs .container {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(var(--col), 1fr);
}

.scsuckhoe__tabs-tab {
  cursor: pointer;
  position: relative;
}

.scsuckhoe__tabs-tab .number {
  color: #c4c4c4;
  margin-bottom: 8px;
}

.scsuckhoe__tabs-tab .number,
.scsuckhoe__tabs-tab .text {
  font-family: nr;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.scsuckhoe__tabs-tab:after {
  background: #086d46;
  content: "";
  display: block;
  height: 2px;
  margin-top: 28px;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: right;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  width: 100%;
}

.scsuckhoe__tabs-tab.active .number,
.scsuckhoe__tabs-tab:hover .number {
  color: #ffce02;
}

.scsuckhoe__tabs-tab.active .text,
.scsuckhoe__tabs-tab:hover .text {
  color: #086d46;
}

.scsuckhoe__tabs-tab.active:after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: left;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
}

@media screen and (max-width: 1199px) {
  .scsuckhoe__content .container {
    grid-template-columns: 1fr;
  }
  .scsuckhoe__content .heading {
    grid-column: 1/8;
    margin-bottom: 30px;
    max-width: 700px;
  }
  .scsuckhoe__content .desc {
    grid-column: 1/8;
    max-width: 700px;
    padding-top: 0;
  }
  .scsuckhoe__tabs .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .scsuckhoe {
    padding-top: var(--pd-section);
  }
  .scsuckhoe__content .heading {
    margin-bottom: 20px;
  }
  .scsuckhoe__slider {
    margin: 35px 0 20px;
  }
  .scsuckhoe__slider .slide__content {
    margin-top: 30px;
  }
  .scsuckhoe__tabs-tab .number {
    margin-bottom: 4px;
  }
  .scsuckhoe__tabs-tab .number.bodytext.--t18 {
    font-size: var(--fs14);
    line-height: var(--lh22);
  }
  .scsuckhoe__tabs-tab .text {
    padding-right: 30px;
  }
  .scsuckhoe__tabs-tab .text br {
    display: none;
  }
  .scsuckhoe__tabs-tab .text.bodytext.--t20 {
    font-size: var(--fs14);
    line-height: var(--lh22);
  }
}
@media screen and (max-width: 767px) and (max-width: 390px) {
  .scsuckhoe__tabs-tab .text {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .scsuckhoe__tabs-tab:after {
    height: 1px;
    margin-top: 10px;
  }
}
.contactpage .schero {
  --height-hero: 630px;
  --pt-content: 300px;
  max-height: var(--height-hero);
  position: relative;
}

.contactpage .schero:before {
  background: linear-gradient(1.68deg, #fff 5%, hsla(0, 0%, 100%, 0.85) 21.9%, hsla(0, 0%, 100%, 0) 38.19%), linear-gradient(180deg, #fff, hsla(0, 0%, 100%, 0.93) 10.77%, hsla(0, 0%, 100%, 0) 27.94%);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}

.contactpage .schero__content {
  padding-top: var(--pt-content);
  position: absolute;
  top: 0;
}

.contactpage .schero__bg {
  height: var(--height-hero);
  width: 100%;
}

.contactpage .schero__bg picture img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 1599px) {
  .contactpage .schero {
    --pt-content: 282px;
  }
}
@media screen and (max-width: 1199px) {
  .contactpage .schero {
    --pt-content: 262px;
  }
}
@media screen and (max-width: 991px) {
  .contactpage .schero {
    --pt-content: 242px;
  }
}
@media screen and (max-width: 767px) {
  .contactpage .schero {
    --height-hero: 300px;
    --pt-content: 142px;
  }
}
.contactpage .schoptac {
  padding: 139px 0 100px;
}

.contactpage .schoptac .container {
  display: grid;
  grid-template-columns: 550px 610px;
  justify-content: space-between;
}

.contactpage .schoptac__content .btnmain,
.contactpage .schoptac__content .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .contactpage .schoptac__content .tab-button {
  width: 295px;
}

.contactpage .schoptac__content .btnmain:last-child,
.contactpage .schoptac__content .productdetail-page .scnutrition .tab-button:last-child,
.productdetail-page .scnutrition .contactpage .schoptac__content .tab-button:last-child {
  margin-top: 20px;
}

.contactpage .schoptac__form .success {
  color: green;
  margin-top: 1rem;
}

.contactpage .schoptac__form .btnmain,
.contactpage .schoptac__form .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .contactpage .schoptac__form .tab-button {
  border: none;
}

@media screen and (max-width: 1199px) {
  .contactpage .schoptac .container {
    -moz-column-gap: var(--gap);
    column-gap: var(--gap);
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .contactpage .schoptac {
    padding: 50px 0;
  }
  .contactpage .schoptac .container {
    -moz-column-gap: unset;
    column-gap: unset;
    grid-template-columns: 1fr;
  }
  .contactpage .schoptac__content {
    margin-bottom: 30px;
  }
  .contactpage .schoptac__form {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
  }
}
.contactpage .sclienhe__submenu {
  -moz-column-gap: 140px;
  column-gap: 140px;
  display: flex;
}

.contactpage .sclienhe__submenu .submenu .labletitle {
  font-family: bb;
  line-height: var(--lh26);
  margin-bottom: 15px;
}

.contactpage .sclienhe__submenu .submenu ul li {
  font-family: nl;
  font-size: var(--fs18);
  line-height: var(--lh26);
}

.contactpage .sclienhe__submenu .submenu ul li:not(:last-child) {
  margin-bottom: 20px;
}

.contactpage .sclienhe__submenu .submenu ul li a {
  color: #000;
}

@media screen and (max-width: 1199px) {
  .contactpage .sclienhe__submenu {
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
}
@media screen and (max-width: 991px) {
  .contactpage .sclienhe__submenu {
    flex-wrap: wrap;
  }
  .contactpage .sclienhe__submenu .submenu {
    margin-bottom: 30px;
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .contactpage .sclienhe__submenu {
    -moz-column-gap: unset;
    column-gap: unset;
  }
  .contactpage .sclienhe__submenu .labletitle {
    font-size: var(--fs14);
    line-height: var(--lh22);
  }
  .contactpage .sclienhe__submenu .submenu {
    max-width: unset;
    width: 100%;
  }
  .contactpage .sclienhe__submenu .submenu ul li {
    font-size: var(--fs16);
    line-height: var(--lh24);
  }
}
.brandpage {
  padding-right: var(--minicart-width);
}

.brandpage .scherobrand {
  height: auto;
}

.brandpage .scherobrand img,
.brandpage .scherobrand picture {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.brandpage .sccontent .textbox .heading.--h1 b {
  display: block;
  text-transform: uppercase;
}

.brandpage .compgrid__img {
  max-height: 700px;
}

@media (min-width: 1600px) {
  .brandpage .compgrid__img {
    max-height: 900px;
  }
}
@media (min-width: 1200px) {
  .brandpage .compgrid.--style-2.--reverse .compgrid__text {
    --text-padding: 100px var(--halfPadding) 100px 105px;
    padding-right: clamp(15px + var(--minicart-width, 0), var(--halfPadding) + var(--gap), 9999px);
  }
}
@media screen and (max-width: 991px) {
  .brandpage {
    padding-right: 0;
  }
}
.brandpage .scnews {
  background-color: #e1f0de;
  padding: 80px 0 calc(var(--footer-shape-height) + 80px);
}
.brandpage .scnews .btnmain {
  margin-top: 40px;
}
.brandpage .scnews .productdetail-page .scnutrition .tab-button {
  margin-top: 40px;
}
.brandpage .news-list {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}
.brandpage .news-list .news-item {
  background: #fff;
  border-radius: 10px;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}
.brandpage .news-list .news-item__img a {
  display: block;
  height: 0;
  padding-bottom: 65%;
  position: relative;
}
.brandpage .news-list .news-item__img a img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.brandpage .news-list .news-item__content {
  padding: 20px;
}
.brandpage .news-list .news-item__date {
  color: #6dbe4b;
  margin-bottom: 10px;
}
.brandpage .news-list .news-item__desc {
  color: #000;
}
.brandpage .news-list .news-item__desc a {
  color: inherit;
}

.productdetail-page .scnutrition .brandpage .scnews .tab-button {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .brandpage .news-list {
    grid-template-columns: 1fr;
  }
  .brandpage .news-list .news-item {
    display: flex;
  }
  .brandpage .news-list .news-item__img {
    flex-shrink: 0;
    width: 30%;
  }
  .brandpage .news-list .news-item__img a {
    padding-bottom: 100%;
  }
  .brandpage .news-list .news-item__date {
    margin-bottom: 3px;
  }
  .brandpage .news-list .news-item__content {
    padding: 10px var(--gap) 0;
  }
  .brandpage .news-list .news-item__desc {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-inline-box;
    font-size: var(--fs16);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.productdetail-page .scnews {
  background-color: #e1f0de;
  padding: 80px 0 calc(var(--footer-shape-height) + 80px);
}
.productdetail-page .scnews .btnmain {
  margin-top: 40px;
}
.productdetail-page .scnews .productdetail-page .scnutrition .tab-button {
  margin-top: 40px;
}
.productdetail-page .scnutrition .productdetail-page .scnews .tab-button {
  margin-top: 40px;
}
.productdetail-page .news-list {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}
.productdetail-page .news-list .news-item {
  background: #fff;
  border-radius: 10px;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}
.productdetail-page .news-list .news-item__img a {
  display: block;
  height: 0;
  padding-bottom: 65%;
  position: relative;
}
.productdetail-page .news-list .news-item__img a img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.productdetail-page .news-list .news-item__content {
  padding: 20px;
}
.productdetail-page .news-list .news-item__date {
  color: #6dbe4b;
  margin-bottom: 10px;
}
.productdetail-page .news-list .news-item__desc {
  color: #000;
}
.productdetail-page .news-list .news-item__desc a {
  color: inherit;
}

@media screen and (max-width: 767px) {
  .productdetail-page .news-list {
    grid-template-columns: 1fr;
  }
  .productdetail-page .news-list .news-item {
    display: flex;
  }
  .productdetail-page .news-list .news-item__img {
    flex-shrink: 0;
    width: 30%;
  }
  .productdetail-page .news-list .news-item__img a {
    padding-bottom: 100%;
  }
  .productdetail-page .news-list .news-item__date {
    margin-bottom: 3px;
  }
  .productdetail-page .news-list .news-item__content {
    padding: 10px var(--gap) 0;
  }
  .productdetail-page .news-list .news-item__desc {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-inline-box;
    font-size: var(--fs16);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.productdetail-page {
  padding-right: var(--minicart-width);
}

.productdetail-page .header {
  padding-right: 60px;
}

.productdetail-page .schero-banner {
  height: calc(100vh - 200px);
  overflow: hidden;
}

.productdetail-page .schero-banner img,
.productdetail-page .schero-banner picture {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 1599px) and (max-height: 680px) {
  .productdetail-page .schero-banner {
    height: auto;
  }
}
@media screen and (max-width: 1199px) {
  .productdetail-page .schero-banner {
    height: auto;
  }
}
.productdetail-page .schero .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: -30px;
  min-height: 260px;
}

.productdetail-page .schero .inner .schero-sub-banner {
  bottom: 100px;
  left: 50%;
  min-width: 100%;
  position: absolute;
  transform: translateX(-50%);
}

.productdetail-page .schero .inner .schero-sub-banner .product-brand-img {
  margin: auto auto 50px;
}

.productdetail-page .schero .inner .schero-sub-banner .product-image {
  margin: auto;
  max-height: 700px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 1920px) {
  .productdetail-page .schero .inner .schero-sub-banner .product-image {
    max-height: 580px;
  }
}
@media screen and (max-width: 1599px) {
  .productdetail-page .schero .inner .schero-sub-banner .product-image {
    max-height: 460px;
  }
}
@media screen and (max-width: 1199px) {
  .productdetail-page .schero .inner .schero-sub-banner .product-image {
    max-height: 340px;
  }
}
@media screen and (max-width: 991px) {
  .productdetail-page .schero .inner .schero-sub-banner .product-image {
    max-height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .productdetail-page .schero .inner .schero-sub-banner .product-image {
    max-height: 250px;
    padding: 0 30px;
  }
}
.productdetail-page .schero .inner .tags-wrapper {
  justify-content: center;
}

.productdetail-page .schero .inner .tags-list {
  margin-bottom: 50px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  z-index: 9;
}

.productdetail-page .schero .inner .tags-title {
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .productdetail-page .schero .inner {
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .productdetail-page .schero .inner {
    flex-direction: column;
    margin-top: -226px;
  }
  .productdetail-page .schero .inner .schero-sub-banner {
    bottom: 30px;
    left: auto;
    order: 1;
    position: relative;
    transform: none;
  }
  .productdetail-page .schero .inner .tags-list.--left {
    margin-bottom: 30px;
    order: 2;
  }
  .productdetail-page .schero .inner .tags-list.--right {
    order: 3;
  }
}
@media (max-width: 480px) {
  .productdetail-page .schero .inner {
    margin-top: -100px;
  }
}
.productdetail-page .sccontent {
  padding: 60px 0;
}

.productdetail-page .sccontent .textbox {
  margin: 0 auto;
  max-width: 75%;
}

@media screen and (max-width: 991px) {
  .productdetail-page .sccontent .textbox {
    max-width: 100%;
  }
}
.productdetail-page .sccontent .textbox__heading {
  margin-bottom: 10px;
}

.productdetail-page .sccontent .textbox__heading b {
  display: block;
}

.productdetail-page .sccontent .content {
  display: flex;
  margin: 10rem auto 5rem;
}

.productdetail-page .sccontent .content .cardtext {
  margin: initial;
  max-width: 27.5%;
  min-width: 27.5%;
  padding: 0;
}

.productdetail-page .sccontent .content .cardtext-item {
  height: 50%;
  margin-bottom: 5rem;
  margin-right: 0;
  padding: 0 20px;
}

.productdetail-page .sccontent .content .cardtext-item .heading {
  margin-bottom: 2rem;
  min-height: 56px;
  text-align: center;
  text-transform: uppercase;
}

.productdetail-page .sccontent .content .cardtext-item .imgicon {
  margin: 0 auto 1.5rem;
  max-width: 64px;
  min-width: 64px;
}

.productdetail-page .sccontent .content .img {
  align-items: center;
  display: flex;
  max-width: 45%;
}

@media (max-width: 1300px) {
  .productdetail-page .sccontent .content .img {
    max-width: 40%;
  }
}
.productdetail-page .sccontent .content .img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.productdetail-page .sccontent .content.total-items-3 {
  flex-wrap: wrap;
  justify-content: center;
}

.productdetail-page .sccontent .content.total-items-2 .cardtext,
.productdetail-page .sccontent .content.total-items-3 .cardtext:last-child {
  margin: auto;
}

.productdetail-page .sccontent__btn {
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  .productdetail-page .sccontent .content {
    flex-wrap: wrap;
  }
  .productdetail-page .sccontent .content .cardtext {
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 100%;
    order: 2;
  }
  .productdetail-page .sccontent .content .cardtext-item {
    flex: initial;
    height: auto;
    width: 100%;
  }
  .productdetail-page .sccontent .content .cardtext-item .description,
  .productdetail-page .sccontent .content .cardtext-item .heading {
    min-height: auto;
  }
  .productdetail-page .sccontent .content .img {
    margin: 0 auto 5rem;
    max-width: 70%;
    order: 1;
  }
  .productdetail-page .sccontent .content.total-items-2 .img {
    max-width: 70%;
  }
  .productdetail-page .sccontent .content.total-items-2 .img picture {
    max-width: 100%;
  }
}
.productdetail-page .scnutrition {
  padding: 100px 0;
}

.productdetail-page .scnutrition .heading {
  color: var(--color, #086d46);
  margin-bottom: 40px;
}

.productdetail-page .scnutrition .tab-images {
  margin-bottom: 100px;
}

.productdetail-page .scnutrition .tab-images__list {
  margin: 0 auto;
  max-width: 500px;
}

.productdetail-page .scnutrition .tab-images__list .wrapper {
  height: 0;
  margin-bottom: 30px;
  padding-bottom: 100%;
  width: 100%;
}

.productdetail-page .scnutrition .tab-images__list .wrapper .img {
  height: 100%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.productdetail-page .scnutrition .tab-images__item {
  cursor: pointer;
  font-family: nsb;
  font-size: var(--fs24);
  line-height: var(--lh32);
  position: relative;
}

.productdetail-page .scnutrition .tab-images__item:not(:last-child) {
  margin-right: 100px;
}

.productdetail-page .scnutrition .tab-images__item span:last-child {
  color: #000;
  font-size: var(--fs20);
  line-height: var(--lh28);
}

.productdetail-page .scnutrition .tab-images__item:after {
  background-color: currentColor;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}

.productdetail-page .scnutrition .tab-images__item.active:after {
  opacity: 1;
  transition: all 0.3s;
}

.productdetail-page .scnutrition .tab-images__nav {
  display: flex;
  justify-content: center;
  text-align: center;
}

.productdetail-page .scnutrition .tab-nav {
  display: flex;
  justify-content: center;
}

.productdetail-page .scnutrition .tab-nav li:not(:first-child) {
  margin-left: 10px;
}

.productdetail-page .scnutrition .tab-button {
  color: #000;
  overflow: hidden;
  position: relative;
}

.productdetail-page .scnutrition .tab-button:before {
  background-color: var(--active-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s;
  z-index: 0;
}

.productdetail-page .scnutrition .tab-button:after {
  background-color: #fff;
  border-radius: inherit;
  bottom: 1px;
  content: "";
  left: 1px;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: 1px;
  top: 1px;
  transition: all 0.3s;
  z-index: 0;
}

.productdetail-page .scnutrition .tab-button span {
  position: relative;
  z-index: 1;
}

.productdetail-page .scnutrition .tab-button:not(.active):hover {
  color: #000;
}

.productdetail-page .scnutrition .tab-button:not(.active):hover:before {
  opacity: 1;
}

.productdetail-page .scnutrition .tab-button.active {
  background-color: var(--active-bg, #086d46);
  color: var(--active-cl, #fff);
}

.productdetail-page .scnutrition .tab-button.active.active:after,
.productdetail-page .scnutrition .tab-button.active.active:before {
  opacity: 0;
}

.productdetail-page .scnutrition .tab-img {
  align-items: center;
  display: flex;
  grid-column: 1/span 5;
  justify-content: center;
}

.productdetail-page .scnutrition .tab-content {
  margin-top: 30px;
}

.productdetail-page .scnutrition .tab-content p.note {
  margin-bottom: 30px;
  text-align: center;
}

.productdetail-page .scnutrition .tab-main {
  display: flex;
  margin: 0 auto;
  max-width: 960px;
}

.productdetail-page .scnutrition .tab .nuti-table {
  --border-setting: 3px solid var(--border-cl);
  --border-radius: 20px;
  border-bottom: var(--border-setting);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  overflow: hidden;
}

.productdetail-page .scnutrition .tab .nuti-table.active {
  display: block;
}

.productdetail-page .scnutrition .tab .nuti-table .table-row {
  align-items: center;
  display: flex;
  padding: 10px 25px;
}

.productdetail-page .scnutrition .tab .nuti-table .heading-row {
  background-color: var(--heading-bg, #fff);
  color: var(--heading-cl, #000);
  font-family: nb;
}

.productdetail-page .scnutrition .tab .nuti-table .table-col {
  flex: 1;
  font-size: 1.6rem;
  text-align: center;
}

.productdetail-page .scnutrition .tab .nuti-table .table-col:first-child {
  flex: 1.5;
  text-align: left;
}

.productdetail-page .scnutrition .tab .nuti-table .thead {
  border-radius: var(--border-radius) 0 0 0;
  font-family: nb;
}

.productdetail-page .scnutrition .tab .nuti-table .thead .table-row {
  padding: 20px 40px;
}

.productdetail-page .scnutrition .tab .nuti-table .tbody {
  border-left: var(--border-setting);
  border-right: var(--border-setting);
  max-height: 500px;
  overflow: auto;
}

.productdetail-page .scnutrition .tab .nuti-table .tbody::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

.productdetail-page .scnutrition .tab .nuti-table .tbody::-webkit-scrollbar-track {
  background: transparent;
}

.productdetail-page .scnutrition .tab .nuti-table .tbody::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.productdetail-page .scnutrition .table-wrapper {
  flex: 1;
  position: relative;
}

.productdetail-page .scnutrition .table-wrapper .nuti-table {
  display: none;
}

.productdetail-page .scnutrition .table-wrapper .nuti-table .tbody {
  border-radius: 0 0 18px 17px;
}

.productdetail-page .scnutrition .table-navigate {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25%;
}

.productdetail-page .scnutrition .table-navigate__img {
  display: block;
  margin-top: auto;
  max-width: 100%;
}

.productdetail-page .scnutrition .table-navigate .nuti-table {
  border: 0;
  border-radius: 0;
}

.productdetail-page .scnutrition .table-navigate .nuti-table .tbody {
  border: none;
}

.productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row {
  border-right: var(--border-setting);
}

.productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row .table-col {
  text-align: center;
}

.productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row:first-child {
  border-radius: 0 var(--border-radius) 0 0;
  border-top: var(--border-setting);
}

.productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row:last-child {
  border-bottom: var(--border-setting);
  border-radius: 0 0 var(--border-radius) 0;
}

.productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row:first-child:last-child {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row:not(:last-child) {
  border-bottom: var(--border-setting);
}

.productdetail-page .scnutrition .table-navigate__btn {
  cursor: pointer;
}

.productdetail-page .scnutrition .table-navigate__btn.active {
  background-color: var(--heading-bg);
}

.productdetail-page .scnutrition .guideline-wrapper {
  margin: 80px auto 0;
  max-width: 960px;
  position: relative;
}

.productdetail-page .scnutrition .guideline-heading {
  align-items: center;
  color: var(--color);
  display: flex;
  font-family: nsb;
  font-size: var(--fs24);
  justify-content: space-between;
  line-height: var(--lh36);
  max-width: 75%;
}

.productdetail-page .scnutrition .guideline-list {
  display: none;
  margin-top: 25px;
  max-width: 75%;
}

.productdetail-page .scnutrition .guideline-list h3 {
  margin-bottom: 7px;
  margin-top: 10px;
}

.productdetail-page .scnutrition .guideline-btn {
  align-items: center;
  display: flex;
  flex: 1;
}

.productdetail-page .scnutrition .guideline-btn span, .productdetail-page .scnutrition .guideline-btn h2 {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex: 1;
  justify-content: space-between;
  margin-right: 20px;
}

.productdetail-page .scnutrition .guideline-btn span:after, .productdetail-page .scnutrition .guideline-btn h2:after {
  background-color: currentColor;
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  margin-left: 20px;
  max-width: 550px;
}

.productdetail-page .scnutrition .guideline-btn.active svg {
  transform: rotate(180deg);
}

@media screen and (max-width: 1199px) {
  .productdetail-page .scnutrition .guideline-wrapper {
    max-width: 100%;
  }
  .productdetail-page .scnutrition .guideline-heading {
    max-width: 65%;
  }
}
@media screen and (max-width: 991px) {
  .productdetail-page .scnutrition .guideline-heading {
    flex-direction: column;
    max-width: 100%;
  }
  .productdetail-page .scnutrition .guideline-btn {
    order: 2;
    width: 100%;
  }
  .productdetail-page .scnutrition .guideline-list {
    max-width: 100%;
  }
}
.productdetail-page .scnutrition .nuti-table-image-list img {
  display: none;
  max-width: 254px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: -40px;
  top: -183px;
}

@media screen and (max-width: 991px) {
  .productdetail-page .scnutrition .nuti-table-image-list img {
    margin: 0 auto 40px;
    max-width: 200px;
    position: relative;
    right: 0;
    top: auto;
  }
}
.productdetail-page .scnutrition .pack .tab-images__nav {
  flex-wrap: wrap;
  margin: 0 -15px;
}

.productdetail-page .scnutrition .pack .tab-images__nav span {
  font-size: 1.7rem;
}

.productdetail-page .scnutrition .pack .tab-images__item {
  margin: 0 30px 20px;
}

@media screen and (max-width: 991px) {
  .productdetail-page .scnutrition {
    padding: 50px 0;
  }
  .productdetail-page .scnutrition .heading {
    margin-bottom: 20px;
  }
  .productdetail-page .scnutrition .tab-img {
    grid-column: initial;
  }
  .productdetail-page .scnutrition .tab-images__item:not(:last-child) {
    margin-right: 50px;
  }
  .productdetail-page .scnutrition .tab-content {
    margin-top: 30px;
  }
  .productdetail-page .scnutrition .tab-main {
    flex-direction: column-reverse;
  }
  .productdetail-page .scnutrition .tab-main .nuti-table .thead {
    border-radius: 0;
  }
  .productdetail-page .scnutrition .tab-main .nuti-table .table-row {
    padding: 10px;
  }
  .productdetail-page .scnutrition .table-navigate {
    display: flex;
    margin: auto;
    width: 100%;
  }
  .productdetail-page .scnutrition .table-navigate .nuti-table {
    border: 0;
    border-radius: 0;
    display: flex;
  }
  .productdetail-page .scnutrition .table-navigate .nuti-table .tbody {
    border: none;
    display: flex;
  }
  .productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row {
    border-radius: 0 0 0 0;
    border-right: var(--border-setting);
    border-top: var(--border-setting);
  }
  .productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row .table-col {
    text-align: center;
  }
  .productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row:first-child {
    border-left: var(--border-setting);
    border-radius: 0;
  }
  .productdetail-page .scnutrition .table-navigate .nuti-table .tbody .table-row:last-child {
    border-bottom: var(--border-setting);
    border-radius: 0 var(--border-radius) 0 0;
  }
  .productdetail-page .scnutrition .guideline-wrapper {
    max-width: 100%;
    width: 100%;
  }
  .productdetail-page .scnutrition .pack .tab-images__item {
    margin: 0 30px 20px;
  }
}
.productdetail-page .contentdetail h1,
.productdetail-page .contentdetail h2,
.productdetail-page .contentdetail h3,
.productdetail-page .contentdetail h4,
.productdetail-page .contentdetail h5,
.productdetail-page .contentdetail h6 {
  line-height: normal;
  word-break: break-word;
}

@media screen and (max-width: 991px) {
  .productdetail-page,
  .productdetail-page .header {
    padding-right: 0;
  }
}
.goodnesspage .main {
  z-index: 30;
}

.scherogood {
  position: relative;
}

.scherogood .container {
  height: calc(100vh - var(--height-header));
  min-height: 540px;
}

.scherogood .textbox {
  left: 50%;
  margin: auto;
  max-width: 640px;
  padding: 0 var(--gap);
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 10;
}
@keyframes bounde {
  0% {
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    -o-transform: scale(0.75);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  to {
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    -o-transform: scale(0.75);
  }
}
.scherogood .textbox__logo {
  height: 280px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 600px;
}

.scherogood .textbox__logo .heart {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.scherogood .textbox__logo .item {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: absolute;
  text-align: right;
}

.scherogood .textbox__logo .item span {
  font-family: bb;
  margin-right: 18px;
}

.scherogood .textbox__logo .item.--nguyenlieu {
  top: 20px;
}

.scherogood .textbox__logo .item.--nguyenlieu img {
  animation: bounde 2.5s 0.1s infinite;
  -webkit-animation: bounde 2.5s 0.1s infinite;
  -moz-animation: bounde 2.5s 0.1s infinite;
  -ms-animation: bounde 2.5s 0.1s infinite;
  -o-animation: bounde 2.5s 0.1s infinite;
}

.scherogood .textbox__logo .item.--khoahoc {
  bottom: 0;
  left: 100px;
}

.scherogood .textbox__logo .item.--khoahoc img {
  animation: bounde 2.5s 0.3s infinite;
  -webkit-animation: bounde 2.5s 0.3s infinite;
  -moz-animation: bounde 2.5s 0.3s infinite;
  -ms-animation: bounde 2.5s 0.3s infinite;
  -o-animation: bounde 2.5s 0.3s infinite;
}

.scherogood .textbox__logo .item.--congnghe {
  flex-direction: row-reverse;
  right: 0;
  text-align: left;
  top: 130px;
}

.scherogood .textbox__logo .item.--congnghe img {
  animation: bounde 2.5s 0.6s infinite;
  -webkit-animation: bounde 2.5s 0.6s infinite;
  -moz-animation: bounde 2.5s 0.6s infinite;
  -ms-animation: bounde 2.5s 0.6s infinite;
  -o-animation: bounde 2.5s 0.6s infinite;
}

.scherogood .textbox__logo .item.--congnghe span {
  margin-left: 17px;
  margin-right: 0;
}

.scherogood video {
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .scherogood .textbox {
    max-width: 100%;
    width: 100%;
  }
  .scherogood .textbox__logo {
    height: 260px;
    margin-bottom: 10px;
    width: 320px;
  }
  .scherogood .textbox__logo .heart {
    width: 120px;
  }
  .scherogood .textbox__logo .item span {
    font-family: bb;
    margin-right: 10px;
  }
  .scherogood .textbox__logo .item span.bodytext.--t16 {
    font-size: var(--fs12);
    line-height: var(--lh20);
  }
  .scherogood .textbox__logo .item img {
    width: 46px;
  }
  .scherogood .textbox__logo .item.--khoahoc {
    bottom: 20px;
  }
  .scherogood .textbox__logo .item.--congnghe {
    top: 45px;
  }
  .scherogood .textbox__logo .item.--congnghe span {
    margin-left: 10px;
  }
}
@media (max-width: 360px) {
  .scherogood .container {
    min-height: 600px;
  }
  .scherogood .textbox__logo {
    height: 290px;
    width: 280px;
  }
}
.scnguyenlieugood {
  background: radial-gradient(121.53% 72.81% at -1.32% -0.5%, rgba(128, 203, 220, 0.2) 27.08%, hsla(0, 0%, 100%, 0) 100%), #fff;
  z-index: 50;
}

.textboxgood {
  text-align: center;
}

.textboxgood__icon {
  margin: 0 auto 90px;
}

.textboxgood .heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 870px;
}

.textboxgood .desc {
  font-size: var(--fs18);
  line-height: var(--lh26);
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.textboxgood .desc.--mb {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .textboxgood__icon {
    margin: 0 auto 40px;
    max-height: 50px;
  }
  .textboxgood .desc {
    font-size: var(--fs14);
    line-height: var(--lh22);
  }
}
.tabgood {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(var(--col), 200px);
  margin: 80px auto 50px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.tabgood:after {
  background: #c4c4c4;
  bottom: -14px;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100%;
}

.tabgood__line {
  background: #086d46;
  bottom: -14px;
  height: 1px;
  left: calc(100% / var(--col) * (var(--active) - 1));
  position: absolute;
  width: calc(100% / var(--col));
  z-index: 10;
}

.tabgood__item,
.tabgood__line {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.tabgood__item {
  cursor: pointer;
  font-size: var(--fs18);
  line-height: var(--lh26);
  position: relative;
  text-align: center;
}

.tabgood__item.active,
.tabgood__item:hover {
  color: #086d46;
}

.tabgood__item.active:after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform-origin: left;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
}

@media screen and (max-width: 767px) {
  .tabgood {
    grid-template-columns: repeat(var(--col), 1fr);
    margin: 30px auto 40px;
  }
  .tabgood:after,
  .tabgood__line {
    bottom: -10px;
  }
  .tabgood__item {
    font-size: var(--fs14);
    line-height: var(--lh22);
  }
}
.tabgoodcontent .content {
  display: none;
  text-align: center;
}

.tabgoodcontent .content.active {
  display: block;
}

.tabgoodcontent .content__logo {
  margin: 0 auto 25px;
}

.tabgoodcontent .content .heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 460px;
}

.tabgoodcontent .content__imgvideo {
  margin-top: 30px;
  padding-bottom: 56.25%;
  position: relative;
}

.tabgoodcontent .content__imgvideo video,
.tabgoodcontent .content__imgvideo > img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
}

.tabgoodcontent .content__imgvideo .imgvideo img {
  z-index: 10;
}

.tabgoodcontent .content__imgvideo .imgvideo img,
.tabgoodcontent .content__imgvideo .imgvideo video {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
}

.tabgoodcontent .content__imgvideo .modalgood {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background: hsla(0, 0%, 100%, 0.7);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
  z-index: 50;
}

.tabgoodcontent .content__imgvideo .modalgood.active {
  opacity: 1;
  pointer-events: auto;
}

.tabgoodcontent .content__imgvideo .modalgood .heading {
  margin: 20px 0;
  max-width: none;
}

.tabgoodcontent .content__imgvideo .modalgood__content {
  display: flex;
  flex-direction: column;
  font-size: var(--fs18);
  justify-content: center;
  line-height: var(--lh26);
  padding: 100px 100px 100px var(--halfPadding);
  text-align: left;
}

.tabgoodcontent .content__imgvideo .modalgood__img {
  overflow: hidden;
  position: relative;
}

.tabgoodcontent .content__imgvideo .modalgood__img img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
}

.tabgoodcontent .content__imgvideo .modalgood__close {
  align-items: center;
  background: #fff;
  border-radius: 40px;
  bottom: -27px;
  cursor: pointer;
  display: flex;
  height: 54px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 67px;
}

@media screen and (max-width: 1599px) {
  .tabgoodcontent .content__imgvideo .modalgood__content {
    padding: 60px 100px 60px var(--halfPadding);
  }
}
@media screen and (max-width: 1199px) {
  .tabgoodcontent .content__imgvideo .modalgood__content {
    padding: 60px 30px 60px var(--halfPadding);
  }
}
@media screen and (max-width: 767px) {
  .tabgoodcontent .content__imgvideo .modalgood {
    grid-template-columns: 1fr;
  }
  .tabgoodcontent .content__imgvideo .modalgood .heading {
    margin: 10px 0;
  }
  .tabgoodcontent .content__imgvideo .modalgood__content {
    font-size: var(--fs14);
    line-height: var(--lh22);
    order: 2;
    padding: 30px var(--gap) 60px var(--gap);
  }
  .tabgoodcontent .content__imgvideo .modalgood__img {
    height: 300px;
    order: 1;
  }
  .tabgoodcontent .content__imgvideo .modalgood__close {
    bottom: -22px;
    height: 44px;
    width: 54px;
  }
  .tabgoodcontent .content__logo {
    margin: 0 auto 20px;
    max-width: 120px;
  }
  .tabgoodcontent .content .heading {
    max-width: 320px;
  }
}
.bannergood img {
  width: 100%;
}

.sckhoahocgood {
  background: #e2eeff;
  z-index: 10;
}

.sccongnghegood {
  z-index: 9;
}

.sccongnghegood .textboxgood .desc {
  max-width: 810px;
}

.sccongnghegood .heading.--h4 {
  margin-top: 30px;
}

.sccongnghegood .listcongnghe {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(6, 1fr);
  margin-top: 30px;
  position: relative;
}

.sccongnghegood .listcongnghe:before {
  background: #d2f3c4;
  content: "";
  height: 1px;
  position: absolute;
  top: 10px;
  width: 100%;
}

.sccongnghegood .listcongnghe .item {
  position: relative;
}

.sccongnghegood .listcongnghe .item:before {
  background: url(../img/icon-circle.svg) no-repeat 50%;
  background-size: contain;
  content: "";
  display: block;
  height: 20px;
  margin-bottom: 20px;
  position: relative;
  width: 20px;
  z-index: 10;
}

.sccongnghegood .listcongnghe .item__title {
  color: #086d46;
  font-family: nb;
  margin-bottom: 10px;
}

.sccongnghegood .listcongnghe .item__desc,
.sccongnghegood .listcongnghe .item__title {
  font-size: var(--fs16);
  line-height: var(--lh24);
}

@media screen and (max-width: 767px) {
  .sccongnghegood .listcongnghe {
    display: grid;
    grid-template-columns: 1fr;
  }
  .sccongnghegood .listcongnghe:before {
    height: 100%;
    left: 10px;
    top: 0;
    width: 1px;
  }
  .sccongnghegood .listcongnghe .item {
    padding-left: 35px;
  }
  .sccongnghegood .listcongnghe .item:before {
    left: 0;
    position: absolute;
  }
  .sccongnghegood .listcongnghe .item__title {
    margin-bottom: 5px;
  }
}
.scthegioigood .textboxgood .desc {
  max-width: 810px;
}

.scsanphamgood:last-child {
  margin-bottom: -350px;
}

@media screen and (max-width: 1599px) {
  .scsanphamgood:last-child {
    margin-bottom: -250px;
  }
}
@media screen and (max-width: 767px) {
  .scsanphamgood:last-child {
    margin-bottom: -80px;
  }
}
.scherohouse__slider {
  height: calc(100vh - var(--height-header));
  position: relative;
  width: 100%;
}

.scherohouse__slider .slide {
  height: 100%;
  padding-bottom: 170px;
  transition: opacity 0.04s;
  -webkit-transition: opacity 0.04s;
  -moz-transition: opacity 0.04s;
  -ms-transition: opacity 0.04s;
  -o-transition: opacity 0.04s;
  width: 100%;
}

.scherohouse__slider .slide .container {
  align-items: flex-end;
  display: flex;
  height: 100%;
}

.scherohouse__slider .slide img,
.scherohouse__slider .slide picture {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
}

.scherohouse__slider .slide__content {
  position: relative;
  width: 100%;
}

.scherohouse__slider .slide__content .heading {
  --main-color: $main-cl;
  color: var(--main-color);
  margin-bottom: 0;
}

.productdetail-page .scnutrition .scherohouse__slider .slide__content .tab-button,
.scherohouse__slider .slide__content .btnmain,
.scherohouse__slider .slide__content .productdetail-page .scnutrition .tab-button {
  bottom: 0;
  position: absolute;
  right: 0;
}

.scherohouse__controls {
  bottom: 60px;
  position: absolute;
  width: 100%;
}

.scherohouse__controls .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.scherohouse__controls-scroll {
  align-items: center;
  display: flex;
}

.scherohouse__controls-scroll .mouse {
  align-items: center;
  border: 1px solid #333;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 28px;
  justify-content: center;
  margin-right: 8px;
  width: 16px;
}
@keyframes dotsfade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.scherohouse__controls-scroll .mouse span {
  animation: dotsfade 1.5s infinite;
  -webkit-animation: dotsfade 1.5s infinite;
  -moz-animation: dotsfade 1.5s infinite;
  -ms-animation: dotsfade 1.5s infinite;
  -o-animation: dotsfade 1.5s infinite;
  background: #333;
  border-radius: 50%;
  height: 2px;
  width: 2px;
}

.scherohouse__controls-scroll .mouse span:first-child {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}

.scherohouse__controls-scroll .mouse span:nth-child(2) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  margin: 3px 0;
}

.scherohouse__controls-scroll .mouse span:nth-child(3) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
}

@media (min-height: 1200px) {
  .scherohouse__slider {
    max-height: 1200px;
  }
}
@media screen and (max-width: 1599px) {
  .scherohouse__slider .slide {
    padding-bottom: 120px;
  }
  .scherohouse__controls {
    bottom: 30px;
  }
}
@media screen and (max-width: 1199px) and (min-height: 800px) {
  .scherohouse__slider {
    height: calc(100vh - var(--height-header));
  }
}
@media screen and (max-width: 991px) {
  .scherohouse__slider {
    height: auto;
    position: relative;
  }
  .scherohouse__slider .slide {
    height: auto;
    padding-bottom: 0;
    padding-top: 0;
  }
  .scherohouse__slider .slide .container {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .scherohouse__slider .slide img,
  .scherohouse__slider .slide picture {
    height: auto;
    left: 0;
    -o-object-fit: initial;
    object-fit: fill;
    position: relative;
    top: 0;
    transform: none;
    -webkit-transform: initial;
    -moz-transform: initial;
    -ms-transform: initial;
    -o-transform: initial;
    width: 100%;
  }
  .scherohouse__slider .slide__content {
    padding-bottom: 100px;
    padding-top: 40px;
  }
  .scherohouse__slider .slide__content .heading {
    margin-bottom: 20px;
  }
  .scherohouse__slider .slide__content .heading br {
    display: none;
  }
  .productdetail-page .scnutrition .scherohouse__slider .slide__content .tab-button,
  .scherohouse__slider .slide__content .btnmain,
  .scherohouse__slider .slide__content .productdetail-page .scnutrition .tab-button {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .scherohouse__slider .slide .container {
    align-items: flex-start;
  }
}
.scbrandnuti .heading {
  text-align: center;
}

.scbrandnuti .description {
  margin: 0 auto 20px;
  max-width: 800px;
  text-align: center;
}

.scbrandnuti .listbrands {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(4, 1fr);
}

.scbrandnuti .listbrands .item {
  border-radius: 30px;
  padding: 40px 60px;
  text-align: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.scbrandnuti .listbrands .item__logo {
  align-items: center;
  display: flex;
  height: 110px;
  justify-content: center;
  margin: auto auto 20px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.scbrandnuti .listbrands .item__logo img {
  max-height: 100%;
}

.scbrandnuti .listbrands .item__title {
  color: #000;
  font-family: nb;
  font-size: var(--fs20);
  line-height: var(--lh28);
}

.scbrandnuti .listbrands .item__desc {
  color: #000;
  font-size: var(--fs16);
  line-height: var(--lh24);
  margin: 12px 0;
}

.scbrandnuti .listbrands .item__cat,
.scbrandnuti .listbrands .item__desc {
  opacity: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.scbrandnuti .listbrands .item:hover {
  background: #f9f9f9;
}

.scbrandnuti .listbrands .item:hover .item__cat,
.scbrandnuti .listbrands .item:hover .item__desc {
  opacity: 1;
}

@media screen and (max-width: 1199px) {
  .scbrandnuti .listbrands .item {
    padding: 20px;
  }
}
@media screen and (max-width: 991px) {
  .scbrandnuti .listbrands {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .scbrandnuti .listbrands {
    grid-template-columns: repeat(2, 1fr);
  }
  .scbrandnuti .listbrands .item {
    background: #f9f9f9;
    border-radius: 20px;
    padding: var(--gap);
  }
  .scbrandnuti .listbrands .item__logo {
    height: 70px;
  }
  .scbrandnuti .listbrands .item__cat,
  .scbrandnuti .listbrands .item__desc {
    opacity: 1;
  }
}
.sccategory {
  padding-top: 120px;
  text-align: center;
}

.sccategory .container .heading.--h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.sccategory__slider {
  margin-top: -124px;
  position: relative;
  width: 100%;
}

.sccategory__slider .sliders {
  width: 100%;
}

.sccategory__slider .sliders .slide {
  transition: opacity 0.04s;
  -webkit-transition: opacity 0.04s;
  -moz-transition: opacity 0.04s;
  -ms-transition: opacity 0.04s;
  -o-transition: opacity 0.04s;
  width: 100%;
}

.sccategory__slider .sliders .slide__content {
  height: var(--hSlider);
  left: 50%;
  padding-top: 140px;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.sccategory__slider .sliders .slide img,
.sccategory__slider .sliders .slide picture {
  width: 100%;
}

.sccategory__slider .btnlink {
  margin-top: -27px;
  position: relative;
}

.sccategory__slider .slcontrols {
  bottom: -60px;
  justify-content: center;
  left: 50%;
  max-width: 100%;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media screen and (max-width: 1199px) {
  .sccategory__content {
    max-width: 824px;
  }
}
@media screen and (max-width: 767px) {
  .sccategory {
    padding-top: 30px;
  }
  .sccategory.--pb {
    padding-bottom: 80px;
  }
  .sccategory__slider {
    margin-top: 0;
  }
  .sccategory__slider .sliders .slide__content {
    padding-top: 5px;
  }
  .sccategory__slider .btnlink {
    margin-top: -20px;
  }
  .sccategory__slider .slcontrols {
    bottom: -50px;
  }
}
.scexplorenutri {
  height: calc(100vh - var(--height-header));
}

.scexplorenutri .btnmore {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  display: block;
  font-size: var(--fs16);
  font-weight: 700;
  height: 44px;
  line-height: var(--lh24);
  margin: 14px auto;
  padding: 9px 25px;
  width: -moz-max-content;
  width: max-content;
}

.scexplorenutri .btnmore,
.scexplorenutri .btnmore:hover {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.scexplorenutri .btnmore:hover {
  background: #086d46;
}

.scexplorenutri__textbox {
  bottom: 40px;
  color: #fff;
  left: 50%;
  max-width: 800px;
  padding: 0 var(--gap);
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 10;
}

.productdetail-page .scnutrition .scexplorenutri__textbox .tab-button,
.scexplorenutri__textbox .btnmain,
.scexplorenutri__textbox .productdetail-page .scnutrition .tab-button {
  margin-bottom: 30px;
  margin-top: 20px;
}

.scexplorenutri__textbox .note {
  margin-top: 10px;
}

.scexplorenutri__panorama {
  cursor: grab;
  cursor: -webkit-grab;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.scexplorenutri__panorama canvas {
  height: 100%;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .scexplorenutri__textbox {
    max-width: 520px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .productdetail-page .scnutrition .scexplorenutri__textbox .tab-button,
  .scexplorenutri__textbox .btnmain,
  .scexplorenutri__textbox .productdetail-page .scnutrition .tab-button {
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .scexplorenutri__textbox .icon {
    width: 42px;
  }
  .scexplorenutri__textbox .note {
    font-size: var(--fs16);
    line-height: var(--lh24);
  }
}
.scproducthouse {
  --hSlider: 1200px;
  overflow: hidden;
}

.scproducthouse__content {
  position: absolute;
}

.scproducthouse__slider {
  height: var(--hSlider);
  position: relative;
  width: 100%;
}

.scproducthouse__slider .sliders {
  height: 100%;
  width: 100%;
}

.scproducthouse__slider .sliders .flickity-viewport {
  height: 100% !important;
}

.scproducthouse__slider .sliders .slide {
  height: 100%;
  transition: opacity 0.04s;
  -webkit-transition: opacity 0.04s;
  -moz-transition: opacity 0.04s;
  -ms-transition: opacity 0.04s;
  -o-transition: opacity 0.04s;
  width: 100%;
}

.scproducthouse__slider .sliders .slide img,
.scproducthouse__slider .sliders .slide picture {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  width: 100%;
}

.scproducthouse__slider .shape {
  bottom: -2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.scproducthouse__slider .shape img {
  width: 100%;
}

.scproducthouse .slcontrols {
  bottom: 10px;
  position: absolute;
  right: var(--gap);
}

@media (max-width: 1920px) {
  .scproducthouse {
    --hSlider: 900px;
  }
}
@media (max-width: 1440px) {
  .scproducthouse {
    --hSlider: 700px;
  }
}
@media screen and (max-width: 1199px) {
  .scproducthouse {
    --hSlider: 700px;
  }
  .scproducthouse__content {
    max-width: 824px;
  }
  .scproducthouse__slider .shape {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 1400px;
  }
}
@media screen and (max-width: 767px) {
  .scproducthouse {
    --hSlider: 500px;
  }
  .scproducthouse__content {
    position: relative;
  }
  .scproducthouse__slider .shape {
    min-width: 700px;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .scproducthouse {
    --hSlider: 380px;
  }
  .scproducthouse__slider {
    margin-top: -40px;
  }
  .scproducthouse .slcontrols {
    justify-content: center;
    left: 50%;
    padding: 0 var(--gap);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 100%;
  }
  .scproducthouse .slcontrols__progress {
    display: block;
    margin: 0 5px;
    width: 100%;
  }
}
.scsanphamnhom {
  text-align: center;
}

.scsanphamnhom__textbox {
  height: 68px;
  position: relative;
}

.scsanphamnhom__textbox .item {
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  visibility: hidden;
}

.scsanphamnhom__textbox .item.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.scsanphamnhom__textbox .item .labletitle {
  margin-bottom: 1rem;
}

.scsanphamnhom__slider {
  margin-top: 50px;
  position: relative;
}

.scsanphamnhom__slider .sliders .slide {
  overflow: hidden;
  width: 33.3333333333%;
}

.scsanphamnhom__slider .sliders .slide img {
  filter: blur(12px);
  -webkit-filter: blur(12px);
  opacity: 0.5;
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform-origin: bottom;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  will-change: transform;
}

.scsanphamnhom__slider .sliders .slide.is-selected img {
  filter: blur(0);
  -webkit-filter: blur(0);
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.scsanphamnhom__slider .controls {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 50%;
  z-index: 10;
}

.scsanphamnhom__slider .controls .btncontrol {
  align-items: center;
  border: 1px solid #086d46;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  height: 54px;
  justify-content: center;
  position: absolute;
  width: 70px;
}

.scsanphamnhom__slider .controls .btncontrol,
.scsanphamnhom__slider .controls .btncontrol svg * {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.scsanphamnhom__slider .controls .btncontrol.btnprev svg {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.scsanphamnhom__slider .controls .btncontrol.btnnext {
  right: var(--gap);
}

.scsanphamnhom__slider .controls .btncontrol:hover {
  background: #086d46;
}

.scsanphamnhom__slider .controls .btncontrol:hover svg * {
  fill: #fff;
}

.productdetail-page .scnutrition .scsanphamnhom__slider .tab-button,
.scsanphamnhom__slider .btnmain,
.scsanphamnhom__slider .productdetail-page .scnutrition .tab-button {
  margin-top: -27px;
}

@media screen and (max-width: 1599px) {
  .scsanphamnhom__slider .sliders .slide {
    width: 45%;
  }
  .scsanphamnhom__slider .controls {
    width: 60%;
  }
}
@media screen and (max-width: 1199px) {
  .scsanphamnhom__slider .sliders .slide {
    width: 60%;
  }
  .scsanphamnhom .controls {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .scsanphamnhom__slider {
    margin-top: 30px;
  }
  .scsanphamnhom__slider .sliders .slide {
    width: 90%;
  }
  .scsanphamnhom__slider .controls {
    width: 100%;
  }
  .scsanphamnhom__slider .controls .btncontrol {
    height: 36px;
    width: 46px;
  }
  .scsanphamnhom__slider .controls .btncontrol svg {
    width: 15px;
  }
  .productdetail-page .scnutrition .scsanphamnhom__slider .tab-button,
  .scsanphamnhom__slider .btnmain,
  .scsanphamnhom__slider .productdetail-page .scnutrition .tab-button {
    margin-top: -23px;
  }
}
.sctimsanpham {
  overflow: hidden;
  position: relative;
  text-align: center;
  z-index: 3;
}

.sctimsanpham .aos-init {
  z-index: 1;
}

.sctimsanpham .headingfilter {
  font-size: 3.5rem;
  line-height: 6rem;
  margin: 30px 0 60px;
  position: relative;
}

.sctimsanpham .headingfilter .selector {
  display: inline;
  position: relative;
}

.sctimsanpham .headingfilter .selector div.current {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  position: relative;
}

.sctimsanpham .headingfilter .selector div.current:before {
  border-bottom: 3px dotted #ffce02;
  bottom: 2px;
  content: "";
  height: 3px;
  position: absolute;
  width: 100%;
}

.sctimsanpham .headingfilter .selector .arrow-down {
  background: url(../img/icon-down-bold.svg) no-repeat 50%;
  background-size: contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 30px;
  margin-left: 6px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 30px;
}

@media (max-width: 400px) {
  .sctimsanpham .headingfilter .selector .arrow-down {
    height: 22px;
    width: 22px;
  }
}
.sctimsanpham .headingfilter .selector .dropdown {
  background: #fff;
  border-radius: 20px;
  box-shadow: 1px 4px 16px rgba(0, 0, 0, 0.08);
  left: 50%;
  min-width: 295px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 72px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  visibility: hidden;
  z-index: 200;
}

.sctimsanpham .headingfilter .selector .dropdown .option {
  align-items: center;
  color: #086d46;
  cursor: pointer;
  display: flex;
  font-family: nr;
  font-size: var(--fs20);
  justify-content: center;
  line-height: var(--lh28);
  padding: 10px 15px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.sctimsanpham .headingfilter .selector .dropdown .option:not(:last-child) {
  border-bottom: 1px solid #f3f3f3;
}

.sctimsanpham .headingfilter .selector .dropdown .option:hover {
  background: #f3f3f3;
}

.sctimsanpham .headingfilter .selector.active .arrow-down {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}

.sctimsanpham .headingfilter .selector.active .dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .sctimsanpham .headingfilter {
    font-size: 2.2rem;
    line-height: 4rem;
    margin: 15px 0 40px;
  }
  .sctimsanpham .headingfilter .selector .dropdown {
    top: 44px;
  }
}
@media (max-width: 400px) {
  .sctimsanpham .headingfilter {
    font-size: 2.1rem;
    line-height: 4.5rem;
  }
  .sctimsanpham .headingfilter .selector div.current {
    font-size: 0.75em;
  }
  .sctimsanpham .headingfilter .selector div.current .text {
    line-height: 25px;
  }
}
.circle-list {
  --size: 190px;
  flex-wrap: wrap;
  margin-left: calc(var(--gap) * -1);
}

.circle-item,
.circle-list {
  align-items: center;
  display: flex;
  justify-content: center;
}

.circle-item {
  background: var(--bg);
  border-radius: 50%;
  flex-direction: column;
  height: var(--size);
  margin-bottom: var(--gap);
  margin-left: var(--gap);
  text-align: center;
  width: var(--size);
}

.circle-item svg {
  max-width: 30px;
}

.circle-item span {
  margin-top: 20px;
  max-width: 120px;
}

@media screen and (max-width: 767px) {
  .circle-list {
    --size: 160px;
  }
  .circle-item span {
    margin-top: 10px;
  }
}
.bannertext {
  --bannerHeight: 500px;
  align-items: center;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: var(--bannerHeight);
  justify-content: center;
  position: relative;
  text-align: center;
}

.bannertext .text-wrap {
  position: relative;
  z-index: 2;
}

.bannertext svg {
  max-width: 64px;
}

.bannertext:after {
  background-color: rgba(0, 0, 0, 0.2);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .bannertext {
    --bannerHeight: 300px;
  }
  .bannertext svg {
    max-width: 40px;
  }
}
.product-group {
  background: var(--bg, #fff);
}

.product-list {
  --colum: 3;
  --prd-gap: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
}

.product-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 40px;
  text-align: center;
  width: calc(100% / var(--colum));
}

.product-title {
  flex: 1;
  max-width: 315px;
}

.product-title span {
  display: block;
}

.product-img {
  margin: 40px 0;
  max-width: 250px;
  overflow: hidden;
  width: 100%;
}

.product-img .inner {
  padding-top: 100%;
  position: relative;
}

.product-img .inner img {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .product-card {
    padding: 20px;
  }
}
@media screen and (max-width: 991px) {
  .product-list {
    --colum: 2;
  }
  .product-card {
    margin-bottom: 30px;
  }
  .product-img {
    margin: 20px 0;
  }
}
.nutritionhouse-page .schero {
  padding: 90px 0 100px;
}

.nutritionhouse-page .schero .textbox__heading {
  margin-bottom: 30px;
}

.nutritionhouse-page .schero .circle-list {
  grid-column: 2/span 10;
  margin-top: 40px;
}

@media screen and (max-width: 1199px) {
  .nutritionhouse-page .schero {
    padding: 120px 0;
  }
}
@media screen and (max-width: 991px) {
  .nutritionhouse-page .schero {
    padding: 70px 0;
  }
  .nutritionhouse-page .schero .circle-list {
    grid-column: initial;
  }
}
.nutritionhouse-page .scproduct .bannertext svg {
  fill: #fff;
  height: 64px;
  width: 64px;
}

.searchpage {
  padding-top: var(--height-header);
}

.nutrition-note {
  margin-top: 2rem;
  position: absolute;
  width: 100%;
}

.nutrition-note em {
  font-style: italic;
}

.our-story .ceo-msg {
  --pd-section: 90px;
}

.our-story .ceo-msg .heading {
  margin-bottom: 30px;
}

.our-story .ceo-msg .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.our-story .ceo-msg .outer {
  align-items: flex-end;
  display: flex;
  height: 100%;
}

.our-story .ceo-msg__img {
  flex: 1;
}

.our-story .ceo-msg__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-left: var(--gap);
}

.our-story .ceo-msg__content .message {
  color: #086d46;
  font-family: nsb;
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 44px;
}

.our-story .ceo-msg__content .info {
  font-family: bb;
  margin-top: 38px;
}

.our-story .ceo-msg__content .info__title {
  color: #086d46;
  font-size: 12px;
  line-height: 20px;
}

.our-story .ceo-msg__content .info__name {
  font-size: 18px;
  line-height: 20px;
}

.our-story .ceo-msg__content .btnmain,
.our-story .ceo-msg__content .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .our-story .ceo-msg__content .tab-button {
  margin-top: 27px;
}

@media screen and (max-width: 991px) {
  .our-story .ceo-msg .outer {
    align-items: center;
    flex-direction: column;
  }
}
.our-story .sc-fullscreen {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - var(--height-header));
  max-height: 976px;
  min-height: 600px;
}

.our-story .sc-title {
  text-align: center;
}

.our-story .sc-title .subtitle {
  line-height: 40px;
  margin-bottom: 15px;
}

.our-story .sc-title .title {
  font-family: nr;
  font-size: var(--fs48);
  line-height: 65px;
}

.our-story .sc-ourstory {
  text-align: center;
}

.our-story .sc-ourstory .container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}

.our-story .sc-ourstory .btnmain,
.our-story .sc-ourstory .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .our-story .sc-ourstory .tab-button {
  margin: 27px auto 0;
}

.our-story .sc-slider {
  --btn-width: 70px;
}

.our-story .sc-slider .inner {
  height: 100%;
  width: 100%;
}

.our-story .sc-slider .inner .flickity-viewport {
  height: 100% !important;
}

.our-story .sc-slider__img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.our-story .sc-slider__item {
  height: 100%;
  position: relative;
  width: 100%;
}

.our-story .sc-slider__item .sc-title {
  display: block;
  margin: 0 auto;
  max-width: 610px;
  text-align: center;
}

.our-story .sc-slider__item .sc-title .title {
  font-size: 30px;
  letter-spacing: 0.02em;
  line-height: 40px;
}

.our-story .sc-slider__item .container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}

.our-story .sc-slider__control {
  display: flex;
  justify-content: space-between;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.our-story .sc-slider__control .btnmain,
.our-story .sc-slider__control .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .our-story .sc-slider__control .tab-button {
  width: var(--btn-width);
}

.our-story .sc-slider__control .btnmain svg,
.our-story .sc-slider__control .productdetail-page .scnutrition .tab-button svg,
.productdetail-page .scnutrition .our-story .sc-slider__control .tab-button svg {
  margin: 0;
}

.our-story .sc-slider__control .btnmain:last-child,
.our-story .sc-slider__control .productdetail-page .scnutrition .tab-button:last-child,
.productdetail-page .scnutrition .our-story .sc-slider__control .tab-button:last-child {
  transform: rotate(-180deg);
}

@media screen and (max-width: 767px) {
  .our-story .sc-slider {
    background-image: var(--bg-mobile) !important;
  }
}
.our-story .sc-corevalue {
  --pdSection: 100px;
  position: relative;
}

.our-story .sc-corevalue .outer {
  grid-column: 3/11;
  position: relative;
}

.our-story .sc-corevalue .text-slider {
  margin: 0 auto;
  max-width: 400px;
  width: calc(100% - var(--btn-width) * 2);
}

.our-story .sc-corevalue .text-slider__item {
  text-align: center;
  width: 100%;
}

.our-story .sc-corevalue .text-slider__item .title-group img,
.our-story .sc-corevalue .text-slider__item .title-group svg {
  display: inline-block;
  height: auto;
  max-width: 75px;
}

.our-story .sc-corevalue .text-slider__item .title-group .title-text {
  color: var(--color, #086d46);
  font-family: nb;
  font-size: 48px;
  line-height: 65px;
  margin: 20px 0 10px;
}

@media screen and (max-width: 767px) {
  .our-story .sc-corevalue .text-slider__item .title-group .title-text {
    font-size: var(--fs40);
    line-height: normal;
  }
}
.our-story .sc-corevalue .sc-title {
  margin-bottom: 35px;
}

.our-story .sc-corevalue .sc-slider__control {
  width: 100%;
}

.our-story .sc-mission {
  position: relative;
}

.our-story .sc-mission__img,
.our-story .sc-mission__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.our-story .sc-mission .sc-title {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 114px;
  transform: translateX(-50%);
}

.our-story .sc-mission .sc-title .subtitle {
  margin-bottom: 11px;
}

.our-story .sc-mission .sc-title .btnmain,
.our-story .sc-mission .sc-title .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .our-story .sc-mission .sc-title .tab-button {
  margin: 31px auto 0;
}

.our-story .sc-overlay {
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.our-story .sc-overlay,
.our-story .sc-overlay img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.our-story .modalgood {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  height: calc(100vh - var(--height-header));
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
  z-index: 50;
}

.our-story .modalgood.active {
  opacity: 1;
  pointer-events: auto;
}

.our-story .modalgood .heading {
  margin: 20px 0;
  max-width: none;
}

.our-story .modalgood__content {
  display: flex;
  flex-direction: column;
  font-size: var(--fs18);
  height: calc(100vh - var(--height-header));
  justify-content: flex-start;
  line-height: var(--lh26);
  margin: auto;
  max-width: 1000px;
  overflow-y: scroll;
  padding: 100px 100px 100px var(--halfPadding);
  text-align: left;
}

.our-story .modalgood__content::-webkit-scrollbar {
  width: 5px;
}

.our-story .modalgood__content::-webkit-scrollbar-track {
  background: #ddd;
}

.our-story .modalgood__content::-webkit-scrollbar-thumb {
  background: #086d46;
}

.our-story .modalgood__img {
  overflow: hidden;
  position: relative;
}

.our-story .modalgood__img img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
}

.our-story .modalgood__close {
  align-items: center;
  background: #fff;
  border-radius: 40px;
  bottom: -27px;
  cursor: pointer;
  display: flex;
  height: 54px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 67px;
}

@media screen and (max-width: 1599px) {
  .our-story .modalgood__content {
    padding: 60px 100px 60px var(--halfPadding);
  }
}
@media screen and (max-width: 1199px) {
  .our-story .modalgood__content {
    padding: 60px 30px 60px var(--halfPadding);
  }
}
@media screen and (max-width: 767px) {
  .our-story .modalgood {
    grid-template-columns: 1fr;
  }
  .our-story .modalgood .heading {
    margin: 10px 0;
  }
  .our-story .modalgood__content {
    font-size: var(--fs14);
    line-height: var(--lh22);
    order: 2;
    padding: 30px var(--gap) 60px var(--gap);
  }
  .our-story .modalgood__img {
    height: 300px;
    order: 1;
  }
  .our-story .modalgood__close {
    bottom: -22px;
    height: 44px;
    width: 54px;
  }
}
@media screen and (max-width: 991px) {
  .our-story .sc-fullscreen {
    height: 700px;
    min-height: 667px;
  }
  .our-story .sc-title .title {
    font-family: nr;
    line-height: 33px;
  }
  .our-story .sc-slider {
    --btn-width: 60px;
    --btn-height: 46px;
  }
  .our-story .sc-slider .inner {
    height: 100%;
    width: 100%;
  }
  .our-story .sc-slider__item .sc-title .title {
    font-family: nl;
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 26px;
  }
  .our-story .sc-slider__item .container {
    align-items: flex-start;
    display: flex;
    height: 100%;
    justify-content: center;
    padding-top: 80px;
  }
}
@media screen and (max-width: 991px) and (max-width: 800px) {
  .our-story .sc-slider__item .container {
    padding-top: 240px;
  }
}
@media screen and (max-width: 991px) {
  .our-story .sc-slider__control {
    bottom: 200px;
    top: auto;
  }
  .our-story .sc-slider__control .btnmain,
  .our-story .sc-slider__control .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .our-story .sc-slider__control .tab-button {
    --btn-height: 41px;
    height: var(--btn-height);
    padding: 0 22px;
  }
  .our-story .sc-corevalue {
    --pdSection: 30px;
    position: relative;
  }
  .our-story .sc-corevalue .outer {
    grid-column: 1;
  }
  .our-story .sc-corevalue .text-slider {
    max-width: 100%;
    width: 100%;
  }
  .our-story .sc-corevalue .sc-title {
    margin-bottom: 35px;
  }
  .our-story .sc-corevalue .sc-slider__control {
    bottom: -175px;
    width: 100%;
  }
  .our-story .sc-mission .sc-title {
    top: 40px;
  }
  .our-story .sc-mission .sc-title .subtitle {
    font-family: nl;
    margin-bottom: 0;
  }
  .our-story .sc-mission .sc-title .btnmain,
  .our-story .sc-mission .sc-title .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .our-story .sc-mission .sc-title .tab-button {
    margin: 10px auto 0;
  }
  .our-story .sc-ourstory .container {
    align-items: flex-start;
    padding-top: 150px;
  }
  .our-story .sc-ourstory .sc-title .subtitle {
    line-height: var(--lh28);
  }
  .our-story .sc-ourstory .btnmain,
  .our-story .sc-ourstory .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .our-story .sc-ourstory .tab-button {
    margin: 15px auto 0;
  }
  .our-story .ceo-msg {
    --pd-section: 60px;
    height: 80vh;
    max-height: 740px;
    min-height: 650px;
  }
  .our-story .ceo-msg .heading {
    display: none;
  }
  .our-story .ceo-msg__img {
    bottom: 0;
    position: absolute;
  }
  .our-story .ceo-msg__img img {
    max-width: 500px;
  }
  .our-story .ceo-msg__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    left: var(--gap);
    padding-left: 0;
    position: absolute;
    right: var(--gap);
    z-index: 10;
  }
  .our-story .ceo-msg__content .message {
    font-size: var(--fs30);
    font-style: normal;
    letter-spacing: -0.02em;
    line-height: var(--lh40);
  }
  .our-story .ceo-msg__content .info {
    font-family: bb;
    margin-top: 38px;
  }
  .our-story .ceo-msg__content .info__title {
    color: #086d46;
    font-size: 12px;
    line-height: 20px;
  }
  .our-story .ceo-msg__content .info__name {
    font-size: 18px;
    line-height: 20px;
  }
  .our-story .ceo-msg__content .btnmain,
  .our-story .ceo-msg__content .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .our-story .ceo-msg__content .tab-button {
    margin-bottom: 37px;
  }
}
@media (min-height: 900px) {
  .our-story .heading {
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 767px) {
  .our-story .ceo-msg {
    max-height: 600px;
    min-height: 580px;
    padding-top: 40px;
  }
  .our-story .ceo-msg__img img {
    max-width: 350px;
  }
  .our-story .ceo-msg__content .message {
    font-size: var(--fs30);
    font-style: normal;
    letter-spacing: -0.02em;
    line-height: var(--lh40);
  }
}
@media screen and (max-width: 767px) and (max-width: 640px) {
  .our-story .ceo-msg__content .message {
    font-size: var(--fs22);
    line-height: normal;
  }
}
.history-of-development .timeline {
  bottom: 50vh;
  margin-left: auto;
  position: fixed;
  right: clamp(15px, var(--halfPadding) + var(--gap), 9999px);
  top: 50vh;
  transform: translateY(-50%);
  width: -moz-max-content;
  width: max-content;
  z-index: 100;
}

.history-of-development .timeline__item {
  color: #fff;
  display: flex;
  font-family: nb;
  font-size: var(--fs12);
  justify-content: flex-end;
  line-height: 13px;
  margin: 10px 0 10px auto;
  position: relative;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
}

.history-of-development .timeline__item span {
  display: block;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-90%, -50%);
  transition: 0.4s;
  transition: all 0.4s;
  width: -moz-max-content;
  width: max-content;
}

.history-of-development .timeline__item:after {
  background-color: currentColor;
  content: "";
  display: block;
  height: 1px;
  margin-left: 37px;
  width: 18px;
}

.history-of-development .timeline__item.active span {
  opacity: 1;
  transform: translate(-100%, -50%);
  transition: opacity 0.4s;
}

.history-of-development .timeline__item.active:after {
  content: "";
  transition: 0.4s;
  width: 38px;
}

.history-of-development .page-title-container {
  margin: 0 auto;
  max-width: var(--container-width);
  padding-left: var(--gap);
  padding-right: var(--gap);
  position: relative;
  width: 100%;
  z-index: 10;
}

.history-of-development .history-timeline {
  --heightSection: 700px;
  --lineHeight: 28px;
  --size: 20px;
  --max-line: 5;
  height: var(--heightSection);
  overflow-y: initial;
  position: relative;
  transition: all 0.4s;
}

.history-of-development .history-timeline[data-slide="1"] {
  --pd-section: 170px;
  min-height: 700px;
}

.history-of-development .history-timeline[data-slide="1"] .heading {
  font-size: var(--fs48);
  line-height: var(--lh40);
}

.history-of-development .history-timeline[data-text-align-horizontal=left] .history-text {
  left: 0;
}

.history-of-development .history-timeline[data-text-align-horizontal=right] .history-text {
  left: auto;
  right: 0;
}

.history-of-development .history-timeline .container {
  height: 100%;
}

.history-of-development .history-timeline:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='82' height='892' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M41 1.5s89.001 146 0 431.5c-89 285.5 0 458 0 458' stroke='%23FFCE02' stroke-width='2' stroke-dasharray='4 4'/%3E%3C/svg%3E");
  background-position: 50%;
  background-size: 100%;
  bottom: 50%;
  content: "";
  height: 658px;
  left: 49%;
  position: absolute;
  transform: translateX(-50%);
  width: 65px;
  z-index: 90;
}

.history-of-development .history-timeline:first-child:after {
  display: none;
}

.history-of-development .history-timeline:last-child {
  --heightSection: 1200px;
  background: #7ddcff;
}

.history-of-development .history-timeline:last-child .history-icon {
  top: 450px;
}

.history-of-development .history-timeline:last-child .history-text {
  top: 180px;
  transform: none;
}

.history-of-development .history-timeline:last-child .history-image img,
.history-of-development .history-timeline:last-child .history-image picture {
  -o-object-position: bottom;
  object-position: bottom;
}

.history-of-development .history-timeline:last-child:after {
  bottom: calc(100% - 400px);
  height: 700px;
  left: 51%;
  transform: translateX(-71%);
}

.history-of-development .history-icon {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 91;
}

.history-of-development .history-icon img,
.history-of-development .history-icon svg {
  height: auto;
  width: 100px;
}

.history-of-development .history-image {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.history-of-development .history-image img,
.history-of-development .history-image picture {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.history-of-development .history-text {
  display: block;
  left: calc(var(--halfPadding) + var(--gap));
  margin-right: auto;
  padding: 0 var(--gap);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 41.6666666667%;
}

.history-of-development .history-text__title {
  font-size: var(--fs30);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: var(--lh40);
  margin-bottom: 15px;
}

.history-of-development .history-text .content {
  line-height: var(--lineHeight);
  margin-bottom: 40px;
  max-height: calc(var(--max-line) * var(--lineHeight));
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}

.history-of-development .history-text .btn-collapsed {
  --thick: 2px;
  --width: 12px;
  --background: #086d46;
  position: relative;
  width: 62px;
}

.history-of-development .history-text .btn-collapsed:after,
.history-of-development .history-text .btn-collapsed:before {
  background: var(--background);
  border-radius: 5px;
  content: "";
  position: absolute;
  transition: all 0.3s;
}

.history-of-development .history-text .btn-collapsed:before {
  height: var(--thick);
  width: var(--width);
}

.history-of-development .history-text .btn-collapsed:after {
  height: var(--thick);
  transform: rotate(90deg);
  width: var(--width);
}

.history-of-development .history-text .btn-collapsed.expanded:after {
  transform: rotate(0deg);
  transition: all 0.3s;
}

.history-of-development .history-text .btn-collapsed:hover {
  --background: #fff;
}

.history-of-development .history-text .btn-collapsed:hover:after,
.history-of-development .history-text .btn-collapsed:hover:before {
  transition: all 0.3s;
}

.history-of-development .footer {
  margin-top: calc(var(--footer-shape-height) * -1);
  pointer-events: none;
  z-index: 200;
}

.history-of-development .footer__main {
  pointer-events: all;
}

@media screen and (max-width: 991px) {
  .history-of-development .timeline {
    display: none;
  }
  .history-of-development .history-timeline[data-slide="1"] {
    --pd-section: 110px;
    height: 700px;
    min-height: 700px;
  }
  .history-of-development .history-timeline[data-slide="1"] .heading {
    font-size: var(--fs48);
    line-height: var(--lh40);
  }
}
@media screen and (max-width: 767px) {
  .history-of-development .history-timeline {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .history-of-development .history-timeline .container {
    flex: 1;
  }
  .history-of-development .history-timeline:first-child .history-icon {
    margin-top: 40px;
  }
  .history-of-development .history-timeline:last-child {
    --heightSection: 800px;
  }
  .history-of-development .history-timeline:last-child .history-icon {
    top: auto;
  }
  .history-of-development .history-timeline:first-child:after {
    height: 120%;
  }
  .history-of-development .history-timeline[data-text-align-vertical=top] {
    padding-bottom: 460px;
  }
  .history-of-development .history-timeline[data-text-align-vertical=top] .history-text {
    top: 20px;
  }
  .history-of-development .history-timeline[data-text-align-vertical=top] .history-image img,
  .history-of-development .history-timeline[data-text-align-vertical=top] .history-image picture {
    -o-object-position: center bottom;
    object-position: center bottom;
  }
  .history-of-development .history-timeline[data-text-align-vertical=bottom] {
    justify-content: flex-end;
    padding-bottom: var(--pd-section);
    padding-top: 380px;
  }
  .history-of-development .history-timeline[data-text-align-vertical=bottom] .history-image img,
  .history-of-development .history-timeline[data-text-align-vertical=bottom] .history-image picture {
    -o-object-position: top;
    object-position: top;
  }
  .history-of-development .history-timeline[data-text-align-vertical=bottom] .container {
    flex: initial;
    height: auto;
  }
  .history-of-development .history-timeline[data-text-align-vertical=bottom] .history-text {
    bottom: 20px;
    margin-top: 25px;
    top: auto;
  }
  .history-of-development .history-timeline:after {
    display: none;
  }
  .history-of-development .history-icon {
    left: auto;
    margin: 80px auto 0;
    position: relative;
    top: auto;
    transform: none;
    width: -moz-max-content;
    width: max-content;
  }
  .history-of-development .history-icon img,
  .history-of-development .history-icon svg {
    width: 86px;
  }
  .history-of-development .history-text {
    padding: 0 var(--gap);
    position: relative;
    transform: none;
    width: 100%;
    z-index: 10;
  }
  .history-of-development .history-image {
    bottom: 0;
    top: auto;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
  }
}
@media (min-width: 2000px) {
  .history-of-development .history-timeline:after {
    left: calc(50% - 15px);
  }
}
.news-scr .scbanner,
.news-scr .schero,
.news-template-page .scbanner,
.news-template-page .schero {
  position: relative;
}

.news-scr .scbanner__content,
.news-scr .schero__content,
.news-template-page .scbanner__content,
.news-template-page .schero__content {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 115px;
  transform: translate(-50%);
}

.news-scr .scbanner__content .heading,
.news-scr .schero__content .heading,
.news-template-page .scbanner__content .heading,
.news-template-page .schero__content .heading {
  font-size: var(--fs48);
  line-height: var(--lh65);
}

.news-scr .scbanner__content .heading br,
.news-scr .schero__content .heading br,
.news-template-page .scbanner__content .heading br,
.news-template-page .schero__content .heading br {
  display: initial;
}

.news-scr .scbanner__banner,
.news-scr .schero__banner,
.news-template-page .scbanner__banner,
.news-template-page .schero__banner {
  width: 100%;
}

.news-scr .scbanner__banner img,
.news-scr .schero__banner img,
.news-template-page .scbanner__banner img,
.news-template-page .schero__banner img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .news-scr .scbanner__content,
  .news-scr .schero__content,
  .news-template-page .scbanner__content,
  .news-template-page .schero__content {
    top: 70px;
  }
}
.news-scr .scbanner,
.news-template-page .scbanner {
  position: relative;
  width: 100%;
}

.news-scr .scbanner__img,
.news-template-page .scbanner__img {
  height: 100%;
  width: 100%;
}

.news-scr .scbanner__img img,
.news-scr .scbanner__img picture,
.news-template-page .scbanner__img img,
.news-template-page .scbanner__img picture {
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  width: 100%;
}

.news-scr .scbanner__content,
.news-template-page .scbanner__content {
  left: 50%;
  padding-left: var(--gap);
  padding-right: var(--gap);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.news-scr .scnews,
.news-template-page .scnews {
  padding: 60px 0 0;
}

.news-scr .news-list,
.news-template-page .news-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.news-scr .news-item,
.news-template-page .news-item {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.news-scr .news-item__img,
.news-template-page .news-item__img {
  height: 0;
  line-height: 0;
  overflow: hidden;
  padding-bottom: 65%;
  position: relative;
}

.news-scr .news-item__img img,
.news-template-page .news-item__img img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.4s ease-out;
  width: 100%;
}

.news-scr .news-item__content,
.news-template-page .news-item__content {
  padding: 20px;
}

.news-scr .news-item__desc,
.news-template-page .news-item__desc {
  font-family: nl;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.news-scr .news-item__desc a,
.news-template-page .news-item__desc a {
  color: inherit;
}

.news-scr .news-item__date,
.news-template-page .news-item__date {
  color: #6dbe4b;
}

.news-scr .news-item .btnmain,
.news-scr .news-item .productdetail-page .scnutrition .tab-button,
.news-template-page .news-item .btnmain,
.news-template-page .news-item .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .news-scr .news-item .tab-button,
.productdetail-page .scnutrition .news-template-page .news-item .tab-button {
  height: 30px;
  margin-top: 20px;
  padding: 0 20px;
}

.news-scr .news-item .btnmain img,
.news-scr .news-item .btnmain svg,
.news-scr .news-item .productdetail-page .scnutrition .tab-button img,
.news-scr .news-item .productdetail-page .scnutrition .tab-button svg,
.news-template-page .news-item .btnmain img,
.news-template-page .news-item .btnmain svg,
.news-template-page .news-item .productdetail-page .scnutrition .tab-button img,
.news-template-page .news-item .productdetail-page .scnutrition .tab-button svg,
.productdetail-page .scnutrition .news-scr .news-item .tab-button img,
.productdetail-page .scnutrition .news-scr .news-item .tab-button svg,
.productdetail-page .scnutrition .news-template-page .news-item .tab-button img,
.productdetail-page .scnutrition .news-template-page .news-item .tab-button svg {
  height: 10px;
  width: 10px;
}

.news-scr .news-item .btnmain img:only-child,
.news-scr .news-item .btnmain svg:only-child,
.news-scr .news-item .productdetail-page .scnutrition .tab-button img:only-child,
.news-scr .news-item .productdetail-page .scnutrition .tab-button svg:only-child,
.news-template-page .news-item .btnmain img:only-child,
.news-template-page .news-item .btnmain svg:only-child,
.news-template-page .news-item .productdetail-page .scnutrition .tab-button img:only-child,
.news-template-page .news-item .productdetail-page .scnutrition .tab-button svg:only-child,
.productdetail-page .scnutrition .news-scr .news-item .tab-button img:only-child,
.productdetail-page .scnutrition .news-scr .news-item .tab-button svg:only-child,
.productdetail-page .scnutrition .news-template-page .news-item .tab-button img:only-child,
.productdetail-page .scnutrition .news-template-page .news-item .tab-button svg:only-child {
  margin: 0;
}

.news-scr .news-item .btnmain img,
.news-scr .news-item .productdetail-page .scnutrition .tab-button img,
.news-template-page .news-item .btnmain img,
.news-template-page .news-item .productdetail-page .scnutrition .tab-button img,
.productdetail-page .scnutrition .news-scr .news-item .tab-button img,
.productdetail-page .scnutrition .news-template-page .news-item .tab-button img {
  -o-object-fit: cover;
  object-fit: cover;
}

.news-scr .news-item .--large-item,
.news-template-page .news-item .--large-item {
  border-radius: 10px;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  position: relative;
}

.news-scr .news-item .--large-item .news-item__img,
.news-template-page .news-item .--large-item .news-item__img {
  padding-bottom: 65.7%;
}

.news-scr .news-item .--large-item .news-item__date,
.news-template-page .news-item .--large-item .news-item__date {
  display: none;
}

.news-scr .news-item .--large-item .news-item__content,
.news-template-page .news-item .--large-item .news-item__content {
  bottom: 0;
  left: 0;
  padding: 0 20px 50px;
  position: absolute;
  z-index: 1;
}

.news-scr .news-item .--large-item .news-item__content:after,
.news-template-page .news-item .--large-item .news-item__content:after {
  background: linear-gradient(0deg, #086d46, transparent 45.35%);
  bottom: 0;
  content: "";
  height: 400%;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.news-scr .news-item .--large-item .news-item__content a,
.news-template-page .news-item .--large-item .news-item__content a {
  color: #fff;
}

.news-scr .news-item .--large-item .btnmain,
.news-scr .news-item .--large-item .productdetail-page .scnutrition .tab-button,
.news-template-page .news-item .--large-item .btnmain,
.news-template-page .news-item .--large-item .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .news-scr .news-item .--large-item .tab-button,
.productdetail-page .scnutrition .news-template-page .news-item .--large-item .tab-button {
  display: none;
}

@media (min-width: 768px) {
  .news-scr .news-item:first-child,
  .news-scr .news-item:nth-child(7),
  .news-template-page .news-item:first-child,
  .news-template-page .news-item:nth-child(7) {
    border-radius: 10px;
    height: -moz-max-content;
    height: max-content;
    overflow: hidden;
    position: relative;
  }
  .news-scr .news-item:first-child .news-item__img,
  .news-scr .news-item:nth-child(7) .news-item__img,
  .news-template-page .news-item:first-child .news-item__img,
  .news-template-page .news-item:nth-child(7) .news-item__img {
    padding-bottom: 65.7%;
  }
  .news-scr .news-item:first-child .news-item__date,
  .news-scr .news-item:nth-child(7) .news-item__date,
  .news-template-page .news-item:first-child .news-item__date,
  .news-template-page .news-item:nth-child(7) .news-item__date {
    display: none;
  }
  .news-scr .news-item:first-child .news-item__content,
  .news-scr .news-item:nth-child(7) .news-item__content,
  .news-template-page .news-item:first-child .news-item__content,
  .news-template-page .news-item:nth-child(7) .news-item__content {
    bottom: 0;
    left: 0;
    padding: 0 20px 50px;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .news-scr .news-item:first-child .news-item__content:after,
  .news-scr .news-item:nth-child(7) .news-item__content:after,
  .news-template-page .news-item:first-child .news-item__content:after,
  .news-template-page .news-item:nth-child(7) .news-item__content:after {
    background: linear-gradient(0deg, #086d46, transparent 45.35%);
    bottom: 0;
    content: "";
    height: 400%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .news-scr .news-item:first-child .news-item__content a,
  .news-scr .news-item:nth-child(7) .news-item__content a,
  .news-template-page .news-item:first-child .news-item__content a,
  .news-template-page .news-item:nth-child(7) .news-item__content a {
    color: #fff;
  }
  .news-scr .news-item:first-child .btnmain,
  .news-scr .news-item:first-child .productdetail-page .scnutrition .tab-button,
  .news-scr .news-item:nth-child(7) .btnmain,
  .news-scr .news-item:nth-child(7) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:first-child .btnmain,
  .news-template-page .news-item:first-child .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(7) .btnmain,
  .news-template-page .news-item:nth-child(7) .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:first-child .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(7) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:first-child .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(7) .tab-button {
    display: none;
  }
  .news-scr .news-item:first-child,
  .news-template-page .news-item:first-child {
    grid-column: 1/span 2;
  }
  .news-scr .news-item:nth-child(7),
  .news-template-page .news-item:nth-child(7) {
    grid-column: 2/span 2;
  }
  .news-scr .news-item:nth-child(11),
  .news-scr .news-item:nth-child(17),
  .news-template-page .news-item:nth-child(11),
  .news-template-page .news-item:nth-child(17) {
    border-radius: 10px;
    height: -moz-max-content;
    height: max-content;
    overflow: hidden;
    position: relative;
  }
  .news-scr .news-item:nth-child(11) .news-item__img,
  .news-scr .news-item:nth-child(17) .news-item__img,
  .news-template-page .news-item:nth-child(11) .news-item__img,
  .news-template-page .news-item:nth-child(17) .news-item__img {
    padding-bottom: 65.7%;
  }
  .news-scr .news-item:nth-child(11) .news-item__date,
  .news-scr .news-item:nth-child(17) .news-item__date,
  .news-template-page .news-item:nth-child(11) .news-item__date,
  .news-template-page .news-item:nth-child(17) .news-item__date {
    display: none;
  }
  .news-scr .news-item:nth-child(11) .news-item__content,
  .news-scr .news-item:nth-child(17) .news-item__content,
  .news-template-page .news-item:nth-child(11) .news-item__content,
  .news-template-page .news-item:nth-child(17) .news-item__content {
    bottom: 0;
    left: 0;
    padding: 0 20px 50px;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .news-scr .news-item:nth-child(11) .news-item__content:after,
  .news-scr .news-item:nth-child(17) .news-item__content:after,
  .news-template-page .news-item:nth-child(11) .news-item__content:after,
  .news-template-page .news-item:nth-child(17) .news-item__content:after {
    background: linear-gradient(0deg, #086d46, transparent 45.35%);
    bottom: 0;
    content: "";
    height: 400%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .news-scr .news-item:nth-child(11) .news-item__content a,
  .news-scr .news-item:nth-child(17) .news-item__content a,
  .news-template-page .news-item:nth-child(11) .news-item__content a,
  .news-template-page .news-item:nth-child(17) .news-item__content a {
    color: #fff;
  }
  .news-scr .news-item:nth-child(11) .btnmain,
  .news-scr .news-item:nth-child(11) .productdetail-page .scnutrition .tab-button,
  .news-scr .news-item:nth-child(17) .btnmain,
  .news-scr .news-item:nth-child(17) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(11) .btnmain,
  .news-template-page .news-item:nth-child(11) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(17) .btnmain,
  .news-template-page .news-item:nth-child(17) .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(11) .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(17) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(11) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(17) .tab-button {
    display: none;
  }
  .news-scr .news-item:nth-child(11),
  .news-template-page .news-item:nth-child(11) {
    grid-column: 1/span 2;
  }
  .news-scr .news-item:nth-child(17),
  .news-template-page .news-item:nth-child(17) {
    grid-column: 2/span 2;
  }
  .news-scr .news-item:nth-child(21),
  .news-scr .news-item:nth-child(27),
  .news-template-page .news-item:nth-child(21),
  .news-template-page .news-item:nth-child(27) {
    border-radius: 10px;
    height: -moz-max-content;
    height: max-content;
    overflow: hidden;
    position: relative;
  }
  .news-scr .news-item:nth-child(21) .news-item__img,
  .news-scr .news-item:nth-child(27) .news-item__img,
  .news-template-page .news-item:nth-child(21) .news-item__img,
  .news-template-page .news-item:nth-child(27) .news-item__img {
    padding-bottom: 65.7%;
  }
  .news-scr .news-item:nth-child(21) .news-item__date,
  .news-scr .news-item:nth-child(27) .news-item__date,
  .news-template-page .news-item:nth-child(21) .news-item__date,
  .news-template-page .news-item:nth-child(27) .news-item__date {
    display: none;
  }
  .news-scr .news-item:nth-child(21) .news-item__content,
  .news-scr .news-item:nth-child(27) .news-item__content,
  .news-template-page .news-item:nth-child(21) .news-item__content,
  .news-template-page .news-item:nth-child(27) .news-item__content {
    bottom: 0;
    left: 0;
    padding: 0 20px 50px;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .news-scr .news-item:nth-child(21) .news-item__content:after,
  .news-scr .news-item:nth-child(27) .news-item__content:after,
  .news-template-page .news-item:nth-child(21) .news-item__content:after,
  .news-template-page .news-item:nth-child(27) .news-item__content:after {
    background: linear-gradient(0deg, #086d46, transparent 45.35%);
    bottom: 0;
    content: "";
    height: 400%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .news-scr .news-item:nth-child(21) .news-item__content a,
  .news-scr .news-item:nth-child(27) .news-item__content a,
  .news-template-page .news-item:nth-child(21) .news-item__content a,
  .news-template-page .news-item:nth-child(27) .news-item__content a {
    color: #fff;
  }
  .news-scr .news-item:nth-child(21) .btnmain,
  .news-scr .news-item:nth-child(21) .productdetail-page .scnutrition .tab-button,
  .news-scr .news-item:nth-child(27) .btnmain,
  .news-scr .news-item:nth-child(27) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(21) .btnmain,
  .news-template-page .news-item:nth-child(21) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(27) .btnmain,
  .news-template-page .news-item:nth-child(27) .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(21) .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(27) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(21) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(27) .tab-button {
    display: none;
  }
  .news-scr .news-item:nth-child(21),
  .news-template-page .news-item:nth-child(21) {
    grid-column: 1/span 2;
  }
  .news-scr .news-item:nth-child(27),
  .news-template-page .news-item:nth-child(27) {
    grid-column: 2/span 2;
  }
  .news-scr .news-item:nth-child(31),
  .news-scr .news-item:nth-child(37),
  .news-template-page .news-item:nth-child(31),
  .news-template-page .news-item:nth-child(37) {
    border-radius: 10px;
    height: -moz-max-content;
    height: max-content;
    overflow: hidden;
    position: relative;
  }
  .news-scr .news-item:nth-child(31) .news-item__img,
  .news-scr .news-item:nth-child(37) .news-item__img,
  .news-template-page .news-item:nth-child(31) .news-item__img,
  .news-template-page .news-item:nth-child(37) .news-item__img {
    padding-bottom: 65.7%;
  }
  .news-scr .news-item:nth-child(31) .news-item__date,
  .news-scr .news-item:nth-child(37) .news-item__date,
  .news-template-page .news-item:nth-child(31) .news-item__date,
  .news-template-page .news-item:nth-child(37) .news-item__date {
    display: none;
  }
  .news-scr .news-item:nth-child(31) .news-item__content,
  .news-scr .news-item:nth-child(37) .news-item__content,
  .news-template-page .news-item:nth-child(31) .news-item__content,
  .news-template-page .news-item:nth-child(37) .news-item__content {
    bottom: 0;
    left: 0;
    padding: 0 20px 50px;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .news-scr .news-item:nth-child(31) .news-item__content:after,
  .news-scr .news-item:nth-child(37) .news-item__content:after,
  .news-template-page .news-item:nth-child(31) .news-item__content:after,
  .news-template-page .news-item:nth-child(37) .news-item__content:after {
    background: linear-gradient(0deg, #086d46, transparent 45.35%);
    bottom: 0;
    content: "";
    height: 400%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .news-scr .news-item:nth-child(31) .news-item__content a,
  .news-scr .news-item:nth-child(37) .news-item__content a,
  .news-template-page .news-item:nth-child(31) .news-item__content a,
  .news-template-page .news-item:nth-child(37) .news-item__content a {
    color: #fff;
  }
  .news-scr .news-item:nth-child(31) .btnmain,
  .news-scr .news-item:nth-child(31) .productdetail-page .scnutrition .tab-button,
  .news-scr .news-item:nth-child(37) .btnmain,
  .news-scr .news-item:nth-child(37) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(31) .btnmain,
  .news-template-page .news-item:nth-child(31) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(37) .btnmain,
  .news-template-page .news-item:nth-child(37) .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(31) .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(37) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(31) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(37) .tab-button {
    display: none;
  }
  .news-scr .news-item:nth-child(31),
  .news-template-page .news-item:nth-child(31) {
    grid-column: 1/span 2;
  }
  .news-scr .news-item:nth-child(37),
  .news-template-page .news-item:nth-child(37) {
    grid-column: 2/span 2;
  }
  .news-scr .news-item:nth-child(41),
  .news-scr .news-item:nth-child(47),
  .news-template-page .news-item:nth-child(41),
  .news-template-page .news-item:nth-child(47) {
    border-radius: 10px;
    height: -moz-max-content;
    height: max-content;
    overflow: hidden;
    position: relative;
  }
  .news-scr .news-item:nth-child(41) .news-item__img,
  .news-scr .news-item:nth-child(47) .news-item__img,
  .news-template-page .news-item:nth-child(41) .news-item__img,
  .news-template-page .news-item:nth-child(47) .news-item__img {
    padding-bottom: 65.7%;
  }
  .news-scr .news-item:nth-child(41) .news-item__date,
  .news-scr .news-item:nth-child(47) .news-item__date,
  .news-template-page .news-item:nth-child(41) .news-item__date,
  .news-template-page .news-item:nth-child(47) .news-item__date {
    display: none;
  }
  .news-scr .news-item:nth-child(41) .news-item__content,
  .news-scr .news-item:nth-child(47) .news-item__content,
  .news-template-page .news-item:nth-child(41) .news-item__content,
  .news-template-page .news-item:nth-child(47) .news-item__content {
    bottom: 0;
    left: 0;
    padding: 0 20px 50px;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .news-scr .news-item:nth-child(41) .news-item__content:after,
  .news-scr .news-item:nth-child(47) .news-item__content:after,
  .news-template-page .news-item:nth-child(41) .news-item__content:after,
  .news-template-page .news-item:nth-child(47) .news-item__content:after {
    background: linear-gradient(0deg, #086d46, transparent 45.35%);
    bottom: 0;
    content: "";
    height: 400%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .news-scr .news-item:nth-child(41) .news-item__content a,
  .news-scr .news-item:nth-child(47) .news-item__content a,
  .news-template-page .news-item:nth-child(41) .news-item__content a,
  .news-template-page .news-item:nth-child(47) .news-item__content a {
    color: #fff;
  }
  .news-scr .news-item:nth-child(41) .btnmain,
  .news-scr .news-item:nth-child(41) .productdetail-page .scnutrition .tab-button,
  .news-scr .news-item:nth-child(47) .btnmain,
  .news-scr .news-item:nth-child(47) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(41) .btnmain,
  .news-template-page .news-item:nth-child(41) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(47) .btnmain,
  .news-template-page .news-item:nth-child(47) .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(41) .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(47) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(41) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(47) .tab-button {
    display: none;
  }
  .news-scr .news-item:nth-child(41),
  .news-template-page .news-item:nth-child(41) {
    grid-column: 1/span 2;
  }
  .news-scr .news-item:nth-child(47),
  .news-template-page .news-item:nth-child(47) {
    grid-column: 2/span 2;
  }
  .news-scr .news-item:nth-child(51),
  .news-scr .news-item:nth-child(57),
  .news-template-page .news-item:nth-child(51),
  .news-template-page .news-item:nth-child(57) {
    border-radius: 10px;
    height: -moz-max-content;
    height: max-content;
    overflow: hidden;
    position: relative;
  }
  .news-scr .news-item:nth-child(51) .news-item__img,
  .news-scr .news-item:nth-child(57) .news-item__img,
  .news-template-page .news-item:nth-child(51) .news-item__img,
  .news-template-page .news-item:nth-child(57) .news-item__img {
    padding-bottom: 65.7%;
  }
  .news-scr .news-item:nth-child(51) .news-item__date,
  .news-scr .news-item:nth-child(57) .news-item__date,
  .news-template-page .news-item:nth-child(51) .news-item__date,
  .news-template-page .news-item:nth-child(57) .news-item__date {
    display: none;
  }
  .news-scr .news-item:nth-child(51) .news-item__content,
  .news-scr .news-item:nth-child(57) .news-item__content,
  .news-template-page .news-item:nth-child(51) .news-item__content,
  .news-template-page .news-item:nth-child(57) .news-item__content {
    bottom: 0;
    left: 0;
    padding: 0 20px 50px;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .news-scr .news-item:nth-child(51) .news-item__content:after,
  .news-scr .news-item:nth-child(57) .news-item__content:after,
  .news-template-page .news-item:nth-child(51) .news-item__content:after,
  .news-template-page .news-item:nth-child(57) .news-item__content:after {
    background: linear-gradient(0deg, #086d46, transparent 45.35%);
    bottom: 0;
    content: "";
    height: 400%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .news-scr .news-item:nth-child(51) .news-item__content a,
  .news-scr .news-item:nth-child(57) .news-item__content a,
  .news-template-page .news-item:nth-child(51) .news-item__content a,
  .news-template-page .news-item:nth-child(57) .news-item__content a {
    color: #fff;
  }
  .news-scr .news-item:nth-child(51) .btnmain,
  .news-scr .news-item:nth-child(51) .productdetail-page .scnutrition .tab-button,
  .news-scr .news-item:nth-child(57) .btnmain,
  .news-scr .news-item:nth-child(57) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(51) .btnmain,
  .news-template-page .news-item:nth-child(51) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(57) .btnmain,
  .news-template-page .news-item:nth-child(57) .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(51) .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(57) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(51) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(57) .tab-button {
    display: none;
  }
  .news-scr .news-item:nth-child(51),
  .news-template-page .news-item:nth-child(51) {
    grid-column: 1/span 2;
  }
  .news-scr .news-item:nth-child(57),
  .news-template-page .news-item:nth-child(57) {
    grid-column: 2/span 2;
  }
}
@media screen and (min-width: 400px) and (max-width: 767px) {
  .news-scr .news-item,
  .news-template-page .news-item {
    grid-column: initial;
  }
  .news-scr .news-item:not(:nth-child(5n+1)),
  .news-template-page .news-item:not(:nth-child(5n+1)) {
    display: flex;
    max-height: -moz-max-content;
    max-height: max-content;
    padding: 0 var(--gap);
  }
  .news-scr .news-item:not(:nth-child(5n+1)) .btnmain,
  .news-scr .news-item:not(:nth-child(5n+1)) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:not(:nth-child(5n+1)) .btnmain,
  .news-template-page .news-item:not(:nth-child(5n+1)) .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:not(:nth-child(5n+1)) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:not(:nth-child(5n+1)) .tab-button {
    display: none;
  }
  .news-scr .news-item:not(:nth-child(5n+1)) .news-item__img,
  .news-template-page .news-item:not(:nth-child(5n+1)) .news-item__img {
    border-radius: 10px;
    flex: 1 0 30%;
    height: auto;
    overflow: hidden;
    padding-bottom: 0;
  }
  .news-scr .news-item:not(:nth-child(5n+1)) .news-item__img a,
  .news-template-page .news-item:not(:nth-child(5n+1)) .news-item__img a {
    display: block;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
  }
  .news-scr .news-item:not(:nth-child(5n+1)) .news-item__content,
  .news-template-page .news-item:not(:nth-child(5n+1)) .news-item__content {
    padding: 0 0 0 10px;
  }
  .news-scr .news-item:not(:nth-child(5n+1)) .news-item__desc,
  .news-template-page .news-item:not(:nth-child(5n+1)) .news-item__desc {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-inline-box;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news-scr .news-item:nth-child(5n+1),
  .news-template-page .news-item:nth-child(5n+1) {
    border-radius: 10px;
    height: -moz-max-content;
    height: max-content;
    overflow: hidden;
    position: relative;
  }
  .news-scr .news-item:nth-child(5n+1) .news-item__img,
  .news-template-page .news-item:nth-child(5n+1) .news-item__img {
    padding-bottom: 80%;
  }
  .news-scr .news-item:nth-child(5n+1) .news-item__date,
  .news-template-page .news-item:nth-child(5n+1) .news-item__date {
    display: none;
  }
  .news-scr .news-item:nth-child(5n+1) .news-item__content,
  .news-template-page .news-item:nth-child(5n+1) .news-item__content {
    bottom: 0;
    left: 0;
    padding: 0 20px 35px;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .news-scr .news-item:nth-child(5n+1) .news-item__content:after,
  .news-template-page .news-item:nth-child(5n+1) .news-item__content:after {
    background: linear-gradient(0deg, #086d46, transparent 45.35%);
    bottom: 0;
    content: "";
    height: 400%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .news-scr .news-item:nth-child(5n+1) .news-item__content a,
  .news-template-page .news-item:nth-child(5n+1) .news-item__content a {
    color: #fff;
  }
  .news-scr .news-item:nth-child(5n+1) .btnmain,
  .news-scr .news-item:nth-child(5n+1) .productdetail-page .scnutrition .tab-button,
  .news-template-page .news-item:nth-child(5n+1) .btnmain,
  .news-template-page .news-item:nth-child(5n+1) .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .news-scr .news-item:nth-child(5n+1) .tab-button,
  .productdetail-page .scnutrition .news-template-page .news-item:nth-child(5n+1) .tab-button {
    display: none;
  }
}
.news-scr .news-item:hover .news-item__img img,
.news-template-page .news-item:hover .news-item__img img {
  transform: translate(-50%, -50%) scale(1.04);
  transition: all 0.4s ease-in;
}

@media screen and (max-width: 767px) {
  .news-scr .news-list,
  .news-template-page .news-list {
    grid-template-columns: 1fr;
  }
  .news-scr .scnews .container,
  .news-template-page .scnews .container {
    padding: 0;
  }
}
.news-scr .history-of-development.--inherit .history-timeline {
  height: auto;
  max-height: 100vh;
  min-height: auto;
}

.news-scr .history-of-development.--inherit .history-timeline:after {
  display: none;
}

.news-scr .history-of-development.--inherit .history-timeline[data-slide="1"] {
  max-height: none;
}

.news-scr .history-of-development.--inherit .history-timeline[data-slide="1"] .scbanner__content {
  top: 50px;
  transform: translateX(-50%);
}

.news-scr .history-of-development.--inherit .history-timeline[data-slide="1"] .scbanner__content h1 span:last-child {
  display: block;
  margin-top: 10px;
}

@media (max-width: 400px) {
  .news-scr .history-of-development.--inherit .history-timeline[data-slide="1"] .scbanner__content h1 span:last-child {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 991px) {
  .news-scr .history-of-development.--inherit .history-timeline[data-slide="1"] .scbanner__content {
    top: 30px;
  }
}
.news-scr footer {
  margin-top: calc(var(--footer-shape-height) * -1);
  z-index: 100;
}

.newsdetail-page .main {
  padding-top: var(--height-header);
}

@media screen and (max-width: 991px) {
  .newsdetail-page .main {
    padding: 0;
  }
}
.newsdetail-page .scbreadcrumbs {
  background: #f8f8f8;
}

.newsdetail-page .scnewsdetail {
  padding: 80px 0;
}

.newsdetail-page .scnewsdetail table td,
.newsdetail-page .scnewsdetail table th {
  padding: 1.4rem;
}

.newsdetail-page .scnewsdetail .news-container {
  margin: 0 auto;
  max-width: 820px;
  padding-left: var(--gap);
  padding-right: var(--gap);
}

.newsdetail-page .scnewsdetail .news-date {
  color: #6dbe4b;
  font-family: bb;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.newsdetail-page .scnewsdetail .heading {
  margin-bottom: 20px;
}

.newsdetail-page .scnewsdetail .contentdetail {
  margin-top: 20px;
}

.newsdetail-page .scnewsdetail .contentdetail figcaption {
  margin-bottom: 4rem;
  margin-top: 1rem;
}

.newsdetail-page .scnewsdetail .contentdetail img {
  margin-bottom: 1rem;
  margin-top: 3.5rem;
}

.newsdetail-page .scnewsdetail .contentdetail video {
  max-width: 100%;
}

.newsdetail-page .scnewsdetail .contentdetail ol {
  list-style-type: disc;
}

.newsdetail-page .scnewsdetail .contentdetail iframe {
  margin: 40px auto;
  max-width: 100%;
}

.newsdetail-page .scnewsdetail .contentdetail em {
  font-style: italic;
}

.newsdetail-page .scnewsdetail .textbox {
  background: #f4f4f4;
  margin: 40px 0;
  padding: 40px;
}

.newsdetail-page .scnewsdetail .textbox .heading {
  font-family: nb, nsb;
  margin-bottom: 20px;
}

.newsdetail-page .scnewsdetail .textbox ul {
  line-height: 1.6;
}

.newsdetail-page .scnewsdetail .post-tag {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}

.newsdetail-page .scnewsdetail .post-tag ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-right: -10px;
}

.newsdetail-page .scnewsdetail .post-tag__item {
  font-size: var(--fs12);
  height: 30px;
  line-height: var(--lh20);
  margin: 0 5px 10px 0;
  padding: 0 15px;
}

.newsdetail-page .scnews {
  background-color: #e1f0de;
  padding: 80px 0 calc(var(--footer-shape-height) + 80px);
}

.newsdetail-page .scnews .btnmain,
.newsdetail-page .scnews .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .newsdetail-page .scnews .tab-button {
  margin-top: 40px;
}

.newsdetail-page .news-list {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.newsdetail-page .news-list .news-item {
  background: #fff;
  border-radius: 10px;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}

.newsdetail-page .news-list .news-item__img a {
  display: block;
  height: 0;
  padding-bottom: 65%;
  position: relative;
}

.newsdetail-page .news-list .news-item__img a img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.newsdetail-page .news-list .news-item__content {
  padding: 20px;
}

.newsdetail-page .news-list .news-item__date {
  color: #6dbe4b;
  margin-bottom: 10px;
}

.newsdetail-page .news-list .news-item__desc {
  color: #000;
}

.newsdetail-page .news-list .news-item__desc a {
  color: inherit;
}

@media screen and (max-width: 767px) {
  .newsdetail-page .news-list {
    grid-template-columns: 1fr;
  }
  .newsdetail-page .news-list .news-item {
    display: flex;
  }
  .newsdetail-page .news-list .news-item__img {
    flex-shrink: 0;
    width: 30%;
  }
  .newsdetail-page .news-list .news-item__img a {
    padding-bottom: 100%;
  }
  .newsdetail-page .news-list .news-item__date {
    margin-bottom: 3px;
  }
  .newsdetail-page .news-list .news-item__content {
    padding: 10px var(--gap) 0;
  }
  .newsdetail-page .news-list .news-item__desc {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-inline-box;
    font-size: var(--fs16);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.newsdetail-page footer {
  margin-top: calc(var(--footer-shape-height) * -1);
  z-index: 200;
}

.pioneer-footprint {
  padding-top: 0;
}

.pioneer-footprint .schero {
  position: relative;
}

.pioneer-footprint .schero-slider {
  height: calc(105vh - var(--height-header));
  min-height: 800px;
  width: 100%;
}

.pioneer-footprint .schero-slider .flickity-viewport {
  height: 100% !important;
}

.pioneer-footprint .schero-slider__item {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.pioneer-footprint .schero-slider__img {
  height: 100%;
  width: 100%;
}

.pioneer-footprint .schero-slider__img img,
.pioneer-footprint .schero-slider__img picture {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.pioneer-footprint .schero-slider__content {
  left: 50%;
  padding: 0 var(--gap);
  position: absolute;
  text-align: center;
  top: 80px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.pioneer-footprint .schero-slider__content .heading {
  font-size: var(--fs48);
  line-height: var(--lh65);
  margin-bottom: 25px;
}

.pioneer-footprint .schero-slider__content .content {
  margin: 0 auto;
  max-width: 800px;
}

.pioneer-footprint .schero-navigator {
  display: flex;
  justify-content: space-between;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pioneer-footprint .schero-navigator .btnmain,
.pioneer-footprint .schero-navigator .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .pioneer-footprint .schero-navigator .tab-button {
  pointer-events: all;
}

.pioneer-footprint .schero-navigator .btnmain img,
.pioneer-footprint .schero-navigator .btnmain svg,
.pioneer-footprint .schero-navigator .productdetail-page .scnutrition .tab-button img,
.pioneer-footprint .schero-navigator .productdetail-page .scnutrition .tab-button svg,
.productdetail-page .scnutrition .pioneer-footprint .schero-navigator .tab-button img,
.productdetail-page .scnutrition .pioneer-footprint .schero-navigator .tab-button svg {
  margin: 0;
}

.pioneer-footprint .schero-navigator .btnmain.--next,
.pioneer-footprint .schero-navigator .productdetail-page .scnutrition .--next.tab-button,
.productdetail-page .scnutrition .pioneer-footprint .schero-navigator .--next.tab-button {
  transform: rotate(180deg);
}

.pioneer-footprint .schero-dots {
  --size: 13px;
  bottom: calc(var(--footer-shape-height) + 20px);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.pioneer-footprint .schero-dots .inner {
  width: calc((var(--size) + var(--mg, 35px)) * 3);
}

.pioneer-footprint .schero-dots .inner .circle {
  background-color: transparent;
  border: 6px solid #086d46;
  border-radius: 50%;
  box-sizing: content-box;
  height: calc(var(--size) - 6px);
  left: 0;
  position: absolute;
  transform: translate(-3px, -3px);
  transition: all 0.4s;
  width: calc(var(--size) - 6px);
}

.pioneer-footprint .schero-dots .dots {
  align-items: center;
  display: flex;
}

.pioneer-footprint .schero-dots .dots .dot {
  background-color: #086d46;
  border-radius: 50%;
  box-sizing: content-box;
  cursor: pointer;
  flex-shrink: 0;
  height: var(--size);
  opacity: 1;
  position: relative;
  transform: scale(0);
  transition: all 0.4s;
  width: var(--size);
}

.pioneer-footprint .schero-dots .dots .dot:not(:first-child) {
  margin-left: 35px;
}

.pioneer-footprint .schero-dots .dots .dot.active {
  background-color: #ffce02;
  transform: scale(1);
  transition: all 0.4s;
}

.pioneer-footprint .schero-dots .dots .dot.active img {
  bottom: 100%;
  display: block;
  left: 50%;
  max-width: none;
  min-width: 100%;
  opacity: 1;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.4s;
  width: auto;
  z-index: 200;
}

.pioneer-footprint .schero-dots .dots .dot.active1 {
  height: 12px;
  transition: all 0.4s;
  width: 12px;
}

.pioneer-footprint .schero-dots .dots .dot.active2 {
  height: 10px;
  opacity: 0.8;
  transition: all 0.4s;
  width: 10px;
}

.pioneer-footprint .schero-dots .dots .dot.fade {
  opacity: 0.5;
}

.pioneer-footprint .schero-dots .dots img {
  opacity: 0;
  transition: all 0.4s;
}

@media screen and (max-width: 767px) {
  .pioneer-footprint .schero-slider {
    height: 100vh;
    min-height: auto;
  }
  .pioneer-footprint .schero-navigator {
    display: none;
  }
}
@media (max-width: 480px) {
  .pioneer-footprint .schero-slider__content {
    top: 50px;
  }
}
@media (min-width: 1600px) {
  .pioneer-footprint .schero-slider {
    min-height: 1000px;
  }
}
.pioneer-footprint footer {
  margin-top: calc(var(--footer-shape-height) * -1);
  pointer-events: none;
  z-index: 100;
}

.pioneer-footprint footer .footer__main {
  pointer-events: all;
}

.career-page .schero {
  height: calc(100vh - var(--height-header));
  min-height: 700px;
  overflow: hidden;
  padding-top: 65px;
  position: relative;
  width: 100%;
}

.career-page .schero__img img,
.career-page .schero__img picture {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.career-page .schero__text {
  grid-column: 3/11;
  text-align: center;
}

.career-page .schero__text .heading {
  font-size: var(--fs48);
  line-height: auto;
}

.career-page .schero__text .contentdetail {
  font-family: nsb;
  font-size: var(--fs24);
  line-height: var(--lh36);
}

@media screen and (max-width: 767px) {
  .career-page .schero {
    height: auto;
  }
  .career-page .schero__text {
    grid-column: initial;
  }
  .career-page .schero .container {
    display: block;
  }
}
@media (max-width: 399px) {
  .career-page .schero {
    min-height: 500px;
    padding-top: 35px;
  }
  .career-page .schero .contentdetail {
    --fs24: 16px;
  }
}
@media (min-height: 1000px) {
  .career-page .schero {
    max-height: 700px;
  }
}
.career-page .scculture {
  padding-top: 130px;
}

.career-page .scculture__text {
  grid-column: 3/11;
  text-align: center;
}

.career-page .scculture__text .heading {
  font-size: var(--fs48);
  line-height: normal;
  margin-bottom: 30px;
}

.career-page .scculture__text .contentdetail {
  font-size: var(--fs20);
  line-height: var(--lh28);
}

.career-page .scculture .sc-corevalue {
  align-items: center;
  display: flex;
  height: 900px;
  justify-content: center;
  margin-top: 68px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.career-page .scculture .sc-corevalue__img img,
.career-page .scculture .sc-corevalue__img picture {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.career-page .scculture .sc-corevalue .outer {
  grid-column: 4/10;
  position: static;
}

.career-page .scculture .sc-slider__control {
  padding: 0 var(--gap);
  pointer-events: none;
}

.career-page .scculture .sc-slider__control .btnmain,
.career-page .scculture .sc-slider__control .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .career-page .scculture .sc-slider__control .tab-button {
  pointer-events: all;
}

@media screen and (max-width: 991px) {
  .career-page .scculture .sc-slider__control {
    bottom: 0;
    justify-content: end;
    padding: 0 15px;
  }
  .career-page .scculture .sc-slider__control .btnmain,
  .career-page .scculture .sc-slider__control .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .career-page .scculture .sc-slider__control .tab-button {
    background-color: transparent;
  }
  .career-page .scculture .sc-slider__control .btnmain:hover svg path,
  .career-page .scculture .sc-slider__control .productdetail-page .scnutrition .tab-button:hover svg path,
  .productdetail-page .scnutrition .career-page .scculture .sc-slider__control .tab-button:hover svg path {
    fill: #086d46;
  }
}
.career-page .scculture .text-slider {
  height: 100%;
  max-width: 100%;
  width: 100%;
}

.career-page .scculture .text-slider .flickity-viewport {
  height: 100% !important;
}

.career-page .scculture .text-slider__img img,
.career-page .scculture .text-slider__img picture {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.career-page .scculture .text-slider__item {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.career-page .scculture .text-slider__item .title-group {
  padding: 0 var(--gap, 15px);
}

.career-page .scculture .text-slider__item .title-group .title-text {
  color: var(--color, #fff);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.54));
  font-family: nr;
  font-size: var(--fs48);
  line-height: var(--lh65);
}

.career-page .scculture .text-slider__item .text-group {
  color: #fff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.54));
  font-family: nr;
  font-size: var(--fs24);
  line-height: var(--lh36);
  padding: 0 var(--gap, 15px);
}

@media screen and (max-width: 991px) {
  .career-page .scculture {
    padding-top: 65px;
  }
  .career-page .scculture__text {
    grid-column: 1;
  }
  .career-page .scculture .sc-corevalue .outer {
    grid-column: initial;
  }
}
.career-page .sc-development .history-of-development .history-timeline:after {
  display: none;
}

.career-page .sc-development .history-of-development .history-timeline:last-child {
  --heightSection: 700px;
}

.career-page .sc-development .history-of-development .history-timeline:last-child .history-text {
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 991px) {
  .career-page .sc-development .history-timeline {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .career-page .sc-development .history-timeline .container {
    flex: 1;
  }
  .career-page .sc-development .history-timeline:first-child .history-icon {
    margin-top: 40px;
  }
  .career-page .sc-development .history-timeline:last-child {
    --heightSection: 800px;
  }
  .career-page .sc-development .history-timeline:last-child .history-icon {
    top: auto;
  }
  .career-page .sc-development .history-timeline:first-child:after {
    height: 120%;
  }
  .career-page .sc-development .history-timeline[data-text-align-vertical=top] {
    padding-bottom: 460px;
  }
  .career-page .sc-development .history-timeline[data-text-align-vertical=top] .history-text {
    top: 60px;
  }
  .career-page .sc-development .history-timeline[data-text-align-vertical=top] .history-image img,
  .career-page .sc-development .history-timeline[data-text-align-vertical=top] .history-image picture {
    -o-object-position: center bottom;
    object-position: center bottom;
  }
  .career-page .sc-development .history-timeline[data-text-align-vertical=bottom] {
    justify-content: flex-end;
    padding-bottom: var(--pd-section);
    padding-top: 380px;
  }
  .career-page .sc-development .history-timeline[data-text-align-vertical=bottom] .history-image img,
  .career-page .sc-development .history-timeline[data-text-align-vertical=bottom] .history-image picture {
    -o-object-position: top;
    object-position: top;
  }
  .career-page .sc-development .history-timeline[data-text-align-vertical=bottom] .container {
    flex: initial;
    height: auto;
  }
  .career-page .sc-development .history-timeline[data-text-align-vertical=bottom] .history-text {
    bottom: 20px;
    margin-top: 25px;
    top: auto;
  }
  .career-page .sc-development .history-timeline:after {
    display: none;
  }
  .career-page .sc-development .history-icon {
    left: auto;
    margin: 80px auto 0;
    position: relative;
    top: auto;
    transform: none;
    width: -moz-max-content;
    width: max-content;
  }
  .career-page .sc-development .history-icon img,
  .career-page .sc-development .history-icon svg {
    width: 86px;
  }
  .career-page .sc-development .history-text {
    padding: 0 var(--gap);
    position: relative;
    transform: none;
    width: 100%;
    z-index: 10;
  }
  .career-page .sc-development .history-image {
    bottom: 0;
    top: auto;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
  }
}
.career-page .sc-contact {
  --form-vertical-gap: 70px;
  height: 1200px;
  padding-bottom: 170px;
}

.career-page .sc-contact__img {
  height: 100%;
  left: 0;
  padding-top: var(--form-vertical-gap);
  position: absolute;
  top: var(--pd-section);
  width: 100%;
}

.career-page .sc-contact__img img,
.career-page .sc-contact__img picture {
  height: 100%;
  width: 100%;
}

.career-page .sc-contact__text {
  grid-column: 1/7;
  padding-top: calc(var(--form-vertical-gap) + 160px);
}

.career-page .sc-contact__text .heading {
  font-size: var(--fs48);
  line-height: var(--lh65);
}

.career-page .sc-contact__text .content {
  margin-top: 90px;
  padding: 27px 0;
  position: relative;
}

.career-page .sc-contact__text .content:before {
  border-top: 2px solid #086d46;
  content: "";
  display: block;
  left: 0;
  max-width: 290px;
  position: absolute;
  top: 0;
  width: 100%;
}

.career-page .sc-contact__text .content span {
  display: block;
  font-size: var(--fs24);
  line-height: var(--lh36);
  margin-bottom: 12px;
}

.career-page .sc-contact__text .content .socials {
  display: flex;
}

.career-page .sc-contact__text .content .socials-item {
  height: 30px;
  width: 30px;
}

.career-page .sc-contact__text .content .socials-item:not(:last-child) {
  margin-right: 40px;
}

.career-page .sc-contact__form {
  grid-column: 8/13;
}

.career-page .sc-contact__form .form-wrap {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 35px rgba(6, 82, 53, 0.21);
  padding: 44px 55px;
}

@media screen and (max-width: 991px) {
  .career-page .sc-contact__form .form-wrap {
    padding: 30px;
  }
}
.career-page .sc-contact__form .form-heading {
  font-family: nb;
  font-size: var(--fs20);
  margin-bottom: 60px;
  text-align: center;
}

.career-page .sc-contact__form .form-content .input-group {
  margin-bottom: 30px;
}

.career-page .sc-contact__form .form-content .input-group input {
  border: none;
  border-bottom: 1px solid #8b8b8b;
  display: block;
  font-family: nl;
  font-size: var(--fs18);
  font-weight: 300;
  line-height: var(--lh26);
  padding-bottom: 8px;
  transition: all 0.3s;
  width: 100%;
}

.career-page .sc-contact__form .form-content .input-group input:focus {
  border-bottom: 1px solid #086d46;
  outline: none;
  transition: all 0.3s;
}

.career-page .sc-contact__form .form-content .input-group input[type=file] {
  display: none;
}

.career-page .sc-contact__form .form-content .input-group .btnmain,
.career-page .sc-contact__form .form-content .input-group .productdetail-page .scnutrition .tab-button,
.productdetail-page .scnutrition .career-page .sc-contact__form .form-content .input-group .tab-button {
  font-size: var(--fs20);
  width: 100%;
}

.career-page .sc-contact__form .form-content .input-group label.--cv-btn {
  border: 1px solid #086d46;
  margin-top: 60px;
}

.career-page .sc-contact__form .form-content .input-group label.--cv-btn svg {
  height: 20px;
  margin-right: 10px;
  width: 20px;
}

.career-page .sc-contact__form .form-content .input-group button[type=submit] {
  background-color: #086d46;
  border: 1px solid #086d46;
  color: #fff;
}

.career-page .sc-contact__form .form-content .input-error {
  color: #c50000;
  font-size: 16px;
}

@media screen and (max-width: 1199px) {
  .career-page .sc-contact__text .content {
    margin-top: 60px;
  }
}
@media screen and (max-width: 991px) {
  .career-page .sc-contact .--grid-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .career-page .sc-contact__form {
    grid-column: 7/13;
  }
}
@media screen and (max-width: 767px) {
  .career-page .sc-contact {
    --pd-section: 0px;
    --form-vertical-gap: 0px;
    height: auto;
  }
  .career-page .sc-contact .--grid-12 {
    display: block;
    grid-template-columns: unset;
  }
  .career-page .sc-contact__text {
    grid-column: initial;
    padding-top: 60px;
  }
  .career-page .sc-contact__text .content {
    margin-top: 30px;
  }
  .career-page .sc-contact__form {
    margin-top: 40px;
  }
  .career-page .sc-contact__form .form {
    margin-top: 0;
  }
}
.career-page .sc-achievement {
  overflow: hidden;
  padding-bottom: 50px;
}

.career-page .sc-achievement .content {
  position: relative;
}

.career-page .sc-achievement .content.--top {
  padding-bottom: 600px;
}

@media screen and (max-width: 1199px) {
  .career-page .sc-achievement .content.--top {
    padding-bottom: 400px;
  }
}
@media screen and (max-width: 991px) {
  .career-page .sc-achievement .content.--top {
    padding-bottom: 350px;
  }
}
@media screen and (max-width: 767px) {
  .career-page .sc-achievement .content.--top {
    padding-bottom: 300px;
  }
}
@media (max-width: 576px) {
  .career-page .sc-achievement .content.--top {
    padding-bottom: 200px;
  }
}
.career-page .sc-achievement .content.--bottom {
  margin-top: -30%;
}

@media (min-width: 1800px) {
  .career-page .sc-achievement .content.--bottom {
    margin-top: -20%;
  }
}
.career-page .sc-achievement .content.--bottom .testimonials .--grid-12 {
  position: relative;
}

.career-page .sc-achievement .content.--bottom .testimonials-heading {
  font-family: nsb;
  font-size: var(--fs24);
  line-height: var(--lh36);
  margin-bottom: 60px;
  text-align: center;
}

.career-page .sc-achievement .content.--bottom .testimonials-inner {
  grid-column: 3/11;
}

@media screen and (max-width: 991px) {
  .career-page .sc-achievement .content.--bottom .testimonials-inner {
    grid-column: 1;
  }
}
.career-page .sc-achievement .content.--bottom .testimonials #slider .dp-wrap {
  width: 100%;
}

.career-page .sc-achievement .content.--bottom .testimonials #slider .dp-wrap .dp_item {
  height: 100%;
  width: 100%;
}

.career-page .sc-achievement .content.--bottom .testimonials #slider #dp-slider {
  --distance-from-img: 90px;
  height: 400px;
  margin-top: calc(var(--distance-from-img) * -1);
  position: relative;
  z-index: 1;
}

@media (max-width: 576px) {
  .career-page .sc-achievement .content.--bottom .testimonials #slider #dp-slider {
    height: 500px;
  }
}
.career-page .sc-achievement .content.--bottom .testimonials #slider .user-profile {
  background-color: #086d46;
  border-radius: 50%;
  height: 180px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 180px;
  z-index: 2;
}

.career-page .sc-achievement .content.--bottom .testimonials #slider .user-profile img,
.career-page .sc-achievement .content.--bottom .testimonials #slider .user-profile picture {
  border-radius: 50%;
  height: 95%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.7s;
  width: 95%;
}

.career-page .sc-achievement .content.--bottom .testimonials #slider .user-profile img.active,
.career-page .sc-achievement .content.--bottom .testimonials #slider .user-profile picture.active {
  opacity: 1;
  transition: all 1s;
}

.career-page .sc-achievement .content.--bottom .testimonials .card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.career-page .sc-achievement .content.--bottom .testimonials .card-img {
  background-color: #086d46;
  border-radius: 50%;
  height: 180px;
  margin: 0 auto;
  overflow: hidden;
  padding: 5px;
  width: 180px;
  z-index: 2;
}

.career-page .sc-achievement .content.--bottom .testimonials .card-img img,
.career-page .sc-achievement .content.--bottom .testimonials .card-img picture {
  border-radius: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.career-page .sc-achievement .content.--bottom .testimonials .card-heading {
  color: #ffce02;
  margin-bottom: 10px;
}

.career-page .sc-achievement .content.--bottom .testimonials .card-content {
  background-color: #086d46;
  border-radius: 10px;
  display: grid;
  flex: 1;
  grid-template-columns: repeat(8, 1fr);
  padding-top: var(--distance-from-img);
  position: relative;
  z-index: 1;
}

.career-page .sc-achievement .content.--bottom .testimonials .card-content .inner {
  grid-column: 2/8;
  margin-top: 20px;
}

.career-page .sc-achievement__bg img,
.career-page .sc-achievement__bg picture {
  bottom: 0;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.career-page .sc-achievement__text {
  grid-column: 3/11;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .career-page .sc-achievement__text {
    grid-column: initial;
  }
}
.career-page .sc-achievement__list {
  display: grid;
  grid-column: 2/12;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.career-page .sc-achievement__item {
  margin: 0 auto;
}

.career-page .sc-achievement__item:nth-child(2n) {
  margin-top: 300px;
}

@media screen and (max-width: 767px) {
  .career-page .sc-achievement__item:nth-child(2n) {
    margin-top: 200px;
  }
}
@media screen and (max-width: 991px) {
  .career-page .sc-achievement {
    --pd-section: 60px;
    padding-bottom: 0;
  }
}
.career-page .joinus__text {
  grid-column: 3/11;
  margin-top: 160px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .career-page .joinus__text {
    grid-column: 1;
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .career-page .joinus__text {
    margin-top: 65px;
  }
}
.career-page .joinus__cards-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 80px -15px 0;
}

.career-page .joinus__cards .card-item {
  align-items: center;
  border-radius: 30px;
  display: flex;
  flex: 0 0 30%;
  flex: 0 0 calc(33% - 50px);
  flex-direction: column;
  margin: 0 15px 40px;
}

@media screen and (max-width: 991px) {
  .career-page .joinus__cards .card-item {
    flex: 0 0 calc(50% - 30px);
  }
}
@media (max-width: 399px) {
  .career-page .joinus__cards .card-item {
    flex: 0 0 100%;
    margin-bottom: 60px;
  }
}
.career-page .joinus__cards .card-heading {
  color: #ffce02;
  margin: 30px 0 15px;
  max-width: 250px;
  text-align: center;
}

.career-page .joinus__cards .card-content {
  max-width: 250px;
  text-align: center;
}

.career-page .footer {
  margin-top: calc(var(--footer-shape-height) * -1);
  pointer-events: none;
  z-index: 200;
}

.career-page .footer__main {
  pointer-events: all;
}

.career-page {
  --slider-career-height: 800px;
  --slider-joinus-height: 700px;
}

.career-page .sc-career {
  --pd-section: 160px;
}

.career-page .sc-career__content {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.career-page .sc-career__slider {
  height: var(--slider-career-height);
  overflow: hidden;
  position: relative;
}

.career-page .sc-career__slider .slider-wrapper {
  height: 100%;
  width: 100%;
}

.career-page .sc-career__slider .slider-background img,
.career-page .sc-career__slider .slider-background picture {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 0;
}

.career-page .sc-career__slider .slider-item {
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 4;
}

.career-page .sc-career__slider .slider-item .container {
  height: 100%;
  max-height: calc(100% - 120px);
  padding-top: 80px;
}

.career-page .sc-career__slider .slider-img {
  height: 100%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.career-page .sc-career__slider .slider-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.career-page .sc-career__slider .slider-content {
  margin-left: auto;
  max-width: 500px;
}

.career-page .sc-career__slider .slider-content .contentdetail {
  height: calc(var(--lh28) * 5);
  margin-top: 15px;
  overflow: hidden;
  transition: height 0.4s;
}

.career-page .sc-career__slider .slider-content .btn-text-control {
  align-items: center;
  background-color: #fff;
  border-radius: 40px;
  display: flex;
  height: 55px;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  width: 65px;
}

.career-page .sc-career__slider .slider-content .btn-text-control:after,
.career-page .sc-career__slider .slider-content .btn-text-control:before {
  background-color: #086d46;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: all 0.4s;
  width: 2px;
}

.career-page .sc-career__slider .slider-content .btn-text-control:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.career-page .sc-career__slider .slider-content .btn-text-control.expanded:before {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.4s;
}

@media screen and (max-width: 767px) {
  .career-page .sc-career__slider .slider-content .btn-text-control {
    height: 40px;
    margin-top: 20px;
    width: 40px;
  }
}
.career-page .sc-career__slider .slider-control {
  bottom: 70px;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 5;
}

.career-page .sc-career__slider .slider-control .slcontrols {
  justify-content: flex-end;
}

@media screen and (max-width: 1199px) {
  .career-page .sc-career {
    --pd-section: 100px;
    --slider-career-height: 700px;
  }
  .career-page .sc-career__slider .slider-control {
    bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .career-page .sc-career {
    --pd-section: 65px;
  }
}
.career-page .joinus {
  position: relative;
}

.career-page .joinus__bg img,
.career-page .joinus__bg picture {
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  position: absolute;
  width: 100%;
}

.career-page .joinus__slider .flickity-viewport {
  height: 100% !important;
}

.career-page .joinus__slider .text-slider {
  height: var(--slider-joinus-height);
  max-width: 100%;
}

.career-page .joinus__slider-item {
  align-content: center;
  align-content: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  padding: 0 35px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .career-page .joinus__slider-item {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .career-page .joinus__slider-item {
    padding: 0;
  }
}
.career-page .joinus__slider .slider-text {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  height: 100%;
  justify-content: center;
}

.career-page .joinus__slider .slider-text .heading {
  margin-bottom: 0;
}

.career-page .joinus__slider .slider-text .contentdetail {
  margin: 20px 0 30px;
}

.career-page .joinus__slider .slider-image {
  align-items: flex-end;
  display: flex;
  grid-column: 2;
  height: 100%;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .career-page .joinus__slider .slider-image {
    display: none;
  }
  .career-page .joinus__slider .sc-slider__control {
    bottom: 0;
    justify-content: end;
    padding: 0 15px;
  }
  .career-page .joinus__slider .sc-slider__control .btnmain,
  .career-page .joinus__slider .sc-slider__control .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .career-page .joinus__slider .sc-slider__control .tab-button {
    background-color: transparent;
  }
  .career-page .joinus__slider .sc-slider__control .btnmain:hover svg path,
  .career-page .joinus__slider .sc-slider__control .productdetail-page .scnutrition .tab-button:hover svg path,
  .productdetail-page .scnutrition .career-page .joinus__slider .sc-slider__control .tab-button:hover svg path {
    fill: #086d46;
  }
}
.career-page .joinus__text .heading {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .career-page .joinus__text .heading {
    margin-bottom: 20px;
  }
}
.career-page .sc-achievement__slider .--grid-12 .outer {
  grid-column: 2/12;
  margin-top: 111px;
}

@media screen and (max-width: 991px) {
  .career-page .sc-achievement__slider .--grid-12 .outer {
    grid-column: initial;
  }
}
@media screen and (max-width: 767px) {
  .career-page .sc-achievement__slider .--grid-12 .outer {
    margin-top: 65px;
  }
}
.career-page .sc-achievement__slider .text-slider {
  max-width: 100%;
}

.career-page .sc-achievement__slider .text-slider .slider-item {
  width: 100%;
}

.career-page .sc-achievement__slider .text-slider .slider-item img {
  margin: 0 auto;
  max-width: 100%;
}

.career-page .sc-achievement__slider .text-slider .slider-heading {
  text-align: center;
}

.career-page .sc-achievement__slider .text-slider .slider-heading .heading {
  color: inherit;
}

@media screen and (max-width: 991px) {
  .career-page .sc-achievement__slider .sc-slider__control {
    bottom: 250px;
  }
}
@media screen and (max-width: 767px) {
  .career-page .sc-achievement__slider .sc-slider__control {
    bottom: 130px;
  }
}
.career-page .sc-testimonial {
  position: relative;
}

.career-page .sc-testimonial__slider {
  width: 67%;
}

@media screen and (max-width: 991px) {
  .career-page .sc-testimonial__slider {
    width: 100%;
  }
}
.career-page .sc-testimonial__bg img,
.career-page .sc-testimonial__bg picture {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

.career-page .sc-testimonial .testimonial-v2 {
  display: flex;
  height: 470px;
  margin-top: 100px;
}

.career-page .sc-testimonial .testimonial-wrapper {
  height: 40%;
}

.career-page .sc-testimonial .testimonial-wrapper .flickity-viewport {
  height: 100% !important;
}

.career-page .sc-testimonial .testimonial-wrapper:after,
.career-page .sc-testimonial .testimonial-wrapper:before {
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  width: 30px;
  z-index: 33;
}

.career-page .sc-testimonial .testimonial-wrapper:before {
  background-image: url(../img/quote-left.png);
  left: -40px;
  top: -20px;
}

@media screen and (max-width: 991px) {
  .career-page .sc-testimonial .testimonial-wrapper:before {
    left: 0;
    top: -40px;
  }
}
.career-page .sc-testimonial .testimonial-wrapper:after {
  background-image: url(../img/quote-right.png);
  bottom: 50px;
  right: 0;
}

@media screen and (max-width: 991px) {
  .career-page .sc-testimonial .testimonial-wrapper {
    height: 80%;
  }
}
.career-page .sc-testimonial .testimonial-item {
  height: 100%;
  width: 100%;
}

.career-page .sc-testimonial .testimonial-text {
  color: #086d46;
  font-family: nsb;
  font-size: var(--fs24);
  line-height: var(--lh36);
  position: relative;
}

.career-page .sc-testimonial .testimonial-description {
  font-size: var(--fs18);
  line-height: var(--lh26);
  margin-top: 35px;
}

.career-page .sc-testimonial .testimonial-description .user-name {
  color: #086d46;
  display: block;
}

.career-page .sc-testimonial .testimonial-description .user-pos {
  display: block;
}

.career-page .sc-testimonial .user-images {
  position: relative;
  width: 33%;
}

.career-page .sc-testimonial .user-images img,
.career-page .sc-testimonial .user-images picture {
  height: 100%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
  width: 100%;
}

.career-page .sc-testimonial .user-images img.active,
.career-page .sc-testimonial .user-images picture.active {
  opacity: 1;
  transition: 0.4s;
}

@media screen and (max-width: 991px) {
  .career-page .sc-testimonial .user-images {
    display: none;
  }
}
.career-page .sc-contact.--v2 .sc-contact__img {
  padding: 0;
  top: 0;
}

.career-page .sc-contact.--v2 .sc-contact__form {
  margin-top: calc(var(--form-vertical-gap) * -1);
}

@media screen and (max-width: 991px) {
  .career-page .sc-contact.--v2 .sc-contact__form {
    margin-top: 20px;
  }
}
.career-page .our-story .heading {
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .career-page .our-story .heading {
    margin-bottom: 20px;
  }
  .career-page {
    --slider-joinus-height: 500px;
  }
  .career-page .sc-slider__control .btnmain,
  .career-page .sc-slider__control .productdetail-page .scnutrition .tab-button,
  .productdetail-page .scnutrition .career-page .sc-slider__control .tab-button {
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .career-page {
    --slider-joinus-height: 400px;
  }
}
.btn-loading[disabled=disabled] {
  pointer-events: none;
  position: relative;
}

.btn-loading[disabled=disabled] > span {
  opacity: 0;
}

.btn-loading[disabled=disabled] > .loader > div,
.loader > div {
  height: 20px;
  width: 20px;
}

.loader > div {
  animation: spin 1.5s linear infinite;
  border: 2px solid #adbcbf;
  border-radius: 50%;
  border-top-color: transparent !important;
}

.loader.white > div {
  border-color: #fff;
}

.loader.center {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader.center > div {
  height: 30px;
  width: 30px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.hidden {
  display: none !important;
}

.alert-message {
  bottom: 2px;
  min-width: 180px;
  position: fixed;
  right: 55px;
  z-index: 99999999;
}

.alert {
  border: 1px solid transparent;
  border-radius: 4px;
  margin-bottom: 1rem;
  padding: 1rem;
  position: relative;
}

.alert .closebtn {
  cursor: pointer;
  font-size: 23px;
  position: absolute;
  right: 5px;
  top: 0;
}

.alert-success {
  background-color: #5cb85c;
  border-color: #7be125;
}

.alert-danger,
.alert-success {
  color: #fff;
  padding: 10px 30px 10px 15px;
}

.alert-danger {
  background-color: #ea7171;
}

.alert-exists {
  background-color: #ffce02;
  color: #000;
  padding: 10px 30px 10px 15px;
}

.exportpage .schero .heading {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.exportpage .schero .banner {
  display: flex;
  justify-content: center;
  margin: 80px 0;
}

.exportpage .schero .content {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.exportpage .schero .countries {
  margin: 0 auto 50px;
}

.exportpage .schero .countries ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.exportpage .schero .countries ul li {
  border: 1px solid #e5e5e5;
  border-radius: 40px;
  display: flex;
  margin: 10px;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 15px;
}

.exportpage .schero .countries ul li img {
  margin-right: 10px;
}

.bannertext.tag-search {
  --bannerHeight: 200px;
}

.form__group__recaptcha {
  margin-bottom: 30px;
  margin-top: 20px;
}

.form__group__recaptcha .error__text {
  bottom: -26px !important;
  left: 0;
}

@media (max-width: 992px) {
  .form__group__message .error__text {
    bottom: 0 !important;
    display: block;
    position: relative !important;
    text-align: right;
    width: 100%;
  }
  .form__group__recaptcha {
    margin-bottom: 20px;
    margin-top: 0;
  }
  .form__group__recaptcha .error__text {
    bottom: 0 !important;
    display: block;
    position: relative !important;
    text-align: left;
    width: 100%;
  }
}
#formJob .btnmain[disabled],
#formJob .productdetail-page .scnutrition [disabled].tab-button,
.productdetail-page .scnutrition #formJob [disabled].tab-button {
  opacity: 0.7;
}

#formJob .input-group.--error input {
  border-bottom: 1px solid #c50000;
}

span.muc-luc {
  font-weight: 700;
  text-align: center;
  display: block;
  font-size: 22px;
}

/* Định dạng cho mục lục */
.table-of-content {
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #f9f9f9;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}

/* Định dạng cho danh sách mục lục */
.table-of-content ol {
  list-style: none;
  padding-left: 0;
}

/* Định dạng cho mỗi mục trong mục lục */
.table-of-content li {
  margin-bottom: 5px;
}

/* Định dạng cho liên kết mục lục */
.table-of-content a {
  text-decoration: none;
  color: #0070c9;
}

/* Định dạng cho liên kết mục lục khi di chuột qua */
.table-of-content a:hover {
  text-decoration: underline;
  color: #b40404;
}

/* Định dạng cho các tiêu đề h2, h3, h4, h5, h6 trong mục lục */
.table-of-content li a {
  display: block;
}

/* Định dạng thụt vào cho các tiêu đề h3 trong mục lục */
.table-of-content li li a {
  margin-left: 10px;
}

/* Định dạng thụt vào cho các tiêu đề h4 trong mục lục */
.table-of-content li li li a {
  margin-left: 20px;
}

/* Định dạng thụt vào cho các tiêu đề h5 trong mục lục */
.table-of-content li li li li a {
  margin-left: 30px;
}

/* Định dạng thụt vào cho các tiêu đề h6 trong mục lục */
.table-of-content li li li li li a {
  margin-left: 40px;
}

.nutritionist .history-of-development .timeline__item span {
  color: #086d46;
}
