@import url('https://fonts.googleapis.com/css?family=Muli&display=swap'); 

* {
  box-sizing: border-box;
}



.container {
  width: 100%;
  display: flex;
  padding: 0 20px;
  background-color: #89d83bbe;
}

.slide {  
  position: relative;
  cursor: pointer;
  height: 72vh;
  flex: 1;
  margin: 10px;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: .5s
}

.slide > img {
  width: 90%;
  height: 90%;
}

.slide > h3 {
  position: absolute;
  color: rgb(209, 157, 13);
  bottom: 10px;
  left: 10px;
  opacity: 0;
  transition: .5s
  
}

.slide.active {
  flex: 10;
}

.slide.active > h3{
  opacity: 1
}

