/*
Theme Name: ESgreen Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0.110
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

:root {
  --brand: #6DC043;
  --brand-dark: #4A9A2A;
  --text-dark: #295B20;
  --forest: #1A3D13;
  --pale: #EDF7E6;
  --bg-scene: #F7F9F5;
  --mid-green: #4A9A2A;
  --light-green: #90CF67;
  --pale-green: #D2EDBC;
  --text-body: #4A5445;
  --text-muted: #A8B4A0;
  --border: #E8EDE3;
  --white: #FFFFFF;
  --gold: #B89B28;
  --shadow-card: 0 2px 12px rgba(26, 61, 19, 0.06);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(-font-display) !important;
  color: var(--forest);
  background: var(--white);
  overflow-x: hidden;
  font-size: 14px !important;
}

/* Override Flatsome body font */
p,
li,
span,
a,
input,
textarea,
button,
select {
  font-family: var(--font-display) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display) !important;
}
.btn-primary {
  background:var(--brand);
  color:var(--white);
  cursor:pointer;
  border:none;
  border-radius:24px;
  align-items:center;
  gap:6px;
  padding:14px 28px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:all .3s;
  display:inline-flex;
  box-shadow:0 4px 16px #6dc0434d
}
.btn-primary:hover {
  background:var(--mid-green);
  transform:translateY(-2px);
  box-shadow:0 6px 24px #6dc04366
}
.btn-ghost {
  color:var(--white);
  cursor:pointer;
  background:0 0;
  border:1.5px solid #ffffff4d;
  border-radius:24px;
  align-items:center;
  gap:6px;
  padding:14px 28px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:all .3s;
  display:inline-flex
}
.btn-ghost:hover {
  background:#ffffff14;
  border-color:#ffffff80;
  transform:translateY(-2px)
}
.btn-green-outline {
  color:var(--brand);
  border:1.5px solid var(--brand);
  cursor:pointer;
  background:0 0;
  border-radius:24px;
  align-items:center;
  gap:6px;
  padding:14px 28px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:all .3s;
  display:inline-flex
}
.btn-green-outline:hover {
  background:var(--pale);
  transform:translateY(-2px)
}
.btn-shimmer {
  position:relative;
  overflow:hidden
}
.btn-shimmer:after {
  content:"";
  background:linear-gradient(90deg,#0000,#fff3,#0000);
  width:100%;
  height:100%;
  animation:3s infinite shimmer;
  position:absolute;
  top:0;
  left:-100%
}
.btn-pulse{
    animation: 2.5s infinite pulse;
}

.esgreen-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  border: none;
}
.section-tag h4{
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  border: none;
}
.section-title {
  font-family: var(--font-display) !important;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 16px;
  border: none;
}

.section-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}
.section-body{

}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
/* ===== PRIMARY BUTTON ===== */
a.btn-primary,
button.btn-primary,
.btn-primary {
  background: var(--brand);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(109, 192, 67, 0.3);
}
a.btn-primary:hover,
button.btn-primary:hover,
.btn-primary:hover {
  background: var(--mid-green);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(109, 192, 67, 0.4);
  text-decoration: none;
}

/* ===== GHOST BUTTON ===== */
a.btn-ghost,
button.btn-ghost,
.btn-ghost {
  background: transparent;
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
a.btn-ghost:hover,
button.btn-ghost:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ===== GREEN OUTLINE BUTTON ===== */
a.btn-green-outline,
button.btn-green-outline,
.btn-green-outline {
  background: transparent;
  color: var(--brand) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 24px;
  border: 1.5px solid var(--brand);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
a.btn-green-outline:hover,
button.btn-green-outline:hover,
.btn-green-outline:hover {
  background: var(--pale);
  color: var(--brand) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ===== SHIMMER OVERLAY ===== */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

/* ===== PULSE GLOW ===== */
.btn-pulse {
  animation: pulse 2.5s infinite;
}
/*HOME*/
.es-home{
    inset: 0;
    /*height: 100vh;*/
}
/*.es-home .section-bg.fill{
    background: linear-gradient(135deg, #1a3d13, #295b20, #1a3d13, #295b20) 0 0 / 300% 300%;
    opacity: .6;
}*/
.esgreen-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}
.esgreen-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: block;
}
.esgreen-hero h1 {
  font-family: var(--font-display) !important;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 8px;
  max-width: 650px;
}
.esgreen-typed {
  font-family: var(--font-display) !important;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.2;
  color: var(--light-green);
  margin-bottom: 20px;
  min-height: 1.3em;
}
.esgreen-cursor {
  color: var(--brand);
  font-weight: 400;
  transition: opacity 0.1s;
}
.esgreen-hero-sub h4 {
  color: rgba(255, 255, 255, 1);
  line-height: 1.7;
  max-width: 500px;
}
.esgreen-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }
.esgreen-trust-bar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.esgreen-trust-logos {     
    flex-direction: column;
    align-items: center;
    gap: 6px;
    display: flex;
}
.esgreen-trust-logos img {     
    opacity: 1;
    background: #ffffffe6;
    border-radius: 8px;
    height: 40px;
    padding: 4px 12px;
    transition: all .3s; 
}
.esgreen-trust-logos .icon-box-text {
    color: rgba(255,255,255,0.5);
    text-align: center;
    white-space: nowrap;
    font-size: 10px !important;
    line-height: 1.4;
}
.esgreen-trust-label { 
    color: rgba(255,255,255,0.5);
    text-align: center;
    white-space: nowrap;
    font-size: 10px !important;
    line-height: 1.4;
 }

