.product-banner-section {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.banner-heading {
  position: relative;
  z-index: 2;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .banner-heading {
    margin-bottom: 110px;
  }
}

/* -------------about-us-section----------- */
.about-us-section {
  padding: 60px 0;
}

.about-first-subsection h2 {
  font-weight: 500;
  font-size: 26px;
  line-height: 38px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-first-subsection p {
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  text-align: justify;
  color: #4d4d4d;
  margin-bottom: 20px;
}
.mission-card,
.vision-card {
  padding: 25px 37px;
  border-radius: 0;
  border: none;
  background-color: #f9fffb;
}
.mission-card {
  margin-bottom: 34px;
}
.about-second-subsection {
  border-radius: 0;
  background-color: #f9fffb;
  border: none;
  padding: 47px;
}
/* -----------podcasts-section---------- */
.podcasts-section {
  padding: 60px 0;
  background-color: #f9fffb;
}
.podcasts-section h2 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.podcast-image-wrapper {
  width: 100%;
  height: 100%;
  max-width: 384px;
  max-height: 428px;
}
.podcast-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 90%;
}
.podcasts-content {
  background-color: #f9fffb;
}
.podcasts-details-section {
  padding: 30px 0;
}
.podcasts-details-section p {
  color: #4d4d4d;
  font-size: 16px !important;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 10px;
  text-align: justify;
}
.podcasts-details-section h5 {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  color: var(--primary);
}
.podcasts-details-section span {
  font-size: 16px;
  display: block;
  color: var(--primary);
  font-weight: 400;
  font-family: var(--ff-secondary);
  margin-bottom: 42px !important;
}
@media (max-width: 768px) {
  .podcasts-section {
    padding: 48px 0;
  }
  .podcasts-section h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .podcasts-details-section p {
    font-size: 15px;
  }
  .spotify-section iframe {
    width: 100%;
  }
}
