/***Typo Css Start****/
:root {
 --page-width: 1340px;
 --base-fm: "Inter", sans-serif;
 --hd-fm: "Roboto Slab", serif;
 --base-size: 16px;
 --h1-size: 40px;
 --h2-size: 32px;
 --h3-size: 26px;
 --h4-size: 22px;
 --h5-size: 18px;
 --h6-size: 16px;
 --base-clr: #646464;
 --base-clr1:#1a1a1a;
 --white-clr: #ffffff;
 --black-clr: #000000;
 --bg-clr: #F2F5F2;
 --theme-clr: #386845;
 --sec-theme-clr: #FF6B00;
}

* {
 box-sizing: border-box;
 outline: none !important;
}

body {
 margin: 0px;
 font-family: var(--base-fm);
 color: var(--base-clr);
 font-size: var(--base-size);
 line-height: 1.4;
 background-color: #fffdf9;
 font-weight: 400;
 padding-top: 135px;
}

p {
 margin: 0 0 20px 0;
 line-height: 1.4;
 color: var(--base-clr);
}

img {
 max-width: 100%;
 height: auto;
 display: block;
}

ul, li, a {
 list-style: none;
 text-decoration: none;
 padding: 0px;
 margin: 0px;
}

h1, .h1 {
 font-family: var(--hd-fm);
 font-size: var(--h1-size);
 color: var(--white-clr);
 font-weight: 700;
 margin: 0px 0px 25px 0px;
 font-style: normal;
 line-height: 1.1;
}

h2, .h2 {
 font-family: var(--hd-fm);
 font-size: var(--h2-size);
 font-weight: 700;
 margin: 0px 0px 14px 0px;
 line-height: 1.2;
 color: var(--theme-clr);
}

h3, .h3 {
 font-family: var(--hd-fm);
 font-size: var(--h3-size);
 font-weight: 700;
 margin: 0px 0px 12px 0px;
 line-height: 1.2;
 color: var(--theme-clr);
}

h4, .h4 {
 font-family: var(--hd-fm);
 font-size: var(--h4-size);
 font-weight: 600;
 margin: 0px 0px 10px 0px;
 line-height: 1.2;
 color: var(--theme-clr);
}

h5, .h5 {
 font-family: var(--hd-fm);
 font-size: var(--h5-size);
 font-weight: 500;
 margin: 0px 0px 8px 0px;
 line-height: 1.2;
 color: var(--theme-clr);
}

h6, .h6 {
 font-family: var(--hd-fm);
 font-size: var(--h6-size);
 color: var(--theme-clr);
 font-weight: 500;
 margin: 0px 0px 6px 0px;
 line-height: 1.2;
}

.light-bg {
 background: #F2F5F2;
}

h2 + h4 {
 color: #404040;
 font-size: 18px;
}

.theme-clr {
 color: var(--theme-clr);
}

.white-bg {
 background-color: var(--theme-clr);
}

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

.text-left {
 text-align: left;
}

.text-right {
 text-align: right;
}

.d-flex {
 display: flex;
 flex-flow: row wrap;
}

.f-center {
 align-items: center;
}

.f-start {
 align-items: flex-start;
}

.f-end {
 align-items: flex-end;
}

.splide__arrow {
 width: 48px;
 height: 48px;
 opacity: 1;
 background-color: rgba(255, 255, 255, 0.7);
}

.splide__arrow svg {
 fill: #fff;
}

.splide__pagination {
 bottom: 20px;
}

.splide__pagination li button {
 border-radius: 10px;
 background-color: rgba(255, 255, 255, 0.80);
 opacity: 1;
 width: 10px;
 height: 10px;
 padding: 0;
 transform: none !important;
}

.splide__pagination li button.is-active {
 background-color: var(--sec-theme-clr);
 width: 30px;
}

.splide__pagination li {
 margin: 0px 2px;
}

section {
 width: 100%;
 padding: 50px 0px;
}

.container {
 max-width: var(--page-width);
 padding: 0px 20px;
 margin: auto;
 width: 100%;
}

.cmn-btn {
 transition: 0.5s all;
 cursor: pointer;
 background: var(--theme-clr);
 border-radius: 4px;
 color: var(--white-clr);
 padding: 10px 25px 10px 25px;
 display: inline-block;
 font-weight: 600;
 border: none;
 font-family: var(--base-fm);
 font-size: var(--base-size);
 vertical-align: middle;
 line-height: 1.6;
}

.cmn-btn:hover {
 opacity: 0.85;
}

.cmn-bdr-btn {
 transition: 0.5s all;
 cursor: pointer;
 background: transparent;
 color: var(--theme-clr);
 border-radius: 4px;
 border: var(--theme-clr) 2px solid;
 padding: 8px 25px 8px 25px;
 display: inline-block;
 font-weight: 600;
 font-family: var(--base-fm);
 font-size: var(--base-size);
 vertical-align: middle;
 line-height: 1.6;
}

.cmn-bdr-btn:hover {
 background: var(--theme-clr);
 color: var(--white-clr);
}

.cmn-btn:hover {
 opacity: 0.85;
}

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

.top-bar {
 background-color: var(--theme-clr);
 padding: 6px 0;
 transition: 0.5s all;
 left: 0px;
 position: fixed;
 top: 0px;
 z-index: 999;
 width: 100%;
}

.top-left, .top-right {
 display: flex;
 align-items: center;
 gap: 20px;
}

.top-right {
 gap: 10px;
}

.top-link {
 display: flex;
 align-items: center;
 gap: 6px;
 color: var(--white-clr);
 font-size: 14px;
}

.top-link {
 transition: 0.5s all;
}

.top-link:hover, .top-right:hover {
 opacity: 0.8;
}

.top-link img {
 width: 16px;
 height: 16px;
}

.top-right a img, .top-link img {
 width: 18px;
 height: 18px;
 transition: 0.5s all;
}

.top-right a:hover img, .top-link:hover img {
 opacity: 0.8;
}

.main-header {
 padding: 8px 0;
 background: var(--white-clr);
 transition: 0.5s all;
 left: 0px;
 position: fixed;
 top: 47px;
 z-index: 999;
 width: 100%;
 border-bottom: #d7d7d7 1px solid;
}

.fixed .main-header {
 top: 0px;
 padding: 4px 0;
}

.mobile-toggle {
 display: none;
 width: 25px;
 height: 18px;
 margin-left: 10px;
 flex-flow: row wrap;
 align-content: space-between;
}

.mobile-toggle i {
 width: 100%;
 height: 2px;
 background-color: #000;
 display: inline-block;
}

nav.nav-menu {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
}

.nav-menu ul {
 display: flex;
 align-items: center;
}

.nav-menu ul li {
 margin: 0 15px;
 padding: 10px 0px;
 font-size: 18px;
}

.nav-menu ul li a {
 font-weight: 600;
 color: #1e1e1e;
 transition: 0.3s;
}

.nav-menu ul li.menu-item-has-children>a:after {
 content: '';
 width: 6px;
 height: 6px;
 border-left: var(--black-clr) 2px solid;
 border-bottom: var(--black-clr) 2px solid;
 display: inline-block;
 transform: rotate(-45deg);
 margin-left: 8px;
 top: -3px;
 position: relative;
}

