/* ===================================
    Seccion Beneficios
====================================== */

/* posiciones tarjetas y background */
.block.a{ top: 0; left: 0;   background: rgba(26, 184, 182, .90); }
.block.b{ top: 0; left: 0; background: rgba(26, 126, 189, .90); }
.block.c{ top: 0; right:0; background: rgba(26, 136, 74, .90); }
.block.d{ top: 0; right: 0;  background: rgba(44, 69, 131, .90); }

/* Background tarjetas hover */
.block.a:hover{background: rgba(26, 184, 182, .70); }
.block.b:hover{background: rgba(26, 126, 189, .70); }
.block.c:hover{background: rgba(26, 136, 74, .70); }
.block.d:hover{background: rgba(44, 69, 131, .70); }


/* ===================================
    Timeline
====================================== */

.timeline{
  padding: 50px 0 0px;
}

.timeline-head{
  display: grid;
  gap: 18px;
}

.tl-title{
  font-weight: 800;
  font-size: 44px;
  line-height: .95;
  margin: 0;
  color: #222;
}
.tl-title span{
  font-weight: 800;
  font-size: 22px;
  display: inline-block;
  margin-top: 6px;
}

.tl-nav{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 0;
  padding-top: 22px;
}

/* línea */
.tl-nav::before{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  height: 2px;
  background: #cfd6de;
  border-radius: 999px;
}

/* botón-tab */
.tl-dot{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: center;
  cursor: pointer;
  position: relative;
  color: #b7b7b7;
  font-weight: 700;
  position: relative;
  top: -23px;
}

.tl-dot-circle{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #cfd6de;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

/* label bajo la línea */
.tl-dot-label{
  display: inline-block;
  margin-top: 22px;
  font-size: 18px;
}

/* ACTIVE */
.tl-dot.is-active{
  color: #1A7EBD;
}
.tl-dot.is-active .tl-dot-circle{
  background: #1A7EBD;
  box-shadow: 0 10px 20px rgba(26,126,189,.25);
}

/* panel */
.tl-panels{
  margin-top: 22px;
}

.tl-panel{
  animation: tlFade .25s ease both;
}

@keyframes tlFade{
  from{ opacity: 0; transform: translateY(6px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* años */
.tl-years{
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.tl-year{
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
}

.tl-year-num{
  font-weight: 800;
  color: #555;
  font-size: 14px;
    display: flex;
    align-items: center;
    height: 100%;
}


.tl-year-list{
  margin: 0;
  padding-left: 16px;
  color: #333;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0px!important;
}

/* Responsive */
@media (max-width: 768px){
  .tl-title{ font-size: 34px; }
  .tl-dot-label{ font-size: 16px; }
  .tl-years{ padding: 0 12px; }
  .tl-year{ grid-template-columns: 56px 1fr; }
}

.usosSwiper{
  padding-bottom: 50px;
  padding-top: 30px;
  height: 100%;
}

/* ===================================
    responsive
====================================== */

/* lg  */ @media (min-width: 992px) {


.block.a{ top: 10%; left: 0;}
.block.b{ top: 50%; left: 20%;}
.block.c{ top: 35%; right:20%;}
.block.d{ top: -5%; right: 0;}


} /* ipad Landscape */