/* ======================================================================
   Espresso-Etc! Master Style v2
   Purpose: clean CSS framework
   - No CSS custom properties / variables
   - No experimental syntax
   - Fonts preserved: Open Sans body, Raleway headings, Urbanist content kicker and eyebrow
   - Designed to replace legacy float-heavy page sections over time
   ====================================================================== */
/* ----------------------------------------------------------------------
   01. Fonts
---------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
/* ----------------------------------------------------------------------
   02. Reset / Base
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #333333;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.65;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
iframe, video, object, embed {
  max-width: 100%;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/* ----------------------------------------------------------------------
   03. Typography
---------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #393939;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 18px 0;
}
h1 {
  font-size: 42px;
  line-height: 1.12;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 27px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 19px;
}
h6 {
  font-size: 17px;
}
p {
  margin: 0 0 16px 0;
  color: #333333;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
p.live-link {
  text-decoration: none;
  margin: 20px 0 0 0 !important;
  line-height: 1.6;
  font-family: 'Urbanist', 'Raleway', sans-serif;
  font-size: 15px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #5d9d2f !important;
}
p.live-link a {
  color: #5d9d2f !important;
}
a:hover, a:focus {
  color: #ad510e;
  text-decoration: none;
}
.lead {
  color: #454545;
  font-size: 27px;
  line-height: 1.65;
}
.small-text {
  font-size: 14px !important;
  line-height: 1.55;
}
.small-font {
  font-size: 14px !important;
  line-height: 1.55;
}
.caption {
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
}
strong, b {
  font-weight: 700;
}
em, i, cite {
  font-style: italic;
}
blockquote {
  margin: 30px 0;
  padding: 20px 35px 10px 25px;
  border-left: 5px solid #d77d12;
  border-radius: 8px;
  background: #F9F6F0;
  color: #454545;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
/* ----------------------------------------------------------------------
   04. Links and Buttons
---------------------------------------------------------------------- */
a {
  color: #336600;
  text-decoration: none;
}
a:hover, a:focus {
  color: #ad510e;
  text-decoration: none;
}
/* Tan BUTTON */
.button-tan {
  background: #5d9d2f;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #5d9d2f;
  border-radius: 4px;
  color: #ffffff !important;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}
.button-tan > a {
  background: #5d9d2f;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #5d9d2f;
  border-radius: 4px;
  color: #ffffff !important;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}
.button-tan:hover, .button-tan:focus {
  border-color: #b4864e;
  background: #b4864e;
  color: #ffffff !important;
}
.button, .btn, .cta-button, .demo-button {
  display: inline-block;
  padding: 13px 24px;
  border: 1px solid #5d9d2f;
  border-radius: 4px;
  background: #5d9d2f;
  color: #ffffff !important;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  white-space: normal;
}
.button:hover, .btn:hover, .cta-button:hover, .demo-button:hover, .button:focus, .btn:focus, .cta-button:focus, .demo-button:focus {
  border-color: #336600;
  background: #336600;
  color: #ffffff !important;
}
.crypto-email-btn {
  display: inline-block;
  padding: 13px 24px;
  margin: 0 0 20px 0;
  border: 1px solid #5d9d2f;
  border-radius: 4px;
  background: #5d9d2f;
  color: #ffffff !important;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  white-space: normal;
}
.crypto-email-btn:hover {
  background-color: #0056b3; /* Darker shade on hover */
  border-color: #336600;
  background: #336600;
  color: #ffffff !important;
}
.button-outline, .btn-outline {
  background: #ffffff;
  color: #43bf04 !important;
}
.button-outline:hover, .btn-outline:hover, .button-outline:focus, .btn-outline:focus {
  background: #43bf04;
  color: #ffffff !important;
}
.button-brown, .btn-brown {
  border-color: #6c4020;
  background: #6c4020;
}
.button-brown:hover, .btn-brown:hover, .button-brown:focus, .btn-brown:focus {
  border-color: #5a351b;
  background: #5a351b;
}
.button-orange, .btn-orange {
  border-color: #d77d12;
  background: #d77d12;
}
.button-orange:hover, .btn-orange:hover, .button-orange:focus, .btn-orange:focus {
  border-color: #ad510e;
  background: #ad510e;
}
.button-large, .btn-large {
  padding: 16px 30px;
  font-size: 18px;
}
.button-small, .btn-small {
  padding: 9px 16px;
  font-size: 14px;
}
.button-row {
  margin-top: 24px;
}
.button-row .button, .button-row .btn, .button-row .cta-button {
  margin-right: 12px;
  margin-bottom: 12px;
}
/* ----------------------------------------------------------------------
   05. Containers and Layout
---------------------------------------------------------------------- */
.site-wrapper, .site_wrapper {
  width: 100%;
  margin: 0 auto;
}
/*DO NOT CHANGE CONTAINER WIDTH*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 10px 20px;
  /*padding: 0 10px 10px 20px;*/
}
.container-wide {
  width: 1320px;
  max-width: 94%;
  margin: 0 auto;
}
.container-narrow {
  width: 860px;
  max-width: 92%;
  margin: 0 auto;
}
.section {
  padding: 78px 0;
}
.section-small {
  padding: 48px 0;
}
.section-large {
  padding: 100px 0;
}
.section-white {
  background: #ffffff;
}
.section-light {
  background: #f9f9f9;
}
.section-cool {
  background: #f6f5f5;
}
.section-warm {
  background: #f9ede0;
}
.section-brown {
  background: #5a351b;
  color: #ffffff;
}
.section-green {
  background: #336600;
  color: #ffffff;
}
.section-brown h1, .section-brown h2, .section-brown h3, .section-brown h4, .section-brown h5, .section-brown h6, .section-brown p, .section-green h1, .section-green h2, .section-green h3, .section-green h4, .section-green h5, .section-green h6, .section-green p {
  color: #ffffff;
}
.section-header {
  max-width: 820px;
  margin: 0 auto 42px auto;
  text-align: center;
}
.section-header p {
  font-size: 18px;
}
.content-fullwidth, .content_fullwidth {
  width: 100%;
  padding: 40px 0 0 0;
}
.content-left, .content_left {
  float: left;
  width: 70%;
}
.content-right, .content_right {
  float: right;
  width: 70%;
}
.left-sidebar, .left_sidebar, .right-sidebar, .right_sidebar {
  width: 25%;
}
.left-sidebar, .left_sidebar {
  float: left;
}
.right-sidebar, .right_sidebar {
  float: right;
}
/* ----------------------------------------------------------------------
   06. Modern Grids
---------------------------------------------------------------------- */
.flex-row, .two-column, .three-column, .four-column {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.two-column > .column, .two-column > div {
  flex: 1 1 0;
  min-width: 0;
}
.three-column > .column, .three-column > div {
  flex: 1 1 30%;
  /*min-width: 250px;*/
}
.four-column > .column, .four-column > div {
  flex: 1 1 21%;
  min-width: 210px;
}
.align-middle {
  align-items: center;
}
.align-top {
  align-items: flex-start;
}
.gap-small {
  gap: 18px;
}
.gap-large {
  gap: 48px;
}
/* Legacy column class support */
.one_full {
  width: 100%;
}
.one_half, .one_third, .one_fourth {
  position: relative;
  float: left;
  margin-right: 4%;
}
.one_half {
  width: 48%;
}
.one_third {
  width: 30.666%;
}
.one_fourth {
  width: 22%;
}
.last {
  margin-right: 0 !important;
  clear: right;
}
/* ----------------------------------------------------------------------
   07. Header, Logo, Top Bar
---------------------------------------------------------------------- */
.top-nav, .top_nav {
  width: 100%;
  background: #5a351b;
  border-bottom: 1px solid #209020;
  color: #ffffff;
  font-size: 15px;
}
.top-nav .container, .top_nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.top-nav a, .top_nav a {
  color: #ffffff;
}
.top-nav a:hover, .top_nav a:hover {
  color: #d6ad7f;
}
.header, .site-header {
  width: 100%;
  background: #ffffff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
}
.logo {
  float: left;
  width: 25%;
}
#logo {
  display: block;
  width: 100%;
  min-height: 100px;
  text-indent: -999em;
  background: url('../images/logo.png') no-repeat left top;
  background-size: contain;
}
.logo-text, .kendaia, .brand-name {
  color: #2b7803 !important;
  font-family: 'kendaiaregular', 'Raleway', Arial, sans-serif !important;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.kendaia-brown {
  color: #6c4020 !important;
  font-family: 'kendaiaregular', 'Raleway', Arial, sans-serif !important;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.menu-main, .menu_main {
  float: left;
  width: 75%;
}
/* ----------------------------------------------------------------------
   08. Hero and Page Titles
---------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 96px 0;
  background: #f6f5f5;
}
.hero-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-overlay {
  position: relative;
}
.hero-overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: .35;
}
.hero-overlay .container, .hero-overlay .container-narrow, .hero-overlay .container-wide {
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin-bottom: 18px;
  font-size: 48px;
}
.hero p {
  max-width: 720px;
  font-size: 20px;
}
.hero-center {
  text-align: center;
}
.hero-center p {
  margin-left: auto;
  margin-right: auto;
}
.hero-dark h1, .hero-dark h2, .hero-dark h3, .hero-dark p {
  color: #ffffff;
}
.page-title, .page_title2 {
  width: 100%;
  padding: 58px 0;
  background-color: #32a300;
  background-image: url('../images/coffee-beans.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title h1, .page_title2 h1 {
  margin: 0;
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
}
.page-title p, .page_title2 p {
  max-width: 760px;
  margin-top: 12px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 18px;
}
/* ----------------------------------------------------------------------
   09. Cards and Feature Blocks
---------------------------------------------------------------------- */
.card {
  height: 100%;
  padding: 0 28px 28px 28px;
  border: 1px solid #e4e0dc;
  border-radius: 8px;
  background: #ffffff;
}
.card-shadow {
  box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
}
.card h3, .card h4 {
  margin-bottom: 10px;
  margin-top: 28px;
  color: #5d9d2f;
  font-size: 22px;
  font-weight: 500;
}
.card p:last-child {
  margin-bottom: 0;
}
.card-icon {
  margin-bottom: 16px;
  color: #5d9d2f;
  font-size: 42px;
  line-height: 1;
}
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  list-style: none;
}
.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #43bf04;
  font-weight: 700;
}
.icon-grid .card {
  text-align: center;
}
/* ----------------------------------------------------------------------
   10. CTA Sections
---------------------------------------------------------------------- */
.cta-section {
  padding: 62px 0;
  background: #f9ede0;
  text-align: center;
}
.cta-section h2 {
  margin-bottom: 12px;
}
.cta-section p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}
.cta-box {
  padding: 42px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
  text-align: center;
}
.cta-brown {
  background: #5a351b;
}
.cta-brown h2, .cta-brown h3, .cta-brown p {
  color: #ffffff;
}
.demo-cta {
  padding: 42px 24px;
  background: #f9f9f9;
  text-align: center;
}
.demo-cta h2 {
  margin-bottom: 10px;
}
.demo-cta p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer {
  color: #777777;
  font-size: 14px;
}
/* ----------------------------------------------------------------------
   11. Machine / Product Page Components
---------------------------------------------------------------------- */
.machine-hero {
  padding: 72px 0;
  background: #f6f5f5;
}
.machine-specs {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #ffffff;
}
.machine-specs th, .machine-specs td {
  padding: 13px 16px;
  border: 1px solid #e4e0dc;
  text-align: left;
  vertical-align: top;
}
.machine-specs th {
  width: 34%;
  background: #f9f9f9;
  color: #393939;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
}
.drink-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.drink-item {
  flex: 1 1 180px;
  padding: 16px;
  border: 1px solid #e4e0dc;
  background: #ffffff;
  text-align: center;
}
/* ----------------------------------------------------------------------
   12. Location Page Components
---------------------------------------------------------------------- */
.location-intro {
  padding: 70px 0;
}
.service-area-box {
  padding: 28px;
  border-left: 5px solid #43bf04;
  background: #f9f9f9;
}
.local-proof {
  background: #f6f5f5;
}
.map-embed, .video-container {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}
.map-embed iframe, .video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* ----------------------------------------------------------------------
   13. FAQ / Accordion Foundation
