@charset "UTF-8";
/* COLORS */
/* STRUCTURE */
/* FONTS */
@font-face {
  font-family: "Roboto Light";
  src: url("../assets/fonts/roboto-light-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Medium";
  src: url("../assets/fonts/roboto-medium-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto Regular";
  src: url("../assets/fonts/roboto-regular-webfont.woff2") format("woff2");
  font-weight: 100;
}
@font-face {
  font-family: "Karnov Display";
  src: url("../assets/fonts/karnovdisplay.woff2") format("woff2");
}
@font-face {
  font-family: "Karnov Icons Open";
  src: url("../assets/fonts/fk-icons-open.woff") format("woff");
  font-weight: 100;
}
html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  /* background-color: white; */
  scroll-behavior: smooth;
}
html *, body * {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, p, ul, li, a {
  padding: 0;
  margin: 0;
}

h1, h2, h3 {
  font-family: "Karnov Display";
  font-weight: 100;
}
h2 {
  font-size: 32px;
}

h2.titulo {
  font-family: "Roboto Regular";
  font-size: 20px;
}

p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #3f403a;
}

p, a {
  font-family: "Roboto Light";
  text-decoration: none;
}

ul {
  list-style: none;
}
ul li {
  font-family: "Roboto Light";
  font-size: 18px;
  color: #3f403a;
  margin-bottom: 10px;
}

.box_text_arrow_down {
  position: relative;
}
.box_text_arrow_down::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: calc(50% - 30px);
  transform: rotate(180deg);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(50deg, 100%, 50%);
}

.hide {
  display: none;
}

.show {
  display: block;
}

.line {
  transition: width 0.6s ease-in-out;
  display: block;
  width: 50px;
  height: 4px;
  max-height: 4px;
  background-color: hsl(50deg, 100%, 50%);
}

.line_expands_from_center {
  margin: auto;
}

.line_expands_from_left {
  margin-left: 0;
}

a:has(.line):hover .line {
  width: 100%;
}

.bg_color_1 {
  background-color: hsl(50deg, 100%, 50%);
}

.bg_color_2 {
  background-color: hsl(240deg, 100%, 12%);
}

.bg_color_3 {
  background-color: hsl(203deg, 42%, 93%);
}

.bg_color_4 {
  background-color: hsl(53deg, 100%, 93%);
}

.bg_color_5 {
  background-color: hsl(201deg, 39%, 65%);
}

.bg_color_6 {
  background-color: hsl(165deg, 39%, 31%);
}

.bg_color_7 {
  background-color: hsl(0deg, 3%, 93%);
}

.color_1 {
  color: hsl(50deg, 100%, 50%);
}

.box {
  padding: 50px;
}

.box_map,
.box_no_padding {
  padding: 0;
}

.box_li_right {
  padding-right: 50px;
}

.box_li_left {
  padding-left: 50px;
}

.box_text h2 {
  margin-bottom: 20px;
}
.box_text p {
  font-family: "Roboto Light";
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}

.box_text_intro {
  width: 100%;
  padding: 76px;
  position: relative;
}
.box_text_intro p {
  line-height: 31px;
  text-align: center;
}
.box_text_intro::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: calc(50% - 30px);
  transform: rotate(180deg);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(50deg, 100%, 50%);
}

.box_text_intro_color_2::after {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(240deg, 100%, 12%);
}

.box_text_left {
  width: 100%;
  padding: 76px;
  position: relative;
}
.box_text_left p {
  line-height: 31px;
  text-align: right;
}
.box_text_left::after {
  content: "";
  position: absolute;
  margin-left: calc(106% - 30px);
  transform: rotate(90deg);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(50deg, 100%, 50%);
}

