@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Sora:wght@100;200;300;400;500;600;700;800");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
   --blue: #2a6308;
}

* {
   padding: 0;
   margin: 0;
}

::after,
::before {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

body {
   color: #000;
   font-family: "Poppins", sans-serif;
   font-size: 16px;
}

a {
   text-decoration: none;
   cursor: pointer !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "Manrope", sans-serif;
}

.sec_padding {
   padding: 80px 0;
}

.sec_title {
   font-size: 50px;
   font-weight: bold;
}

.sec_title span {
   background: -webkit-linear-gradient(90deg, #b0d43d 20%, #569f17 100%);
   background: linear-gradient(90deg, #b0d43d 20%, #569f17 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   /* border-image: linear-gradient(0.25turn, #2a6308, #569f17, #b0d43d); */
}

.text-green {
   color: #2a6308;
}

/* header  */

.page-header {
   background-color: #fff;
   z-index: 999;
   position: static;
   width: 100%;
   /* border-bottom: 1px solid #e1e1e1; */
   border-bottom: 4px solid transparent;
   border-image: linear-gradient(0.25turn, #2a6308, #569f17, #b0d43d);
   border-image-slice: 1;
}

a.brand {
   display: block;
   width: 185px;
   height: 72px;
   position: relative;
   background: white;
}

a.brand img {
   position: absolute;
   width: 100%;
   height: auto;
   bottom: 0px;
   left: 0px;
   background: white;
   /* padding: 10px 10px; */
   border-radius: 20px;
}



/* a.brand img {
  width: 120px;
} */

#nav-bar .brand img {
   height: 45px;
}

#menu-bar .navbar {
   z-index: 999999;
   position: static;
}

#menu-bar .header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: auto;
   z-index: 100;
   margin: 0 auto;
   z-index: 99999;
}

.wrapper {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   padding: 2px 0px;
   margin: 0 auto;
   /* border-bottom: 6px solid transparent;
  border-image: linear-gradient(0.25turn, #00439acf, #2acef4, #00439acf);
  border-image-slice: 1; */
}

.left-area {
   display: flex;
   justify-content: end;
}

.navbar .menu {
   margin-top: 0;
   margin-bottom: 0;
}

#menu-bar .menu-item {
   display: inline-block;
   margin-left: 40px;
}

#menu-bar .menu-item a {
   text-decoration: none;
}

#menu-bar .menu-link {
   display: flex;
   justify-content: center;
   align-items: center;
   column-gap: 20px;
   font-size: 18px;
   font-weight: 500;
   line-height: inherit;
   cursor: pointer;
   text-transform: capitalize;
   color: #000;
   transition: all 0.3s ease-in-out;
   position: relative;
   padding: 13px 20px;
}

/* #menu-bar .menu-link::before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--blue);
  transition: 0.5s ease;
} */

#menu-bar .menu-link:hover:before {
   width: 100%;
}

#menu-bar .menu-link a {
   text-decoration: none;
   color: #000;
}

#menu-bar .menu-link>i.fas {
   font-size: 16px;
   margin-left: -14px;
   color: inherit;
}

#menu-bar .menu-link:hover {
   outline: none;
   color: #fff;
   background: #2a6308;
}

#menu-bar .menu-link:hover a {
   outline: none;
   color: #fff;
}

.header-btns {
   display: flex;
   gap: 7px;
}

#menu-bar .submenu-link {
   font-size: 16px;
   font-weight: 500;
   line-height: inherit;
   cursor: pointer;
   color: #000;
   padding: 5px 5px;
   display: flex;
   gap: 10px;
   border-bottom: 1px solid #e1e1e1;
   /* justify-content: space-between; */
   align-items: center;
   transition: 0.4s all;
}

#menu-bar .submenu-link i {
   font-size: 14px;
   color: #2a6308;
}

/* #menu-bar .submenu-link:hover i {
  color: #fff;
} */

#menu-bar .submenu-item .submenu-desc {
   font-size: 13px;
}

/* #menu-bar .submenu-item:hover .submenu-link,
#menu-bar .submenu-item:hover .submenu-desc {
  color: #fff;
} */

