/* ---- Create Accordion --- */
.accordion {
  display: flex;
  overflow: hidden;
  margin: 50px auto;
}
.accordion .tab {
  position: relative;
  width: 20%;
  height: inherit;
  padding: 20px;
  background: #000;
  color: #FFF;
  cursor: pointer;
  transition: width 0.5s ease;
}
.accordion .tab img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.accordion .tab .caption {
  position: absolute;
  z-index: 2;
  white-space: nowrap;
  top: 150px;
  opacity: 0;
}
.accordion .tab .caption h2 {
  margin-bottom: 2px;
  text-overflow: clip;
  font-size: 24px;
  text-transform: uppercase;
}
.accordion .tab .caption p {
  margin: 0;
  font-family: "Open Sans";
  font-size: 0.9rem;
}
.accordion .tab.active {
  width: 80%;
}
.accordion .tab.active img {
  opacity: 0.6;
}
.accordion .tab.active .caption {
  opacity: 1;
}/*# sourceMappingURL=image_accordion.css.map */