/*!
Theme Name: Page Pulse Studio
Theme URI: https://www.kadencewp.com/kadence-theme/
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Version: 1.5.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: pagepulsestudio
*/


:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --placeholdercolor: currentColor;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "DM Sans", sans-serif;
    margin: 0 0 20px 0;
}

p, ul, li, ol {
    font-family: "DM Sans", sans-serif;
    margin: 0 0 20px 0;
}

ul, ul li {
	list-style: none;
}

a {
    text-decoration: none;
    color: #16a772;
}
a:hover {
    color: #0c1c14;
}
a:focus {
    outline: none;
}

p:empty {
	display: none;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

#wrapper {
    background-color: #f3f5f4;
}



/*Header*/

.header-sec .container {
	max-width: 1420px;
}

.header-sec {
	padding: 30px 0 0;
    position: absolute;
    z-index: 999;
    width: 100%;
    transition: all ease 0.5s;
}
.header-sec.f-nav {
    position: fixed;
    background-color: #0c1c14;
    padding: 20px 0;
    border-bottom: 2px solid #16a870;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all ease 0.5s;
}

.hdr-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 90%);
}

.hdr-riy {
    display: flex;
    justify-content: flex-end;
    align-items: center;    
}


.hdr-cal p {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    color: #ff6600;
    margin: 0;
}

.hdr-cal p a {
    display: inline-block;
    font-size: 25px;
    text-decoration: none;
    color: #000;
}

.hdr-cal p a:hover {
    color: #ff6600;
}

.logo a{
    display: flex;
}

a.cmn-btn {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    line-height: 1;
    font-size: 16px;
    color: #fff;
    padding: 22px 52px 20px 30px;
    background-color: #02a07a;
    border-radius: 12px;
/*    background:linear-gradient(90deg, #16a870 36%, #123126 100%, #0c1c14 100%);
    background-size: 100% 100%;
    background-position: bottom right;
    background-repeat: no-repeat;*/
    position: relative;
    z-index: 1;
}

a.cmn-btn:hover {
   /*background: linear-gradient(to right, #0c1c14 0%, #123126 0%, #16a870 64%);*/
   background-color: #16a870;
   color: #fff;
}
a.cmn-btn:before {
    position: absolute;
    content: "";
    width: 17px;
    height: 10px;
    background-image: url(images/btn-arw-icn.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    top: 3px;
    bottom: 0;
    right: 25px;
    margin: auto;
    transition: all 0.4s ease;
}
a.cmn-btn:hover:before {
    right: 23px;
}


/* Mobile Menu Starts */


.showhide {

  display: none;
}

.topmenu ul {
    margin: 0;
    font-size: 0;
}

.topmenu ul li {
    display: inline-block;
    margin: 0 50px 0 0;
}

.topmenu ul li a {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    position: relative;
    color:#000;
    text-decoration: none;
    display: inline-block;
    padding:30px 0px 30px 15px;
}

.topmenu ul li.menu-item-has-children a {
   padding-right: 20px;
}

.topmenu ul.primary-menu > li a:hover, .topmenu ul.primary-menu > li.current-menu-item > a {
    color: #16a870;
}

.topmenu ul li a:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: transparent;
    border-radius: 10px;
    left: -5px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.4s ease;
}

.topmenu ul li.menu-item-has-children a:after {
    position: absolute;
    content: "";
    right: 0;
    top: 2px;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #000;
}

