.topics__text {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
}

.topics__body {
  font-size: 22px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .topics__text {
    margin-bottom: 60px;
  }
} 

.topics--lightblue {
  background-color: var(--beforce-lightblue);
  color: white;
}

.topics--lightblue .topics__body {
  color: var(--main);
}
.topics--lightblue h2 {
  color: #fff;
}

.topics--blue {
  background-color: var(--beforce-blue);
  color: white;
}

.topics--blue h2 {
  color: white;
}

.topics--grey {
  background-color: #f5f5f5;
  color: var(--beforce-blue);
}

.topics--white {
  background-color: #fff;
  color: var(--beforce-blue);
}


