

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background-image:url();
}

a {
  text-decoration: none;
  color: #5cb874;

}

a:hover {
  color: #80c792;
  text-decoration: none;
}

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


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 1002;
  background: #5cb874;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #78c48c;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #07268c;
  background: #1b8346;

  font-size: 15px;
  height: 30px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #fff;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #fff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}


.marque-wrapper{
  background:#1b8346;
  background: #0e8e00;
  background: #25b85d;
  background: #1b8346;
}

.marque-wrapper {
 width: 100%;
 overflow: hidden;
}






/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
/* background: radial-gradient(#2ed573, #1e824c);
 background: linear-gradient(90deg, rgba(2,36,109,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
background: linear-gradient(45deg, #27ae60, #1abc9c);*/

 background: linear-gradient(90deg, rgba(2,36,109,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
 background:#07268c;
 background: #1b8346;
 background: #0e8e00;
 background: #fff;



  transition: all 0.5s;
  z-index: 1002;
  height: 45px;
  /* height: 70px; */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Box shadow */

  
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #5cb874;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/

/* change made for search bar placement */
.navbar {
  flex-wrap: nowrap;
}
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 19px 10px 19px;
  font-size: 15px;
  color: #808080;
  white-space: nowrap;
  transition: 0.3s;
  margin-right: 5px;
  /* font-weight: 600; */
  text-transform: capitalize;
  font-family: "Manrope", Sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--e-global-color-accent);

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #0e8e00;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #5cb874;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #5cb874;
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #5cb874;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  margin-top: 1px;
}

.navbar .dropdown ul li {
  min-width: 250px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

/* .navbar .dropdown ul li:hover>a  */

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover{
  color: #5cb874;
  color: #f9d342;
  color:#000;
  color: #fff;





}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown ul a {
  color: #222222;
  font-size: 15px;
  font-weight: normal;
  text-transform:capitalize;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.SMN_effect-90 a {
	overflow: hidden;
	color: #fff;
	/* box-shadow: 0 0 0 0 transparent; */
  border-radius: 0px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.SMN_effect-90 a:hover {
	color: white;
	/* box-shadow: 0 0 30px 0 rgba(0, 199, 236, 0.5); */
	background-color: #f9d342;
  background-color: #0e8e00;
  border-radius: 3px;

	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.SMN_effect-90 a:hover:before {
	-webkit-animation: shine-90 0.5s 0s linear;
	-moz-animation: shine-90 0.5s 0s linear;
	animation: shine-90 0.5s 0s linear;
}

.SMN_effect-90 a:active {
	box-shadow: 0 0 0 0 transparent;
	-webkit-transition: box-shadow 0.2s ease-in;
	-moz-transition: box-shadow 0.2s ease-in;
	transition: box-shadow 0.2s ease-in;
}

.SMN_effect-90 a:before {
	content: '';
	display: block;
	width: 0px;
	height: 86%;
	position: absolute;
	top: 7%;
	left: 0%;
	opacity: 0;
	background: white;
	box-shadow: 0 0 15px 3px white;
	-webkit-transform: skewX(-20deg);
	-moz-transform: skewX(-20deg);
	-ms-transform: skewX(-20deg);
	-o-transform: skewX(-20deg);
	transform: skewX(-20deg);
}

/*@-webkit-keyframes shine-90 {
	from {
		opacity: 0;
		left: 0%;
	}
	50% {
		opacity: 1;
	}
	to {
		opacity: 0;
		left: 100%;
	}
}

@-moz-keyframes shine-90 {
	from {
		opacity: 0;
		left: 0%;
	}
	50% {
		opacity: 1;
	}
	to {
		opacity: 0;
		left: 100%;
	}
}

@keyframes shine-90 {
	from {
		opacity: 0;
		left: 0%;
	}
	50% {
		opacity: 1;
	}
	to {
		opacity: 0;
		left: 100%;
	}
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }

}*/


/* .navbar ul {
  flex-wrap: wrap;
} */


/*To fix nav overflow*/
@media screen and (min-width: 1024px) and (max-width: 1400px) {
.navbar ul {
  flex-wrap: wrap;
}
#header{
  /* height: 90px; */
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 10px;
    font-size: 15px;
    color: #fff;
    color: #808080;
    white-space: nowrap;
    transition: 0.3s;
    margin-right: 5px;
    /* font-weight: 600; */
    text-transform: capitalize;
}
}






/*To fix nav overflow*/
@media screen and (min-width: 1024px) and (max-width: 1199px) {
.navbar ul {
  flex-wrap: wrap;
}
#header{
  /* height: 90px; */
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 10px;
    font-size: 11px;
    color: #808080;
    white-space: nowrap;
    transition: 0.3s;
    margin-right: 4px;
    /* font-weight: 600; */
    text-transform: capitalize;
}
}



/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #000000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}
/*change    991 to 1024*/
@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: block;
  }


  /* @media screen and (min-width: 1024px) and (max-width: 1440px) {
  .navbar ul {
    flex-wrap: wrap;
  }

  .navbar li {
    flex: 0 0 50%;
  }
} */


  .navbar ul {
    display: none;
  }
  #header{
    height: 40px;
  }

}