.topmenu ul.primary-menu > li a:hover:before, .topmenu ul.primary-menu > li.current-menu-item > a:before {background: #16a870;left: 0;}

.topmenu ul.primary-menu > li.menu-item-has-children a:hover:after, .topmenu ul.primary-menu > li.current-menu-item > a:after {border-top-color:#16a870;}

.topmenu ul li {
    display: inline-block;
    margin: 0 40px 0 0;
    position: relative;
}

.topmenu ul li:last-child {margin-right: 0;}


.topmenu ul li ul.sub-menu {
  display: none;
  width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  background-color:#02a07a;
  padding: 0px 0;
  z-index: 999;
}

.topmenu ul li:hover ul.sub-menu {
  display: block;
}

.topmenu ul li:hover ul.sub-menu ul {
  display: none;
}

.topmenu ul li:hover ul.sub-menu li {
  position: relative;
}

.topmenu ul li:hover ul.sub-menu li:hover > ul {
  display: block;
  top: 0;
  left: 100%;
}

.topmenu .sub-menu li.current-menu-item a {
  color: #fff;
}

.topmenu .sub-menu li a:after {
  display: none;
}

.topmenu .sub-menu li {
  width: 100%;
  float: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 0;
}

.topmenu .sub-menu li a {
  float: left;
  font-size: 15px;
  width: 100%;
  line-height: normal;
  padding: 9px 12px 8px;
  color: #fff;
  display: block;
  text-transform: capitalize;
}

.topmenu ul.sub-menu li a:hover {
    background-color: #0c1c14;
    color: #fff;
    padding-left: 30px;
}
.topmenu ul.sub-menu li a:hover:before {left: 13px;}

.showhide {

  display: none;

  color: #fff;

  width: 110px;

  height: 28px;

  float: none;

  text-align: left;

  cursor: pointer;

  padding: 0px 0 0 33px;

  position: relative;

}

.showhide b.txtl {

  text-align: right;

  font-family: "DM Sans", sans-serif;

  font-size: 20px;

  line-height: 28px;

  font-weight: normal;

  text-transform: uppercase;

  margin: 0 0px 0 0px;

  color: #343235;

  padding-top: 2px;

  font-weight: bold;

  letter-spacing: 0.5px;

  display: inline-block;

}

.showhide b.txtr {

  position: absolute;

  top: 3px;

  bottom: 0;

  left: 0;

  margin: auto;

  text-align: left;

  font-size: 37px;

  line-height: 27px;

  color: #343235;

}

.mobinav {
    display: none;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    z-index: 99999995;
    float: left;
    background: #0c1c14;
    border-bottom: 2px solid #16a870;
    position: absolute;
    top: 38px;
    left: 0;
}

.mobinav ul {

  float: left;

  margin: 0px 0 0 0;

  padding: 5px 0px;

  width: 100%;

}

.mobinav ul li {

  float: left;

  margin: 0;

  width: 100%;

  list-style: none;

  padding: 0 20px;

  box-sizing: border-box;

  border: 0;

  margin: 0;

  padding: 0px;

  position: relative;

 font-family: "DM Sans", sans-serif;

}

.mobinav a {
    width: 100%;
    float: none;
    padding: 6px 0;
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 0;
    margin: 0;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
}

.mobinav a:hover {

    color: #16a870;

}

.mobinav ul li ul {

  float: none;

  padding: 0 0 0 15px;

}

.mobinav ul li ul li a {

  text-transform: capitalize;

}

.mobinav ul li a.drop.close,

.mobinav ul li a.drop.open {

  font-size: 0;

  position: absolute;

  right: 0px;

  top: 0;

  width: 100%;

  height: 29px;

  background-color: transparent !important;

  background-position: right center;

  background-repeat: no-repeat;

  padding: 0px 5px !important;

  cursor: pointer;

}
.mobinav ul li a.drop.close { background-image: url(images/plus_icn.png) !important;}

.mobinav ul li a.drop.open {
  width: 22px;
  background-image: url(images/minus_icn.png) !important;

}

.mobile_src_nav {

  display: none;

  width: 100%;

  float: none;

  position: relative;

  padding: 10px 0;

}

.mobile_src_nav .container {

  position: relative;

}

.mobile_src_nav .search-form {

  width: 100%;

  float: left;

}


/*Banner Section*/

.site-banner {
    padding: 180px 0 160px;
    background-color: #0c1c14;
    position: relative;
    z-index: 1;
    background-image: url(images/bnr-bg-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
}
/*.site-banner:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 30% 50%, rgba(22, 168, 112, 0.25) 0%, transparent 60%), 
    radial-gradient(circle at 70% 50%, rgba(240, 165, 0, 0.18) 0%, transparent 60%);
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    pointer-events: none;
}*/
.site-banner:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-image: url(images/bnr-lines-img.webp);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: 0 center;
    animation: floatBg 8s ease-in-out infinite alternate;
    filter: brightness(15%) contrast(100%) saturate(100%);
    pointer-events: none;
}

@keyframes floatBg {

    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(-60px);
    }
}

.bnr-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-heading {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    margin: 0 0 10px;
    padding: 0 30px;
    position: relative;
    display: inline-block;
}
.top-heading:before, .top-heading:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 8px;
    background-image: url(images/top-hdng-bfr.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.top-heading:after {
    right: -2px;
    left: auto;
    background-position: right center;
    transform: rotate(180deg);
}
.bnr-cnt h1 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 63px;
    line-height:1.09;
    color: #fff;
    text-transform: capitalize;
    margin: 0 0 20px;
}
.bnr-cnt h1 strong {
    font-weight: 600;
    background: linear-gradient(90deg, #16a870, #7ce0c5, #123126, #0c1c14);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 5s linear infinite;
}
/*@keyframes textGradient {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 100% center;
    }
}*/
.bnr-cnt p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: #fff;
    margin: 0 0 25px;
}
.bnr-btns-lst {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
.bnr-nmbr-btn a.cmn-btn {
    padding: 22px 30px 20px 52px;
}
.bnr-nmbr-btn a.cmn-btn:before {
    background-image: url(images/cal-icon.webp);
    right: auto;
    left: 0;
}
.bnr-nmbr-btn a.cmn-btn:before {
    background-image: url(images/btn-cal-icon.webp);
    right: auto !important;
    left: 25px;
    width: 20px;
    height: 20px;
}
.bnr-nmbr-btn a.cmn-btn:hover:before {
	left: 23px;
    right: auto !important;
}

/*Ranking Section*/

.ranking-lst {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.site-ranking {
    padding: 100px 0;
    position: relative;
    margin: -70px 0 0;
    z-index: 1;
    border-radius: 70px 70px 0 0;
    background-color: #f3f5f4;
}

.ranking-card {
    width:35%;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(18, 49, 38, 0.95), rgba(12, 28, 20, 0.95));
    border: 1px solid rgba(124, 224, 197, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.ranking-title {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.ranking-title .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0abe92;

    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(10,190,146,0.7);
    }

    70% {
        transform: scale(1.1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(10,190,146,0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(10,190,146,0);
    }
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 14px;
    transition: 0.3s ease;
}
.ranking-item:last-child {
    margin: 0;
}
.ranking-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.07);
}

.rank-number {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #111;
    background: #ffb800;
}

.rank-number.green {
    background: #16a870;
    color: #fff;
}

.rank-number.gray {
    background: #4b564f;
    color: #fff;
}

.keyword {
    flex: 1;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
}

.rank-change {
    min-width: 42px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.rank-change.up {
    background: rgba(22, 168, 112, 0.18);
    color: #35d59a;
}

.rank-change.new {
    background: rgba(255, 184, 0, 0.15);
    color: #ffb800;
}


/*Status Section*/

.status-sec {
    padding: 40px 0px;
    background-image: url(images/background-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.status-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}       

.status-card {
    width: 23.4%;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 17%);
}

.status-card:last-child {border-right: 0;}

.status-card h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 63px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1;
}

.status-card p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.status-card h3:after {
    content: "+";
}
.status-card h3.prcntg:after {
    content: "%";
}

.status-card:last-child h3:after {
    content: "Yrs";
}


/*Service Section*/

.site-services {
    padding:90px 0 80px;
}
.srvc-top {
    text-align: center;
    margin: 0 0 45px;
}
.top-heading.drk {
    color: #000;
}
.top-heading.drk:before, .top-heading.drk:after {
    background-image: url(images/top-hdng-bfr-drk.webp);
}
.text-heading {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 47px;
    line-height: 1.09;
    color: #0c1c14;
    text-transform: capitalize;
    margin: 0 0 16px;
}
.text-heading strong {
    font-weight: 600;
    color: #16a870;
}
.text-heading.lght {color: #fff;}
.srvc-top p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #041315;
    margin: 0;
}
.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.service-card {
    width:100%;
    padding: 10px 10px 8px;
    position: relative;
    background-color: #0c1c14;
    border-radius: 25px;
    overflow: hidden;
}
.srvc-icon {
    width: 50px;
    height: 50px;
    position: relative;
    filter: grayscale(1);
}
.srvc-cnt {
    position: relative;
    padding: 20px 20px 0;
}
.srvc-tp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 25px;
    gap: 20px;
}
.service-card h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 29px;
    line-height: 1.17;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
}
.service-card p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 25px;
    display: none;
}
.srvc-link a {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 0;
    line-height: 1;
    color: #0dbd92;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 5;
}
.service-card:hover .srvc-link a:hover, .srvc-link a:hover {
    color: #0b1b13;
}
.srvc-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    height: 100%;
}
.services-grid.owl-carousel .owl-item.center .service-card .srvc-tp, .service-card:hover .srvc-tp {    
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 25%);
}
.services-grid.owl-carousel .owl-item.center .service-card p, .service-card:hover p {display:block;}
.services-grid.owl-carousel .owl-item.center .srvc-img img, .service-card:hover .srvc-img img {
    height: 243px;
}
.services-grid.owl-carousel .owl-item.center .service-card .srvc-icon, 
.service-card:hover .srvc-icon {filter: inherit;}