.nav-menu ul li a:hover {
 color: var(--theme-clr);
}

.nav-menu ul li:hover a, .nav-menu ul li.current_page_item a {
 color: var(--sec-theme-clr)
}

.nav-menu ul li ul {
 position: absolute;
 left: -20px;
 top: 100%;
 width: 340px;
 background-color: #fff;
 margin-top: 20px;
 transition: 0.5s all;
 pointer-events: none;
 opacity: 0;
 margin: 0px;
 flex-flow: row wrap;
 z-index: 99;
 box-shadow: #ccc 0px 8px 8px;
}

.nav-menu ul li:hover ul {
 opacity: 1;
 pointer-events: auto;
 margin-top: 0px;
}

.nav-menu ul li {
 position: relative;
}

.nav-menu ul li ul li {
 margin: 0px;
 width: 100%;
 padding: 0px;
 border-bottom: #ccc 1px solid
}

.nav-menu ul li ul li a {
 padding: 10px 20px;
 display: inline-block;
 font-size: 16px;
 width: 100%;
 font-weight: normal;
 color: var(--black-clr) !important;
}

.nav-menu ul li ul li:hover a, .nav-menu ul li ul li.current_page_item a {
 color: var(--sec-theme-clr) !important;
}

.header-btn {
 margin-left: 10px;
}

.header-btn a {
 font-size: 15px;
}

.header-btn {
 display: flex;
 align-items: center;
 gap: 12px;
}

/* CTA */
.cta-section {
 background: var(--theme-clr);
 color: var(--white-clr);
 background-size: cover;
 position: relative;
 padding: 40px 0px;
}

.cta-inner {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: space-between;
}

.cta-inner .cta-cont-part {
 width: 100%;
 text-align: center;
}

.cta-section:before {
 background-color: #E8772E;
 content: '';
 position: absolute;
 left: 0px;
 top: 0px;
 width: 100%;
 height: 100%;
 z-index: 8;
}

.cta-section .cta-inner {
 position: relative;
 z-index: 9;
}

.cta-btns-group {
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
 margin: auto;
 gap: 20px;
}

.cta-btns-group .cmn-btn.cta-btn {
 background-color: var(--white-clr);
 color: var(--sec-theme-clr);
 line-height: 1.2;
 display: flex;
 align-items: center;
}

.cta-btns-group .cmn-bdr-btn.cta-btn {
 background-color: transparent;
 border-color: var(--white-clr);
}

.cta-section .cta-btn {
 background-color: var(--sec-theme-clr);
 color: var(--white-clr);
 margin: 20px auto 0 auto;
}

.cta-section h2, .cta-section h3 {
 color: var(--white-clr);
}

.cta-section p {
 color: #e5e5e5;
 margin-bottom: 0px;
}

.cta-btn {
 background: var(--white-clr);
 color: var(--theme-clr);
 padding: 12px 30px;
 border-radius: 6px;
 display: inline-block;
 font-weight: 600;
}

.cta-btn:hover {
 opacity: 0.85;
}

/* FOOTER */
.chaty-channels-main {
 position: fixed;
 left: 20px;
 bottom: 40px;
 z-index: 10;
}

.chaty-channels-main .chaty-text {
 position: absolute;
 left: 100%;
 top: 7px;
 white-space: nowrap;
 margin-left: 10px;
 background-color: #fff;
 font-size: 12px;
 padding: 5px 10px;
 color: #000;
 border-radius: 4px;
 text-align: center;
 display: flex;
 justify-content: center;
 min-width: 59px;
 z-index: 99;
 box-shadow: #ccc 0px 0px 10px;
 transition: 0.5s all;
 opacity: 0;
 pointer-events: none;
}

.chaty-channels-list {
 display: flex;
 flex-direction: column;
 justify-content: center;
 gap: 10px;
 justify-items: center;
 transition: 0.5s all;
}

.chaty-channels-close .chaty-channels-list {
 opacity: 0;
 pointer-events: none;
}

.chaty-channels-list a {
 display: flex;
 justify-content: center;
 position: relative;
}

.chaty-channels-list a img {
 max-width: 40px;
}

.chaty-channels-list a:hover .chaty-text {
 opacity: 1;
 pointer-events: auto;
}

.chaty-c-btn {
 display: flex;
 border: none;
 width: 40px;
 padding: 0px;
 margin-top: 10px;
 background-color: transparent;
 cursor: pointer;
}

.chaty-c-btn img {
 display: none;
}

.chaty-c-btn img:first-child {
 display: block;
}

.chaty-channels-close .chaty-c-btn img {
 display: none;
}

.chaty-channels-close .chaty-c-btn img+img {
 display: block;
}

.ftr-scn {
 background: #24372A;
 color: #fff;
 padding-top: 60px;
}

/* GRID */
.footer-grid {
 display: grid;
 grid-template-columns: 1.8fr 1fr 1.4fr 1.3fr;
 gap: 40px;
}

/* LOGO */
.footer-logo {
 max-width: 240px;
 margin-bottom: 15px;
}

/* TEXT */
.ftr-scn p {
 font-size: 14px;
 line-height: 1.6;
 color: var(--white-clr);
}

/* LINKS */
.footer-links h5, .footer-contact h5 {
 color: var(--white-clr);
 margin-bottom: 15px;
 font-size: 20px;
}

.footer-contact a {
 color: var(--white-clr);
}

.footer-contact a:hover {
 text-decoration: underline;
 color: var(--white-clr);
}

.footer-links ul li {
 margin-bottom: 10px;
}

.footer-links ul li a {
 color: #fff;
 font-size: 14px;
 transition: 0.3s;
}

.footer-links ul li a:before {
 content: '';
 width: 6px;
 height: 6px;
 border-bottom: #fff 2px solid;
 border-left: #fff 2px solid;
 display: inline-block;
 transform: rotate(-135deg);
 margin-right: 10px;
}

.footer-links ul li a:hover {
 color: var(--white-clr);
 padding-left: 5px;
}

/* SOCIAL */
.ftr-socialmedia {
 margin-top: 20px;
}

.socialmedia {
 display: flex;
 gap: 10px;
}

.socialmedia a {
 width: 35px;
 height: 35px;
 background: rgba(255, 255, 255, 0.10);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}

.socialmedia a:hover {
 background-color: var(--theme-clr);
}

.socialmedia img {
 width: 20px;
 height: 20px;
}

/* CONTACT */
.footer-contact p, .footer-contact a {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 margin-bottom: 12px;
 color: var(--white-clr);
}

.footer-contact a:hover {
 color: var(--theme-clr);
}

.footer-contact img {
 width: 16px;
 margin-top: 3px;
 filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
}

/* BOTTOM BAR */
.footer-bottom {
 border-top: #55705e 1px solid;
 margin-top: 50px;
 padding: 15px 0;
}

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

.footer-bottom .copyright-part {
 color: var(--white-clr);
 font-size: 14px;
}

.footer-bottom-links a {
 color: var(--white-clr);
 margin-left: 20px;
 font-size: 14px;
}

.footer-bottom-links a:hover {
 color: var(--sec-theme-clr);
}

/**Contact Us Page**/