.box_img {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.box_img > img {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.box_img:hover {
  cursor: pointer;
}
.box_img:hover > img {
  opacity: 0.5;
}
.box_img:hover .line_expands_from_center {
  width: 100%;
}
.box_img .wrapper_text {
  width: 100%;
  margin: auto;
}
.box_img .wrapper_text h2 {
  margin-bottom: 17px;
  margin-top: 20px;
}
.box_img .wrapper_text p {
  font-family: "Roboto Light";
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
}
.box_img .wrapper_text p.mas_info {
  font-family: "Roboto Medium";
  font-size: 18px;
}

.anime_bottom_top {
  -webkit-animation-name: bottom_top;
          animation-name: bottom_top;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  margin-top: 220px;
}

.btn {
  transition: box-shadow 0.3s ease-in-out;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  padding: 15px 21px;
  font-size: 16px;
  border: 0;
  color: #333333;
  line-height: normal;
  box-shadow: none;
  white-space: normal;
  transition: 0.5s;
  font-family: "Roboto Regular";
  font-weight: 500;
  text-decoration: none;
}
.btn:hover {
  cursor: pointer;
  box-shadow: 0 0 10px 0px hsla(50deg, 99%, 51%, 0.4);
}

.btn_1 {
  background-color: hsl(50deg, 100%, 50%);
}

.btn_eventos_plus {
  padding: 4px 7px;
  cursor: pointer;
}

.border {
  border: solid 1px #cfcfcf;
}

.caption {
  position: absolute;
  bottom: 0;
  background-color: white;
  padding: 60px;
  width: 550px;
  height: 240px;
  overflow: hidden;
  padding-top: 40px;
}
.caption h1 {
  font-family: "Karnov Display";
  margin-bottom: 17px;
}
.caption p {
  font-family: "Roboto Light";
  font-size: 22px;
  font-weight: 300;
  color: #3f403a;
  line-height: 30px;
}

.caption_left {
  left: 7%;
}

.caption_right {
  right: 7%;
}

.caption_center {
  left: calc(50% - 275px);
}

.color_text_white {
  color: white;
}

.color_text_1 {
  color: #1a1919;
}

.color_text_2 {
  color: #3f403a;
}

.color_text_3 {
  color: #686868;
}

.color_text_4 {
  color: #333333;
}

.color_text_5 {
  color: #e3e3e3;
}

.color_text_6 {
  color: hsl(50deg, 100%, 50%);
}

.color_text_7 {
  color: hsl(201deg, 39%, 65%);
}

.color_text_8 {
  color: #575757;
}

.df {
  display: flex;
}

.df_col {
  flex-direction: column;
}

.df_row {
  flex-direction: row;
}

.df_sb {
  justify-content: space-between;
}

.df_sa {
  justify-content: space-around;
}

.df_jcc {
  justify-content: center;
}

.df_center_center {
  align-items: center;
  justify-content: center;
}

.df_col_center_x {
  align-items: center;
}

.df_50_50 {
  gap: 30px;
  flex-wrap: wrap;
}
.df_50_50 > * {
  width: calc(50% - 30px);
  min-width: 400px;
  flex-grow: 1;
  max-height: 500px;
}

.df_50_50_min {
  gap: 30px;
  flex-wrap: wrap;
}
.df_50_50_min > * {
  width: calc(50% - 30px);
  min-width: 400px;
  flex-grow: 1;
}

.df_33_33_33 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.df_33_33_33 > * {
  width: calc(33% - 30px);
  min-width: 350px;
  flex-grow: 1;
}

.df_25_25_25_25 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.df_25_25_25_25 > * {
  width: calc(25% - 30px);
  min-width: 300px;
  flex-grow: 1;
}

.df_20_20_20_20_20 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.df_20_20_20_20_20 > * {
  width: calc(20% - 30px);
  min-width: 200px;
  flex-grow: 1;
}

form input[type=text] {
  box-shadow: none;
  line-height: normal;
  border: 1px solid #cacbcd;
  font-weight: 300;
  height: 50px;
  padding-left: 17px;
  font-size: 18px;
  margin-bottom: 20px;
  border-radius: 0;
  color: #3f403a;
}

.ff_1 {
  font-family: "Roboto Regular";
}

.ff_2 {
  font-family: "Karnov Display";
}

.fs_10 {
  font-size: 45px;
}

.fs_9 {
  font-size: 38px;
}

.fs_8 {
  font-size: 32px;
}

.fs_7 {
  font-size: 28px;
}

.fs_6 {
  font-size: 24px;
}

.fs_5 {
  font-size: 20px;
}

.fs_4 {
  font-size: 18px;
}

.fs_3 {
  font-size: 16px;
}

.fs_2 {
  font-size: 14px;
}

.fs_1 {
  font-size: 12px;
}

.fw_900 {
  font-weight: 900;
}

.fw_800 {
  font-weight: 800;
}

.fw_700 {
  font-weight: 700;
}

.fw_600 {
  font-weight: 600;
}

.fw_500 {
  font-weight: 500;
}

.fw_400 {
  font-weight: 400;
}

.fw_300 {
  font-weight: 300;
}

.fw_200 {
  font-weight: 200;
}

.fw_100 {
  font-weight: 100;
}

img {
  display: block;
  max-width: 100%;
}

.label_content p, .label_content ul {
  margin-top: 20px;
  font-size: 18px;
}
.label_content p img, .label_content ul img {
  margin-left: auto;
  margin-right: auto;
}
.label_content li {
  position: relative;
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 30px;
}
.label_content li::after {
  position: absolute;
  font-family: "fk-icons-filled";
  content: "\e90d";
  color: hsl(50deg, 100%, 50%);
  font-size: 16px;
  font-weight: 900;
  top: 5px;
  left: 5px;
}

.mt_0 {
  margin-top: 0;
}

.mt_1 {
  margin-top: 10px;
}

.mt_2 {
  margin-top: 20px;
}

.mt_3 {
  margin-top: 30px;
}

.mt_4 {
  margin-top: 40px;
}

.mt_auto {
  margin-top: auto;
}

.mb_0 {
  margin-bottom: 0;
}

.mb_1 {
  margin-bottom: 10px;
}

.mb_2 {
  margin-bottom: 20px;
}

.mb_3 {
  margin-bottom: 30px;
}

.mb_4 {
  margin-bottom: 40px;
}

.pt_0 {
  padding-top: 0;
}

.pt_1 {
  padding-top: 10px;
}

.pt_2 {
  padding-top: 20px;
}

.pt_3 {
  padding-top: 30px;
}

.pt_4 {
  padding-top: 40px;
}

.pt_auto {
  padding-top: auto;
}

.pb_0 {
  padding-bottom: 0;
}

.pb_1 {
  padding-bottom: 10px;
}

.pb_2 {
  padding-bottom: 20px;
}

.pb_3 {
  padding-bottom: 30px;
}

.pb_4 {
  padding-bottom: 40px;
}

.padding_0 {
  padding: 0;
}

.padding_1 {
  padding: 10px;
}

.padding_2 {
  padding: 20px;
}

.padding_3 {
  padding: 30px;
}

.padding_4 {
  padding: 40px;
}

.m_auto {
  margin: auto;
}

.ml_auto {
  margin-left: auto;
}

.novedades_50 #widget_novedades .wrapper_widget {
  max-height: 250px;
}

.scrollbar::-webkit-scrollbar {
  background-color: tranparent;
  width: 16px;
}

.scrollbar::-webkit-scrollbar-track {
  background-color: tranparent;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 5px solid #fff;
  height: 90px;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a5;
  border: 4px solid #f4f4f4;
}

.scrollbar::-webkit-scrollbar-button {
  display: none;
}

section:not(#header_image) {
  margin-top: 90px;
}

.text_center {
  text-align: center;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.widget span[class^=fk-icon] {
  display: block;
  width: 100%;
  margin-left: 0;
  font-size: 60px;
  font-weight: 100;
}
.widget h1 {
  margin-bottom: 30px;
  margin-top: 10px;
}

.wrapper_columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.wrapper_columns > * {
  flex: 1;
  max-width: 460px;
  min-width: 450px;
  display: flex;
  flex-direction: column;
}
.wrapper_columns .column .box_img:has(img),
.wrapper_columns .column .wrapper_image:has(img) {
  position: relative;
  transition: opacity 0.3s ease-in-out;
  background-color: none;
}
.wrapper_columns .column .box_img:has(img) img,
.wrapper_columns .column .wrapper_image:has(img) img {
  transition: all 0.3s ease-in-out;
  opacity: 1;
  width: 100%;
}
.wrapper_columns .column .box_img:has(img)::after,
.wrapper_columns .column .wrapper_image:has(img)::after {
  font-family: "Karnov Icons Open";
  transition: all 0.3s ease-in-out;
  position: absolute;
  content: "\e84a";
  font-size: 40px;
  font-weight: 100;
  color: hsl(50deg, 100%, 50%);
  top: 39%;
  left: 45%;
  opacity: 0;
}
.wrapper_columns .column:hover {
  cursor: pointer;
}
.wrapper_columns .column:hover .box_img:has(img),
.wrapper_columns .column:hover .wrapper_image:has(img) {
  background-color: #686868;
}
.wrapper_columns .column:hover .box_img:has(img) img,
.wrapper_columns .column:hover .wrapper_image:has(img) img {
  opacity: 0.3;
}
.wrapper_columns .column:hover .box_img:has(img)::after,
.wrapper_columns .column:hover .wrapper_image:has(img)::after {
  opacity: 1;
}

.wrapper_header_and_nav {
  padding: 34px;
  padding-bottom: 20px;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: auto;
  background-color: white;
}

.wrapper_header_and_nav.fixed {
  border-bottom: solid 1px #e5e5e5;
}

.wrapper_header_and_nav.fixed {
  border-bottom: solid 1px #e3e3e3;
}

.wrap_container {
  padding: 34px;
  max-width: 2000px;
  margin: auto;
  margin-top: 144px;
  padding-top: 0;
}
.wrap_container > section:not(#header_image) {
  max-width: 1520px;
  margin-inline: auto;
}

.wrapper_hidden_events {
  display: none;
}

.wrapper_max_width_lg {
  max-width: 80%;
  margin: auto;
}

.wrapper_max_width_md {
  max-width: 50%;
}

.wrapper_max_width_sm {
  max-width: 20%;
}

.wrapper_links .btn {
  margin: auto;
}

@-webkit-keyframes bottom_top {
  0% {
    margin-top: 220px;
  }
  100% {
    margin-top: 0px;
  }
}

@keyframes bottom_top {
  0% {
    margin-top: 220px;
  }
  100% {
    margin-top: 0px;
  }
}
#otros_links .wrapper_title,
#productos_relacionados .wrapper_title {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
}

.pr {
  padding-right: 20px;
}

.pl {
  padding-left: 20px;
}

.dropdown {
  border: none;
  position: relative;
  background-color: #fff;
  width: 100%;
  font-size: 18px;
  display: inline-block;
  max-width: 292px;
  margin-right: 19px;
  margin-bottom: 0;
}
.dropdown .open span::after {
  transform: rotate(180deg);
}
.dropdown span {
  padding: 17px 50px 17px 20px;
  display: block;
  cursor: pointer;
  color: #3f403a;
  border: 1px solid #e3e3e3;
  transition: color 0.2s ease-in-out;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
  font-weight: 300;
  background-color: #fff;
  font-family: "Roboto Light";
  font-size: 18px;
  font-weight: 800;
}
.dropdown span::after {
  font-family: "fk-icons-filled";
  content: "🡡";
  position: absolute;
  right: 15px;
  transition: transform 0.45s ease-in-out;
}
.dropdown .rotate::after {
  transform: rotate(180deg);
  transition: transform 0.45s ease-in-out;
}
.dropdown ul {
  display: none;
  position: absolute;
  background: #fff;
  z-index: 200;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  border: 1px solid #e3e3e3;
  border-top: 0;
  margin: 0;
}
.dropdown ul .open {
  display: block;
}
.dropdown ul li {
  cursor: pointer;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  border-bottom: 1px solid #e3e3e3;
  color: #3f403a;
  font-weight: 300;
  text-decoration: none;
  display: block;
  padding: 10px 12px 10px 20px;
  position: relative;
}
.dropdown ul li::before {
  display: none;
  content: none !important;
}

.fk_icon_context {
  margin-right: 15px;
  color: hsl(50deg, 100%, 50%);
}

.list .list_title {
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: "Karnov Display";
  font-weight: 500;
  font-size: 32px;
  color: #1a1919;
}
.list .item {
  border-bottom: 1px solid #cfcfcf;
  background: white;
}
.list .item .title {
  font-weight: 100;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 0 15px;
}
.list .item .title:hover {
  background: hsl(203deg, 42%, 93%);
}
.list .item .title p {
  margin: 10px 0;
}
.list .item .title .fk-icon {
  margin: 10px 0;
  font-size: 24px;
}
.list .item .text {
  background: white;
  padding: 0 15px;
  display: none;
}
.list .item .text a {
  color: #3f403a;
  text-decoration: underline;
}
.list .item .text p {
  margin: 0;
  padding: 20px 0;
}
.list .item .text .alert {
  color: #e5202e;
}
.list img.inline_block {
  display: inline-block;
  vertical-align: middle;
}

.noticias-item {
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: "Karnov Display";
  font-weight: 500;
  color: #1a1919;
  border-bottom: 1px solid #cacbcd;
}
.noticias-item .noticia-imagen a .noticia-titulo,
.noticias-item .noticia-texto a .noticia-titulo,
.noticias-item .noticia-fecha a .noticia-titulo {
  font-family: "Karnov Display";
  font-size: 24px;
}

#noticias_sala_prensa h2 {
  display: none;
}
#noticias_sala_prensa ul li {
  display: flex;
  margin: 0;
  padding: 25px 0;
  border-bottom: 1px solid #cacbcd;
}
#noticias_sala_prensa ul li::after {
  top: 15px;
  display: none;
}
#noticias_sala_prensa ul li img {
  width: 150px;
  max-width: 150px;
  height: 100%;
  margin: 0;
  margin-right: 15px;
}
#noticias_sala_prensa ul li a {
  display: flex;
  flex-direction: column;
  font-family: "Karnov Display";
  font-size: 24px;
  color: #1a1919;
  font-weight: 500;
}
#noticias_sala_prensa ul li a b {
  order: 1;
  font-weight: 100;
  font-family: "Roboto Light";
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 10px;
}
#noticias_sala_prensa ul li a em {
  order: 2;
  font-style: normal;
  margin-bottom: 10px;
}
#noticias_sala_prensa ul li a i {
  order: 3;
  font-weight: 100;
  font-family: "Roboto Light";
  font-size: 18px;
  margin-bottom: 10px;
}
#noticias_sala_prensa ul li a tt {
  order: 4;
  font-weight: 100;
  font-family: "Roboto Light";
  font-size: 18px;
}

