@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.lightService {
       position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #024671, #346889, #23a6d5, #23d5ab);
    background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

.lightService {
  width: 100%;
  /*height: 200vh;*/
  height:auto;
  padding-bottom:100px;
  padding-top:90px;
   
  font-size: 16px;
  color: #012239;

}

 

.lightService nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 1.5rem 1rem;
  background-color: white;
  border-top: 4px solid #c080c0;
}

.lightService .header {
  max-width: 600px;
  margin: 15vh 0;
}

.lightService h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
}

.lightService h1 + p {
  margin-top: 1rem;
}

.lightService main {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.lightService .cards {
  display: flex;
  flex-direction: column;
  margin: 0;
  list-style: none;
  padding-left:0 !important;
}

@media (min-width: 600px) {
  .lightService .cards {
    flex-direction: row;
  }
}

.lightService .card {
  flex: 1;
  margin: 1rem;
  padding: 2rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0 6rem rgba(0, 0, 0, 0.1);
}

.lightService .card * {
  margin-bottom: 1rem;
}
.lightService .card p{text-align:justify;}
.lightService .card--image {
  font-size: 4rem;
  line-height: 1;
}

.lightService .card.-red .card--image {
  color: #ff8080;
}

.lightService .card.-green .card--image {
  color: #80c080;
}

.lightService .card.-blue .card--image {
  color: #8080ff;
}