.CardModules {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.CardModules h1{
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-top: 180px;
}

.CardModules > p {
  width: 80%;
  line-height: 24px;
  margin: 20px 0;
}
.CardModules h2 {
  width: 80%;
  text-align: center;
  margin-top: 20px;
  font-weight: 300;
}

.containerCards {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  width: 20%;
  margin: 5px;
}

.card:hover{
  background-color: #7b101e;
  color: white;
  transition: .5s;
}

.card p {
  text-align: center;
}

.Modules {
  margin-top: 120px;
}

.containerModules {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.module {
  width: 90%;
  display: flex;
  justify-content: flex-start;
  margin: 80px 0;
}

.module h3 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.module p {
  text-align: justify;
  width: 90%;
}

.module img {
  height: 500px;
}

.module ul li {
  padding: 5px 0;
  list-style: outside;
}

@media (max-width: 756px) {

  .CardModules h1 {
    font-size: 1.4rem;
  }

  .CardModules p {
    font-size: 0.9rem;
  }

  .containerCards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .card {
    width: 90%;
    margin: 5px;
  }

  .module {
    flex-direction: column;
  }

  .module img {
    height: 300px;
  }
  

}