#menu-bar .submenu {
   position: absolute;
   top: 22%;
   left: 43%;
   width: 50%;
   height: auto;
   padding: 15px 0px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(-1rem);
   background-color: #fff;
   transition: all 0.3s ease-in-out;
   /* border-top: 3px solid transparent;
  border-image: linear-gradient(0.25turn, #2A6308, #569F17, #B0D43D);
  border-image-slice: 1; */
   /* box-shadow: 0 5px 10px -5px #00000030; */
   border-radius: 10px;
}

#menu-bar .submenu-link:hover {
   margin-left: 10px;
}

#menu-bar .submenu-item {
   display: block;
   margin-top: 0;
   padding: 10px 20px;
   color: #000;
   text-decoration: none;
   list-style: none;
}

/* #menu-bar .submenu-item:hover {
        background-color: var(--colorPink);
        color: #fff;
    } */

/* #menu-bar .submenu-item:hover .submenu-link {
        color: #fff;
    } */

.menu-drop::after {
   content: "\21AA";
   position: absolute;
   right: 20px;
   display: none;
}

.close {
   position: absolute;
   top: 16px;
   right: 5%;
   display: none;
   z-index: 99999;
   text-align: center;
   background-color: #ffffff;
   border: 1px solid var(--colorPurple);
   padding: 3px 17px;
   border-radius: 3px;
}

.close i {
   font-size: 14px;
}

.brand-nav img {
   height: 50px;
   margin-left: 15px;
   margin-bottom: 20px;
   margin-top: 0px;
   display: none;
}

#menu-bar .burger {
   position: relative;
   display: none;
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   width: 2rem;
   height: 1.15rem;
   opacity: 0;
   visibility: hidden;
   background: transparent;
}

#menu-bar .burger-line {
   position: absolute;
   display: block;
   right: 0;
   width: 100%;
   height: 2.5px;
   opacity: 1;
   border: none;
   outline: none;
   background: #fff;
}

#menu-bar .burger-line:nth-child(1) {
   top: 0px;
   width: 80%;
}

#menu-bar .burger-line:nth-child(2) {
   top: 0.5rem;
   width: 100%;
}

#menu-bar .burger-line:nth-child(3) {
   top: 1rem;
   width: 70%;
}

#menu-bar .overlay {
   position: fixed;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   z-index: 999;
   opacity: 0;
   visibility: hidden;
   transition: all 0.35s ease-in-out;
   background-color: rgba(0, 0, 0, 0.65);
}

.page-header.is-sticky {
   position: fixed;
   box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
   padding: 0px 0;
   opacity: 1;
   animation: slideDown 0.3s ease-out;
   z-index: 999;
   width: 100%;
   top: 0;
}

.page-header.is-sticky a.brand {
   padding: 5px 0px 0px 0px;
   width: 140px;
}

.page-header.is-sticky a.brand img {
   padding: 0px;
}

.page-header.is-sticky #menu-bar .submenu {
   top: 102%;
}

.page-header .logo-img {
   height: 40px;
   filter: brightness(0) invert(1);
}

.page-header.is-sticky a.brand img {
   filter: brightness(1);
}

@keyframes slideDown {
   from {
      transform: translateY(-100%);
   }

   to {
      transform: translateY(0);
   }
}

.page-header.is-sticky #menu-bar .menu-link {
   color: #1f243c;
}

.page-header.is-sticky #menu-bar .menu-link a {
   text-decoration: none;
   color: #1f243c;
}

/* .page-header.is-sticky #menu-bar .submenu {
        background-color: var(--colorPurple);
        color: #fff;
    } */

/* .page-header.is-sticky #menu-bar .submenu-item:hover {
        background-color: var(--colorPink);
        color: #fff !important;
        transition: .2s all;
    } */

/* .page-header.is-sticky #menu-bar .submenu-item:hover .submenu-link {
        color: #fff !important;
    } */

.page-header.is-sticky #menu-bar .burger-line {
   background: #1f243c;
}