.carrusel_home {
  position: relative;
  overflow: auto;
}
.carrusel_home li {
  list-style: none;
  float: left;
}

@media (max-width: 800px) {
  .main_header_logo_laley .header_logo_laley {
    width: 115px;
  }
  .wrapper_header_and_nav {
    padding: 15px;
  }
  .wrap_container {
    margin-top: 100px;
    padding: 15px;
  }
  .wrapper_max_width_lg {
    max-width: 100%;
  }
  .box {
    padding: 20px;
  }
  .box a {
    margin-bottom: 15px;
  }
  .box_img .wrapper_text h2 {
    overflow-wrap: break-word;
    font-size: 30px;
  }
  .df_50_50 > * {
    min-width: 100%;
  }
  .df_33_33_33 > * {
    min-width: 100%;
  }
  .btn {
    padding: 10px 15px;
  }
  .wrapper_columns > * {
    min-width: 100%;
  }
}
@media (max-width: 950px) {
  .caption {
    padding: 20px;
    height: 170px;
  }
  .caption h1 {
    font-size: 25px;
  }
  .caption p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0;
  }
}
@media (max-width: 760px) {
  .caption {
    left: 15px;
    bottom: -1px;
    width: calc(100% - 30px);
  }
  .box_text h2 {
    font-size: 25px;
  }
  .box_text_intro {
    padding: 25px;
  }
}
.main_header_logo_laley .header_logo_laley {
  width: 120px;
}