.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 1002;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color:#222222;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color:#222222;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



.last-item {
  text-align: right; /* Align the image to the right */
}


.center-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensure the image container has a fixed height */
  
}

.center-image img {
  width: 90%; /* Ensure the image fills the container horizontally */
  height: 90%; /* Ensure the image fills the container vertically */
  object-fit: cover; /* Ensure the image covers the container without distorting its aspect ratio */
  border-radius: 5px;
}











/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 66vh;
  /* height: 35vh; */
  background-color: rgba(9, 9, 9, 0.8);
  overflow: hidden;
  position: relative;
}

@media screen and (min-height: 720px) and (max-height: 768px) and (min-width: 1280px) {
  #hero {
    width: 100%;
    height: 60vh;
    /* height: 35vh; */
    background-color: rgba(9, 9, 9, 0.8);
    overflow: hidden;
    position: relative;
  }
  
}

@media screen and (min-height: 900px)  and (min-width: 1600px) {
  #hero {
    width: 100%;
    height: 60vh;
    /* height: 35vh; */
    background-color: rgba(9, 9, 9, 0.8);
    overflow: hidden;
    position: relative;
  }
  
}


@media screen and (min-height: 800px) and (max-height: 900px) and (min-width: 1280px) and (max-width: 1440px){
  #hero {
    width: 100%;
    height: 54vh;
    /* height: 35vh; */
    background-color: rgba(9, 9, 9, 0.8);
    overflow: hidden;
    position: relative;
  }
  
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";

}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 10px;
  line-height: 0;
  width: auto;
  height: auto;
  /* background: rgba(255, 255, 255, 0.2); */
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #5cb874;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #5cb874;
}

#hero .btn-get-started:hover {
  background: #6ec083;
}

@media (max-width: 992px) {
  #hero {
    /* height: 30vh; */
    height: auto;
    height: 20vh;
    padding: 50px 0px !important;
  
  }

  #hero .carousel-container {
    top: 66px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 25vh;
  }
}



/* @media (max-width: 1440px) and (max-height: 900px) {
  #hero {
   
    height: 56vh;
    padding: 50px 0px !important;
  }
} */



/* @media (max-width: 1280px) and (max-height: 1024px) {
  #hero {
   
    height: 45vh;
    padding: 50px 0px !important;
  }
} */


/* @media (max-width: 1020px) and (max-height: 800px) {
  #hero {
   
    height: 46vh;
    padding: 50px 0px !important;
  }
} */


/* @media (max-width: 1280px) and (max-height: 720px) {
  #hero {
   
    height: 62vh;
    padding: 50px 0px !important;
  }
} */
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
 padding: 70px 0;
}

