.jgs__container {
  position: relative;
  transition: opacity 400ms ease;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  overflow: hidden;
}
.jgs__motivational {
  position: absolute;
  top: 3%;
  right: 10%;
  transition: 800ms ease opacity;
  color: #fff;
  font-family: "Montserrat";
  font-size: 3rem;
  font-weight: bold;
  opacity: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .jgs__motivational {
    font-size: 1.5rem;
  }
}
.jgs__motivational.active {
  opacity: 1;
}
.jgs__percentage-container {
  display: flex;
  position: absolute;
  top: 50%;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  transform: translateY(-50%);
  transition: opacity 200ms ease;
  border-radius: 50%;
  background: #e67e36;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .jgs__percentage-container {
    width: 50px;
    height: 50px;
    margin-left: 50px;
  }
}
.jgs__percentage-container.active {
  opacity: 1;
}
.jgs__percentage-value {
  color: #fff;
  font-family: "Montserrat";
  font-size: 2rem;
}
.jgs__image-container {
  position: relative;
}
.jgs__overlay-container {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  transform-origin: bottom;
  overflow: hidden;
}
.jgs__overlay-image {
  position: absolute;
  right: 0;
  height: 100%;
  transform-origin: bottom;
}
.jgs__image-base {
  width: 100%;
}
.jgs__steps-container {
  position: relative;
  background: #4b4b4b;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .jgs__steps-container {
    display: none;
  }
}
.jgs__step {
  position: relative;
  width: 25%;
  padding: 15px 0;
  float: left;
  transform-origin: top;
  border-right: 2px solid #fff;
  color: #fff;
  font-family: "Montserrat";
  text-align: center;
}
.jgs__step:last-child {
  border: 0;
}
.jgs__sum-goal {
  display: block;
  font-size: 2rem;
}
.jgs__goal {
  display: block;
  font-size: 1.4rem;
}
.jgs__steps-highlighted {
  position: absolute;
  left: 0;
  height: 100%;
  transform-origin: top;
  background: #e67e36;
}
