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

/*  
    font-family: "Poppins", sans-serif;
    font-family: "Montserrat", sans-serif;
      font-family: "Great Vibes", cursive;
*/
body {
  background: #fff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
a {
  text-decoration: none;
  background: transparent;
  /*color: #fff;*/
  transition: 0.4s all ease;
}
a:hover {
  color: #000
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  /*color: #fff;*/
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
p {
  margin-top: 0;
  font-size: 15px;
  margin-bottom: 0rem;
  font-family: "Montserrat", sans-serif;
  color: var(--s-black);
}
section {
  padding: 100px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.site-btn {
  padding: 13px 30px 13px 30px;
  font-weight: 500;
  background-color: var(--s-secondary);
  text-transform: uppercase;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid var(--s-secondary);
  color: var(--s-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  transition-duration: 0.3s;
  font-family: "Montserrat", sans-serif;
}
.site-btn:hover {
  border-color: var(--s-primary);
  background-color: var(--s-primary);
  color: var(--s-white);
}
.revSite-btn {
  background-color: var(--s-white);
  border-color: var(--s-white);
  color: var(--s-primary);
}
.site-outline-btn {
  background-color: transparent;
  border-color: var(--s-white);
  color: var(--s-white);
}
.titleBar {
  position: relative !important;
  margin-bottom: 20px;
}
.titleBar h6 {
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--s-primary);
  display: block;
  position: relative;
  font-family: var(--s-font-montserrat);
}
.titleBar h5 {
  font-family: "Great Vibes", cursive;
  font-size: 50px;
  color: var(--s-black);
}
.titleBar h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--s-secondary);
  margin-bottom: 20px;
}
.titleBar p {
  font-size: 17px;
  color: var(--s-black);
  margin-bottom: 0;
}
.iconbg {
  background: var(--s-primary);
  border-radius: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.overlay{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000000a6;
}
:root {
  --s-primary: #5E6E37;
  --s-secondary: #3A4A2F;
  --s-third: #777;
  --s-white: #ffffff;
  --s-black: #000000;
  --s-font-poppins: "Poppins", sans-serif;
  --s-font-montserrat: "Montserrat", sans-serif;
}
.bg-s-primary {
  background-color: var(--s-primary) !important;
}
.text-s-primary {
  color: var(--s-primary) !important;
}
.bg-s-secondary {
  background-color: var(--s-secondary) !important;
}
.text-s-secondary {
  color: var(--s-secondary) !important;
}
.bg-s-third {
  background-color: var(--s-third) !important;
}
.text-s-third {
  color: var(--s-third) !important;
}
.text-s-white {
  color: var(--s-white) !important;
}
.bg-s-white {
  background-color: var(--s-white) !important;
}
.text-s-black {
  color: var(--s-black) !important;
}
.bg-s-black {
  background-color: var(--s-black) !important;
}

/*************************************/
/***     Header CSS Start Here     ***/
/*************************************/
/* Sticky Header CSS Start */
header .header-scrolled {
  transition: all 0.5s linear;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 99999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header-scrolled .nav-link {
  color: var(--s-black) !important;
}
/* Main Header CSS */
header {
  background-color: transparent;
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s linear;
}
/* TOP SECTION CSS */
.top-section {
  padding: 15px 0;
  background-color: var(--s-secondary);
}
.top-location ul li {
  font-weight: 500;
  font-size: 15px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-white);
}
.top-location ul li a {
  color: var(--s-white);
  font-weight: 500;
}
.top-location ul li a lord-icon {
  margin-right: 8px;
}
.header-info ul li {
  padding: 0 3px;
}
.header-info ul li a {
  color: var(--s-primary);
  font-weight: 500;
  transition: 0.3s;
  background-color: var(--s-white);
  border-radius: 100px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.header-info ul li a:hover {
  color: var(--s-white);
  background-color: var(--s-primary);
}
/* Bottom Header Start Here */
.bottom-header {
  background-color: rgba(255, 255, 255, 0.56);
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
}
.bottom-header nav .navbar-brand {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.bottom-header nav .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  color: var(--s-black);
  padding: 3px 2px;
  margin: 0 15px;
  border-radius: 50px;
  position: relative;
  font-family: var(--s-font-poppins);
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: 1px;
  border-radius: 0px;
  border: 0 !important;
  background: currentColor;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
.bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
  transform: scale(1);
}
/* Drop-Down STart HEre */
.dropdown-menu {
  left: 15px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border: 1px solid var(--s-black);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.dropdown-item:hover {
  background-color: var(--s-primary);
  color: var(--s-white);
}
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  /* .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  } */
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu {
    top: -8px;
    left: 100%;
    margin-top: 0px;
    margin-left: 2px;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
.dropdown-toggle::after{
    content: none;
}
.dropdown-item i{
    font-size: 13px;
}

/* Banner section start here */
.banner {
  background-color: #ffffff;
  /* padding: 4em 0em 4em 0em; */
  position: relative;
}
.video-banner {
  position: relative;
  /* padding: 7em 0em 7em 0em; */
  width: 100%;
  height: 700px; /* Full viewport height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  --background-overlay: '';
  background-image: linear-gradient(90deg, #0000008e 0%, #0000008e 110%);
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
}
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%); /* Centers the video */
  z-index: 1;
  object-fit: cover; /* Ensures the video covers the entire banner area */
}
.bannerContent h5{
    font-size: 15px;
    font-weight: 500;
    /* letter-spacing: .5px; */
    text-transform: uppercase;
    color: var(--s-white);
    margin-bottom: 25px;
}
.bannerContent h1{
    font-size: 110px;
    line-height: 150px;
    color: var(--s-white);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.322));
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.678);
    margin-bottom: 25px;
    font-family: "Great Vibes", cursive;

}
.bannerContent p{
    font-size: 17px;
    font-weight: bold;
    color: var(--s-white);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.322));
    text-shadow: 1px 2px 3px rgba(0, 0, 0, .5);
    margin-bottom: 25px;
}
.hero-form{
    z-index: 8;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.8px);
    -webkit-backdrop-filter: blur(4.8px);
    border: 3px solid var(--s-secondary);
}
.hero-form input:hover{
    border-color: var(--s-third);
}
.hero-form textarea:hover{
    border-color: var(--s-primary);
}
.home-list{
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}
.home-list li{
  margin-bottom: 5px;
  font-size: 18px;
}
.home-list li img{
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
}

