<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.demo-timeline-wrapper {
  height: 750px;
  padding: 40px;
}

.demo-timeline-wrapper &gt; h2 {
  width: 80%;
  margin-left: auto;
  margin-right:auto;
  margin-bottom: 80px;
}

.gs-timeline-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  transform: scale(0, 1);
  transform-origin: left;
/*   overflow: hidden; */
  transition: transform 0.5s ease-in;
}

.gs-timeline-container &gt; .gs-timeline {
  width: 100%;
  position: relative;
  height: 141px;
  border-left: 1px solid white !important;
}




.gs-timeline-container &gt; .gs-timeline:hover .timeline-hover-item {
  opacity:100;
     transition: 0.30s;
}


/* .gs-timeline-container &gt; .gs-timeline:first-child {
  border-left: none;
} */

.gs-timeline-container &gt; .gs-timeline &gt; .header-container &gt; h3 {
  margin: 0px;
  padding: 20px 15px 60px;
  line-height: 1.25;
}
.gs-timeline-container &gt; .gs-timeline &gt; .header-container {
    overflow: hidden;
    max-height: 106px;
   min-height: 106px;
}

.gs-timeline-container &gt; .gs-timeline &gt; p {
  padding: 10px 15px 0px;
  margin: 0px;
  line-height: 1.5;
}

.timeline-hover-item {
  position: absolute;
  top: 115%;
  opacity:0;
  transition: 0.30s;
  left: -0.5%;
  z-index: 3;
}

 .timeline-arrow {
  background-color:white;
  position: absolute;
  left: 20%;
  top: -3%;
  transform: rotate(45deg);
  width: 38px;
  height: 38px;
  z-index: -3;
}



.timeline-hover-item &gt; .timeline-footer {
  padding: 16px 16px 0px 16px;
  width: 290px;
  background-color: white;
}

.timeline-hover-item &gt; .timeline-footer p {
/*   border: 1px solid black; */
  padding-bottom: 1.5rem;
  
}


.timeline-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 290px;
  height: 180px;
}

.timeline-image-container &gt; img {
    width: 290px;
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}

.gs-timeline-container-mobile {
  display: none;
}


@media (max-width: 1080px) {
  
   .demo-timeline-wrapper {
    height: auto !important;
  }
  .demo-timeline-wrapper h2 {
    text-align: center;
  }
  
  
  .gs-timeline-container-mobile {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
   justify-content: center;
   margin-left: auto;
  margin-right:auto;
  }
  
  .gs-timeline-mobile {
   width: 90%;
   margin-left: auto;
  margin-right:auto;
    margin-bottom: 20px;
    border-bottom: 1px solid white !important;
  }
  
  .gs-timeline-mobile h3 {
      padding: 10px;
  }
  
  .gs-timeline-container {
    display: none;
    
  }
  
  .timeline-image-container-mobile img{
     width: 100%;
  }
  
  
  .timeline-footer-mobile {
    background-color: white !important;
    padding: 16px 16px 0px 16px;
  }
  
   .timeline-image-container-mobile p {
    padding-bottom: 1.5rem;
     background-color: white !important;
    padding: 16px 16px 16px 16px;
  }
 
  .demo-timeline-wrapper &gt; h2 {
  margin-bottom: 30px;
}
  
}


@media (max-width: 700px) {

      .demo-timeline-wrapper {
    height: 1900px;
  }
  
   .gs-timeline-container-mobile {
    width: 100%;
  }
  
  .gs-timeline-mobile {
     border-bottom: 1px solid white !important;
  }
  
  .gs-timeline-mobile:last-child {
       border-bottom: none !important;
  }
  

  
  
}






</pre></body></html>