.services-grid.owl-carousel .owl-stage, .services-grid.owl-carousel .owl-item {display: flex;}

.services-grid.owl-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0 0;
}
.services-grid.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 10px;
}
.services-grid.owl-carousel .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    background-color: #16a870;
    border-radius: 10px;
}
.services-grid.owl-carousel .owl-dots .owl-dot.active {
    background-color: #0c1c14;
    animation: pulseDot 1.5s infinite;
}



/*Scroll Section*/

.site-scroll-sec .container:  {
    max-width: 100%;
}    

.site-scroll-sec {
  width:100%;
  overflow:hidden;
  padding:60px 0    ;
  text-align: center;
}

.site-scroll-sec .top-heading.drk {
    margin: 0 0 20px;
    text-transform: uppercase;
}
.site-scroll-sec .text-heading {
    text-align: center;
    color: #000;
    margin: 0 0 25px;
}

.scroll-list{
  display:flex;
  align-items:center;
  gap:60px;
  width:max-content;
  animation:scroll 25s linear infinite;
}

.site-scroll-sec:hover .scroll-list {
  animation-play-state:paused;
}

.scroll-item {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.scroll-item h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    color: #6666664a;
    transition: 0.4s;
    margin: 0;
    text-transform: capitalize;
    cursor: pointer;
}

.scroll-item:hover h4{
  color:#16a870;
}

@keyframes scroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-30%);
  }
}

.scrl-dot {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #16a870;
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {

    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(10,190,146,0.7);
    }

    70% {
        transform: scale(1.1);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(10,190,146,0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(10,190,146,0);
    }
}


/*Our Process Section*/

.our-process-sec {
    padding: 90px 0 190px;
    position: relative;
    border-radius: 70px 70px 0 0;
    background-image: url(images/background-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.our-prcs-tp {
    text-align: center;
    margin: 0 0 40px;
}

.our-prcs-tp p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 76%);
    margin: 0;
}

.process-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.process-card {
    width: 23.8%;
    position: relative;
    padding: 80px 25px 35px;
    border: 1px solid #f3f5f4;
    border-radius: 20px;
    background: #f3f5f4;
    counter-increment: step;
    transition: 0.4s ease;
}

.process-card::before {
    content: "0" counter(step);
    position: absolute;
    top: 26px;
    left: 25px;
    font-family: "DM Sans", sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    color: rgba(22, 168, 112, 30%);
}

.process-card:hover{
  transform:translateY(-10px);
  border-color:#16a870;
}

.process-card h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #071c14;
}

.process-card p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}


/*Why Choose Section*/

