body { font-family: "Arimo", sans-serif; width: 100%;  overflow-x: hidden; }
 
.timeline {
  display: flex;
  flex-direction: column;
  margin: 10px auto; 
  position: relative;
}
.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 25px 0;
  border-radius: 0px;
  align-self: center;
  width: 85%;
}
.timeline__event:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.timeline__event:nth-child(2n+1) .timeline__event__date {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.timeline__event:nth-child(2n+1) .timeline__event__content {
  border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
 
.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 165px;
  background: #fff;
  position: absolute;
  top: 0%; border-left:2px dotted #445060;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
  content: "";
  width: 100px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;  border-bottom: 2px dotted #445060;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
          animation: fillLeft 2s forwards 4s ease-in-out;
}
.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #445060;
  letter-spacing: 1.5px;
}
.timeline__event__content {
  padding: 35px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: calc(100% - 150px);
  border-radius: 0px;
}
.timeline__event__date {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  background: #445060;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 45px; letter-spacing: 0.1px;
   border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #445060;
  padding: 20px;
  align-self: center;
  margin: 0 50px;
  background: #b40607;
     border-radius: 0px;
  width: 20px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 10px;
  height: 20px;
  position: relative;
}
.timeline__event__icon i {
  font-size: 32px;
}
.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 130px;
  background: #fff;
  position: absolute; border-left: 2px dotted #445060;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event__icon:after {
  content: "";
  width: 100px;
  height: 2px;
  background: #fff;
  position: absolute; border-bottom: 2px dotted #445060;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: fillLeftOdd 2s forwards 4s ease-in-out;
          animation: fillLeftOdd 2s forwards 4s ease-in-out;
}
.timeline__event__description {
  flex-basis: 100%;
}
.timeline__event--type2:after {
  background: #445060;
}
.timeline__event--type2 .timeline__event__date {
  color: #fff;
  background: #445060;
}
.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
  background: #fff;
}
.timeline__event--type2 .timeline__event__icon {
  background: #b40607;     border-radius: 0px;
  color: #fff;
}
.timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
  background: #fff;
}
.timeline__event--type2 .timeline__event__title {
  color: #445060;
}
.timeline__event--type3:after {
  background: #445060;
}
.timeline__event--type3 .timeline__event__date {
  color: #fff;
  background-color: #445060;
}
.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
  background: #fff;
}
.timeline__event--type3 .timeline__event__icon {
  background: #b40607;
  color: #fff;
}
.timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
  background: #fff;
}
.timeline__event--type3 .timeline__event__title {
  color: #445060;
}
.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

@media (max-width: 786px) {


  .timeline__event:nth-last-child(1) .timeline__event__icon {
    background: #b40607 !important;
    color: #fff;
}



  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 0px;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before, .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon {
    border-radius: 0px;
    margin: 0;
  }
}
@-webkit-keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@-webkit-keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@-webkit-keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}


.timeline__event__description p { font-size: 17px;  color:#202429;
    line-height: 30px;
    
    margin-bottom: 0px;
    font-weight: 400;
    letter-spacing: 0.2px }


.timeline__event:nth-last-child(1) .timeline__event__icon:after { display: none; }


.timeline__event:nth-last-child(1) .timeline__event__icon {
    background: #fff;
    color: #fff;
}


.discprtiom .textwidget ul li::before {
    content: url(https://www.xscad.com/wp-content/themes/xscad/images/square-bullet.svg);
    color: #b40607;
     display: inline-block;
    width: 10px;
    font-size: 16px;
    float: left;
    margin-right: -20px;
    list-style: disc inside;
    position: absolute;
    left: 0px;
     rotate: 45deg;
     margin-top: 2px;
}
.discprtiom .textwidget ul li:last-child  {   margin-bottom: 0px; }
.discprtiom .textwidget ul li {  font-size: 17px;
    line-height: 30px;
    margin-bottom: 10px;
    letter-spacing: 0.2px; color:#202429;
}
.discprtiom ul { margin-bottom: 10px; }
.timeline__event__description .discprtiom { position: relative; margin-left: 20px;}

.inner_page_cus .left-swiper-area-start .single-left-banner-swiper-start .title { font-weight: 600;}


@media screen and (max-width: 1440px) and (orientation : landscape)  
{ 
 .timeline__event:nth-child(2n+1) .timeline__event__icon:before { height: 188px; }

}


/*  Small desktop */
@media screen and (max-width: 1200px) and (orientation : portrait)  
{
.timeline__event:nth-child(2n+1) .timeline__event__icon:before { height: 188px; }

}


@media screen and (max-width: 1200px) and (orientation : landscape)  
{
  .timeline__event:nth-child(2n+1) .timeline__event__icon:before { height: 188px; }

}