.cards-section {
  background-color: #e9f5f6;
  margin-bottom: 64px;
}
.cards-section .container {
  padding-bottom: 64px;
  padding-top: 64px;
  border-top: 4px solid #e4e7ec;
}
.cards-section .card {
  border: none;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #fff;
  padding: 1.5rem;
  height: 100%;
  text-align: center;
}
.cards-section .card .icon {
  background-color: #1e7882;
  border-radius: 10px;
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 2rem auto;
}
.cards-section .card .title {
  color: #101828;
  font-size: 20px;
  font-family: "inter-bold";
  margin-bottom: 0.7rem;
}
.cards-section .card .desc {
  color: #475467;
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width: 1500px) {
  .cards-section {
    border-bottom: 2px solid #e4e7ec;
  }
  .cards-section .conatiner {
    padding-bottom: 40px;
  }

  .cards-section .card .icon {
    width: 42px;
    height: 42px;
  }
  .cards-section .card .title {
    font-size: 18px;
  }
  .cards-section .card .desc {
    font-size: 14px;
  }
}