/* CONTACT SECTION */
.contact-section {
 background: #eef2ec;
}

.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 50px;
 align-items: flex-start;
}

.map-image-main {
 width: 100%;
}

.map-image-main img {
 width: 100%;
}

/* LEFT SIDE */
.contact-info h2 {
 margin-bottom: 15px;
}

.contact-info p {
 margin-bottom: 0px;
 max-width: 600px;
 color: var(--base-clr);
}

.contact-info p a {
 color: var(--base-clr);
}

.contact-info p a:hover {
 color: var(--theme-clr);
}

/* INFO ITEMS */
.info-item {
 display: flex;
 gap: 15px;
 margin-bottom: 25px;
 font-weight: 300;
}

.info-item div +div {
 width: calc(100% - 50px);
}

.info-item h5 {
 font-size: 20px;
 margin-bottom: 5px;
 font-weight: 600;
}

.info-item p {
 margin-bottom: 0px;
}

.info-item .icon {
 width: 50px;
 height: 50px;
 background: rgba(56, 104, 69, 0.10);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}

.info-item .icon img {
 width: 22px;
}

/* FORM BOX */
.contact-form-box {
 background: #fff;
 padding: 25px;
 border-radius: 10px;
}

.contact-form-box h4 {
 margin-bottom: 15px;
}

/* FORM */
.form-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 15px;
}

.form-group {
 margin-bottom: 10px;
}

.form-group label {
 display: block;
 font-size: 14px;
 margin-bottom: 4px;
 color: var(--black-clr);
}

.form-group label span {
 color: red;
}

.form-group input, .form-group textarea {
 width: 100%;
 padding: 8px 10px;
 border: 1px solid #ddd;
 border-radius: 6px;
 font-family: var(--base-fm);
 font-size: 14px;
}

.form-group textarea {
 height: 120px;
 resize: none;
}

/* BUTTON */
.full-btn {
 width: 100%;
 text-align: center;
}

.tagline {
 background-color: #EEF1EE;
 border-radius: 4px;
 padding: 10px 14px;
 color: var(--theme-clr);
 font-size: 14px;
 font-weight: 600;
 margin-bottom: 15px;
 display: inline-block;
 line-height: 1.2;
 text-transform: uppercase;
}

.hero-main {
 padding: 0px;
}
#heroSlider .splide__arrow--prev, #heroSlider .splide__arrow--next {
    left: 0px;
    right: 0px;
    margin: auto;
    top: auto;
    bottom: -9px;
}

#heroSlider .splide__arrow--prev {
    left: -12%;
}

#heroSlider .splide__arrow--next {
    right: -12%;
}

#heroSlider .splide__pagination {
    bottom: 30px;
}
.hero-slide {
 padding: 20px 0px;
 min-height: 750px;
 display: flex;
 flex-flow: row wrap;
 background-size: cover;
}

.hero-overlay {
     background: linear-gradient(135deg, #0F2419 0%, #1F4234 50%, #2D5F48 100%);
    opacity: 0.8;
 width: 100%;
 height: 100%;
 position: absolute;
 left: 0px;
 top: 0px;
 z-index: 1
}

.hero-content {
 position: relative;
 z-index: 2;
}

.hero-content-inner {
 max-width: 950px;
 color: var(--white-clr);
 font-size: 18px;
}

.hero-content-inner p {
 font-size: 18px;
 line-height: 1.5;
 color: var(--white-clr);
}

.hero-buttons {
 display: flex;
 flex-flow: row wrap;
 gap: 14px;
}

.hero-buttons .cmn-btn {
 background-color: var(--sec-theme-clr);
}

.hero-buttons .cmn-bdr-btn {
 border-color: var(--sec-theme-clr);
 color: var(--sec-theme-clr);
}

.hero-buttons .cmn-bdr-btn:hover {
 background-color: var(--sec-theme-clr);
 color: var(--white-clr)
}

.hero-badges, .hero-badges p {
 display: flex;
 flex-flow: row wrap;
 gap: 12px;
 margin: 30px 0px 0px 0px;
}

.hero-badges .badges-btn {
 border: none;
 background-color: rgba(255, 255, 255, 0.20);
 font-family: var(--base-fm);
 border-radius: 12px;
 color: var(--white-clr);
 padding: 0px 14px;
 font-size: 12px;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 gap: 8px;
 font-weight: 600;
 min-height: 40px;
}

.hero-badges .badges-btn:before {
 content: '';
 width: 16px;
 height: 16px;
 background-repeat: no-repeat;
 background-size: 100% 100%;
}

.vqc-btn:before {
 background-image: url(../images/verified-quality-control-icon.svg);
}

.frd-btn:before {
 background-image: url(../images/fast-regional-delivery-icon.svg);
}

.ers-btn:before {
 background-image: url(../images/export-ready-support-icon.svg);
}

/* SECTION BG */
.whychoose-scn {
 background: #fffdf9;
}

/* GRID */
.whychoose-scn .why-grid {
 display: grid;
 grid-template-columns: 1.1fr 1fr;
 gap: 60px;
 align-items: center;
}

/* CARDS */
.why-cards {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 20px;
 padding-top: 15px;
}

.why-card {
 background: #fff;
 padding: 20px 20px 10px 20px;
 border-radius: 12px;
 border: 1px solid #D8DED9;
 min-height: 240px;
}

.why-icon {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 width: 48px;
 height: 48px;
 background-color: #f2f5f2;
 border-radius: 6px;
 margin-bottom: 15px;
}

.why-icon img {
 filter: brightness(0) saturate(100%) invert(45%) sepia(30%) saturate(3266%) hue-rotate(360deg) brightness(101%) contrast(107%);
}

.why-card h4 {
 font-size: 18px;
}

.why-card p {
 color: #667085;
 font-size: 14px;
 margin-bottom: 0px;
}

/* RIGHT IMAGE */
.whychoose-scn .why-right {
 position: relative;
}

.whychoose-scn .why-right img {
 width: 100%;
 border-radius: 14px;
 display: block;
}

/* STATS */
.whychoose-scn .stats {
 position: absolute;
 bottom: 20px;
 display: flex;
 gap: 11px;
 width: calc(100% - 50px);
 justify-content: center;
 margin: auto;
 left: 0px;
 right: 0px;
 min-width: 114px;
}

.whychoose-scn .stat {
 background: #fff;
 padding: 10px 5px;
 border-radius: 8px;
 text-align: center;
 box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
 min-height: 75px;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 align-content: center;
 gap: 6px;
}

.whychoose-scn .stat strong {
 display: block;
 color: var(--theme-clr);
 font-size: 18px;
 font-family: var(--hd-fm);
}

.whychoose-scn .stat span {
 font-size: 11px;
 color: #667085;
 width: 100%;
}

.brands-scn {
 background: #fff;
 padding: 50px 0;
}

.brands-head h2 {
 margin-bottom: 10px;
}

.brands-head {
 text-align: center;
}

.brands-head p {
 margin-bottom: 30px;
}

/* BRAND CARD */
.brand-card {
 background: #f7f8f7;
 border: 1px dashed #d6dbd6;
 border-radius: 10px;
 height: 110px;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 10px;
 width: 100%;
}

.brand-card img {
 height: 80px;
 width: auto;
}

/* spacing */
#brandSlider .splide__slide {
 padding: 2px;
}

