/***Typo Css Start****/
:root {
  --page-width: 1200px;
  --base-fm: "Inter", sans-serif;
  --base-size: 16px;
  --h1-size: 44px;
  --h2-size: 34px;
  --h3-size: 30px;
  --h4-size: 25px;
  --h5-size: 20px;
  --h6-size: 18px;
  --base-clr: #5c5e5e;
  --base-clr1:#1a1a1a;
  --white-clr: #ffffff;
  --black-clr: #000000;
  --bg-clr: #1a1a1a;
  --theme-clr: #466735;
}

* {
  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.5;
  background-color: var(--white-clr);
  font-weight: 400;
  padding-top: 121px;
}
a{
	color:var(--theme-clr);
}
p {
  margin: 0 0 20px 0;
  line-height: 1.5;
  color: var(--base-clr);
}
p:has(strong) {
    margin: 0px;
}
p:has(strong) + p {
  margin-top: 6px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1, .h1 {
  font-size: var(--h1-size);
  color: var(--white-clr);
  font-weight: 700;
  margin: 0px 0px 20px 0px;
  font-style: normal;
  line-height: 1.2;
}

h2, .h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  margin: 0px 0px 12px 0px;
  line-height: 1.3;
  color: var(--base-clr1);
  font-family: var(--base-fm);
}

h3, .h3 {
  font-size: var(--h3-size);
  font-weight: 700;
  margin: 0px 0px 8px 0px;
  line-height: 1.3;
  color: var(--base-clr1);
}

h4, .h4 {
  font-size: var(--h4-size);
  font-weight: 600;
  margin: 0px 0px 8px 0px;
  line-height: 1.3;
  color: var(--base-clr1);
}

h5, .h5 {
  font-size: var(--h5-size);
  font-weight: 500;
  margin: 0px 0px 6px 0px;
  line-height: 1.3;
  color: var(--base-clr1);
}

h6, .h6 {
  font-size: var(--h6-size);
  color: var(--hd-clr);
  font-weight: 500;
  margin: 0px 0px 5px 0px;
  line-height: 1.3;
}

.light-bg {
  background-color: #f3f5f2;
}
.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;
}
.f-center {
  align-items: center;
}

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

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

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

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

.cmn-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: var(--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;
}

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

.cmn-bdr-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: transparent;
  color: var(--theme-clr);
  border-radius: 5px;
  border: var(--theme-clr) 2px solid; 
  padding: 10px 25px 10px 25px;
  display: inline-block;
  font-weight:600;
  font-family: var(--base-fm);
  font-size: var(--base-size);
  vertical-align: middle;
  text-transform: uppercase;
  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(--bg-clr);
  padding: 6px 0;
  transition: 0.5s all;
  left: 0px;
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
}

.top-bar img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
}

.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: 16px;
  height: 16px;
  transition: 0.5s all;
}

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


.main-header {
  padding: 15px 0;
  background: var(--white-clr);
  transition: 0.5s all;
  left: 0px;
  position: fixed;
  top: 33px;
  z-index: 999;
  width: 100%;
      border-bottom: #d7d7d7 1px solid;
}
.fixed .main-header {
  top: 0px;
  padding: 10px 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;
}

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

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

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



