/*body {
  height: 100vh;
  align-items: center;
  display: flex;
}

.slide-effect {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text, .slideDown, .slideUp {
  position: relative;
  font-family: tahoma;
  font-size: 25px;
  opacity:0;
}

.text {
  top:40px;
  font-weight: bold;
  animation: slideUp ease .4s forwards;
}

.slideDown {
  top:-40px;
  left:5px;
  animation: slideDown ease .4s forwards .6s;
}

.slideUp {
  top:40px;
  left:10px;
  animation: slideUp ease .5s forwards 1.2s;
}


@keyframes slideUp {
  0% {transform: translateY(0);}
  100% {transform: translateY(-40px);opacity:1;}
}

@keyframes slideDown {
  0% {transform: translateY(0);}
  100% {transform: translateY(40px);opacity:1;}
}

@media only screen and (max-width: 600px) {
  .slide-effect, .text, .slideDown, .slideUp {
    font-size: 15px;
  }
} 

teste1*/ 

@import url("https://fonts.googleapis.com/css2?family=Asap&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Asap", sans-serif;
}
body {
  background: #42455a;
}
section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
section:nth-child(1) {
  color: #e0ffff;
}
section:nth-child(2) {
  color: #42455a;
  background: #e0ffff;
}
section:nth-child(3) {
  color: #e0ffff;
}
section:nth-child(4) {
  color: #42455a;
  background: #e0ffff;
}
section .container {
  margin: 100px;
}
section h1 {
  font-size: 3rem;
  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 .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;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}
.active.fade-left {
  animation: fade-left 1s ease-in;
}
.active.fade-right {
  animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.glide__container{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F1E8E6;
  color: #000;
font-family: 'Muli', sans-serif;
  z-index: 1;
}
.glide{
  max-width: 1200px;
  background-color: #fff;
  border-radius: 2em;
  padding: 2em 4em;
  -webkit-box-shadow: 0px 17px 34px -20px #f55951;
box-shadow: 0px 17px 34px -20px #f55951;
}
.glide__arrow{
  position: absolute;
  border: none;
  border-radius: 50%;
  padding: 1em;
  cursor: pointer;
  top: 45%;
}

.glide__arrow:hover,
.glide__arrow:focus{
  transform: scale(0.7);
  outline: none;
  
}
.glide__arrow--left{
  left: 8px;
}
.glide__arrow--right{
  right: 8px;
}
.fa-chevron{
  font-size: 1.5rem;
  border-radius: 50%;
  color: #f55951;
  width: 1em;
  height: 1em;
  text-align: center;
  display: inline-block;
  
  transition:0.5s;
}
.cards {
width: 180px;
height: 250px;
padding: 1.5em 1em 2em 1em;
text-align: center;
}

.cards:hover {
border: 1.5px solid #F1E8E6;
border-radius: 0.5em;
}

.cards__img {
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 1em;
-o-object-fit: cover;
object-fit: cover;
}

.cards__txt {
font-size: 0.8rem;
font-weight: 700;
}

.swiper-slide{
  min-height: 30vh;
  width: 300px;
  max-width: 70vw;
  background-color: rgb(230,230,230);
  
  &:nth-child(odd){
    background-color: rgb(230,200,230);
  }
}

.container {
  margin-top: 20vh;
}

.swiper-wrapper{
  transition-timing-function: linear;
}