.section-bg {
  background-color: #f8fcf9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: green;
  color: #4D9B32;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #5cb874;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
}

#services{
/* background-image: url(https://img.freepik.com/free-vector/green-geometric-frame-vector_53876-144367.jpg?w=1060&t=st=1687853043~exp=1687853643~hmac=b72d3da68200f5dcae43b3d9352095bd5effa862f3edca48780f273ec9297185); */
/* background-image: url(https://img.freepik.com/free-vector/green-geometric-frame_53876-114610.jpg?w=1060&t=st=1687854255~exp=1687854855~hmac=13b13076c50ef06f75565561799df440fce0da35f627391803e58af69c4cdcb6); */
/* background-image:url(https://img.freepik.com/free-vector/abstract-geometric-green-background_23-2148373479.jpg?w=2000); */
/* background-image: url(https://img.freepik.com/free-vector/abstract-geometric-green-background_23-2148373479.jpg?w=1060&t=st=1687855405~exp=1687856005~hmac=c0590ef09f517ffb5965c89531c5f56e4baee73fcf5d6cff3bad18f3798101ed); */
/* background-image: url(https://img.freepik.com/free-vector/white-abstract-background-design_23-2148825582.jpg?w=1060&t=st=1687855680~exp=1687856280~hmac=c4e5333f349b66ff10bbadbbcb0ddb01a9acc128e544465226c21cdf9b878dea); */
/* background-image: url(https://img.freepik.com/free-vector/white-desktop-background-modern-minimal-design-vector_53876-140226.jpg?w=1060&t=st=1687855908~exp=1687856508~hmac=8e0f30487675aa2a944c4cb925c7068d5630ddaf51d5391b3fcf9a2d4921b97f); */
  /* background-image: url("../../assets/img/custom.jpg"); */
/* background-image: url(https://img.freepik.com/free-vector/white-elegant-texture-background-style_23-2148432200.jpg?t=st=1713151477~exp=1713155077~hmac=9b66f7ae7074637bd00c57868095f7ffcc13969dce0acad458cad291e389c50f&w=1060);
background-image: url(https://static.vecteezy.com/system/resources/previews/012/067/917/non_2x/white-and-green-background-template-with-flat-design-vector.jpg);
background-image: url(../img/cstm1.jpg); */

background-repeat: no-repeat;
background-size: cover;
/* background-position: center; */

}
.featured-services .icon-box {
  padding: 20px;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  color: #5cb874;
  font-size: 42px;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
  color: #5cb874;
}

.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5cb874;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #6ec083;
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 20px 20px 20px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 10px;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #07268c;
  color:#1b8346;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #5cb874;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #5cb874;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #5cb874;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #6ec083;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #5cb874;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #5cb874;
  border-bottom: 3px solid #5cb874;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #5cb874;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6ed;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #5cb874;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #5cb874;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #5cb874;
  border-bottom: 3px solid #5cb874;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5cb874;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #5cb874;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #6ec083;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
/*  padding: 15px 0;
  background: #0d6efd;
  min-height: 40px;*/
}

@media (max-width: 992px) {
  .breadcrumbs {
    /* margin-top: 66px; */
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #090909;
  background: #07268c;
  background: #1b8346;
  background: #011c39;
  background: #1e2127;
  background: #1cb461;
  background: #0b943f;
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-weight:600;

  padding: 0;
  margin: 0 0 40px 0;
}

#footer li{
  font-weight:600;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #5cb874;
  background: #39b86c;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #449d5b;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}



.row1 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}






