/* == LISTADO SERVICIOS == */
.service-list-section {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  position: relative;
}

.service-list-section:nth-child(2){
    margin-top: 30px;
}

.service-list-section:nth-child(2) .service-label-fixed{
    padding-top: 180px !important;
}

.service-label-fixed {
  padding-top: 90px !important;
  display: flex;
    flex-direction: column;
  min-width: 180px;
  font-size: 20px;
  font-family: 'Neue Montreal', sans-serif;
  font-weight: 300;
  z-index: 5;
  padding-left: 30px;
  text-align: left;
  margin-right: 10px;
}

.service-label-fixed p{
    position: sticky !important;
    top: 370px;
    line-height: 1em;
    color: #1B1B1B;
}

.services-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  padding: 0px 0;
}
.service-item {
  font-size: 135px;
  font-family: 'Neue Montreal', sans-serif;
  color: #1B1B1B;
  font-weight: 800;
  filter: blur(8px);
  opacity: 0.6;
  transform: translateX(0);
  transition: 
    filter 0.32s cubic-bezier(.77,0,.18,1),
    opacity 0.22s,
    transform 0.37s cubic-bezier(.77,0,.18,1),
    box-shadow 0.3s;
  will-change: filter, transform, opacity;
  pointer-events: none;
  margin-bottom: -60px;
}
.service-item.active {
  filter: none;
  opacity: 1;
  transform: translateX(48px) scale(1.04);
  z-index: 1;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .service-list-section {
    flex-direction: column;
    align-items: flex-start;
    min-height: 60vh;
    padding-bottom: 40px;
  }
  .service-label-fixed {
    padding: 0 0 20px 0 !important;
    margin-right: 0;
    min-width: unset;
    font-size: 16px;
    text-align: left;
    align-items: flex-start;
  }
  .service-label-fixed p {
    position: static;
    top: unset;
    text-align: left;
    font-size: 15px;
    padding-left: 0;
  }
  .services-list {
    width: 100%;
    padding-top: 0;
  }
  .service-item {
    font-size: 45px !important;
    padding-left: 0;
    text-align: left;
    word-break: break-word;
    font-weight: 400;
    margin-bottom: 0px;
    -webkit-text-stroke: 2px black;
  }
  
  .service-list-section:nth-child(2){
        margin-top: 90px;
    }
    
    .service-item.active {
      transform: translateX(10px) scale(1.03);
    }
}
/* == LISTADO SERVICIOS == */