@media only screen and (max-width: 992px) {
   .page-header {
      overflow-x: hidden;
      position: sticky;
      top: 0;
   }

   .wrapper {
      display: flex;
      width: 100%;
      justify-content: inherit;
      /* background-color: #EE4466; */
      padding: 5px 0;
   }

   a.brand img {
      height: auto;
   }

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

   #menu-bar .navbar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 90%;
      height: 100%;
      z-index: 99999;
      opacity: 0;
      /* overflow-y: scroll; */
      visibility: hidden;
      background-color: #f7f7f7;
      transition: all 0.5s ease;
   }

   #menu-bar .navbar.active {
      left: 0rem;
      opacity: 1;
      visibility: visible;
   }

   #menu-bar .navbar.active .submenu .submenu-link {
      padding: 8px 0;
   }

   .left-area {
      width: 100%;
      /* padding: 10px 20px; */
      /* background-color: #212529; */
   }

   .left-area nav {
      margin: auto;
   }

   .header-btns {
      display: none;
   }

   /* .page-header {
            background-color: #EE4466;
        } */

   .page-header .container {
      max-width: 100%;
   }

   #menu-bar .menu {
      width: 100%;
      height: 100%;
      padding: 1rem 0;
   }

   #menu-bar .menu-item {
      display: block;
      margin: 0 auto;
   }

   #menu-bar .menu-link {
      justify-content: space-between;
      padding: 2px 20px 20px 20px;
   }

   .wrapper {
      margin: 0 auto;
      row-gap: 0rem;
   }

   #menu-bar .menu-link:hover {
      outline: none;
      color: var(--colorPink);
   }

   #menu-bar .burger {
      display: block;
      opacity: 1;
      visibility: visible;

   }

   #menu-bar .overlay.active {
      display: block;
      opacity: 1;
      visibility: visible;
   }

   .page-header.is-sticky #menu-bar .menu-link {
      color: #1f243c;
   }

   .page-header.is-sticky #menu-bar .menu-link a {
      text-decoration: none;
      color: #1f243c;
   }

   .page-header.is-sticky #menu-bar .submenu {
      background-color: transparent;
   }

   .page-header.is-sticky #menu-bar .submenu-item:hover {
      width: 86.5% !important;
   }

   #menu-bar .submenu-item:hover {
      width: 86.5% !important;
   }

   #menu-bar .submenu {
      position: relative;
      top: -0.5rem;
      left: 0.5rem;
      width: 96%;
      max-height: 0;
      padding: 0px;
      border: none;
      outline: none;
      border-top: 1px solid #e1e1e1;
      color: #1f243c;
      opacity: 1;
      overflow: hidden;
      -webkit-overflow-scrolling: touch;
      /* visibility: visible; */
      transform: translateY(0px);
      box-shadow: none;
      background: #fff !important;
      border-radius: 0px !important;
   }

   #menu-bar .menu-item.menu-dropdown.active .submenu {
      visibility: visible;
      visibility: visible;
      backface-visibility: hidden;
   }

   #menu-bar .submenu-link {
      color: #1f243c;
      font-weight: bold;
   }

   .close {
      display: block;
      background-color: #fff;
   }

   .close i {
      color: var(--colorPurple) !important;
   }

   .menu-link i {
      display: none;
   }

   #menu-bar .submenu-item {
      padding: 5px 10px;
   }

   .menu-drop::after {
      content: "\f078";
      font-family: "Font Awesome 5 pro";
      font-weight: 600;
      position: absolute;
      right: 20px;
      display: block;
   }

   .brand-nav img {
      display: block;
   }

   #menu-bar .burger-line {
      background-color: #1f243c;
   }
}

@media only screen and (min-width: 993px) {
   #menu-bar .menu-dropdown:hover>.submenu {
      display: block;
      opacity: 1;
      visibility: visible !important;
      transform: translateY(0);
      overflow: hidden;
      -webkit-overflow-scrolling: touch;
   }
}

@media only screen and (min-width: 992px) and (max-width: 1100px) {

   #menu-bar .menu-item {
      margin-left: 15px;
   }

   #menu-bar .menu-link>i.fas {
      font-size: 16px;
      margin-left: 0px;
      color: inherit;
   }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
   .phone {
      display: none;
   }

   .right-area {
      display: flex;
      align-items: center;
      justify-content: space-around;
   }

   #menu-bar .menu-item {
      display: inline-block;
      margin-left: 30px;
   }
}

@media only screen and (min-width: 1280px) and (max-width: 1400px) {
   #menu-bar .menu-item {
      display: inline-block;
      margin-left: 30px;
   }
}

.top_header {
   height: auto;
   background-color: #2a6308;
}

.top_bar_links ul {
   display: flex;
   padding-left: 0;
   justify-content: end;
   align-items: center;
   margin-bottom: 0;
}

