@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
@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');
body {
	padding: 0;
	margin: 0;
	color: #4a4a4a;
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%);
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 1.71429;
	font-weight: 400;
}
:root {
--white: #f9f9f9;
--black: #36383F;
--gray: #85888C;
}
a {
	text-decoration: none;
	color: #1a1a1a;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
strong {
	font-weight: 600;
}
.container {
	max-width: 1170px;
	padding: 0px 15px;
	margin: 0 auto;
}
.fluid-container {
	max-width: 100%;
	padding: 0px 0px;
	margin: 0 auto;
}
.header_area {
	background: #f8f9fa;
}
.header_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
    padding: 2px 0;
}
.header_logo img {
width: 100%;
    max-height: 70px;
}
.header_info ul {
	display: flex;
    gap: 40px;
}
.header_info>ul li {
	display: table-cell;
	padding: 15px 10px;
	vertical-align: middle;
}
.header_info>ul li .icon-sm {
	float: left;
	margin-right: 15px;
}
.icon-content {
	overflow: hidden;
}
.header_info>ul li strong {
	display: block;
	font-size: 16px;
	text-transform: inherit;
	color: #1a1a1a;
    margin: 0 0 -5px 0;
}
.site-button-secondry {
background: linear-gradient(90deg, rgba(6,163,99,1) 0%, rgba(6,163,99,1) 100%);
}
.btn-effect {
	letter-spacing: 4px;
	position: relative;
	text-transform: uppercase;
}
.site-button, .site-button-secondry {
	padding: 10px 20px;
	margin: 0px 6px;
	display: inline-block;
	font-size: 14px;
	outline: none;
	cursor: pointer;
	outline: none;
	border-width: 0;
	border-style: solid;
	border-color: transparent;
	line-height: 1.42857;
	text-decoration: none !important;
	    margin-top: 15px;
}
.site-button-secondry {
	color: #fff;
}
.header_info ul li i {
font-size: 30px;
    color: #06a363;
    border: 1px solid #06a363;
    border-radius: 50%;
    padding: 7px 11px;
}
.icon-content span {
	font-size: 14px;
	font-weight: 400;
	color: #4a4a4a;
}
.btn-effect {
	letter-spacing:1px;
	position:relative;
	text-transform:capitalize;
}
.btn-effect:before, .btn-effect:after {
	border-color: transparent;
	transition: all 0.25s;
	border-style: solid;
	border-width: 0;
	content: "";
	height: 24px;
	position: absolute;
	width: 24px;
}
.btn-effect:before {
	border-color: #f5bf23;
	border-left-width: 2px;
	border-top-width: 2px;
	left: -5px;
	top: -5px;
}
.btn-effect:after {
	border-bottom-width: 2px;
	border-color: #f5bf23;
	border-right-width: 2px;
	bottom: -5px;
	right: -5px;
}
.btn-effect:hover:before, .btn-effect:hover:after {
	height: 100%;
	width: 100%;
}
.site-button-secondry.btn-effect:before, .site-button-secondry.btn-effect:after {
	border-color: #06a363;
}
.menu_container {
    background: #fff;
padding: 22px 0;
}
/* Navigation styles */
        .navbar {
            background-color: transparent;
            padding: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
			    margin: 0px 0 0 0;
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .nav-menu {
            list-style: none;
            display: flex;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: #2b343b;
			font-size: 15px;
			font-weight: 500;
            padding: 15px 15px;
            display: block;
        }

        .nav-menu a:hover {
            color: #06a363;
        }

        /* Dropdown styles */
        .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            list-style: none;
            min-width: 230px;
			z-index: 11;
			border-top: 3px solid #06a363;
        }
		.sub_bg {
			background: #fff;
			display: none;
    position: absolute;
    top: 0; /* Keep it aligned at the top of the parent */
    left: 100%; /* Position it to the right of the parent */
    list-style: none;
	    margin: 0 0 0 1px;
    min-width: 230px;
    z-index: 1;
		}

        .submenu li {
            position: relative;
        }

        .submenu a {
            padding: 12px 17px;
            display: block;
            color: #4F4F4F;
			display: flex;
    align-items: center;
    justify-content: space-between;
	    font-size: 15px;
    font-weight: 400;
	    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }

        .submenu a:hover {
            background-color: transparent;
			color: #06a363;
        }

        /* Show submenu when parent is clicked */
        .nav-menu li.active > .submenu {
            display: block;
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #333;
                position: relative;
                top: 0px;
                left: 0;
            }

            .nav-menu.show {
                display: flex;
				        border-top: 1px solid #717171;
            }

            .nav-menu li {
                width: 100%;
            }

            .submenu {
                position: static;
                display: none;
            }

            .nav-menu li.active > .submenu {
                display: block;
            }
        }