.about-inner {
 justify-content: space-between;
 align-items: flex-start;
}

.about-inner .about-left {
 width: 46%;
 position: relative;
}

.about-inner .about-right {
 width: 50%;
}

.about-inner .about-right p {
 text-align: justify;
}

.about-inner .about-left .about-img {
 overflow: hidden;
 border-radius: 10px;
}

.about-inner .about-left .about-img img {
 width: 100%;
}

.about-inner .about-exprience {
 position: absolute;
 bottom: 24px;
 right: 24px;
 z-index: 9;
 padding: 25px 20px;
 background-color: var(--theme-clr);
 color: var(--white-clr);
 max-width: 180px;
 border-radius: 6px;
 font-size: 14px;
}

.about-inner .about-exprience h4 {
 color: var(--white-clr);
 font-size: 35px;
}

.about-inner .cmn-btn {
 margin-top: 25px;
}

.about-inner ul li {
 position: relative;
 color: #4B4B4B;
 margin: 4px 0px;
 padding: 0;
 align-items: center;
 display: flex;
 min-height: 40px;
 gap: 10px;
 font-weight: 500;
}

.about-inner ul li:before {
 content: '';
 width: 26px;
 height: 26px;
 display: flex;
 align-items: center;
 justify-content: center;
 background-color: #F2F5F2;
 border-radius: 100%;
 background-repeat: no-repeat;
 background-position: center center;
 background-size: 70% 70%;
 background-image: url(../images/list-check-icon.svg);
}

.services-scn {
 background: #F2F5F2;
}

.tagline {
 background-color: var(--white-clr);
}

/* Heading */
.section-head {
 max-width: 750px;
 margin-bottom: 40px;
}

.section-head p {
 font-size: 16px;
}

/* GRID */
.service-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}

/* CARD */
.service-card {
 background: #fff;
 border-radius: 12px;
 overflow: hidden;
 border: 1px solid #e3e6e3;
 transition: .3s;
}

