.banner-wrapper {
  width: 100%;
}
.content-cards {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 250px);
  justify-content: center;
  align-content: center;
  gap: 30px;
}
.content-cards .content-item {
  padding: 30px 50px 40px 50px;
  background: #fff;
  border-radius: 3px;
}
.content-cards .content-item .icon {
  font-size: 40px;
}
.content-cards .content-item .name {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 20px;
}
.content-cards .content-item .font-red:hover {
  color: #000;
  transition: all 0.3s linear;
}
.text-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.text-links .name {
  margin-bottom: 15px;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .content-cards {
    grid-template-columns: 1fr;
  }
  .text-links {
    grid-template-columns: 1fr;
    gap: 1.333rem /* 50/37.5 */;
  }
}
/*# sourceMappingURL=index.css.map */