/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  
  /*========== Colors ==========*/
  --first-color: hsl(36, 72%, 48%);
  --first-color-alt: hsl(36, 72%, 44%);
  --black-color: hsl(206, 12%, 12%);
  --card-color: hsl(0, 0%, 90%);
  --title-color: hsl(206, 12%, 12%);
  --text-color: hsl(206, 4%, 42%);
  --text-color-light: hsl(206, 4%, 75%);
  --body-color: hsl(206, 4%, 97%);
  --container-color: #fff;

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .738rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-bold);
}

h1, h2, h3, p {
  line-height: 140%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

/*=============== REUSABLE CSS CLASSES ===============*/

.grid {
  display: grid;
  gap: 1.5rem;
}
.section {
  padding: 4.5rem 0 2rem;
}

.section-title {
  position: relative;
  font-size: var(--h1-font-size);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}

.section-title::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 3px;
  height: 25px;
  background-color: var(--first-color);
}
/*================= ==================*/
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  /* background-color: rgb(248, 249, 250); */
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: rgba(255, 255, 255, 0.8);
  //background-color: rgba(255, 255, 255, 0.89);
  z-index: 999;

}

.nav-brand {
  /* width: 120px; 
  width: 145px;*/
  width: 170px;
}
.nav-brand img{
  width: 100%;
}
.nav__menu {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  /*display: none;*/
}
.nav__list {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-right: auto !important;
}
.nav__item {
  margin-left: 20px;
  margin-bottom: 20px;
}
.nav__link {
  line-height: 1;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 600;
  padding: 3px 5px;
  color: rgb(0, 0, 0);
}
.nav__link:hover{
  color: #4a8b71;
}
.btn-outline {
  min-width: 135px;
  padding: 15px 10px 13px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #fff;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: #f1cf69 !important;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0;
  margin-left: 20px !important;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  -webkit-border-radius: 5px;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: background-color .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
  transition: background-color .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
}
.nav__toggle   {
  padding: 0.25rem 0.75rem;
  font-size: 1.75rem;
  line-height: 1.5;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
  cursor: pointer;

  
}
.nav__toggle  .bx {
  display: inline-block;
  width: 1.5em;
  vertical-align: middle;
}

@media screen and (max-width: 991px) {
  .nav__menu {
    position: absolute;
     /*background-color: rgb(248, 249, 250,0.1);*/
	background-color: #ffffff;
    //box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 0;
    width: 100%;
    /*top: -350%;*/
	 top: -420%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: .4s;
    z-index:  100;
  }
  .nav-brand {
    width: 90px;
  }
  .nav-brand img{
    width: 100%;
  }
}

