 /*- Screen Sizes*/

.wrapper {
  /* margin: 3.125em auto; */
  margin: 1em auto;
  padding: 1em 5em 1em;
  max-width: 1000px;
}


/* - &:nth-child(1) {
			 grid-area: entry1;
		 }
   - useful timesaver if there is a lengthy list
*/
.timeline {
  line-height: 1.5em;
  font-size: 14px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: relative;
  counter-reset: section;
}
.timeline:before {
  content: "";
/*  width: 10px;*/
    width: 6px;
  height: 100%;
/*  background: #87ceeb;*/
    background: #707070;
  position: absolute;
  top: 0;
  left: -3.313em;
  border-radius: 40px 40px;
}

.timeline--entry {
  position: relative;
  background-color: #eeeeee;
    border: 3px solid #707070;
	border-radius: 10px;
}
.timeline--entry__title {
  color: white;
/*  background-color: #ec407a;*/
  font-weight: 300;
  padding: 1em;
  font-size: 18px;
  border-radius: 5px 5px 0 0;
}
.timeline--entry__title:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  left: -1em;
/*  border-right: 10px solid #ec407a;*/
  border-right: 10px solid #707070;
}
.timeline--entry__detail {
/*  background-color: #dddddd;*/
  /* background-color: #fff; */
  padding: 1em;
  margin: 0;
}
.timeline--entry:before {
  content: "";
  color: #ffffff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 3em;
  height: 3em;
  /* background-color: #87ceeb; */
  background-color: #66cccc;
  border: .2em solid white;
  border-radius: 50%;
  position: absolute;
  counter-increment: section;
  content: counter(section);
  text-shadow: 0 1px 0 #424242;
  left: -4.5em;
}

@supports (display: grid) {
  @media (min-width: 768px) {
    .timeline {
      display: grid;
      grid-gap: 4.75em;
      grid-template-areas: ".  entry1" "entry2  ." ". entry3" "entry4 ." ". entry5";
    }
    .timeline:before {
      left: 49.3%;
    }

    .timeline--entry:nth-child(1) {
      grid-area: entry1;
    }
    .timeline--entry:nth-child(2) {
      grid-area: entry2;
    }
    .timeline--entry:nth-child(3) {
      grid-area: entry3;
    }
    .timeline--entry:nth-child(4) {
      grid-area: entry4;
    }
    .timeline--entry:nth-child(5) {
      grid-area: entry5;
    }
    .timeline--entry:nth-of-type(odd):before {
/*      left: -3.8em;*/
        left: -4.2em;
        border: 3px solid #707070;
    }
    .timeline--entry:nth-of-type(even):not(:nth-of-type(odd)) .timeline--entry__title:before {
      left: 100%;
/*      border-left: 10px solid #ec407a;*/
      border-left: 10px solid #707070;
      border-right: 0;
    }
    .timeline--entry:nth-of-type(even):before {
      left: 103.5%;
        border: 3px solid #707070;
    }
  }
}

.left-img {
/*    width: 180px;*/
    position: absolute;
    left: -86%;
	bottom: 0;
	width: 75%;
}
.right-img {
/*    width: 180px;*/
    position: absolute;
/*    right: -60%;*/
    right: -86%;
	bottom: 0;
	width: 75%;
}
.inner-img {
    display: block;
    margin: 0 auto;
}
.navigationBox {
    color: #fff;
    margin-top: 20px;
    font-size: 2rem;
}
.stepBox {
    position: fixed;
}
/* -------------------------------------------------------------------------
  VERTICAL STEPPERS
-------------------------------------------------------------------------- */

/* Steps */
.step {
  position: relative;
  min-height: 1em;
  color: gray;
}
.step + .step {
  margin-top: 1em
}
.step > div:first-child {
  position: static;
  height: 0;
  text-align: right;
  padding-right: 55px;
}
.step > div:not(:first-child) {
  margin-left: 1.5em;
  padding-left: 1em;
  float: right;
}
.step.step-active {
  color: #4285f4
}
.step.step-active .circle {
  background-color: #4285f4;
}

/* Circle */
.circle {
  background: gray;
  position: relative;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 0 3px #fff;
  font-size: 21px;
}

/* Vertical Line */
.circle:after {
  content: ' ';
  position: absolute;
  display: block;
  top: 1px;
  right: 50%;
  bottom: 1px;
  left: 46%;
  height: 100%;
  width: 4px;
  transform: scale(1, 2);
  transform-origin: 50% -100%;
  background-color: #999;
  z-index: -1;
}
.step:last-child .circle:after {
  display: none
}

/* Stepper Titles */
.title_info {
  line-height: 1.5em;
  font-weight: bold;
  font-size: 18px;
  padding-top: 5px;
}
.caption {
  font-size: 0.8em;
}
/*    box color*/
    .bg-blue-light{
        background-color: #66cccc;
    }
    .bg-blue-dark{
        background-color: #0a5a92;
    }
    .img-50{
        width: 50%;
	   height: auto;
    }
    .img-90{
        width: 90%;
        height: auto;
    }
    .mb-10{
        margin-bottom: 10px;
    }
    .timeline-entry-bg-blue:nth-of-type(even):before{
        /* background-color: #0a5a92; */
        background-color: #808080;
    }
    .timeline-entry-bg-blue:nth-of-type(odd):before{
        /* background-color: #0a5a92; */
        background-color: #808080;
    }

    .info-description01{
      font-size: 17px;
      margin-bottom: 20px;
    }


    /* infographics responsive css */

    .stepwizard-step p {
      margin-top: 10px;    
  }
  
  .stepwizard-row {
      display: table-row;
  }
  
  .stepwizard {
      display: table;     
      width: 100%;
      position: relative;
  }
  
  .stepwizard-step button[disabled] {
      opacity: 1 !important;
      filter: alpha(opacity=100) !important;
  }
  
  .stepwizard-row:before {
      top: 14px;
      bottom: 0;
      position: absolute;
      content: " ";
      width: 100%;
      height: 3px;
      background-color: #ccc;
      z-order: 0;
      
  }
  
  .stepwizard-step {    
      display: table-cell;
      text-align: center;
      position: relative;
  }
  
  .btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0!important;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px!important;
    margin-top: 0;
    border: 1px solid #eee!important;
    background-color: #808080;
    color: #fff;
  }

  .info-nav-div01{
    display:none;
  }

  
    
  