.service-card:hover {
 transform: translateY(-6px);
 box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* IMAGE */
.service-card img {
 width: 100%;
 height: 240px;
 object-fit: cover;
 display: block;
}

/* BODY */
.card-body {
 padding: 22px;
}

.services-badge .sb-icon {
 width: 15px;
}

.services-badge .sb-icon img {
 width: 100%;
 height: auto;
}

.services-badge {
 color: var(--sec-theme-clr);
 font-size: 14px;
 font-weight: 600;
 display: flex;
 flex-flow: row wrap;
 gap: 6px;
 align-content: center;
 align-items: center;
}

.card-body h4 {
 color: #2f5d46;
 margin: 10px 0;
 font-size: 20px;
}

.card-body p {
 margin-bottom: 15px;
}

.card-body .learn {
 color: var(--theme-clr);
 font-weight: 600;
 text-decoration: none;
 display: flex;
 align-items: center;
 flex-flow: row wrap;
 font-size: 14px;
}

.card-body .learn:after {
 content: '';
 width: 16px;
 height: 16px;
 background-image: url(../images/s-arrow-icon.svg);
 background-position: center center;
 margin-left: 6px;
 display: inline-block;
 background-repeat: no-repeat;
}

.card-body .learn:hover {
 color: var(--sec-theme-clr);
}

.card-body .learn:hover:after {
 filter: brightness(0) saturate(100%) invert(49%) sepia(53%) saturate(2620%) hue-rotate(357deg) brightness(96%) contrast(114%);
}

/* SECTION BG */
.process-scn {
 background: #fffdf9;
}

.process-box {
 background: linear-gradient(90deg, #1a1f1b, #1f2420);
 padding: 60px;
 border-radius: 14px;
 color: var(--white-clr)
}

.process-box h4 {
 color: var(--white-clr);
 margin-bottom: 30px;
}

/* heading */
.process-scn h2 {
 color: var(--white-clr)
}

.htw-cta-btn {
 display: flex;
 justify-content: center;
 margin-top: 30px;
}

.htw-cta-btn .cmn-btn.htw-btn {
 background-color: var(--sec-theme-clr);
 min-width: 300px;
 text-align: center;
}

/* grid */
.process-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}

/* cards */
.step-card {
 border: 1px solid rgba(255, 255, 255, .15);
 border-radius: 10px;
 padding: 30px;
}

.step-card p {
 margin-bottom: 0px;
}

.step-card h3 {
 margin-bottom: 20px;
 letter-spacing: 1px;
 font-weight: 600;
 font-size: 25px;
 font-family: var(--base-fm);
 color: var(--white-clr);
}

/* list */
.step-card ul {
 list-style: none;
 padding: 0;
 margin-bottom: 25px;
}

.step-card li {
 margin-bottom: 12px;
 position: relative;
 padding-left: 18px;
 color: rgba(255, 255, 255, 0.8);
}

.step-card li::before {
 content: "•";
 color: #ff7a00;
 position: absolute;
 left: 0;
}

/* button */
.btn-primary {
 display: inline-block;
 background: #ff7a00;
 color: #fff;
 padding: 12px 22px;
 border-radius: 6px;
 text-decoration: none;
 font-weight: 600;
}

.testimonial-section {
 background-color: #F2F5F2;
}

.testimonial-section .description {
 color: #777;
 margin-bottom: 40px;
}

.testimonial-card {
 background: #fff;
 border-radius: 12px;
 padding: 25px;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 height: 100%;
}

.testimonial-section .splide__slide {
 margin-bottom: 10px;
}

.testimonial-section .stars {
 color: #ff7a00;
 margin-bottom: 10px;
 font-size: 25px;
}

.testimonial-section .text {
 line-height: 1.6;
 margin-bottom: 20px;
 font-style: italic;
}

.testimonial-section .user {
 display: flex;
 align-items: center;
 gap: 12px;
}

.testimonial-section .user img {
 width: 45px;
 height: 45px;
 border-radius: 50%;
}

.testimonial-section .user h4 {
 margin: 0;
 font-size: 16px;
 color: #2e5d46;
}

.testimonial-section .user span {
 font-size: 13px;
 color: #777;
}

.testimonial-section .splide__pagination {
 bottom: -30px;
}

.splide__pagination li button {
 background-color: rgba(151, 151, 151, 0.8)
}

.splide__pagination li button.is-active {
 background-color: var(--sec-theme-clr);
}

.inner-bnr {
 min-height: 250px;
 display: flex;
 align-items: center;
 position: relative;
 background-size: cover;
 background-position: center center;
 padding: 20px 0px;
 flex-flow: row wrap;
}

.inner-bnr::before {
 content: "";
 position: absolute;
 inset: 0;
 background: rgba(56, 104, 69, 0.8);
 z-index: 1;
}

.inner-bnr .hero-content {
 position: absolute;
 max-width: 830px;
 width: 100%;
 color: var(--white-clr);
 margin: auto;
 top: 50%;
 left: 0px;
 right: 0px;
 transform: translateY(-50%);
 z-index: 2;
 padding: 0px 15px;
 color: var(--white-clr);
 margin: auto;
}

.inner-bnr .hero-content h1 {
 color: var(--white-clr);
 margin-bottom: 15px;
}

.inner-bnr .hero-content p {
 color: #e9e9e9;
 font-size: 18px;
 margin-bottom: 0px;
}

.image-cont-inner {
 width: 100%;
 justify-content: space-between;
 align-items: center;
}

.image-cont-scn ul li {
 position: relative;
 color: #4B4B4B;
 margin: 4px 0px;
 padding: 0;
 align-items: center;
 display: flex;
 min-height: 32px;
 gap: 8px;
 font-weight: 500;
}

.image-cont-scn ul li:before {
 content: '';
 width: 20px;
 height: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 background-repeat: no-repeat;
 background-position: center center;
 background-size: 90% 90%;
 background-image: url(../images/list-cycle-check-icon.svg);
}

.left-image {
 flex-direction: row-reverse;
}

.image-cont-inner .image-cont-left {
 width: 46%;
 position: relative;
}

.image-cont-inner p {
 text-align: justify;
}

.image-cont-inner .image-cont-left .about-img {
 overflow: hidden;
 border-radius: 10px;
}

.image-cont-inner .image-cont-img, .image-cont-inner .image-cont-img img {
 width: 100%;
 overflow: hidden;
 border-radius: 10px;
}

.image-cont-inner .image-cont-right {
 width: 50%;
 position: relative;
}

.image-cont-inner .image-cont-right img {
 width: 100%;
 overflow: hidden;
 border-radius: 10px;
}

.image-content-overlay {
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 align-content: center;
 color: var(--black-clr);
 font-size: 20px;
 font-weight: 600;
 position: absolute;
 left: 0px;
 right: 0px;
 margin: auto;
 bottom: 20px;
 max-width: 92%;
}

.ico-inner {
 background: rgba(255, 255, 255, 0.85);
 padding: 12px 25px;
 border-radius: 4px;
 text-align: center;
 box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
 min-width: 300px;
}

.image-cont-inner p:last-child {
 margin-bottom: 0px;
}

.image-cont-inner .cmn-btn {
 margin-top: 20px;
}

.image-cont-scn .tagline {
 background-color: #d9e5d9;
}

.team-info {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding-top: 30px;
}

.team-info .team-image-part {
    width: 37%;
    overflow: hidden;
    border-radius: 10px;
}

.team-info .team-image-part img {
    width: 100%;
}

.team-cont-part {
    width: 55%;
}

.team-cont-part .team-name {
    font-size: 25px;
    font-weight: 600;
}

.team-designation {
    font-size: 18px;
    color: var(--theme-clr);
    padding: 5px 0px;
    display: inline-block;
}

.description p {
    font-size: 18px;
    margin-top: 18px;
    line-height: 1.8;
    display: inline-block;
}

.team-list {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 25px;
 padding-top: 30px;
}

.team-list .team-img {
 width: 100%;
 position: relative;
 height: 380px;
 overflow: hidden;
 height: 339px;
 max-height: 339px;
 overflow: hidden;
 border-radius: 8px;
}

.team-list .grayscale {
 position: absolute;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 1;
 -webkit-filter: grayscale(100%);
 filter: grayscale(100%);
}

.team-list .team-img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.team-item .new-overlay {
 position: absolute;
 bottom: 0;
 top: 0;
 z-index: 2;
 clip-path: circle(50% at 50% calc(100% + 180px));
 border-radius: 0;
 transition: all 0.3s linear;
 width: 100%;
}

.team-item .team-img:hover .new-overlay {
 clip-path: circle(120% at 50% 100%);
 border-radius: 0;
}

.team-item .team-img .new-overlay::after {
 content: '';
 position: absolute;
 left: 0;
 top: 0;
 right: 0;
 bottom: 0;
 background-color: rgba(0, 0, 0, 0.4);
}

.team-list .team-img .color-img {
 object-fit: cover;
 width: 100%;
 height: 100%;
}

.view-bio-btn {
 position: absolute;
 bottom: 15px;
 background-color: #fff;
 border-radius: 20px;
 padding: 12px 20px;
 line-height: 1;
 left: 15px;
 font-size: 13px;
 color: var(--theme-clr);
 cursor: pointer;
 transition: 0.5s all;
 opacity: 0;
 font-weight: 600;
 z-index: 10;
}

.team-item .view-bio-btn:hover {
 color: var(--sec-theme-clr);
}

.team-item:hover .view-bio-btn {
 opacity: 1;
}

.team-cont .team-name {
 font-size: 20px;
 color: var(--theme-clr);
 font-weight: 600;
 margin-bottom: 5px;
 display: inline-block;
 width: 100%;
}

.team-cont .description {
 display: none;
}

.team-cont {
 width: 100%;
 margin-top: 15px;
}

.gr-top {
 max-width: 1050px;
 margin: auto;
 width: 100%;
}

.gr-card-wrapper {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 25px;
 padding-top: 30px;
}

.gr-card {
 background: #fff;
 border: 1px solid #e0e5e2;
 border-radius: 12px;
 padding: 35px 20px;
 width: 100%;
 text-align: center;
 transition: 0.3s;
 min-height: 250px;
}

.gr-card:hover {
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.gr-icon-box {
 width: 50px;
 height: 50px;
 margin: 0 auto 15px;
 background: #e4ebe5;
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.gr-icon-box img {
 filter: brightness(0) saturate(100%) invert(45%) sepia(30%) saturate(3266%) hue-rotate(360deg) brightness(101%) contrast(107%);
}

.gr-card h3 {
 color: #2e5d46;
 margin-bottom: 10px;
 font-size: 22px;
}

.gr-card p {
 color: #6c757d;
 font-size: 14px;
 line-height: 1.6;
 margin-bottom: 0px;
}

.step-scn .tagline {
 background-color: rgba(255, 107, 0, 0.10);
 color: var(--sec-theme-clr);
}

.contact-section {
 background: #eef2ec;
}

.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 50px;
 align-items: flex-start;
}

/* LEFT SIDE */
.contact-info h2 {
 margin-bottom: 15px;
}

/* FORM BOX */
.contact-form-box {
 background: #fff;
 padding: 25px;
 border-radius: 10px;
}

.contact-form-box h4 {
 margin-bottom: 15px;
}

/* FORM */
.form-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 15px;
}

.form-group {
 margin-bottom: 10px;
}

.form-group p {
 margin: 0px;
}

.form-group label {
 display: block;
 font-size: 14px;
 margin-bottom: 4px;
 color: var(--black-clr);
}

.form-group label span {
 color: red;
}

.form-group input, .form-group textarea {
 width: 100%;
 padding: 8px 10px;
 border: 1px solid #ddd;
 border-radius: 6px;
 font-family: var(--base-fm);
 font-size: 14px;
}

.form-group textarea {
 height: 120px;
 resize: none;
}

.contact-form-box p {
 margin: 0px;
}

.contact-form-box h4 + p {
 margin: 0px 0px 20px 0px;
}

.contact-form-box .wpcf7-spinner {
 display: none;
}

.contact-form-box .wpcf7-not-valid-tip {
 font-size: 14px;
 margin-top: 4px;
 font-weight: 300;
}

.wpcf7 form.invalid .wpcf7-response-output {
 border-color: red;
 color: red;
}

/* BUTTON */
.contact-form-box .cmn-btn {
 width: 100%;
 text-align: center;
 transition: 0.5s all;
 cursor: pointer;
 background: var(--sec-theme-clr);
 border-radius: 5px;
 color: var(--white-clr);
 padding: 12px 25px 12px 25px;
 display: inline-block;
 font-weight: 600;
 border: none;
 font-family: var(--base-fm);
 font-size: var(--base-size);
 vertical-align: middle;
 text-transform: uppercase;
 line-height: 1.6;
}

.info-cont-list {
 margin-top: 30px;
}

.cta-steps-scn {
 background-color: rgba(255, 107, 0, 0.10);
}

.cta-steps-scn .cta-inner .cta-cont-part {
 width: 50%;
 text-align: left;
}

.cta-steps-scn .cta-inner .cta-cont-part .cta-btn {
 background-color: var(--sec-theme-clr);
 color: #fff;
}

.cta-steps-scn .cta-inner .cta-cont-part .tagline {
 background-color: rgba(255, 255, 255, 0.7);
 border-radius: 100px;
 font-size: 14px;
 color: var(--sec-theme-clr);
}

.s-3-steps-list {
 background-color: var(--white-clr);
 padding: 35px 20px;
 border-radius: 6px;
}

.s-3-steps-list .s-3-step-item {
 display: flex;
 flex-flow: row wrap;
 gap: 5px;
 margin-bottom: 20px;
}

.s-3-steps-list .s-3-step-item .s-3item-no {
 background-color: var(--sec-theme-clr);
 width: 38px;
 height: 38px;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 color: #fff;
 font-weight: 600;
 border-radius: 100%;
 font-size: 15px;
 font-family: var(--hd-fm);
}

.s-3item-cont {
 width: calc(100% - 60px);
}

.s-3item-cont .s-3item-title {
 font-size: 16px;
 font-weight: 600;
 color: var(--theme-clr);
 padding-bottom: 5px;
 display: inline-block;
}

.s-3item-cont p, .s-3item-cont .s-cont {
 font-weight: 300;
 font-size: 14px;
 margin-bottom: 0px;
 display: block;
}

.simple-3-steps {
 width: 34%;
}

.s-3-steps-list .s-3-step-item:last-child {
 margin-bottom: 0;
}

.cta-steps-scn .cta-inner {
 background-color: rgba(255, 107, 0, 0.20);
 padding: 40px;
 border-radius: 10px;
 color: #4B4B4B;
}

.team-info-model {
 position: fixed;
 left: 0px;
 top: 0px;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.5);
 z-index: 999;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 justify-content: center;
 transition: 0.5s all;
 opacity: 0;
 pointer-events: none;
}

