@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;  
}

section{
  min-height: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin-right: 20px;
}

section:nth-child(1){
  color: #fff;
}

section:nth-child(2){
  color: #1D212B;
  background: #fff;
}

section:nth-child(3){
  color: #fff;
}

section:nth-child(4){
  color: #1D212B;
  background: #fff;
}

section .container{
  margin: 10px;
  background: white;
}

section h1{
  font-size: 60px;
}

section h2{
  font-size: x-large;
  text-align: center;
}

section h3{
  font-size: large;
  text-align: left;
}

section .cards{
  display: flex;
}

section .cards .h2{
  text-align: center;
}

section .cards .text-card{
  background: white;
}

section .cards .text-card h3{
  font-size: large;
  background: linear-gradient(to top, #E3FDF5 0%, #FFE6FA 100%);
  text-align: center;
  margin-bottom: 10px;
}

section .cards .text-card h4{
  font-size: x-large;
  text-align: left;
}

section .cards .text-card p{
  font-size: medium;
  text-align: left;
  margin-bottom: 10px;
}

section .cards .text-card img{
  border-radius: 10px;
}

section .cards .text-card li{
  text-align: left;
}

@media (max-width: 900px){
  section h1{
    font-size: 40px;
  }

  section .cards{
    flex-direction: column;
  }
}

.revealX{
  position: relative;
  transform: translateX(50px);
  opacity: 0;
  transition: all 1s ease;
}

.revealX.active{
  transform: translateX(0px);
  opacity: 1;
}