@font-face {
  font-family: "Gotham-Light";
  src: url("./fonts/Gotham-Light.otf") format("opentype");
}
@font-face {
  font-family: "Gotham-Book";
  src: url("./fonts/Gotham-Book.otf") format("opentype");
}
@font-face {
  font-family: "Gotham-Medium";
  src: url("./fonts/Gotham-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Gotham-Bold";
  src: url("./fonts/Gotham-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Gotham-Black";
  src: url("/wp-content/themes/nutriag/custom/css/fonts/Gotham-Black.woff") format("woff");
}

:root {
  --container-nutriag-max-width: 1340px;
  --nc--green-10: #006523;
  --nc--green-20: #0A6B00;
  --nc--green-30: #0D8F45;
  --nc--green-40: #128D44;
  --nc--green-50: #009933;
  --nc--green-60: #AACE38;
  --nc--green-70: #EFF4ED;
  --nc--grey-10: #333;
  --nc--grey-20: #484848;
  --nc--grey-30: #484848; /*bodytext*/
  --nc--grey-40: #8F908F;
  --nc--product-note: #FF4200;
  --nt--x-padding: 15px;
}
body {
/*  background: url('/wp-content/themes/nutriag/custom/img/nutriag-loading.jpg') center 20vh no-repeat; */
  font-family: 'Gotham-Light',Roboto,Arial,Helvetica,sans-serif;
  color: black;
  min-height: 100vh;
}
body main#content {
  background: white;
  transition: opacity 0.5s ease;
  opacity: 1;
}
body.nutriag-loading main#content {
  opacity: 0;
}
body .e-con {
  --content-width: min(100%,var(--container-nutriag-max-width));
}
a {
  color: var(--nc--green-10);
  font-family: 'Gotham-Book',Roboto,Arial,Helvetica,sans-serif;
}
p a {
  font-family: inherit;
}
main p {
  margin-block-end: 0;
  padding-block-end: 1.2rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Gotham-Black',Roboto,Arial,Helvetica,sans-serif;
  font-weight: normal;
  color: black;
  margin: 0;
}
strong {
  font-family: 'Gotham-Bold',Roboto,Arial,Helvetica,sans-serif;
  font-weight: normal;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
figcaption {
  font-style: initial;
}
address {
  font-style: initial;
}
address a {
  font-family: 'Gotham-Black';
  color: var(--nc--green-10);
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
input[type="button"],
input[type="submit"],
button, .btn {
  border: 0;
  color: var(--nc--grey-10);
  background-color: var(--nc--green-60);
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
:is(input[type="submit"], input[type="button"], button, .btn):hover {
  background-color: var(--nc--green-50);
  color: white;
}
.disable-scroll {
  overflow: hidden;
}
.nt-container-padding {
  padding-left: var(--nt--x-padding);
  padding-right: var(--nt--x-padding);
}
.nt-article-body ul {
  list-style: disc;
  padding-left: 0;
  margin-bottom: 0;
  padding-block-end: 1.2rem;
}
.nt-article-body ul li {
  padding-left: 1em;
}
.nt-conditional-hide {
  display: none;
}
:is(.elementor-widget-text-editor, .elementor-widget-n-accordion) ul {
  list-style: disc;
  margin-left: 1em;
  margin-bottom: 1em;
}
h1.heading-dual {
  font-size: 51px;
  margin-bottom: 0.2em;
}
h3.heading-dual {
  font-size: 32px;
}
[class*='wpforms-confirmation'] p {
  opacity: 1 !important;
  transform: translateY(0%) !important;
}
@media (min-width: 768px) {
  h1.heading-dual {
    font-size: 76px;
  }
  .wpforms-layout-2-columns .wpforms-field-container {
    display: grid;
    grid-template: auto / 1fr 1fr;
  }
  .wpforms-layout-2-columns .wpforms-field-container :is(input,select) {
    max-width: 95%;
  }
}
/*
@media (max-width: 575px) {
  .hide-max-xs {
    display: none;
  }
}
@media (min-width: 576px) {
  .hide-min-sm {
    display: none;
  }
}
@media (max-width: 767px) {
  .hide-max-sm {
    display: none;
  }
}
@media (min-width: 768px) {
  .hide-min-md {
    display: none;
  }
}
@media (max-width: 991px) {
  .hide-max-md {
    display: none;
  }
}
@media (min-width: 992px) {
  .hide-min-lg {
    display: none;
  }
}
@media (max-width: 1199px) {
  .hide-max-lg {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hide-min-xl {
    display: none;
  }
}
*/

/* Modal */
.nt-modal-container {
  scrollbar-color: #333 transparent;
  scrollbar-width: thin;
}

.nt-modal-container::-webkit-scrollbar {
  width: 10px;
}

.nt-modal-container::-webkit-scrollbar-thumb {
  background: #333;
}

.nt-modal-container::-webkit-scrollbar-track {
  background: transparent;
}
.nt-modal-overlay {
  opacity: 0;
  display: flex;
  z-index: -10;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  justify-content: center;
  align-items: center;
  transition: z-index 0s linear 0.3s, opacity 0.3s ease 0s;
}
.nt-modal-overlay.show {
  opacity: 1;
  z-index: 100;
  transition: z-index 0s linear 0s, opacity 0.3s ease 0s;
}
.nt-modal-container {
  background: white;
  padding: 50px;
  position: relative;
  width: 95vw;
  max-height: 95vh;
  box-shadow: 0px 0px 35px rgba(0,0,0,0.5);
  overflow: auto;
}
.nt-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: none;
  color: var(--nt--green-10);
  font-size: 2rem;
  font-family: 'Gotham-Black';
  padding: 10px;
  line-height: 1.2rem;
}
.nt-modal-close:hover {
  background: var(--nc--grey-10);
}
@media (min-width: 768px) {
  .nt-modal-container {
    width: 70vw;
    max-height: 70vh;
  }
}
@media (min-width: 992px) {
  .nt-modal-container {
    width: 50vw;
    max-height: 70vh;
  }
}

/* MENU */
#site-header :is(.site-navigation-country, .nav-popular) {
  display: none;
}
#site-header :is(.site-navigation-country, .nav-popular).show {
  display: flex;
}
.site-header {
  background: white;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #a8d7f1, #7fba9c, #e2e9ef);
}
.site-branding {
  max-width: 200px;
}
.site-navigation ul.menu li a {
  color: var(--nc--grey-10);
  font-family: 'Gotham-Medium',Roboto,Arial,Helvetica,sans-serif;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding: 8px;
}
.site-navigation ul.menu li a:hover {
  color: black;
}