.top_bar_links ul li {
   padding: 10px 20px;
   list-style: none;
   border-right: 1px solid #fff;
   font-size: 15px;
}

.top_bar_links ul li a {
   text-decoration: none;
   color: #fff;
}

.top_bar_links ul li svg {
   height: 17px;
   color: #fff;
}

.top_bar_links ul li:last-child {
   border-right: 0;
}

/* header end  */

.animated-button {
   position: relative;
   display: flex;
   align-items: center;
   gap: 4px;
   padding: 12px 45px;
   outline: none;
   border: 0px solid;
   border-color: transparent;
   font-size: 16px;
   border-radius: 100px;
   font-weight: 600;
   color: #1f387e;
   box-shadow: 0 0 0 2px #ffffff;
   cursor: pointer;
   overflow: hidden;
   transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
   position: absolute;
   width: 24px;
   fill: #1f387e;
   z-index: 9;
   transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
   right: 16px;
}

.animated-button .arr-2 {
   left: -25%;
}

.animated-button .circle {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 20px;
   height: 20px;
   background-color: #569f17;
   border-radius: 50%;
   opacity: 0;
   transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
   position: relative;
   z-index: 1;
   transform: translateX(-12px);
   transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
   box-shadow: 0 0 0 12px transparent;
   color: #fff;
   border-radius: 100px;
}

.animated-button:hover .arr-1 {
   right: -25%;
}

.animated-button:hover .arr-2 {
   left: 16px;
}

.animated-button:hover .text {
   transform: translateX(12px);
}

.animated-button:hover svg {
   fill: #1f387e;
}

.animated-button:active {
   scale: 0.95;
   box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
   width: 220px;
   height: 220px;
   opacity: 1;
}

.banner {
   height: 540px;
   background-image: url(../images/home-banner.jpg);
   background-position: right;
   background-repeat: no-repeat;
   background-size: cover;
   padding-top: 8%;
}

.banner_title {
   font-size: 60px;
   color: #fff;
   font-weight: bold;
}