.nav-menu>li.active>a {
    color: #2b343b;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

#home .carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.scroll-to-bottom {
  position: fixed;
  width: 20px;
  left: calc(50% - 10px);
  bottom: 30px;
  z-index: 11;
  animation: action 1s infinite alternate;
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.display-4 {
	font-size: 55px;
	font-weight: 500;
	text-transform: capitalize;
	    text-align: right;
	    line-height: 1.2em;
width: 90%;
margin: 150px 0 0 450px;
}
.display-4 span {
	color: #06a363;
}
.baner_btn {
background: linear-gradient(90deg, #39ae71 0%, #39ae71 100%);
	color: #fff;
	padding: 10px 15px;
	margin: 20px 0 0 0;
	    position: relative;
    top: 0px;
    float: right;
	    left: 350px;
}
.hone {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1em;
    border: 2px solid #05587e6b;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 20px;
    background: #f9f9f9;
    color: #292929;
	margin-top: 50px;
}
.aapplication_area {
    display: flex;
    gap: 0px;
    margin: 50px 0 0 0;
}
.half-blocks .half-block-content {
    position: relative;
    z-index: 1;
background: linear-gradient(90deg, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 100%);
	    padding: 30px;
		box-shadow: 0px 0px 10px 0px rgba(43, 51.999999999999986, 58.99999999999999, 0.05);
}
.icon-count-2 span.icon-count-number {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 120px;
    font-weight: 800;
    color: rgba(177, 177, 177, 0.7);
    opacity: 0.3;
    line-height: 120px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.5s linear;
}
.mt-icon-box-lg img {
    height: 60px;
	    width: 60px;
}
.half-blocks .half-block-content .mt-tilte {
    word-spacing: normal;
    text-align: center;
    font-weight: 500;
    font-size: 21px;
    margin: 5px 0 0 0;
	color: #DBD333;
}
.site-button-link {
    display: inline-block;
    font-weight: 600;
    position: relative;
    padding-left: 0;
    color: #06a363;
	display: block;
    text-align: center;
	    margin-top: 20px;
}
.site-button-link i {
    display: inline-block;
    margin: -4px 0px 0px 5px;
    font-size: 16px;
    vertical-align: middle;
    line-height: 24px;
}
.icon-cell {
display: table-cell;
    vertical-align: middle;
}
.mt-icon-box-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 0 0;
}
.half-blocks p {
	text-align: center;
	    font-size: 14px;
    font-weight: 400;
    color: #4a4a4a;
}
.about_container {
    margin: 100px 0 0 0;
}
.about_area {
    display: flex;
	gap: 30px;
}
.about_1 {
    flex-basis: 45%;
    flex-grow: 0;
    flex-shrink: 0;
}

.video-section-full-v2 {
	position:relative;
	z-index:1;
	margin-top: 40px;
	margin-bottom: 70px;
}
.video-section-full-v2:after {
	position:absolute;
	content:'';
	left:0px;
	top:-40px;
	width:40%;
	height:calc(100% + 80px);
	background-color:#05587e;
	z-index:-1;
}
.video-section-full {
	padding: 40px 40px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 30px;
}
.video-section-full-v2 .video-section-full {
	padding: 150px 40px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	bottom:0px;
	margin-top: 0px;
	margin-left:40px;
}
.video-section-full .overlay-main {
	z-index:-1;
}
.video-section-full:after, .video-section-full:before, .video-section-inner:after, .video-section-inner:before {
	content:"";
	position:absolute;
	background-color:#fff;
transition: all .5s ease-in-out;
	overflow:hidden;
}
.video-section-full:after {
	width:30px;
	height:2px;
	left:20px;
	top:20px;
}
.video-section-full:before {
	width:2px;
	height:30px;
	left:20px;
	top:20px;
}
.video-section-full:hover:after {
	width:100%;
}
.video-section-full:hover:before {
	height:100%;
}
.video-section-inner:after {
	width:30px;
	height:2px;
	right:20px;
	bottom:20px;
}
.video-section-inner:before {
	width:2px;
	height:30px;
	right:20px;
	bottom:20px;
}
.video-section-full:hover .video-section-inner:after {
	width:100%;
}
.video-section-full:hover .video-section-inner:before {
	height:100%;
}
.video-section {
	position:relative;
	z-index:1;
	margin-right: 31px;
}
.video-section-content {
	display: table;
	padding: 30px 0px;
	width:100%
}
.video-section-left {
	position:relative;
	display:table-cell;
	vertical-align:middle;
	width:120px;
}
.video-section-right {
	display:table-cell;
	vertical-align:middle;
	text-align:right;
}
.video-section-right a {
	color:#fff;
}
.video-section-right a:hover {
	color:#f5be23;
}
.video-section-left .play-now {
	position: absolute;
	left: 27%;
	top: 50%;
	display: block;
	border-radius: 50%;
	z-index: 10;
	width: 60px;
	height: 60px;
	transform: translateX(-50%) translateY(-50%);
	transform-origin: center center;
}
.video-section-full .overlay-main {
    z-index: -1;
	background: #0000007d;
}
.overlay-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}
.bg-black {
    --bs-bg-opacity: 1;
    background-color: #000;
}
.about_2 h3 {
    font-weight: 500;
    font-size: 38px;
    line-height: 40px;
    color: #06a363;
    margin: 0 0 0 0;
}
.font-weight-100 {
    font-weight: 500;
	color: #DBD333;
}
.gallery_container {
margin: 60px 0 0 0;
}
.gallery_area {
    display: grid;
    grid-template-columns: 770px auto;
    gap: 10px;
    margin: 0 0 40px 0;
}
.gallery_head {
    font-size: 30px;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}
.gallery_head_1 {
    font-size: 30px;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}