/*
.container1 {
  padding: 1rem;
  padding-top: 100px;
  width: 400px;
}

input[type="search"] {
  -webkit-appearance: none !important;
  background-clip: padding-box;
  background-color: white;
  vertical-align: middle;
  border-radius: 0.25rem;
  border: 1px solid #e0e0e5;
  font-size: 1rem;
  width: 100%;
  line-height: 2;
  padding: 0.375rem 1.25rem;
  -webkit-transition: border-color 0.2s;
  -moz-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

input[type="search"]:focus {
  transition: all 0.5s;
  box-shadow: 0 0 40px #f9d442b9;
  border-color: #f9d342;
  outline: none;
}

form.search-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

label {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: center;
  margin-bottom: 0;
}

input.search-field {
  margin-bottom: 0;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: center;
  height: 51px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

input.search-submit {
  height: 51px;
  margin: 0;
  padding: 1rem 1.3rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.button {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.15;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  background: #f9d342;
  color: #292826;
  border: 1px solid transparent;
  vertical-align: middle;
  text-shadow: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.button:hover,
.button:active,
.button:focus {
  cursor: pointer;
  background: #d4b743;
  color: #292826;
  outline: 0;
} */

/* @media (max-width: 600px) {
  .container1 {
    width: 100%;
    padding: 1rem;
  }

  input.search-field {
    height: 40px;
  }

  input.search-submit {
    height: 40px;
  }
}

 */



/*
.hover-1 {
  padding-top: 10px;
}
.hover-1:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1fb682;
  transform: scaleX(0);
}
.hover-1:hover:before {
  transform: scaleX(1);
}

a, a > span {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
}
a:before, a:after, a > span:before, a > span:after {
  content: '';
  position: absolute;
  transition: transform .5s ease;
} */






/* .hover-3 {
  display: inline-flex;
  padding-top: 10px;
  padding-bottom: 5px;
  overflow: hidden;
}
.hover-3:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #f9d342;


  transform: translateX(-100%);
}
.hover-3:hover:before {
  transform: translateX(0);
} */




/* .hover-4 {
  padding: 10px;
  display: inline-flex;
  overflow: hidden;
}
.hover-4:before, .hover-4:after {
  left: 0;
  width: 100%;
  height: 2px;
  background:#f9d342;
}
.hover-4:before {
  bottom: 0;
  transform: translateX(-100%);
}
.hover-4:after {
  top: 0;
  transform: translateX(100%);
}
.hover-4:hover:before, .hover-4:hover:after {
  transform: translateX(0);
} */




/*


.SMN_effect-39 a:before, .SMN_effect-39 a:after {
	content: '';
	position: absolute;
	width: 5px;
	border-radius: 50%;
	background:  #f9d342;
	top: 17px;
	transition: height 0.3s 0.3s ease, border-radius 0.3s 0.3s ease, top 0.3s 0.3s ease, width 0.3s ease;
}

.SMN_effect-39 a:before {
/*	height: 5px;
	left: 0;
}

.SMN_effect-39 a:after {
	height: 0;
	right: 0;
}

.SMN_effect-39 a:hover:before, .SMN_effect-39 a:hover:after {
	top: 10%;
	width: 55%;
	height: 80%;
	z-index: -1;
	border-radius: 5px;
	transition: height 0.3s ease, border-radius 0.3s ease, top 0.3s ease, width 0.3s 0.3s ease;
}

.SMN_effect-39 a {
	z-index: 1;
	display: inline-block;
	padding: 10px 20px;
	position: relative;
	transition: all 0.3s ease;
}

.SMN_effect-39 a:hover {
	transition: all 0.3s 0.3s ease;
	text-decoration: none;
	color: white;
} */




/* .wrapper {
  width: 100%;
  max-width: 31.25rem;
  padding-top: 20px;
}


@media (max-width: 991px) {
  .wrapper {
    width: 140%;
    max-width: 31.25rem;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.label {
  font-size: .625rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: +1.3px;
  margin-bottom: 1rem;
}

.searchBar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#searchQueryInput {
  width: 100%;
  height: 2.8rem;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 1.625rem;
  padding: 0 3.5rem 0 1.5rem;
  font-size: 1rem;
}

#searchQuerySubmit {
  width: 3.5rem;
  height: 2.8rem;
  margin-left: -3.5rem;
  background: none;
  border: none;
  outline: none;
}

#searchQuerySubmit:hover {
  cursor: pointer;
} */