.show-menu {
  top: 5.2rem !important;
}
@media (min-width: 992px){
  .navbar-expand-lg {
      flex-wrap: nowrap;
      justify-content: flex-start;
      
  }
  .nav__menu {
      display: flex !important;
      flex-basis: auto;
  }
  .nav__list {
      flex-direction: row;
  }
  .nav__item {
      margin-bottom: 0;
  }
  .nav__link {
      padding-right: 0.5rem;
      padding-left: 0.5rem;
      text-transform: capitalize;
  }
  .nav__link.active-link ,
   .nav__link:hover{
     color: #008dd2;
   }
  .btn-outline {
      color: #504935;
  }
  .nav__toggle .bi{
      display: none;
  }
}
/* Change background header */
.scroll-header{
  background-color: #FFFF;
  box-shadow: 1px 1px 30px 0px #ddd!important;
}
.scroll-header .nav-logo,
.scroll-header .nav-toggle{
  color: var(--title-color);
}
.button__header{
  padding: 15px 30px !important;
}
/*=============== HERO ===============*/
.carousel-item{
  position: relative;
}
.carousel-item::before{
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  //background-color: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
  text-align: left !important;
}
@media (min-width: 767px) {
  .carousel-item{
      height: 30rem;
  }
  .carousel-caption {
      position: absolute;
      right: 15%;
      top: 7rem;
      left: 15%;
      padding-top: 1.25rem;
      padding-bottom: 1.25rem;
      color: #fff;
      text-align: left !important;
  }
  .carousel-caption h5{
      font-size: 7rem;
      font-weight: 800;
  }
}
@media (min-width: 1024px) {
  .carousel-item{
      height: 40rem;
  }
  .carousel-caption {
      top: 10rem;
  }
  
}
.carousel-item img{
  background-position: center;
  background-size: cover;
}
.custom-btn {
  min-width: 135px;
  padding: 5px 10px 13px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  border-color: #fff;
  color: #fff;
  line-height: 1;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer;
  appearance: none;
  user-select: none;
  box-shadow: none;
  outline: none;
  border-radius: 5px;
  transition: background-color .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
}
.custom-btn.big {
  min-height: 6px;
  min-width: 167px;
  padding: 10px 25px 10px;
  color: #fff;
  background-color: #008dd2;
  border-color: #008dd2;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 12px !important;
  height: 12px !important;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
.carousel-indicators .active {
  opacity: 1;
  background-color: #4a8b71 !important;
}




/*===============  ===============*/
.about-section{
  padding: 5rem 0;
  background-color:#daedf7;
}
.about__wrapper h2{
  font-size: 3.5rem;
  color: #333333;
  line-height: 1.3;
  text-align: left;
}
.about__wrapper h4{
  font-size: 1.3rem;
  color: #333333;
  text-align: left;
  line-height: 1.7;
}
.about__wrapper p{
  color: #777777;
  line-height: 1.7;
}
.single-wrapper {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  text-align: center;
}
.about__wrapper .grid{
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr ;
  column-gap: 3rem;
}
.single-wrapper img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
.single-wrapper h3{
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.2;
  text-align: center !important;
}
/*===============  ===============*/
.main{
  background-color: #fff;
}
.main .wrapper__section h2{
  font-size: 2.5rem;
  color: #333333;
  line-height: 1.1;
  text-align: left;
}
.main .wrapper__section h4{
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.538;
    text-align: left;
}
.main .wrapper__section p{
  color: #777777;
  font-size: 1rem;
}

.wrapper__section .custom-btn.big{
  min-width: 135px;
  background-color: transparent;
  border-width: 3px;
  border-style: solid;
  line-height: 1;
  font-size: .8rem !important;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  box-shadow: none;
  outline: none;
  border-radius: 5px;
  transition: background-color .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
  min-height: 26px;
  min-width: 167px;
  padding: 15px 20px 13px;  border-color: #008dd2;
  color: #504935;

}
/*===============  ===============*/
.gallery-section{
  background: rgb(233, 241, 238) !important;
}
.gallery__item--text {
  padding-left: 10px;
}
.gallery__item--text p {
  margin-top: 15px;
  margin-bottom: 15px;
}
.gallery-more-link {
  line-height: 1.2;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
}
.gallery__item__inner {
  background-color: #4a8b71;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}
.gallery__item figure {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 !important;
}
.gallery-column{
  padding-right: 0; 
  padding-left: 0;
}

.gallery__item img{
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .6;
}

.gallery__item figure .gallery__item__description {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  padding: 20px;
  justify-content: flex-end;
  opacity: 1;
}
.gallery__item figure .gallery__item__title {
  
  font-weight: 600;
}
.gallery__item__description{
  width: 100%;
  padding: 15px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.4rem;
}



/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (min-width: 320px){
  .px-5 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
  .about__wrapper .grid{
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
  }
  .main .wrapper__section h2{
    font-size: 1.8rem;
  }
  .main .wrapper__section h4{
      font-size: .9rem;
  }
  .main .wrapper__section p{
    font-size: .8rem;
    color: #777777;
    font-size: 1rem;
  }

}

/* For medium devices */
@media screen and (min-width: 767px) {
  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav-toggle, .nav-close{
    display: none;
  }
  .nav-list{
    padding-top: .9rem;
    flex-direction: row;
  }
  .nav-link{
    font-size: var(--normal-font-size);
    text-transform: initial;
  }

  .scroll-header .nav-link{
    color: var(--text-color);
  }
  .scroll-header .active-link{
   color: var(--title-color);
 }
 .scroll-header .active-link::after{
   background-color: var(--title-color);
 }
 .about__wrapper .grid{
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3rem;
}
.main .wrapper__section h2{
  font-size: 2.5rem;
}
.main .wrapper__section h4{
    font-size: 1.1rem;
}
.main .wrapper__section p{
  font-size: 1rem;
}

}

/* For large devices */
@media screen and (min-width: 1024px){
  
  .about-section .column__content{
    padding-left: 3rem;
  }
}

/* Alternative code, for larger screens */
@media screen and (min-width: 1200px){
  .about__wrapper .grid{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    column-gap: 3rem;
  }
}

 






.ul2 {
  display: flex;
  /* align-items: center;
  justify-content: center; */
  flex-wrap: wrap;
  margin: 1rem;
  list-style-type: none;
  font-size: 1.5rem;

}

.ul2 li {
  padding: 10px;
}
 
.i{
  color: #008dd2;
}


.siz1{
  height: 250px;
  width: 100%;
}
.footer-color{
  background-color: #daedf7;//#4a8b71;
  color: #000;
}

.card1 {
  box-shadow: 2px 2px 5px rgb(0, 0, 0);
  border-radius: 30px;
  background: gainsboro;

}

.card1-body {
  background: gainsboro;
}

.card1-footer {
  background: #171717;
  border-bottom-left-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
}

.card1-header {
  border-radius: 30px !important;
  border: 0px;
  background: gainsboro;
}

.card1-header img {
  border-radius: 30px;
}
.round{
  border-radius: 20px;
}
.card2{
height: 330px;
width:330px;
}
p{
  text-align: justify;
}
.choose-text-box2 .inner-content p i {
  color: #4a8b71;
  font-size: 14px;
  display: inline-block;
 
}
.line-hg{
  line-height:35px;
}
.bi-facebook:hover {
  color: #1877f2;
}
.bi-instagram:hover {
  color: #cf3f84;
}
.bi-linkedin:hover {
  color: #0077b5;
}
.bi-whatsapp:hover {
  color: #5af176;
}
.he{
  height: 200px;
}