.gallery_btn {
    width: auto;
    margin: 0 auto;
    margin-bottom: 60px;
	    text-align: center;
}
.gallery_btn a {
    font-size: 18px;
    text-align: center;
    border: 1px solid #292929;
    padding: 8px 25px;
}
.product_container {
background: linear-gradient(90deg, rgba(248,249,250,1) 35%, rgba(248,249,250,1) 100%);
  background-size: cover; /* Ensures the image covers the whole box */
  background-position: center; /* Centers the image */
    padding: 70px 0;
	margin: 70px 0 0 0
}
.square_shape1, .square_shape2 {
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.square_shape1:after, .square_shape2:before {
    position: absolute;
    content: "";
    border: 40px solid rgba(191, 191, 191, 0.1);
    z-index: -1;
    animation: shake 1.5s ease-in-out 1.5s infinite alternate;
}
.square_shape1:after {
    width: 450px;
    height: 250px;
    left: -300px;
    bottom: -20px;
    transform: rotate(45deg);
}
.mt-separator h2 {
    font-weight: 500;
    font-size: 38px;
	    margin: 0 0 20px 0;
    line-height: 44px;
    color: #06a363;
	    text-align: center;
}
.mt-separator h2 span {
    font-weight: 500;
	color: #DBD333;
}
.mt-separator h3 {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
    color: #2b343b;
    text-align: center;
    margin: 0 0 20px 0;
}
.product_area {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
}
.our-team-2 {
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 10px;
box-shadow: 0 0 10px 0 rgba(43,52,59,.05);
    transition: all 0.5s linear;
}
.our-team-2 .profile-image {
    padding: 0px;
}
.our-team-2 .profile-image img {
    max-width: 100%;
    vertical-align: top;
    position: relative;
    width: 100%;
}
.our-team-2 .figcaption {
    padding: 25px 20px 20px 20px;
    background-color: #fff;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.our-team-2 .figcaption h4 {
    text-transform: capitalize;
	    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    color: #2b343b;
}
.our-team-2 .figcaption h4 a {
    color: #2b343b;
}
.our-team-2 .figcaption h5 {
    border: 1px solid #06a363;
    padding: 5px 10px;
    font-size: 13px;
    background: linear-gradient(90deg, rgba(6,163,99,1) 35%, rgba(6,163,99,1) 100%);
    color: #fff;
	font-weight: 400;
}
.our-team-2 .figcaption h5 a {
    color: #fff;
}
.figcaption h4 {
	margin: 0;
}
.figcaption h5 {
	margin: 0;
}
.counter_container {
background: #fff;
  background-size: cover; /* Ensures the image covers the whole box */
  background-position: center; /* Centers the image */
    padding: 40px 0;
	    margin: 0px 0 0 0;
}
.counter_area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
	    gap: 15px;
}
.counter_area > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    padding: 25px 0 30px 0;
}
.cnt_icon i {
font-size: 45px;
    color: #06a363;
}
.counter_area h4 {
    font-weight: 600;
    text-align: center;
    font-size: 40px;
	    line-height: normal;
    color: #2b343b;
	margin: 0;
}
.counter_area p {
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 15px;
	    font-weight: 300;
}
.enquiry_container {
	    background-color: #fff;
		    padding: 50px 0;
}
.enquiry_area {
    display: grid;
    grid-template-columns: 540px auto;
gap: 40px;
padding: 15px 15px;
    border: 3px solid #6c6767;
}
.contact-home1-left-v2 {
padding: 20px 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 2em;
}
.contact-home1-left h3 {
    font-weight: 500;
	    text-transform: uppercase;
    font-size: 34px;
    line-height: 40px;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin: 0 0 35px 0;
}

.input-animate {
  position: relative;
  margin-bottom: 35px;
}

.input-animate label {
      position: absolute;
      top: 0;
      left: 0;
      transition: 0.2s ease all;
      pointer-events: none;
          font-size: 12px;
    color: #000;
    font-weight: 500;
    }

#bigForm input, textarea {
      width: 100%;
      padding: 6px 0;
      border: none;
      border-bottom: 2px solid #00000021;
      outline: none;
      font-size: 12px;
    color: #000;
	background: transparent;
    font-weight: 500;
    line-height: 8px;
    }

.input-animate input:focus, textarea:focus {
      border-bottom-color: #05587e;
    }

.input-animate input:focus + label, 
    input:not(:placeholder-shown) + label {
      top: -20px;
      font-size: 12px;
      color: #000;
    }
	.input-animate textarea:focus + label, 
    textarea:not(:placeholder-shown) + label {
      top: -20px;
      font-size: 12px;
      color: #000;
    }

.input-animate input:not(:placeholder-shown) {
      border-bottom-color: #007BFF;
    }