/*footer links*/
.link-list {
  list-style: none;
  padding-left: 0;
}

.link-list li {
  margin-bottom: 10px;
}

.link-list li a {
  color: white;
  text-decoration: none;
}





/*floating social media*/


.section1 {
  position: relative;
  height: 0px;
  background: #fff;
  padding: 10px 0px;
  width: 100%;
  z-index: 1001;
}

.section1 h2 {
  text-align: center;
  font-size: 40px;
}

.section1 p {
  text-align: center;
  padding: 0px 70px;
  color: grey;
}

/* Adjusted sticky social icons */
.sticky-social {
  position: fixed;
  top: 50%; /* Vertically center the icons */
  right: 0;
  transform: translateY(-50%); /* Translate the position */
  padding: 0px;
  margin: 0px;
}

.social {
  list-style: none;
}

.social li {
  padding: 6px; /* Decreased padding for smaller size */
  font-size: 20px; /* Decreased font size for smaller icons */
  transition: all 0.8s ease-in-out;
}

.social li:hover {
  margin-left: -30px;
  box-shadow: 2px 5px 10px grey;
}

.social li:hover .fa {
  margin-right: 20px;
}

.fa {
  color: #fff;
  transition: all 0.8s ease-in-out;
}

.fb {
  background-color: #3C5A98;
}

.twitter1 {
  background-color: #1EA1F2;
}

.insta {
  background-color: #DC4F42;
}

.pin {
  background-color: #CB2128;
}

.vim {
  background-color: #59BFBE;
}



/*resource links section*/
.custom-section {
  background-image: url('../../assets/img/custom.jpg');
  /* height: 50vh; */
  background-size: cover;
background-repeat: no-repeat;
background-position: center;

}

.custom-content {
  color: white;
  /* padding-top: 50px; */
  padding-bottom: 50px;
}







/*Card*/
.card {
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  height: auto;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 0.4rem 1.4rem rgba(0, 0, 0, 0.2); /* Adjust the values as desired */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.2s;
  margin: 30px auto; /* Adjust margin as needed */
  /* background-image: url(https://png.pngtree.com/background/20210709/original/pngtree-green-creative-plant-natural-picture-image_920137.jpg); */
  /* background-image: url(https://png.pngtree.com/background/20210709/original/pngtree-summer-green-natural-background-picture-image_354164.jpg);
  background-image: url(https://t3.ftcdn.net/jpg/02/74/03/80/360_F_274038030_nlzudQH3IE50qpM1NEaJOdnsta2XzoHd.jpg);
  background-image: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
}

@media (max-width: 767px) {
  .card {
    width: 100%;
    min-width: auto;
    height: auto;
    background-image: url();

  }
}











/*custom button*/
.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}



