body {
    /* font-family: "Kreon", serif; */
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

.container {
    max-width: 1250px;
    padding: 0;
}

:root {
    --container-width: 1250px;
    --container-padding: calc((100vw - var(--container-width)) / 2);
}

#wrap {
    float: left;
    width: 100%;
}

#middle {
    float: left;
    width: 100%;
}

/* Header Section */
#header {
    width: 100%;
    float: left;
    padding: 10px 0;
}

#header .mainHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .mainHeader .mainNav {
    display: flex;
    align-items: center;
}

#header .mainHeader .mainNav .logo {
    max-width: 69px;
    width: 100%;
    margin-right: 70px;
}

#header .mainHeader .mainNav .logo a img {
    width: 125%;
    height: auto;
}

#header .mainHeader .mainNav .menu_sec {
    width: auto;
}

/* Wordpress Menu */
.menu_sec ul.menu {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.menu_sec ul.menu li {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin-right: 70px;
    position: relative;
}

.menu_sec ul.menu li:last-child {
    margin-right: 0;
}

.menu_sec ul.menu li a {
    display: block;
    padding: 0px;
    background: transparent;
    font-family: "Poppins";
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    text-decoration: none;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.menu_sec ul.menu>li>a:hover,
.menu_sec ul.menu>li:hover>a,
.menu_sec ul.menu>li.current_page_item>a,
.menu_sec ul.menu>li.current-menu-parent>a {
    color: #6B7F4E;
}

.menu_sec ul.menu>li a:before,
.menu_sec ul.menu>li.current_page_item a::before,
.menu_sec ul.menu>li.current-menu-parent a::before {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #6B7F4E;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .40s cubic-bezier(0, 0, 0.57, 1);
}

.menu_sec ul.menu>li:hover a:before,
.menu_sec ul.menu>li.current_page_item a::before,
.menu_sec ul.menu>li.current-menu-parent a::before {
    transform: scaleX(1);
    transform-origin: left;
}

.menu_sec ul.menu li.menu-item-has-children a {
    padding-right: 14px;
}

.menu_sec ul.menu li.menu-item-has-children>a:after {
    content: "\f104";
    font: normal normal normal 14px/1 Ionicons;
    font-family: Ionicons;
    font-size: 12px;
    position: absolute;
    margin-top: -6px;
    top: 50%;
    right: 0px;
}

.menu_sec ul li a svg {
    display: none;
}

.menu_sec ul.menu>li:hover>ul.sub-menu {
    display: block;
}

.menu_sec ul.menu li ul.sub-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    float: left;
    width: 250px;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    display: none;
}

.menu_sec ul.menu li ul.sub-menu li {
    float: left;
    width: 100%;
    padding: 0 0px;
}

.menu_sec ul.menu li ul.sub-menu li a {
    padding: 10px 12px;
    border-radius: 0px;
    font-size: 16px;
    color: #1a1a1a;
    text-transform: none;
    cursor: pointer;
}

.menu_sec ul.menu li ul.sub-menu li a:hover,
.menu_sec ul.menu li ul.sub-menu li:hover>a,
.menu_sec ul.menu li ul.sub-menu li.current_page_item>a {
    background-color: #e9650d;
    color: #ffffff;
    text-decoration: none;
}

.menu_sec ul.menu li ul.sub-menu li.menu-item-has-children>a:after {
    content: "\f125";
    right: 10px;
}

.menu_sec ul.menu li ul li ul.sub-menu {
    top: 0;
    left: 100%;
    display: none;
}

.menu_sec ul.menu>li>ul>li:hover>ul.sub-menu {
    display: block;
}

#header .mainHeader .contactLink {
    width: auto;
}

#header .mainHeader .contactLink .contactBtn {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    background-image: linear-gradient(83.82deg, #6B7F4E, #2a4730, #223228, #6B7F4E);
    background-position: left;
    background-size: 200%;
    transition: all .3s ease-in-out;
}