.team-info-model .team-info-model-cont {
 max-width: 800px;
 background-color: var(--white-clr);
 width: 100%;
 position: relative;
 max-height: 90%;
 padding: 40px;
 border-radius: 20px;
 display: flex;
 flex-flow: row wrap;
}

.team-model-img {
 width: 230px;
 overflow: hidden;
 border-radius: 10px;
}

.team-model-cont {
 width: calc(100% - 230px);
 padding-left: 30px;
}

.team-model-cont .team-model-name {
 font-size: 20px;
 display: block;
 color: var(--theme-clr);
 font-weight: 600;
}

.team-model-cont .team-model-designation {
 font-size: 14px;
 margin-bottom: 15px;
 display: inline-block;
}

.team-model-cont .team-model-description {
 font-size: 15px;
 font-weight: 300;
 line-height: 1.5;
}

.team-info-model-cont .team-model-close {
 position: absolute;
 right: 0px;
 background-color: transparent;
 border: none;
 padding: 0px;
 width: 40px;
 height: 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 top: 0px;
}

.team-info-model-cont .team-model-close svg {
 width: 34px;
 height: 34px;
}

.team-info-model.model-active {
 opacity: 1;
 pointer-events: auto;
}

.cont-icon-item {
 display: flex;
 gap: 10px;
 justify-content: space-between;
 margin-top: 15px;
}

.cont-icon-item .cont-icon {
 width: 28px;
 height: 28px;
 border-radius: 50%;
 background: rgba(255, 107, 0, 0.15);
 display: flex;
 align-items: center;
 justify-content: center;
}

.cont-icon-item .cont-icon img {
 filter: brightness(0) saturate(100%) invert(44%) sepia(44%) saturate(4052%) hue-rotate(4deg) brightness(106%) contrast(105%);
}

.icon-cont {
 width: calc(100% - 40px);
}

.icon-cont p {
 margin: 0px;
}

.cont-icon-item strong {
 font-weight: 600;
 color: var(--theme-clr);
}

.cont-icon-list {
 padding-top: 5px;
}

.bnr-cont-group {
 position: relative;
 z-index: 10;
 text-align: center;
}

.cms-page-bnr h1 {
 color: var(--white-clr);
 margin-bottom: 0px;
}

.cms-page-bnr p {
 color: var(--white-clr);
 margin-bottom: 0px;
}

.cms-page {
 padding: 40px 0px;
}

.cms-page ul, .cms-page ol {
 padding-left: 18px;
 padding-bottom: 8px;
}

.cms-page ul, .cms-page ul li {
 list-style: disc;
}

.cms-page ol, .cms-page ol li {
 list-style: decimal;
}

.cms-page ul {
 padding-left: 20px;
}

.cms-page li {
 margin: 10px 0px;
}

.cms-page h1 {
 font-size: calc(var(--h1-size) - 6px);
 font-weight: 400;
 margin: 0px;
}

.cms-page h2 {
 font-size: calc(var(--h2-size) - 4px);
 font-weight: 400;
 margin: 20px 0px 5px 0px;
}

.cms-page h3 {
 font-size: calc(var(--h3-size) - 4px);
 font-weight: 400;
 margin: 20px 0px 5px 0px;
}

.cms-page h4 {
 font-size: calc(var(--h4-size) - 4px);
 font-weight: 400;
 margin: 20px 0px 5px 0px;
}

.cms-page h5 {
 font-size: calc(var(--h5-size) - 2px);
 font-weight: 400;
 margin: 20px 0px 5px 0px;
}

.page-title {
 padding: 40px 0px;
}

.cms-page a {
 text-decoration: underline;
 color: var(--theme-clr);
}

.cms-page a:hover {
 text-decoration: none;
}

.section-inner.thin.error404-content {
 text-align: center;
 padding: 40px 0px
}

.section-inner.thin.error404-content h1 {
 font-size: 40px;
 color: var(--theme-clr)
}

.section-inner.thin.error404-content p {
 font-size: 18px;
}

.section-inner.thin.error404-content .search-form {
 display: none;
}

.faq-accordion {
 width: 100%;
 max-width: 1050px;
 margin: 30px auto 0px auto;
}

.faq-accordion-item {
 background: #fff;
 margin-bottom: 10px;
 border-radius: 8px;
 overflow: hidden;
 border: 1px solid var(--theme-clr);
}