/* HERO SECTION */
.hero-section {
  min-height: 670px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 0px;
  flex-flow: row wrap;
}
.banner-img {
    width: 100%;
}
.hero-section video {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.inner-bnr {
   min-height: 280px;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
.hero-section .hero-content {
    position: absolute;
    max-width: 800px;
    width: 100%;
    color: var(--white-clr);
    margin: auto;
    top: 50%;
    left: 0px;
    right: 0px;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0px 15px;
}
.hero-content {
  position: relative;
  max-width: 860px;
  width: 100%;
  color: var(--white-clr);
  margin: auto;
}

.hero-content h1 {
  color: var(--white-clr);
}

.hero-content p {
  color: var(--white-clr);
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.hero-btns .cmn-bdr-btn {
  border-color: var(--white-clr);
  color: var(--white-clr);
}
.hero-btns .cmn-bdr-btn:hover {
    background: var(--white-clr);
    border-color: var(--white-clr);
    color: var(--theme-clr);
}
/* MISSION */
.mission-section {
  background: #f3f5f2;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.ci-img-left .content-part .cmn-btn {
    margin-top: 15px;
}
.ci-img-left .img-part {order: 1;}
.ci-img-left .content-part {order: 2;}
.img-part img {
  width: 545px;
  height: 390px;
  object-fit: cover;
  border-radius: 10px;
}
.content-part strong {
    color: var(--base-clr1);
}
.content-part a {
    color: var(--theme-clr);
}
.content-part a:hover {
    text-decoration:underline;
}

.content-part a.cmn-btn{
	color:var(--white-clr);
   text-decoration:underline;
}

.content-part ul li {
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    color: var(--base-clr1);
    font-weight: 300;
    margin: 4px 0px;
}

.content-part ul li:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: var(--base-clr1);
    display: inline-block;
    border-radius: 100%;
}

.content-part ul {
    padding-top: 5px;
}
/* COLLAB */
.collab-section {
  text-align: center;
}

.sub-heading {
    color: var(--theme-clr);
    font-size: 16px;
    font-weight: 650;
    max-width: 600px;
    margin: 0 auto 12px auto;
}
.collab-section p{
  max-width: 670px;
  width: 100%;
    margin: auto;
}

/* TECHNOLOGY */
.tech-section {
  background: #f7f7f7;
  
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.tech-card {
  background: var(--white-clr);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.tech-card p {
  margin: 0px;
  font-size: 14px;

}
.tech-card-icon {
    width: 60px;
    height: 60px;
    background-color:#d8e3d2;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    border-radius: 100%;
    align-items: center;
    margin: 0 auto 14px auto;
}
.tech-card img {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(33%) sepia(20%) saturate(1146%) hue-rotate(56deg) brightness(94%) contrast(81%);
}

.tech-card:hover {
  transform: translateY(-5px);
}



/* LEADERSHIP */
.leadership-section {
  background: #fff;
}

.leader-grid {
    margin-top: 40px;
   
}

.team-img {
    width: 240px;
    height: 240px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.leader-card {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    align-items: center;
}

.team-img img {
    object-fit: cover;
    height: 100%;
    border-radius: 10px 0 0px 10px;
}

.team-cont .team-top {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 15px;
}

.team-cont .team-top span {
    color: #fff;
    line-height: 1.6;
    margin-left: 4px;
    font-size: 16px;
}

.team-desc ul, .team-desc ul li {
    list-style: disc;
}
.team-desc ul {
    padding-left: 18px;
}
.team-desc , .team-desc p{padding-left: 0px; color: var(--white-clr);}

.team-desc ul li {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 15px;
}
.teamsocial {
    position: absolute;
    right: 0;
    z-index: 9999;
    bottom: 0;
    background-color: rgba(255,255,255, 0.85);
    padding: 5px;
}

.team-img .teamsocial img {
    border-radius: 0px;
}
.team-desc ul li br {
    display: none;
}
.team-img>img {
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
    width: 100%;
}
.leader-grid {
    margin-top: 40px;
    display: flex;
    flex-flow: row wrap;
    gap: 25px;
}
.team-cont {
    text-align: left;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(100% - 250px);
    margin-top: 0;
    background-color: #466735;
    padding: 30px 20px 15px 50px;
    border-radius: 10px;
    color: #fff;
    margin-left: -20px;
    min-height: 239px;
}
.team-cont .team-cont-left {
    width: calc(100% - 32px);
}
.leader-card h5 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 600;
    color: #fff;
}
.team-cont .team-top span {
    color: #fff;
    line-height: 1.6;
    margin-left: 4px;
    font-size: 16px;
}
/* EXPERTISE */
.expertise-section {
  background: #f3f6ef;
}

.expertise-box {
  background: #e7eddc;
  padding: 40px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

.expertise-left h2 {
  color: #3f5d2a;
}
.expertise-left p {
  color: var(--base-clr1);
}
.expertise-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.exp-card {
  background: var(--white-clr);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  transition: 0.5s all;
}
.exp-card p {
  margin-bottom: 0px
}
.exp-card:hover {
  transform: translateY(-5px);
}
.exp-card img {
  width: 25px;
  height: auto;
  margin-bottom: 10px;
}

.exp-card h3 {
  color: var(--theme-clr);
  margin-bottom: 5px;
  font-weight: 700;
}

/* CTA */
.cta-section {
  background: #5a7d3a;
  color: var(--white-clr);
}

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

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

.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 */
.ftr-scn {
  background: #111;
  color: #ccc;
  padding-top: 60px;
}

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

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

/* 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;
}

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

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

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

/* SOCIAL */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
/*
@media(min-width: 992px) {
  .footer-social {
    flex-direction: column;
    position: fixed;
    left: 10px;
    bottom: 80px;
    z-index: 99;
  }
}
*/

.footer-social a {
  width: 35px;
  height: 35px;
  background: var(--theme-clr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  background-color: var(--black-clr);
}
.footer-social img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
}

/* 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 {
  background: linear-gradient(90deg, #5a7d3a, #7fa35b);
  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(--black-clr);
}



.process-section {
  
  background: #f5f5f5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.process-card {
  background: var(--white-clr);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  position: relative;
  border: 1px solid #eee;
  min-height: 100px;
  transition: 0.3s;
}
.process-card{
    transform: translateY(-5px);
}
.process-card .process-card-title {
  color: var(--theme-clr);
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 18px;
}

.process-card p {
  font-size: 14px;
  margin-bottom: 0px;
}

/* Number */
.process-card span {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 40px;
      color: #efefef;
  font-weight: 900;
}

/* BENEFITS */


.benefits-box {
  margin-top: 50px; 
  background: var(--theme-clr);
  padding: 50px;
  border-radius: 10px;
  color: var(--white-clr);
}

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

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ICON */
.benefit-item .icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item img {
  width: 20px;
}

/* TEXT */
.benefit-item p {
  margin: 0;
  color: var(--white-clr);
}

.video-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    margin: auto;
    border-radius: 100%;
    pointer-events: none;
    opacity:0;
}

.video-btn:before {
    content: '';
    position: absolute;
    border-style: solid;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 25px solid #ff0233;
    border-right: 0;
    margin: auto;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.blog-img a[target="_blank"] .video-btn {
    opacity: 1;
}

.blog-list {
  width: calc(100% + 16px);
  margin-left: -8px;
  display: flex;
  flex-flow: row wrap;
}

.blog-item {
  width: calc(50% - 32px);
  margin: 0px 16px 32px 16px;
  border: #ccc 1px solid;
  border-radius: 10px;
  box-shadow: #ccc 0 0 8px;
}

.blog-img {
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  object-fit: cover;
}

.blog-img:hover img {
  transform: scale(1.1);
}

.blog-date {
  font-size: 16px;
  font-weight: 500;
  color: var(--base-clr);
  padding: 10px 0px;
  font-family: 'satoshimedium';
}

.blog-title {
  font-size: 24px;
  line-height: 1.4;
  color: var(--base-clr);
  margin-bottom: 10px;
  display: inline-block;
  font-family: 'satoshimedium';
}

.blog-item-inner p {
  margin-bottom: 10px;
}

.blog-item-inner .read-more {
  font-size: 16px;
  font-weight: 500;
  color: var(--base-clr);
  font-family: 'satoshimedium';
  display: flex;
  padding-top: 15px;
}

.blog-item-inner .read-more:after {
  content: "";
  width: 26px;
  height: 20px;
  background-image: url('../images/arrow-left.svg');
  background-repeat: no-repeat;
  transform: rotate(180deg);
  margin-left: 16px;
  display: inline-block;
}

.postdate {
  position: absolute;
  bottom: 5px;
  left: 5px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  padding: 6px 10px;
  line-height: normal;
}

.blog-cont {
  padding: 15px;
}

.latest-title {
  font-size: 20px;
  letter-spacing: normal;
  margin: 9px 0px;
}

.blogtag {
  font-size: 14px;
  font-family: var(--fontB-fm);
  color: var(--theme-sec-clr);
}

.inner-banner-scn.blog-page {
  background-color: #222222;
  color: #fff;
  background-size: 100% 100%;
  background-image: url(../images/inner-bnr-bg.jpg);
}

.inner-banner-scn.blog-page h2 {
  margin-bottom: 0px;
  color: #fff;
}

.blog-detail .blog-d-group {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.blog-detail .blog-d-group .blog-d-left {
  width: 73%;
}

.blog-detail .blog-d-group .blog-d-right {
  width: 25%;
}

.blog-detail .blog-d-group .blog-d-right .contactus-form {
  border-radius: 5px;
  margin-top: 30px;
  padding: 24px 20px;
  box-shadow: #8f8f8f 0 0 5px;
  margin-bottom: 0px;
}

.blog-detail .blog-d-group .blog-d-right .contactus-form .form-title {
  font-size: 22px;
}

.blog-detail .blog-d-group .blog-d-right .contactus-form .input-g-half {
  width: 100%;
}

.blog-detail .blog-d-group .blog-d-right .contact-form textarea.input-field {
  min-height: 100px;
  padding-left: 15px;
}

.blog-detail .blog-d-group .blog-d-right .contactus-form .form-check label {
  font-size: 14px;
}

.blog-detail .blog-d-group .blog-d-right .contactus-form .form-check a {
  font-size: 14px;
}

.blog-detail .blog-d-group .blog-d-right .contact-form .input-field {
  font-size: 14px;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-detail .blog-d-group .blog-d-right .contact-form .form-check .input-field {
  padding: 0px;
}

.post-content {
  margin-top: 25px;
}

.post-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.post-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.post-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.post-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.post-content h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.post-content h6 {
  font-size: 18px;
}

.post-content ul, .post-content ul li {
  list-style: disc;
}

.post-content ul {
  padding-left: 18px;
  padding-bottom: 15px;
  padding-top: 5px;
}

.post-content ul li {
  margin-top: 5px;
}

.post-content ol, .post-content ol li {
  list-style: decimal;
}

.post-content ol {
  padding-left: 18px;
  padding-bottom: 15px;
  padding-top: 5px;
  margin: 0px;
}

.post-content ol li {
  margin-top: 5px;
}

.blog-detail .blog-d-group .blog-d-right label.wp-block-search__label {
  font-size: 18px;
  font-family: var(--fontB-fm);
  letter-spacing: normal;
}

.blog-detail .blog-d-group .blog-d-right .wp-block-search__inside-wrapper input {
  font-size: 15px;
  padding: 0px 10px;
}

.blog-cont h4 {
    font-size: 18px;
}
.blog-cont h4 a {
    color: var(--base-clr1);
}
.blog-cont a.cmn-btn {
    font-size: 12px;
    padding: 9px 20px;
}



/**CMS Pages Start**/
.inner-bnr.cms-page-bnr {
    background-color: #727c66;
    padding: 10px 0;
    display: flex;
}

.inner-bnr.cms-page-bnr h1 {
  margin-bottom: 0px;
}
  .cms-page {
      padding: 40px 0px;
  }
  .cms-page ul, .cms-page ol {
  padding-left:18px;
  padding-bottom: 15px;
  }
  .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: 40px;
    font-weight: 400;
    margin: 0px;
  }
  .cms-page h2 {
    font-size: 32px;
    font-weight: 400;
    margin:20px 0px 5px 0px;
  }
  .cms-page h3 {
    font-size: 28px;
    font-weight: 400;
    margin:20px 0px 5px 0px;
  }
  .cms-page h4 {
    font-size: 24px;
    font-weight: 400;
    margin:20px 0px 5px 0px;
  }
  .cms-page h5 {
    font-size: 20px;
    font-weight: 400;
    margin:20px 0px 5px 0px;
  }
  .page-title {
    padding: 40px 0px;
  }
  .cms-page a {
    text-decoration: underline;
    color: #444;
  }
  .cms-page a:hover {
    text-decoration: none;
  }

  @media(max-width: 767px) {
  .cms-page h1 {
    font-size: 36px;
  }
  .cms-page h2 {
    font-size: 28px;
  
  }
  .cms-page h3 {
    font-size: 24px;
  }
  .cms-page h4 {
    font-size: 22px;
    
  }
  .cms-page h5 {
    font-size: 18px;
  }
  }
/**Contact Us Page**/
/* CONTACT SECTION */
.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;
}

.contact-info p {
  margin-bottom: 40px;
  max-width: 450px;
  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;
}
.info-item div +div {
    width: calc(100% - 50px);
}
.info-item p {
  margin-bottom: 20px;
}
.icon {
  width: 45px;
  height: 45px;
  background: var(--theme-clr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 18px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
}

/* 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;
  position: relative;
}
.contact-form-box .wpcf7-spinner {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
}
.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(--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;
}

/* RESPONSIVE Start */
@media (max-width: 1200px) {
  :root {
  --base-size: 15px;
  --h1-size: 40px;
  --h2-size: 32px;
  --h3-size: 28px;
  --h4-size: 22px;
  --h5-size: 19px;
  --h6-size: 17px;
  }
.hero-section {
  min-height: 500px;
}
section {
  padding: 50px 0px;
}
.tech-card {
  padding: 20px;
}
.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.7fr;
    gap: 16px;
}
.hero-content p {
  font-size: 18px;
}
.inner-bnr {
    min-height: 240px;
}
}
@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;
  }
  body{padding-top: 100px;}
  .nav-menu ul li {
  margin: 0 10px;
}
.cmn-btn {
    padding: 10px 20px 10px 20px;
}
.logo {
    max-width: 110px;
}
.hero-section {
  padding: 0px 0;
  min-height: 300px;
}
.inner-bnr {
    min-height: 220px;
}
.hero-content p {
  font-size: 17px;
  margin-bottom: 0px;
}
.img-part img {
  height: auto;
}
.exp-card {
  padding: 15px;
}
.expertise-right {
    gap: 15px;
}
.expertise-box {
  border-radius: 0px;
  padding: 25px 15px;
}
.expertise-left h2 {
    font-size: 26px;
}
.exp-card p {
    font-size: 13px;
}
.tech-grid {
    gap: 15px;
    margin-top: 20px;
}
 .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  :root {
  --base-size: 14px;
  --h1-size: 32px;
  --h2-size: 26px;
  --h3-size: 22px;
  --h4-size: 20px;
  --h5-size: 17px;
  --h6-size: 15px;
  }
      body {
        padding-top: 95px;
    }
  .top-left, .top-right {
    gap: 10px;
}
  .top-link {
    font-size: 0px;
  }
  .main-header {
    top: 28px;
    padding: 12px 0;
 
}
  h1, .h1 {
    margin-bottom: 12px;
  }
  h2, .h2 {
    margin-bottom: 8px;
  }
  h3, .h3 {
    margin-bottom: 5px;
  }
  h4, .h4 {
    margin-bottom: 5px;
  }
  h5, .h5 {
    margin-bottom: 2px;
  }
  p {
    margin: 0 0 15px 0;
   
}
  section {
  padding: 35px 0px;
}
      .cmn-btn {
        padding: 6px 15px 6px 15px;
        border-radius: 4px;
    }
     .cmn-bdr-btn {
        padding: 4px 13px 4px 13px;
        border-radius: 4px;
    }
        .inner-bnr {
        min-height: 170px;
    }
    .hero-btns a {
    font-size: 12px;
    padding: 6px 15px;
}
  .mobile-toggle {
    display: flex;
  }
  nav.nav-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    background-color: var(--white-clr);
    width: 100%;
    display: none;
}
.menu-open   nav.nav-menu{
  display: block;
}
.nav-menu ul li {
    width: 100%;
    margin: 0px;
    border-top: #ccc 1px solid;
}

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

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

.header-btn {
    margin-left: 0px;
    width: 100%;
}
.hero-btns {
  margin-top: 15px;
}
.header-btn a.cmn-btn {
    width: 100%;
    border-radius: 0px;
    padding-left: 15px;
    padding-right: 15px;
}
    .hero-content p {
        font-size: 16px;
    }

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

  .form-row {
    gap:5px; 
    grid-template-columns: 1fr;
  }
  .mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: center;
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.leader-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-top: 20px;
}
.expertise-box {
      gap:10px;
      grid-template-columns: 1fr;
}
    .expertise-right {
        gap: 8px;
    }
    .exp-card {
        padding: 10px;
        border-radius: 5px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-bottom-flex {
    flex-flow: row wrap;
    text-align: center;
    flex-direction:column-reverse;
    gap:8px
}

.footer-bottom-flex >div {
    width: 100%;
}

.footer-bottom-links a {
    margin: 0px 5px;
}
.ftr-scn {
    padding-top: 35px;
}
.footer-bottom {
    margin-top: 30px;
 
}
.expertise-section {
    padding: 0;
}
.cta-section p {
    margin-bottom: 15px;
}
.cta-btn {
    padding: 10px 18px;
    border-radius: 4px;
}
.contact-grid {
  gap: 25px;
  
}
.info-item {
    gap: 15px;
    margin-bottom: 15px;
}
.contact-info p {
    margin-bottom: 15px;
 
}
.contact-form-box {
    padding: 25px 15px;
    border-radius: 6px;
}
.footer-bottom .copyright-part,
.footer-bottom-links a {
font-size: 12px;
}
.mission-grid .img-part {
    order: 1;
}

.mission-grid .content-part {
    order: 2;
}
.process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    gap: 15px;
    margin-top: 30px;
}
.benefits-box h3 {
    margin-bottom: 20px;
}  
  .benefits-box {
    margin-top: 30px;
    padding: 25px 15px;
    color: var(--white-clr);
}
.benefits-grid {
    gap: 15px;
}
.process-card span {
    right: 15px;
    top: 10px;
    font-size: 30px;
 
}
.footer-links h5,
.footer-contact h5 {
  margin-bottom: 8px;
}

.team-cont {
    margin-top: 0;
    background-color: #466735;
    padding: 20px 20px 15px 20px;
    border-radius: 10px;
        width: 100%;
    margin-left: 0;
    
}
}