/* Hero Section Start Here */
.heroSection{
  z-index: 2;
  position: relative;
  display: block;
  overflow: hidden;
}
.hero-box
{
  /* background-color: var(--s-white); */
  /* box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05); */
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 30px 15px 30px 15px;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; */
  transition: all.3s;
  border-right: 1px solid #5e6e3791;
  /* border-radius: 15px; */
}

.hero-box:hover img {
  /* box-shadow: 0 22px 40px -22px rgba(0, 0, 0, 0.3); */
  transform: translateY(-15px);
  /* z-index: 4; */
  transition: all.3s;
}
.hero-box img{
  transition: all.3s;
}
.counter-content h3{
  color: var(--s-primary);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Catogery Section */
.categoryBox{
  background-image: url(https://the-milkweed-man-nursery-llc.searchsolutiontesting.com/wp-content/uploads/2026/08/cms-banner1.webp);
  height: 100%;
  padding: 80px 40px 80px 40px;
}
.categoryBox h5{
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--s-black);
  margin-bottom: 10px;
}
.categoryBox h3{
  color: var(--s-black);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.catogery-card{
  background:#f3f3f3;
  overflow:hidden;
  position:relative;
  transition:.4s;
  cursor:pointer;
}
/* .catogery-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,.15);
} */
.catogery-card-content{
  position:absolute;
  top:40px;
  left:35px;
  z-index:2;
  width: 80%;
}
.catogery-card-content small{
  color: var(--s-secondary);
  font-size:18px;
  font-weight: 500;
  font-style:italic;
  display:block;
  margin-bottom:10px;
}
.catogery-card-content h2{
  font-size: 35px;
  color: var(--s-black);
  font-weight:700;
  line-height:1.2;
  margin-bottom: 20px;
}
.catogery-card-content h3{
  font-size:28px;
  font-weight:700;
  line-height:1.3;
  color: var(--s-black);
  margin-bottom: 20px;
}
.shop-btn{
  color: var(--s-secondary);
  text-decoration: none;
  font-weight: 700;
  position: relative;
}
.shop-btn:hover{
  color: var(--s-primary);
}
.shop-btn::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background: var(--s-secondary);
  transition:.4s;
}
.catogery-card:hover .shop-btn::after{
  width:100%;
}
.catogery-banner-img{
  width:100%;
  transition:.6s;
}
.catogery-card:hover .catogery-banner-img{
  transform:scale(1.08);
}
.left-catogery-card{
  height:590px;
}
.small-card{
  height:285px;
}
.bottom-card{
  height:280px;
}
.catogery-banner-img{
  position:absolute;
  right:0;
  bottom:0;
  max-width:100%;
}
@media(max-width:991px){
  .left-catogery-card,
  .small-card,
  .bottom-card{
      height:350px;
      margin-bottom:20px;
  }
  .catogery-card-content h2{
      font-size:30px;
  }
  .catogery-card-content h3{
      font-size:24px;
  }
}

/* Product List Box */
.product-card{
  width: 100%;
  background-color: #8a9e57;
  overflow: hidden;
  border-radius: 10px;
}
.product-card img{
  height: 350px;
  object-fit: cover;
  width: 100%;
}
.product-card-body{
  text-align: center;
  padding: 20px;
  padding-top: 10px;
}
.product-card-body span{
  color: var(--s-white);
  font-size: 15px;
  display: block;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 5px;
}
.product-card-body h4{
  color: var(--s-white);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.rating-star i{
  font-size: 13px;
}
.product-price span{
  display: inline-block;
  font-size: 18px;
  font-style: normal;
  color: #fff;
}

/* cta-section */
.cta-section{
  background-image: url(https://the-milkweed-man-nursery-llc.searchsolutiontesting.com/wp-content/uploads/2026/08/cta-bg.webp);
  padding: 150px 0;
}

/* Testimonials Sectiom */
.testimonialservicesSection{
  background-image: url(https://the-milkweed-man-nursery-llc.searchsolutiontesting.com/wp-content/uploads/2026/08/testimonial-bg.webp);
}
.testimonialservicesSection::after{
  background-color: #000000cb;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.testimonialsBox{
  position: relative;
  z-index: 1;
}
.td-single-testimonial-item {
  background: transparent;
  padding: 30px;
  transition: 0.8s;
  border-radius: 0px;
  border: 1px solid #eaeaea;
  text-align: left;
  height: 100%;
  /* min-height: 310px; */
}
.td-testimonial-rating ul li {
  margin: 0 1px;
}
.td-testimonial-header .td-testimonial-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--s-white);
}
.td-testimonial-image h3 {
  margin-bottom: 0;
  font-size: 25px;
  color: var(--s-primary);
}
.td-name-designation h6 {
  font-size: 18px;
  margin-bottom: 3px;
  font-weight: 400;
  color: var(--s-white);
  transition: 0.3s;
}
.td-name-designation p {
  color: var(--s-white);
  font-weight: 300;
  font-size: 13px;
}
.td-testimonial-description {
  margin: 0px 0 30px 0;
}
.td-testimonial-description p {
  display: block;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--s-white);
}

/* Latest Items Card */
.latest-ites-card{
  height: 320px;
  align-items: center;
}
.latest-ites-card .catogery-card-content{
  top: 85px;
}

/* Blog Section */
.blog-section{
  background:#f8f9fa;
}
.blog-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.3s;
  height:100%;
}
.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.blog-image{
  position:relative;
  overflow:hidden;
}
.blog-image img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:.4s;
}
.blog-card:hover img{
  transform:scale(1.08);
}
.blog-category{
  position:absolute;
  top:15px;
  left:15px;
  background: var(--s-secondary);
  color:#fff;
  padding:6px 14px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
}
.blog-content{
  padding:22px;
}
.blog-meta{
  display:flex;
  justify-content:space-between;
  color: var(--s-secondary);
  font-size:14px;
  margin-bottom:15px;
}
.blog-content h4{
  font-size:22px;
  font-weight:700;
  margin-bottom:15px;
  color:var(--s-secondary);
  line-height:1.4;
}
.blog-content p{
  color:#666;
  font-size:15px;
  line-height:1.8;
  margin-bottom:20px;
}