.banner_title span {
   background: -webkit-linear-gradient(90deg, #b0d43d 20%, #569f17 100%);
   background: linear-gradient(90deg, #b0d43d 20%, #569f17 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   /* border-image: linear-gradient(0.25turn, #2a6308, #569f17, #b0d43d); */
}

.banner p {
   color: #fff;
}

.counter-title {
   background: linear-gradient(90deg, #b0d43d 20%, #569f17 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-size: 28px;
}

.counter {
   position: relative;
}

.counter h2 {
   font-size: 100px;
   font-weight: bold;
   margin-bottom: 0;
   color: #000;
}

.counter h3 {
   font-size: 23px;
   border-bottom: 2px solid #569f17;
   padding-bottom: 10px;
}

.counter p {
   position: absolute;
   bottom: 0;
   left: 36%;
   max-width: 70%;
}

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

/* product */
.product_bg {
   position: relative;
}

.product_bg::before {
   content: "";
   position: absolute;
   top: 40%;
   height: 200px;
   width: 100%;
   background-color: #2a6308;
   z-index: -1;
}



.product {
   text-align: center;
}

.arrow-icon {
   height: 50px;
   width: 50px;
   background-color: #fff;
   border-radius: 50px;
   display: flex;
   justify-content: center;
   align-items: center;
   position: absolute;
   bottom: 25px;
   right: 25px;
   opacity: 0;
   transition: all 0.4s ease;
   box-shadow: 2px 2px 7px #0000002b;
}

.product_image {
   height: 370px;
   width: 370px;
   border-radius: 100px;
   z-index: 99;
   margin: auto;
   position: relative;
   transition: all 0.4s ease;
   padding: 4px;
}

.product_image img {
   height: 100%;
   width: 100%;
   object-fit: cover;
   transition: all 0.4s ease;
   border: 3px solid transparent;
   border-radius: 100%;
   padding: 4px;
}

.product:hover img {
   transform: translateY(-20px);
   border-color: #569f17;
}

.product:hover .arrow-icon {
   bottom: 40px;
   right: 40px;
   opacity: 1;
}

.product_content {
   margin-top: 20px;
}

.product_content h3 {
   font-size: 26px;
}

/* cta  */

.counter-wrapper {
   position: relative;
   border-radius: 30px;
}

.counter-wrapper::before {
   position: absolute;
   top: 0;
   /* left: 13%;
      right: 13%; */
   bottom: 0;
   height: 100%;
   content: "";
   background-color: #2a6308;
   border-radius: 30px;
   z-index: 9;
   padding: 30px;
}



.second-row.product_bg {
   position: relative;
}

.second-row.product_bg::before {
   content: "";
   position: absolute;
   top: 18%;
   height: 200px;
   width: 100%;
   background-color: #2a6308;
   z-index: -1;
}

@media (max-width: 1600px) {
   .counter-wrapper::before {
      left: 0%;
      right: 0%;
   }
}

@media (max-width: 1199px) {
   .counter-wrapper::before {
      left: 0;
      right: 0;
   }
}

.counter-wrapper .arrow-shape {
   position: absolute;
   left: 8%;
   bottom: 0;
   z-index: 99;
}

@media (max-width: 1600px) {
   .counter-wrapper .arrow-shape {
      left: 2%;
   }
}

@media (max-width: 1199px) {
   .counter-wrapper .arrow-shape {
      display: none;
   }
}

.counter-wrapper .arrow-shape-2 {
   position: absolute;
   left: 13%;
   bottom: 0;
   z-index: 99;
}

@media (max-width: 1600px) {
   .counter-wrapper .arrow-shape-2 {
      left: 10%;
   }
}

@media (max-width: 1199px) {
   .counter-wrapper .arrow-shape-2 {
      display: none;
   }
}

.counter-wrapper .arrow-shape-3 {
   position: absolute;
   right: 8%;
   top: 0;
   z-index: 99;
}

@media (max-width: 1600px) {
   .counter-wrapper .arrow-shape-3 {
      right: 2%;
   }
}

@media (max-width: 1199px) {
   .counter-wrapper .arrow-shape-3 {
      display: none;
   }
}

.counter-wrapper .arrow-shape-4 {
   position: absolute;
   right: 15%;
   top: 0;
   z-index: 99;
}

@media (max-width: 1199px) {
   .counter-wrapper .arrow-shape-4 {
      display: none;
   }
}

.counter-wrapper .counter-main-items {
   position: relative;
   z-index: 99;
   padding: 40px;
}

.counter-wrapper .counter-main-items h2 {
   color: #fff;
}

.counter-wrapper .counter-main-items p {
   color: #fff;
   /* background-color: #ff4444; */
}

/* .counter-wrapper .counter-main-items h2 span{
      color: #0f79fb;
    } */


@media (max-width: 767px) {
   .counter-wrapper .counter-main-items {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      gap: 45px;
   }
}

.cta_form {
   background-color: #fff;
   padding: 40px 30px;
   border-radius: 10px;
   position: absolute;
   top: -35%;
   border: 1px solid #e1e1e1;
}

.cta_form h3 {
   font-size: 30px;
   color: #000;
   font-weight: 800;
}

.cta_form .input_group input {
   height: 50px;
   width: 100%;
   border: 1px solid #e1e1e1;
   outline: none;
   padding-left: 10px;
   border-radius: 5px;
   margin-bottom: 20px;
}

.cta_form .input_group textarea {
   width: 100%;
   border: 1px solid #e1e1e1;
   outline: none;
   padding-left: 10px;
   border-radius: 5px;
   padding: 20px;
}

.bg-black {
   background-color: #000;
}

footer {
   background-color: #000;
}

.footer_logo {
   padding: 0 20px;
}

.footer_logo img {
   width: 150px;
   margin: 0 auto;
}

.footer_logo p {
   font-size: 15px;
}

.footer_link a {
   color: white;
}

.footer_link h2 {
   font-size: 24px;
   color: #fff;
   margin-bottom: 30px;
}

.footer_link ul {
   padding-left: 0;
}

.footer_link ul li {
   font-size: 15px;
   color: #eaeaea;
   list-style: none;
   margin-bottom: 10px;
   transition: all 0.4s ease;
}

.footer_link ul li a {
   text-decoration: none;
   color: #fff;
   transition: all 0.4s ease;
}

.footer_link ul li:hover a {
   margin-left: 10px;
   color: #2a6308;
}

.footer_copyright {
   padding: 13px 0;
}

.footer_copyright p {
   margin-bottom: 0;
   color: #fff;
   font-size: 15px;
}

.footer_copyright p a {
   text-decoration: none;
   color: #569f17;
}

.footer_copyright ul {
   padding-left: 0;
   text-align: end;
   margin-bottom: 0;
   color: #fff;
}

.footer_copyright ul li {
   display: inline-block;
   list-style: none;
}

.footer_copyright ul li a {
   color: #fff;
   text-decoration: none;
}



/* css for the contact page  */

.small_padding {
   padding: 40px 0px;
}

.breadcrumb {
   height: 350px;
   width: 100%;
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.breadcrumb h2 {
   color: white;
}

.breadcrumb p {
   font-weight: 600;
}

.contact-form .cta_form {
   position: relative;
   top: 0;
}


.single-way {
   background: #BAD5BF;
   /* box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.2); */
   color: black;
   margin: auto;
   width: 320px;
   text-align: center;
   padding: 20px;
   border-radius: 15px;
   height: 100%;
}

.single-way i {
   font-size: 21px;
   padding: 10px;
   background: #387947;
   border-radius: 50%;
   color: white;
}

.single-way.unique {
   background-image: linear-gradient(180deg, #45da48 0%, #a9aa02 100%);
   color: white;
}

.single-way.unique i {
   background-color: white;
   color: black
}

.single-way.unique a {
   color: white;
}

.single-way a {
   color: black;
   display: block;
   margin-top: 5px;
}

.contact-form h6,
.single-way h6 {
   font-size: 20px;
   font-weight: bold;
   margin-top: 7px;
}

.social-media-links {
   display: flex;
   list-style-type: none;
   margin: 0px;
   padding: 0px;
   margin-top: 20px;
}

.social-media-links li {
   margin-left: 5px;
}

.social-media-links li a {
   font-size: 25px;
   margin-left: 20px;
}

.social-media-links li a i {
   padding: 10px 10px;
   background: #387947;
   color: white;
   border-radius: 50%;
   transition: all 0.3s ease-in-out;
   font-size: 20px;
}

.social-media-links li a i:hover {
   padding: 10px 10px;
   color: #387947;
   background: rgb(226, 226, 226);
   border-radius: 50%;
}

.map iframe {
   width: 100%;
   height: 400px;
}




@media only screen and (max-width:992px) {
   .product_bg::before {
      display: none;
   }

   .product_bg .row>.col-lg-4 {
      position: relative;
      padding-left: 0px !important;
      padding-right: 0px !important;
      /* display: none; */
   }

   .cta_form {
      position: static;
   }

   .counter-main-items {
      padding: 30px 25px !important;
   }

   .product_bg .row>.col-lg-4::before {
      content: "";
      position: absolute;
      top: 20%;
      height: 200px;
      width: 100%;
      background-color: #2a6308;
      z-index: -1;
   }

   .sec_title {
      font-size: 43px;
   }

   .banner_title {
      font-size: 50px;
   }
}

@media only screen and (max-width:762px) {
   .sec_padding {
      padding: 50px 0px;
   }

   .banner_title {
      font-size: 42px;
   }

   .banner_title span {
      color: white !important;
      -webkit-text-fill-color: white;
   }

   .sec_title {
      font-size: 32px;
   }

   .counter-main-items {
      padding: 20px 12px !important;
   }
}

@media(max-width:426px) {
   .top_bar_links ul li svg {
      display: none;
   }

   .top_bar_links ul {
      justify-content: space-between !important;
   }

   .top_bar_links ul li {
      padding-left: 0px;
      padding-right: 0px;
      border: none;
      /* width: 50%; */

   }

   .top_bar_links ul {
      justify-content: start;
   }
}

@media(max-width:992px) {
   a.brand img {

      width: 70%;
      display: block;
   }

   .page-header.is-sticky a.brand img {
      bottom: 6px;
   }
}

.breadcrumb {
   position: relative;
}

.breadcrumb p,
.breadcrumb h2 {
   position: relative;
   z-index: 3;
   color: white;
}

.breadcrumb::before {
   content: '';
   z-index: 1;
   width: 100%;
   height: 100%;
   position: absolute;
   left: 0;
   top: 0;
   background: radial-gradient(at center, rgba(6, 136, 6, 0.58) 15%, #0000)
}