/* Banner Style Six */
.banner-section.style-six {
  position: relative;
  overflow: hidden;
  /* background: #fff; */
  background: #edeef3;
  /* dark teal background like reference */
}

.banner-section.style-six .slide-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0;
  height: 600px;
}

.banner-section.style-six .bg-layer {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  /* image only on right */
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);

}

/* angled orange shape */
.banner-section.style-six .overlay-shape {
  position: absolute;
  right: 29%;
  top: 0;
  width: 50%;
  height: 100%;
  /* background: rgba(255, 68, 0, 0.85); */
  /* clip-path: polygon(75% 0, 100% 0, 50% 100%, 0 100%); */
  background: rgb(16 102 70 / 75%);
  clip-path: polygon(70% 0, 100% 0, 50% 100%, 0 100%);
  /* diagonal */
  z-index: 2;
}

.banner-section.style-six .content-box {
  position: relative;
  z-index: 5;
  max-width: 700px;
  color: #fff;
}

.banner-section.style-six .content-box h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000000;
  text-transform: capitalize;
}

@media (min-width: 1200px) {
  .banner-section.style-six .content-box {
    margin-left: -51px;

  }
}

.banner-section.style-six .content-box h2 span {
  /* background: #fff; */
  color: #106646;
  display: inline-block;
  padding: 4px 0px;
}

.banner-section.style-six .content-box p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
  color: #dfeff0;
}

.theme-btn.btn-orange {
  background: #106646;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
}

.theme-btn.btn-orange span {
  margin-left: 8px;
  font-weight: 700;
}

.theme-btn.btn-orange:hover {
  /* background: #d93610; */
}

/* top shape */
.banner-section.style-six .shape-top-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 180px;
  /* adjust as needed */
}

.banner-section.style-six .shape-top-left img {
  width: 100%;
  height: auto;
  display: block;
}

/* bottom shape */
.banner-section.style-six .shape-bottom-left {
  position: absolute;
  bottom: 34px;
  left: 42px;
  z-index: 3;
  width: 220px;
  /* adjust as needed */
}

.banner-section.style-six .shape-bottom-left img {
  width: 30%;
  height: auto;
  display: block;
}

@media (min-width: 1200px) { 
  .banner-section.style-six .content-box
  {
    margin-left: -95px;
    margin-bottom: 50px;
  }
 }