#header .mainHeader .contactLink .contactBtn:hover {
    background-position: right;
}

/* Hamburger Menu */
#header .mainHeader .hamburger {
    display: none;
    position: relative;
}

#header .mainHeader .hamburger #nav-btn,
#header .mainHeader .hamburger #nav-btn+label {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    z-index: 99;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    justify-content: center;
}

#header .mainHeader .hamburger #nav-btn {
    position: relative;
    opacity: 0;
    z-index: 100;
}

#header .mainHeader .hamburger #nav-btn+label span {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #6B7F4E;
    position: relative;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

#header .mainHeader .hamburger #nav-btn+label span::before,
#header .mainHeader .hamburger #nav-btn+label span::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: #6B7F4E;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

#header .mainHeader .hamburger #nav-btn+label span::before {
    top: -8px;
}

#header .mainHeader .hamburger #nav-btn+label span::after {
    bottom: -8px;
}

#header .mainHeader .hamburger #nav-btn:checked+label span {
    transform: rotate(135deg);
    border-radius: 2px;
    width: 30px;
}

#header .mainHeader .hamburger #nav-btn:checked+label span::before,
#header .mainHeader .hamburger #nav-btn:checked+label span::after {
    width: 30px;
    top: 0;
    max-width: 100%;
    transform: rotate(90deg);
}

#header .mainHeader .hamburger #nav-btn:checked+label span::after {
    opacity: 0;
}

#header .mainHeader .hamburger #nav-btn:checked~nav {
    visibility: visible;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    overflow: hidden;
}

#header .mainHeader .hamburger nav {
    position: fixed;
    top: 0;
    padding: 90px 30px 90px 30px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -30px 0px 65px #008036;
    opacity: 1;
    z-index: 98;
    align-items: self-start;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
    transition: transform 0.5s, visibility 0s 0.5s;
    overflow: hidden;
}

#header .mainHeader .hamburger nav ul.menu {
    width: 100%;
    padding: 0;
}

#header .mainHeader .hamburger nav ul.menu li {
    width: 100%;
    padding-bottom: 15px;
    margin-right: 0;
    list-style-type: none;
}

#header .mainHeader .hamburger nav ul.menu li:last-child {
    margin-right: 0;
}

#header .mainHeader .hamburger nav ul.menu li a {
    color: #000000;
}

#header .mainHeader .hamburger nav ul.menu>li>a:hover,
#header .mainHeader .hamburger nav ul.menu>li:hover>a,
#header .mainHeader .hamburger nav ul.menu>li.current-menu-item>a,
#header .mainHeader .hamburger nav ul.menu>li.current-menu-parent>a {
    color: #6B7F4E;
}

#header .mainHeader .hamburger nav ul.menu li.menu-item-has-children a {
    padding-right: 14px;
}

#header .mainHeader .hamburger nav ul.menu li.menu-item-has-children>a:after {
    content: "\f104";
    font: normal normal normal 14px/1 Ionicons;
    font-family: Ionicons;
    font-size: 12px;
    position: absolute;
    margin-top: -6px;
    top: 50%;
    right: 0px;
}

#header .mainHeader .hamburger nav ul li a svg {
    display: none;
}

/* Banner Section */
.banner-section {
    width: 100%;
    float: left;
}

.banner-section .banner-slider .owl-item {
    overflow: hidden;
}

.banner-section .banner-slider .item {
    position: relative;
}

.banner-section .banner-slider .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(252.44deg, rgba(0, 0, 0, 0) 0%, #000000 85.44%);
}

.banner-section .caption {
    position: absolute;
    width: 40%;
    bottom: 30px;
    z-index: 1;
}

.banner-section .caption h2 {
    font-family: "Kreon", serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
    text-align: left;
    color: #ffffff;
    margin-bottom: 20px;
}