.why-choose-sec {
    background-color: #f3f5f4;
    padding: 80px 0 80px;
    margin: -70px 0 0;
    position: relative;
    border-radius: 70px 70px 0 0;
    text-align: center;
}
.why-choose-sec p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #0c1c14;
    margin: 0 0 25px;
}
.why-chos-cnt {
    width: 60%;
    text-align: left;
    margin:0 auto 35px;
}
.why-chos-cnt ul {
    margin: 0;
}
.why-chos-cnt ul li {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #0c1c14;
    margin: 0 0 15px;
    position: relative;
    padding: 0 0 0 25px;
}
.why-chos-cnt ul li:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #16a870;
    animation: pulseDot 1.5s infinite;
    left: 0;
    top: 8px;
}
.tabs-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px 0 0;
}
.tab {
    width:27%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-lnk {
    display: block;
    width: 100%;
    padding: 25px 25px 25px 65px;
    border: none;
    background: #fff;
    text-align: left;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    line-height: 1.1;
    color: #0c1c14;
    font-weight: 600;
    position: relative;
    border-radius: 20px;
}
.tab-lnk:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 34px;
    background-image: url(images/transparent-rprt-icon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.tab-lnk.cndan:before {background-image: url(images/market-exprts-icon.webp);}
.tab-lnk.lock:before {background-image: url(images/term-lock-icon.webp);}
.tab-lnk.dgtl:before {background-image: url(images/stack-digital-icon.webp);}

.tab-rit-cnt {
    width:69.3%;
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
}

.tab-lnk:hover,
.tab-lnk.active{
  background:#0c1c14;
  color: #fff;
}

.tabcontent {
    justify-content: space-between;
    display: none;
    width: 100%;
}

.tabcontent.active{
  display:flex;
}
.tab-img {
    width: 50%;
}
.tab-img img {
    width: 100%;
    display: block;
    border-radius: 25px;
}
.tab-lft-cnt {
    padding: 35px 20px 20px 30px;
    text-align: left;
    width: 50%;
}
.tab-lft-cnt h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 29px;
    line-height: 1.17;
    color: #0c1c14;
    margin: 0 0 25px;
}
.why-choose-sec .tab-lft-cnt p {
    color: #666;
}


/*Industries Section*/

.industries-sec .container {
    max-width: 1440px;
}
.industries-sec {
    padding: 70px 0 100px;
    text-align: center;
}
.industries-top p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
    margin: 0;
}
.industries-top {
    margin: 0 0 35px;
}
.industries-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.industries-grid:before{
    position: absolute;
    content: "";
    width: 90%;
    height: 2px;
    top: 35px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: repeating-linear-gradient(to right, #82e1ca 0 12px, transparent 12px 22px);
    animation: wdt-running-lines 2.5s infinite linear;
}

@keyframes wdt-running-lines {

    from{
        background-position: 0 0;
    }

    to{
        background-position: 120px 0;
    }

}
.industry-card {
    padding: 0 15px;
    position: relative;
    text-align: center;
}
.ind-icon {
    width: 70px;
    margin: 0 auto 20px;
    background-color: #f3f5f4;
}
.ind-icon img {
    width: 100%;
    display: block;
    height: 100%;
}
.industry-card h4 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #0c1c14;
    text-transform: capitalize;
    margin: 0 0 15px;
    min-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.industry-card p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

/*Trusted Section*/

.trusted-sec {
    padding: 90px 0 80px;
    position: relative;
    border-radius: 70px 70px 0 0;
    background-image: url(images/background-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}


.ai-seo-content {
    text-align: center;
    margin: 0 0 50px;
}
.ai-seo-content p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 80%);
    margin: 0 0 20px;
}
.trusted-sec .text-heading {
    margin: 0 0 20px;
}
.trstd-lst {
    display: flex;
    justify-content: space-between;
}
.trstd-pnts {
    width: 48%;
}
.trstd-img {
    width: 46%;
}
.trstd-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
}
.trstd-pnts ul {
    margin: 0 0 35px;
}
.trstd-pnts ul li {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 80%);
    margin: 0 0 15px;
    position: relative;
    padding: 0 0 0 25px;
}
.trstd-pnts ul li:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #16a870;
    animation: pulseDot 1.5s infinite;
    left: 0;
    top: 8px;
}


/*Businesses Section*/

.businesses-sec {
    background-color: #010806;
    padding: 50px 0 170px;
    text-align: center;
}
.busns-top p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 20px;
}
.tab-cnt-blk {
    padding: 30px 0 0;
    text-align: center;
}


/* tabs */

.businesses-sec .tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 35px;
}
.businesses-sec .tab-btn {
    padding: 15px 25px 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: 0.4s ease;
    text-transform: uppercase;
}

.businesses-sec .tab-btn:hover,
.businesses-sec .tab-btn.active{
  background:#16a870;
  border-color:#16a870;
}

/* content */

.businesses-sec .tab-content{
  display:none;
  flex-wrap:wrap;
  gap:18px;
}
.businesses-sec .tab-content.active {display: block;}

.businesses-sec .tab-content.active ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
}
.businesses-sec .tab-content.active ul li {
    margin: 0;
}

.businesses-sec .tab-content a {
    text-decoration: none;
    padding: 15px 24px 13px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.businesses-sec .tab-content a:hover{
  border-color:#16a870;
}
.businesses-sec .tab-content a.highlight{
  background:#2f2600;
  border-color:#b38b00;
  color:#ffbf00;
}
.businesses-sec .tab-content a:before {
    position: absolute;
    content: "";
    background-color: #16a870;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    transition: all ease 0.5s;
}
.businesses-sec .tab-content a:hover:before {width: 100%;}


/*Reviews Section*/

.reviews-sec {
    padding: 100px 0;
    border-radius: 70px;
    background-color: #f3f5f4;
    margin: -70px 0;
    position: relative;
}
.reviews-sec .top-heading.drk {
    text-align: center;
    width: max-content;
    display: block;
    margin: 0 auto 10px;
}
.reviews-sec .text-heading {
    text-align: center;
    margin: 0 0 35px;
}
.review-box {
    padding: 30px 25px;
    background-color: #0c1c14;
    text-align: center;
}
.review-box .star-rat {
    display: inline-block;
    width: 130px;
    height: 21px;
    background-image: url(images/star-image.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    margin: 0 auto 20px;
}
.review-box p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 25px;
}
.author-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.name-ltrs {
    background-color: #16a870;
    border-radius: 50px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    line-height: 1;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.review-box h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    color: rgba(255, 255, 255, 50%);
    margin: 0;
}

.review-list.owl-carousel .owl-item.center .review-box {background-color: #16a870;border-radius: 20px;overflow: hidden;}
.review-list.owl-carousel .owl-item.center .name-ltrs {background-color: #0c1c14;color: #fff;}
.review-list.owl-carousel .owl-item.center .review-box h3 {color:rgba(12, 28, 20, 65%);}

.review-list.owl-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0 0;
}
.review-list.owl-carousel .owl-item, .review-list.owl-carousel .owl-stage {display: flex;}
.review-list.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 10px;
}
.review-list.owl-carousel .owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    background-color: #16a870;
    border-radius: 10px;
}
.review-list.owl-carousel .owl-dots .owl-dot.active {
    background-color: #0c1c14;
    animation: pulseDot 1.5s infinite;
}

