.logo {
    right: 0;
    position: fixed;
    top: 0;
}

.header {
    margin-bottom: 150px;
    z-index: 2;
}

.header .tit{
  font-weight: normal !important;
  margin-bottom: 20px !important;
}

.header .sub{
  max-width: 400px;
}

.grid_servicios{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
  width: 100%;
}

/* Responsive */
@media (max-width: 1200px){
  #GridServiciosInfo.grid_servicios{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px){
  #GridServiciosInfo.grid_servicios{ grid-template-columns: 1fr; }
}

.link-info-servicio{
  display: block;
  text-decoration: none;
}

.cell-info-servicio {
    overflow: hidden;
    height: 250px;
    border-top-left-radius: 30px;
    padding: 35px;
    align-content: space-between;
    position: relative;
    transition: background-color .25s ease, color .25s ease;
}

.cell-info-servicio:hover{
  background-color: #FF3F00 !important;
  color: #fff !important;
}

.cell-info-servicio .cabecera {
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: 100%;
    flex-wrap: nowrap;
}

.cell-info-servicio .flecha{
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
  height: 20px;
}

.cell-info-servicio:hover .flecha{
  opacity: 1;
  transform: translateX(0);
}

.cell-info-servicio.tema-claro{
  background:#f4f4f4;
  color:#111;
}
.cell-info-servicio.tema-oscuro{
  background:#0b6b73;
  color:#fff;
}

.cell-info-servicio h3,
.cell-info-servicio p{
  color: inherit;
  margin: 0;
}

.cell-info-servicio:hover h3,
.cell-info-servicio:hover p{
  color: #fff;
}

.cell-info-servicio h3{
    font-size: 18px;
    line-height: 22px;
    max-width: 140px;
}

.cell-info-servicio p{
    padding: 0px;
}

.desc p {
    width: 80%;
    max-width: 340px;
}

.cell-info-servicio .cabecera{ margin-bottom: 12px; }
.cell-info-servicio p{ line-height: 1.5; }

@media only screen and (max-width: 1200px){

}

#footer-outer {
    z-index: 999 !important;
}