.banner-section .caption .typed {
    display: block;
    height: 45px;
    font-family: "Kreon", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    color: #6B7F4E;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.banner-section .caption .talk-btn {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: #ffffff;
    padding: 8px 18px;
    text-decoration: none;
    border: 2px solid #ebecea;
    background-color: transparent;
    transition: all .5s ease-in-out;
}

.banner-section .caption .talk-btn:hover {
    background:#6B7F4E;
}

.banner-slider__arrows-dots-container {
    bottom: 95px;
    right: calc((100% - var(--container-width)) / 2);
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.banner-section .banner-slider .owl-dots {
    display: flex;
    padding-right: 55px;
}

.banner-section .banner-slider .owl-dots .owl-dot {
    outline: none;
}

.banner-section .banner-slider .owl-dots .owl-dot span {
    width: 140px;
    height: 2px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.53);
}

.banner-section .banner-slider .owl-dots .owl-dot span:hover,
.banner-section .banner-slider .owl-dots .owl-dot.active span {
    background: #ffffff;
}

.banner-section .container {
    position: relative;
}

.banner-section .slider-counter {
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
    color: #ffffff;
    display: inline-block;
    position: absolute;
    bottom: 75px;
    right: 0;
    z-index: 2;
}

/* About Section */
.aboutSec {
    width: 100%;
    float: left;
    margin-top: 100px;
}

.aboutSec .leftCol {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.aboutSec .leftCol h3 {
    position: relative;
    font-family: "Kreon", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    text-align: left;
    color: #6B7F4E;
    padding-left: 45px;
    margin-bottom: 50px;
}

.aboutSec .leftCol h3::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #6B7F4E;
}

.aboutSec .leftCol h1 {
    font-family: "Kreon", serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
    color: #000000;
    margin-bottom: 30px;
}

.aboutSec .leftCol h1 strong {
    color: #6B7F4E
}

.aboutSec .leftCol p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 30px;
    text-align: justify;
}