.faq-accordion-header {
 width: 100%;
 background: #fff;
 border: none;
 text-align: left;
 padding: 18px 30px;
 font-size: 20px;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.faq-icon {
 width: 18px;
 height: 18px;
 position: relative;
}

.faq-icon:before {
 content: '';
 position: absolute;
 left: 0px;
 top: 0px;
 bottom: 0px;
 right: 0px;
 width: 100%;
 height: 2px;
 background-color: var(--theme-clr);
 margin: auto;
 transition: 0.5s all;
}

.faq-icon:after {
 content: '';
 position: absolute;
 left: 0px;
 top: 0px;
 bottom: 0px;
 right: 0px;
 width: 2px;
 height: 100%;
 background-color: var(--theme-clr);
 margin: auto;
 transition: 0.5s all;
}

.active .faq-icon:after {
 opacity: 0;
}

.faq-accordion-body {
 padding: 0 30px 0 30px;
 max-height: 0;
 overflow: hidden;
 font-size: 16px;
 color: #333333;
 transition: max-height 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-header {
 padding-bottom: 10px;
}

.faq-accordion-item.active .faq-accordion-body {
 padding-top: 10px;
 padding-bottom: 20px;
 max-height: 500px;
}

.faq-accordion-item .faq-accordion-body a {
	color: var(--theme-clr);
}
.faq-accordion-item.active .icon {
 transform: rotate(45deg);
}

/* RESPONSIVE Start */
@media (max-width:1440px) {
 .hero-slide {
  min-height: 600px;
 }

 .hero-badges {
  margin-top: 0px;
 }
.info-item h5 {
    font-size: 18px;
 
}
.info-item p {
    font-size: 14px;
}
}

@media (max-width:1200px) {
 :root {
  --base-size: 14px;
  --h1-size: 36px;
  --h2-size: 28px;
  --h3-size: 22px;
  --h4-size: 20px;
  --h5-size: 17px;
  --h6-size: 15px;
 }

 p {
  margin-bottom: 14px;
 }

 h2, h3 {
  margin-bottom: 6px;
 }

 h2 + h4 {
  font-size: 16px;
 }

 .cta-btns-group {
  gap: 14px;
 }

 .container {
  padding: 0px 15px;
 }

 body {
  padding-top: 116px;
 }

 .nav-menu ul li {
  font-size: 15px;
  margin: 0 8px;
 }

 section {
  padding: 40px 0px;
 }

 .logo {
  max-width: 180px;
 }

 .header-btn a.hdr-whatsapp {
  max-width: 30px;
 }

 .header-btn a {
  font-size: 13px;
 }

 .cmn-btn {
  font-size: 14px;
  padding: 7px 15px;
  line-height: 1.8;
 }

 .cmn-bdr-btn {
  font-size: 14px;
  padding: 7px 15px;
 }

 .hero-badges .badges-btn {
  font-size: 11px;
  gap: 4px;
  border-radius: 6px;
  padding: 0px 12px;
  min-height: 31px;
 }

 .hero-badges, .hero-badges p {
  gap: 8px;
 }

 .hero-slide {
  min-height: 450px;
 }

 .whychoose-scn .why-grid {
  gap: 30px;
 }

 .why-cards {
  gap: 10px;
 }

 .why-card {
  border-radius: 8px;
  padding: 14px 14px 0px 14px;
  min-height: 206px;
 }

 .why-icon {
  width: 40px;
  height: 40px;
 }

 .about-inner .about-left {
  width: 48%;
 }

 .about-inner .about-exprience {
  padding: 15px;
 }

 .about-inner .about-exprience h4 {
  font-size: 22px;
 }

 .about-inner ul li:before {
  width: 20px;
  height: 20px;
 }

 .about-inner ul li {
  gap: 5px;
  min-height: 28px;
 }

 .card-body {
  padding: 15px;
 }

 .card-body h4 {
  font-size: 16px;
 }

 .services-badge {
  font-size: 12px;
  gap: 4px;
 }

 .card-body .learn {
  font-size: 12px;
 }

 .card-body .learn:after {
  width: 10px;
  height: 10px;
  margin-left: 5px;
 }

 .service-card {
  border-radius: 8px;
 }

 .testimonial-section .description {
  margin-bottom: 25px;
 }

 .testimonial-card {
  border-radius: 10px;
  padding: 16px;
 }

 .process-box {
  padding-top: 30px;
  padding-bottom: 30px;
 }

 .process-grid {
  gap: 15px;
 }

 .step-card {
  padding: 20px;
  border-radius: 8px;
 }

 .step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
 }

 .step-card li {
  margin-bottom: 8px;
  padding-left: 14px;
 }

 .ftr-scn {
  padding-top: 40px;
 }

 .footer-grid {
  gap: 15px;
 }

 .footer-links h5, .footer-contact h5 {
  font-size: 18px;
 }

 .footer-links ul li a {
  font-size: 12px;
 }

 .footer-links ul li {
  margin-bottom: 5px;
 }

 .footer-logo {
  max-width: 195px;
 }

 .ftr-scn p {
  font-size: 12px;
 }

 .footer-bottom .copyright-part {
  font-size: 12px;
 }

 .footer-bottom-links a {
  margin-left: 10px;
  font-size: 12px;
 }

 .footer-links ul li a:before {
  content: '';
  width: 4px;
  height: 4px;
  border-bottom: #fff 1px solid;
  border-left: #fff 1px solid;
  margin-right: 8px;
  position: relative;
  top: -1px
 }

 .footer-contact p, .footer-contact a {
  font-size: 12px;
 }

 .testimonial-section .user h4 {
  font-size: 14px;
 }

 .htw-cta-btn .cmn-btn.htw-btn {
  min-width: 250px;
 }

 .htw-cta-btn {
  margin-top: 20px;
 }

 .service-card img {
  height: 200px;
 }

 .team-list .team-img {
  height: 280px;
  max-height: 280px;
 }

 .image-cont-inner .image-cont-left {
  width: 48%;
 }

 .gr-card-wrapper {
  gap: 12px;
  padding-top: 10px;
 }

 .gr-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
 }

 .inner-bnr .hero-content h1 {
  margin-bottom: 10px;
 }

 .gr-card {
  border-radius: 8px;
  padding: 25px 15px;
  min-height: 220px;
 }
 .contact-form-box h4 + p {
      font-size: 14px;
 }
.contact-info p {
 font-size: 14px;
}
.info-item h5 {
 font-size: 15px;
}
.contact-form-box {
    padding: 15px;
    border-radius: 8px;
}
.contact-grid {
    gap: 20px;
 
}
.simple-3-steps {
    width: 48%;
}
.cta-steps-scn .cta-inner {
    padding: 20px;
}
.ico-inner {
    font-size: 14px;
    min-width: 200px;
    padding: 7px 20px;
}

.cta-steps-scn .cta-inner {
    padding: 20px;
}

.s-3item-cont p, .s-3item-cont .s-cont {
    font-size: 12px;
}
}

@media (max-width:991px) {
 :root {
  --base-size: 14px;
  --h1-size: 38px;
  --h2-size: 30px;
  --h3-size: 25px;
  --h4-size: 22px;
  --h5-size: 18px;
  --h6-size: 16px;
 }

 #top-progress {
  bottom: -2px;
  height: 2px;
 }

 .image-cont-scn ul li {
  min-height: 24px;
  font-size: 12px;
 }
 .gr-icon-box {
      border-radius: 5px;
      width: 40px;
    height: 40px;
 }
