:root {
    --c-gradient: #008e8e;
    --c-blue: #008e8e;
    --c-dark-blue: #008e8e;
}
.service {
  padding-top: 60px;
}
.service .tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
}
.service .tab {
  padding: .75rem 3rem;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 3px 32px 0px rgba(74, 155, 173, 0.35);
  text-align: center;
  color: #008e8e;
  font-weight: 600;
  border: 4px solid #ffffff;
  border-radius: 35px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service .tab:not(:last-child) {
    margin-right: .5rem;
}

.service .tab.active,
.service .tab:is(:hover, :focus, :active){
    background: transparent !important;
    color: #2d2b2b !important;
    filter: drop-shadow(0px 3px 32px #4a9bad) !important;
    box-shadow: none !important;
    border-color: #ffffff !important;
}


.tab-content, .tab-contents {
  margin-bottom: 60px;
  position: relative;
}

.orden__el--1 {
  width: 33.33%;
  min-width: 33.33%;
}
.orden__el--2 {
  width: 20%;
  min-width: 20%;
}
.orden__el-wrap {
  margin-bottom: 30px;
  padding: 0 15px;
}
.orden__el {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}
.orden__el img {
  display: flex;
  max-width: 100%;
  border-radius: 32px;
  border:2px solid #fafafa;
  box-shadow: 0px 3px 32px 0px rgba(74, 155, 173, 0.35);
  transition: all .3s ease
}

.orden__el img:is(:hover, :focus, :active) {
    border-color: var(--c-dark-blue);
}

@media (max-width: 575px) {
  .service {
    padding-top: 16px;
  }
  .tabs-wrap {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .service .tabs {
    flex-wrap: nowrap;
    justify-content: flex-start !important;
    overflow-x: scroll;
    padding-bottom: 2rem;
    min-width: 100%;
    padding-top: 2rem;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .orden__el {
    align-items: center;
    justify-content: center;
  }
  .orden__el--1 {
    width: 100%;
    min-width: 100%;
  }
}