@charset "UTF-8";
/*
    Created on : Jun 26, 2025, 5:14:55 PM
    Author     : Vicente Martín <vicente@elgrupo.es>
*/
/*
    Created on : Jun 30, 2025, 12:02:56 PM
    Author     : Vicente Martín <vicente@elgrupo.es>
*/
body,
html {
  scroll-padding-top: 100px;
}
@media only screen and (max-width: 1024px) {
  body,
  html {
    scroll-padding-top: 80px;
  }
}

body {
  padding-top: 100px;
}
@media (max-width: 782px) {
  body {
    padding-top: 80px;
  }
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
}
.main-header__container {
  display: flex;
  justify-content: space-evenly;
  height: 100px;
  transition: all 0.3s;
}
@media only screen and (max-width: 1024px) {
  .main-header__container {
    height: 80px;
    justify-content: center;
    align-items: center;
  }
}
.main-header__container--sticky {
  height: 74px;
}
@media only screen and (max-width: 1024px) {
  .main-header__container--sticky {
    height: 60px;
  }
}
.main-header__logo {
  width: 157px;
  transition: all 0.3s ease-in-out;
}
.main-header__logo--sticky {
  width: 105px;
}
.main-header__logo-link {
  align-self: center;
  width: 157px;
  text-align: center;
  display: flex;
  justify-content: center;
}
body.admin-bar .main-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .main-header {
    top: 46px;
  }
  body.admin-bar .main-header.main-header--sticky {
    top: 0;
  }
}

#menu,
#menu div {
  display: flex;
}

@media only screen and (max-width: 1024px) {
  #menu {
    /*display: none;*/
    position: fixed;
    top: 80px;
    flex-direction: column;
    background: #fff;
    right: 0;
    bottom: 0;
    transition: all 0.3s;
    padding: 32px 0;
    background: #F2F3F0;
    left: 100%;
    min-width: 100%;
    box-shadow: 0px 13px 10px -10px rgba(0, 0, 0, 0.45) inset;
    overflow: auto;
  }
}
@media only screen and (max-width: 1024px) {
  #menu.sticky {
    top: 60px;
  }
}
#menu.main-header__menu--active {
  left: 0;
}
@media only screen and (max-width: 1024px) {
  #menu:not(.has-active-item) ul.menu::before {
    content: "";
    width: 7px;
    height: 100%;
    display: block;
    border-radius: 32px;
    background: #9BC32F;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 20;
  }
}

.main-header__menu ul.menu {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .main-header__menu ul.menu {
    flex-direction: column;
    position: relative;
    width: 100%;
    gap: 15px;
  }
}
.main-header__menu ul.menu > li {
  display: flex;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .main-header__menu ul.menu > li {
    padding: 0 33px;
    flex-direction: column;
  }
}
.main-header__menu ul.menu > li:hover > a::after, .main-header__menu ul.menu > li.current-menu-item > a::after, .main-header__menu ul.menu > li.current-menu-ancestor > a::after {
  width: 42px;
}
@media only screen and (max-width: 1024px) {
  .main-header__menu ul.menu > li:hover > a::after, .main-header__menu ul.menu > li.current-menu-item > a::after, .main-header__menu ul.menu > li.current-menu-ancestor > a::after {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .main-header__menu ul.menu > li.current-menu-item::after, .main-header__menu ul.menu > li.current-menu-ancestor::after {
    content: "";
    height: 31px;
    width: 7px;
    position: absolute;
    left: 2px;
    border-radius: 32px;
    background: #9BC32F;
    top: 9px;
  }
}
@media only screen and (max-width: 1024px) {
  .main-header__menu ul.menu > li.menu-item-has-children > a::before {
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    font-size: 23px;
    order: 99;
    color: #9A9D9F;
    transition: all 0.3s;
    margin-left: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .main-header__menu ul.menu > li.active.menu-item-has-children > a::before {
    transform: rotate(180deg);
    color: #9BC32F;
  }
}
.main-header__menu ul.menu > li > a {
  color: #000;
  text-align: right;
  font-family: Raleway;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .main-header__menu ul.menu > li > a {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #E6E6E6;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
  }
}
.main-header__menu ul.menu > li > a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #9BC32F;
  position: absolute;
  bottom: 24px;
  transition: all 0.3s ease-in-out;
}
.main-header__menu ul.menu > li > a.sticky::after {
  bottom: 22px;
}
.main-header__menu ul.menu > li .sub-menu {
  position: absolute;
  top: 100%;
  left: -60px;
  border-radius: 0px 0px 4px 4px;
  border-top: 2px solid #D9D9D9;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px 40px 35px;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 0;
  overflow: hidden;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .main-header__menu ul.menu > li .sub-menu {
    position: static;
    padding: 30px 25px 33px;
    min-width: auto;
    width: calc(100% + 66px);
    margin-left: -33px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }
}
@media only screen and (max-width: 1024px) {
  .main-header__menu ul.menu > li .sub-menu li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.main-header__menu ul.menu > li .sub-menu li.current-menu-item > a {
  color: #9BC32F;
}
.main-header__menu ul.menu > li .sub-menu li.current-menu-item > a img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(87%) saturate(347%) hue-rotate(35deg) brightness(95%) contrast(92%);
}
.main-header__menu ul.menu > li .sub-menu li .sub-menu {
  position: relative !important;
  box-shadow: none !important;
  border: 0 !important;
  margin-left: 40px !important;
  padding-block: 10px !important;
  display: block !important;
  height: auto !important;
}
@media only screen and (max-width: 600px) {
  .main-header__menu ul.menu > li .sub-menu li .sub-menu {
    margin-left: 60px !important;
    padding-top: 20px !important;
  }
}
.main-header__menu ul.menu > li .sub-menu li a {
  color: #171717;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
}
.main-header__menu ul.menu > li .sub-menu li a:hover {
  color: #9BC32F;
}
.main-header__menu ul.menu > li .sub-menu li a:hover img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(87%) saturate(347%) hue-rotate(35deg) brightness(95%) contrast(92%);
}
.main-header__menu ul.menu > li .sub-menu li a span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.main-header__menu ul.menu > li .sub-menu li a span .menu-icon {
  flex: 0 0 22px;
  text-align: center;
  margin-top: 4px;
  justify-content: center;
}

.menu-open,
.menu-close {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .menu-open,
  .menu-close {
    display: flex;
  }
}

.menu-open {
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: absolute;
  transition: right 0.3s ease, left 0.3s ease;
  z-index: 10;
}
.menu-open--left {
  left: 15px;
}
.menu-open--right {
  right: -45px;
}
.menu-open.active.menu-open--left {
  left: -45px;
  transition-delay: 0s;
}
.menu-open.active.menu-open--right {
  right: 15px;
  transition-delay: 0.3s;
}
.menu-open span {
  display: block;
  height: 3px;
  background-color: #9A9D9F;
  border-radius: 2px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform-origin: center;
}
.menu-open.active span:nth-child(1) {
  transform: rotate(45deg) translate(8.5px, 3px);
}
.menu-open.active span:nth-child(2) {
  opacity: 0;
}
.menu-open.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8.5px, -3px);
}

.rank-math-breadcrumb .last:has(+ .separator) {
  color: inherit !important;
}/*# sourceMappingURL=header.css.map */