.bg_header_image {
  background-size: cover;
  background-position: center center;
  height: 515px;
}

#bg_img_header_carrusel_image_1 {
  background-image: url("../img/header-silla.jpg");
}

#bg_img_header_carrusel_image_2 {
  background-image: url("../img/header-laleydigital.jpg");
}

#bg_img_header_carrusel_image_3 {
  background-image: url("../img/header-ciss-fiscal.jpg");
}

#bg_img_header_carrusel_image_4 {
  background-image: url("../img/header-jurimetria.jpg");
}

#bg_img_header_carrusel_image_5 {
  background-image: url("../img/header-smarteca.jpg");
}

#bg_img_header_carrusel_image_6 {
  background-image: url("../img/header-consultor-ayuntamientos.jpg");
}

#bg_img_header_carrusel_image_7 {
  background-image: url("../img/header-contractbox.jpg");
}

#bg_img_header_carrusel_image_8 {
  background-image: url("../img/header-complylaw.jpg");
}

#bg_img_header_laley_digital {
  background-image: url("../img/header-laleydigital.jpg");
}

#bg_img_header_consultor_juridico {
  background-image: url("../img/header-consultor-juridico.jpg");
}

#bg_img_header_ciss_fiscal {
  background-image: url("../img/header-ciss-fiscal.jpg");
}