.header-btn {
   display: flex;
   align-items: center;
   gap: 5px;
   margin-left: 0px;
  }

  .mobile-toggle {
   display: flex;
   margin-left: 7px;
  }

  .top-left {
   gap: 10px;
  }

  nav.nav-menu {
   display: none;
   position: absolute;
   top: 100%;
   background-color: #fff;
   left: 0px;
   height: calc(100vh - 105px);
   align-items: flex-start;
  }

  .fixed nav.nav-menu {
   height: calc(100vh - 50px);
  }

  .menu-open nav.nav-menu {
   display: block;
  }

  .chaty-channels-main {
   left: 10px;
   bottom: 20px;
  }

  .chaty-channels-list a img {
   max-width: 30px;
  }

  .chaty-channels-list {
   gap: 5px;
  }

  .chaty-c-btn {
   width: 30px;
  }

  nav.nav-menu ul li {
   width: 100%;
   padding: 0px;
   display: inline-block;
   border-top: #ccc 1px solid;
   margin: 0px;
  }

  .nav-menu ul li.menu-item-has-children>a:after {
   content: normal;
  }

  nav.nav-menu ul {
   flex-flow: row wrap;
  }

  .nav-menu ul li a {
   width: 100%;
   padding: 11px;
   display: inline-block;
  }

  .nav-menu ul li ul {
   position: static;
   opacity: 1;
   pointer-events: auto;
   box-shadow: none;
   width: 100%;
  }

  .nav-menu ul li ul li a {
   font-size: 14px;
  }

  .nav-menu ul li ul li {
   border-bottom: none;
  }
  .ico-inner {
    font-size: 14px;
    min-width: 200px;
    padding: 7px 20px;
}
.image-content-overlay {
 bottom: 10px;
}
}

@media (max-width:767px) {
 :root {
  --base-size: 14px;
  --h1-size: 30px;
  --h2-size: 24px;
  --h3-size: 20px;
  --h4-size: 18px;
  --h5-size: 16px;
  --h6-size: 14px;
 }

  body {
   padding-top: 105px;
  }

  h1, .h1 {
   margin-bottom: 12px;
  }

  .tagline {
   border-radius: 4px;
   padding: 8px 12px;
   font-size: 12px;
   margin-bottom: 8px;
  }

  .logo {
   max-width: 150px;
  }

  

  .inner-bnr {
   min-height: 180px;
  }
  .inner-bnr .hero-content {
  	    position: relative;	
  	        transform: none;
  	        padding: 0px;
  }

  .splide__arrow {
   width: 30px;
   height: 30px;
  }


 .cmn-bdr-btn {
  font-size: 12px;
  padding: 6px 12px;
 }

 .cmn-btn {
  font-size: 12px;
  padding: 5px 12px;
  line-height: 1.8;
 }

 .header-btn a.cmn-btn {
  font-size: 12px;
  padding: 4px 10px;
 }

 .header-btn a.hdr-whatsapp {
  max-width: 24px;
 }

 h2 + h4 {
  font-size: 14px;
 }

 .whychoose-scn .stat span {
  font-size: 11px;
 }

 .hero-badges, .hero-badges p {
  margin-top: 10px;
 }

 .top-link {
  transition: 0.5s all;
  font-size: 0px;
 }

 .about-right {
  margin-top: 30px;
 }

 .process-scn {
  padding: 0px;
 }

 .process-box {
  border-radius: 0px;
 }

 .brands-scn {
  padding: 40px 0;
 }

 .whychoose-scn .stat {
  border-radius: 4px;
  padding: 6px;
  gap: 2px;
  min-height: 65px;
 }

 .hero-slide {
  min-height: 400px;
 }

 .why-cards {
  gap: 5px;
 }

 .whychoose-scn .stats {
  gap: 5px;
  width: calc(100% - 30px);
  bottom: 15px;
 }

 .whychoose-scn .stat strong {
  font-size: 16px;
 }

 .why-card {
  border-radius: 8px;
  padding: 10px 10px 10px 10px;
  min-height: 200px;
 }

 .why-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
 }

 .why-card p {
  font-size: 12px;
  margin-bottom: 0px;
 }

 .about-inner .about-exprience h4 {
  font-size: 18px;
  margin-bottom: 4px;
 }

 span.a-exp {
  font-size: 12px;
  line-height: 1.3;
  display: inline-block;
 }

 .about-inner .about-exprience {
  padding: 12px;
  max-width: 140px;
  right: 10px;
  bottom: 10px;
 }

 .about-right {
  margin-top: 25px;
 }

 .whychoose-scn .why-grid {
  grid-template-columns: 1.1fr;
 }

 .about-inner .about-left, .about-inner .about-right {
  width: 100%;
 }

 .process-grid, .service-grid {
  grid-template-columns: repeat(1, 1fr);
 }

 .footer-grid {
  grid-template-columns: 1fr;
  gap: 20px;
 }

 .card-body h4 {
  font-size: 18px;
 }

 .footer-bottom-flex {
  flex-flow: row wrap;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 6px;
 }

 .footer-bottom {
  border-top: #55705e 1px solid;
  margin-top: 10px;
  padding: 10px 0;
 }

 .inner-bnr .hero-content p {
  font-size: 16px;
  margin-bottom: 0px;
 }

 .inner-bnr .hero-content h1 {
  margin-bottom: 5px;
  font-size: 27px;
 }

 .image-cont-inner .image-cont-left {
  width: 100%;
 }

 .image-cont-inner .image-cont-right {
  width: 100%;
  margin-top: 20px;
 }

 .team-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: 15px;
 }

 .team-list .team-img {
  height: 280px;
  max-height: 190px;
  border-radius: 4px;
 }

 .team-cont {
  margin-top: 8px;
  margin-bottom: 10px;
 }

 .team-cont .team-name {
  font-size: 16px;
  margin-bottom: 2px;
 }

 .gr-card-wrapper {
  grid-template-columns: repeat(1, 1fr);
 }
 
 
.team-info .team-image-part {
    width: 100%;
}
.team-cont-part {
    width: 100%;
    margin-top: 24px;
}

.team-cont-part .team-name {
    font-size: 20px;
}

.description p {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 6px;
}


 .team-designation {
  font-size: 12px;
 }

 .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-row {
    grid-template-columns: 1fr;
    gap: 15px;
}
.contact-form-box h4 {
    margin-bottom: 8px;
}
.contact-form-box .cmn-btn {
    padding: 8px 20px 8px 20px;
 
}
.cta-steps-scn .cta-inner .cta-cont-part {
 width: 100%;
}
.simple-3-steps {
    width: 100%;
    margin-top: 20px;
}
.faq-accordion-header {
    font-size: 15px;
    padding: 8px 30px 8px 15px;
 	position: relative;
}
.faq-accordion-body {
padding: 0 15px 0 15px;
font-size: 14px;
}
.faq-icon {
    width: 12px;
    height: 12px;
    position: absolute;
    right: 10px;
    top: 12px;
}
.s-3-steps-list .s-3-step-item .s-3item-no {
    font-size: 14px;
    width: 32px;
    height: 32px;
}
}