/* 12 */
.btn-12{
  position: relative;
  right: 20px;
  bottom: 20px;
  border:none;
  box-shadow: none;
  width: 130px;
  height: 40px;
  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px;
}
.btn-12 span {
  background: rgb(12,147,0);
background: linear-gradient(0deg, rgb(12,147,0) 0%, rgb(12,147,0) 100%);
  display: block;
  position: absolute;
  width: 250px;
  height: 40px;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  border-radius: 5px;
  margin:0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn-12 span:nth-child(1) {
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12:hover span:nth-child(1) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.btn-12:hover span:nth-child(2) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
 color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}



.no-bullets {
  list-style-type: none;
}



/*
#roundedBox {
  padding: 20px;
   width: 100%;
   height: 100px;
   background-color: #40a152;
}






.form-search{
    margin: 0 auto;
    text-align: center;

    font: bold 13px sans-serif;
     max-width: 70%;
    position: relative;
}

.form-search input{
    width: 60%;
    box-sizing: border-box;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
    background-color:  #ffffff;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 14px 15px 14px 40px;
    border: 1px solid #b6c3cd;;
    border-right: 0;
    color:#4E565C;
    outline: none;
    -webkit-appearance: none;
}

.form-search button{
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    background-color:  #6caee0;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.08);
    color: #ffffff;
    padding: 15px 22px;
    margin-left: -4px;
    cursor: pointer;
    border: none;
    outline: none;
}

.form-search i{
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 16px;
    color: #80A3BD;
}
 */




 .mapouter {
   position: relative;
   text-align: right;
   height: 400px;
   width: 100%;
 }

 .gmap_canvas {
   overflow: hidden;
   background: none!important;
   height: 100%;
   width: 100%;
 }



.table-responsive {
  overflow-x: auto;
}

.interest-rates-table {
  width: 100%;
  border-collapse: collapse;
}






.table-responsive {
  overflow-x: auto;
}

.loan-rates-table {
  width: 100%;
  border-collapse: collapse;
}

.loan-rates-table th,
.loan-rates-table td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

.loan-rates-table th {
  background-color: #ddf3fe;
}



.table-responsive {
  overflow-x: auto;
}

.officer-section-table {
  width: 100%;
  border-collapse: collapse;
}

.officer-section-table th,
.officer-section-table td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

.officer-section-table th {
  background-color: #ddf3fe;
}








    /* Basic Card */
    .basic-card {
         width:310px;
         height: 100px;
         position: relative;
         overflow: hidden;
         -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
         -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
         -o-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
         box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
         border-radius:10px;
     }


    .basic-card .card-content {
        padding: 27px;
    }

    .basic-card .card-title {
        font-size: 18px;
        font-family: 'Open Sans', sans-serif;
        font-weight: bold;
    }



.basic-card-aqua {
    background: linear-gradient(to right, #00FF00, #32CD32);
    background:#28A145;
    /* background-image: linear-gradient( #eec949 20.5%, #f09d1e ); */
    /* background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRKa0CWle8LHi0TV2tysaVfH-T5J3AlCBwpRA&usqp=CAU"); */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRKa0CWle8LHi0TV2tysaVfH-T5J3AlCBwpRA&usqp=CAU");
      background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../../assets/img/loancover.jpg");

}

    .basic-card-aqua .card-content{
        color: #fff;
        /* text-shadow: 1px 1px 2px #000; */

    }






/*table styling*/

.content-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 1em;
  min-width: 400px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    font-family: sans-serif;
}

.content-table thead tr {
  background-color: #009879;
  /* background-color: #6baa4e; */
  background-color: rgb(12,147,0);
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

.content-table th,
.content-table td {
  padding: 12px 15px;
}

.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
  background-color:#e2eedb;
}

.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}









.search {
  position: relative;
  padding-bottom: 15px;
  bottom: -7px;
}

.search-input::placeholder {
  color: #000;
  opacity: 0.8;
}

.search-input {
  height: 0px;
  border:none;
  position: absolute;
  left: -200px;
  visibility: hidden;
  opacity: 0;
  top: 40px;
  background: #1b8346;
  background: #fff;
  color: #000;
  padding: 20px;
  font-size: 20px;
  outline: none;
  width: 250px;
  transition: 80ms all ease-in;
  border-radius: 5px;
  box-shadow: none;
}

.search-button {
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  /* margin-left:  15px;
  padding: 5px 10px 5px 10px; */

}
.search-button:hover {
	color: white;
	box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.5);
	background-color: #f9d342;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}


.search-button:hover + .search-input, .search-input:hover, .search:hover .search-input {
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9 !important;
  height: 25px !important;
}




.search1 {
  position: relative;
  padding-bottom: 15px;
  bottom: -7px;
}

.search-input1::placeholder {
  color: #000;
  opacity: 0.8;
}