.small_captcha_area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 0 0px 0;
}
.input_small {
    font-size: 12px;
    color: #000;
    padding: 1px 10px;
    height: 50px;
    font-weight: 500;
    height: 44px;
    top: 10px;
    border: none;
    background: transparent;
    border: 2px solid #00000021;
}
.site-button {
    background: linear-gradient(90deg, rgba(245, 191, 35, 1) 0%, rgba(245, 191, 35, 1) 100%);
}
.get-in-touch-form-section-img img {
    max-width: 100%;
}
.input-last-child  {
    margin-bottom: 20px;
}
.get-in-touch-form-section {
position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
}
.get-in-touch-info {
    position: absolute;
    bottom: 0px;
    max-width: 330px;
    left: 0px;
    box-shadow: -10px -10px #f5bf23;
}
.mt-icon-box-wraper {
background: #fff;
    padding: 0px;
    width: 390px;
    position: relative;
}
.get-in-touch-info h4 {
    font-weight: 500;
    font-size: 19px;
    line-height: 26px;
    color: #1a1a1a;
	margin: 0;
}
.pro_slide {
    display: flex;
    padding: 0px;
    gap: 15px;
    margin: 50px 0 0 0;
    background: #fff;
}
.pro_col {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 1px #e3e8ef;
    border-radius: 10px;
    padding: 10px 7px;
}
.pro_img {
text-align: center;
}
.pro_head {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin: 10px 0 0 0;
}
.strip_container {
background-image: url('../images/banner-1.webp');
  background-size: cover; /* Ensures the image covers the whole box */
  background-position: center; /* Centers the image */
    padding: 110px 0;
	    margin: 20px 0 0 0;
		position: relative;
}
.overlay-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
	
    background-color: #000;
}
.strip_container>.container {
    position: relative;
    z-index: 1;
display: grid;
    grid-template-columns: 600px 600px;
justify-content: center;
    align-items: center;
}
.strip_container>.container img {
width: 170px;
}
.strip_box_area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.strip_box {
    border-radius: 30px 30px 30px 30px;
    border: 2px solid #fff;
	    width: 250px;
    padding: 15px;
	    text-align: center;
	color: #fff;
}
.strip_box i {
font-size: 50px;
}
.strip_box p {
font-size: 14px;
    margin: 20px 0 0 0;
}
.strip_box h4 {
    margin: 20px 0 0 0;
font-size: 18px;
    font-weight: 500;
}
.call-us-section {
text-align: center;
}
.call-us-section h4 {
font-size: 20px;
color: #fff;
margin:0;
font-weight: 500;
    margin: 0px 0 15px 0;
}
.call-us-section h2 {
font-weight: 500;
    font-size: 50px;
    line-height: 44px;
    margin: 0px 0 40px 0;
color: #fff;
}
.call-us-section h2 span {
color: #DBD333;
}
.main-footer {
background: linear-gradient(90deg, rgba(43,52,59,1) 0%, rgba(43,52,59,1) 100%);
}
.footer_area {
    display: grid;
    align-items: flex-start;
    justify-content: space-between;
    grid-template-columns: 290px 780px;
    gap: 20px;
	    padding: 70px 0 0 0;
}
.logo_txt {
    font-size: 14px;
    margin: 20px 0 0 0;
	    color: #fff;
}
.foot_social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin: 25px 0 40px 0;
    padding: 0;
}
.footer_links {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}
.foot_social li i {
       background: transparent;
    color: rgba(255,255,255,.41);
}
.footer_links h5 {
font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin-top: -3px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}
.ft_ul {
    margin: 0 0 0 0;
    padding: 0;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ft_ul li {
    border-bottom: 1px dashed rgb(149 142 142);
    padding: 0 0 5px 0;
}
.ft_ul li a {
	color: #fff;
}
.ft_ul li a:hover {
	color: #06a363;
}
.ft_ul li:last-child {
    border-bottom: none;
}
.foot_social a {
    border: 1px solid rgba(255,255,255,.1);
    padding: 5px 12px;
}

.logo_head {
width: 200px;
}
.widget_address li {
    margin: 0 0 15px 0;
	    color: #fff;
}
.widget_address_outer {
flex-basis: 28%;
    flex-shrink: 0;
    flex-grow: 0;
}
.read-less-location {
    margin: 60px 0 30px 0;
}
.read-less-location h4 {
    margin: 0 0 5px 0;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}
.footer_text {
    font-size: 12px;
    color: #f9f9f9;
    line-height: 31px;
    float: left;
    text-decoration: none;
    margin: 0 0px 0 0px;
    padding: 0 2px 0 2px;
}
.read-less-location a.loc-read {
    font-size: 14px;
    color: #06a363;
    line-height: 32px;
    padding: 0 0 0 6px;
    margin: 0 0 0 0px;
    font-weight: 500;
    text-decoration: none;
}
.footer-bottom {
background: linear-gradient(90deg, rgba(37,45,50,1) 0%, rgba(37,45,50,1) 100%);
    padding: 20px 0;
}
.copyright {
    color: #fff;
    font-size: 13px;
	text-align: center;
	font-weight: 400
}
.copyright a {
    color: #06a363;
}
.fixed-tel {
    position: fixed;
    bottom: 100px;
    right: 5px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    z-index: 9999;
    text-align: center;
}
.fixed-tel:before {
    content: "";
    width: 45px;
    height: 45px;
    background-color: #00a505;
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
    z-index: 1;
    top: 0;
    left: 0;
}
.fixed-tel i {
    vertical-align: middle;
    z-index: 2;
    position: relative;
    color: #fff;
    font-size: 1.5rem;
}
.fixed-whatsapp {
    position: fixed;
    bottom: 155px;
    right: 5px;
    width: 45px;
    height: 45px;
    line-height: 44px;
    z-index: 9999;
    text-align: center;
}
.fixed-whatsapp:before {
    content: "";
    width: 45px;
    height: 45px;
    background-color: #00a505;
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
    z-index: 1;
    top: 0;
    left: 0;
}
.fixed-whatsapp i {
    vertical-align: middle;
    z-index: 2;
    position: relative;
    color: #fff;
    font-size: 2rem;
}
.cl {
	clear: both;
}
.ftr_container {
    background: #eeeeee;
	padding: 50px 0 0 0;
}
.ftr_area {
background-image: url('../images/bg-site.webp');
    background-size: cover;
    background-position: center;
    padding: 25px 30px;
    margin: 0px 0 0 0;
    position: relative;
    z-index: 1;
    top: 0;
    background-color: #06a363;
    display: flex
;
    justify-content: space-between;
}
.call-to-action-left h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 5px 0;
}
.call-to-action-left span {
	color: #fff;
}
.widget_newsletter .newsletter-bx .form-control {
    background-color: #fff;
    border: 0px;
    color: #000;
    width: 300px;
	    padding: 10px;
}
.newsletter-bx .input-group {
    display: flex;
    flex-direction: row;
}
.newsletter-bx .input-group button {
    margin: 0;
}
.innerbanner_area {
  position: relative;
  width: 100%;
  height: 310px; /* Adjust as needed */
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container without distortion */
}

.overlay_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Black overlay with 50% opacity */
  z-index: 1; /* Ensures overlay is above the image */
}

.bread_crumbs {
    position: absolute;
    top: 75%;
    left: 5%;
    z-index: 2;
    color: #fff;
    font-size: 13px;
}

.bread_crumbs a {
color: #06a363;
    text-decoration: none;
    margin-right: 5px;
    font-weight: 500;
}

.bread_crumbs span {
  color: #ccc; /* For the last breadcrumb */
}