.aboutSec .leftCol .learnBtn {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    background-image: linear-gradient(83.82deg, #6B7F4E, #185633, #185633, #6B7F4E);
    background-position: left;
    background-size: 200%;
    transition: all .3s ease-in-out;
}

.aboutSec .leftCol .learnBtn:hover {
    background-position: right;
}

.aboutSec .rightCol {
    position: relative;
    margin-right: calc(9px - var(--container-padding));
    margin-bottom: -90px;
    z-index: 1;
}

.aboutSec .rightCol::before {
    position: absolute;
    left: 60px;
    top: 50px;
    content: '';
    width: 100px;
    height: 117px;
    background-image: url(../images/aboutSec-logo.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.aboutSec .rightCol img {
    width: 100%;
    height: auto;
}

/* Our Services Section */
.ourServicesSec {
    position: relative;
    width: 100%;
    float: left;
    padding: 190px 0 100px 0;
    background-repeat: no-repeat;
    background-position: center;
}

.ourServicesSec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000DE;
}

.ourServicesSec .container {
    position: relative;
}

.ourServicesSec h2 {
    position: relative;
    font-family: "Kreon", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    color: #6B7F4E;
    padding-left: 45px;
    margin-bottom: 30px;
}

.ourServicesSec h2::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #ffffff;
}

.ourServicesSec p {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 50px;
}

.ourServicesSec .learnMoreBtn {
    display: inline-block;
    float: right;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: white;
    padding: 8px 18px;
    text-decoration: none;
    border: 2px solid white;
    background-color: transparent;
    transition: all .5s ease-in-out;
}

.ourServicesSec .learnMoreBtn:hover {
    background:#6B7F4E;
}

.ourServicesSec .ourServicesRow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.ourServicesSec .ourServicesRow .ourServicesCol {
    width: calc(20% - 20px);
    border: 1px solid #6B7F4E;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 31px 20px;
    transition: all .5s ease-in-out;
}

.ourServicesSec .ourServicesRow .ourServicesCol:hover {
    border-color: #6B7F4E;
}

.ourServicesSec .ourServicesRow .ourServicesCol img {
    width: auto;
    height: auto;
    margin-bottom: 35px;
    transition: all .5s ease-in-out;
}

.ourServicesSec .ourServicesRow .ourServicesCol:hover img {
    filter: invert(51%) sepia(13%) saturate(1746%) hue-rotate(351deg) brightness(89%) contrast(83%);
}

.ourServicesSec .ourServicesRow .ourServicesCol:nth-child(6):hover img {
    filter: invert(10%) sepia(33%) saturate(1746%) hue-rotate(351deg) brightness(60%) contrast(100%);
}

.ourServicesSec .ourServicesRow .ourServicesCol h4 {
    font-family: "Kreon", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #ffffff;
    margin: 0;
    text-align: center;
    transition: all .5s ease-in-out;
}

.ourServicesSec .ourServicesRow .ourServicesCol:hover h4 {
    color: #6B7F4E;
}

/* Why Choose Section */
.whyChooseSec.new-layout {
  background-color: #ffffff;
  padding: 100px 0;
}

/* Headings — inherit font from global styles */
.whyChooseSec .main-heading,
.whyChooseSec .sub-heading,
.whyChooseSec .icon-grid h4,
.whyChooseSec .icon-grid p {
  font-family: "Kreon", serif; /* ✅ Matches other sections */
}

/* Section Titles */
.whyChooseSec .main-heading {
  font-size: 32px;
  color: #6B7F4E;
  font-weight: 700;
  margin-bottom: 10px;
}

.whyChooseSec .sub-heading {
  font-size: 28px;
  color: black;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Grid Layout */
.whyChooseSec .icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Grid Item */
.whyChooseSec .icon-grid .item {
  background-color: transparent;
  text-align: center;
  max-width: 260px;
}

/* Icon Circle */
.whyChooseSec .icon-grid .icon-wrapper {
  background-color: #f0f0f0;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
   background-color: #f2f2f2;       /* Light gray background */
  border: 2px solid #6b7f4e; 
}

/* Icon Image */
.whyChooseSec .icon-grid .icon-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

/* Feature Title */
.whyChooseSec .icon-grid h4 {
  font-size: 20px;
  font-weight: 600;
  color: #6B7F4E;
  margin-bottom: 10px;
}

/* Feature Description */
.whyChooseSec .icon-grid p {
  font-size: 16px;
  color: black;
  line-height: 24px;
}
/*client section*/
.clientsSec {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.clientsSec .clients-heading {
  font-family: "Kreon", serif;
  font-size: 32px;
  color: #6B7F4E;
  font-weight: 700;
  margin-bottom: 50px;
}

.clientsSec .clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.clientsSec .clients-logos img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
  border: 2px solid #6B7F4E; /* Olive Green */
  border-radius: 8px;         /* Optional: rounded corners */
  padding: 8px;               /* Space inside the border */
  background-color: white; 
}

.clientsSec .clients-logos img:hover {
  transform: scale(1.05);
}

/* Contact Us Section */
.contactUsSec {
    position: relative;
    width: 100%;
    float: left;
    background-repeat: no-repeat;
    background-position: center;
}

.contactUsSec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000DE;
}

.contactUsSec .leftCol {
    width: 100%;
    float: left;
    margin-top: -70px;
}

.contactUsSec .leftCol img {
    width: 100%;
    height: auto;
}

.contactUsSec .rightCol {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 0 30px 30px;
}

.contactUsSec .rightCol h3 {
    position: relative;
    font-family: "Kreon", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    color: #ffffff;
    margin-bottom: 30px;
}

.contactUsSec .rightCol h3::before {
    position: absolute;
    right: -45px;
    top: 50%;
    content: '';
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #ffffff;
}

.contactUsSec .rightCol h2 {
    font-family: "Kreon", serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
    color: #ffffff;
    margin-bottom: 50px;
}

.contactUsSec .rightCol .contactUsBtn {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    padding: 8px 18px;
    text-decoration: none;
    border: 2px solid #FFFFFF;
    background-color: transparent;
    transition: all .5s ease-in-out;
}

.contactUsSec .rightCol .contactUsBtn:hover {
    background: rgba(255, 255, 255, 0.21);
}
.contactUsSec .rightCol h3::before {
    content: none !important;
}

/* Footer Section */
footer {
    width: 100%;
    float: left;
}

footer .top-footer {
    width: 100%;
    float: left;
    padding: 50px 0;
    background-color: #E3E3E3;
}

footer .top-footer .footerRow {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .top-footer .footerRow .ftr-logo {
    width: 120px;
}

footer .top-footer .footerRow .ftr-links {
    width: auto;
}

footer .top-footer .ftr-logo .footer-logo {
    max-width: 90px;
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

footer .top-footer .ftr-logo .footer-logo img {
    width: 100%;
    height: auto;
}

footer .top-footer .ftr-logo .social-icons {
    width: 100%;
    float: left;
}

footer .top-footer .ftr-logo .social-icons ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

footer .top-footer .ftr-logo .social-icons ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: solid 1px transparent;
    background-color: #6B7F4E;
    transition: all .3s ease-in-out;
}

footer .top-footer .ftr-logo .social-icons ul li a:hover {
    border-color: #6B7F4E;
    background-color: transparent;
}

footer .top-footer .ftr-logo .social-icons ul li a img {
    width: 20px;
    height: auto;
    transition: all .3s ease-in-out;
}

footer .top-footer .ftr-logo .social-icons ul li a:hover img {
    filter: invert(52%) sepia(7%) saturate(3098%) hue-rotate(351deg) brightness(89%) contrast(85%);
}

footer .top-footer .ftr-links h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px;
}

footer .top-footer .ftr-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer .top-footer .ftr-links ul li {
    margin-bottom: 10px;
}

footer .top-footer .ftr-links ul li:last-child {
    margin-bottom: 0;
}

footer .top-footer .ftr-links ul li a {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

footer .top-footer .ftr-links ul li a:hover {
    color: #6B7F4E;
}

footer .top-footer .ftr-links ul li p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
    display: inline-block;
}

footer .copyright {
    width: 100%;
    float: left;
    padding: 16px 0;
    background-color: #6B7F4E;
}

footer .copyright p {
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

/* ---------- Inner Banner ---------- */
.innerbanner {
    width: 100%;
    float: left;
    position: relative;
    height: 350px;
    padding: 30px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.innerbanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0 0 0 / 80%);
}

.innerbanner .caption {
    width: 95%;
    position: relative;
}

.innerbanner .caption h1 {
    font-size: 35px;
    font-family: "Kreon", serif;
    line-height: 50px;
    color: #FFFFFF;
    position: relative;
    padding-left: 5px;
    margin-bottom: 20px;
}

.innerbanner .caption h1::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #ffffff;
}

