/*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/
.timeline-new h4 {
  font-size: 24px;
  font-weight: 600;
  color: #53789e;
  padding:0;
  margin:0px 0px 5px 0px;
}
.timeline-new p {
  color: #2a2c39;
  font-weight: 600;
  font-size: 18px;
}
ul.timeline-new {
  list-style-type: none;
  position: relative;
}
ul.timeline-new:before {
  content: ' ';
  background: #53789e;
  display: inline-block;
  position: absolute;
  left: 29px;
  width: 2px;
  height: 100%;
  z-index: 400;
}
ul.timeline-new > li {
  margin: 60px 0;
  padding-left: 20px;
}
ul.timeline-new > li:before {
  content: ' ';
  background: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #53789e;
  left: 20px;
  width: 20px;
  height: 20px;
  z-index: 400;
}

/*------------------------------------
		TIMELINE
------------------------------------*/
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 5px;
  margin-left: -1.5px;
  margin-bottom: 25px;
  content: '';
  background-color: #e9ecef;
}

.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}

.timeline > li:after, .timeline > li:before {
  display: table;
  content: ' ';
}

.timeline > li:after {
  clear: both;
}

.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 5px solid #16a085;
  border-radius: 100%;
  background-color:#fafaf8;
}

.timeline > li .timeline-image h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li:last-child {
  margin-bottom: 0;
}

.timeline .timeline-heading h4 {
  margin-top: 0;
  color: inherit;
}

.timeline .timeline-heading h4.subheading {
  text-transform: none;
}

.timeline .timeline-body > ul,
.timeline .timeline-body > p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    min-height: 125px;
    margin-bottom: 100px;
  }
  .timeline > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .timeline > li {
    min-height: 100px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 80px;
    height: 80px;
    margin-left: -40px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}

@media (min-width: 1200px) {
  .timeline > li {
    min-height: 100px;
  }
  .timeline > li .timeline-panel {
    padding: 10px 10px 20px 25px;
  }
  .timeline > li .timeline-image {
    width: 120px;
    height: 120px;
    margin-left: -60px;
  }
  .timeline > li .timeline-image h4 {
    margin-top: 40px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 25px 20px 10px;
  }
  
  
  .battery{
	display: flex;
	justify-content: center;
	align-items: center;
}
  
}




/*------------------------------------
		BATTERY
------------------------------------*/

.battery{
	display: flex;
	justify-content: center;
	align-items: center;
}
.outer{
	width: 180px;
	height: 85px;
	border: 5px solid #16a085;
	display: flex;
	padding: 5px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.5s;
	float:left;
	background-color:#fafaf8;
	-ms-box-shadow: 0 0 20px rgba(46,50,51,.1);
    -o-box-shadow: 0 0 20px rgba(46,50,51,.1);
    box-shadow: 0 0 20px rgba(46,50,51,.1); 
}
.inner{
	height: 100%;
	background-color: #16a085;
	flex: 1;
	border-radius: 2px;
	opacity: 0;
	animation: ani1 2.5s infinite;
}
.outer:hover{
	border: 5px solid #1abc9c;
}
.outer:hover .inner{
	background-color: #1abc9c;
}
.inner:nth-child(2){
	margin: 0 4px;
	animation: ani2 2.5s infinite;
}
.inner:nth-child(3){
	margin: 0 4px 0 0;
	animation: ani3 2.5s infinite;
}
.inner:nth-child(4){
	animation: ani4 2.5s infinite;
}
.pole{
	width: 7px;
	height: 30px;
	border-radius: 0 5px 5px 0;
	background-color: #16a085;
}

@keyframes ani1{
	33%, 100%{
		opacity: 1;
	}
}
@keyframes ani2{
	0%, 25%{
		opacity: 0;
	}
	66%, 100%{
		opacity: 1;
	}
}
@keyframes ani3{
	0%, 50%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
} 
@keyframes ani4{
	0%, 75%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

	@media (max-width: 812px) {
		.outer{
			width: 250px;
			height: 118px;
		}
		.pole{
			width: 10px;
			height: 38px;
			border-radius: 0 5px 5px 0;
			background-color: #16a085;
		}
	}