.honeheading {
position: absolute;
    top: 20%;
    left: 5%;
    /* transform: translate(-50%, -50%); */
    color: white;
    font-size: 40px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-align: left;
    z-index: 2;
    margin: 0;
    font-weight: 400;
    width: 50%;
}
.honeheading span {
    color: #06a363;
}
.innerproduct_container {
	margin: 70px 0 0 0;
}
.innerproduct_area {
    display: grid;
    grid-template-columns: 380px auto;
    gap: 60px;
}
.service-about-left img {
    border: 1px solid #05587e47;
    width: 100%;
	padding: 0 0px;
}
.service-about-right h2 {
    font-weight: 500;
    font-size: 38px;
    line-height: 44px;
    color: #1a1a1a;
	margin: 0;
}
.service-about-right p {
    color: #000;
}
.call-for-quote-outer {
    margin: 40px 0 0 0;
}
.call-quote {
    background-color: #05587e;
}
.call-for-quote-outer {
    display: table;
    width: 100%;
    background-color: #f5bf23;
}
.call-quote, .call-estimate {
    display: table-cell;
    vertical-align: middle;
    padding: 20px;
    text-align: center;
}
.call-for-quote-outer {
    color: #fff;
}
.call-for-quote-outer h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
	    color: #fff;
	margin: 0;
}
.enq_quick {
    margin: 50px 0 0 0;
}
.error { color: red; font-size: 0.9em; }
        .success { color: green !important; font-weight: bold; margin-top: 10px;text-align: center;
    background: transparent;}
        .form-section { border: 1px solid #ccc; padding: 20px; margin-bottom: 30px; width: 300px; }
        h2 { margin-bottom: 10px; }
        
        /* CAPTCHA styling */
        .captcha-text {
            background: black;       /* Set background color to black */
            color: white;            /* Ensure text is visible */
            padding: 8px 15px;       
            display: inline-block;   
            font-weight: bold;       
            filter: blur(0.2px);       /* Apply blur effect */
            user-select: none;       /* Disable text selection */
            pointer-events: none;    /* Prevent copying or interaction */
            border-radius: 5px; 
			    letter-spacing: 4px     
        }
		
		
		
		.quick_form_area {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0px 0 0px 0;
}
.captcha_fld {
    display: block;
	gap: 5px;
}
.quick_form_area input {
    max-width: 180px;
    margin: 0 !important;
    background: #f5f6f6;
    color: #000 !important;
    height: 50px !important;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    padding: 0 0px 0 15px;
}
.quick_form_area textarea {
    max-width: 180px;
    margin: 0 !important;
    background: #f5f6f6;
    color: #000 !important;
    height: 50px !important;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    padding: 20px 0px 0 15px;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}
.quick_btn {
    color: #fff;
    background: linear-gradient(120deg, #3f5edf 0%, #3f5edf 100%) !important;
    border-color: #2e6da4;
    width: 100%;
    box-shadow: none;
    margin: 0 5px 0 5px;
    display: inline-block;
    padding: 10px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
	max-width: 120px;
    height: 50px;
}
.capbox label {
	text-transform: inherit !important;
	font-size: 18px !important;
}
#bigResponse {
top: -95px;
    position: relative;
}
.related_container {
    margin: 70px 0 0 0;
}
.related_area h2 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 38px;
    line-height: 44px;
    color: #1a1a1a;
}
.font-weight-300 {
	font-weight: 300;
}
.related_area h2 span {
	color: #05587e;
}
.relatedimg_area {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.bg_blue {
background: linear-gradient(90deg, rgba(5,88,126,1) 0%, rgba(5,88,126,1) 100%);
}
.relatd_pro {
    text-align: center;
    color: #fff;
    flex-basis: 273px;
    flex-shrink: 0;
    flex-grow: 0;
}
.relatd_pro h4 {
	margin: 0;
	    font-size: 15px;
}
.relatd_pro .bg_blue {
    padding: 20px 20px;
}
.readmore-line .site-button-link {
    color: #f5bf23;
}
.para_container {
    margin: 70px 0 0 0;
}
.innerpara_area {
background-image: url('../images/bg-6.webp');
    background-color: #05587e; /* Example: #f0f0f0 */
    background-size: auto; /* Optional: to make the image cover the entire container */
    background-repeat: repeat; /* Optional: to prevent the image from repeating */
    padding: 40px 40px;
}
.innerpara_area p {
	color: #fff;
	margin: 0;
}
.other_container {
display: grid;
    gap: 16px;
    margin: 60px 0 60px 0;
    grid-template-columns: 280px 280px 280px 280px;
    align-items: center;
    justify-content: center;
}
.other_img img {
    border-radius: 15px;
}
.other_head {
    font-size: 20px;
    color: #292929;
    padding: 10px 0 0 0;
    text-align: center;
}
.contactpage_container {
	margin: 70px 0 0 0;
}
.contactpage_area {
    display: grid;
    grid-template-columns: auto 380px;
	    gap: 50px;
}
.contactpage {
background: #2a2a2a;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contactpage_wraper {
    display: flex;
    color: #fff;
	gap: 20px;
    align-items: baseline;
}
.contactpage_wraper i {
	    font-size: 18px;
}
.contactpage_wraper h5 {
	margin: 0 0 10px 0;
    font-size: 15px;
}
.contactpage_wraper p {
    margin: 0;
    font-size: 14px;
}
.menu_area {
max-width: max-content;
}
.menu_container .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.preheader_container {
	background: #2b343b;
}
.preheader_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #e7e7e7;
    padding: 0 105px 0 0;
}
.details_icon ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}
.details_col {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social_icon ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}
.details_user {
	color: #fff;
    font-size: 15px;
    background: linear-gradient(90deg, rgba(6,163,99,1) 0%, rgba(6,163,99,1) 100%);
    padding: 12px 25px 12px 110px;
}
.social_icon ul li a {
	color: #fff;
font-size: 10px;
}
.details_icon li {
	color: #fff;
}
.details_icon {
    border-right: 1px solid rgba(255, 255, 255, .12);
    padding: 0 15px 0 0;
}
.nav-menu a:last-child {
	padding-right: 0;
}
.app_logo img {
height: 36px;
}
.header_info li img {
height: 50px;
}
.enq_icon_area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 30px 0 0 0;
border-top: 1px solid #EBEBEB;
}
.enq_img_col {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
border-right: 1px solid #EBEBEB;
    padding: 20px 15px;
}
.enq_img_col:last-child {
border-right: none;
}
.enq_oth_img img {
    height: 45px;
	aspect-ratio: 2 / 1;
    object-fit: cover;
}
.enq_oth_txt {
    font-size: 16px;
    font-weight: 600;
    color: #2b343b;
    line-height: 1.5em;
}
.enq_oth_txt a {
    color: #2b343b;
}
.enq_oth_img {
    width: 70px;
}
.video-part-2 {
    padding: 0 75px 0 0;
}
.slider-container {
  width: 100%;
  max-width: 560px;
  margin: auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 1s ease;
}

