.cd-horizontal-timeline {
  opacity: 0;
  margin: 0 auto 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.cd-horizontal-timeline .fa-circle {
  color: #E81E1E;
  font-size: 11px;
  padding-right: 15px;
  position: relative;
  top:8px;
}

.cd-horizontal-timeline h2{color: #FFF; padding-bottom: 40px;}
.cd-horizontal-timeline::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.cd-horizontal-timeline.loaded {
  /* show the timeline after events position has been set (using JavaScript) */
  opacity: 1;
}
.cd-horizontal-timeline .timeline {
  position: relative;
  height: 100px;
  width: 100%;
  margin: 0 auto;
}
.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0px 40px;
  overflow: hidden;
}
.cd-horizontal-timeline .events-wrapper::before {
  /* these are used to create a shadow effect at the sides of the timeline */
    content: '';
    position: absolute;
    z-index: 2;
    top: 63px;
    height: 12px;
    width: 12px;
    background: #fff;
    border-radius: 50%;
    left: 0px;
}

.cd-horizontal-timeline .events-wrapper::after{
    content: '';
    position: absolute;
    z-index: 2;
    top: 59px;
    height: 24px;
    width: 13px;
    background-image: url(../timeline-arrow-1.html);
    right: 0px;
    background-repeat: no-repeat;
}

.cd-horizontal-timeline .events {
  /* this is the grey line/timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 70px;
  height: 1px;
  /* width will be set using JavaScript */
  border-bottom: dotted 2px #FFFFFF;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}
.cd-horizontal-timeline .filling-line {
  /* this is used to create the green line filling the timeline */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /*background-color: #e81e1e;*/
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 30px;font-family: 'Anton', sans-serif;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  padding-bottom: 25px;
  color: #B9B9B9;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  border: 2px solid #B9B9B9;
border-radius: 6px; padding: 3px 5px; border: 2px solid #B9B9B9;
}

.cd-horizontal-timeline .events a.selected{ background: #E81E1E; border: 2px solid #E81E1E; color: #fff;
  border-radius: 6px; padding: 3px 5px;}

.cd-horizontal-timeline .events a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -46px;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background-color: #B9B9B9;
  border: 5px solid rgba(256,256,256,0.2);
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #e81e1e;
  /*border-color: #e81e1e;*/
}
.cd-horizontal-timeline .events a.selected {
  pointer-events: none;
}
.cd-horizontal-timeline .events a.selected::after {
  background-color: #e81e1e;
  border: 5px solid rgba(256,256,256,0.2);height: 17px;width: 17px;bottom: -46px;
      -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -moz-background-clip: padding;     /* Firefox 3.6 */
  -webkit-background-clip: padding;  /* Safari 4? Chrome 6? */
  background-clip: padding-box;  
}



.cd-timeline-navigation a {
  /* these are the left/right arrows to navigate the timeline */
  position: absolute;
  z-index: 1;
  top: -100%;
  bottom: auto;
 
}

.cd-timeline-navigation a.prev {    background: url(../svg/prev-blue.svg) no-repeat; width: 56px; height: 56px;     color: transparent;font-size: 0; right: 80px;} 

.cd-timeline-navigation a.next {    background: url(../svg/next-blue.svg) no-repeat; width: 56px; height: 56px;     color: transparent; font-size: 0;}


.cd-timeline-navigation a.next {
  right: 0;
}
.no-touch .cd-timeline-navigation a:hover {
  border-color: #e81e1e;
}
.cd-timeline-navigation a.inactive {
  cursor: not-allowed;
}
.cd-timeline-navigation a.inactive::after {
  background-position: center -16px;
}
.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
  position: relative;
    width: 100%;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    transition: height 0.4s; 
    background-color: #FFF;
    border-radius: 6px;
    padding: 30px 30px;
    display: inline-table;
    margin-top: 40px;
    min-height: 300px;
}

.cd-horizontal-timeline .events-content:before{content: '';
  display: block;
  position: absolute;
  top: -8px;
  left: 26px;
  width: 26px;
  height: 26px;
  margin: 0 auto;
  background: #FFFFFF;
  -moz-transform: rotate(-45deg)!important;
  -webkit-transform: rotate(227deg)!important;}
.cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 0 ;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  list-style: none;
}
.cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  list-style: none;
}
.cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}
.cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}
.cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
}
.cd-horizontal-timeline .events-content li > * {
  max-width: 100%;
  margin: 0 auto;
}
.cd-horizontal-timeline .events-content h2 {
 color: #000 ;
  font-size: 30px;
  font-weight: 400;
  font-family: "Anton";
  padding-bottom: 5px;
}
.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto;color:#e81e1e;
}

.cd-horizontal-timeline .iconspara img{padding-right: 10px; width: 4%;}
.cd-horizontal-timeline .rightside h4{padding-top:20px;}

.cd-horizontal-timeline .events-content em::before {
  content: '- ';color: rgba(255, 255, 255, 0.37);
}
.cd-horizontal-timeline .events-content p {
  font-size: 1.4rem;
  color: #959595;
}
.cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
  line-height: 30px; color: #000;font-size: 18px; font-family: 'Raleway';
  font-weight: 500;
    margin: 15px 0;
}
.cd-horizontal-timeline .events-content h5{color: #000;font-size: 22px;font-weight: 400;position: relative;text-align: left; display: inline-block;  font-family: 'Anton'; float: right;
  line-height: 32px;}
.cd-horizontal-timeline .events-content h5 span{display: block;color:#000;font-size: 18px;font-weight: 600; font-family: 'Raleway';}

@media only screen and (min-width: 768px) {
 
  .cd-horizontal-timeline .events-content em {
    font-size: 2rem;
    color: #e81e1e;font-style: normal;
  }
  .cd-horizontal-timeline .events-content p {
    font-size: 18px; font-weight: 500; font-family: 'Raleway'; line-height: 30px; display: flex;}
}


@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0%);
  }
}
@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}


/*horizonal time line ends*/


#horizontaltimln h4.specialHead{text-align: center;color: #fff}
#horizontaltimln{padding: 70px 0;}