.site-navigation ul.menu li.menu-item-has-children::after {
  color: var(--nc--green-20);
}
.site-navigation ul.menu li ul {
  background: transparent;
}
.site-navigation ul.menu li ul li {
  border-width: 0px;
}

.site-navigation ul.menu li ul li a {
  display: block;
  padding: 5px 20px;
  margin: 0 10px 0 0;
  color: var(--nc--green-10);
  width: fit-content;
  text-wrap: nowrap;
}
.nav-popular ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.nav-popular :is(span,a) {
  display: block;
  padding: 0.25em 1.5em;
  border-radius: 30px;
  font-family: 'Gotham-Medium';
  font-size: 0.95rem;
}
.nav-popular span {
  color: var(--nc--grey-40);
}
.nav-popular a {
  background: var(--nc--green-70);
  color: var(--nc--green-10);
  margin-right: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-popular li:hover a {
  background: var(--nc--green-10);
  color: white;
}

/* SEARCH */
.nav-search-form {
  position: relative;
  margin-right: 0.25em;
  display: flex;
  align-items: center;
}
.nav-search-form::after {
  content: "\f002";
  display: block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  top: 50%;
  transform: translateY(-50%);
  left: 1em;
  position: absolute;
}
.nav-search-form .nav-search-text {
  padding-left: 2.5em;
}
.nav-search-clear {
  background: transparent;
  font-family: 'Gotham-Medium';
  color: black;
  position: absolute;
  right: 1.25em;
  display: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-search-clear:hover {
  color: var(--nc--green-10);
}

.nav-search-label {
  background: transparent;
  font-family: 'Gotham-Medium';
  color: var(--nc--green-10);
  position: absolute;
  right: 1.25em;
}
.nav-search-panel {
  display: none;
  grid-template: auto / 3fr 1fr;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: white;
}

.nav-search-empty.show,
.nav-search-results.show {
  display: block;
}
.nav-search-empty,
.nav-search-results {
  display: none;
  column-count: 2;
  background: transparent;
  padding: 2em;
  position: absolute;
  top: 125px;
  z-index: 5;
}
.nav-search-results a {
  padding: 0.5em 0;
  display: inline-block;
  font-family: 'Gotham-Medium';
}
.nav-search-overlay.show {
  display: block;
}
.nav-search-overlay {
  display: none;
  background-color: rgba(255,255,255,0.9);
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 0;
  right: 0;
  padding: 50px;
  box-shadow: 0px 9px 10px rgba(0,0,0,0.5)
}
.emt-lang-toggle {
  display: none;
}

.country-select {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: center;
}
.i18n-options {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.i18n-options a {
  display: inline-block;
  font-size: 0.95rem;
  margin-left: 10px;
}
.i18n-options .menu-item-country {
  text-indent: -1000px;
  overflow: hidden;
  background: url(/wp-content/themes/nutriag/custom/img/flags-select.jpg) no-repeat;
  background-position: 1px 1px;
  width: 40px;
  height: 25px;
  border: 1px solid transparent;
}
.i18n-options .menu-item-country.active {
  border-color: var(--nc--green-10);
}
.i18n-options [data-country="usa"] {
  background-position: -43px 1px;
}
.menu-item-lang {
  text-transform: uppercase;
  color: black;
}
.menu-item-lang:hover {
  text-decoration: underline;
}
.menu-item-lang.active {
  font-family: 'Gotham-Medium';
  color: var(--nc--green-10);
  text-decoration: underline;
}

@media (max-width: 1199px) {
  body.disable-scroll-mobile {
    overflow: hidden;
  }
  .site-navigation-country>ul.menu:is(#menu-menu-canada,#menu-menu-usa) {
    display: none;
  }
  .site-navigation-country.show-mobile-menu>ul.menu:is(#menu-menu-canada,#menu-menu-usa) {
    display: flex;
  }
  .site-navigation>ul.menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 100vh;
    background: white;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    z-index: 100;
    padding: 70px 15px 15px 15px;
    box-shadow: 0px 9px 10px rgba(0,0,0,0.5);
    overflow: auto;
  }
  .site-navigation ul.menu>li {
    padding: 0;
    padding-inline-end: 0 !important;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1em;
  }
  .site-navigation ul.menu>li.menu-item-has-children::after {
    content: '';
  }
  .site-navigation ul.menu>li>a {
    font-size: 2rem;
    font-family: 'Gotham-Bold';
  }
  .site-navigation ul.menu ul.sub-menu {
    display: block;
    position: relative;
    box-shadow: none;
    transform: none;
  }
  .site-navigation ul.menu ul.sub-menu li {
    flex-direction: column;
    align-items: center;
  }
  .site-navigation ul.menu ul.sub-menu li a {
    font-size: 1.2rem;
    margin: 0;
  }
  .mobile-menu-btn {
    position: fixed;
    top: 7px;
    right: 5px;
    background: none !important;
    font-size: 3rem;
    font-family: 'Gotham-Black';
    color: black !important;
    z-index: 100;
    display: block;
  }
  .mobile-menu-btn {
    position: absolute;
  }
  .mobile-menu-btn::after {
    font-size: 4rem;
    content: '≡';
  }
  .mobile-menu-btn.show-mobile-menu {
    top: 15px;
    right: 7px;
  }
  .mobile-menu-btn.show-mobile-menu::after {
    font-family: 'Gotham-Light';
    font-size: 3rem;
    content: '×';
  }
}

@media (max-width: 767px) {
  /* MENU */
  .site-header-boxed {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    box-sizing: border-box;
  }
  .country-select {
    visibility: hidden;
  }
  .site-branding {
  }
  .site-branding>a {
    margin-bottom: 15px;
  }
  .site-navigation {
  }
  .nav-popular {
  }
  .nav-popular ul {
    justify-content: center;
  }
  .nav-popular ul li {
    padding: 0.5em 0;
  }
  #site-header :is(.site-navigation-country, .nav-popular) {
     width: 100%;
     align-items: center;
     justify-content: center;
     margin-bottom: 15px;
  }

  /* SEARCH */
  .nav-search-control {
    display: none;
  }
  .site-navigation-country .nav-search-panel {
    display: block;
    position: relative;
  }
  .nav-search-component {
    width: 100%;
  }
  .nav-search-toggle-search {
    display: none;
  }
  .nav-search-overlay {
    top: 162px;
  }
  :is(.nav-search-empty,.nav-search-results).show {
    top: 42px;
  }
  .nav-search-clear.show {
    display: block;
  }
  .nav-popular-label,
  .nav-search-toggle-main-menu,
  .nav-search-toggle-mobile-menu,
  .nav-search-label,
  .nav-search-text-longer {
    display: none;
  }
  .nav-search-text-shorter {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  /* MENU */
  .site-header-boxed {
    display: grid;
    grid-template: 30px auto auto / 220px auto;
    width: min(100%,var(--container-nutriag-max-width));
  }
  .country-select {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .site-navigation-country {
    grid-row: 2/3;
    grid-column: 2/3;
    position: relative;
  }
  .nav-search-control {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .nav-search-toggle-mobile-menu {
    font-size: 3rem;
    font-family: 'Gotham-Bold';
  }
  .site-branding {
    grid-row: 2/3;
  }
  .mobile-menu-btn {
    display: none;
  }
  .nav-popular {
    height: 55px;
    grid-row: 3/4;
    grid-column: 1/3;
    margin-bottom: 7px;
  }
  .nav-popular ul {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  /* SEARCH */
  .site-navigation-country .nav-search-panel {
    display: grid;
  }
  .nav-search-toggle-mobile-menu {
    line-height: 0;
    font-size: 3rem;
    background-color: transparent !important;
    color: initial !important;
  }
  .nav-search-clear.show {
    display: block;
  }
  .nav-popular-label {
    display: none;
  }
  .nav-search-toggle-search,
  .nav-search-toggle-main-menu,
  .nav-search-label,
  .nav-search-text-longer {
    display: none;
  }
  .mobile-menu-btn.show-mobile-menu,
  .nav-search-toggle-mobile-menu,
  .nav-search-text-shorter {
    display: block;
  }
  .nav-search-empty {
    top: 150px;
  }
}


@media (min-width: 1200px) {
  .site-header-boxed {
    display: grid;
    grid-template: 30px 65px 60px / 220px auto;
    width: min(100%,var(--container-nutriag-max-width));
    position: relative;
  }
  .site-header .site-branding {
    grid-column: 1/2;
    grid-row: 2/4;
    justify-content: flex-start;
  }
  .mobile-menu-btn {
    display: none;
  }
  .country-select {
    grid-column: 2/3;
  }
  .site-navigation {
    height: 55px;
  }
  .site-navigation {
    position: relative;
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .site-navigation ul.menu>li {
    padding-inline-end: 10px;
  }
  .site-navigation ul.menu ul.sub-menu {
    transform: translateX(-20%);
    box-shadow: 0px 9px 10px rgba(0,0,0,0.5);
    background-color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-bottom: 0.5em
  }
  .site-navigation ul.menu>li:first-child ul.sub-menu {
    transform: translateX(0%);
  }
  .nav-popular {
    grid-row: 3/4;
    grid-column: 2/3;
  }
  .nav-popular ul {
    align-items: flex-start;
  }
  .nav-popular ul li:first-child span {
    padding-left: 0.5em;
  }

  /* I18N */
  .site-navigation ul.menu li.i18n-mobile {
    display: none;
  }
  /* SEARCH */

  .site-navigation-country.show-search :is(#menu-menu-canada, #menu-menu-usa, .nav-search-toggle-search) {
    display: none;
  }
  .site-navigation-country.show-search :is(.nav-search-panel) {
    display: grid;
  }
  .nav-search-toggle-search,
  .nav-search-label,
  .nav-search-toggle-main-menu {
    background: transparent;
    font-family: 'Gotham-Medium';
  }

  .nav-search-toggle-search::before {
    content: "\f002";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    font-size: inherit;
    text-rendering: auto;
    margin-right: 0.5em;
  }
  .nav-search-toggle-main-menu,
  .nav-search-label,
  .nav-search-text-longer {
    display: block;
  }
  .nav-search-toggle-mobile-menu,
  .nav-search-text-shorter {
    display: none;
  }
  .nav-search-control {
    display: flex;
    align-items: center;
  }
}

.site-footer strong {
  color: var(--nc--green-20);
}

#welcome-select-country.show {
  z-index: 200;
  opacity: 1;
}
#welcome-select-country {
  display: flex;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: white;
  opacity: 0;
  transition: z-index 0s linear 0.3s, opacity 0.3s ease 0s;
}
#welcome-select-country::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  background: white url(/wp-content/themes/nutriag/custom/img/welcome/WelcomePage-Desktop-Background-lower.jpg) center center no-repeat;
  background-size: cover;
}
.welcome-inner {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--nc--grey-10);
  padding-top: 10vh;
}
.welcome-header {
  font-family: 'Gotham-Black';
  font-size: 2rem;
  margin-bottom: 0;
}
.welcome-company {
  color: var(--nc--green-10);
}
.welcome-instruction {
  font-size: 1.2rem;
  margin-bottom: 2em;
}

#welcome-select-country .btn-country {
  border: 0;
  color: transparent;
}

#welcome-select-country .btn-country {
  display: block;
  width: 450px;
  background: center center no-repeat;
  margin-bottom: 50px;
  background-size: contain;
  aspect-ratio: 2.8;
}
#welcome-select-country .btn-country[data-country="canada"] {
  background-image: url(/wp-content/themes/nutriag/custom/img/welcome/Canada-Welcome-Logo-Desktop.png);
}
#welcome-select-country .btn-country[data-country="usa"] {
  background-image: url(/wp-content/themes/nutriag/custom/img/welcome/USA-Welcome-Logo-Desktop.png);
}