.search-input1 {
  height: 0px;
  border:none;
  position: absolute;
  right: -200px;
  visibility: hidden;
  opacity: 0;
  top: 40px;
  background: #1b8346;
  background: #fff;
  color: #000;
  padding: 20px;
  font-size: 20px;
  outline: none;
  width: 250px;
  transition: 80ms all ease-in;
  border-radius: 5px;
  box-shadow: none;
}

.search-button1 {
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  /* margin-left:  15px;
  padding: 5px 10px 5px 10px; */

}
.search-button1:hover {
	color: white;
	box-shadow: 0 0 30px 0 rgba(0, 199, 236, 0.5);
	background-color: #0e8e00;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}


.search-button1:hover + .search-input1, .search-input1:hover, .search1:hover .search-input1 {
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9 !important;
  height: 25px !important;
}






/* nav hover effect */
/* 
a, a > span {
  position: relative;

  text-decoration: none;
  line-height: 24px;
}
a:before, a:after, a > span:before, a > span:after {
  content: '';
  position: absolute;
  transition: transform .5s ease;
}
.hover-1 {
  padding-top: 10px;
}
.hover-1:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f9d342;
  background: #0e8e00;
  transform: scaleX(0);
}
.hover-1:hover:before {
  transform: scaleX(1);
}



.hover-3 {
  display: inline-flex;
  padding-top: 10px;
  padding-bottom: 5px;
  overflow: hidden;
}
.hover-3:before {
  left: 0;
  bottom: 0;
  width: 95%;
  height: 4px;
  background: #f9d342;
  background: #fff;
  background: #E4D00A;
  background: #0e8e00;


  transform: translateX(-100%);
}
.hover-3:hover:before {
  transform: translateX(0);
} */





#card-body {
  display: flex;
  align-items: center;
}

#card-1 {
   border-top: 3px solid green; ;
  height: 260px; /* Adjust the desired height */
  background: white;

  padding: 1.8rem;
  width: 25rem;
  border-radius: 4px;
  box-shadow: 0px 9px 20px 1px rgba(0, 0, 0, 0.1);
  transition: 0.5s all;
}

#card-1:hover {
background: linear-gradient(to bottom, #ccffcc, transparent);
  transform: scale(1.05);
  box-shadow: 0px 15px 15px 16px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-weight: 600;

  text-align: center;
}

.card-body p{
  font-size: 16px;
}

#card-cont {
  display: flex;
  justify-content: center;
}

.card-img {

  width: 25%;
}




/* Media query for medium screens (md) */
@media (min-width: 768px) and (max-width: 991px) {
  #card-1 {
    /* Custom styles for medium screens */
    border-top: 3px solid green; ;
   height: 220px; /* Adjust the desired height */
   background: white;

   padding: 0.8rem;
   width: 14rem;
   border-radius: 4px;
   box-shadow: 0px 9px 20px 1px rgba(0, 0, 0, 0.1);
   transition: 0.5s all;
  }
  .card-body p{
    font-size: 10px;
  }
}

