.infoMain {
  display: grid;
/*  position: absolute;*/
/*  background: url("assets/images/infographImages/info_bg.jpg");*/
  background-size: cover;
/*  width: 1200px;*/
/*  height: 800px;*/
  width: 100%;
  height: 60vh;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(17%, 1fr));
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  overflow: hidden;
  line-height: 1em;
/*  left: 0px;*/
/*    margin-top:70px;*/
    padding-bottom: 30px;
}

.infoSection {
  background: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1em
}

.info-cover {
/*  position: absolute;*/
  width: 100%;
  height: 100%;
  background: rgba(207, 153, 137, 1);
  animation-name: example;
  animation-duration: 1s;
  webkit-animation-play-state: paused;
  animation-play-state: paused;
  animation-fill-mode: forwards;
  z-index: 2;
  animation-iteration-count: 1;
/*  box-shadow: 10px 10px 5px rgba(0,0,0,0.3);*/
  line-height: 1em;
}

.infoMain img {
  max-width: 80%;
  max-height: 80%;
}

.graphic {
  position: absolute;
  width: 80%;
  z-index: 1;
}

@keyframes example {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    transform: translateX(-105%);
    width: 100%;
    opacity: 0.8;
    background: rgba(157, 215, 242, 1);
/*    box-shadow: -10px 10px 5px rgba(0, 0, 0, 0.3);*/
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.words {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 1s;
  webkit-animation-play-state: paused;
  animation-play-state: paused;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  font-family: 'BebasNeueRegular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + (24 - 14) * ((100vw - 300px) / (1600 - 300)));
  margin-left: 10%;
  margin-right: 10%;
  color: black;
  z-index: 3;
  opacity: 0;
  text-align: center;
  line-height: 1em;
}

.pink {
  background: rgba(207, 153, 137, 1);
}

.green {
  background: rgba(19, 68, 60, 1);
}

.source.green {
  background: rgba(19, 68, 60, 0.8);
}

.blue {
  background: rgba(157, 215, 242, 1);
}

.gray {
  background: rgba(229, 229, 229, 1);
}