.home-page-video video {
  transition: opacity 1s ease;
  opacity: 0;
}
.home-page-video video.show {
  opacity: 1;
}

nav.bread-trail {
  position: relative;
  z-index: 1;
  padding: 30px 0 20px 0;
}
nav.bread-trail ul li {
  display: inline-block;
  margin: 0;
}
nav.bread-trail ul li>* {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 0.95rem;
}
nav.bread-trail :is(span, a) {
  font-family: 'Gotham-Book';
}
nav.bread-trail a:hover {
  text-decoration: underline;
}
nav.bread-trail ul li::after {
  content: '>';
  margin-right: 0.5em;
  display: inline-block;
}
nav.bread-trail ul li:last-child::after {
  content: '';
}
@media (min-width: 768px) {
  nav.bread-trail {
    padding: 20px 0 10px 0;
  }
}

.e-n-accordion-item-title::before {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 0;
  height: 1px;
  width: 104%;
  background: linear-gradient(to right, #e2e9ef, #a8d7f1, #7fba9c, #e2e9ef);
}
.e-n-accordion-item-title-text span {
  display: inline-block;
  padding-right: 0.25em;
}
.e-n-accordion-item-title[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.e-n-accordion-item-title::after {
  transition: transform 0.5s ease;
  transform: rotate(0deg);
  align-items: center;
  color: var(--nc--green-10);
  content: '▼';
  display: flex;
  font-size: 1.2em;
  justify-content: center;
  text-decoration: none;
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -0.7em;
}
.e-n-accordion-item-title .e-n-accordion-item-title-icon {
  display: none;
}

:root {
  --dd--speed: 0.3s;
}
.nutriag-drop-down ul {
  scrollbar-color: #333 transparent;
  scrollbar-width: thin;
}

.nutriag-drop-down ul::-webkit-scrollbar {
  width: 10px;
}

.nutriag-drop-down ul::-webkit-scrollbar-thumb {
  background: #333;
}

.nutriag-drop-down ul::-webkit-scrollbar-track {
  background: transparent;
}
.nutriag-drop-down {
  position: relative;
  z-index: 20;
  color: var(--nc--grey-10);
  width: fit-content;
  cursor: pointer;
  max-height: 2em;
}
.nutriag-drop-down-label {
  background: var(--nc--green-60);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-family: 'Gotham-Bold';
  margin: 0;
  border-radius: 20px;
  transition: border-bottom-left-radius calc(var(--dd--speed) / 20) linear var(--dd--speed), border-bottom-right-radius calc(var(--dd--speed) / 20) linear var(--dd--speed);
}
.nutriag-drop-down-label::after {
  content: '▼';
  display: inline-block;
  margin-left: 0.5em;
}
.nutriag-drop-down ul {
  background: var(--nc--green-60);
  height: 0;
  max-height: 50vh;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: height var(--dd--speed) ease;
}
.nutriag-drop-down li:hover a {
  background: var(--nc--green-70);
}
.nutriag-drop-down li a {
  display: block;
  color: black;
  padding: 10px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nutriag-drop-down li:last-child a {
}
.nutriag-drop-down.expand .nutriag-drop-down-label {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  transition: border-bottom-left-radius calc(var(--dd--speed) / 2) linear, border-bottom-right-radius cal(var(--dd--speed) / 2) linear;
}
.nutriag-drop-down.expand ul {
  height: 50vh;
}

.nutrient-list {
  padding: 25px 30px;
  position: relative;
  height: 75px;
  box-sizing: border-box;
  transition: height 0.5s ease;
  overflow: hidden;
}
.nutrient-list-toggle:is(:active, :focus, :focus-within),
.nutrient-list-toggle {
  background: none;
  color: black;
  padding: 0.5rem;
  font-size: 1.2rem;
}
.nutrient-list-toggle:hover {
  background-color: var(--nc--green-10);
  color: white;
}
.nutrient-list-heading {
  font-family: 'Gotham-Bold';
  display: flex;
  align-items: center;
  align-content: center;
  margin-bottom: 5px;
}
.nutrient-list-heading::before {
  content: url(/wp-content/themes/nutriag/custom/img/icon-filter.jpg);
  margin-right: 0.5em;
  padding-top: 6px;
}
.nutrient-list-heading span {
  display: inline-block;
  padding: 0 0.5em;
}
.nutrient-list-clear {
  border: 0;
  padding: 0;
  margin: 0 0.25em;
  background: none !important;
  color: var(--nc--green-10);
  border-radius: 20px;
}
.nutrient-list-clear:is(:hover, :active, :focus, :focus-within) {
  text-decoration: underline;
  color: var(--nc--green-10) !important;
}
.nutrient-list :is(ul, ol) {
  column-count: 2;
  list-style: none;
}
.nutrient-list :is(ul, ol) li {
  white-space: nowrap;
  padding: 0.5em 0;
}

.nutrient-list label {
  display: inline-block;
  padding-left: 0.5em;
}
.nutrient-list-closed {
  display: block;
  transition: opacity 0.5s ease;
}
.nutrient-list-opened {
  display: none;
  transition: opacity 0.5s ease;
}
.show-nutrients .nutrient-list-closed {
  display: none;
}
.show-nutrients .nutrient-list-opened {
  display: block;
}
@media (min-width: 576px) {
  .nutrient-list :is(ul, ol) {
    column-count: 3;
  }
}
@media (min-width: 768px) {
  .nutrient-list {
    height: fit-content !important;
  }
  .nutrient-list-closed {
    display: none;
  }
  .nutrient-list-opened {
    display: block;
  }
  .nutrient-list-toggle:is(:hover, :active, :focus, :focus-within) {
    background: none !important;
    color: black !important;
    cursor: unset;
  }
  .nutrient-list :is(ul, ol) {
    column-count: 4;
  }
}
@media (min-width: 992px) {
  .nutrient-list :is(ul, ol) {
    column-count: 6;
  }
}
@media (min-width: 1200px) {
  .nutrient-list :is(ul, ol) {
    column-count: 7;
  }
}

.product-list-widget {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 30px;
  overflow: hidden;
}
.product-list-widget::after {
    content: '';
  position: absolute;
  top: 0;
  height: 1px;
  width: 110%;
  transform: translateX(-5%);
  background: linear-gradient(to right, #e2e9ef, #a8d7f1, #7fba9c, #e2e9ef);

  bottom: 0;
  top: unset;
}
.product-list-widget h3 {
  padding: 30px 50px 25px 30px;
  position: relative;
  margin-bottom: 0;
}
.product-list-widget h3::before {
    content: '';
  position: absolute;
  top: 0;
  height: 1px;
  width: 110%;
  transform: translateX(-5%);
  background: linear-gradient(to right, #e2e9ef, #a8d7f1, #7fba9c, #e2e9ef);

  bottom: 0;
  top: unset;
}
.product-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.product-list .product.hide {
  display: none;
}
.product-list .product {
  display: block;
  max-width: 100%;
}
.product-list .product a {
  display: block;
  padding: 15px;
  text-align: center;
  color: var(--nc--grey-10);
  font-size: 1.2rem;
}
.product-list .product:hover a {
  color: var(--nc--green-10);
}
.product-list .product-thumb-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.product-list .product-thumb-container img {
  max-width: 65%;
  transition: transform 0.3s ease;
}
.product-list .product:hover .product-thumb-container img {
  transform: scale(1.1, 1.1);
}
.product-list .product-name {
  display: block;
}
.product-list .product-special-note {
  font-size: 0.85rem;
  color: var(--nc--product-note);
  display: block;
}
@media (min-width: 768px) {
  .product-list .product {
    max-width: 33%;
  }
  .product-list .product-thumb-container img {
    max-width: 100%;
  }
  .product-list .product :is(a, .product-special-note) {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .product-list .product {
    max-width: 20%;
  }
  .product-list .product :is(a, .product-special-note) {
    font-size: 0.9rem;
  }
}
@media (min-width: 1025px) {
  .product-list .product {
    max-width: 12%;
  }
}

body.page-id-101 .product-list-widget h3 {
  padding-left: 0;
}
@media (min-width: 768px) {
  body.page-id-101 .product-list-widget h3 {
    padding-left: 30px;
  }
}
@media (max-width: 1199px) {
  body.page-id-101 main#content {
    max-width: unset;
  }
}



.elementor-widget-container .product-line-cube {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.product-line-cube .product-line-row-1 {
  color: white;
  margin: 0;
  font-family: 'Gotham-Bold';
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.product-line-cube .product-line-row-2 {
  color: white;
  font-family: 'Gotham-Book';
  font-size: 1.4rem;
  line-height: 2rem;
  margin-bottom: 0.3em;
}
.product-line-cube .product-line-row-3 {
  color: white;
  font-family: 'Gotham-Medium';
  font-size: 1.4rem;
  line-height: 1.8rem;
}
.product-line-cube sup {
  position: relative;
  color: white;
  font-size: 0.9rem;
  top: -25px;
}
@media (min-width: 768px) {
  .elementor-widget-container .product-line-cube {
    aspect-ratio: 1;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .product-line-grid .elementor-widget-container .product-line-cube {
    padding: 1rem;
  }
  .product-line-grid .product-line-cube .product-line-row-1 {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
  .product-line-grid .product-line-cube .product-line-row-2 {
    font-size: 1rem;
    line-height: 1rem;
    margin-bottom: 0.3em;
  }
  .product-line-grid .product-line-cube .product-line-row-3 {
    font-size: 1rem;
    line-height: 1rem;
  }
  .product-line-grid .product-line-cube sup {
    font-size: 0.7rem;
    top: -25px;
  }
}

.elementor-widget-product_line .elementor-widget-container {
  transition: transform 0.1s ease;
}
.elementor-widget-product_line .elementor-widget-container:hover {
  transform: scale(1.05, 1.05);
}
@media (max-width: 767px) {
  .elementor-widget-product_line .elementor-widget-container {
    width: calc(100% + 2*var(--nt--x-padding));
    margin-left: calc(-1*var(--nt--x-padding));
  }
}

.product-line-field-image .elementor-widget-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 0;
  width: 100%;
}
.product-line-field-image .elementor-widget-container img {
  width: fit-content;
  max-width: fit-content;
}
.product-line-thumb::before {
  display: none;
}
.product-line-tagline .elementor-heading-title {
  font-size: 43px !important;
}
@media (min-width: 768px) {
  .product-line-tagline .elementor-heading-title {
    font-size: 50px !important;
  }
}
@media (max-width: 1024px) {
  body.page-id-88 main#content {
    padding-inline-end: 0;
    padding-inline-start: 0;
  }
  .product-line-field-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .product-line-field-image .elementor-widget-container img.sca-active {
    transform: translateY(-20%);
  }
  .product-line-gradient {
    width: 100%;
    min-height: 200px;
  }
  .product-line-gradient .product-line-cube {
    position: absolute;
    bottom: 0;
  }
  .product-line-right {
    padding-left: var(--nt--x-padding);
    padding-right: var(--nt--x-padding);
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .product-line-description-area {
    padding-left: var(--nt--x-padding);
    padding-right: var(--nt--x-padding);
  }
}

@media (min-width: 1025px) {

  .product-line-field-image .elementor-widget-container {
    aspect-ratio: 1;
  }
  .product-line-field-image .elementor-widget-container img {
    height: 150%;
    transform: translateY(0%);
    margin-bottom: -35%;
  }
  .product-line-field-image .elementor-widget-container img.sca-active {
    transform: translateY(-20%);
  }
  .product-line-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    aspect-ratio: 1;
    background-color: unset !important;
  }
}
@media (max-width: 1199px) {
  body.page-id-88 main#content {
    max-width: unset;
  }
}


.crop-list {
  list-style: none;
  text-align: center;
}
.crop-list .crop-item {
  margin: 0.5em 0;
  display: inline-block;
}
.crop-list .crop-item a {
  display: inline-block;
  padding: 0.5em 1em;
  color: var(--nc--green-10);
  background-color: var(--nc--green-70);
  font-family: 'Gotham-Medium';
  font-size: 1.2rem;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 100px;
}
.crop-list .crop-item:hover a {
  background-color: var(--nc--green-10);
  color: white;
}
.crop-item-suffix {
  font-size: 0.8em;
}
@media (min-width: 992px) {
  .crop-list {
    text-align: left;
    column-gap: 5rem;
    column-count: 4;
  }
  .crop-list .crop-item {
    display: block;
  }
}

.nt-crop-conditional p,
.nt-crop-body p {
  padding-bottom: 1rem;
  padding-block-end: 0;
  margin-block-end: 0;
}
@media (max-width: 1199px) {
  body.page-id-126 main#content {
    max-width: unset;
  }
}

@media (min-width: 1025px) {
  /* Layout Single */
  .crop-product-layout-single {
    display: block;
  }
  .crop-product-layout-single .crop-section-1>.crop-section-children {
    column-count: 3;
  }

  /* Layout Narrow Wide */
  .crop-product-layout-narrow-wide {
    display: grid;
    grid-template: auto / 1fr 1fr 1fr;
    grid-gap: 30px;
  }
  .crop-product-layout-narrow-wide .crop-section-1:nth-child(1) {
    grid-column: 1/2;
  }
  .crop-product-layout-narrow-wide .crop-section-1:nth-child(2) {
    grid-column: 2/4;
  }
  .crop-product-layout-narrow-wide .crop-section-1:nth-child(2)>.crop-section-children {
    column-count: 2;
  }

  /* Layout Wide Narrow */
  .crop-product-layout-wide-narrow {
    display: grid;
    grid-template: auto / 1fr 1fr 1fr;
    grid-gap: 30px;
  }
  .crop-product-layout-wide-narrow .crop-section-1:nth-child(1) {
    grid-column: 1/3;
  }
  .crop-product-layout-wide-narrow .crop-section-1:nth-child(2) {
    grid-column: 3/4;
  }
  .crop-product-layout-wide-narrow .crop-section-1:nth-child(1)>.crop-section-children {
    column-count: 2;
  }
}
/* Overall Crop Styles */
.crop-product-list .crop-section-2 {
  break-inside: avoid-column;
}

.crop-section-header-container {
  margin-bottom: 1em;
}
.crop-section-header {
  text-transform: uppercase;
  font-family: 'Gotham-Book';
  display: inline-block;
  background: #f7f9f6;
  padding: 10px 15px;
  border-radius: 10px;
}
.crop-section-2 {
  padding: 0 15px 1em 15px;
  margin-bottom: 1em;
  /* border-bottom: 1px dotted var(--nc--grey-10); */
}
.crop-section-2:nth-child(1) {
  border-top: 0;
}
.crop-section-2 .crop-section-header-container {
  margin-bottom: 0.5em;
}
.crop-section-2 .crop-section-header {
  font-family: 'Gotham-Bold';
  background: transparent;
  padding: 0;
  display: block;
}
.crop-product-list {
  padding: 0;
  margin-bottom: 0.2em;
}
.crop-product-list-items>* {
  margin-bottom: 0.5em;
  line-height: 1.2rem;
}
.crop-product-list-items>br:first-child {
  display: none;
}
.crop-section-2 a {
  font-family: 'Gotham-Medium';
  text-decoration: underline;
}
:is(.crop-section-prefix,
.crop-section-suffix,
.crop-product-prefix,
.crop-product-suffix) {
  display: none;
}
:is(.crop-section-prefix,
.crop-section-suffix).show {
  display: block;
}
:is(.crop-product-prefix,
.crop-product-suffix).show {
  display: inline-block;
}
.crop-section-prefix,
.crop-section-suffix {
  font-style: italic;
}
.crop-section-1>.crop-section-header-container .crop-section-prefix,
.crop-section-1>.crop-section-header-container .crop-section-suffix {
  padding: 0 10px;
  font-size: 0.9rem;
}

.crop-learn-more::before {
  content: '';
  position: absolute;
  left: -2%;
  top: 1px;
  height: 1px;
  width: 104%;
  background: linear-gradient(to right, #e2e9ef, #a8d7f1, #7fba9c, #e2e9ef);
}


:root {
  --nt--symptom-speed: 0.5s;
}
.deficiency-list {
  display: grid;
  grid-template: auto / 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}
.deficiency-item {
  color: black;
  height: 100%;
}
.deficiency-item-content {
  background-color: transparent;
  transition: background-color 0.5s ease;
  height: 100%;
}
.deficiency-item:hover .deficiency-item-content {
  background-color: #efefef;
}
.deficiency-item.show-products .deficiency-item-content {
  background-color: var(--nc--green-70);
}
.deficiency-item figure {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  margin-bottom: 0 !important;
  position: relative;
}
.deficiency-item figure::after {
  content: '';
  background: url(/wp-content/themes/nutriag/custom/img/magnifying-glass.png) center center no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}
.deficiency-item figure img {
  transition: transform 0.3s ease;
  width: 100%;
}
.deficiency-item:hover figure img {
  transform: scale(1.3, 1.3);
}
.deficiency-item h2 {
  color: var(--nc--green-10);
  margin-bottom: 0;
}
.deficiency-item .line-2 {
  font-size: 1.3rem;
  font-family: 'Gotham-Medium';
  margin-bottom: 0.5em;
  display: block;
}

.deficiency-info {
  padding: 15px 20px;
  transition: height var(--nt--symptom-speed) ease;
}
.show-products .deficiency-info {
}
.deficiency-detail {
  position: relative;
}
.deficiency-item .label-symptoms {
  font-family: 'Gotham-Book';
}
.deficiency-item .label-recommend {
  padding-bottom: 0.5em;
}
.deficiency-symptoms {
  position: relative;
  opacity: 1;
  transition: opacity var(--nt--symptom-speed) ease, z-index 0s linear;
}
.deficiency-products {
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  transition: z-index 0s linear var(--nt--symptom-speed), opacity var(--nt--symptom-speed) ease;
}
.deficiency-item.show-products .deficiency-symptoms {
  opacity: 0;
  position: absolute;
  z-index: -1;
  transition: z-index 0s linear var(--nt--symptom-speed), opacity var(--nt--symptom-speed) ease;
}
.deficiency-item.show-products .deficiency-products {
  opacity: 1;
  position: relative;
  z-index: 1;
  transition: z-index 0s linear 0s, opacity var(--nt--symptom-speed) ease;
}

.deficiency-products ul {
  list-style: none;
  margin: 0 0 1em 0;
  padding: 0;
}
.deficiency-products li {
}
.deficiency-products li a {
  text-decoration: underline;
  font-family: 'Gotham-Medium';
  display: block;
  margin: 0.5em 0;
  color: var(--nc--green-10);
}
.deficiency-products li a:hover {
  font-family: 'Gotham-Medium';
}
.deficiency-detail button.btn-toggle-symptom {
  border: 0;
  text-decoration: underline;
  font-family: 'Gotham-Medium';
  color: black;
  background: transparent !important;
  padding: 0;
}
.deficiency-detail button.btn-toggle-symptom:hover {
  color: var(--nc--green-10) !important;
}

.representative-item {
  text-align: center;
}
.representative-item img {
  width: 100%;
  max-width: 33vw;
  aspect-ratio: 1;
}
.representative-name {
  font-family: 'Gotham-Bold';
  font-size: 1.2rem;
  margin-bottom: 0;
}
.representative-title {
}
.representative-item address {
  line-height: 1.7rem;
}
.accordion-representative .e-n-accordion-item-title-text {
  font-size: 1.5rem;
}
.accordion-representative .e-n-accordion-item-title-text span:nth-child(n+4) {
  font-family: 'Gotham-Black';
}

@media (min-width: 768px) {
  .representative-item {
    text-align: left;
  }
  .representative-item img {
    width: 125px;
  }
  .accordion-representative .e-n-accordion-item-title-text {
    font-size: 1.7rem;
  }

}


.accordion-about .e-n-accordion-item-title-text span:nth-child(1) {
  color: var(--nc--green-10);
}

.tech-grid {
  grid-template-rows: auto !important;
}
.tech-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.tech-thumbnail {
  width: fit-content;
  margin-bottom: 3rem;
}

.tech-name {
  color: var(--nc--green-10);
  position: relative;
}
.tech-item sup {
  font-size: 0.4em;
  position: relative;
  top: -1.2em;
}
.tech-excerpt {
  display: none;
}
.tech-excerpt p,
.tech-description {
  font-family: 'Gotham-Book';
}
.tech-learn-more {
  font-family: 'Gotham-Medium';
  text-decoration: underline;
}
.tech-expand-description {
  cursor: pointer;
  display: inline;
  padding: 0;
  text-decoration: underline;
  background-color: transparent !important;
  color: inherit !important;
  border: 0 !important;
}

.tech-item.show-excerpt .tech-excerpt {
  display: block;
}
.tech-item.show-excerpt .tech-description {
  display: none;
}
@media (min-width: 768px) {
  .tech-item {
    align-items: flex-start;
    text-align: left;
  }
  .elementor-widget:nth-child(odd) .tech-item {
    align-items: flex-end;
    text-align: right;
  }
  .tech-excerpt p,
  .tech-description {
    width: 70%;
  }
}

.quick-help-grid {
}
.grid-item-header {
  height: fit-content;
  background-color: var(--nc--green-60);
  padding: 1em 0;
  min-height: 0;
}
.grid-item-header-1 {
  border-right: 1px solid white;
}
:is(.grid-item-header, .grid-item-concern, .grid-item-reco) * {
  margin: 0;
}
.grid-item-concern {
  padding: 2em 1em;
  border-bottom: 1px dotted var(--nc--grey-10);
}
.grid-item-reco {
  padding: 2em 1em;
  background-color: var(--nc--green-70);
  border-bottom: 1px dotted var(--nc--grey-10);
}

@media (max-width: 767px) {
  .grid-item-header {
    display: none;
  }
  .grid-item-concern {
    padding: 2em 0 1em 0;
    border-bottom: 0;
    font-family: 'Gotham-Bold' !important;
  }
  .grid-item-reco {
    padding: 0 0 2em 0;
    background-color: transparent;
  }
}

.nt-container-jobs .elementor-heading-title {
  color: var(--nc--green-40);
  font-family: 'Gotham-Bold';
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 125%;
}
.acc-career .e-n-accordion-item-title::before {
  display: none;
}
.acc-career .e-n-accordion-item-title::after {
  color: white;
}
.acc-career .e-n-accordion-item-title {
  color: white !important;
  font-family: 'Gotham-Bold';
}
.acc-career .e-n-accordion-item-title {
  background-color: #484848;
}
.acc-career .e-n-accordion-item-title[aria-expanded="true"] {
  background-color: #BABABA;
}

.team-member-item {
  display: block;
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}
.team-member-item p {
  padding-block-end: 0;
}
.team-member-item.disable-transform {
  /* HACK: to allow position:fixed for an overlay later */
  transform: none !important;
  transition: none !important;
}
.team-member-item:hover img {
  transform: scale(1.05,1.05);
}
.team-member-item img {
  display: block;
  position: relative;
  width: 100%;
  transition: transform 0.3s ease;
}
.team-member-item figure::after {
  content: '';
  background: url(/wp-content/themes/nutriag/custom/img/leader-cloud-2.png) bottom center no-repeat;
  background-size: 100% 100%;
  opacity: 0.5;
  display: block;
  position: absolute;
  height: 28%;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 2;
}

.team-member-item figcaption {
  position: absolute;
  left: 0; right:0; bottom: 0;
  padding: 8px 15px;
}
.team-member-name {
  font-family: 'Gotham-Bold';
  font-size: 1.3rem;
  font-weight: normal;
  margin-bottom:0;
  line-height: 0.9em;
  display: inline-block;
}
.team-member-title {
  margin: 0 ;
  font-size: 0.9rem;
}
figcaption :is(.team-member-name, .team-member-name-1, .team-member-name-2, .team-member-title) {
  color: white;
  position: relative;
  z-index: 3;
  text-wrap: nowrap;
}
.nt-modal-container :is(.team-member-name-1, .team-member-name-2) {
  color: var(--nc--grey-10);
}
.nt-modal-container .team-member-title {
  color: var(--nc--grey-10);
  margin: 0.5em 0 1em 0;
  font-size: 1rem;
}
.team-member-name-1, .team-member-name-2 {
  font-family: 'Gotham-Black';
  font-size: 1.9rem;
  font-weight: normal;
  margin-bottom:0;
  line-height: 1.1em;
}
@media (min-width:1025px) AND (max-width: 1199px) {
  .team-member-name {
    font-size: 1.1rem;
  }
  .team-member-title {
    font-size: 0.8rem;
  }
}
@media (min-width: 1200px) {
  .team-member-name {
    font-size: 1.43rem;
  }
}

