@font-face {
  font-family: light_font;
  src: url("../fonts/lufga_light.ttf");
}

@font-face {
  font-family: reg_font;
  src: url("../fonts/lufga_reg.ttf");
}

@font-face {
  font-family: med_font;
  src: url("../fonts/lufga_med.ttf");
}

@font-face {
  font-family: semi_font;
  src: url("../fonts/lufga_semi.ttf");
}

@font-face {
  font-family: bold_font;
  src: url("../fonts/lufga_bold.ttf");
}

@font-face {
  font-family: header_reg;
  src: url("../fonts/careg.ttf");
}

@font-face {
  font-family: header_italic;
  src: url("../fonts/carmed.ttf");
}

@font-face {
  font-family: header_bold;
  src: url("../fonts/carbold.ttf");
}

/*GLobal Colors*/
/*GLobal Variables*/
/*GLobal Variables*/
/*Functions and Mixin*/
/* Mixin and Function End*/
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.site_header.scrolled {
  background: rgba(226, 211, 199, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site_header.hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.header_container {
  padding: 25px 0;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}

.scrolled .header_container {
  padding: 15px 0;
}

.header_inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 1fr;
      grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.nav_left {
  -ms-grid-column-align: start;
      justify-self: start;
}

.nav_left ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.nav_left ul li {
  margin: 0;
  padding: 0;
}

.nav_left ul li a {
  font-family: reg_font;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.nav_left ul li a:hover {
  color: #ef762e;
}

.nav_left .has_dropdown {
  position: relative;
}

.nav_left .has_dropdown > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.nav_left .has_dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  -webkit-transform: rotate(45deg) translateY(-1px);
          transform: rotate(45deg) translateY(-1px);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.nav_left .has_dropdown:hover > a::after {
  -webkit-transform: rotate(-135deg) translateY(1px);
          transform: rotate(-135deg) translateY(1px);
}

.nav_left .has_dropdown .nav_dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 190px;
  background: rgba(226, 211, 199, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 10px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transition: opacity 0.22s ease, transform 0.22s ease, -webkit-transform 0.22s ease;
  -webkit-box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
          box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.nav_left .has_dropdown .nav_dropdown:after {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: '';
}

.nav_left .has_dropdown .nav_dropdown li {
  padding: 0;
  margin: 0;
}

.nav_left .has_dropdown .nav_dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 12px;
  color: #023f02;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav_left .has_dropdown .nav_dropdown li a:hover {
  color: #ef762e;
  background: rgba(0, 0, 0, 0.04);
}

.nav_left .has_dropdown:hover .nav_dropdown {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mobile_has_dropdown {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile_has_dropdown .mobile_dropdown_toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: med_font;
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-align: left;
}

.mobile_has_dropdown .mobile_arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotate(45deg) translateY(-2px);
          transform: rotate(45deg) translateY(-2px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mobile_has_dropdown.open .mobile_arrow {
  -webkit-transform: rotate(-135deg) translateY(2px);
          transform: rotate(-135deg) translateY(2px);
}

.mobile_has_dropdown .mobile_submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.mobile_has_dropdown .mobile_submenu li {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile_has_dropdown .mobile_submenu li a {
  display: block;
  padding: 14px 20px;
  font-family: reg_font;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.mobile_has_dropdown .mobile_submenu li a:hover {
  color: #ef762e;
}

.header_logo {
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header_logo a {
  display: block;
}

.header_logo a img {
  height: 50px;
  width: auto;
  display: block;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

.scrolled .header_logo a img {
  height: 42px;
}

.header_cta {
  justify-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header_cta .common_anchor {
  padding: 5px 8px;
  font-size: 12px;
  white-space: nowrap;
}

.header_cta .common_anchor.outline {
  background: transparent;
  border: 2px solid #ef762e;
  color: #ef762e;
}

.header_cta .common_anchor.outline:hover {
  background: #ef762e;
  color: #fff;
}

.mobile_menu_toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile_menu_toggle span {
  width: 24px;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}

.mobile_menu_toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}

.mobile_menu_toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile_menu_toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
}

.mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #e2d3c7;
  z-index: 999;
  padding-top: 100px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow-y: auto;
}

.mobile_menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile_menu nav {
  padding: 0 30px;
}

.mobile_menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile_menu nav ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile_menu nav ul li a {
  display: block;
  padding: 20px 0;
  font-family: med_font;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.mobile_menu nav ul li a:hover {
  color: #ef762e;
}

.mobile_menu .mobile_menu_cta {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.mobile_menu .mobile_menu_cta .common_anchor {
  text-align: center;
}

.mobile_menu .mobile_menu_cta .common_anchor.outline {
  background: transparent;
  border: 2px solid #ef762e;
  color: #ef762e;
}

.mobile_menu .mobile_menu_cta .common_anchor.outline:hover {
  background: #ef762e;
  color: #fff;
}

body.menu-open {
  overflow: hidden;
}

.site_footer {
  background: #f8f5f2;
  color: rgba(0, 0, 0, 0.7);
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.footer_main {
  padding: 80px 0 60px;
}

.footer_logo_wrap {
  text-align: center;
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.footer_logo_wrap .footer_logo {
  height: 60px;
  width: auto;
}

.footer_columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer_column h4 {
  font-family: semi_font;
  font-size: 16px;
  color: #000;
  margin: 0 0 24px 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer_column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_column ul li {
  margin: 0;
  padding: 0;
  margin-bottom: 12px;
}

.footer_column ul li a {
  font-family: reg_font;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer_column ul li a:hover {
  color: #ef762e;
}

.footer_column p {
  font-size: 14px;
  line-height: 1.6em;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.6);
}

.newsletter_column .newsletter_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}

.newsletter_column .newsletter_form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-family: reg_font;
  font-size: 14px;
  background: #fff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.newsletter_column .newsletter_form input:focus {
  outline: none;
  border-color: #ef762e;
}

.newsletter_column .newsletter_form input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.newsletter_column .newsletter_form input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.newsletter_column .newsletter_form input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.newsletter_column .newsletter_form input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.newsletter_column .newsletter_form .submit_btn {
  padding: 12px 28px;
  background: #023f02;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: med_font;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.newsletter_column .newsletter_form .submit_btn:hover {
  background: #000e00;
}

.footer_bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
}

.footer_bottom_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.footer_links a {
  font-family: reg_font;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer_links a:hover {
  color: #ef762e;
}

.footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.footer_social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer_social a svg {
  stroke: rgba(0, 0, 0, 0.5);
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

.footer_social a:hover {
  border-color: #ef762e;
  background: #ef762e;
}

.footer_social a:hover svg {
  stroke: #fff;
}

.footer_copyright p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0;
}

body {
  /*Common Body Styles Start*/
  font-family: reg_font;
  background-color: #e2d3c7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /*Common Elements Style*/
  /*Common Body Responsive Styles Start*/
}

body p,
body .content_ul li {
  color: #000;
  padding: 0;
  margin: 0;
  padding-top: 15px;
  line-height: 1.8em;
}

body p.primary,
body .content_ul li.primary {
  color: #023f02;
}

body p.accent,
body .content_ul li.accent {
  color: #bc9363;
}

body p.secondary,
body .content_ul li.secondary {
  color: #ef762e;
}

body p.white,
body .content_ul li.white {
  color: #fff;
}

body p.align_justify,
body .content_ul li.align_justify {
  text-align: justify;
}

body p.align_left,
body .content_ul li.align_left {
  text-align: left;
}

body p.align_right,
body .content_ul li.align_right {
  text-align: right;
}

body p.reg,
body .content_ul li.reg {
  font-family: reg_font;
}

body p.semi,
body .content_ul li.semi {
  font-family: semi_font;
}

body p.bold,
body .content_ul li.bold {
  font-family: bold_font;
}

body p.light,
body .content_ul li.light {
  font-family: light_font;
}

body p.med,
body .content_ul li.med {
  font-family: med_font;
}

body p.capital,
body .content_ul li.capital {
  text-transform: uppercase;
}

body p.header_reg,
body .content_ul li.header_reg {
  font-family: header_reg;
}

body p.header_italic,
body .content_ul li.header_italic {
  font-family: header_italic;
}

body p.header_bold,
body .content_ul li.header_bold {
  font-family: header_bold;
}

body .content_ul ul,
body .content_ul ol {
  padding-top: 15px;
}

body .content_ul li {
  padding-top: 0;
}

body .common_header {
  padding: 0;
  margin: 0;
  padding-top: 15px;
  font-family: med_font;
  color: #000;
  line-height: 1.2em;
}

body .common_header.primary {
  color: #023f02;
}

body .common_header.accent {
  color: #bc9363;
}

body .common_header.secondary {
  color: #ef762e;
}

body .common_header.white {
  color: #fff;
}

body .common_header.reg {
  font-family: reg_font;
}

body .common_header.semi {
  font-family: semi_font;
}

body .common_header.bold {
  font-family: bold_font;
}

body .common_header.light {
  font-family: light_font;
}

body .common_header.med {
  font-family: med_font;
}

body .common_header.capital {
  text-transform: uppercase;
}

body .common_header.header_reg {
  font-family: header_reg;
}

body .common_header.header_italic {
  font-family: header_italic;
}

body .common_header.header_bold {
  font-family: header_bold;
}

body .common_header span {
  font-family: bold_font;
  color: #023f02;
}

body .common_header span.primary {
  color: #023f02;
}

body .common_header span.accent {
  color: #bc9363;
}

body .common_header span.secondary {
  color: #ef762e;
}

body .common_header span.white {
  color: #fff;
}

body .common_header span.reg {
  font-family: reg_font;
}

body .common_header span.semi {
  font-family: semi_font;
}

body .common_header span.bold {
  font-family: bold_font;
}

body .common_header span.light {
  font-family: light_font;
}

body .common_header span.med {
  font-family: med_font;
}

body .common_header span.capital {
  text-transform: uppercase;
}

body .common_header span.header_reg {
  font-family: header_reg;
}

body .common_header span.header_italic {
  font-family: header_italic;
}

body .common_header span.header_bold {
  font-family: header_bold;
}

body .common_anchor {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-family: reg_font;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #023f02;
  padding-left: 4%;
  padding-right: 40px;
  padding-left: 40px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

body .common_anchor:hover {
  text-decoration: none;
  color: #fff;
  background-color: #ef762e;
}

body .common_anchor.secondary {
  background-color: #ef762e;
  color: #fff;
}

body .common_anchor.secondary:hover {
  background-color: #023f02;
  color: #fff;
}

body .common_anchor.border_anchor {
  background-color: transparent;
  border: 2px solid #023f02;
  color: #023f02;
}

body .common_anchor.border_anchor:hover {
  background-color: #023f02;
  color: #fff;
}

body .gridContainer {
  margin: auto;
  clear: none;
  float: none;
  margin-left: auto;
}

body .table_wrap {
  display: table;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

body .cell_wrap {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

body .btn-group {
  display: inline-block;
  margin-top: 15px;
}

body .btn-group button {
  padding: 12px;
  font-family: reg_font;
  background-color: #fff !important;
  background: none;
  border-color: #ccc;
  border-radius: 8px;
}

body .btn-group a:hover {
  background: none;
  background-color: #023f02 !important;
  color: #bc9363;
}

body .form_field {
  margin-top: 15px;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #ccc;
  width: 100%;
}

body select.form_field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
}

body .nav.nav-tabs {
  margin-top: 15px !important;
}

body .nav.nav-tabs li a {
  color: #000;
}

body .nav.nav-tabs li.active a {
  background-color: #023f02;
}

body input[type=text] {
  background-color: #fff;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-webkit-keyframes rotation_minus {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-359deg);
  }
}

@keyframes rotation_minus {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-359deg);
  }
}

@media only screen and (min-width: 1600px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 16px;
  }
  body p.small_size {
    font-size: 13px;
  }
  body .common_header {
    font-size: 50px;
  }
  body .common_header.large {
    font-size: 60px;
  }
  body .common_header.small {
    font-size: 25px;
  }
  body .gridContainer {
    width: 95.5%;
    min-width: 1250px;
    padding-left: 0.75%;
    padding-right: 0.75%;
  }
}

@media only screen and (max-width: 1599px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 14px;
  }
  body .common_header {
    font-size: 30px;
  }
  body .common_header.large {
    font-size: 40px;
  }
  body .common_header.small {
    font-size: 20px;
  }
  body .gridContainer {
    width: 85.5%;
    min-width: 1250px;
    padding-left: 0.75%;
    padding-right: 0.75%;
  }
  body p.small_size {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1100px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 15px;
  }
  body .common_header {
    font-size: 30px;
  }
  body .common_header.large {
    font-size: 60px;
  }
  body .gridContainer {
    width: 95.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    min-width: auto !important;
  }
  body p.small_size {
    font-size: 12px;
  }
  body .common_header.small {
    font-size: 20px;
  }
}

@media only screen and (max-width: 786px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 15px;
  }
  body .common_header {
    font-size: 30px;
  }
  body .common_header.large {
    font-size: 60px;
  }
  body .gridContainer {
    width: 95.675%;
    padding-left: 1.1625%;
    padding-right: 1.1625%;
    min-width: auto !important;
  }
  body p.small_size {
    font-size: 12px;
  }
  body .common_header.small {
    font-size: 20px;
  }
}

@media only screen and (max-width: 480px) {
  body p,
  body .btn-group a,
  body .btn-group,
  body .btn-group button,
  body .form_field,
  body .content_ul li,
  body .nav.nav-tabs li a {
    font-size: 13px;
  }
  body .nav.nav-tabs li {
    float: none;
    display: inline-block;
  }
  body .nav.nav-tabs {
    white-space: nowrap;
    overflow-x: scroll;
  }
  body .common_header {
    font-size: 28px;
  }
  body .common_header.large {
    font-size: 35px;
  }
  body .gridContainer {
    width: 95.45%;
    padding-left: 2.275%;
    padding-right: 2.275%;
  }
  body a.common_anchor {
    font-size: 13px;
  }
  body p.small_size {
    font-size: 11px;
  }
  body .common_header.small {
    font-size: 18px;
  }
}

body .gridContainer.small_test_wrap {
  max-width: 900px;
  min-width: auto;
  width: auto;
  background-color: #fff;
  padding: 30px !important;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
}

.full_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

.half_wrap {
  width: 50%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

.gardient {
  background: #C7883D;
  background: -webkit-gradient(linear, right top, left top, from(#c7883d), color-stop(48%, #eec789), to(#e3ad56));
  background: linear-gradient(270deg, #c7883d 0%, #eec789 48%, #e3ad56 100%);
}

.gradient_text {
  color: #C7893E;
  background-image: linear-gradient(45deg, #C7893E, #EDC78A 50%, #E3AD56 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.capital_letter_spacing {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.opacity_text {
  opacity: 0.5;
}

.top_common_slider_wrap .mobile {
  display: none;
}

.top_common_slider_wrap .title_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_common_slider_wrap .title_wrap .common_header {
  padding: 0;
}

.top_common_slider_wrap .half_wrap {
  float: right;
  padding-left: 10%;
}

#main-slider {
  position: relative;
}

#main-slider .main_slider_prev,
#main-slider .main_slider_next {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main-slider .main_slider_prev:after,
#main-slider .main_slider_next:after {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

#main-slider .main_slider_prev:hover,
#main-slider .main_slider_next:hover {
  background: #ef762e;
  border-color: #ef762e;
  -webkit-transform: translateY(-50%) scale(1.08);
          transform: translateY(-50%) scale(1.08);
}

#main-slider .main_slider_prev {
  left: 40px;
}

#main-slider .main_slider_next {
  right: 40px;
}

@media only screen and (max-width: 786px) {
  #main-slider .main_slider_prev,
  #main-slider .main_slider_next {
    width: 40px;
    height: 40px;
  }
  #main-slider .main_slider_prev:after,
  #main-slider .main_slider_next:after {
    font-size: 12px;
  }
  #main-slider .main_slider_prev {
    left: 16px;
  }
  #main-slider .main_slider_next {
    right: 16px;
  }
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  background: #b18731;
  background: -webkit-gradient(linear, left top, right top, from(#023f02), to(#ef762e));
  background: linear-gradient(90deg, #023f02 0%, #ef762e 100%);
  top: 0;
  width: 20px;
  height: 20px;
  z-index: 99999;
}

.text_center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.machine_selector_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.machine_selector_wrap .parent_wrap {
  max-width: 800px;
  margin: 0 auto;
  float: none;
  text-align: left;
}

.machine_selector_wrap .image_wrap {
  position: relative;
}

.machine_selector_wrap .image_wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.machine_selector_wrap .content_wrap {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  width: 100%;
  text-align: center;
}

.machine_selector_wrap .common_header {
  padding-top: 0;
}

.machine_selector_wrap p br.desktop {
  display: inline;
}

.machine_selector_wrap p br.mobile {
  display: none;
}

.machine_selector_wrap .slider_section {
  margin-top: 10vh;
  margin-left: auto;
  margin-right: auto;
}

.machine_selector_wrap .slider_header {
  margin-bottom: 15px;
}

.machine_selector_wrap .slider_header .half_wrap p {
  padding: 0;
  margin: 0;
}

.machine_selector_wrap .slider_header .cups_display {
  font-family: semi_font;
  opacity: 1;
  color: #fff;
}

.machine_selector_wrap .slider_container {
  position: relative;
  padding: 10px 0;
}

.machine_selector_wrap .slider_container .machine_slider {
  width: 100%;
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  outline: none;
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.machine_selector_wrap .slider_container .machine_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  background: #bc9363;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.machine_selector_wrap .slider_container .machine_slider::-webkit-slider-thumb:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.machine_selector_wrap .slider_container .machine_slider::-moz-range-thumb {
  width: 40px;
  height: 40px;
  background: #bc9363;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.machine_selector_wrap .slider_container .machine_slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}

.machine_selector_wrap .slider_container .slider_track {
  position: absolute;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 10px;
  pointer-events: none;
}

.machine_selector_wrap .slider_container .slider_track .slider_progress {
  height: 100%;
  background: #bc9363;
  border-radius: 10px;
  width: 0%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.machine_selector_wrap .slider_labels {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.machine_selector_wrap .slider_labels .label_item p {
  padding: 0;
  margin: 0;
}

.machine_selector_wrap .machine_card_wrap {
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

.machine_selector_wrap .machine_card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.machine_selector_wrap .machine_card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.machine_selector_wrap .machine_card .card_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.machine_selector_wrap .machine_card .machine_image_wrap {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}

.machine_selector_wrap .machine_card .machine_image_wrap img {
  max-width: 150%;
  max-height: 150%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}

.machine_selector_wrap .machine_card .machine_details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.machine_selector_wrap .machine_card .machine_details p {
  padding: 0;
  margin: 0;
  padding-top: 5px;
}

.machine_selector_wrap .machine_card .machine_details p:first-child {
  padding-top: 0;
}

.machine_selector_wrap .machine_card .machine_details .common_header {
  padding: 0;
  padding-top: 8px;
}

.machine_selector_wrap .machine_card .arrow_wrap {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.machine_selector_wrap .machine_card .arrow_wrap svg {
  color: #fff;
  width: 24px;
  height: 24px;
}

.machine_selector_wrap .machine_card .arrow_wrap:hover {
  background: #bc9363;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.roast_to_cup_section {
  margin-top: 10vh;
  padding: 100px 0;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #e2d3c7;
}

.roast_to_cup_section .parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.roast_to_cup_section .image_column {
  padding-right: 30px;
  width: 60%;
}

.roast_to_cup_section .content_column {
  padding-left: 30px;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.roast_to_cup_section .image_container {
  overflow: hidden;
}

.roast_to_cup_section .image_container img {
  width: 100%;
  height: auto;
  display: block;
}

.roast_to_cup_section .content_inner {
  width: 100%;
}

.roast_to_cup_section .logo_wrap {
  margin-bottom: 30px;
}

.roast_to_cup_section .logo_wrap img {
  max-width: 280px;
  height: auto;
}

.roast_to_cup_section .common_header {
  padding-top: 0;
  margin-bottom: 15px;
}

.roast_to_cup_section p {
  line-height: 1.8em;
}

.services_grid_section {
  padding: 15vh 0;
  background-color: #e2d3c7;
  overflow: hidden;
}

.services_grid_section .services_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.services_grid_section .service_item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 450px;
}

.services_grid_section .service_item:nth-child(1) {
  margin-top: 0;
}

.services_grid_section .service_item:nth-child(2) {
  margin-top: 80px;
}

.services_grid_section .service_item:nth-child(3) {
  margin-top: -40px;
}

.services_grid_section .service_item:nth-child(4) {
  margin-top: 60px;
}

.services_grid_section .service_image {
  width: 100%;
  height: 100%;
}

.services_grid_section .service_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.services_grid_section .service_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
}

.services_grid_section .service_overlay.primary_overlay {
  background-color: rgba(2, 63, 2, 0.95);
}

.services_grid_section .service_overlay.secondary_overlay {
  background-color: rgba(239, 118, 46, 0.95);
}

.services_grid_section .overlay_content {
  text-align: center;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.services_grid_section .overlay_content .common_header {
  padding: 0;
  margin-bottom: 15px;
}

.services_grid_section .overlay_content p {
  padding: 0;
  margin: 0;
  line-height: 1.7em;
}

.services_grid_section .service_item:hover .service_image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.services_grid_section .service_item:hover .service_overlay {
  opacity: 1;
}

.services_grid_section .service_item:hover .overlay_content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.baristas_section {
  padding: 10vh 0;
  margin-top: 10vh;
  background-color: #fff;
  border-radius: 80px;
}

.baristas_section .cta_bottom_wrap {
  margin-top: 10vh;
  text-align: center;
}

.baristas_section .cta_bottom_wrap .common_anchor {
  float: none;
}

.baristas_section .section_header_wrap {
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(2, 63, 2, 0.2);
  padding-bottom: 40px;
}

.baristas_section .left_content {
  padding-right: 40px;
}

.baristas_section .left_content .common_header {
  padding-top: 0;
  margin-bottom: 20px;
}

.baristas_section .left_content p {
  line-height: 1.8em;
}

.baristas_section .right_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 40px;
}

.baristas_section .right_logo img {
  max-width: 280px;
  height: auto;
}

.baristas_section .products_slider_wrap {
  position: relative;
}

.baristas_section .baristas_swiper {
  overflow: visible;
}

.baristas_section .baristas_swiper .product_ul_wrap .product_card {
  width: 31.33333%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 3%;
  margin-top: 15px;
}

.baristas_section .baristas_swiper .product_ul_wrap .product_card:nth-child(3n+0) {
  margin-right: 0;
}

.baristas_section .product_card {
  background: #f5ebe1;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(2, 63, 2, 0.1);
}

.baristas_section .product_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.baristas_section .product_image {
  background: #f5ebe1;
  padding: 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 380px;
}

.baristas_section .product_image img {
  max-width: 100%;
  height: auto;
}

.baristas_section .product_info {
  padding: 30px;
  border-top: 1px solid rgba(2, 63, 2, 0.15);
  text-align: center;
}

.baristas_section .product_name {
  font-family: semi_font;
  font-size: 18px;
  color: #023f02;
  margin: 0;
  padding: 0;
  letter-spacing: 0.05em;
}

.baristas_section .product_subtitle {
  font-family: reg_font;
  font-size: 12px;
  color: #000;
  opacity: 0.6;
  margin: 0;
  padding: 0;
  padding-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.baristas_section .barista_prev,
.baristas_section .barista_next {
  width: 50px;
  height: 50px;
  background: #023f02;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.baristas_section .barista_prev:after,
.baristas_section .barista_next:after {
  font-size: 18px;
}

.baristas_section .barista_prev:hover,
.baristas_section .barista_next:hover {
  background: #ef762e;
}

.baristas_section .barista_prev {
  left: -25px;
}

.baristas_section .barista_next {
  right: -25px;
}

.coffee_journey_section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0;
}

.coffee_journey_section .background_image_fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/cofee_manage_end_to_end_bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.coffee_journey_section .background_image_fixed:after {
  display: none;
}

.coffee_journey_section .sticky_column {
  padding-right: 50px;
}

.coffee_journey_section .sticky_content {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.coffee_journey_section .sticky_content .common_header {
  padding-top: 0;
  margin-bottom: 25px;
  line-height: 1.3em;
}

.coffee_journey_section .sticky_content p {
  line-height: 1.8em;
  opacity: 0.9;
}

.coffee_journey_section .timeline_column {
  padding-left: 50px;
  position: relative;
  padding-bottom: 100px;
}

.coffee_journey_section .timeline_line {
  position: absolute;
  left: 85px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(239, 118, 46, 0.3);
}

.coffee_journey_section .timeline_item {
  position: relative;
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  opacity: 0.3;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.coffee_journey_section .timeline_item.active {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.coffee_journey_section .step_number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ef762e;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: bold_font;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.coffee_journey_section .step_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 8px;
}

.coffee_journey_section .step_title {
  font-family: semi_font;
  font-size: 22px;
  color: #ef762e;
  margin: 0;
  padding: 0;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.coffee_journey_section .step_description {
  color: #fff;
  opacity: 0.85;
  line-height: 1.8em;
  margin: 0;
  padding: 0;
}

.flexible_solutions_section {
  padding: 100px 0;
  background: #e2d3c7;
}

.flexible_solutions_section .section_header {
  margin-bottom: 60px;
}

.flexible_solutions_section .section_header .subtitle_text {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.6em;
  color: rgba(0, 0, 0, 0.7);
}

.flexible_solutions_section .solutions_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flexible_solutions_section .solution_card_wrap {
  width: 50%;
  float: left;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.flexible_solutions_section .solution_card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.flexible_solutions_section .solution_card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flexible_solutions_section .lease_card {
  border: 2px solid #f5f5f5;
}

.flexible_solutions_section .lease_card .card_icon svg {
  stroke: #ef762e;
}

.flexible_solutions_section .purchase_card {
  background: #023f02;
  border: 2px solid #012601;
}

.flexible_solutions_section .purchase_card .card_icon svg {
  stroke: #bc9363;
}

.flexible_solutions_section .purchase_card .card_description {
  color: rgba(255, 255, 255, 0.85);
}

.flexible_solutions_section .purchase_card .benefits_list li {
  color: #fff;
}

.flexible_solutions_section .purchase_card .benefits_list li svg {
  stroke: #bc9363;
}

.flexible_solutions_section .card_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(239, 118, 46, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

.flexible_solutions_section .purchase_card .card_icon {
  background: rgba(188, 147, 99, 0.2);
}

.flexible_solutions_section .card_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flexible_solutions_section .card_content h3 {
  margin-bottom: 16px;
}

.flexible_solutions_section .card_description {
  font-size: 16px;
  line-height: 1.6em;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.7);
}

.flexible_solutions_section .benefits_list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flexible_solutions_section .benefits_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: reg_font;
  font-size: 15px;
  line-height: 1.5em;
  color: rgba(0, 0, 0, 0.8);
}

.flexible_solutions_section .benefits_list li svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
  stroke: #bc9363;
}

.flexible_solutions_section .benefits_list li span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flexible_solutions_section .card_cta {
  margin-top: auto;
}

.common_anchor.white_anchor {
  background: #fff;
  color: #023f02;
  border: 2px solid #fff;
}

.common_anchor.white_anchor:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.au_hero_label {
  padding-top: 0;
  display: block;
  margin-bottom: 12px;
}

.au_statement_section {
  padding: 100px 0;
  background: #fff;
}

.au_statement_section .au_statement_inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.au_statement_section .au_divider {
  width: 60px;
  height: 3px;
  background: #ef762e;
  margin: 40px auto 0;
  display: block;
  border: none;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.au_section_label {
  padding-top: 0;
  margin-bottom: 10px;
  display: block;
}

.au_vision_section {
  padding: 100px 0;
  background: #e2d3c7;
}

.au_vision_section .au_vision_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}

.au_vision_section .au_vision_content {
  width: 52%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.au_vision_section .au_vision_image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.au_vision_section .au_vision_image img {
  width: 100%;
  height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}

.au_vision_section .au_btn_wrap {
  margin-top: 30px;
}

.au_editorial_pair {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.au_editorial_pair .au_ep_left {
  width: 60%;
  overflow: hidden;
}

.au_editorial_pair .au_ep_left img {
  width: 100%;
  height: 680px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.au_editorial_pair .au_ep_right {
  width: 40%;
}

.au_editorial_pair .au_ep_right .au_ep_image {
  width: 100%;
  height: 680px;
  overflow: hidden;
}

.au_editorial_pair .au_ep_right .au_ep_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.au_offer_section {
  padding: 100px 0;
  background: #fff;
}

.au_offer_section .au_offer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.au_offer_section .au_offer_content {
  width: 48%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.au_offer_section .au_solutions_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.au_offer_section .au_solutions_ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.au_offer_section .au_solutions_ul li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-family: reg_font;
  color: #000;
}

.au_offer_section .au_solutions_ul li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.au_offer_section .au_sol_dot {
  width: 8px;
  height: 8px;
  background: #ef762e;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
}

.au_commitment_section .au_commitment_bg {
  background-image: url("../images/cofee_manage_end_to_end_bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 120px 0;
}

.au_commitment_section .au_commitment_bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 63, 2, 0.88);
}

.au_commitment_section .au_commitment_bg .gridContainer {
  position: relative;
  z-index: 1;
}

.au_commitment_section .au_commitment_inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.au_process_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 600px;
}

.au_process_grid .au_pg_left {
  width: 55%;
  overflow: hidden;
}

.au_process_grid .au_pg_left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.au_process_grid .au_pg_right {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.au_process_grid .au_pg_image_half {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

.au_process_grid .au_pg_image_half img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.au_process_grid .au_pg_dark_block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #bc9363;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.au_process_grid .au_pg_dark_block .au_pg_cta {
  margin-top: 30px;
}

.au_cta_section {
  padding: 100px 0;
  background: #023f02;
  text-align: center;
}

.au_cta_section .au_cta_inner {
  max-width: 700px;
  margin: 0 auto;
}

.au_cta_section .au_cta_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sv_hero_label {
  padding-top: 0;
  display: block;
  margin-bottom: 12px;
}

.sv_nav_strip {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.sv_nav_strip .sv_nav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
}

.sv_nav_strip a {
  display: block;
  padding: 22px 32px;
  font-family: reg_font;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid transparent;
}

.sv_nav_strip a:hover {
  color: #023f02;
  border-bottom-color: #ef762e;
}

.sv_intro_section {
  padding: 80px 0 60px;
  background: #fff;
}

.sv_intro_section .sv_intro_inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.sv_intro_section .sv_intro_divider {
  width: 60px;
  height: 3px;
  background: #ef762e;
  margin: 36px auto 0;
  display: block;
  border: none;
}

.sv_service_section {
  padding: 100px 0;
  background: #e2d3c7;
  overflow: hidden;
}

.sv_service_section.sv_white {
  background: #fff;
}

.sv_service_section.sv_dark {
  background: #023f02;
}

.sv_service_section .sv_service_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}

.sv_service_section.sv_reverse .sv_service_inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.sv_service_section .sv_content {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sv_service_section .sv_image_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.sv_service_section .sv_image_wrap img {
  width: 100%;
  height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sv_service_section .sv_image_wrap img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.sv_service_section .sv_service_badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ef762e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.sv_service_section .sv_service_badge span {
  color: #ef762e;
  font-family: semi_font;
  padding-top: 0;
  line-height: 1;
}

.sv_service_section.sv_dark .sv_service_badge {
  border-color: #bc9363;
}

.sv_service_section.sv_dark .sv_service_badge span {
  color: #bc9363;
}

.sv_service_section .sv_catchphrase {
  padding-top: 4px;
  margin-bottom: 0;
  opacity: 0.75;
}

.sv_service_section .sv_service_features {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 24px;
}

.sv_service_section .sv_service_features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: reg_font;
  color: #000;
}

.sv_service_section .sv_service_features li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sv_service_section .sv_service_features li svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  stroke: #ef762e;
}

.sv_service_section.sv_dark .sv_service_features li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.sv_service_section.sv_dark .sv_service_features li:first-child {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.sv_service_section.sv_dark .sv_service_features li svg {
  stroke: #bc9363;
}

.sv_service_section .sv_btn_wrap {
  margin-top: 32px;
}

.sv_why_section {
  padding: 100px 0;
  background: #fff;
}

.sv_why_section .sv_why_header {
  text-align: center;
  margin-bottom: 60px;
}

.sv_why_section .sv_why_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sv_why_section .sv_why_item {
  padding: 50px 30px;
  border-radius: 16px;
  background: #e2d3c7;
  text-align: center;
  -webkit-transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

.sv_why_section .sv_why_item:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  background: #fff;
}

.sv_why_section .sv_why_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #023f02;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 24px;
}

.sv_why_section .sv_why_icon svg {
  stroke: #fff;
}

.sv_cta_section {
  padding: 100px 0;
  background: #023f02;
  text-align: center;
}

.sv_cta_section .sv_cta_inner {
  max-width: 700px;
  margin: 0 auto;
}

.sv_cta_section .sv_cta_buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.biz_hero_label {
  padding-top: 0;
  display: block;
  margin-bottom: 12px;
}

.biz_overview_section {
  padding: 80px 0;
  background: #fff;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.biz_overview_section .biz_overview_header {
  text-align: center;
  margin-bottom: 60px;
}

.biz_overview_section .biz_overview_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.biz_overview_section .biz_overview_card {
  padding: 40px 20px;
  border-radius: 16px;
  background: #e2d3c7;
  text-align: center;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

.biz_overview_section .biz_overview_card:hover {
  background: #023f02;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
}

.biz_overview_section .biz_overview_card:hover .biz_ov_icon {
  background: rgba(255, 255, 255, 0.12);
}

.biz_overview_section .biz_overview_card:hover .biz_ov_icon svg {
  stroke: #fff;
}

.biz_overview_section .biz_overview_card:hover .biz_ov_title {
  color: #fff;
}

.biz_overview_section .biz_overview_card:hover .biz_ov_sub {
  color: rgba(255, 255, 255, 0.65);
}

.biz_overview_section .biz_ov_icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(2, 63, 2, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.biz_overview_section .biz_ov_icon svg {
  stroke: #023f02;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}

.biz_overview_section .biz_ov_title {
  color: #000;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  padding-top: 0;
  margin-bottom: 6px;
}

.biz_overview_section .biz_ov_sub {
  opacity: 0.55;
  -webkit-transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  padding-top: 4px;
}

.biz_form_section {
  padding: 100px 0;
  background: #e2d3c7;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.biz_form_section .biz_form_header {
  text-align: center;
  margin-bottom: 50px;
}

.biz_form_section .biz_form_card {
  background: #fff;
  border-radius: 20px;
  padding: 60px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
}

.biz_form_section .biz_progress_wrap {
  margin-bottom: 40px;
}

.biz_form_section .biz_progress_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.biz_form_section .biz_step_count {
  padding-top: 0;
  color: rgba(0, 0, 0, 0.4);
  font-family: reg_font;
}

.biz_form_section .biz_step_label {
  padding-top: 0;
  color: #ef762e;
  font-family: semi_font;
}

.biz_form_section .biz_progress_track {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.biz_form_section .biz_progress_fill {
  height: 100%;
  background: #ef762e;
  border-radius: 2px;
  width: 25%;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.biz_form_section .biz_form_step {
  display: none;
}

.biz_form_section .biz_form_step.active {
  display: block;
}

.biz_form_section .biz_step_sub {
  opacity: 0.55;
  padding-top: 6px;
  margin-bottom: 4px;
}

.biz_form_section .biz_type_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.biz_form_section .biz_type_btn {
  padding: 22px 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #f8f5f2;
  text-align: center;
  cursor: pointer;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.biz_form_section .biz_type_btn .biz_type_icon {
  display: block;
  margin: 0 auto 10px;
}

.biz_form_section .biz_type_btn .biz_type_icon svg {
  stroke: rgba(0, 0, 0, 0.35);
  -webkit-transition: stroke 0.25s ease;
  transition: stroke 0.25s ease;
}

.biz_form_section .biz_type_btn .biz_type_label {
  display: block;
  font-family: reg_font;
  color: rgba(0, 0, 0, 0.45);
  -webkit-transition: color 0.25s ease, font-family 0.25s ease;
  transition: color 0.25s ease, font-family 0.25s ease;
  padding-top: 0;
}

.biz_form_section .biz_type_btn:hover {
  border-color: rgba(239, 118, 46, 0.5);
  background: rgba(239, 118, 46, 0.05);
}

.biz_form_section .biz_type_btn:hover .biz_type_icon svg {
  stroke: #ef762e;
}

.biz_form_section .biz_type_btn:hover .biz_type_label {
  color: #ef762e;
}

.biz_form_section .biz_type_btn.selected {
  border-color: #023f02;
  background: rgba(2, 63, 2, 0.06);
}

.biz_form_section .biz_type_btn.selected .biz_type_icon svg {
  stroke: #023f02;
}

.biz_form_section .biz_type_btn.selected .biz_type_label {
  color: #023f02;
  font-family: semi_font;
}

.biz_form_section .biz_volume_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.biz_form_section .biz_volume_btn {
  padding: 28px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #f8f5f2;
  text-align: center;
  cursor: pointer;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.biz_form_section .biz_volume_btn .biz_vol_num {
  display: block;
  color: #023f02;
  padding-top: 0;
  margin-bottom: 4px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.biz_form_section .biz_volume_btn .biz_vol_label {
  display: block;
  color: rgba(0, 0, 0, 0.45);
  padding-top: 0;
}

.biz_form_section .biz_volume_btn:hover {
  border-color: rgba(2, 63, 2, 0.4);
  background: rgba(2, 63, 2, 0.04);
}

.biz_form_section .biz_volume_btn.selected {
  border-color: #ef762e;
  background: rgba(239, 118, 46, 0.06);
}

.biz_form_section .biz_volume_btn.selected .biz_vol_num {
  color: #ef762e;
}

.biz_form_section .biz_needs_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.biz_form_section .biz_need_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #f8f5f2;
  cursor: pointer;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.biz_form_section .biz_need_item .biz_check_box {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.biz_form_section .biz_need_item .biz_check_box svg {
  opacity: 0;
  stroke: #fff;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.biz_form_section .biz_need_item span {
  font-family: reg_font;
  color: rgba(0, 0, 0, 0.55);
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  padding-top: 0;
  line-height: 1.4em;
}

.biz_form_section .biz_need_item.checked {
  border-color: #023f02;
  background: rgba(2, 63, 2, 0.05);
}

.biz_form_section .biz_need_item.checked .biz_check_box {
  background: #023f02;
  border-color: #023f02;
}

.biz_form_section .biz_need_item.checked .biz_check_box svg {
  opacity: 1;
}

.biz_form_section .biz_need_item.checked span {
  color: #023f02;
  font-family: semi_font;
}

.biz_form_section .biz_contact_fields {
  margin-top: 28px;
}

.biz_form_section .biz_contact_fields .form_field {
  margin-top: 12px;
}

.biz_form_section .biz_contact_fields .biz_field_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.biz_form_section .biz_form_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.biz_form_section .biz_form_next {
  margin-top: 0;
}

.biz_form_section .biz_form_back {
  background: transparent;
  border: none;
  font-family: reg_font;
  color: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.biz_form_section .biz_form_back:hover {
  color: #023f02;
}

.biz_form_section .biz_form_back.hidden {
  visibility: hidden;
  pointer-events: none;
}

.biz_form_section .biz_success {
  text-align: center;
  padding: 30px 0 10px;
  display: none;
}

.biz_form_section .biz_success.active {
  display: block;
}

.biz_form_section .biz_success .biz_success_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(2, 63, 2, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 28px;
}

.biz_form_section .biz_success .biz_success_icon svg {
  stroke: #023f02;
}

.biz_solution_section {
  overflow: hidden;
}

.biz_solution_section .biz_sol_split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 580px;
}

.biz_solution_section.biz_reverse .biz_sol_split {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.biz_solution_section .biz_sol_image {
  width: 50%;
  overflow: hidden;
}

.biz_solution_section .biz_sol_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.biz_solution_section .biz_sol_image img:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.biz_solution_section .biz_sol_content {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}

.biz_solution_section.biz_white .biz_sol_content {
  background: #fff;
}

.biz_solution_section.biz_dark .biz_sol_content {
  background: #023f02;
}

.biz_solution_section.biz_dark .biz_sol_content .biz_sol_features li {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.biz_solution_section.biz_dark .biz_sol_content .biz_sol_features li:first-child {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.biz_solution_section.biz_dark .biz_sol_content .biz_sol_features li svg {
  stroke: #bc9363;
}

.biz_solution_section.biz_dark .biz_sol_content .biz_sol_badge {
  border-color: #bc9363;
}

.biz_solution_section.biz_dark .biz_sol_content .biz_sol_badge span {
  color: #bc9363;
}

.biz_solution_section .biz_sol_content_inner {
  padding: 70px 65px;
  width: 100%;
}

.biz_solution_section .biz_sol_badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ef762e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.biz_solution_section .biz_sol_badge span {
  color: #ef762e;
  font-family: semi_font;
  padding-top: 0;
  line-height: 1;
}

.biz_solution_section .biz_catchphrase {
  padding-top: 4px;
  margin-bottom: 0;
  opacity: 0.72;
}

.biz_solution_section .biz_sol_features {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 22px;
}

.biz_solution_section .biz_sol_features li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: reg_font;
  color: #000;
}

.biz_solution_section .biz_sol_features li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.biz_solution_section .biz_sol_features li svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  stroke: #ef762e;
}

.biz_solution_section .biz_btn_wrap {
  margin-top: 30px;
}

.biz_promise_strip {
  background: #023f02;
  padding: 60px 0;
}

.biz_promise_strip .biz_promise_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.biz_promise_strip .biz_promise_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding: 20px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.biz_promise_strip .biz_promise_item:last-child {
  border-right: none;
}

.biz_promise_strip .biz_promise_icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.biz_promise_strip .biz_promise_icon svg {
  stroke: #bc9363;
}

.biz_promise_strip .biz_promise_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.biz_promise_strip .biz_promise_text .common_header {
  color: #fff;
}

.biz_promise_strip .biz_promise_text p {
  color: rgba(255, 255, 255, 0.6);
  padding-top: 6px;
}

.biz_cta_section {
  padding: 100px 0;
  background: #fff;
}

.biz_cta_section .biz_cta_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

.biz_cta_section .biz_cta_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.biz_cta_section .biz_cta_actions {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.biz_cta_section .biz_cta_actions .common_anchor {
  text-align: center;
  margin-top: 0;
}

.ct_hero_label {
  display: block;
  padding-top: 0;
  margin-bottom: 12px;
}

.ct_main_section {
  padding: 120px 0 100px;
  background: #fff;
}

.ct_main_section .ct_main_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ct_main_section .ct_form_col {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
  min-width: 0;
}

.ct_main_section .ct_info_col {
  -webkit-box-flex: 0.8;
      -ms-flex: 0.8;
          flex: 0.8;
  min-width: 0;
}

.ct_main_section .ct_col_label {
  display: block;
  padding-top: 0;
  margin-bottom: 8px;
}

.ct_main_section .ct_form_inputs {
  margin-top: 28px;
}

.ct_main_section .ct_form_inputs .form_field {
  margin-top: 14px;
}

.ct_main_section .ct_form_inputs .ct_field_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.ct_main_section .ct_form_inputs .ct_field_row .form_field {
  margin-top: 0;
}

.ct_main_section .ct_textarea {
  resize: vertical;
  min-height: 130px;
  font-family: reg_font;
  line-height: 1.6em;
  display: block;
}

.ct_main_section .ct_subject_wrap {
  margin-top: 20px;
}

.ct_main_section .ct_subject_label {
  display: block;
  color: rgba(0, 0, 0, 0.45);
  padding-top: 0;
  margin-bottom: 10px;
}

.ct_main_section .ct_subject_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.ct_main_section .ct_subject_btn {
  padding: 8px 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  background: #f8f5f2;
  font-family: reg_font;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  line-height: 1.4;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.ct_main_section .ct_subject_btn:hover {
  border-color: rgba(2, 63, 2, 0.4);
  color: #023f02;
}

.ct_main_section .ct_subject_btn.selected {
  border-color: #023f02;
  background: rgba(2, 63, 2, 0.07);
  color: #023f02;
  font-family: semi_font;
}

.ct_main_section .ct_submit_wrap {
  margin-top: 30px;
}

.ct_main_section .ct_form_success {
  display: none;
  padding: 60px 20px;
  text-align: center;
}

.ct_main_section .ct_form_success.active {
  display: block;
}

.ct_main_section .ct_form_success .ct_success_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(2, 63, 2, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 28px;
}

.ct_main_section .ct_form_success .ct_success_icon svg {
  stroke: #023f02;
}

.ct_main_section .ct_info_block {
  background: #e2d3c7;
  border-radius: 20px;
  padding: 46px 40px;
}

.ct_main_section .ct_info_items {
  margin-top: 28px;
}

.ct_main_section .ct_info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ct_main_section .ct_info_item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ct_main_section .ct_info_icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(2, 63, 2, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.ct_main_section .ct_info_icon svg {
  stroke: #023f02;
}

.ct_main_section .ct_info_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ct_main_section .ct_info_text p {
  padding-top: 0;
  line-height: 1.5em;
}

.ct_main_section .ct_info_text .ct_info_label {
  opacity: 0.48;
  margin-bottom: 3px;
}

.ct_main_section .ct_info_text .ct_info_value {
  font-family: semi_font;
  color: #000;
}

.ct_main_section .ct_social_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.ct_main_section .ct_social_row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.ct_main_section .ct_social_row a svg {
  stroke: #000;
  -webkit-transition: stroke 0.25s ease;
  transition: stroke 0.25s ease;
}

.ct_main_section .ct_social_row a:hover {
  background: #023f02;
  border-color: #023f02;
}

.ct_main_section .ct_social_row a:hover svg {
  stroke: #fff;
}

.ct_channels_strip {
  background: #023f02;
  padding: 70px 0;
}

.ct_channels_strip .ct_channels_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.ct_channels_strip .ct_channel_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ct_channels_strip .ct_channel_item:last-child {
  border-right: none;
}

.ct_channels_strip .ct_channel_icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.ct_channels_strip .ct_channel_icon svg {
  stroke: #bc9363;
}

.ct_channels_strip .ct_channel_title {
  color: #fff;
  padding-top: 0;
  margin-bottom: 6px;
}

.ct_channels_strip .ct_channel_detail {
  color: rgba(255, 255, 255, 0.6);
  padding-top: 0;
  margin-bottom: 20px;
}

.ct_channels_strip .ct_channel_link {
  color: #bc9363;
  font-family: semi_font;
  text-decoration: none;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-transition: gap 0.25s ease;
  transition: gap 0.25s ease;
}

.ct_channels_strip .ct_channel_link svg {
  stroke: #bc9363;
}

.ct_channels_strip .ct_channel_link:hover {
  gap: 10px;
}

.ct_faq_section {
  padding: 100px 0;
  background: #e2d3c7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.ct_faq_section .gridContainer {
  width: auto;
  min-width: auto;
}

.ct_faq_section .ct_faq_header {
  margin-bottom: 60px;
}

.ct_faq_section .ct_faq_list {
  max-width: 820px;
}

.ct_faq_section .ct_faq_item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ct_faq_section .ct_faq_item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ct_faq_section .ct_faq_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
}

.ct_faq_section .ct_faq_question p {
  font-family: semi_font;
  color: #000;
  padding-top: 0;
}

.ct_faq_section .ct_faq_question .ct_faq_toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.ct_faq_section .ct_faq_question .ct_faq_toggle svg {
  stroke: #000;
  -webkit-transition: stroke 0.25s ease, -webkit-transform 0.3s ease;
  transition: stroke 0.25s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, stroke 0.25s ease;
  transition: transform 0.3s ease, stroke 0.25s ease, -webkit-transform 0.3s ease;
}

.ct_faq_section .ct_faq_question:hover .ct_faq_toggle {
  background: #023f02;
  border-color: #023f02;
}

.ct_faq_section .ct_faq_question:hover .ct_faq_toggle svg {
  stroke: #fff;
}

.ct_faq_section .ct_faq_answer {
  overflow: hidden;
  height: 0;
}

.ct_faq_section .ct_faq_answer p {
  padding-top: 0;
  padding-bottom: 22px;
  opacity: 0.65;
}

.ct_faq_section .ct_faq_item.open .ct_faq_toggle {
  background: #023f02;
  border-color: #023f02;
}

.ct_faq_section .ct_faq_item.open .ct_faq_toggle svg {
  stroke: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.pd_hero_section {
  padding: 60px 0 80px;
  margin-top: 120px;
  background: #fff;
}

.pd_hero_section .pd_hero_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.pd_gallery_col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
}

.pd_main_image {
  border-radius: 20px;
  overflow: hidden;
  background: #f8f5f2;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pd_main_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 40px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.pd_main_image:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.pd_thumb_strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pd_thumb {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f8f5f2;
  border: 2px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: border-color 0.25s ease;
  transition: border-color 0.25s ease;
}

.pd_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
}

.pd_thumb.active {
  border-color: #023f02;
}

.pd_thumb:hover:not(.active) {
  border-color: rgba(0, 0, 0, 0.18);
}

.pd_info_col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.pd_badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  background: #ef762e;
  margin-bottom: 16px;
}

.pd_badge span {
  color: #fff;
  font-family: semi_font;
  padding-top: 0;
  line-height: 1;
}

.pd_product_name {
  padding-top: 0;
}

.pd_product_tagline {
  margin-top: 6px;
  opacity: 0.55;
  padding-top: 0;
}

.pd_pricing {
  margin-top: 20px;
}

.pd_pricing .pd_price_main {
  color: #023f02;
  font-family: semi_font;
  padding-top: 0;
}

.pd_pricing .pd_price_alt {
  opacity: 0.45;
  padding-top: 5px;
}

.pd_divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 26px 0;
}

.pd_option_group {
  margin-bottom: 22px;
}

.pd_option_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-top: 0;
}

.pd_option_label strong {
  font-family: semi_font;
  color: #000;
}

.pd_option_label span {
  opacity: 0.45;
}

.pd_finish_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.pd_finish_swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 3px;
  -webkit-transition: outline-color 0.2s ease;
  transition: outline-color 0.2s ease;
}

.pd_finish_swatch.active {
  outline-color: #023f02;
}

.pd_type_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pd_type_btn {
  padding: 10px 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #f8f5f2;
  font-family: reg_font;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.pd_type_btn:hover {
  border-color: rgba(2, 63, 2, 0.4);
  color: #023f02;
}

.pd_type_btn.active {
  border-color: #023f02;
  background: rgba(2, 63, 2, 0.06);
  color: #023f02;
  font-family: semi_font;
}

.pd_cta_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.pd_cta_group .common_anchor {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  margin-top: 0;
}

.pd_features_strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  margin-top: 28px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pd_feature_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.pd_feature_item svg {
  stroke: #023f02;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pd_feature_item p {
  padding-top: 0;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.3em;
}

.pd_accordion {
  margin-top: 36px;
}

.pd_accord_item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pd_accord_item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pd_accord_trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
}

.pd_accord_trigger p {
  font-family: semi_font;
  color: #000;
  padding-top: 0;
}

.pd_accord_trigger .pd_accord_icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.pd_accord_trigger .pd_accord_icon svg {
  stroke: #000;
  -webkit-transition: stroke 0.25s ease, -webkit-transform 0.3s ease;
  transition: stroke 0.25s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, stroke 0.25s ease;
  transition: transform 0.3s ease, stroke 0.25s ease, -webkit-transform 0.3s ease;
}

.pd_accord_trigger:hover .pd_accord_icon {
  background: #023f02;
  border-color: #023f02;
}

.pd_accord_trigger:hover .pd_accord_icon svg {
  stroke: #fff;
}

.pd_accord_content {
  overflow: hidden;
  height: 0;
}

.pd_accord_content p {
  padding-top: 0;
  padding-bottom: 20px;
  color: #000;
  opacity: 0.7;
  line-height: 1.7em;
}

.pd_accord_content .pd_spec_list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pd_accord_content .pd_spec_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pd_accord_content .pd_spec_list li:last-child {
  border-bottom: none;
}

.pd_accord_content .pd_spec_list li span {
  color: rgba(0, 0, 0, 0.45);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pd_accord_content .pd_spec_list li strong {
  font-family: semi_font;
  color: #000;
  text-align: right;
}

.pd_accord_item.open .pd_accord_icon {
  background: #023f02;
  border-color: #023f02;
}

.pd_accord_item.open .pd_accord_icon svg {
  stroke: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.pd_related_section {
  background: #e2d3c7;
  padding: 80px 0;
}

.pd_related_section .pd_related_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.pd_related_section .pd_related_link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
  color: #023f02;
  font-family: semi_font;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-transition: gap 0.25s ease;
  transition: gap 0.25s ease;
}

.pd_related_section .pd_related_link svg {
  stroke: #023f02;
}

.pd_related_section .pd_related_link:hover {
  gap: 10px;
}

.pd_discover_section {
  padding: 80px 0;
  background: #fff;
}

.pd_discover_section .pd_discover_header {
  margin-bottom: 40px;
}

.pd_discover_section .pd_discover_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pd_discover_section .pd_discover_card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.pd_discover_section .pd_discover_card:hover .pd_discover_img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.pd_discover_section .pd_discover_card:hover .pd_discover_arrow {
  -webkit-transform: translate(3px, -3px);
          transform: translate(3px, -3px);
  background: rgba(255, 255, 255, 0.25);
}

.pd_discover_section .pd_discover_img_wrap {
  height: 340px;
  overflow: hidden;
}

.pd_discover_section .pd_discover_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.pd_discover_section .pd_discover_overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(55%, transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.pd_discover_section .pd_discover_cat {
  color: rgba(255, 255, 255, 0.65);
  padding-top: 0;
  margin-bottom: 4px;
}

.pd_discover_section .pd_discover_title {
  color: #fff;
  padding-top: 0;
}

.pd_discover_section .pd_discover_arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}

.pd_discover_section .pd_discover_arrow svg {
  stroke: #fff;
}

/* Leasing Page */
.ls_plans_section {
  padding: 100px 0;
  background: #e2d3c7;
}

.ls_plans_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.ls_plan_card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.ls_plan_card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
          box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.ls_plan_card.ls_plan_featured {
  background: #023f02;
}

.ls_plan_card.ls_plan_featured .ls_plan_name,
.ls_plan_card.ls_plan_featured .ls_plan_price,
.ls_plan_card.ls_plan_featured .ls_plan_desc {
  color: #fff;
}

.ls_plan_card.ls_plan_featured .ls_plan_period {
  color: rgba(255, 255, 255, 0.6);
}

.ls_plan_card.ls_plan_featured .ls_plan_feature {
  color: rgba(255, 255, 255, 0.8);
}

.ls_plan_card.ls_plan_featured .ls_plan_feature::before {
  border-color: #ef762e;
}

.ls_plan_card.ls_plan_featured .ls_plan_cta {
  background: #fff;
  color: #023f02;
}

.ls_plan_card.ls_plan_featured .ls_plan_cta:hover {
  background: #e2d3c7;
}

.ls_plan_badge {
  display: inline-block;
  background: #ef762e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.ls_plan_name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #023f02;
  margin: 0;
}

.ls_plan_price {
  font-size: 42px;
  font-weight: 800;
  color: #023f02;
  line-height: 1;
  margin: 0;
}

.ls_plan_period {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.ls_plan_desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.ls_plan_divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.ls_plan_featured .ls_plan_divider {
  background: rgba(255, 255, 255, 0.15);
}

.ls_plan_features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ls_plan_feature {
  font-size: 14px;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.ls_plan_feature::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid #023f02;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 5px;
}

.ls_plan_cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 28px;
  background: #023f02;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.ls_plan_cta:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ls_steps_section {
  padding: 100px 0;
  background-color: #fff;
}

.ls_steps_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.ls_steps_grid::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: #ddd;
}

.ls_step_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}

.ls_step_num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ef762e;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.ls_step_title {
  font-size: 16px;
  font-weight: 700;
  color: #023f02;
  margin: 0;
}

.ls_step_desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.ls_machines_section {
  padding: 100px 0;
  background: #e2d3c7;
  overflow: hidden;
}

.ls_machines_swiper {
  margin-top: 60px;
  overflow: visible;
}

.ls_machine_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.ls_machine_btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #023f02;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.ls_machine_btn svg {
  stroke: #023f02;
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

.ls_machine_btn:hover {
  background: #023f02;
}

.ls_machine_btn:hover svg {
  stroke: #fff;
}

.ls_features_section {
  padding: 100px 0;
  background-color: #fff;
}

.ls_features_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  margin-top: 60px;
}

.ls_feature_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.ls_feature_icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f5f0ea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.ls_feature_icon svg {
  stroke: #023f02;
}

.ls_feature_title {
  font-size: 15px;
  font-weight: 700;
  color: #023f02;
  margin: 0;
}

.ls_feature_desc {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

.ls_stats_strip {
  background: #023f02;
  padding: 70px 0;
}

.ls_stats_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ls_stat_item {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.ls_stat_item + .ls_stat_item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.ls_stat_num {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ls_stat_sup {
  font-size: 26px;
  vertical-align: super;
  font-weight: 700;
}

.ls_stat_label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ls_beans_section {
  background: #111;
  padding: 100px 0;
  overflow: hidden;
}

.ls_beans_inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ls_beans_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.ls_beans_image {
  border-radius: 16px;
  overflow: hidden;
}

.ls_beans_image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.ls_beans_list {
  list-style: none;
  padding: 0;
  margin: 32px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.ls_beans_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.ls_beans_item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef762e;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 7px;
}

.ls_enquiry_section {
  padding: 100px 0;
}

.ls_enquiry_inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.1fr 0.9fr;
      grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.ls_enquiry_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.ls_field_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ls_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.ls_field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #023f02;
}

.ls_field input,
.ls_field select,
.ls_field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #f5f0ea;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  color: #023f02;
  outline: none;
  font-family: inherit;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.ls_field input:focus,
.ls_field select:focus,
.ls_field textarea:focus {
  border-color: #023f02;
  background: #fff;
}

.ls_field input::-webkit-input-placeholder,
.ls_field select::-webkit-input-placeholder,
.ls_field textarea::-webkit-input-placeholder {
  color: #aaa;
}

.ls_field input:-ms-input-placeholder,
.ls_field select:-ms-input-placeholder,
.ls_field textarea:-ms-input-placeholder {
  color: #aaa;
}

.ls_field input::-ms-input-placeholder,
.ls_field select::-ms-input-placeholder,
.ls_field textarea::-ms-input-placeholder {
  color: #aaa;
}

.ls_field input::placeholder,
.ls_field select::placeholder,
.ls_field textarea::placeholder {
  color: #aaa;
}

.ls_field textarea {
  resize: vertical;
  min-height: 120px;
}

.ls_field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #f5f0ea;
  padding-right: 40px;
  cursor: pointer;
}

.ls_form_success {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: 60px 40px;
  background: #f5f0ea;
  border-radius: 16px;
  text-align: center;
}

.ls_success_icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #023f02;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ls_success_icon svg {
  stroke: #fff;
}

.ls_enquiry_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding-top: 12px;
}

.ls_info_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.ls_info_label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ef762e;
  margin: 0;
}

.ls_info_heading {
  font-size: 22px;
  font-weight: 700;
  color: #023f02;
  line-height: 1.3;
  margin: 0;
}

.ls_info_sub {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

.ls_trust_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.ls_trust_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}

.ls_trust_icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f5f0ea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.ls_trust_icon svg {
  stroke: #023f02;
}

.ls_trust_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}

.ls_trust_text strong {
  font-size: 14px;
  font-weight: 700;
  color: #023f02;
}

.ls_trust_text span {
  font-size: 13px;
  color: #888;
}

.cat_intro_section {
  padding: 70px 0 50px;
  background: #fff;
  margin-top: 90px;
}

.cat_intro_section .cat_breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.cat_intro_section .cat_breadcrumb a,
.cat_intro_section .cat_breadcrumb .cat_bc_sep,
.cat_intro_section .cat_breadcrumb .cat_bc_current {
  padding-top: 0;
}

.cat_intro_section .cat_breadcrumb a {
  font-family: reg_font;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cat_intro_section .cat_breadcrumb a:hover {
  color: #ef762e;
}

.cat_intro_section .cat_breadcrumb .cat_bc_sep {
  color: rgba(0, 0, 0, 0.2);
}

.cat_intro_section .cat_breadcrumb .cat_bc_current {
  color: #023f02;
  font-family: semi_font;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cat_intro_section .cat_intro_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cat_intro_section .cat_title_col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cat_intro_section .cat_count {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0;
  opacity: 0.45;
}

.cat_intro_section .common_header {
  padding-top: 0;
  margin-top: 10px;
}

.cat_intro_section p {
  margin-top: 12px;
  max-width: 600px;
  padding-top: 0;
}

.cat_products_section {
  padding: 60px 0 100px;
  background: #fff;
}

.cat_products_section .cat_grid {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

.cat_products_section .cat_card_wrap {
  width: 31.33333%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 3%;
  margin-bottom: 30px;
}

.cat_products_section .cat_card_wrap:nth-child(3n+0) {
  margin-right: 0;
}

.cat_products_section .cat_card {
  display: block;
  text-decoration: none;
  background: #f5ebe1;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(2, 63, 2, 0.08);
}

.cat_products_section .cat_card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cat_products_section .cat_card:hover .cat_card_link {
  gap: 10px;
  color: #ef762e;
}

.cat_products_section .cat_card:hover .cat_card_link svg {
  stroke: #ef762e;
}

.cat_products_section .cat_card_img {
  padding: 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cat_products_section .cat_card_img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cat_products_section .cat_card_info {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(2, 63, 2, 0.12);
  background: #fff;
}

.cat_products_section .cat_card_name {
  font-family: semi_font;
  color: #023f02;
  margin: 0;
  padding: 0;
  letter-spacing: 0.04em;
}

.cat_products_section .cat_card_sub {
  font-family: reg_font;
  color: #000;
  opacity: 0.55;
  margin: 0;
  padding: 0;
  padding-top: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cat_products_section .cat_card_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: #023f02;
  font-family: semi_font;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cat_products_section .cat_card_link svg {
  stroke: #023f02;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cat_filter_bar {
  padding: 30px 0 0;
}

.cat_filter_bar .cat_filter_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cat_filter_bar .cat_filter_btn {
  padding: 8px 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  background: transparent;
  font-family: reg_font;
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cat_filter_bar .cat_filter_btn:hover {
  border-color: #023f02;
  color: #023f02;
}

.cat_filter_bar .cat_filter_btn.active {
  background: #023f02;
  border-color: #023f02;
  color: #fff;
}

.cat_card_wrap.cat_hidden {
  display: none;
}

@-webkit-keyframes logo_ticker_scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes logo_ticker_scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.client_logos_section {
  padding: 15vh 0;
  background: #fff;
  overflow: hidden;
}

.client_logos_label {
  display: block;
  text-align: center;
  color: #023f02;
  opacity: 0.5;
  margin-bottom: 48px;
}

.logo_ticker_wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo_ticker_wrap::before, .logo_ticker_wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo_ticker_wrap::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
  background: linear-gradient(to right, #fff, transparent);
}

.logo_ticker_wrap::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(transparent));
  background: linear-gradient(to left, #fff, transparent);
}

.logo_ticker_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: logo_ticker_scroll 30s linear infinite;
          animation: logo_ticker_scroll 30s linear infinite;
}

.logo_ticker_track:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.logo_ticker_item {
  padding: 18px 40px;
  margin: 0 16px;
  border: 1px solid rgba(2, 63, 2, 0.15);
  border-radius: 100px;
  font-family: semi_font;
  font-size: 14px;
  color: #023f02;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.logo_ticker_item:hover {
  border-color: #ef762e;
  color: #ef762e;
}

.header_cta .common_anchor {
  margin-top: 0;
}

/*Responsive Starts*/
@media only screen and (max-width: 1599px) {
  .header_cta .common_anchor {
    font-size: 10px;
  }
  .nav_left .has_dropdown > a {
    font-size: 11px;
  }
}

@media only screen and (max-width: 1100px) {
  .header_inner {
    gap: 20px;
    -ms-grid-columns: auto 1fr auto;
        grid-template-columns: auto 1fr auto;
  }
  .mobile_menu_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav_left,
  .header_cta {
    display: none;
  }
  .header_logo {
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .header_logo a img {
    height: 45px;
  }
  .scrolled .header_logo a img {
    height: 38px;
  }
  .footer_columns {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer_bottom_inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer_links {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer_social {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer_copyright {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .roast_to_cup_section {
    padding: 70px 0;
  }
  .roast_to_cup_section .image_column {
    padding-right: 15px;
  }
  .roast_to_cup_section .content_column {
    padding-left: 15px;
  }
  .roast_to_cup_section .logo_wrap img {
    max-width: 240px;
  }
  .services_grid_section {
    padding: 100px 0;
  }
  .services_grid_section .services_grid {
    gap: 15px;
  }
  .services_grid_section .service_item {
    height: 400px;
  }
  .services_grid_section .service_item:nth-child(2) {
    margin-top: 60px;
  }
  .services_grid_section .service_item:nth-child(3) {
    margin-top: -30px;
  }
  .services_grid_section .service_item:nth-child(4) {
    margin-top: 50px;
  }
  .services_grid_section .service_overlay {
    padding: 30px;
  }
  .baristas_section {
    padding: 80px 0;
  }
  .baristas_section .section_header_wrap {
    margin-bottom: 50px;
    padding-bottom: 35px;
  }
  .baristas_section .left_content {
    padding-right: 25px;
  }
  .baristas_section .right_logo {
    padding-left: 25px;
  }
  .baristas_section .right_logo img {
    max-width: 220px;
  }
  .baristas_section .product_image {
    min-height: 340px;
    padding: 35px 25px;
  }
  .baristas_section .barista_prev {
    left: -15px;
  }
  .baristas_section .barista_next {
    right: -15px;
  }
  .coffee_journey_section {
    padding: 100px 0;
  }
  .coffee_journey_section .sticky_column {
    padding-right: 30px;
  }
  .coffee_journey_section .sticky_content {
    top: 100px;
  }
  .coffee_journey_section .timeline_column {
    padding-left: 30px;
  }
  .coffee_journey_section .timeline_line {
    left: 75px;
  }
  .coffee_journey_section .step_number {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
  .coffee_journey_section .step_title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 786px) {
  .mobile_menu_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_inner {
    -ms-grid-columns: auto 1fr auto;
        grid-template-columns: auto 1fr auto;
    gap: 20px;
  }
  .nav_left,
  .header_cta {
    display: none;
  }
  .header_logo {
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .header_logo a img {
    height: 40px;
  }
  .scrolled .header_logo a img {
    height: 36px;
  }
  .header_container {
    padding: 18px 0;
  }
  .scrolled .header_container {
    padding: 12px 0;
  }
  .footer_main {
    padding: 60px 0 40px;
  }
  .footer_logo_wrap {
    margin-bottom: 40px;
  }
  .footer_logo_wrap .footer_logo {
    height: 50px;
  }
  .footer_columns {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer_column {
    text-align: center;
  }
  .footer_column h4 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .footer_column ul li {
    margin-bottom: 10px;
  }
  .footer_column ul li a {
    font-size: 14px;
  }
  .footer_column p {
    font-size: 13px;
  }
  .newsletter_column .newsletter_form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .newsletter_column .newsletter_form input,
  .newsletter_column .newsletter_form .submit_btn {
    width: 100%;
  }
  .footer_bottom {
    padding: 25px 0;
  }
  .footer_bottom_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer_social {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer_copyright {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer_copyright p {
    font-size: 13px;
  }
  .top_common_slider_wrap .mobile {
    display: inline-block;
  }
  .top_common_slider_wrap .desktop {
    display: none;
  }
  .top_common_slider_wrap .title_wrap {
    position: absolute;
    width: 100%;
    left: 0;
    top: auto;
    bottom: 30px;
    height: auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    align-items: center;
  }
  .top_common_slider_wrap .title_wrap .common_header {
    padding: 0;
  }
  .top_common_slider_wrap .half_wrap {
    float: right;
    width: 100%;
    padding: 0;
  }
  .cursor {
    display: none;
  }
  .machine_selector_wrap .slider_section {
    margin-top: 10vh;
  }
  .machine_selector_wrap .machine_card_wrap {
    margin-top: 10vh;
  }
  .machine_selector_wrap .machine_card {
    padding: 20px;
  }
  .machine_selector_wrap .machine_card .card_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .machine_selector_wrap .machine_card .machine_image_wrap {
    width: 120px;
    height: 120px;
  }
  .machine_selector_wrap .machine_card .machine_details .common_header,
  .machine_selector_wrap .machine_card .machine_details p {
    text-align: center;
  }
  .machine_selector_wrap .machine_card .arrow_wrap {
    width: 50px;
    height: 50px;
  }
  .machine_selector_wrap p br.desktop {
    display: none;
  }
  .machine_selector_wrap p br.mobile {
    display: inline;
  }
  .roast_to_cup_section {
    margin-top: 0;
    padding: 60px 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .roast_to_cup_section .image_column,
  .roast_to_cup_section .content_column {
    width: 100%;
    padding: 0;
    float: left;
  }
  .roast_to_cup_section .image_column {
    margin-bottom: 40px;
  }
  .roast_to_cup_section .content_column {
    text-align: center;
  }
  .roast_to_cup_section .logo_wrap {
    margin-bottom: 20px;
    text-align: center;
  }
  .roast_to_cup_section .logo_wrap img {
    max-width: 200px;
  }
  .roast_to_cup_section .common_header,
  .roast_to_cup_section p {
    text-align: center;
  }
  .services_grid_section {
    padding: 60px 0;
  }
  .services_grid_section .services_grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .services_grid_section .service_item {
    height: 300px;
    margin-top: 0 !important;
  }
  .services_grid_section .service_overlay {
    padding: 25px;
  }
  .services_grid_section .overlay_content p {
    font-size: 14px;
  }
  .baristas_section {
    padding: 60px 0;
    border-radius: 40px;
  }
  .baristas_section .section_header_wrap {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .baristas_section .left_content,
  .baristas_section .right_logo {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .baristas_section .left_content {
    margin-bottom: 25px;
  }
  .baristas_section .left_content .common_header,
  .baristas_section .left_content p {
    text-align: center;
  }
  .baristas_section .right_logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .baristas_section .right_logo img {
    max-width: 180px;
  }
  .baristas_section .product_image {
    min-height: 280px;
    padding: 30px 20px;
  }
  .baristas_section .product_info {
    padding: 25px 20px;
  }
  .baristas_section .product_name {
    font-size: 16px;
  }
  .baristas_section .product_subtitle {
    font-size: 11px;
  }
  .baristas_section .barista_prev,
  .baristas_section .barista_next {
    width: 40px;
    height: 40px;
  }
  .baristas_section .barista_prev:after,
  .baristas_section .barista_next:after {
    font-size: 16px;
  }
  .baristas_section .barista_prev {
    left: 10px;
  }
  .baristas_section .barista_next {
    right: 10px;
  }
  .baristas_section .baristas_swiper {
    overflow: visible;
  }
  .baristas_section .baristas_swiper .product_ul_wrap .product_card {
    width: 100%;
    display: inline-block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: 0%;
    margin-top: 15px;
  }
  .baristas_section .baristas_swiper .product_ul_wrap .product_card:nth-child(1n+0) {
    margin-right: 0;
  }
  .coffee_journey_section {
    padding: 60px 0;
  }
  .coffee_journey_section .background_image_fixed {
    background-attachment: scroll;
  }
  .coffee_journey_section .sticky_column,
  .coffee_journey_section .timeline_column {
    width: 100%;
    padding: 0;
  }
  .coffee_journey_section .sticky_column {
    margin-bottom: 50px;
  }
  .coffee_journey_section .sticky_content {
    position: relative;
    top: 0;
    text-align: center;
  }
  .coffee_journey_section .sticky_content .common_header,
  .coffee_journey_section .sticky_content p {
    text-align: center;
  }
  .coffee_journey_section .timeline_column {
    padding-bottom: 50px;
  }
  .coffee_journey_section .timeline_line {
    left: 29px;
  }
  .coffee_journey_section .timeline_item {
    margin-bottom: 50px;
    gap: 20px;
  }
  .coffee_journey_section .step_number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  .coffee_journey_section .step_title {
    font-size: 18px;
  }
  .coffee_journey_section .step_description {
    font-size: 14px;
  }
  .flexible_solutions_section {
    padding: 60px 0;
  }
  .flexible_solutions_section .section_header {
    margin-bottom: 40px;
  }
  .flexible_solutions_section .section_header .subtitle_text {
    font-size: 16px;
    padding: 0 20px;
  }
  .flexible_solutions_section .solutions_grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .flexible_solutions_section .solution_card_wrap {
    width: 100%;
    padding: 0;
  }
  .flexible_solutions_section .solution_card {
    padding: 40px 30px;
  }
  .flexible_solutions_section .card_icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
  }
  .flexible_solutions_section .card_icon svg {
    width: 40px;
    height: 40px;
  }
  .flexible_solutions_section .card_description {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .flexible_solutions_section .benefits_list {
    margin-bottom: 30px;
  }
  .flexible_solutions_section .benefits_list li {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .au_statement_section {
    padding: 80px 0;
  }
  .au_vision_section {
    padding: 80px 0;
  }
  .au_vision_section .au_vision_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .au_vision_section .au_vision_content {
    width: 100%;
  }
  .au_vision_section .au_vision_image img {
    height: 420px;
  }
  .au_editorial_pair .au_ep_left img {
    height: 620px;
  }
  .au_editorial_pair .au_ep_right .au_ep_image {
    height: 620px;
  }
  .au_offer_section {
    padding: 80px 0;
  }
  .au_offer_section .au_offer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .au_offer_section .au_offer_content {
    width: 100%;
  }
  .au_commitment_bg {
    background-attachment: scroll;
    padding: 80px 0;
  }
  .au_process_grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
  .au_process_grid .au_pg_left,
  .au_process_grid .au_pg_right {
    width: 100%;
  }
  .au_process_grid .au_pg_left img {
    height: 450px;
  }
  .au_process_grid .au_pg_image_half {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 350px;
  }
  .au_process_grid .au_pg_dark_block {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 60px 40px;
  }
  .au_cta_section {
    padding: 80px 0;
  }
  .sv_nav_strip a {
    padding: 18px 20px;
  }
  .sv_intro_section {
    padding: 60px 0 50px;
  }
  .sv_service_section {
    padding: 80px 0;
  }
  .sv_service_section .sv_service_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .sv_service_section.sv_reverse .sv_service_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sv_service_section .sv_content {
    width: 100%;
  }
  .sv_service_section .sv_image_wrap img {
    height: 500px;
  }
  .sv_why_grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sv_why_section {
    padding: 80px 0;
  }
  .sv_cta_section {
    padding: 80px 0;
  }
  .biz_overview_section {
    padding: 60px 0;
  }
  .biz_overview_grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .biz_form_card {
    padding: 50px 40px;
  }
  .biz_type_grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .biz_sol_split {
    min-height: 480px;
  }
  .biz_sol_content_inner {
    padding: 50px 45px;
  }
  .biz_promise_item {
    padding: 20px 25px;
  }
  .biz_cta_section {
    padding: 80px 0;
  }
  .biz_cta_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .biz_cta_actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 14px;
  }
  .ct_main_section {
    padding: 80px 0;
  }
  .ct_main_section .ct_main_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .ct_main_section .ct_form_col,
  .ct_main_section .ct_info_col {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .ct_channels_strip {
    padding: 60px 0;
  }
  .ct_channel_item {
    padding: 30px 30px;
  }
  .ct_faq_section {
    padding: 80px 0;
  }
  .pd_hero_section {
    padding: 50px 0 60px;
  }
  .pd_hero_section .pd_hero_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .pd_hero_section .pd_gallery_col {
    position: relative;
    top: 0;
    width: 100%;
  }
  .pd_hero_section .pd_main_image {
    aspect-ratio: auto;
    height: 420px;
  }
  .pd_discover_grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .pd_discover_img_wrap {
    height: 280px;
  }
  .ls_plans_grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .ls_steps_grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .ls_steps_grid::before {
    display: none;
  }
  .ls_features_grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .ls_stats_grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .ls_stat_item + .ls_stat_item {
    border-left: none;
  }
  .ls_beans_inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 48px;
  }
  .ls_beans_image img {
    height: 360px;
  }
  .ls_enquiry_inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 48px;
  }
  .client_logos_section {
    padding: 10vh 0;
  }
  .logo_ticker_item {
    padding: 14px 28px;
    margin: 0 10px;
  }
  .logo_ticker_wrap::before, .logo_ticker_wrap::after {
    width: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .au_statement_section {
    padding: 60px 0;
  }
  .au_vision_section {
    padding: 60px 0;
  }
  .au_vision_section .au_vision_image img {
    height: 280px;
  }
  .au_editorial_pair {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .au_editorial_pair .au_ep_left,
  .au_editorial_pair .au_ep_right {
    width: 100%;
  }
  .au_editorial_pair .au_ep_left img {
    height: 460px;
  }
  .au_editorial_pair .au_ep_right .au_ep_image {
    height: 400px;
  }
  .au_offer_section {
    padding: 60px 0;
  }
  .au_commitment_bg {
    background-attachment: scroll;
    padding: 60px 0;
  }
  .au_process_grid .au_pg_left img {
    height: 500px;
  }
  .au_process_grid .au_pg_image_half {
    height: 450px;
  }
  .au_process_grid .au_pg_dark_block {
    padding: 40px 25px;
  }
  .au_cta_section {
    padding: 60px 0;
  }
  .au_cta_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sv_nav_strip {
    top: 70px;
  }
  .sv_nav_strip a {
    padding: 16px 16px;
  }
  .sv_intro_section {
    padding: 50px 0 40px;
  }
  .sv_service_section {
    padding: 60px 0;
  }
  .sv_service_section .sv_image_wrap img {
    height: 480px;
  }
  .sv_why_grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 16px;
  }
  .sv_why_item {
    padding: 40px 24px;
  }
  .sv_why_section {
    padding: 60px 0;
  }
  .sv_why_section .sv_why_grid {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .sv_cta_section {
    padding: 60px 0;
  }
  .sv_cta_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .biz_overview_section {
    padding: 50px 0;
  }
  .biz_overview_section .biz_overview_grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .biz_form_section {
    padding: 60px 0;
  }
  .biz_form_section .biz_form_card {
    padding: 20px 20px;
  }
  .biz_form_section .biz_form_card .biz_type_grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .biz_form_section .common_anchor {
    font-size: 12px;
    text-align: center;
    width: 100%;
  }
  .biz_type_btn {
    padding: 16px 8px;
  }
  .biz_volume_grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .biz_needs_grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .biz_contact_fields .biz_field_row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .biz_solution_section .biz_sol_split {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    min-height: auto;
  }
  .biz_solution_section .biz_sol_split .biz_sol_image {
    width: 100%;
    height: 500px;
  }
  .biz_solution_section .biz_sol_split .biz_sol_content {
    width: 100%;
  }
  .biz_solution_section .biz_sol_split .biz_sol_content .biz_sol_content_inner {
    padding: 50px 25px;
  }
  .biz_promise_strip {
    padding: 50px 0;
  }
  .biz_promise_strip .biz_promise_grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .biz_promise_strip .biz_promise_grid .biz_promise_item {
    padding: 20px 25px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .biz_promise_strip .biz_promise_grid .biz_promise_item:last-child {
    border-bottom: none;
  }
  .biz_cta_section {
    padding: 60px 0;
  }
  .biz_cta_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .biz_cta_actions {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .biz_cta_actions .common_anchor {
    text-align: center;
  }
  .ct_main_section {
    padding: 60px 0;
  }
  .ct_main_section .ct_form_inputs .ct_field_row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .ct_main_section .ct_form_inputs .ct_field_row .form_field {
    margin-top: 14px;
  }
  .ct_main_section .ct_info_block {
    padding: 36px 24px;
  }
  .ct_channels_strip {
    padding: 50px 0;
  }
  .ct_channels_strip .ct_channels_grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .ct_channels_strip .ct_channels_grid .ct_channel_item {
    padding: 28px 25px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .ct_channels_strip .ct_channels_grid .ct_channel_item:last-child {
    border-bottom: none;
  }
  .ct_faq_section {
    padding: 60px 0;
  }
  .ct_faq_list {
    max-width: 100%;
  }
  .pd_hero_section {
    padding: 40px 0 50px;
  }
  .pd_hero_section .pd_main_image {
    height: 320px;
  }
  .pd_hero_section .pd_thumb_strip {
    gap: 8px;
  }
  .pd_hero_section .pd_thumb {
    width: 64px;
    height: 64px;
  }
  .pd_hero_section .pd_cta_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pd_hero_section .pd_features_strip {
    gap: 16px;
  }
  .pd_related_section {
    padding: 60px 0;
  }
  .pd_related_section .pd_related_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
  .pd_discover_section {
    padding: 60px 0;
  }
  .pd_discover_section .pd_discover_grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .pd_discover_section .pd_discover_grid .pd_discover_img_wrap {
    height: 260px;
  }
  .ls_plans_section {
    padding: 60px 0;
  }
  .ls_plan_card {
    padding: 36px 28px;
  }
  .ls_steps_section {
    padding: 60px 0;
  }
  .ls_steps_grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .ls_machines_section {
    padding: 60px 0;
  }
  .ls_features_section {
    padding: 60px 0;
  }
  .ls_features_grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    margin-top: 40px;
  }
  .ls_stats_strip {
    padding: 50px 0;
  }
  .ls_stats_grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .ls_stat_num {
    font-size: 38px;
  }
  .ls_beans_section {
    padding: 60px 0;
  }
  .ls_beans_list {
    margin: 24px 0 32px;
  }
  .ls_beans_image img {
    height: 260px;
  }
  .ls_enquiry_section {
    padding: 60px 0;
  }
  .ls_field_row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .ls_enquiry_info {
    gap: 32px;
  }
  .client_logos_section {
    padding: 10vh 0;
  }
  .client_logos_label {
    margin-bottom: 32px;
  }
  .logo_ticker_item {
    padding: 12px 22px;
    margin: 0 8px;
  }
  .logo_ticker_wrap::before, .logo_ticker_wrap::after {
    width: 40px;
  }
}

.quote-popup-open {
  overflow: hidden;
}

.quote_popup_wrap {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.quote_popup_wrap.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote_popup_wrap.active .quote_popup_box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.quote_popup_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.quote_popup_box {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  padding: 34px;
  box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 4px 5px 21px 1px rgba(0, 0, 0, 0.11);
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.quote_popup_close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #023f02;
  font-size: 26px;
  line-height: 34px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.quote_popup_close:hover {
  background: #023f02;
  color: #fff;
}

.quote_popup_head {
  padding-right: 36px;
}

.quote_popup_head .common_header {
  padding-top: 6px;
}

.quote_popup_intro {
  padding-top: 10px;
  line-height: 1.65em;
  opacity: 0.65;
}

.quote_popup_form {
  margin-top: 12px;
}

.quote_popup_form .form_field {
  margin-top: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: reg_font;
}

.quote_popup_form .form_field.error {
  border-color: #c0392b;
}

.quote_popup_form .common_anchor {
  width: 100%;
  border: 0;
  cursor: pointer;
  text-align: center;
  margin-top: 16px;
}

.quote_field_group {
  display: block;
}

.quote_field_error {
  display: block;
  min-height: 16px;
  padding-top: 4px;
  color: #c0392b;
  font-size: 12px;
  line-height: 1.35em;
}

.quote_form_message {
  min-height: 20px;
  padding-top: 8px;
  font-size: 13px;
  line-height: 1.45em;
}

.quote_form_message.error {
  color: #c0392b;
}

.quote_form_message.success {
  color: #023f02;
}

.quote_field_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote_field_row .form_field {
  margin-top: 12px;
}

.quote_textarea {
  min-height: 110px;
  resize: vertical;
}

@media only screen and (max-width: 480px) {
  .quote_popup_wrap {
    padding: 14px;
  }
  .quote_popup_box {
    padding: 28px 20px 22px;
  }
  .quote_field_row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0;
  }
}

a:focus {
  outline: none;
}

@media only screen and (max-width: 786px) {
  .cat_intro_section {
    margin-top: 75px;
  }
  .cat_intro_section .cat_intro_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .cat_products_section .cat_card_wrap {
    width: 48.5%;
    display: inline-block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: 3%;
  }
  .cat_products_section .cat_card_wrap:nth-child(2n+0) {
    margin-right: 0;
  }
  .cat_filter_bar {
    padding: 20px 0 0;
  }
  .cat_filter_bar .cat_filter_btn {
    padding: 7px 14px;
  }
}

@media only screen and (max-width: 480px) {
  .cat_intro_section {
    padding: 50px 0 30px;
    margin-top: 65px;
  }
  .cat_products_section {
    padding: 40px 0 60px;
  }
  .cat_products_section .cat_card_wrap {
    width: 100%;
    display: inline-block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: 0%;
    margin-bottom: 20px;
  }
  .cat_products_section .cat_card_wrap:nth-child(1n+0) {
    margin-right: 0;
  }
  .cat_filter_bar .cat_filter_inner {
    gap: 8px;
  }
  .cat_filter_bar .cat_filter_btn {
    padding: 6px 12px;
  }
}

/*Responsive Ends*/
.site_header.hidden {
  display: inline-block !important;
  visibility: visible !important;
}

.biz_field_error {
  display: block;
  min-height: 16px;
  padding-top: 4px;
  color: #c0392b;
  font-size: 12px;
  line-height: 1.35em;
}

.biz_form_message {
  min-height: 20px;
  padding-top: 8px;
  font-size: 13px;
  line-height: 1.45em;
  text-align: right;
}

.biz_form_message.error {
  color: #c0392b;
}

.biz_form_message.success {
  color: #023f02;
}

.biz_honeypot {
  display: none !important;
}

.biz_form_section .form_field.error {
  border-color: #c0392b;
}

.biz_form_section .biz_type_btn.error,
.biz_form_section .biz_volume_btn.error,
.biz_form_section .biz_need_item.error {
  border-color: #c0392b;
}

.ct_field_error {
  display: block;
  min-height: 16px;
  padding-top: 4px;
  color: #c0392b;
  font-size: 12px;
  line-height: 1.35em;
}

.ct_form_message {
  min-height: 20px;
  padding-top: 8px;
  font-size: 13px;
  line-height: 1.45em;
}

.ct_form_message.error {
  color: #c0392b;
}

.ct_form_message.success {
  color: #023f02;
}

.ct_honeypot {
  display: none !important;
}

.ct_main_section .form_field.error {
  border-color: #c0392b;
}

.ct_main_section .ct_subject_btn.error {
  border-color: #c0392b;
}

.newsletter_field_error {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  min-height: 16px;
  margin-top: -4px;
  color: #c0392b;
  font-size: 12px;
  line-height: 1.35em;
}

.newsletter_form_message {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  min-height: 18px;
  margin-top: -4px;
  font-size: 12px;
  line-height: 1.4em;
}

.newsletter_form_message.error {
  color: #c0392b;
}

.newsletter_form_message.success {
  color: #023f02;
}

.newsletter_form .form_field.error,
.newsletter_form input.error {
  border-color: #c0392b;
}

.ls_field_error {
  display: block;
  min-height: 16px;
  padding-top: 4px;
  color: #c0392b;
  font-size: 12px;
  line-height: 1.35em;
}

.ls_form_message {
  min-height: 20px;
  padding-top: 8px;
  font-size: 13px;
  line-height: 1.45em;
}

.ls_form_message.error {
  color: #c0392b;
}

.ls_form_message.success {
  color: #023f02;
}

.ls_honeypot {
  display: none !important;
}

.ls_enquiry_form input.error,
.ls_enquiry_form select.error,
.ls_enquiry_form textarea.error {
  border-color: #c0392b;
}

.ls_field_error:empty {
  display: none;
}

.ls_enquiry_form {
  margin-top: 20px;
}
/*# sourceMappingURL=style.css.map */