.slide {
  min-width: 100%;
  height: 620px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Add hover effect */
.slider-container:hover .slider {
  animation-play-state: paused; /* Pause the auto scroll when hovering */
}
.why_area {
display: grid;
    gap: 70px;
    justify-content: space-between;
    grid-template-columns: auto auto;
	margin: 70px 0 0 0;
}
.why_info {
    max-width: 540px;
}
.why_info h2 {
font-weight: 500;
    font-size: 38px;
    margin: 0 0 20px 0;
    line-height: 44px;
    color: #06a363;
    text-align: left;
}
.why_info h2 span {
    font-weight: 500;
    color: #DBD333;
}
.why_info ul li {
    margin-left: 26px;
    text-indent: -26px;
    margin-bottom: 15px;
}
.why_info ul li svg {
width: 16px;
    height: 16px;
    vertical-align: middle;
    fill: #DBD333;
    padding: 0 5px 0 0;
}
.btn_why {
background: linear-gradient(90deg, rgba(219, 211, 51, 1) 35%, rgba(219, 211, 51, 1) 100%);
    padding: 12px 25px;
    color: #fff;
    margin: 25px 0 0 0;
    display: block;
    width: fit-content;
    font-weight: 500;
    font-size: 14px;
}
.diet_info h2 {
font-weight: 500;
    font-size: 38px;
    margin: 0 0 20px 0;
    line-height: 44px;
    color: #06a363;
    text-align: left;
}
.diet_info h2 span {
    font-weight: 500;
    color: #DBD333;
}
.diet_info ul li i {
	color: #DBD333
}
.diet_area {
    display: grid;
    grid-template-columns: 540px auto;
    gap: 60px;
    margin: 70px 0 0 0;
    align-items: center;
}
.testi_container {
    margin: 40px 0 0 0;
}
.testimonial-container {
background: linear-gradient(90deg, rgba(6,163,99,1) 0%, rgba(6,163,99,1) 100%);
}
.testi_container h2 {
font-weight: 500;
    font-size: 38px;
    margin: 0 0 20px 0;
    line-height: 44px;
    color: #06a363;
    text-align: center;
}
.testi_container h2 span {
    font-weight: 500;
    color: #DBD333;
}
.testimonial-container h2 {
font-weight: 500;
    font-size: 38px;
    margin: 0 0 50px 0;
    line-height: 44px;
    color: #fff;
    text-align: left;
}
.testimonial-container h2 span {
    font-weight: 500;
    color: #DBD333;
}
.testimonial-container {
width: 100%;
    overflow: hidden;
    border: none;
    border-radius: 0;
    margin: 0 auto;
    margin-top: 0;
	    padding: 130px 30px 0 30px;
}
.testimonial-slider {
	display: flex;
	transition: transform 1s ease-in-out;
}
.testimonial-item {
	min-width: 100%;
	padding: 0px;
	text-align: center;
	font-size: 1.2em;
	color: #555;
background: linear-gradient(90deg, rgba(6,150,91,1) 35%, rgba(6,150,91,1) 100%);
}
.testimonial-item p:first-child {
	font-style: italic;
	font-size: 17px;
	padding: 0 30px;
	color: #fff;
}
.testimonial-item p:last-child {
	font-weight: bold;
	color: #fff;
}
.testi_area {
    display: flex;
    margin: 40px 0 0 0;
}
.slider-container img {
    height: 600px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: fill;
}
.info_btn {
display: flex;
    flex-direction: column;
	    gap: 15px;
		    align-items: center;
}
.info_btn a {
background: linear-gradient(90deg, rgba(6,163,99,1) 35%, rgba(6,163,99,1) 100%);
    padding: 13px 25px;
    border-radius: 2em;
    color: #fff;
    font-weight: 600;
	    width: fit-content;
}
.get-in-touch-form-section-img {
    max-width: 270px;
}
.elementor-shape {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: -4px;
}

.elementor-shape svg {
fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
    width: calc(120% + 1.3px);
    height: 70px;
}
.elementor-shape1 {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    bottom: 0px;
}

.elementor-shape1 svg {
fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
    width: calc(120% + 1.3px);
    height: 70px;
	    rotate: 180deg;
}
.captcha_fld input {
    width: 90px;
}
.slider-container a {
    background: linear-gradient(90deg, rgb(6 163 99) 0%, rgb(6 163 99) 100%);
    margin: 0 auto;
    display: block;
    width: fit-content;
    padding: 10px 20px;
    margin-top: 20px;
    color: #fff;
}
.innerbanner_area img {
    width: 100%;
    height: 310px;
    background-size: cover;
    object-fit: cover;
}
.aapplication_container h2 {
    font-weight: 500;
    font-size: 38px;
    margin: 60px 0 0px 0;
    line-height: 44px;
    color: #06a363;
    text-align: center;
}
.aapplication_container h2 span {
font-weight: 500;
    color: #DBD333;
}
.inner_list li {
    margin-left: 25px !important;
    text-indent: -10px !important;
	
}
.inner_list li i {
	color: #DBD333;	
}
.faq-container {
      max-width: 1000px;
      margin: 0 auto;
      border-radius: 8px;
      padding: 20px;
	  margin-top: 40px;
    }
	.faq-container h2 {
	text-align: center;
    font-size: 40px;
    margin: 0 0 20px 0;
    padding: 0;
	    color: #2b343b;
}

    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 0px 0px;
	      background: #fff;
    }

    .faq-question {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-size: 1.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 20px 25px;
      outline: none;
	  color: #fff;
	      background: #06A363;
    }

    .faq-question .icon {
      font-weight: bold;
      font-size: 1.4rem;
      transition: transform 0.2s;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      font-size: 0.95rem;
      color: #555;
      padding-left: 10px;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      margin-top: 8px;
	      padding-bottom: 10px;
    }

    .faq-item.active .faq-question .icon {
      transform: rotate(180deg);
    }