---------------------------------------------------------------------- */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 14px;
  border: 1px solid #e4e0dc;
  background: #ffffff;
}
.faq-question {
  padding: 18px 22px;
  color: #393939;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.faq-answer {
  padding: 0 22px 20px 22px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
/* ----------------------------------------------------------------------
   14. Forms
---------------------------------------------------------------------- */
form {
  margin: 0;
}
label {
  display: block;
  margin-bottom: 7px;
  color: #454545;
  font-weight: 600;
}
input, textarea, select {
  width: 100%;
  max-width: 100%;
  padding: 11px 12px;
  border: 1px solid #999999;
  border-radius: 3px;
  background: #f9f9f9;
  color: #454545;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.4;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  border-color: #43bf04;
  outline: none;
  background: #ffffff;
}
.form-row {
  margin-bottom: 16px;
}
.cforms label {
  float: none;
  width: 100%;
}
.cforms input, .cforms textarea {
  float: none;
  width: 100%;
}
.cforms .button {
  float: none;
}
#form_status span {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 3px;
  background: #E74C3C;
  color: #ffffff;
  text-align: center;
}
#form_status .success {
  padding: 24px;
  background: #ad774f;
}
/* ----------------------------------------------------------------------
   15. Lists, Images, Utilities
---------------------------------------------------------------------- */
ul, ol {
  margin: 0 0 20px 22px;
}
ul li, ol li {
  margin-bottom: 8px;
}
ul.clean-list, .clean-list {
  margin-left: 0;
  list-style: none;
}
ul.clean-list li, .clean-list li {
  list-style: none;
}
.rimg, .responsive-img {
  max-width: 100%;
  height: auto;
}
.img-left, .img_left, .img_left2 {
  float: left;
  margin: 0 30px 20px 0;
}
.img-right, .img_right, .img_right2 {
  float: right;
  margin: 20px 0 0 30px;
}
.text-center, .align-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right, .align-right {
  text-align: right;
}
.white {
  color: #ffffff !important;
}
.green {
  color: #43bf04 !important;
}
.gold {
  color: #ee9528 !important;
}
.tan {
  color: #b4864e !important;
}
.brown {
  color: #6c4020 !important;
}
.bg-white {
  background: #ffffff !important;
}
.bg-light {
  background: #f9f9f9 !important;
}
.bg-warm {
  background: #f9ede0 !important;
}
.bg-cool {
  background: #f6f5f5 !important;
}
.no-margin {
  margin: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.mt-1 {
  margin-top: 10px !important;
}
.mt-2 {
  margin-top: 20px !important;
}
.mt-3 {
  margin-top: 30px !important;
}
.mt-4 {
  margin-top: 40px !important;
}
.mt-5 {
  margin-top: 50px !important;
}
.mb-1 {
  margin-bottom: 10px !important;
}
.mb-2 {
  margin-bottom: 20px !important;
}
.mb-3 {
  margin-bottom: 30px !important;
}
.mb-4 {
  margin-bottom: 40px !important;
}
.mb-5 {
  margin-bottom: 50px !important;
}
.margin_top1 {
  margin-top: 10px;
}
.margin_top2 {
  margin-top: 20px;
}
.margin_top3 {
  margin-top: 30px;
}
.margin_top4 {
  margin-top: 40px;
}
.margin_top5 {
  margin-top: 50px;
}
.margin_top6 {
  margin-top: 60px;
}
/* ----------------------------------------------------------------------
   16. Footer
---------------------------------------------------------------------- */
.footer, .footer6 {
  width: 100%;
  padding: 72px 0 0 0;
  background: #ffffff url('../images/pattern2.png') repeat left top;
  color: #ffffff;
}
.footer h3, .footer6 h3 {
  color: #ffffff;
  font-weight: 500;
}
.footer a, .footer6 a {
  color: #43bf04 !important;
}
.footer a:hover, .footer6 a:hover {
  color: #ffffff !important;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.footer-column {
  flex: 1 1 250px;
}
.footer6 .column1, .footer6 .column2, .footer6 .column3 {
  float: left;
  margin-right: 4%;
}
.footer6 .column1 {
  width: 25%;
}
.footer6 .column2 {
  width: 40%;
}
.footer6 .column3 {
  width: 25%;
  margin-right: 0;
}
.copyright, .copyright_info4 {
  width: 100%;
  margin-top: 48px;
  padding: 28px 0;
  color: #946740;
  font-size: 13px;
}
.copyright a, .copyright_info4 a {
  color: #946740 !important;
}
/* ----------------------------------------------------------------------
   17. Scroll Up
---------------------------------------------------------------------- */
.scrollup {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 9001;
  width: 40px;
  height: 40px;
  background: url('../images/scroll-top-arrow.png') no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.scrollup.show {
  display: block;
}
/* ----------------------------------------------------------------------
   18. Template Helpers
---------------------------------------------------------------------- */
.template-intro {
  padding: 70px 0 40px 0;
}
.template-body {
  padding: 40px 0 78px 0;
}
.template-sidebar-layout:after {
  content: "";
  display: table;
  clear: both;
}
.template-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.template-card-grid .card {
  flex: 1 1 280px;
}
/* ----------------------------------------------------------------------
   19. Responsive
---------------------------------------------------------------------- */
@media only screen and (max-width: 1169px) {
  .container {
    width: 1000px;
  }
  .hero h1 {
    font-size: 43px;
  }
}
@media only screen and (max-width: 999px) {
  .container, .container-wide, .container-narrow {
    width: 747px;
    max-width: 92%;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  .hero {
    padding: 76px 0;
  }
  .hero h1 {
    font-size: 38px;
  }
  .logo {
    width: 30%;
  }
  .menu-main, .menu_main {
    width: 70%;
  }
  .content-left, .content_left, .content-right, .content_right, .left-sidebar, .left_sidebar, .right-sidebar, .right_sidebar {
    float: none;
    width: 100%;
  }
  .left-sidebar, .left_sidebar, .right-sidebar, .right_sidebar {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .top-nav .container, .top_nav .container, .header-inner {
    display: block;
  }
  .logo {
    float: none;
    width: 80%;
    margin: 0 auto;
  }
  #logo {
    background-position: center top;
  }
  .menu-main, .menu_main {
    float: none;
    width: 100%;
  }
  .section {
    padding: 58px 0;
  }
  .section-large {
    padding: 72px 0;
  }
  .two-column, .three-column, .four-column, .flex-row, .footer-columns, .template-card-grid {
    display: block;
  }
  .two-column > .column, .two-column > div, .three-column > .column, .three-column > div, .four-column > .column, .four-column > div, .footer-column, .template-card-grid .card {
    width: 100%;
    margin-bottom: 28px;
  }
  .one_half, .one_third, .one_fourth {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
  .last {
    margin-bottom: 0 !important;
  }
  .hero {
    padding: 58px 0;
  }
  .hero h1, .page-title h1, .page_title2 h1 {
    font-size: 32px;
  }
  .hero p, .page-title p, .page_title2 p, .lead {
    font-size: 17px;
  }
  .cta-box {
    padding: 30px 22px;
  }
  .img-left, .img_left, .img_left2, .img-right, .img_right, .img_right2 {
    float: none;
    margin: 0 0 24px 0;
  }
  .footer6 .column1, .footer6 .column2, .footer6 .column3 {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 36px;
  }
}
@media only screen and (max-width: 479px) {
  body {
    font-size: 15px;
  }
  .container, .container-wide, .container-narrow {
    width: 300px;
    max-width: 92%;
  }
  h1 {
    font-size: 31px;
  }
  h2 {
    font-size: 27px;
  }
  h3 {
    font-size: 23px;
  }
  .hero h1, .page-title h1, .page_title2 h1 {
    font-size: 29px;
  }
  .button, .btn, .cta-button, .demo-button {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  .button-row .button, .button-row .btn, .button-row .cta-button {
    margin-right: 0;
  }
  .machine-specs th, .machine-specs td {
    display: block;
    width: 100%;
  }
}
/*====================================================
  GLOBAL NAVIGATION - TWO ROW WITH DROPDOWNS
====================================================*/
.main-nav {
  position: relative;
  z-index: 3000;
  padding: 22px 0 0;
}
.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-row-top {
  gap: 38px;
  margin-bottom: 15px !important;
}
.nav-row-bottom {
  gap: 38px;
}
.nav-row > li {
  position: relative;
}
.nav-row > li > a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b4864e;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  transition: all .25s ease;
}
.nav-row > li > a:hover, .nav-row > li:hover > a {
  color: #43bf04;
}
/* Demo BUTTON */
.nav-demo > a {
  background: #b4864e;
  color: #ffffff !important;
  padding: 5px 7px;
  font-size: 14px !important;
  line-height: 1.3;
  border-radius: 6px;
}
.nav-demo > a:hover {
  background: #43bf04;
  color: #ffffff !important;
}
/* Dropdowns */
.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #e5e0da;
  border-top: 4px solid #43bf04;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: all .22s ease;
  z-index: 4000;
  margin: 15px 0 0; /*THIS SETS HOW FAR DOWN THE DROP-DOWN LIST SETS UNDER THE MAIN NAV*/
}
.main-nav .dropdown li {
  border-bottom: 1px solid #eeeeee;
}
.main-nav .dropdown li:last-child {
  border-bottom: none;
}
.main-nav .dropdown a {
  display: block;
  padding: 12px 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.35;
  color: #333333;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
}
.main-nav .dropdown a:hover {
  background: #f9f4ee;
  color: #336600;
}
.nav-row > li:hover > .dropdown, .nav-row > li:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
/* Mobile fallback */
@media only screen and (max-width: 900px) {
  .main-nav {
    padding: 20px 0;
  }
  .nav-row, .nav-row-top, .nav-row-bottom {
    display: block;
    text-align: center;
    margin-bottom: 0;
  }
  .nav-row > li {
    margin-bottom: 12px;
  }
  .main-nav .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: 8px;
  }
  .main-nav .dropdown a {
    padding: 7px 0;
    color: #b4864e;
  }
}
/*====================================================
  MOBILE NAVIGATION FIX
  Prevents dropdowns from shifting off-screen
====================================================*/
@media only screen and (max-width: 900px) {
  .main-nav {
    width: 100%;
    overflow-x: hidden;
    padding: 20px 0;
  }
  .nav-row, .nav-row-top, .nav-row-bottom {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .nav-row > li {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 12px 0;
  }
  .nav-row > li > a {
    display: block;
    white-space: normal;
    padding: 8px 18px;
  }
  .main-nav .dropdown, .nav-row > li:hover > .dropdown, .nav-row > li:focus-within > .dropdown {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 6px auto 0 auto;
    padding: 0;
    box-shadow: none;
    border: none;
    border-top: none;
    background: transparent;
  }
  .main-nav .dropdown a {
    display: block;
    white-space: normal;
    padding: 6px 18px;
    font-size: 14px;
    line-height: 1.4;
    color: #b4864e;
    background: transparent;
  }
  .main-nav .dropdown a:hover {
    background: transparent;
    color: #43bf04;
  }
  .nav-demo > a {
    display: inline-block;
    margin-top: 6px;
  }
}
/*====================================================
  MOBILE HAMBURGER NAVIGATION
====================================================*/
.mobile-nav-toggle {
  display: none;
}
@media only screen and (max-width: 900px) {
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 40px);
    max-width: 360px;
    margin: 16px auto 10px auto;
    padding: 12px 18px;
    background: #6c4020;
    color: #ffffff;
    border: 1px solid #8f6a3d;
    border-radius: 6px;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .mobile-nav-icon, .mobile-nav-icon::before, .mobile-nav-icon::after {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    position: relative;
  }
  .mobile-nav-icon::before, .mobile-nav-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .mobile-nav-icon::before {
    top: -7px;
  }
  .mobile-nav-icon::after {
    top: 7px;
  }
  .main-nav {
    display: none;
    width: 100%;
    padding: 0 20px 18px 20px;
    box-sizing: border-box;
  }
  .main-nav.is-open {
    display: block;
  }
  .nav-row, .nav-row-top, .nav-row-bottom {
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  .nav-row > li {
    display: block;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #e4d7c9;
  }
  .nav-row > li > a {
    display: block;
    padding: 13px 4px;
    white-space: normal;
    font-size: 15px;
    line-height: 1.35;
  }
  .main-nav .dropdown, .nav-row > li:hover > .dropdown, .nav-row > li:focus-within > .dropdown {
    position: static !important;
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0 0 10px 14px;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .main-nav .dropdown a {
    padding: 6px 0;
    white-space: normal;
    font-size: 14px;
    line-height: 1.4;
    color: #7c5c36;
    background: transparent;
  }
  .main-nav .dropdown a:hover {
    background: transparent;
    color: #43bf04;
  }
  .nav-demo > a {
    display: inline-block;
    margin: 12px 0;
    padding: 12px 18px;
  }
}
@media only screen and (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .main-nav.is-open {
    display: block !important;
  }
}


/* =========================================================
   Espresso-Etc Homepage Framework
   Version: 1.1

   Purpose:
   - Homepage-specific sections only.
   - Header and footer are inherited from espresso-master-interior-template.css.
   - Typography, buttons, colors, and global layout remain shared.
   ========================================================= */

html {
  scroll-behavior: smooth;
}

/* ----------------------------------------------------------------------
   01. Trust Bar
---------------------------------------------------------------------- */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid #e8e1da;
}

.trust-bar-grid {
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
}

.trust-bar-grid:after {
  content: "";
  display: table;
  clear: both;
}

.trust-bar-grid div {
  float: left;
  width: 50%;
  color: #393939;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  box-sizing: border-box;
  padding: 4px 8px;
}

.trust-bar-grid span {
  color: #43bf04;
  margin-right: 5px;
}

/* ----------------------------------------------------------------------
   02. Why Espresso-Etc Mini Features
---------------------------------------------------------------------- */
.feature-mini-grid {
  margin-top: 24px;
}

.feature-mini-grid:after {
  content: "";
  display: table;
  clear: both;
}

.feature-mini-grid div {
  margin-bottom: 16px;
}

.feature-mini-grid h3 {
  margin: 0 0 6px 0;
  color: #5d9d2f;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-mini-grid p {
  margin: 0;
  padding: 0;
}

/* ----------------------------------------------------------------------
   03. Free Demo CTA Section
---------------------------------------------------------------------- */
.demo-cta-section {
  clear: both;
  padding: 54px 0;
  background: #2c4b16;
}

.demo-cta-section-tan {
  clear: both;
  padding: 54px 0;
  background: #faf7f2;
}

.demo-cta-box {
  background: #ffffff;
  padding: 34px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  box-sizing: border-box;
}

.demo-cta-box:after {
  content: "";
  display: table;
  clear: both;
}

.demo-cta-copy h2 {
  margin: 0 0 12px 0;
  color: #393939;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 500;
}

.demo-cta-copy h3 a {
  color: #393939;
}

.demo-cta-copy p {
  font-size: 18px;
  line-height: 28px;
}

.demo-cta-action p {
  margin: 12px 0 0 0;
  padding: 0;
  color: #2c4b16;
  font-size: 16px;
    font-weight:600;
    line-height: 38px;
  /*font-style: italic;*/
}

/* ----------------------------------------------------------------------
   04. Final CTA
---------------------------------------------------------------------- */
.final-cta {
  clear: both;
  padding: 64px 0;
  background: #2c4b16;
  color: #ffffff;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 12px auto;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 500;
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 24px auto;
  padding: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
}

/* ----------------------------------------------------------------------
   05. Responsive Homepage Adjustments
---------------------------------------------------------------------- */
@media only screen and (min-width: 700px) {
  .trust-bar-grid div {
    width: 25%;
  }

  .feature-mini-grid div {
    float: left;
    width: 30.666%;
    margin-right: 4%;
  }

  .feature-mini-grid div:nth-child(3n) {
    margin-right: 0;
  }

  .demo-cta-copy {
    float: left;
    width: 50%;
  }
    
  .demo-cta-copy2 {
    float: left;
  }
.demo-cta-copy2 h3 a {
  color: #393939;
}

  .demo-cta-action {
    float: right;
    width: 50%;
    text-align: left;
    padding: 18px 0 0 40px;
  }
    
.demo-cta-action {
    float: right;
    width: 50%;
    text-align: left;
    padding: 18px 0 0 40px;
  }
}

@media only screen and (max-width: 699px) {
  .demo-cta-action {
    margin-top: 24px;
  }

  .final-cta h2 {
    font-size: 28px;
  }
}