.esgreen-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.esgreen-stat-val { font-family: var(--font-display) !important; font-weight: 700; font-size: 28px; color: var(--brand); }
.esgreen-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.esgreen-cred-caption{
    color: #ffffff4d;
    margin-top: 16px;
    font-size: 11px;
    font-style: italic;
}
.es-home .col{
    margin-left: 0;
}
.es-hero-sub1{
    letter-spacing: 2.5px;
    color: #6dc043;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-display) !important;
}
.es-hero-typed{
    font-family: var(--font-display) !important;
    color: #6dc043;
    min-height: 1.3em;
    margin-bottom: 20px;
    font-size: clamp(40px,5vw,60px);
    font-weight: 700;
    line-height: 1.2;
}
.es-hero-typed .ttbTextTyping .typingContents, .es-hero-typed .ttbTextTyping .typed-cursor{
    font-size: 1.5em;
    text-align: left !important;
    font-family: var(--font-display) !important;
}
.es-hero-sub2{
    color: #fff;
    margin-bottom: 8px;
    font-size: clamp(40px,5vw,50px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    border: none;
    margin-left: 0;
    font-family: var(--font-display) !important;
}
.es-hero-sub2 .section-title-normal{
    color: #fff;
    margin: 0;
    font-size: clamp(40px,5vw,60px) !important;
    font-weight: 700 !important;
    line-height: 1.2;
    text-transform: none;
    border: none;
    font-family: var(--font-display);
}
.es-hero-sub2  .section-title-normal span{
    border: none;
    text-transform: none;
    font-family: var(--font-display) !important;
}
.es-hero-sub3{
    color: #ffffffbf;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}
.es-hero-sub4 {
    color: #ffffff4d;
    margin-bottom: 28px;
    font-size: 11px;
    font-style: italic;
    line-height: 1.6;
}
#ttbTextTyping-1 .ttbTextTyping.default{
    text-align: left !important;
}
#ttbTextTyping-1 .ttbTextTyping .typingContents, #ttbTextTyping-1 .ttbTextTyping .typed-cursor{
    font-size: clamp(40px,5vw,60px) !important;
    font-weight: 700 !important;
}
.cred-icon .icon{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    padding-top: 4px;
    padding-left: 4px;
    display: flex;
    align-items: center;
    background: #6dc0431f;
    color: var(--brand);
    display: block;
    flex-shrink: 0;
}
.cred-icon svg{
    fill: none;
    height: auto;
    width: auto;
}
/*CARD*/
.es-card{
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all .4s;
}
.es-card-style1{
    aspect-ratio: 4/3;
    background: linear-gradient(135deg,#2d6b1e,#4a9a2a);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}
.es-card-style1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.es-card-style1 .statCard{
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: #ffffffd9;
    border: 1px solid #ffffff4d;
    border-radius: 16px;
    padding: 20px 24px;
    position: absolute;
    bottom: -24px;
    right: -16px;
    box-shadow: 0 8px 32px #1a3d131f;
}
.es-card-style1 .statVal{
    font-family: var(--font-display);
    color: var(--forest);
    font-size: 20px;
    font-weight: 700;
}
.es-card-style1 .statLab{
    color: var(--text-muted);
    margin-top: 2px;
    font-size: 12px;
}
.section-tag {
    letter-spacing: 3px;
    color: var(--brand);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
}
.section-tag .section-title-main{
    border: none;
}
.section-title {
    font-family: var(--font-display);
    color: var(--forest);
    margin-bottom: 16px;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}
.section-title .section-title-main{
    text-transform: inherit;
    border: none;
}
.closing{
    color: var(--text-dark);
    margin-top: 8px;
    font-style: italic;
    font-weight: 600;
}
.es-card {
    border-radius: 20px;
    padding: 40px 36px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}
.es-dark{
    background: var(--forest);
    border: 1px solid #6dc04326;
    color: var(--white);
}
.es-dark h3{
    color: var(--white);
}
.es-icon {
    background: var(--pale);
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
}
.es-dark .es-icon{
    background: #6dc04326;
}
.es-watermark {
    font-family: var(--font-display);
    opacity: .06;
    color: var(--brand);
    pointer-events: none;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: -10px;
    right: 16px;
}
.es-watermark .es-icon {
    background: #6dc04326;
}
.es-stat {
    color: var(--brand);
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
}
.es-light{
    background: var(--white);
    border-left: 4px solid var(--brand);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.es-service-features{
    margin-bottom: 24px;
    list-style: none;
}
.es-service-features li{
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
    padding: 10px 0 10px 32px;
    font-size: 13px;
    line-height: 1.6;
    position: relative;
}
.es-service-features li:before {
    content: "✓";
    background: var(--pale);
    width: 20px;
    height: 20px;
    color: var(--brand);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    position: absolute;
    top: 10px;
    left: 0;
}
.es-bag{
    border-radius: 20px;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    border: none;
}
.es-bag .title{
    border: none !important;
    margin-bottom: 0;
}
.es-service-features li strong {
    color: var(--forest);
    font-weight: 600;
    display: block;
}
.es-bag-green .section-title{
    border: none !important;
    margin-bottom: 0;
}
.es-bag-green .section-title-main{
    border-radius: 20px;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    background: #EDF7E6;
    color: #2E7D32;
    border: none;
}
.es-bag-red .section-title{
    border: none !important;
    margin-bottom: 0;
}
.es-bag-red .section-title-main{
    border-radius: 20px;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    background: #FFF3E0;
    color: #E65100;
    border: none;
}
.es-title{
    margin-bottom: 0;
    border: 0;
}
.es-title .section-title-main{
    font-family: var(--font-display);
    color: var(--forest);
    margin-bottom: 12px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.25;
}
ul.es-features{
    margin-bottom: 24px;
    list-style: none;
}
ul.es-features li{
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
    padding: 10px 0 10px 32px;
    font-size: 13px;
    line-height: 1.6;
    position: relative;
    margin-left: 0;
}
ul.es-features li:before {
    content: "✓";
    background: var(--pale);
    width: 20px;
    height: 20px;
    color: var(--brand);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    position: absolute;
    top: 10px;
    left: 0;
}
.es-rating-wrap{
    padding: 24px;
}
.es-rating-bars {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    display: flex;
}
.es-rating-bar {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    background: #fffc;
    border-radius: 12px;
    padding: 16px;
    transition: all .3s;
}
.es-rating-bar-top {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    display: flex;
}
.es-rating-bar-label {
    color: var(--forest);
    font-size: 13px;
    font-weight: 600;
}
.es-rating-score {
    font-family: var(--font-display);
    color: var(--brand);
    font-size: 14px;
    font-weight: 700;
}
.es-rating-track {
    background: var(--pale);
    border-radius: 3px;
    height: 6px;
    overflow: hidden;
}
.es-rating-fill{
    border-radius: 3px;
    height: 100%;
    transition: width 1.5s cubic-bezier(.4,0,.2,1);
}
.es-grade {
    background: linear-gradient(135deg, var(--forest), #2e7d32);
    color: var(--white);
    text-align: center;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px #2e7d3233;
}
.es-grade-label {
    opacity: .8;
    font-size: 11px;
    font-weight: 700;
}
.es-grade-val {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}
.es-grade-sub {
    opacity: .7;
    margin-top: 4px;
    font-size: 10px;
}
.section-tag{
    letter-spacing: 3px;
    color: var(--brand);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
}
.es-steps{
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
    display: flex;
    position: relative;
}
.es-steps:before {
    content: "";
    background: var(--pale-green);
    height: 2px;
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
}
.es-step{
    text-align: center;
    z-index: 1;
    flex: 1;
    position: relative;
}
.es-step-num {
    background: var(--brand);
    width: 56px;
    height: 56px;
    color: var(--white);
    font-family: var(--font-display);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    font-size: 20px;
    font-weight: 700;
    transition: all .3s;
    display: flex;
    box-shadow: 0 4px 16px #6dc04340;
}
.es-step-title{
    color: var(--forest);
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
}
.es-step-desc{
    color: var(--text-muted);
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.5;
}
.es-step-chip{
    background: var(--pale-green);
    color: var(--text-dark);
    border-radius: 10px;
    margin-top: 8px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    display: inline-block;
}
.es-center-section-title{
    text-align: center;
    display: block;
}
.es-sec-highlight{
    text-align: center;
    background: linear-gradient(135deg,#1a3d13,#295b20,#1a3d13) 0 0/200% 200%;
    border-radius: 24px;
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}
.es-contact-info{
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-top: 20px;
    padding: 20px 24px;
}
.es-contact-info-row{
    color: var(--text-body);
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    display: flex;
}
.es-map{
    background: var(--bg-scene);
    min-height: 280px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    text-align: center;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 14px;
    display: flex;
    overflow: hidden;
}
.es-contact-form{

}
.es-contact-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    display: grid;
}
.es-contact-group {
    margin-bottom: 16px;
}
.es-contact-group  label {
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    display: block;
}
.es-contact-group input, .es-contact-group textarea {
    border: 1px solid var(--border);
    width: 100%;
    font-family: var(--font-body);
    color: var(--forest);
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all .3s;
}
.es-contact-form-group-grow {
    flex-direction: column;
    flex: 1;
    margin-bottom: 16px;
    display: flex;
}
.footer-1 a, .footer-2 a{
    color: #fff6;
    padding: 0;
    font-size: 13px;
    text-decoration: none;
    transition: color .3s;
    display: block;
}
.footer-1 .widget-title{
    color: #edf7e6;
}
.footer-1 a:hover, .footer-2 a:hover{
    color: var(--brand);
}
.footer-2{
    color: #edf7e6;
    background-color: #1a3d13;
    border-top: 1px solid #ffffff14;
}
.footer-2 ul.menu{
    float: right;
}
.footer-2 ul.menu li{
    border: none;
    clear:both;
    padding-right: 5px;
}
.footer-1  .textwidget ,.footer-2  .textwidget  {
    color: #fff6;
}
.absolute-footer{
    background-color: #1a3d13;
}
.es-hero{
    background: linear-gradient(135deg, var(--forest) 0%, var(--text-dark) 100%);
    color: var(--white);
    padding: 80px 0 64px;
}
.es-hero-badge {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #6dc04326;
    border-radius: 20px;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
}
.es-hero-title {
    font-family: var(--font-display);
    color: var(--white);
    max-width: 720px;
    margin-bottom: 20px;
    font-size: clamp(28px,4vw,44px);
    font-weight: 700;
    line-height: 1.2;
}
.es-hero-desc {
    color: #fffc;
    max-width: 600px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.8;
}
.es-bullet-list{
    margin: 24px 0;
    padding: 0;
    list-style: none;
}
.es-bullet-list li {
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 12px 36px;
    font-size: 14px;
    line-height: 1.7;
    position: relative;
}
.es-bullet-list li:before {
    content: "✓";
    background: var(--pale);
    width: 22px;
    height: 22px;
    color: var(--brand);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    position: absolute;
    top: 12px;
    left: 0;
}
.es-challenge-list li:before {
    content: "⚠";
    color: #e65100;
    background: #fff3e0;
}
ol.es-steps{
    counter-reset: step;
    margin: 24px 0;
    padding: 0;
    list-style: none;
    display: block;
}
ol.es-steps::before{
    display: none;
}
ol.es-steps li {
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
    counter-increment: step;
    padding: 16px 0 16px 56px;
    font-size: 14px;
    line-height: 1.7;
    position: relative;
}
ol.es-steps li:before {
    content: counter(step);
    background: var(--brand);
    width: 36px;
    height: 36px;
    color: var(--white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    position: absolute;
    top: 16px;
    left: 0;
}
.es-icon-box{
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all .3s;
}
.es-icon-box:hover{
    border-color:var(--brand);
    box-shadow:0 4px 16px #6dc0431a;
}
.es-news-letter input{
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-body);
    background: #ffffff0f;
    border: 1px solid #ffffff26;
    border-radius: 20px;
    flex: 1;
    padding: 10px 16px;

}
.es-news-letter .button{
    padding: 0 5px;
    border-radius: 4px;
    font-size: .8em;
    text-transform: none;
    background: none;
    border: 1px solid var(--bg-scene);
}
.es-footer-note {
    color: #ffffff40;
    margin-top: 8px;
    font-size: 10px;
}
#menu-footer li{
    border: none;
}
.footer-widgets .is-divider{
    display:none;
}
.es-footer-note .icon-box-text{
    padding-left: .2em !important;
}
.es-footer-note h5{
    color: var(--white);
    margin-top: 10px;
}
.es-footer-note p{
    color: #fff6;
    font-size: 1em;
}
.absolute-footer .container {
    text-align: center;
}
.absolute-footer .container .footer-primary {
    float: none !important;
}
#menu-privacy li{
	float: left !important;
    clear: none !important;
}
#menu-chinh-sach li{
	float: left !important;
    clear: none !important;
}
.footer-widgets ul.menu>li+li {
	border:none;
}
/* Hide category badge and links in Flatsome blog layout */
.blog-archive .badge-category, 
.entry-category, .entry-meta
.post-item .cat-links,footer.entry-meta
.blog-wrapper .badge-category {
    display: none !important;
}