/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* top title */

.top-title {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.top-title h2{
  color: #333333;
}
/* css for header & footer */

header {
  background-color: #1c6920;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}


footer {
  background-color: #1c6920;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.flex-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
}

.footer {
  margin-top: auto;
  font-size: 14px;
  justify-content: center;
}

@media (max-width: 768px) {
  .header-content,
  .footer-content {
      padding: 0 20px;
  }
}


/* css for slide */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

main{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.card{
  border-radius: 25px;
  background-color: #FFF;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
  text-align: center;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #1c6920;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #1c6920;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 175px;
  width: 290px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: fill
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #1c6920;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #194e1d;
}

.swiper-navBtn{
  color: #2e6e32;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #1c6920;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #2e6e32;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #1c6920;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

