
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #00829b;
  --secondary-color:              #07c6d7;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #80d0c7;
  --custom-btn-bg-hover-color:    #13547a;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #13547a;

 
 
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
/* BORRAR */
@media (min-width:1200px){
  .section-padding { 
    padding-top: 250px;
  padding-bottom: 280px;
  }
  }


.section-overlay {
  background-image: linear-gradient(45deg, #00829B 0%, #00829B 20%, #6da2af 70%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 110%;
  opacity: 0.85;
  
}

.section-overlay + .container {
  position: relative;
}




/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../img/banner-bg.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}


/* BORRAR */
@media (min-width:1200px){
  .timeline-container .vertical-scrollable-timeline { 
    list-style-type: none;
    position: relative;
    padding-left: 150px;
  }
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: #003a5d;
  position: absolute;
  left: 52px;
  top: 5px;
  overflow: hidden;
}

/* BORRAR */
@media (min-width:1200px){
  .timeline-container .vertical-scrollable-timeline .list-progress { 
    width: 8px;
    height: 85%;
    background-color: #003a5d;
    position: absolute;
    left: 199px;
    top: 5px;
    overflow: hidden;
  }
  }
/* BORRAR */
@media (max-width:1200px){
  .timeline-container .vertical-scrollable-timeline .list-progress { 
    width: 8px;
    height: 85%;
    background-color: #003a5d;
    position: absolute;
    left: 52px;
    top: 5px;
    overflow: hidden;
  }
  }

  /* BORRAR */
@media (max-width:600px){
  .timeline-container .vertical-scrollable-timeline .list-progress { 
    width: 8px;
    height: 85%;
    background-color: #003a5d;
    position: absolute;
    left: 52px;
    top: 5px;
    overflow: hidden;
  }
  }

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 40px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 25px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: #003a5d;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: #003a5d;
}



