/* font-family: 'Open Sans', sans-serif; */

:root {
  --color-letra: #706f6f;
  --color-titulos-gris: #333333;
  --color-resaltado: #e2001d;
  --color-fondo-alt: #eeefef;
  --color-fondo-botones: #4c565c;
  --color-hover-menu: #14191b;
  --color-barras-separador: #dce2e7;
  --color-fondo-footer: #22282d;
  --color-fondo-footer-dos: #0f1216;
  --cc-text: #706f6f;
  --cc-btn-primary-bg: #4c565c;
  --cc-btn-primary-hover-bg: #e2001d;
  --cc-btn-secondary-hover-bg: #dce2e7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  max-width: 1920px;
  margin: auto;
}
a {
  color: unset;
  text-decoration: none;
}
/* Generales*/
.caja-grande {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 23px;
  color: var(--color-letra);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  color: var(--color-titulos-gris);
  font-weight: 400;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.boton {
  border: none;
  background-color: var(--color-resaltado);
  color: white;
  padding: 9px 18px;
  font-size: 12px;
  transition: all 0.5s;
  font-family: "Open Sans", sans-serif;
}
.boton:hover {
  background-color: var(--color-hover-menu);
}
.separador {
  border: none;
  border-top: 1px solid #dce2e7;
  height: 3px;
  border-bottom: 1px solid #dce2e7;
  margin: 1px;
}
.separador-simple {
  border-bottom: none;
  height: 1px;
}
.item-mitad {
  width: 50%;
}
.item-mitad-uno {
  padding-right: 15px;
}
.item-mitad-dos {
  padding-top: 55px;
  padding-left: 15px;
}
p strong {
  font-weight: 600;
}
.enlace {
  color: red;
}
.cuarto {
  width: 25%;
  padding: 0 1em;
}
.miga-de-pan {
  height: 43px;
  background-color: white;
  border-bottom: 1px solid #e7e7e7;
}
.oculto {
  position: absolute;
  top: -500%;
}
/*Listados*/
.listado-parallax {
  height: 43px;
  align-items: center;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.listado {
  margin: 0;
  padding-top: 30px;
  list-style: none;
  padding-left: 20px;
}
.listado > li {
  position: relative;
  margin-bottom: 15px;
}
.listado > li strong {
  font-weight: 600;
}
.listado > li::after {
  content: "\f105";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #e2001d;
  font-size: 10px;
  padding-right: 0.5em;
  position: absolute;
  top: 0px;
  left: -12px;
}
.sub-listado {
  margin: 0;
  list-style: none;
  padding-left: 20px;
}
.sub-listado > li {
  position: relative;
  margin-bottom: 5px;
  line-height: 20px;
}
.sub-listado > li::after {
  font-family: "Open Sans";
  color: #706f6f;
  content: "·";
  padding-right: 0.2em;
  position: absolute;
  top: 0px;
  left: -9px;
}
.zona-gris {
  padding: 5px 10px;
  background-color: var(--color-fondo-alt);
}
/* Parallax titulo*/
.caja-parallax {
  max-width: 1440px;
  margin: auto;
}
.img-parallax {
  position: fixed;
  width: 1440px;
  min-height: 500px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  margin: auto;
  top: 40px;
  left: 0;
  right: 0;
  z-index: -10;
}
.caja-titulo-parallax {
  background-color: transparent;
  height: 219px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.titulo-parallax {
  color: var(--color-resaltado);
}

/* */
/* Header */
.header {
  position: relative;
  background-color: white;
}
.idiomas {
  height: 40px;
  border-bottom: 1px solid #e7e7e7;
}
.flex-idiomas {
  justify-content: end;
}
.item-flex-idiomas {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 11px;
  border-left: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
  height: 40px;
  padding: 0 17px;
}
/**/
.logo {
  padding: 40px 1em 15px 1em;
  justify-content: space-between;
}
.flex-logo-header {
  column-gap: 1em;
}
.item-flex-logo-header {
  color: var(--color-resaltado);
}
/**/
.sticky {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: white;
  height: 40px;
  border-bottom: 1px solid #e7e7e7;
}
.menu-mov {
  display: none;
}
.flex-grande-nav {
  justify-content: space-between;
  height: 40px;
}
.flex-nav {
  column-gap: 1px;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.item-flex-nav {
  font-size: 14px;
  background-color: var(--color-fondo-botones);
  color: white;
  /* padding: 0 1em; */
}
.enlace-nav {
  display: flex;
  align-items: center;
  padding: 0 1em;
  height: 40px;
}
.item-flex-nav:hover {
  background-color: var(--color-hover-menu);
}
.item-flex-nav-selected {
  background-color: var(--color-resaltado);
}
.item-linkedin-nav:hover {
  transition: 1s all;
  background-color: #1d84b1;
}
.item-desplegable-flex-nav {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1em;
}
.desplegable-flex-nav {
  display: none;
  position: absolute;
  left: 0;
  top: 40px;
}
.item-desplegable-flex-nav:hover .desplegable-flex-nav {
  display: block;
}
.item-desplegable {
  background-color: #2e343e;
  color: #7a828f;
  font-size: 13px;
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 1em;
  /* z-index: 10; */
}
.item-desplegable-uno {
  border-bottom: 1px solid #3f4755;
}
.item-desplegable-nav-selected {
  border-left: 5px solid var(--color-resaltado);
  padding-left: calc(1em - 5px);
}
.item-desplegable:hover {
  color: white;
}
/* FOOTER */
/* Soluciones*/
.soluciones {
  background-color: var(--color-fondo-botones);
  padding: 40px 0 30px;
}
.caja-texto-soluciones {
  width: 66.6%;
  color: white;
  padding-right: 1em;
}
.titulo-footer {
  color: white;
  font-size: 22px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 15px;
}
.texto-soluciones {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 15px;
}
.caja-boton-soluciones {
  width: 33.4%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.boton-footer-soluciones {
  font-size: 14px;
  line-height: 1.42857143;
  padding: 12px 21px;
}
/* Imagen */
.imagen-footer {
  width: 100%;
  display: block;
}
/* Newsletter */
.newsletter {
  position: relative;
  background-color: var(--color-resaltado);
  padding: 65px 50px;
  flex-wrap: nowrap;
  margin-top: -74px;
}
.titular-newsletter {
  color: white;
  text-align: center;
  text-transform: uppercase;
}
/* .sobre-newsletter {
  color: #cd031d;
  position: absolute;
  transform: rotate(-15deg);
  left: 50px;
  top: 30px;
  font-size: 9em;
} */
/* .texto-newsletter {
  position: relative;
  z-index: 10;
}
.texto-negro-newsletter {
  color: #000;
  line-height: 1em;
  margin: 0;
}
.texto-blanco-newsletter {
  font-size: 24px;
  padding-right: 30px;
} */
/* .form-newsletter {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
} */
/* .text-input {
  width: calc(100% - 150px);
  padding: 7px;
} */
/* .enlace-contacto {
  margin: auto;
} */
/* .boton-contacta-newsletter {
  margin: auto;
  background: #e2001d;
  border: 1px solid white;
  color: white;
  text-transform: uppercase;
  padding: 8px 20px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
}
.boton-contacta-newsletter:hover {
  background-color: var(--color-hover-menu);
} */
/*footer*/
.footer {
  background-color: var(--color-fondo-footer);
}
.flex-footer {
  padding-top: 30px;
  padding-bottom: 30px;
}
.item-flex-footer {
  width: 25%;
  color: white;
  padding-right: 30px;
}
.item-flex-footer-ultimo {
  padding-right: 0;
}
.titulo-flex-footer {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}
.listado-footer {
  list-style: none;
  padding-left: 20px;
}
.item-listado-footer {
  line-height: 18px;
  position: relative;
}
.item-listado-footer:hover {
  color: var(--color-resaltado);
}
.item-listado-footer-sin-enlace:hover {
  color: white;
}
.texto-footer {
  line-height: 23px;
  margin: 0;
}
.texto-enlace-footer:hover {
  color: var(--color-resaltado);
}
.listado-servicios-footer {
  padding-left: 0px;
  list-style: none;
}
.item-listado-servicios-footer {
  text-transform: uppercase;
  padding: 5px 0;
  padding-left: 15px;
  border-bottom: 1px solid #3f454f;
}
.decoration-listado-footer {
  position: absolute;
  left: 0px;
  height: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.item-redes-footer {
  margin-top: 10px;
  color: var(--color-fondo-footer);
  background-color: white;
  width: 21px;
  height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
/* Zona negra */
.bottom-footer {
  background-color: var(--color-fondo-footer-dos);
  color: white;
}
.texto-bottom-footer {
  margin: 0;
  padding: 1em 0;
}
/* INDEX */
/* Slider */
.contenedor-slider {
  position: relative;
}
.slider {
  height: 500px;
}
.item-slider {
  position: relative;
}
.caja-dentro-slider {
  position: absolute;
  top: 0;
  left: 100px;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: all 0.8s;
}
.mostrar-caja-slider {
  left: 0;
  opacity: 1;
}
.titulo-dentro-slider {
  color: #444;
  width: 330px;
  margin-top: 80px;
  background-color: white;
  padding: 10px 15px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  max-width: 100%;
}
.titulo-dentro-slider strong {
  font-weight: 600;
}
.boton-slider {
  line-height: 23px;
  padding: 8px 25px;
  min-width: 59px;
}
.flecha-siguiente,
.flecha-anterior {
  cursor: pointer;
  transition: 1s all;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  margin: auto;
  right: 30px;
  height: 40px;
  font-size: 40px;
  color: white;
}
.flecha-anterior {
  right: unset;
  left: 30px;
}

.dots-posicion {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
  width: fit-content;
  display: flex;
  opacity: 0;
}
.circulo {
  cursor: pointer;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: black;
  margin: 0 5px;
}
.circulo-selected {
  width: 10px;
  height: 10px;
  background-color: white;
  /* border: 4px solid #ffffff88; */
  border: 2px solid #00000088;
}
.contenedor-slider:hover .flecha-anterior,
.contenedor-slider:hover .flecha-siguiente,
.contenedor-slider:hover .dots-posicion {
  opacity: 1;
}
/* Historia */
.historia {
  padding-top: 50px;
  padding-bottom: 40px;
}
.imagen-historia {
  max-width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}
.tarjeta-historia {
  background-color: var(--color-fondo-alt);
  padding: 30px 40px;
}
.tarjeta-historia-primera {
  margin-bottom: 30px;
}
.titulo-tarjeta-historia {
  color: var(--color-resaltado);
  text-transform: uppercase;
  font-weight: 600;
}
.boton-historia {
  margin-top: 12px;
}
/* Servicios */
.servicios {
  padding-top: 40px;
  padding-bottom: 90px;
}
.imagen-servicios {
  max-width: 100%;
  margin: auto;
  display: block;
}

/* SOMOS */
.somos {
  padding-top: 40px;
  padding-bottom: 90px;
}
.flex-somos {
  padding-top: 30px;
}
.titulo-dos-somos {
  margin-top: 0;
  margin-bottom: 65px;
  color: var(--color-resaltado);
  text-transform: uppercase;
}
.imagen-somos {
  max-width: 100%;
}
/* MERCANTIL */
.contenido-mercantil {
  background-color: white;
}
.caja-mercantil {
  padding-top: 40px;
  padding-bottom: 60px;
}
.zona-gris-bottom {
  margin-bottom: 30px;
}
.icono-enlace {
  font-size: 10px;
}
.zona-marcas {
  background-color: var(--color-fondo-alt);
  padding: 30px 0;
}
.imagen-marcas-mercantil {
  max-width: 100%;
  object-fit: contain;
  margin: auto;
  display: block;
}
/* CIVIL */
.titulo-parallax-civil {
  color: white;
}
/* ABOGADOS */
.abogados {
  padding-top: 40px;
  padding-bottom: 60px;
}
.texto-abogados {
  padding-top: 30px;
}
.flex-abogados {
  column-gap: 20px;
}
.cuarto-abogados {
  position: relative;
  width: calc(25% - 20px);
  padding: 0;
  background-color: var(--color-fondo-alt);
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.caja-bottom-abogados {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.imagen-abogados {
  max-width: 100%;
}
.caja-texto-abogados {
  padding: 22px 22px 25px;
}
.caja-texto-abogados p {
  margin-top: 0;
  margin-bottom: 0;
}
.nombre-abogados {
  color: var(--color-resaltado);
  line-height: 24px;
}
.item-redes-abogados {
  color: white;
  background-color: var(--color-fondo-botones);
  width: 26px;
  height: 26px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  transition: 0.5s all;
}
.item-redes-abogados:hover {
  background-color: #353648;
}
.titulo-abogado {
  text-transform: uppercase;
  font-size: 13px;
  color: var(--color-resaltado);
  margin-top: 12px;
  margin-bottom: 5px;
  font-weight: 600;
}
.sub-listado-abogados li {
  margin-bottom: 15px;
}
.sub-listado-abogados li strong {
  font-weight: 600;
}
/* ACTUALIDAD */

/* Noticias */
.noticias {
  padding-top: 40px;
  padding-bottom: 60px;
}
.miga-de-pan-noticias {
  padding-left: 20px;
}
.titulo-noticia {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-resaltado);
  text-transform: uppercase;
  border-bottom: 1px solid #e7e7e7;
  margin: 0;
}
.subtitulo-noticia {
  font-weight: 600;
}
.hecho-por-noticia {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}
.contenido-noticia {
  padding-top: 20px;
}
.texto-centrado {
  text-align: center;
}
.listado-noticia {
  padding-left: 17px;
  line-height: 34px;
}
.separador-noticia {
  height: 15px;
}
.h4-noticia {
  font-size: 14px;
}
.imagen-noticia {
  margin-top: 20px;
  max-width: 100%;
}
.tabla-noticia {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.tabla-noticia tbody tr td {
  padding: 1em;
  border: 1px solid #dfdfdf;
}
.tabla-noticia tbody tr:nth-child(odd) {
  background: var(--color-fondo-alt);
}
.celda-der-noticia {
  width: 230px;
}

/* OMNILEX */
.omnilex {
  padding-top: 40px;
  padding-bottom: 60px;
}
.flex-omnilex {
  padding-top: 30px;
  column-gap: 30px;
}
.caja-grande-omnilex {
  width: calc(66.6% - 30px);
  padding-bottom: 30px;
}
.caja-grande-omnilex p {
  margin-top: 0;
}
.aside-omnilex {
  width: 33.4%;
  padding-bottom: 30px;
}
.aside-omnilex h3 {
  margin-top: 0;
  color: var(--color-resaltado);
}
.listado-omnilex {
  padding-top: 0;
}
.imagen-omnilex {
  max-width: 100%;
}
/* Contacto */
.mapa-contacto {
  filter: grayscale();
}
.contacto {
  padding-top: 40px;
  padding-bottom: 60px;
}
.texto-contacta {
  margin-top: 30px;
  margin-bottom: 45px;
}
.flex-contacta {
  column-gap: 30px;
}
.cuarto-contacta {
  position: relative;
  width: calc(25% - 30px);
  padding: 0;
  margin-bottom: 30px;
}
.titulo-flex-contacta {
  margin: 0;
  color: var(--color-resaltado);
}
.imagen-contacta {
  max-width: 100%;
}
.imagen-footer-contacto {
  max-height: 250px;
  object-fit: cover;
  object-position: center;
}
.item-redes-contacto {
  margin-top: 20px;
}
/* Aviso legal*/
.caja-legal {
  padding-top: 30px;
  padding-bottom: 40px;
}
.titulo-aviso-legal {
  padding-top: 30px;
}

/* Responsive*/
@media screen and (max-width: 1100px) {
  .cuarto-abogados {
    width: calc(33% - 20px);
  }
}
@media screen and (max-width: 1000px) {
  /*NAV*/
  .menu-mov {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2em;
  }
  .titulo-menu-mov {
    padding-left: 1em;
    opacity: 0;
    margin: 0;
    transition: all 0.5s;
  }
  .titulo-menu-mov-mostrar {
    opacity: 1;
  }
  .icono-barras {
    height: 40px;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 0 16px;
  }
  .flex-grande-nav {
    position: absolute;
    display: block;
    left: -320px;
    width: 320px;
    max-width: 100%;
    z-index: 200;
    margin: unset;
    padding: 0;
    height: 100vh;
    background-color: var(--color-fondo-botones);
    transition: all 0.5s;
  }
  .flex-grande-nav-desplegado {
    left: 0;
  }
  .item-desplegable-flex-nav {
    display: block;
    padding-top: 13px;
  }
  .item-flex-nav-selected {
    background-color: var(--color-fondo-botones);
  }
  .desplegable-flex-nav {
    display: block;
    position: relative;
    top: 0;
    margin-top: 13px;
  }
  .item-desplegable {
    width: 304px;
    left: 0;
  }
  .item-desplegable-nav-selected {
    border-left: none;
    padding-left: 1em;
  }
  .flex-nav {
    display: block;
  }
  .item-flex-nav {
    height: fit-content;
    min-height: 40px;
  }
  .item-linkedin-nav {
    width: 40px;
    margin-left: 14px;
  }
  /* footer */
  .caja-texto-soluciones {
    width: calc(100% - 120px);
  }
  .caja-boton-soluciones {
    width: auto;
  }
  /* Derecho */
  .cuarto {
    width: 50%;
  }
}
@media screen and (max-width: 900px) {
  .caja-grande-omnilex {
    width: 100%;
  }
  .aside-omnilex {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .item-mitad {
    width: 100%;
    padding: 0;
  }
  .item-mitad-dos {
    padding-top: 30px;
  }
  .flex-footer {
    justify-content: space-around;
  }
  .item-flex-footer {
    width: 50%;
  }
  .cuarto-abogados {
    width: calc(50% - 20px);
  }
  /* Contacta */
  .cuarto-contacta {
    width: calc(50% - 30px);
  }
  .texto-soluciones {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .cuarto-abogados {
    width: 100%;
  }
  .celda-der-noticia {
    width: unset;
  }
  .logo {
    justify-content: space-around;
  }
}
@media screen and (max-width: 500px) {
  /* footer */
  .caja-texto-soluciones {
    width: 100%;
  }
  .caja-boton-soluciones {
    margin-left: auto;
  }
  /* Newsletter */
  .newsletter {
    padding: 65px 20px;
  }
  .item-flex-footer {
    width: 100%;
    padding-right: 0;
  }
  .cuarto {
    width: 100%;
  }
  .listado {
    padding-top: 0;
  }
  .flex-listado {
    padding-top: 30px;
  }
  .cuarto-contacta {
    width: 100%;
  }
}