.innerstrip_container {
    margin: 60px 0 0 0;
}
.innerstrip_area {
    background-color: #01A25F;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    padding: 20px 50px 20px 50px;
}
.innerstrip_area h3 {
    font-size: 32px;
    text-align: center;
    color: #fff;
	margin: 0;
}
.innerstrip_area p {
    color: #fff;
}
.meal-plan {
display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 30px 0 0 0;
}
.ggl_rvw_area {
background: #01a25f;
    display: grid;
    grid-template-columns: auto auto;
    padding: 50px 50px 50px 90px;
    align-items: center;
    justify-content: center;
    gap: 140px;
	margin: 50px 0 0 0;
}
.box_1 {
display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ggl_rvw_area .box_1 img {
width: 80px;
}
.ggl_rvw_area .box_1 p {
color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}
.ggl_rvw_area .box_1 p a {
color: #fff;
}
.rating_txt {
font-size: 45px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0 0 0;
}
.rating {
    color: #ebf90e;
	    margin: 0 0 20px 0;
}
.box_2 {
background: #fff;
    padding: 20px 50px;
}
.vid_rvw_container h3 {
    font-weight: 500;
    font-size: 38px;
    margin: 40px 0 20px 0;
    line-height: 44px;
    color: #06a363;
    text-align: center;
}
.vid_rvw_area {
display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.testi_head {
    font-weight: 500;
    font-size: 38px;
    margin: 40px 0 20px 0;
    line-height: 44px;
    color: #06a363;
    text-align: center;
}
.testi_area_full {
    display: grid;
    margin: 40px 0 0 0;
    gap: 20px;
    grid-template-columns: auto auto;
}
.testi_col {
background: #DBD33338;
    border-radius: 20px;
    padding: 30px 30px;
	display: flex;
	    gap: 20px;
}
.testi_col img {
    width: 200px;
    height: 200px;
}
.onehead {
    margin: 0;
    font-size: 18px;
}
.enq_quick #smallResponse {
text-align: center;
}
.health_container {
	background: #dbece3;
}
.health-container {
	background:#dbece3;
	height:100%;
	padding:50px 0;
	margin:0 auto;
	width:60%;
	display:block
}
.health-container label {
	font-size: 16px !important;
}
.inpt-fld {
-webkit-transition:background-color .2s cubic-bezier(0, 0, .2, 1);
transition:background-color .2s cubic-bezier(0, 0, .2, 1);
	background-color:#fff;
	border:1px solid #dadce0;
	border-radius:8px;
	margin-bottom:15px;
	padding:24px;
	page-break-inside:avoid;
	word-wrap:break-word
}
.health-head {
	border-top:10px solid #a5d0b9
}
.health-head h2 {
	font-weight:600;
	font-size:30px
}
.inpt-fld p {
	line-height:24px;
	color:#202124;
	font-weight:600
}
.health-head p {
	font-weight:400;
	margin:0
}
.health-container .inpt-fld input {
	border:none;
	border-bottom:1px solid #d9d9d9;
	padding:10px 0 10px 10px;
	width:100%;
	font-size:15px
}
.site-contactform [type=text]:focus-visible {
-webkit-box-shadow:none;
box-shadow:none;
border:1px solid #90c438
}
.enq_quick_area, .hgt-drp {
	display:flex;
	gap:10px
}
select.form-control:not([size]):not([multiple]) {
height:calc(2.25rem + 2px);
width:100%
}
.chk-box {
	display:grid;
	grid-template-columns:20px auto;
	gap:15px;
	margin:0 0 10px
}
.health-container button, .health-container button:hover {
	padding:7px 22px;
	background:#00885a;
	border-radius:3px;
	border:none;
	box-shadow:none;
	color:#fff;
	padding:15px 35px
}
.blog_section {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
	  margin-top: 50px;
    }

    .blog_card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog_card:hover {
      transform: translateY(-5px);
    }

    .blog_image {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .blog_content {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog_date {
      font-size: 0.85rem;
      color: #05587e;
      margin-bottom: 0.5rem;
    }

    .blog_title {
      font-size: 1.2rem;
      margin: 10px 0px 0px 0px;
      color: #333;
    }

    .blog_snippet {
      font-size: 0.95rem;
      color: #666;
    margin: 5px 0 10px 0;
      flex-grow: 1;
    }

    .blog_read_more {
      margin-top: 1rem;
      align-self: flex-start;
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
      background-color: #05587e;
      color: white;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .blog_read_more:hover {
      background-color: #0056b3;
    }

.blog_container {
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem;
      background-color: #fff;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
	  margin-top: 50px;
    }

    .blog_container img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 2rem;
    }

    .blogtitle {
      font-size: 2.2rem;
      margin: 0px;
	  line-height: 1.5em;
    }

    .blogdate {
      color: #05587e;
      font-size: 0.95rem;
      margin: 15px 0 0 0;
    }

    .blog_post p {
          margin: 20px 0 0 0;
      font-size: 15px;
    }
@media (max-width: 767px) {

.navbar {
    margin: 0px 0 1px 0;
    flex-direction: column;
}
.menu-toggle {
            color: #fff;
        }
.sub_bg {
    background: #f6f9f9;
}
.header_container {
    flex-direction: column;
}
.header_info ul {
    flex-direction: column;
}
.header_logo {
    margin: 0 0 15px 0;
}
.header_info>ul li {
    padding: 5px 0px;
}
.display-4 {
    font-size: 19px;
    margin: 10px 0 0 70px;
	width: 75%;
	        left: -40px;
}
.baner_btn {
    padding: 5px 10px;
    top: 0px;
    font-size: 11px;
	    left: -60px;
}
.hone {
    font-size: 20px;
    line-height: 1.5em;
    padding: 10px 15px 40px 15px;
}
.aapplication_area {
    gap: 2px;
    flex-direction: column;
}
.about_area {
    flex-direction: column;
}
.gallery_area {
    grid-template-columns: auto;
	    gap: 30px;
}
.product_area {
    grid-template-columns: auto;
}
.counter_area {
    grid-template-columns: auto;
	        gap: 25px;
}
.enquiry_area {
    grid-template-columns: auto;
}
.get-in-touch-form-section-img img {
    max-width: 100%;
}
.pro_slide {
    flex-wrap: wrap;
}
.pro_col {
    flex-basis: 43%;
    flex-shrink: 0;
    flex-grow: 0;
}
.call-us-section h4 {
    font-size: 18px;
    margin: 0px 0 10px 0;
}
.call-us-section h2 {
    font-size: 28px;
    margin: 0px 0 10px 0;
}
.ftr_area {
    flex-direction: column;
    gap: 20px;
}
.footer_area {
    grid-template-columns: auto;
}
.footer_links {
    flex-direction: column;
}
.disnone {
	display: none;
}
.ft_ul li:last-child {
    border-bottom: 1px dashed rgba(74, 74, 74, 0.5);
}
.footer_links {
    gap: 15px;
}
.footer_links h5 {
    margin-top: 30px;
}
.widget_address li:last-child {
    margin: 0 0 0px 0;
}
.read-less-location {
    margin: 40px 0 20px 0;
}
.mt-separator h2 {
    font-size: 28px;
	margin: 0;
}
.mt-separator h3 {
font-size: 15px;
        line-height: 22px;
}
.gallery_head {
    font-size: 25px;
}
.gallery_head_1 {
    font-size: 25px;
}
.about_2 h3 {
    font-size: 28px;
}
.carousel-item {
        height: 21vh !important;
        min-height: 175px !important;
}
.honeheading {
    font-size: 19px;
    width: 90%;
	    top: 45%;
}
.innerbanner_area {
    height: 250px;
}
.bread_crumbs {
    top: 75%;
}
.innerproduct_area {
    grid-template-columns: auto;
    gap: 40px;
}
.service-about-right h2 {
    font-size: 30px;
}
.enq_quick_area {
        flex-direction: column;
        width: 250px;
        margin: 0 auto;
}
.call-for-quote-outer {
    display: grid;
}
.enq_quick_area input, .frm_drp {
    max-width: 100%;
	    width: 100%;
}
.enq_quick_area textarea {
    max-width: 100%;
}
.related_area h2 {
    font-size: 25px;
}
.relatedimg_area {
    flex-direction: column;
}
.relatd_pro {
    flex-basis: 100%;
}
.para_container {
    margin: 50px 0 0 0;
}
.enq_quick_area button {
    margin-top: 10px;
}
.innerpara_area {
    padding: 20px 20px;
}
.other_container {
    grid-template-columns: auto auto;
}
.other_img img {
    height: 200px;
}
.other_head {
    font-size: 17px;
    padding: 15px 0 0 0;
}
.service-about-left img {
    width: 100%;
}
.contactpage_area {
    grid-template-columns: auto;
}
.preheader_area {
    flex-direction: column;
	padding: 0 0px 0 0;
	    gap: 10px;
}
.details_col {
    margin: 0 0 5px 0;
}
.menu_container .container {
    flex-direction: column;
}
.header_area {
    display: none;
}
.slide {
    height: 180px;
}
.quick_form_area {
    flex-direction: column;
    align-items: center;
        width: 200px;
        margin: 0 auto;
}
.quick_form_area input {
    max-width: 100%;
    width: 100%;
	    box-sizing: border-box;
}
.inpt_fld {
    width: 100%;
}
.quick_form_area textarea {
    max-width: 100%;
    width: 100%;
}
.captcha_fld {
    width: 100%;
	        text-align: center;
}
.details_user {
    padding: 12px 0px 12px 0px;
    width: 100%;
    text-align: center;
}
.video-part-2 {
    padding: 0 0px 0 0;
}
.enq_icon_area {
    grid-template-columns: 1fr;
	border-top: none;
}
.enq_img_col {
    border-right: none;
    justify-content: flex-start;
border-bottom: 1px solid #EBEBEB;
}
.why_area {
    grid-template-columns: auto;
	    gap: 60px;
}
.slider-container .slide {
        height: 410px;
}
.slider-container img {
    height: 400px;
}
.diet_area {
    grid-template-columns: auto;
	    gap: 30px;
}
.strip_container>.container {
    grid-template-columns: auto;
    gap: 50px;
}
.strip_box_area {
    justify-content: center;
}
.enq_oth_img {
    width: 45px;
}
.strip_container>.container img {
    display: block;
    text-align: center;
    margin: 0 auto;
}
.testi_area {
    flex-direction: column;
	    gap: 50px;
}
.get-in-touch-form-section {
    gap: 5px;
    flex-direction: column;
}
.testimonial-item p:first-child {
    font-size: 16px;
}
.testimonial-container {
    padding: 50px 0px;
}
.testimonial-container h2 {
    font-size: 32px;
    text-align: center;
}
.mt-icon-box-wraper {
    width: 100%;
}
.menu_area {
    max-width: 100%;
    background: #2b343b;
    width: 100%;
}
.nav-menu li.has-submenu a {
    color: #fff;
}
.nav-menu li .submenu li a {
    color: #4F4F4F;
}
.nav-menu a {
    color: #fff;
}
.why_info h2 {
    font-size: 32px;
}
.diet_info h2 {
    font-size: 32px;
}
.testi_container h2 {
    font-size: 32px;
}
.header_logo img {
    width: 55%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
}
.innerstrip_area {
    padding: 20px 30px 20px 30px;
}
.innerstrip_area h3 {
    font-size: 25px;
}
.faq-container {
    padding: 0px;
}
.innerstrip_area table tr {
display: flex;
    flex-direction: column;
}
.meal-plan {
    grid-template-columns: auto;
}
.ggl_rvw_area {
    grid-template-columns: auto;
    padding: 40px 15px 40px 15px;
    gap: 30px;
}
.rating_txt {
    margin: 0px 0 0 0;
}
.box_2 {
    padding: 10px 30px;
}
.vid_rvw_area {
    flex-direction: column;
}
.vid_rvw_container h3 {
    font-size: 28px;
}
.testi_head {
    font-size: 28px;
}
.testi_area_full {
    grid-template-columns: auto;
}
.testi_col {
    flex-direction: column;
}
.testi_col img {
    margin: 0 auto;
}
.innerbanner_area img {
    height: 250px;
}
.blog_section {
    padding: 0 15px;
}
.blog_container {
    padding: 0 15px;
}
.blogtitle {
    font-size: 1.5rem;
}
}