/* Media query for small screens (sm) */
@media (max-width: 767px) {
  #card-1 {
    /* Custom styles for small screens */
    border-top: 3px solid green; ;
   height: 210px; /* Adjust the desired height */
   background: white;
   padding:0.8rem;
   width: 21rem;
   border-radius: 4px;
   box-shadow: 0px 9px 20px 1px rgba(0, 0, 0, 0.1);
   transition: 0.5s all;
  }
  .card-body p{
    font-size: 13px;
  }

  }
  @media (min-width: 992px) and (max-width: 1224px) {
    #card-1 {
      /* Custom styles for medium screens */
      border-top: 3px solid green; ;
     height: 240px; /* Adjust the desired height */
     background: white;

     padding: 0.8rem;
     width: 19rem;
     border-radius: 4px;
     box-shadow: 0px 9px 20px 1px rgba(0, 0, 0, 0.1);
     transition: 0.5s all;
    }
    .card-body p{
      font-size: 13px;
    }

  }
  @media (min-width: 1225px) and (max-width: 1400px) {
    #card-1 {
      /* Custom styles for medium screens */
      border-top: 3px solid green; ;
     height: 240px; /* Adjust the desired height */
     background: white;

     padding: 0.8rem;
     width: 22rem;
     border-radius: 4px;
     box-shadow: 0px 9px 20px 1px rgba(0, 0, 0, 0.1);
     transition: 0.5s all;
    }
    .card-body p{
      font-size: 13px;
    }

  }








  .frame img {
    border:solid 2px;
    border-bottom-color:#ffe;
    border-left-color:#eed;
    border-right-color:#eed;
    border-top-color:#ccb;
    max-height:100%;
    max-width:100%;
    height: 300px;
    width: 215px;
  }

  .frame {
    background-color:#ddc;
    border:solid 4vmin #eee;
    border-bottom-color:#fff;
    border-left-color:#eee;
    border-radius:2px;
    border-right-color:#eee;
    border-top-color:#ddd;
    box-shadow:0 0 5px 0 rgba(0,0,0,.25) inset, 0 5px 10px 5px rgba(0,0,0,.25);
    box-sizing:border-box;
    display:inline-block;

    height:auto;
    width: auto;

    position:relative;
    text-align:center;
    &:before {
      border-radius:2px;
      bottom:-2vmin;
      box-shadow:0 2px 5px 0 rgba(0,0,0,.25) inset;
      content:"";
      left:-2vmin;
      position:absolute;
      right:-2vmin;
      top:-2vmin;
    }
    &:after {
      border-radius:2px;
      bottom:-2.5vmin;
      box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
      content:"";
      left:-2.5vmin;
      position:absolute;
      right:-2.5vmin;
      top:-2.5vmin;
    }
  }







  
  

/* make list items horizontal */


/* stylize items */
.item a {
  text-decoration: none;
  width: 3rem;
  height: 3rem;
  background-color: #f1f1f1;
  border-radius: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  /* border: 5px solid #f1f1f1; */
  overflow: hidden;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
 
}

/* configure animation */
.item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 0;
  scale: 1 0;
  transform-origin: bottom;
  transition: scale 0.5s ease;
  border-radius: 30%;
  

  
}

/* bg holor hover animation */
.item:hover a::before  {
    scale: 1 1;
}

/* media icon style */
.icon {
  font-size: 1rem;
  color: hsl(203, 92%, 8%);
  transition: 0.75s ease;
  z-index: 2;
}

/* icon rotation */
.item a:hover .icon  {
  color: #fff;
  transform: rotate(360deg);
}


.item:hover  .icon  {
  color: #fff;
  transform: rotate(360deg);
}



/* bg colors variations */
.item:nth-child(1) {
  --bg-color: #2ab95d;
}
.item:nth-child(2) {
  --bg-color: #2ab95d;
}
.item:nth-child(3) {
  --bg-color:#2ab95d;
}


.item p {
  color: #8f8f8f;
  margin-left: 15px;
  margin-top: 4px; /* Adjust margin top as needed */
  cursor: pointer; /* Make cursor pointer */
}

.item p:hover + a .icon {
  color: #fff; /* Make icon white on hover */
}

.item p:hover + a .icon {
  transform: rotate(360deg); /* Rotate icon on hover */
}




.vr
{
  display:inline;
  height: inherit;
  width:1px;
  border:1px inset;
  margin:5px;
  overflow:hidden;
}




.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px  #44dd72;
 
}
.single-cta i {
  color: #ffffff;
  font-size: 30px;
  float: left;
  margin-top: 8px;
  cursor: pointer;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
  cursor: pointer;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
  cursor: pointer;
}
.cta-text span {
  color: #ffffff;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 350px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #ffffff;
  line-height: 28px;
  text-align: justify;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ffffff;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.footer-widget ul li a {
  color: #ffffff;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}
.copyright-text p a{
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #ffffff;
}





@media (max-width: 576px) {
  .mobile-width {
    width: 30% !important;
  }
}