:root {
  --shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  --card-radius: 20px;
}

.static-header {
  position: relative;
  margin-bottom: 35px;
}
.static-header img {
  width: 100vw;
  height: var(--banner-img-height);
  object-fit: cover;
}
.static-header .heading-holder {
  font-size: 22px;
  color: var(--white);
  font-family: var(--pf-medium);
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.banner {
  position: relative;
  margin-bottom: 35px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: var(--banner-img-height);
  object-fit: cover;
}
/* .banner::after {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
} */
.banner .cont {
   color: var(--white);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px 15px;
  z-index: 10;
}

.banner .cont .title {
  font-size: 22px;
  font-family: var(--pf-medium);
}

.banner .cont .des {
  font-size: var(--font-s);
}
.static-header .heading-holder i {
  font-weight: 400;
}
.static-pages {
  background-color: var(--this-body-bg) !important;
}
.static-page p {
  font-size: var(--font-l);
}
.s-heading {
  font-size: 28px;
  font-family: var(--pf-medium);
  text-align: center;
  margin-bottom: 15px;
}
.s-shadow-card {
  background-color: var(--white);
  padding: 22px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}
.sec-title {
    font-size: 28px;
    font-family: var(--pf-medium);
    margin-bottom: 15px;
}
@media (min-width: 576px) {
  .static-header .heading-holder {
    font-size: 40px;
  }
  .banner .cont .title {
    font-size: 40px;
  }
      .banner .cont .des {
        font-size: var(--font-m);
    }
}