/* Footer Section Start Here */
footer {
  background-color: var(--s-primary);
  position: relative;
  padding-top: 25px;
}
/* footer:after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: #222222f5;
          z-index: 0;
        } */
.footer-box h2 {
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 17px;
  color: var(--s-white);
}
.footer-box p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--s-white);
}
.footer-box h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--s-white);
  text-transform: uppercase;
}
.footer-box ul li {
  margin-bottom: 0.5rem;
}

.footer-box ul li a {
  font-size: 15px;
  color: var(--s-white);
}
.footer-box ul li a:hover {
  color: var(--s-white);
  letter-spacing: 1px;
}
.footer1stRow {
  padding: 2rem 0 1.5rem 0;
  position: relative;
  z-index: 1;
  /* border-top: 1px solid #2525251e; */
}
.socialmediaicon ul li a i {
  background-color: var(--s-white);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 8px;
  padding: 0;
  color: var(--s-primary);
  transition: 0.3s;
  border-radius: 100px;
}
.socialmediaicon ul li a i:hover {
  transform: rotate(360deg);
  background-color: var(--s-secondary);
  color: var(--s-white);
}
.SocialIcon h3 {
  font-size: 17px;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}
.copyRight {
  border-top: 1px solid #ffffff5b;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

/* Back To Top CSS Start Here */
/*.button {*/
/*  height: 50px;*/
/*  width: 50px;*/
/*  position: fixed;*/
/*  right: 20px;*/
/*  bottom: 20px;*/
/*  background-color: transparent;*/
/*  cursor: pointer;*/
/*  border: 2px solid var(--s-primary);*/
/*  overflow: hidden;*/
/*  border-radius: 30px;*/
/*  color: var(--s-primary);*/
/*  transition: all 0.5s ease-in-out;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  z-index: 9999;*/
/*}*/
.btn-txt {
  z-index: 1;
}
.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--s-primary);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}
.button:hover {
  box-shadow: 1px 1px 200px var(--s-primary);
  color: #fff;
  border: none;
}
.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}
.phone {
  position: fixed;
  left: 10px;
  bottom: 3%;
  z-index: 9999;
  background: #252525;
  padding: 5px;
  border-radius: 100%;
  border: 3px solid white;
}
.phone a img{
  width: 50px;
  height: 50px;
}
.osc-rotation {
    box-sizing: border-box;
    animation: oscillation-rotation 1s infinite ease-in-out;
    transform-origin: 50% 50%;
}
@keyframes oscillation-rotation {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
}
10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
}
20% {
    transform: rotate(25deg) scale(1) skew(0deg);
}
30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
}
40% {
    transform: rotate(25deg) scale(1) skew(0deg);
}
50% {
    transform: rotate(0) scale(1) skew(0deg);
}
100% {
    transform: rotate(0) scale(1) skew(0deg);
}
}