#bg_img_header_ciss_laboral {
  background-image: url("../img/header-ciss-laboral.jpg");
}

#bg_img_header_ciss_contable_mercantil {
  background-image: url("../img/header-ciss-contable-mercantil.jpg");
}

#bg_img_header_bitopus_ciss {
  background-image: url("../img/header-bitopus-ciss.jpg");
}

#bg_img_header_consultor_ayuntamientos {
  background-image: url("../img/header-consultor-ayuntamientos.jpg");
}

#bg_img_header_jurimetria {
  background-image: url("../img/header-jurimetria.jpg");
}

#bg_img_header_contractbox {
  background-image: url("../img/header-contractbox.jpg");
}

#bg_img_header_evidencias_ecoiuris {
  background-image: url("../img/header-evidencias-ecoiuris.jpg");
}

#bg_img_header_complylaw_fiscal {
  background-image: url("../img/header-complylaw-fiscal.jpg");
}

#bg_img_header_complylaw_penal {
  background-image: url("../img/header-complylaw-penal.jpg");
}

#bg_img_header_complylaw_privacidad {
  background-image: url("../img/header-complylaw-privacidad.jpg");
}

#bg_img_header_complylaw_igualdad {
  background-image: url("../img/header-complylaw-igualdad.jpg");
}

#bg_img_header_complylaw_operaciones_vinculadas {
  background-image: url("../img/header-complylaw-operaciones-vinculadas.jpg");
}

#bg_img_header_complylaw_canal_etico {
  background-image: url("../img/header-canal-etico.jpg");
}

#bg_img_header_checkfiscal {
  background-image: url("../img/header-checkfiscal.jpg");
}

#bg_img_header_gioconda {
  background-image: url("../img/header-gioconda.jpg");
}

#bg_img_header_consultor_elicita {
  background-image: url("../img/header-elicita.jpg");
}

#bg_img_header_smarteca {
  background-image: url("../img/header-smarteca.jpg");
}

#bg_img_header_cuadernos_de_pedagogia {
  background-image: url("../img/header-cuadernosdepedagogia.jpg");
}

#bg_img_header_obras_actualizables {
  background-image: url("../img/header-obras-actualizables.jpg");
}

