@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wdth,wght@0,75,300..800;1,75,300..800&display=swap");
@font-face {
  font-family: NotoSansRegular;
  src: url(../fonts/NotoSans-Regular.ttf);
}
@font-face {
  font-family: NotoSansBold;
  src: url(../fonts/NotoSans-Bold.ttf);
}
@font-face {
  font-family: NotoSansLight;
  src: url(../fonts/NotoSans-Light.ttf);
}
.imageCard {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem !important;
  background: #012d22;
  color: #fff;
}
.imageCard .img_box {
  display: flex;
  min-width: 0;
}
.imageCard .img_box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.imageCard .content_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.5rem;
}
.imageCard h4 {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 120%;
}
.imageCard .img_divider {
  width: 150px;
  max-width: 100%;
  height: 2px;
  margin-block: 1rem;
  background: #24C790;
}
.imageCard p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Noto Sans", sans-serif;
  font-size: 1rem;
  line-height: 150%;
}

@media only screen and (min-width: 767px) {
  .imageCard {
    flex-direction: row;
    gap: 2.5rem;
    min-height: 326px;
    padding: 0.5rem;
  }
  .imageCard .img_box {
    flex: 0 0 48.5%;
  }
  .imageCard .img_box img {
    height: 100%;
  }
  .imageCard .content_box {
    flex: 1 1 auto;
    padding: 0.875rem 0;
  }
  .imageCard h4 {
    font-size: 2rem;
  }
  .imageCard p {
    font-size: 1.125rem;
  }
}

/*# sourceMappingURL=imageCard.css.map */