/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
.innerPagesBanner
{
  background-color: var(--s-black);
  background-image: url(https://the-milkweed-man-nursery-llc.searchsolutiontesting.com/wp-content/uploads/2026/08/inner-banner-image.webp);
  background-position: 0% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerPagesBanner::after
{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000000a4;
}
.innerpage-title
{
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.innerpage-title h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
  position: relative;
  display: block;
  color: var(--s-white);
  margin-bottom: 10px;
}
.innerpage-title p{
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin: 0 5px;
}
.breadcrumb-content ul li a{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin-right: 5px;
}
.about_image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}
/* Mission Section Start here */
.ourMission
{
    background-color: var(--s-primary);
}
.valueBox
{
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    --e-column-margin-right: 10px;
    --e-column-margin-left: 10px;
    padding: 3em 1em 3em 1em;
    background-color: #f5fbfb;
    border-radius: 15px;
}
.valueBox h4
{
    color: var(--s-primary);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 28px;
    margin-top: 25px;
    letter-spacing: 1px;
}
.FAQs-box img{
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
.contactIcon h5
{
  font-size: 17px;
  font-weight: 600;
}
.innerservicescontent
{
  margin: 0;
}
.innerservicescontent
{
  padding: 40px 30px;
}
.innerservicescontent h2
{
  font-size: 17px;
}
.innerservicescontent p
{
  font-size: 17px;
}





/*============================================
     Inner Services Pages CSS STart Here 
=============================================*/
.innerServicesPage h2{
  margin-bottom: 20px;
}
.innerServicesPage p
{
  margin-bottom: 20px;
}
.innerServicesImage img
{
  height: 450px;
  object-fit: cover;
}
.innerServices-overlay
{
  background-color: #00000088;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