#bg_img_header_libros {
  background-image: url("../img/header-libros.jpg");
}

#bg_img_header_ultimas_novedades_editoriales {
  background-image: url("../img/headers/header-libros.jpg");
}

#bg_img_header_diariolaley {
  background-image: url("../img/header-diariolaley.jpg");
}

#bg_img_header_tecnica_contable_financiera {
  background-image: url("../img/header-tecnica-contable-financiera.jpg");
}

#bg_img_header_revista_el_consultor_de_los_ayuntamientos {
  background-image: url("../img/header-revista-consultor-ayuntamientos.jpg");
}

#bg_img_header_capital_humano {
  background-image: url("../img/header-capital-humano.jpg");
}

#bg_img_header_revista_cuadernos_de_pedagogia {
  background-image: url("../img/header-revista-cuadernos-pedagogia.jpg");
}

#bg_img_header_portal_de_revistas {
  background-image: url("../img/header-portal-de-revistas.jpg");
}

#bg_img_header_marcas_la_ley {
  background-image: url("../img/header-marcas-laley.jpg");
}

#bg_img_header_marcas_bosch {
  background-image: url("../img/header-bosch.jpg");
}

#bg_img_header_marcas_ciss {
  background-image: url("../img/header-ciss.jpg");
}

#bg_img_header_marcas_el_consultor_de_los_ayuntamientos {
  background-image: url("../img/header-marcas-consultor-de-los-ayuntamientos.jpg");
}

#bg_img_header_profesionales_juridicos {
  background-image: url("../img/header-profesionales-juridicos.jpg");
}

#bg_img_header_pymes_y_autonomos {
  background-image: url("../img/header-profesionales-pymes-y-autonomos.jpg");
}

#bg_img_header_profesionales_de_la_educacion {
  background-image: url("../img/header-profesionales-profesionales-de-la-educacion.jpg");
}

#bg_img_header_asesorias {
  background-image: url("../img/header-profesionales-asesorias.jpg");
}

#bg_img_header_grandes_empresas {
  background-image: url("../img/header-profesionales-grandes-empresas.jpg");
}

#bg_img_header_administraciones_publicas {
  background-image: url("../img/header-profesionales-administraciones-publicas.jpg");
}

#bg_img_header_la_ley_responde {
  background-image: url("../img/header-contacto.jpg");
}

#bg_img_header_eventos {
  background-image: url("../img/header-sobrenostros-laley-eventos.jpg");
}

#bg_img_header_nuestros_autores {
  background-image: url("../img/header-buscador-autores.jpg");
}

nav#nav_mobile {
  display: none;
}

nav#nav_desktop {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-top: 20px;
}
nav#nav_desktop li.menu_link {
  list-style: none;
}
nav#nav_desktop li.menu_link > a {
  position: relative;
  color: #1a1919;
  font-family: "Roboto Medium";
  font-weight: 500;
  padding: 0 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 30px;
}
nav#nav_desktop li.menu_link > a:last-child {
  padding-right: 0;
}
nav#nav_desktop li.menu_link > a::after {
  display: none;
  content: "";
  position: absolute;
  z-index: 100;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-bottom: 21px solid hsl(240deg, 100%, 12%);
}
nav#nav_desktop li.menu_link > a span {
  position: relative;
}
nav#nav_desktop li.menu_link > a span::before {
  display: none;
  content: "";
  position: absolute;
  z-index: 100;
  width: 100%;
  left: 0;
  bottom: 2px;
  border-bottom: 1px solid hsl(240deg, 100%, 12%);
}
nav#nav_desktop li.menu_link:hover:not(.inicio) > a::after {
  display: block;
}
nav#nav_desktop li.menu_link:hover:not(.inicio) > a span::before {
  display: block;
}

.megamenu {
  display: none;
  position: absolute;
  z-index: 99;
  left: 0;
  width: 100%;
  min-height: 200px;
  background-color: hsl(240deg, 100%, 12%);
  padding: 60px 5%;
  margin-top: 20px;
  padding-left: 170px;
}

.megamenu.formacion,
.megamenu.marcas,
.megamenu.profesionales,
.megamenu.contacto {
  min-width: 400px;
  width: 400px;
  right: 0;
  left: unset;
  padding-left: 40px;
}

.megamenu.formacion {
  right: 300px;
}

.megamenu.hover {
  display: block;
}