/*FAQs Section*/

.faqs-sec {
    padding:150px 0 100px;
    background-color: #0c1c14;
}
.faqs-top {
    text-align: center;
}
.faqs-top p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 30px;
}

.accordion-wrapper{
  width: 100%;
  max-width:1000px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.accordion-item {
    background: #484948;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
}
.accordion-item.active {background: #16a870;}

.accordion-header h4 {
    width: 100%;
    padding:20px 50px 16px 30px;
    border: none;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    text-align: left;
    color: #f3f5f4;
    margin: 0;
    background-image: url(images/faqs-dwn-arw.webp);
    background-repeat: no-repeat;
    background-size: 20px 10px;
    background-position: right 20px center;
}

.accordion-item.active .accordion-header h4 {
    background-image: url(images/faqs-up-arw.webp);
}

/* content */

.accordion-content{
  display: none;
  overflow:hidden;
  transition:max-height 0.4s ease;
  padding: 10px 50px 0 30px;
}
.accordion-item.active .accordion-content{
  display: block;
}
.accordion-content p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffffe8;
    margin: 0 0 20px;
}


/*Map Section*/

.map-sec {
    padding: 100px 0;
}
.map-sec .top-heading.drk {
    text-align: center;
    margin: 0 auto 10px;
    width: max-content;
    display: flex;
    justify-content: center;
}
.map-sec .text-heading {
    text-align: center;
    margin: 0 0 40px;
}
.map-lst {
    display: flex;
    justify-content: space-between;
}
.map-cnt {
    width: 48%;
}
.map-iframe {
    width: 48%;
    border: 3px solid #17a870;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.map-iframe iframe {
    display: block;
}
.map-cnt p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #0c1c14;
    margin: 0 0 25px;
}
.map-cnt .map-itm p {margin: 0;}
.map-cnt .map-itm p strong {
    display: block;
    text-transform: uppercase;t
}
.map-cnt .map-itm {
    position: relative;
    padding-left: 40px;
    margin: 0 0 30px;
}
.map-itm:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 28px;
    background-image: url(images/location-icon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    left: 0;
    top: 2px;
}
.map-itm.phn:before {
    background-image: url(images/call-icon.webp);
}
.map-itm.mail:before {
    background-image: url(images/mail-icon.webp);
    top: 0px;
}
.map-itm.tym:before {
    background-image: url(images/clock-icon.webp);
    top: 0px;
}

/*City Section*/

.city-sec {
    text-align: center;
    padding:100px 0 100px;
    position: relative;
    border-radius:70px;
    background-image: url(images/background-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.cta-inner p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 30px;
}
.cta-btn-lst {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/*Footer Section*/

.site-info {
    padding: 90px 0 50px;
    position: relative;
}
.footer-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 25px;
    margin: 0 0 40px;
    border-bottom: 1px solid rgba(12, 28, 20, 20%);
}
.ftr-lft {
    width: 32%;
}
.ftr-rit {
    width:60%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.ftr-itm-lst {
    display: flex;
    justify-content: space-between;
    gap: 74px;
}
.footer-logo {
    margin: 0 0 20px;
}
.ftr-cnt p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #0c1c14;
    margin: 0 0 30px;
}
.ftr-cnt-itm {
    position: relative;
    padding: 0 0 0 35px;
}
.ftr-cnt-itm:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 28px;
    background-image: url(images/location-icon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.ftr-cnt-itm.cal:before {
    background-image: url(images/call-icon.webp);
}
.ftr-cnt-itm.email:before {
    background-image: url(images/mail-icon.webp);
    top: 0px;
}
.ftr-cnt .ftr-cnt-itm p {
   line-height: 1.3;
}
.ftr-cnt .ftr-cnt-itm p a {
    display: inline-block;
    line-height: 1;
}
.ftr-itm.city ul {
    column-count: 2;
    column-gap: 40px;
    margin: 0;
}
.ftr-rit ul {
    margin: 0;
}
.ftr-rit ul li {
    margin: 0 0 15px;
}
.ftr-rit ul li a {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1;
    color: #0c1c14;
    position: relative;
    padding: 0 0 0 20px;
}
.ftr-rit ul li a:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a870;
    animation: pulseDot 1.5s infinite;
    left: 0;
    top: 4px;
}
.ftr-rit h4 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 1;
    text-transform: capitalize;
    margin: 0 0 30px;
    color: #019c75;
}
.ftr-rit ul li a:hover {
    color: #16a772;
}
.cpy-inr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyrights p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #0c1c14;
    margin: 0;
}
.copyrights p a {
    color: #16a772;
}
.copyrights p a:hover {
    color: #0c1c14;
}


