:root {
  --grid-gutter-width: 30px;
  --border-opacity: 1;
}

@media (max-width: 767px) {
  :root {
    --grid-gutter-width: 40px;
  }
}
.financial-assistance__head {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
}
.financial-assistance__left {
  width: 50%;
}
.financial-assistance__right {
  width: 50%;
}
.financial-assistance__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.financial-assistance__item {
  width: calc(50% - 1rem);
  box-sizing: border-box;
  padding: 4rem;
  background: #E6F5F3;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.financial-assistance__item-img {
  position: relative;
  width: 220px;
  height: 175px;
  border-radius: 0 20rem 20rem 0;
  overflow: hidden;
  margin-bottom: 3rem;
}
.financial-assistance__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.financial-assistance__item:nth-child(2n+1) .financial-assistance__item-img {
  width: 190px;
  height: 200px;
  border-radius: 0 0 20rem 20rem;
}
.financial-assistance__item-stat {
  margin-bottom: 4rem;
}
.financial-assistance__item-stat-val {
  font-size: 5.6rem;
  color: #3A3A3A;
  font-weight: 600;
  line-height: 1.3;
}
.financial-assistance__item-stat-val span {
  font-size: 3.2rem;
  border-radius: 3rem;
  background: rgba(64, 147, 123, 0.79);
  color: #fff;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  margin-top: 1.1rem;
  padding: 0.8rem 1.018rem;
  margin-left: 6px;
}
@media (max-width: 767px) {
  .financial-assistance__head {
    flex-direction: column;
    gap: 0;
  }
  .financial-assistance__left, .financial-assistance__right {
    width: 100%;
  }
  .financial-assistance__list {
    flex-direction: column;
    gap: 1.6rem;
  }
  .financial-assistance__item {
    width: 100%;
    padding: 2.4rem;
  }
  .financial-assistance__item-img {
    width: 180px;
    height: 135px;
    display: none;
  }
  .financial-assistance__item:nth-child(2n+1) .financial-assistance__item-img {
    width: 128px;
    height: 135px;
  }
  .financial-assistance__item .h5 {
    font-size: 1.6rem;
  }
  .financial-assistance__item-stat {
    margin-bottom: 2.4rem;
  }
  .financial-assistance__item-stat-val {
    font-size: 3.2rem;
  }
  .financial-assistance__item-stat-val span {
    font-size: 2rem;
    margin-top: 0.4rem;
    padding: 0.8rem 1.018rem;
  }
  .financial-assistance__item .ia-btn {
    width: 100%;
  }
  .financial-assistance__item .content-entry p {
    line-height: 1.3;
  }
}

/*# sourceMappingURL=financial-assistance.css.map */