.wrapper_suboptions {
  margin-top: 20px;
}
.wrapper_suboptions .suboption_column {
  border-right: solid 1px hsla(203deg, 42%, 93%, 0.2);
  min-width: auto;
}
.wrapper_suboptions .suboption_column h2 {
  margin-bottom: 20px;
}
.wrapper_suboptions .suboption_column li {
  margin-bottom: 10px;
}
.wrapper_suboptions .suboption_column li a {
  margin-top: -5px;
}
.wrapper_suboptions .suboption_column:last-child {
  border-right: none;
}
.wrapper_suboptions .suboption_column a.btn {
  margin-top: 40px;
}
.wrapper_suboptions .suboption_column ul > h2.menu_block {
  margin-bottom: 0;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .megamenu {
    padding-left: 60px;
  }
}
@media (max-width: 950px) {
  nav#nav_desktop {
    display: none;
  }
  .icon_menu_mobile {
    display: block;
    margin-left: auto;
    margin-top: 10px;
    font-size: 30px;
  }
  .icon_menu_mobile:hover {
    cursor: pointer;
  }
  nav#nav_mobile.open {
    margin: 0;
    margin-top: 5px;
    display: block;
    position: absolute;
    left: 0;
    width: calc(100% + 22px);
    height: 90vh;
    overflow-y: scroll;
    background-color: #fed75b;
    padding: 30px 20px;
  }
  nav#nav_mobile.open ul {
    padding-right: 20px;
  }
  nav#nav_mobile.open ul > li {
    position: relative;
    margin-bottom: 30px;
  }
  nav#nav_mobile.open ul > li .arrow {
    position: absolute;
    right: 0;
    top: 2px;
  }
  nav#nav_mobile.open ul > li .arrow:hover {
    cursor: pointer;
  }
  nav#nav_mobile.open ul > li p {
    margin-bottom: 0;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile {
    display: none;
    padding-left: 20px;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile li {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 17px;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile a {
    position: relative;
    display: block;
    color: #3f403a;
    font-size: 15px;
    width: 100%;
    margin-bottom: 10px;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile a::after {
    display: block;
    position: absolute;
    border-bottom: solid 1px red;
  }
  nav#nav_mobile.open ul.wrapper_subotions_mobile a:hover {
    text-decoration: underline;
  }
}
#header_image .wrapper_header_image {
  position: relative;
}
#header_image .wrapper_header_image img {
  width: 100%;
  height: 100%;
}

#widget_novedades .wrapper_widget {
  max-height: 650px;
  overflow-y: scroll;
}
#widget_novedades .wrapper_widget ul {
  padding-left: 10px;
}
#widget_novedades .wrapper_widget li {
  position: relative;
  padding-right: 10px;
  padding-left: 8px;
  margin-bottom: 20px;
}
#widget_novedades .wrapper_widget li::after {
  position: absolute;
  content: ">";
  color: hsl(50deg, 100%, 50%);
  font-size: 24px;
  font-weight: 900;
  top: 0px;
  left: -10px;
}
#widget_novedades .wrapper_widget a {
  font-size: 18px;
  color: #3f403a;
}
#widget_novedades .wrapper_widget a:hover {
  text-decoration: underline;
}

#widget_productos_relacionados .wrapper_title {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#widget_productos_relacionados .wrapper_productos {
  margin-top: 40px;
}
#widget_productos_relacionados .producto_item > * {
  margin-bottom: 20px;
}
#widget_productos_relacionados .producto_item a.btn {
  margin-top: auto;
}

#widget_avisos h2 {
  font-size: 23px;
  line-height: 27px;
  color: #3f403a;
  font-weight: 400;
  font-family: "Roboto Regular";
}
#widget_avisos .wrapper_max_width_lg p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto Light";
  letter-spacing: -0.1px;
  line-height: 1.27;
  margin: bottom 1em;
  color: #575757;
}
#widget_avisos .wrapper_max_width_lg a {
  color: #3f403a;
}
#widget_avisos .wrapper_max_width_lg a:hover {
  text-decoration: underline;
}
#widget_avisos .wrapper_max_width_lg li {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto Light";
  letter-spacing: -0.1px;
  line-height: 1.27;
  margin: bottom 1em;
}

#noticias_sala_prensa .box img {
  display: none;
}

#ultimas_novedades_editoriales .btn_year {
  margin-bottom: 40px;
}
#ultimas_novedades_editoriales .btn_year:hover {
  cursor: pointer;
}
#ultimas_novedades_editoriales .wrapper_novedades_year {
  display: flex;
  flex-wrap: wrap;
}
#ultimas_novedades_editoriales .novedades_item {
  width: 220px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
}
#ultimas_novedades_editoriales .novedades_item .novedad_portada img {
  border: solid 1px #dcdcdc;
}
#ultimas_novedades_editoriales .novedades_item .novedad_title {
  margin-top: 10px;
}