/*Mega Menu*/

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    display: block;
    background-color: #16a870 !important;
    color: #fff !important;
    font-family: "DM Sans", sans-serif;
    font-weight: 400 !important;
    font-size: 14px;
    line-height: 180%;
    padding: 5px 10px;
    text-decoration: none !important;
    text-transform: none;
    vertical-align: baseline;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
    background-color:#1b342a !important;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    width: auto;
    height: auto;
    text-transform: none;
    background-color: transparent;
    border: 0;
    outline: none;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    position: relative;
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 30px 0px 30px 15px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, 
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
    color: #16a870;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: transparent;
    border-radius: 10px;
    left: -5px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.4s ease;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link:after {
    position: absolute;
    content: "";
    right: 0;
    top: 2px;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #000;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, 
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
    color: #16a870;
}


#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover:before, 
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link:before, 
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link:before {background: #16a870;left: 0;}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    display: inline-block;
    margin: 0 45px 0 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:last-child {margin-right: 0;}

#mega-menu-wrap-primary, #mega-menu-wrap-primary #mega-menu-primary, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary span.mega-indicator, #mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge, #mega-menu-wrap-primary button.mega-close, #mega-menu-wrap-primary button.mega-toggle-standard {
    background-color: transparent;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
    padding: 0 1%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    z-index: 999;
    border-radius: 25px;
    background-color:#16a870;
    border: 0;
    padding:4% 4%;
    position: absolute;
    width: 100%;
    max-width: none;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0;
    width: 100%;
    margin: 0 0 15px;
    text-align: left;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item a {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size:20px;
    line-height: 1;
    color:#fff;
    text-transform: capitalize;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.widget_text, 
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color:rgba(255, 255, 255, 72%);
    margin: 0;
    padding: 0 0 0 8px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    margin: 5px 0;
    padding: 0;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, 
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
    color:#0c1c14;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
    margin: 0 0 20px;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.mega-organic, 
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.mega-maps, 
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.mega-web {
    padding: 0 10px 0 25px;
    position: relative;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.mega-organic:before, 
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.mega-maps:before, 
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.mega-web:before {
   position: absolute;
   content: "";
   width: 25px;
   height: 25px;
   background-repeat: no-repeat;
   background-size: contain;
   background-position: left top;
   top: -2px;
   left: 0;
   display: block !important;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.mega-organic:before {background-image: url(images/menu-search-icon.webp);}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.mega-maps:before {background-image: url(images/menu-map-icon.webp);}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.mega-web:before {background-image: url(images/menu-web-design-icon.webp);}









/*Inner Pages*/

.page_bnr {
    position: relative;
    padding: 220px 0 120px;
    background-color: #0c1c14;
    z-index: 1;
/*    background-image: url(images/bnr-bg-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;*/
}
.page_bnr:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-image: url(images/bnr-lines-img.webp);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: 0 center;
    animation: floatBg 8s ease-in-out infinite alternate;
    filter: brightness(15%) contrast(100%) saturate(100%);
    pointer-events: none;
    z-index: -1;
}
.page_default {
    padding: 100px 0 50px;
}
.page_title {
    text-align: left;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
    margin: 0 0 20px;
}

.breadcrumbs a{
    color:#16a870;
    text-decoration:none;
}

.breadcrumbs a:hover {
    color: #fff;
}

.page_title h1, .page_title h2 {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.pgbnr-cnt {
    width: 50%;
    padding: 20px 0 0;
}

.pgbnr-cnt p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffe6;
    margin: 0 0 25px;
}
.inbnr-btns-lst {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}


.page_default .genpg-rite.full-width {
    width: 100%;
}

.page_content {
    display: flex;
    justify-content: space-between;
}

.genpg-rite {
    width: 72.5%;
}
.genpg-left {
    width: 24.7%;
    max-width: 320px;
}

.page_default .genpg-rite h1,
.page_default .genpg-rite h2,
.page_default .genpg-rite h3,
.page_default .genpg-rite h4,
.page_default .genpg-rite h5,
.page_default .genpg-rite h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color:#0c1c14;
    line-height: 1.1;
    margin: 0 0 20px;
}

.page_default .genpg-rite h1, .page_default .genpg-rite h2 {
    font-size: 40px;
}

.page_default .genpg-rite h3 {
    font-size: 35px;
}

.page_default .genpg-rite h4 {
    font-size: 30px;
}

.page_default .genpg-rite h5 {
    font-size: 25px;
}

.page_default .genpg-rite h6 {
    font-size: 22px;
}

.page_default .genpg-rite p, .page_default .genpg-rite li {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0 0 20px;
}

.page_default .genpg-rite ul li {
    position: relative;
    padding-left: 25px;
    line-height: 1.4 !important;
    margin: 0 0 15px;
}

.page_default .genpg-rite ul li:before, .page_default .genpg-rite li ul li:before {
    position: absolute;
    content: "";
    background: #16a870;
    border-radius: 50px;
    /*animation: pulseDot 1.5s infinite;  */
    width: 12px;
    height: 12px;
    left: 0;
    top: 6px;
}

.page_default .genpg-rite a, .page_default .genpg-rite ul li a {
    color: #16a870;
    font-weight: 500;
    text-decoration: none;
}

.page_default .genpg-rite a:hover, .page_default .genpg-rite ul li a:hover {
    color:#0c1c14;
}


.page_default .genpg-rite li ul {
  padding: 15px 0 0 10px;
  margin: 0;
}

.page_default .genpg-rite li ul li {
  padding-left: 25px;
  list-style: inherit;
}

.page_default .genpg-rite li ul li:before {
  display:block;
}

.page_default .genpg-rite ol,
.page_default .genpg-rite ul {
  margin: 0 0 25px 0px;
  list-style-position: inside;
}

.page_default .genpg-rite ol {
  list-style-type: decimal !important;
  margin-left: 20px;

}

.page_default .genpg-rite ol li {
  list-style: decimal !important;
  padding-left: 0 !important;

}

.page_default .genpg-rite ol li::marker {color: #16a870;font-weight: 600;}

.page_default .genpg-rite ul li > ul li, .page_default .genpg-rite ul  { list-style-type: inherit; }

.page_default .genpg-rite ul li > ul li:before { display: block; }

.page_default .genpg-rite ul li > ol li > ul li { list-style-type: inherit; }

/*.page_default .genpg-rite li::marker {
    display: none;
    font-size: 0;
}
*/

.page_default .genpg-rite .accordion-blk {
    padding: 10px 0 15px;
}

.page_default .genpg-rite .accordion-item {
    overflow: hidden;
    transition: 0.4s ease;
    margin: 0 0 10px;
}
.page_default .genpg-rite .accordion-header h4 {
    width: 100%;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    text-align: left;
    color: #fff;
    margin: 0;
}

.page_default .genpg-rite .accordion-content {
    display: none;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #fff;
}
.page_default .genpg-rite .accordion-item.active .accordion-content {display: block;} 
.page_default .genpg-rite .accordion-content p {color:rgba(255, 255, 255, 70%);}


/*Sidebar*/

.sdbr_widget {
    background-color: #0a3d2b;
    border-radius: 15px;
    margin: 0 0 20px;
    overflow: hidden;
}
.sdbr_widget:last-child {margin: 0;}
.widget_title {
    text-align: center;
    padding: 20px 10px 15px;
    background-color: #16a870;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
}
.sdbr_widget ul {
    padding: 25px 20px;
    margin: 0;
}
.sdbr_widget ul li {
    margin: 0 0 20px;
}
.sdbr_widget ul li:last-child {margin: 0;}
.sdbr_widget ul li a, .sdbr_widget.lctns ul li {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1;
    color: #ffffffe8;
    padding: 0 0 0 20px;
    display: block;
    position: relative;
}
.sdbr_widget ul li a:hover, .sdbr_widget ul li.current-menu-item > a {color: #16a772;}
.sdbr_widget ul li a:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #16a772;
    border-radius: 10px;
    left: 0;
    top: 4px;
    animation: pulseDot 1.5s infinite;
}

.sdbr_widget.lctns {
    background-color: #16a870;
}
.sdbr_widget.lctns .widget_title {
    background-color: #0a3d2b;
}
.sdbr_widget.lctns  ul {
    padding: 25px 0px;
}
.sdbr_widget.lctns ul li {
    text-transform: uppercase;
    padding:0 20px 15px 25px !important;
    border-bottom: 1px solid #ffffff7a;
}
.sdbr_widget.lctns ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

/*Blog Page*/

.blg-cntblk {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.blg-cntblk article {
    width: 31%;
    background-color: #fff;
    margin: 0 1.1% 2.2%;
    position: relative;
    border: 1px solid #b6c5c6;
    padding: 0 0 55px;
    border-radius: 20px;
    overflow: hidden;
}
.post-itm-btm {
    padding: 30px 30px 0;
}
.post-btn {
    position: absolute;
    left: 30px;
    bottom: 30px;
}
.blg-cntblk article .blog-post-img img {
    width: 100%;
    display: block;
    border-radius: 0 0 20px 20px;
}
.blg-cntblk article .post-itm-btm h4 a {
    display: inline-block;
    font-size: 26px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    color: #16a870;
}
.blg-cntblk article .post-itm-btm h4 a:hover, .blg-cntblk article:hover .post-itm-btm h4 a, 
.blg-cntblk article:hover .post-btn a, .blg-cntblk article:hover  .post-meta, 
.blg-cntblk article:hover .post-itm-btm p {color:#fff;}

.blg-cntblk article:hover {background-color: #16a870;}

.post-meta {
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #0c1c14;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.blg-cntblk article .post-itm-btm p {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #0c1c14;
    letter-spacing: 0;
    margin: 0 0 15px;
    font-weight: 500;
}

.blg-cntblk .post-btn a {
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: inline-block;
    color: #16a870;
}
.navigation.pagination {
    width: 100%;
    padding: 25px 0 0;
}
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.nav-links a, .nav-links span {
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    line-height: 1;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #16a870;
    color: #fff !important;
    font-weight: 400 !important;
}
.nav-links a.next.page-numbers, 
.nav-links a.prev.page-numbers {
    background-color: transparent;
    color: #0c1c14 !important;
    margin: 0 10px;
    width: max-content;
}

.nav-links a:hover, .nav-links span.page-numbers.current {
    background-color: #0c1c14;
}

/*Single Blog Page*/

.post_top_cnt .post-meta {
    display: flex;
    justify-content: flex-start;
}

.sngl_pg_nav {
    padding: 40px 0 0;
}
.sngl_pg_nav .nav-links {
    justify-content: space-between;
}
.single_defualt_img img {
    width: 100%;
    display: block;
    border-radius: 0px;
    margin: 0 0 30px;
}

/*Contact Page*/

.cntct-frm-blk {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    padding:45px 50px 30px;
    background-color: #16a870;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
} 
.page_default .genpg-rite .cntct-frm-blk h2, .page_default .genpg-rite .cntct-frm-blk p {
    color: #fff;
}

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

.frm-txt {
    margin: 0 0 25px;
}

.cntct-frm input, .cntct-frm textarea, .cntct-frm select {
    width: 100%;
    position: relative;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height:120%;
    color:#ffffffa6;
    padding: 16px 10px 15px 22px;
    outline: 0;
    margin: 0;
    background-color: transparent;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.cntct-frm .frm-btn input.wpcf7-submit {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    width: auto;
    display: inline-block;
    padding: 16px 47px 14px;
    border: 0;
    outline: 0;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #0c1c14;
    border-radius: 50px;
}

.cntct-frm .frm-btn p {
    margin:25px 0 0;
}

.cntct-frm .frm-btn span.wpcf7-spinner {
    display: none;
}

.cntct-frm .frm-btn {
     display: flex;
     justify-content: center;
     margin: 0 0 20px;
}

.cntct-frm input::placeholder {color:#ffffffa6;}

.cntct-frm textarea::placeholder {color:#ffffffa6;}

.cntct-frm select::placeholder {color:#ffffffa6;}

.cntct-frm select option {color: #000;}

.cntct-frm textarea {
    height: 130px;
    resize: none;
}

.page_default .genpg-rite .cntct-frm p {margin: 0;}

.cntct-frm .frm-text p {
    margin: 0 0 15px;
}

.cntct-frm .wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}

.cntct-frm .frm-btn input.wpcf7-submit:hover {
    background-color: #fff;
    color:#0c1c14;
    transition: 0.5s;
}

.cntct-frm .wpcf7-not-valid-tip {
    position: absolute;
    bottom: 0px;
    right: 20px;
    margin: 0;
    font-size: 12px;
    line-height: 1;
    color: #f00;
    pointer-events: none;
}

.cntct-frm lable {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    margin: 0 0 10px;
    display: inline-block;
}

.cntct-frm select {
    appearance: none;
    background-image: url(images/faqs-dwn-arw.webp);
    background-repeat: no-repeat;
    background-size: 20px 10px;
    background-position: right 15px center;
    padding-right: 40px !important;
}

/*Page Banner Bottom Sec*/

.pgbnr-btm {
    padding: 25px 0;
    background-color: #d8ebe2;
}
.pgbnr_btm_blk {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.pgbnr_btm_lst {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.pgbnr_btm_title {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: #0c1c14;
    margin: 0;
    position: relative;
    padding: 0 0 0 35px;
}
.pgbnr_btm_title:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 28px;
    background-image: url(images/location-icon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.pgbnr_btm_itm {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #16a870;
    margin: 0;
    position: relative;
    padding: 0 0 0 20px;
}
.pgbnr_btm_itm:before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background: #0c1c14;
    border-radius: 10px;
    left: 0;
    top: 3px;
    animation: pulseDot 1.5s infinite;
}

.in-srvc-lst {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    padding: 15px 0 35px;
}
.in-srvc-itm {
    width: 32%;
    padding: 25px 20px;
    background-color: #fff;
    border: 2px solid #d8ebe2;
    border-radius: 20px;
}
.page_default .genpg-rite .in-srvc-itm h6 {
    font-size: 20px;
    color: #16a870;
}
.page_default .genpg-rite .in-srvc-itm p {
    font-size: 16px;
}
.in-cmn-hdng {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    background-color: #0c1c14;
    display: inline-block;
    padding: 15px 21px 10px;
    margin: 0 0 20px;
}
.page_default .genpg-rite .in-cmn-btn .cmn-btn {
    color: #fff;
    margin: 10px 0 40px;
}

/*About Page*/

.in-srvc-lst.abt-pg .in-srvc-itm {
    width: 23.9%;
    text-align: center;
    background-color: #d8ebe2;
}
.page_default .genpg-rite .in-srvc-lst.abt-pg .in-srvc-itm h6 {
    font-size: 32px;
    text-transform: capitalize;
}
.page_default .genpg-rite .in-srvc-lst.abt-pg .in-srvc-itm p {margin: 0;}

/*Free Audit Page*/

.page_default.audit_pg {
    padding: 170px 0 50px;
    background-color: #0c1c14;
    z-index: 1;
}
.page_default.audit_pg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-image: url(images/bnr-lines-img.webp);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: 0 center;
    animation: floatBg 8s ease-in-out infinite alternate;
    filter: brightness(15%) contrast(100%) saturate(100%);
    pointer-events: none;
    z-index: -1;
}
.audit-lft .in-cmn-hdng {
    background-color: #16a86f;
}
.page_default.audit_pg .genpg-rite h1, 
.page_default.audit_pg .genpg-rite p, 
.page_default.audit_pg .genpg-rite ul li {
    color: #fff;
}
.audit-lst {
    display: flex;
    justify-content: space-between;
}
.audit-lft {
    width: 50%;
    padding: 50px 0 0;
}
.audit-rit {
    width: 48%;
    background-color: #16a870;
    padding: 30px 30px;
    border-radius: 20px;
}
.page_default .genpg-rite .audit-rit h4, .page_default .genpg-rite .audit-rit p {
    color: #fff;
    text-align: center;
    margin: 0 0 25px;
}
.page_default .genpg-rite .audit-rit p {
    margin: 0;
    color: #fff;
    text-align: center;
}
.audit-rit .frm-txt {
    margin: 0 0 18px;
}
.audit-rit .cntct-frm lable {font-size: 15px;}
.audit-rit .cntct-frm input, .audit-rit .cntct-frm textarea, .audit-rit .cntct-frm select {
    font-size: 14px;
    padding: 14px 10px 12px 20px;
}

.audit-rit .cntct-frm .frm-btn input.wpcf7-submit {
    font-size: 15px;
    border-radius: 0;
}
.audit-rit .cntct-frm .frm-btn {margin-top: 20px;}