
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

section{
  width: 100%;
  background-color: white;
  margin:5% 0 5% 5%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media only screen and (max-width: 900px) {
  section {
    width: 94%;
	  margin-left:3%;
	}
}



section:nth-child(1){
  color: #000000;
  }
section:nth-child(2){
  color: #000000;
  background: #ffffff;
} 
section:nth-child(3){
  color: #000000;
}
section:nth-child(4){
  color: #000000;
  background: #ffffff;
}
section .container{
  margin: 0;
}
/*section h1{
  margin: 20px;
}
section h2{
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
}

*/
section .text-container{
   display: flex;
}
section .text-container .text-box{
  margin: 20px;
  padding: 20px;
  background: #00c2cb;
}



section .text-container img{
  margin: 0;
  padding: 0;
  
}
section .text-container .text-box h3{
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 900px){
  section h1{
    font-size: 2rem;
    text-align: center;
  }
  section .text-container{
    flex-direction: column;
  }
}

.reveal{
  position: relative;
  margin: 0;
  padding-top:1.5%;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}