#wrapper_buscador_autores .wrapper_listado_materias {
  margin-bottom: 50px;
  flex-wrap: wrap;
}
#wrapper_buscador_autores .wrapper_listado_materias .materia_item {
  width: 33%;
  margin-bottom: 8px;
}
#wrapper_buscador_autores .wrapper_listado_materias .materia_item label input {
  margin-right: 10px;
  width: 20px !important;
  height: 20px !important;
}
#wrapper_buscador_autores .wrapper_listado_materias .materia_item label:hover {
  cursor: pointer;
}
#wrapper_buscador_autores .wrapper_busqueda_nombre input#input-buscador-autores {
  width: 100%;
}

#wrapper_resultado_busqueda_autores .row_autores {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 40px;
}
#wrapper_resultado_busqueda_autores .wrapper_autor {
  position: relative;
  background-color: hsl(40deg, 17%, 86%);
  width: 33%;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .texto_autor_single {
  display: none;
  background-color: white;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor {
  display: flex;
  flex-direction: column;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor .foto_autor {
  position: relative;
  transition: all 0.3s ease-in-out;
  background-color: none;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor .foto_autor img {
  transition: all 0.3s ease-in-out;
  opacity: 1;
  width: 100%;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor .foto_autor:after {
  font-family: "Karnov Icons Open";
  transition: all 0.3s ease-in-out;
  position: absolute;
  content: "\e84a";
  font-size: 40px;
  font-weight: 100;
  color: hsl(50deg, 100%, 50%);
  top: 39%;
  left: 45%;
  opacity: 0;
}
#wrapper_resultado_busqueda_autores .wrapper_autor .trigger_autor .nombre_cargo_autor {
  padding: 30px;
  background-color: hsl(40deg, 17%, 86%);
}
#wrapper_resultado_busqueda_autores .wrapper_autor:hover {
  cursor: pointer;
}
#wrapper_resultado_busqueda_autores .wrapper_autor:hover .foto_autor {
  background-color: #686868;
}
#wrapper_resultado_busqueda_autores .wrapper_autor:hover .foto_autor img {
  opacity: 0.3;
}
#wrapper_resultado_busqueda_autores .wrapper_autor:hover .foto_autor:after {
  opacity: 1;
}
#wrapper_resultado_busqueda_autores .wrapper_autor.show_arrow::after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: calc(50% - 30px);
  transform: rotate(180deg);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid hsl(40deg, 17%, 86%);
}
#wrapper_resultado_busqueda_autores .ficha_autor_full {
  position: relative;
  max-width: 95%;
  margin-inline: auto;
  display: none;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .wrapper_ficha_full img.foto_autor {
  float: left;
  margin: 30px;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .wrapper_ficha_full .texto_autor_full {
  width: 100%;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .wrapper_ficha_full .texto_autor_full a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .wrapper_ficha_full .texto_autor_full a:hover {
  text-decoration: underline;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .close_ficha {
  position: absolute;
  top: 20px;
  right: 20px;
}
#wrapper_resultado_busqueda_autores .ficha_autor_full .close_ficha:hover {
  cursor: pointer;
}

@media (max-width: 1035px) {
  #wrapper_buscador_autores .wrapper_listado_materias .materia_item {
    width: 40%;
    flex-grow: 1;
  }
}
@media (max-width: 850px) {
  #wrapper_resultado_busqueda_autores .row_autores {
    flex-direction: column;
  }
  #wrapper_resultado_busqueda_autores .wrapper_autor {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #wrapper_buscador_autores .wrapper_listado_materias .materia_item {
    width: 100%;
    flex-grow: 1;
  }
}
#novedades_container .tab-content {
  padding-top: 50px;
}
#novedades_container h2 {
  margin-bottom: 50px;
  font-size: 35px;
  text-align: center;
}
#novedades_container a {
  text-decoration: underline;
  color: #3f403a;
}
#novedades_container .iMg {
  float: left;
  margin-right: 25px;
}
#novedades_container img {
  float: left;
  margin-right: 25px;
}
#novedades_container em {
  font-weight: 600;
  color: #000;
}
footer {
  padding-top: 60px;
}
footer p::hover {
  transition: color 0.3s ease-in-out;
  color: hsl(50deg, 100%, 50%);
}
footer a {
  color: #3f403a;
  margin-left: 10px;
  margin-right: 10px;
}

#footer_nav li:not(:first-child):before {
  content: "|";
  padding: 0 7px 0 5px;
}
#footer_nav #footer-nav li:not(:first-child):before {
  content: "|";
  padding: 0 7px 0 5px;
}

#social_icons {
  padding-bottom: 10px;
  padding-top: 34px;
  text-align: center;
}
#social_icons .fk-icon {
  margin-right: 25px;
  color: #3f403a;
}
#social_icons .fk-icon:hover {
  transition: color 0.3s ease-in-out;
  color: hsl(50deg, 100%, 50%);
}

.footer_row > a {
  color: #3f403a;
}
.footer_row > a:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

@media (max-width: 835px) {
  .footer_nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */