*, body, html {
  padding: 0;
  margin: 0;
}

a {
  position: relative;
  text-decoration: none;
  z-index: 2;
}

.bg__grey200 {
  background-color: #d8d8d8;
}

body {
  font-size: 16px;
  font-family: "epilogue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.tit__bold {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: #043D5E;
  font-size: clamp(2.2rem, 3.4vw + 1rem, 3.3rem);
}
.tit__bold--servicio {
  line-height: 0.9;
}
.tit__light {
  font-family: "epilogue", sans-serif;
  font-size: clamp(2.2rem, 3.3vw + 1rem, 3.3rem);
  font-weight: 300;
  color: #000000;
}
.tit__box {
  color: #043D5E;
}
.tit__deco--lg {
  padding-right: 90px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .tit__deco--lg {
    padding-right: 0px;
    margin-bottom: 40px;
  }
}
.tit__deco::before {
  position: absolute;
  content: "";
  right: -40px;
  width: 100%;
  height: 60px;
  background-image: url("../images/svg/tit-deco.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .tit__deco::before {
    height: 48px;
  }
}
.tit__deco::after {
  position: absolute;
  content: "";
  left: -80%;
  top: 0;
  width: 100%;
  height: 60px;
  background-image: url("../images/svg/tit-deco.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .tit__deco::after {
    height: 48px;
    left: -75%;
  }
}
.tit__footer {
  font-family: "epilogue", sans-serif;
  font-size: 1.2rem;
}

.txt__base {
  color: #043D5E;
  font-size: 1rem;
}
.txt__base--caption {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #C9B897;
  min-height: 40px;
}
@media screen and (max-width: 991px) {
  .txt__base--caption {
    min-height: 60px;
  }
}
.txt__max {
  width: 100%;
  max-width: 460px;
}

.white {
  color: #ffffff;
}

ul {
  list-style: none;
  padding-left: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "the-seasons", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.btn {
  border-radius: 25px;
  position: relative;
  z-index: 2;
  padding: 8px 32px;
}
.btn__content {
  width: 100%;
}
.btn__cafe {
  background-color: #C9B897;
  color: #043D5E;
}
.btn__cafe:hover {
  background-color: #e2d9c6;
}
.btn__azul {
  background-color: #043D5E;
  color: #ffffff;
}
.btn__azul:hover {
  background-color: #00243b;
  color: #ffffff;
}
.btn__submit {
  margin-top: 16px;
  background-color: #043D5E;
  color: #ffffff;
}
.btn__submit:hover {
  background-color: #043D5E;
  color: #ffffff;
}
.btn__blog {
  position: relative;
  width: 100%;
  text-align: start;
  border-radius: 0px 0px 20px 20px;
  border-top: 1px solid #043D5E;
  padding: 20px;
}
.btn__blog--aside {
  padding: 8px 0px;
}
.btn__blog--aside i {
  top: 4px !important;
}
.btn__blog:hover {
  border-top: 1px solid #043D5E;
}
.btn__blog i {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 2rem;
  line-height: 1;
  transition: all 0.3s;
}
.btn__blog:hover i {
  right: 32px;
}
@media screen and (max-width: 1200px) {
  .btn__blog:hover i {
    right: 24px;
  }
}
.btn__link {
  color: #043D5E;
}
.btn__link:hover {
  text-decoration: underline;
}

.desktop {
  display: block;
}
@media screen and (max-width: 992px) {
  .desktop {
    display: none !important;
  }
}
.desktop__img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .desktop__img {
    display: none;
  }
}

.movil {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .movil {
    display: flex !important;
    align-items: center;
  }
}
.movil__img {
  display: none;
}
@media screen and (max-width: 768px) {
  .movil__img {
    display: block;
  }
}

/* HEADER NAV */
.menu_bar {
  display: none;
}
@media screen and (max-width: 991px) {
  .menu_bar {
    position: relative;
    display: block;
    cursor: pointer;
    text-align: center;
    margin-left: 16px;
    width: 32px;
    right: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 991px) and (max-width: 576px) {
  .menu_bar {
    width: 42px;
  }
}

.menu_bar .bt-menu {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .menu_bar .bt-menu {
    display: block;
    color: #fff;
    overflow: hidden;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
  }
}
@media screen and (max-width: 991px) and (max-width: 576px) {
  .menu_bar .bt-menu {
    font-size: 32px;
  }
}

.header_nav {
  position: fixed;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 991px) {
  .header_nav {
    width: 100%;
  }
}
.header_nav .nav {
  background-color: #043D5E;
  padding: 12px 0px 20px 0px;
  transition: 0.3s;
  width: 100%;
  z-index: 9;
  top: 4px;
}
@media screen and (max-width: 991px) {
  .header_nav .nav {
    padding: 20px 0px 20px 0px;
  }
}
.header_nav .nav__svg {
  width: 70px;
}
.header_nav .nav__svg path, .header_nav .nav__svg ellipse {
  fill: #ffffff;
}
@media screen and (max-width: 992px) {
  .header_nav .nav__svg--movil path, .header_nav .nav__svg--movil ellipse {
    fill: #000000;
  }
}
.header_nav .nav__menu {
  width: 60%;
}
@media screen and (max-width: 992px) {
  .header_nav .nav__menu {
    position: fixed;
    width: 100%;
    height: 100svh;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0px;
    z-index: 9;
    transform: translateX(100%);
  }
}
.header_nav .nav__close {
  display: none;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__close {
    display: block;
    position: absolute;
    width: 28px;
    height: auto;
    right: 6%;
    top: 26px;
    cursor: pointer;
  }
  .header_nav .nav__close i {
    color: #C9B897;
    font-size: 2rem;
  }
}
.header_nav .nav__logo img {
  height: 80px;
  position: relative;
  top: -20px;
}
@media screen and (max-width: 1400px) {
  .header_nav .nav__logo img {
    height: 80px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 1200px) {
  .header_nav .nav__logo img {
    height: 80px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 1200px) and (max-width: 992px) {
  .header_nav .nav__logo img {
    height: 80px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 1200px) and (max-width: 992px) and (max-width: 576px) {
  .header_nav .nav__logo img {
    height: 60px;
    top: 0;
  }
}
.header_nav .nav__contain {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header_nav .nav__item > a.active {
  color: red;
}
.header_nav .nav__item > a.active::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: -12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url("../images/svg/icon-star.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header_nav .nav__item {
  position: relative;
  margin: 0px 16px;
}
.header_nav .nav__item--dropdown {
  position: relative;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__item--dropdown {
    display: none;
  }
}
.header_nav .nav__item--dropdown:hover .nav__item--sub {
  display: block;
}
.header_nav .nav__item--dropdown::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 10px;
  right: -20px;
  top: 8px;
  background-image: url(../images/svg/icon_arrow_menu_w.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  transform: rotate(0deg);
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__item--dropdown::before {
    content: unset;
  }
}
.header_nav .nav__item--dropdown:hover::before {
  transform: rotate(180deg);
  opacity: 1;
}
.header_nav .nav__item--sub {
  position: absolute;
  left: -16px;
  top: 38px;
  padding-top: 24px;
  padding-bottom: 12px;
  background-color: #043D5E;
  border-radius: 20px;
  transition: all 0.3s;
  padding-left: 0;
  display: none;
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.4);
}
.header_nav .nav__item--sub-a {
  padding: 8px 24px;
}
.header_nav .nav__item--sub-a a {
  color: #ffffff;
  transition: all 0.3s;
  white-space: nowrap;
}
.header_nav .nav__item--sub-a a:hover {
  color: #C9B897;
}
.header_nav .nav__item--sub-a a img {
  position: relative;
  top: -2px;
}
.header_nav .nav__item--sub-a.active a {
  color: rgb(255, 255, 255) !important;
}
@media screen and (max-width: 1400px) {
  .header_nav .nav__item {
    margin: 0px 6px;
  }
}
.header_nav .nav__item a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-family: "epilogue", sans-serif;
  font-size: 1rem;
  padding: 14px 0px 20px 0px;
}
@media screen and (max-width: 1200px) {
  .header_nav .nav__item a {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1200px) and (max-width: 991px) {
  .header_nav .nav__item a {
    color: #ffffff;
    font-size: 1.1rem;
    text-align: start;
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}
.header_nav .nav__item a:hover {
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__item a:hover {
    color: #d0cbbf;
  }
}
.header_nav .nav__item a.active {
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__item a.active {
    color: #C9B897;
  }
}
@media screen and (max-width: 991px) {
  .header_nav .nav__item {
    width: 100%;
  }
}
.header_nav .nav__item--sub:hover .nav__sublist, .header_nav .nav__item--sub:hover .nav__sublistm {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.header_nav .nav__item--special {
  border-radius: 28px;
  padding: 0px 16px 2px 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.header_nav .nav__item--special a {
  color: #ffffff !important;
}
.header_nav .nav__item--ubicacion {
  text-align: center;
  padding-top: 26px;
  border-top: 1px solid blue;
}
.header_nav .nav__item--ubicacion a {
  color: blue;
}
.header_nav .nav__item--legacy {
  position: absolute;
  color: #ffffff;
  bottom: 24px;
  font-size: 0.8rem;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.header_nav .nav .show1::before {
  transform: rotate(180deg);
}
.header_nav .nav__link {
  padding: 10px 8px;
}
@media screen and (max-width: 1200px) {
  .header_nav .nav__link {
    font-size: 0.8rem;
    padding: 10px 4px;
  }
}
.header_nav .nav__link--sub {
  position: relative;
  margin-right: 8px;
}
@media screen and (max-width: 1920px) and (min-width: 991px) {
  .header_nav .nav__link--sub:hover::before {
    transform: rotate(180deg);
  }
}
.header_nav .nav__link--sub::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 10px;
  right: -10px;
  top: 16px;
  background-image: url("../images/svg/icon_arrow_menu_w.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  transform: rotate(0deg);
  opacity: 0.5;
}
.header_nav .nav__link--contact {
  background-color: #ffffff;
  padding: 10px 28px;
  border-radius: 6px;
  transition: all 0.3s;
}
.header_nav .nav__link--contact:hover {
  background-color: #ffffff;
  color: #ffffff !important;
}
.header_nav .nav__link--contact.active {
  background-color: #ffffff;
  color: #ffffff !important;
}
.header_nav .nav__link--conocer {
  border-radius: 6px;
  color: #ffffff !important;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__link--conocer {
    width: 144px !important;
    margin-left: calc(50% - 72px);
  }
}
.header_nav .nav__img {
  height: 60px;
  margin-bottom: 40px;
}
.header_nav .nav__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header_nav .nav__contact {
  display: flex;
  flex-direction: row;
}
.header_nav .nav__cliente {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__cliente {
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.header_nav .nav__cliente--list {
  display: flex;
  flex-direction: row;
}
.header_nav .nav__cliente--contacto {
  display: inline-block;
}
.header_nav .nav__cliente--item .link {
  font-size: 0.8rem;
}
.header_nav .nav__list {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-top: 40px;
  margin-bottom: 0;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__list {
    height: 90%;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 0px 32px;
    gap: 12px;
    background-color: #043D5E;
    min-height: 680px;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .header_nav .nav__list {
    gap: 32px;
  }
}
.header_nav .nav__list > li:first-child {
  position: absolute;
  top: 46px;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 240px;
}
.header_nav .nav__list::before {
  position: absolute;
  box-sizing: content-box;
  content: "";
  top: 0px;
  width: 96%;
  height: 1px;
  margin: 0px 20px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 991px) {
  .header_nav .nav__list::before {
    top: 200px;
    left: 0px;
    width: 90%;
  }
}
.header_nav .nav__social {
  height: 10%;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  background-color: #00243b;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__social {
    display: flex !important;
  }
}
.header_nav .nav__social--item {
  width: 30px;
}
.header_nav .nav__sublist, .header_nav .nav__sublistm {
  position: absolute;
  display: none;
  background-color: blue;
  border-radius: 0px 0px 8px 8px;
  width: -moz-max-content;
  width: max-content;
  gap: 12px;
  margin-top: 6px;
  padding: 50px 24px 16px 24px;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 991px) {
  .header_nav .nav__sublist, .header_nav .nav__sublistm {
    position: relative;
    display: block;
    width: 100%;
    box-shadow: unset;
    background-color: lightblue;
  }
}
.header_nav .nav__sublistm {
  width: -moz-max-content;
  width: max-content;
}
.header_nav .nav__sublistm .nav__sublink {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .header_nav .nav__sublink {
    width: 100%;
  }
}
.header_nav .nav #list_servicios, .header_nav .nav #list_recursos {
  z-index: 9;
}
@media screen and (max-width: 991px) {
  .header_nav .nav #list_servicios, .header_nav .nav #list_recursos {
    display: none;
    left: -20px;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__top {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  background-color: #043D5E;
}
.hero__homepage {
  height: 800px;
  background-image: url("../images/landeros-y-vargas-homepage-hero.jpg");
}
@media screen and (max-width: 768px) {
  .hero__homepage {
    height: 70svh;
  }
}
.hero__nosotros {
  height: 600px;
  background-image: url("../images/landeros-y-vargas-nosotros.jpg");
  background-position: bottom center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .hero__nosotros {
    height: 30svh;
  }
}
.hero__blog {
  height: 600px;
  background-image: url("../images/landeros-y-vargas-blog-03.jpg");
}
.hero__servicios {
  padding: 140px 0px 120px 0px;
}
@media screen and (max-width: 991px) {
  .hero__servicios {
    padding: 100px 0px 60px 0px;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .hero__servicios {
    padding: 80px 0px 40px 0px;
  }
}
.hero::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  z-index: 1;
}
.hero__tit {
  font-size: 3.6rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .hero__tit {
    font-size: 3.2rem;
  }
}
.hero__detalle {
  padding: 140px 0px 120px 0px;
}
@media screen and (max-width: 991px) {
  .hero__detalle {
    padding: 80px 0px 80px 0px;
  }
}

.section__intro {
  padding: 100px 0px;
}
@media screen and (max-width: 991px) {
  .section__intro {
    padding: 80px 0px;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .section__intro {
    padding: 20px 0px 60px 0px;
  }
}
.section__cursos {
  padding: 100px 0px;
}
@media screen and (max-width: 991px) {
  .section__cursos {
    padding: 80px 0px;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .section__cursos {
    padding: 60px 0px 40px 0px;
  }
}
.section__ayuda {
  padding: 100px 0px;
  background-image: url("../images/backg-ayuda-fiscal.png");
  background-position: 40px bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
  .section__ayuda {
    background-size: 50%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 991px) {
  .section__ayuda {
    background-size: 40%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 991px) and (max-width: 768px) {
  .section__ayuda {
    padding: 60px 0px 600px 0px;
    background-size: 400px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 991px) and (max-width: 768px) and (max-width: 576px) {
  .section__ayuda {
    background-size: contain;
  }
}
.section__quienes {
  padding: 80px 0px;
  background-image: url("../images/bg-quienes-somos.png");
  background-position: 80% bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
  .section__quienes {
    padding: 80px 0px 60px 0px;
    background-size: 40%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 991px) {
  .section__quienes {
    background-position: 100% bottom;
  }
}
@media screen and (max-width: 1200px) and (max-width: 991px) and (max-width: 768px) {
  .section__quienes {
    padding: 60px 0px 400px 0px;
    background-size: 320px;
  }
}
.section__mision {
  padding: 80px 0px;
}
.section__instalaciones {
  padding: 80px 0px 0px 0px;
}
.section__servicios {
  padding: 120px 0px 80px;
}
.section__proteger {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  .section__proteger img {
    display: block;
    width: 260px;
    margin: 0 auto;
    margin-top: 30px;
  }
}
.section__articulos {
  padding: 80px 0px;
}
.section__formulario {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  .section__formulario {
    padding: 60px 0px 600px 0px;
    background-size: 400px;
  }
}
@media screen and (max-width: 768px) and (max-width: 576px) {
  .section__formulario {
    background-size: contain;
  }
}
.section__divider {
  width: 100%;
  height: 4px;
  background-color: #e4dbcb;
}
.section__equipo {
  padding: 100px 0px 20px 0px;
}
@media screen and (max-width: 991px) {
  .section__equipo {
    padding: 60px 0px 0px 0px;
  }
}
.section__mapa {
  padding: 100px 0px 0px 0px;
}
.section__mapa iframe {
  padding: 0;
}

.equipo__img {
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  margin-bottom: 24px;
  width: 200px;
}

.compromiso__tit {
  margin-bottom: 100px;
}
@media screen and (max-width: 991px) {
  .compromiso__tit {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 991px) and (max-width: 786px) {
  .compromiso__tit {
    margin-bottom: 60px;
  }
}
.compromiso__acordeon {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 992px) {
  .compromiso__acordeon {
    flex-direction: column-reverse;
  }
}
.compromiso__acordeon--img {
  display: block;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/landeros-vargas-asesoria-empresarial.jpg");
  background-size: cover;
  border-radius: 0px 40px 40px 0px !important;
}
@media screen and (max-width: 992px) {
  .compromiso__acordeon--img {
    height: 260px;
    width: 100%;
    border-radius: 40px 40px 0px 0px !important;
  }
}
.compromiso__acordeon .accordion {
  width: 50%;
}
@media screen and (max-width: 992px) {
  .compromiso__acordeon .accordion {
    width: 100%;
  }
}
.compromiso__acordeon .accordion button {
  box-shadow: none;
  font-size: 1.3rem;
}
.compromiso__acordeon .accordion-item {
  background-color: #d0cbbf;
}
.compromiso__acordeon .accordion-item button {
  background-color: #d0cbbf;
}
.compromiso__acordeon .accordion-item button.collapsed {
  background-color: #e4dbcb;
}

.headingOne {
  background-image: url("../images/landeros-vargas-asesoria-empresarial.jpg");
  animation-name: bgAccordionOne !important;
  animation-duration: 0.6s !important;
  animation-fill-mode: forwards !important;
}

.headingTwo {
  background-image: url("../images/landeros-y-vargas-gestion-de-riesgo.jpg");
  animation-name: bgAccordionTwo !important;
  animation-duration: 0.6s !important;
  animation-fill-mode: forwards !important;
}

.headingThree {
  background-image: url("../images/landeros-vargas-cumplimiento-legal.jpg");
  animation-name: bgAccordionThree !important;
  animation-duration: 0.6s !important;
  animation-fill-mode: forwards !important;
}

.headingFour {
  background-image: url("../images/landeros-vargas-litigios.jpg");
  animation-name: bgAccordionFour !important;
  animation-duration: 0.6s !important;
  animation-fill-mode: forwards !important;
}

.headingFive {
  background-image: url("../images/landeros-vargas-asesoramiento-cumplimiento-normativo.jpg");
  animation-name: bgAccordionFive !important;
  animation-duration: 0.6s !important;
  animation-fill-mode: forwards !important;
}

@keyframes bgAccordionOne {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgAccordionTwo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgAccordionThree {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgAccordionFour {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgAccordionFive {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.border__left--top {
  border-radius: 40px 0px 0px 0px !important;
}
@media screen and (max-width: 992px) {
  .border__left--top {
    border-radius: 0px 0px 0px 0px !important;
  }
}
.border__left--bottom {
  border-radius: 0px 0px 0px 40px !important;
}
@media screen and (max-width: 992px) {
  .border__left--bottom {
    border-radius: 0px 0px 40px 40px !important;
  }
}

.box__star {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .box__star {
    justify-content: start;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .box__star {
    flex-direction: row;
    align-items: center;
  }
}
.box__star--img {
  width: 200px;
  filter: drop-shadow(1px 3px 4px lightgrey);
}
@media screen and (max-width: 991px) {
  .box__star--img {
    width: 180px;
  }
}
@media screen and (max-width: 991px) and (max-width: 576px) {
  .box__star--img {
    width: 120px;
  }
}
.box__star--txt {
  width: 100%;
  max-width: 260px;
}
@media screen and (max-width: 991px) {
  .box__star--txt {
    max-width: 100%;
  }
}
.box__servicios {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: calc(48% - 60px);
  border-radius: 24px;
  padding: 24px;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .box__servicios {
    width: calc(48% - 15px);
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .box__servicios {
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) and (max-width: 576px) {
  .box__servicios {
    width: 100%;
  }
}
.box__servicios:hover {
  background-color: #e4dbcb;
}
.box__servicios:hover img {
  top: -30px;
}
.box__servicios--container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 0px 120px;
}
@media screen and (max-width: 991px) {
  .box__servicios--container {
    justify-content: space-between;
    gap: 0px 30px;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .box__servicios--container {
    gap: 28px 30px;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) and (max-width: 576px) {
  .box__servicios--container {
    gap: 24px 0px;
  }
}
.box__servicios--img {
  position: relative;
  top: -20px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 991px) {
  .box__servicios--img {
    width: 120px;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .box__servicios--img {
    width: 100px;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) and (max-width: 576px) {
  .box__servicios--img {
    width: 80px;
  }
}

.blog__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .blog__container {
    gap: 32px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 991px) {
  .blog__container {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.blog__item {
  width: calc(30% - 30px);
  background-color: #e4dbcb;
  border-radius: 28px;
  border: 1px solid #043D5E;
}
@media screen and (max-width: 1200px) {
  .blog__item {
    width: calc(33% - 16px);
  }
}
@media screen and (max-width: 1200px) and (max-width: 991px) {
  .blog__item {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 1200px) and (max-width: 991px) and (max-width: 768px) {
  .blog__item {
    width: 100%;
  }
}
.blog__item img {
  border-radius: 28px 28px 0px 0px;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.blog__item--txt {
  padding: 24px;
  min-height: 310px;
}
@media screen and (max-width: 1400px) {
  .blog__item--txt {
    min-height: 400px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 768px) {
  .blog__item--txt {
    min-height: auto;
  }
}
.blog__fecha {
  text-align: end;
}
.blog__tit {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.blog__detalle--list {
  color: #043D5E;
  list-style: disc;
  padding-left: 40px;
  font-size: 1rem;
}
.blog__detalle--fecha {
  font-size: 0.9rem;
  font-style: italic;
}
.blog__detalle--pleca {
  width: 100px;
  height: 2px;
  border-radius: 8px;
  background-color: #043D5E;
  opacity: 1;
}
.blog__detalle--article {
  position: relative;
}
.blog__detalle--article::before {
  position: absolute;
  content: "";
  bottom: 0px;
  width: 100%;
  height: 140px;
}
.blog__detalle--social {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}
.blog__detalle--social li svg {
  width: 28px;
}
.blog__detalle--social li svg path, .blog__detalle--social li svg rect {
  fill: #043D5E;
}
.blog__detalle--cover {
  position: relative;
  width: 100%;
}
.blog__detalle--cover img {
  border-radius: 24px 24px 0px 0px;
}
.blog__detalle--cover::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 200px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.blog__detalle--cover::after {
  position: absolute;
  content: "";
  margin: 0 auto;
  bottom: -40px;
  left: 0;
  right: 0;
  width: 180px;
  height: 80px;
  background-image: url("../images/svg/deco-blog-item.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .blog__detalle--cover::after {
    width: 135px;
    height: 60px;
  }
}
.blog__aside {
  position: sticky;
  top: 200px;
  background-color: #F9F9F9;
  border-radius: 24px;
  padding: 24px 48px;
}
@media screen and (max-width: 1200px) {
  .blog__aside {
    padding: 24px 24px;
  }
}
.blog__aside--tit {
  font-size: 1.2rem;
}
@media screen and (max-width: 1400px) {
  .blog__aside--tit {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1400px) and (max-width: 1400px) {
  .blog__aside--tit {
    font-size: 1.2rem;
  }
}
.blog__aside--item {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-bottom: 24px;
}
@media screen and (max-width: 1400px) {
  .blog__aside--item {
    width: 100%;
  }
}
.blog__aside--item img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  margin-right: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 1200px) {
  .blog__aside--item img {
    width: 80px;
  }
}
.blog__aside--detalle {
  width: 80%;
}
.blog__aside--fecha {
  font-size: 0.8rem;
  font-style: italic;
}

.contacto__row {
  padding: 40px 0px;
}
.contacto__mapa--tit {
  margin: 0 auto;
  margin-bottom: 80px;
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.breadcrumbs__item {
  opacity: 0.5;
  font-size: 1rem;
  color: #043D5E;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
  min-width: 60px;
}
.breadcrumbs__item:hover {
  opacity: 1;
}
.breadcrumbs__item img {
  position: relative;
  top: -2px;
  margin-right: 8px;
}
.breadcrumbs__item.active {
  opacity: 1;
  position: relative;
  color: #043D5E;
}
.breadcrumbs__item.active::before {
  position: absolute;
  content: "/";
  left: -14px;
  color: #00243b;
}

/* FOOTER */
.footer {
  padding: 80px 0px;
  background-color: #043D5E;
}
@media screen and (max-width: 991px) {
  .footer {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 991px) and (max-width: 768px) {
  .footer {
    padding: 60px 0px 40px 0px;
  }
}
.footer__logo {
  width: 320px;
}
.footer__menu {
  font-size: 1rem;
}
.footer__menu--social {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .footer__menu--social {
    margin-top: 24px;
  }
}
.footer__menu--social--top {
  gap: 16px;
  margin-right: 16px;
}
.footer__menu li {
  margin: 8px 0px;
}
.footer__menu a {
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .footer__contacto {
    margin-top: 24px;
  }
}

.legales {
  background-color: #00243b;
  text-align: center;
  padding: 24px 0px;
}
.legales p {
  margin: 0;
  padding: 0;
  color: #ffffff;
}

/* FORMULARIO */
.input, textarea {
  width: 100%;
  border: none;
  background-color: #C9B897;
  border-radius: 12px;
  padding: 8px 12px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.input::-moz-placeholder, textarea::-moz-placeholder {
  color: #043D5E;
}
.input::placeholder, textarea::placeholder {
  color: #043D5E;
}

/* MENSAJE DE ERROR */
.formulario__grupo-input {
  position: relative;
}

.formulario__input-error {
  font-family: var(--font-auto-pro);
  font-size: 0.9rem;
  margin-bottom: 0px;
  padding: 4px 8px;
  display: none;
}

.formulario__input-error-activo {
  display: block;
}

.formulario__validacion-estado {
  position: absolute;
  right: 6px;
  top: 28px;
  z-index: 100;
  font-size: 16px;
  opacity: 0;
}

#banner_reserva .formulario__validacion-estado {
  position: absolute;
  right: unset;
  top: 18px;
  margin-left: 120px;
}

#banner_reserva .item_form:nth-child(2) .formulario__validacion-estado {
  margin-left: 144px;
}

#banner_reserva .item_form:nth-child(4) .formulario__validacion-estado {
  margin-left: 156px;
}

.formulario__mensaje, .formulario__captcha {
  height: 45px;
  line-height: 45px;
  background: #F66060;
  padding: 0 15px;
  border-radius: 3px;
  margin-bottom: 12px;
  display: none;
}

.formulario__mensaje-activo {
  display: block;
}

.formulario__mensaje-exito {
  margin-top: 8px;
  font-size: 14px;
  background-color: #1eab0b;
  padding: 10px 15px;
  color: #ffffff;
  display: none;
}

.formulario__mensaje-exito-activo {
  display: block;
}

/* Estilos para Validacion */
.formulario__grupo-correcto .formulario__validacion-estado {
  color: #1ed12d;
  opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
  color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
  color: #bb2929;
  opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
  border: 3px solid #bb2929;
}/*# sourceMappingURL=style.css.map */