.innerbanner .caption p {
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    margin-bottom: 70px;
}

.innerbanner .caption .breadcrumb {
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.innerbanner .caption .breadcrumb a {
    text-decoration: none;
}

.innerbanner .caption .breadcrumb .breadcrumb-item {
    font-size: 18px;
    line-height: 27px;
    color: #ffffff;
}

.innerbanner .caption .breadcrumb .breadcrumb-item a {
    transition: all .3s ease-in-out;
}

.innerbanner .caption .breadcrumb .breadcrumb-item a:hover {
    color: #6B7F4E;
}

.innerbanner .caption .breadcrumb .breadcrumb-item.active {
    color: #6B7F4E;
}

.innerbanner .caption .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #ffffff;
    padding-right: 15px;
    padding-left: 15px;
}

/* ---------- About Us Page Css ----------  */
/* About Company Section */
.about-company {
    width: 100%;
    float: left;
    padding: 50px 0px 100px 0px;
}

.about-company .caption {
    width: 100%;
    float: left;
}

.about-company .caption h2 {
    position: relative;
    font-size: 30px;
    font-family: "Kreon", serif;
    line-height: 38px;
    color: #6B7F4E;
    padding-left: 45px;
    margin-bottom: 30px;
}

.about-company .caption h2::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #6B7F4E;
}

.about-company .caption p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
    text-align: justify;
}

.about-company .caption p:last-child {
    margin-bottom: 0px;
}

.about-company .aboutcompany-image {
    width: 100%;
    float: left;
}

.about-company .aboutcompany-image img {
    width: 100%;
    height: auto;
}

/* Company Misson Section */
.company-misson {
    width: 100%;
    float: left;
    padding: 50px 0px 80px 0px;
    background-color: #F7F7F7;
}
.company-misson .caption h2 {
  font-family: "Kreon", serif;
  font-size: 26px;
  font-weight: 700;
  color: #6B7F4E;
  position: relative;
  margin-bottom: 20px;
}

.company-misson .caption h2::before {
  content: "— ";
  color: #6B7F4E;
  font-size: 28px;
  margin-right: 5px;
}

.company-misson .caption p {
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  text-align: justify;
}

.company-misson .caption h2::before {
    content: none !important;
}

/* ---------- Service Section Page Css ----------  */
.service-section {
    width: 100%;
    float: left;
    padding: 50px 0px 100px 0px;
}

.service-section .heading {
    text-align: center;
    margin-bottom: 30px;
}

.service-section .heading h2 {
    display: inline-block;
    position: relative;
    font-size: 30px;
    line-height: 37px;
    color: #6B7F4E;
    padding-left: 40px;
    margin: 0;
}


.service-section .heading h2::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #6B7F4E;
}

.service-section .company-service {
    width: 100%;
    float: left;
}

.service-section .company-service .service-box {
    width: 100%;
    float: left;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    background-color: #D9D9D9;
}

.service-section .company-service .service-box .service-image {
    width: 100%;
    float: left;
}

.service-section .company-service .service-box .service-image img {
    width: 100%;
    height: auto;
}

.service-section .company-service .service-box .caption {
    float: left;
    width: 100%;
    padding: 20px;
}

.service-section .company-service .service-box .caption h3 {
    font-size: 25px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "Kreon", serif;
}

.service-section .company-service .service-box .caption ul {
    margin: 0;
    padding-left: 0px;
    list-style: none;
}

.service-section .company-service .service-box .caption ul li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    padding-left: 22px;
}

.service-section .company-service .service-box .caption ul li::before {
    position: absolute;
    content: "";
    background-image: url(../images/bullet-point.png);
    height: 12px;
    width: 12px;
    left: 0%;
    top: 0;
    transform: translatey(50%);
}


.service-section .company-service .service-box .caption ul li:last-child {
    margin-bottom: 0px;
}


/* ---------- Chooseus Us Section Page Css -----------  */
/* Batter Section */
.better-section {
    width: 100%;
    float: left;
    padding-top: 50px;
}

.better-section h2 {
    position: relative;
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #6B7F4E;
    font-family: "Kreon", serif;
    padding-left: 45px;
}

.better-section h2::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #6B7F4E;
}

.better-section .content {
    width: 100%;
    float: left;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.better-section .content:hover {
    background-color: #6B7F4E;
}

.better-section .content .caption {
    padding: 40px 0px;
    border-bottom: 1px solid #B7B7B7;
}

.better-section .content:last-child .caption {
    border-bottom: none;
}

.better-section .content:last-child {
    border: none;
    padding-bottom: 0px;
}

.better-section .content .left-section {
    float: left;
    width: 100%;
}

.better-section .content .left-section h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    font-family: "Kreon", serif;
    transition: all .3s ease-in-out;
    margin: 0;
}

.better-section .content:hover .left-section h3,
.better-section .content:hover .right-section p {
    color: #ffffff;
}

.better-section .content .right-section {
    float: left;
    width: 100%;
}

.better-section .content .right-section p {
    font-size: 18px;
    line-height: 27px;
    transition: all .3s ease-in-out;
    margin: 0;
    text-align: justify;
}

/* Conclusion Section */
.conclusion-section {
    width: 100%;
    float: left;
    padding: 100px 0px;
}

.conclusion-section .caption {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.conclusion-section .caption h2 {
    position: relative;
    font-size: 30px;
    line-height: 38px;
    color: #6B7F4E;
    font-family: "Kreon", serif;
    padding-left: 40px;
    margin-bottom: 30px;
}

.conclusion-section .caption h2::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #6B7F4E;
}

.conclusion-section .caption p {
    font-size: 18px;
    line-height: 27px;
    margin: 0;
    text-align: justify;
}

.conclusion-section .image {
    width: 100%;
    height: auto;
}

.conclusion-section .image img {
    width: 100%;
    height: auto;
}

/* ---------- Partner Page Css -----------  */
/* Message-Section */
.message-section {
    width: 100%;
    float: left;
    padding: 50px 0px;
}

.message-section .caption {
    width: 100%;
    float: left;
}

.message-section .caption h2 {
    position: relative;
    font-size: 30px;
    line-height: 38px;
    color: #6B7F4E;
    font-family: "Kreon", serif;
    padding-left: 40px;
    margin-bottom: 30px;
}

.message-section .caption h2::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #6B7F4E;
}

.message-section .caption p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
    text-align: justify;
}

.message-section .caption p:last-child {
    margin-bottom: 0px;
}

.message-section .image {
    width: 100%;
    float: right;
    margin-bottom: -265px;
    margin-top: 70px;
}

.message-section .image img {
    width: 100%;
    height: auto;
}

/* Partner Section */
.partner-section {
    width: 100%;
    float: left;
    position: relative;
}

.partner-section .grayBox {
    width: 100%;
    position: relative;
    float: left;
    padding: 50px 160px 100px 0;
}

.partner-section .grayBox::after {
    position: absolute;
    content: "";
    left: calc(0px - var(--container-padding));
    top: 0;
    background-color: #F7F7F7;
    height: 100%;
    right: 90px;
    z-index: -1;
}

.partner-section .grayBox .caption {
    width: 100%;
    float: left;
    margin-bottom: 50px;
}

.partner-section .grayBox .caption:first-child {
    width: 55%;
}

.partner-section .grayBox .caption:last-child {
    margin-bottom: 0;
}

.partner-section .grayBox .caption h2 {
    font-size: 25px;
    line-height: 31px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #6B7F4E;
}

.partner-section .grayBox .caption P {
    font-size: 18px;
    line-height: 27px;
    text-align: justify;
}

.partner-section .grayBox .caption P:last-child {
    margin: 0;
}

/* ----------- Contact Page Css ----------  */
/* Contact Section */
.contact-section {
    float: left;
    width: 100%;
    padding: 50px 0px 100px 0px;
}

.contact-section .left-contact {
    width: 100%;
    float: left;
    padding-right: 80px;
}

.contact-section .left-contact h2 {
    position: relative;
    font-size: 30px;
    line-height: 38px;
    color: #6B7F4E;
    font-family: "Kreon", serif;
    padding-left: 5px;
    margin-bottom: 30px;
}

.contact-section .left-contact h2::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #FFFFFF;
}

.contact-section .left-contact p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 30px;
}

.contact-section .left-contact form .form-group {
    margin-bottom: 10px;
}

.contact-section .left-contact form .form-group:last-child {
    margin-bottom: 0px;
}

.contact-section .left-contact form .form-group .form-control {
    padding: 19px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #888888;
    border: solid 1px transparent;
    border-bottom: 1px solid #888888;
    border-radius: 0px;
}

.contact-section .left-contact form .form-group .form-control:focus {
    box-shadow: none;
    color: #000000;
    border: solid 1px #6B7F4E;
}

.contact-section .left-contact form .form-group textarea.form-control {
    height: 140px;
    resize: none;
}

.contact-section .left-contact form .form-group .submit-btn {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    border: none;
    padding: 10px;
    margin-top: 30px;
    background-image:linear-gradient(83.82deg, #6B7F4E, #185633, #185633, #6B7F4E);
    background-position: left;
    background-size: 200%;
    transition: all .3s ease-in-out
}

.contact-section .left-contact form .form-group .submit-btn:hover {
    background-position: right;
}

.contact-section .contact-company {
    width: 100%;
    float: right;
    margin-top: 150px;
}

.contact-section .contact-company ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact-section .contact-company ul li {
    background-color: #F7F7F7;
    border: 1px solid #E6E6E6;
    padding: 29px 30px;
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
}

.contact-section .contact-company ul li:hover {
    background-color: #6B7F4E;
}

.contact-section .contact-company ul li:last-child {
    margin-bottom: 0;
}

.contact-section .contact-company ul li a {
    display: block;
    position: relative;
    font-size: 20px;
    line-height: 40px;
    margin: 0;
    text-decoration: none;
    padding-left: 55px;
}

.contact-section .contact-company ul li:hover a,
.contact-section .contact-company ul li:hover p {
    color: #ffffff;
    transition: all .3s ease-in-out;
}

.contact-section .contact-company ul li a::before,
.contact-section .contact-company ul li p::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    z-index: 1;
    transition: all .3s ease-in-out;
}

.contact-section .contact-company ul li a.contact-call::before {
    background-image: url(../images/contactpage-call.svg);
    background-size: 24px;
}

.contact-section .contact-company ul li a.contact-email::before {
    background-image: url(../images/contactpage-email.svg);
    background-size: 20px;
}

.contact-section .contact-company ul li a.contact-location::before {
    background-image: url(../images/contactpage-location.svg);
    background-size: 19px;
}

.contact-section .contact-company ul li:hover a::before,
.contact-section .contact-company ul li:hover p::before {
    filter: invert(55%) sepia(6%) saturate(3804%) hue-rotate(351deg) brightness(83%) contrast(76%);
}

.contact-section .contact-company ul li a::after,
.contact-section .contact-company ul li p::after {
    position: absolute;
    content: "";
    background-color: #000000;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all .3s ease-in-out;
}

.contact-section .contact-company ul li p::after {
    top: 15px;
}

.contact-section .contact-company ul li:hover a::after,
.contact-section .contact-company ul li:hover p::after {
    background-color: #ffffff;
}

.contact-section .contact-company ul li p {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    padding-left: 55px;
    transition: all .3s ease-in-out;
}

/* Location Section */
.location {
    width: 100%;
    float: left;
    height: 500px;
}

.location iframe {
    width: 100%;
    height: 100%;
}

/* ---------- 404 Page Css ----------  */
.errorSec {
    width: 100%;
    float: left;
}

.errorSec .caption {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
}

.errorSec h1 {
    font-family: "Kreon", serif;
    font-size: 80px;
    line-height: 100px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #6B7F4E;
}

.errorSec h3 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
}

.errorSec p {
    font-size: 18px;
    line-height: 24px;
}

/* ---------- Thank You Page Css ---------- */
.thankYouSec {
    width: 100%;
    float: left;
    margin: 100px 0;
}

.thankYouSec h2 {
    font-family: "Kreon", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    color: #6B7F4E;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.thankYouSec p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
    text-align: center;
    margin: 0;
}

/* ---------- Privacy Policy Page Css ---------- */
.privacyPolicySec {
    width: 100%;
    float: left;
    margin: 100px 0;
}

.privacyPolicySec h2 {
    font-family: "Kreon", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    color: #6B7F4E;
    margin-bottom: 20px;
}

.privacyPolicySec p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
    margin: 0;
}