@charset "UTF-8";
/*=============== GENERAL STYLES ===============*/
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

#wp-calendar {
  width: 100% !important;
}

a:hover {
  text-decoration: none;
}

.breadcrumbs {
  font-weight: 600;
  color: #fff !important;
}
.breadcrumbs a {
  color: #fff;
}
.breadcrumbs .item-breadcrumb {
  text-transform: capitalize;
}

.nav-languages .nav-link {
  padding: 0.5rem;
}
.nav-languages .nav-link img {
  transition: all 0.3s;
  width: 22px;
  border-radius: 50%;
}

.nav-languages .nav-link img:hover, html[lang=es-ES] .item-es img, html[lang=en-US] .item-en img {
  border: 1px solid #fff;
  transform: scale(1.2);
}

/*=============== HEADER ===============*/
.img-brand {
  max-height: 70px;
}

.bottom-header .menu-item-type-custom {
  position: relative;
}
.bottom-header .menu-item-type-custom.animate-border-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: black;
  transition: all 0.3s;
}
.bottom-header .menu-item-type-custom.animate-border-top:hover::before {
  left: 0;
  width: 100%;
}

.sticky-header {
  position: fixed;
  top: -100%;
  transition: all 0.3s;
  z-index: 2;
  width: 100%;
  -webkit-box-shadow: 0px 5px 4px -1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 5px 4px -1px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 5px 4px -1px rgba(0, 0, 0, 0.13);
}
.sticky-header .img-brand {
  max-height: 50px !important;
}

.fixed-header {
  top: 0;
  width: 100%;
}

.absolute-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.top-header {
  padding: 0.3rem;
}
.top-header a {
  font-size: 0.8em;
}

.menu-lateral {
  position: fixed;
  height: 100%;
  width: 30%;
  background-color: white;
  right: 0;
  top: 0;
  z-index: 3;
  padding: 2em;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.53);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.53);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.53);
  transition: all 0.3s;
}
.menu-lateral .nav-menu-lateral .nav-link {
  margin-left: 0;
  padding-left: 0px !important;
  font-size: 2em;
}
.menu-lateral .menu-lateral-social-shapes {
  position: absolute;
  width: 100%;
  bottom: 0em;
  left: 0em;
  padding: 2em;
}
.menu-lateral .menu-lateral-social-shapes .separator {
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 2em;
}

.hidden-menu {
  transform: translateX(100%);
}

.menu-item-has-children {
  position: relative;
}
.menu-item-has-children .fa-sort-down {
  transform: translateY(-2px);
  margin-left: 0.3em;
}
.menu-item-has-children .sub-menu {
  position: absolute;
  left: 0;
  top: 2.5em;
  list-style: none;
  background-color: #f8f8f8;
  z-index: 3;
  padding: 0;
  width: 230px;
  text-align: left;
  display: none;
  -webkit-box-shadow: 0px 5px 4px -1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 5px 4px -1px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 5px 4px -1px rgba(0, 0, 0, 0.13);
}
.menu-item-has-children .sub-menu .menu-item {
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
}
.menu-item-has-children .sub-menu .menu-item:last-child {
  border-bottom: none;
}
.menu-item-has-children .sub-menu .nav-link {
  text-transform: capitalize;
  font-size: 0.9em;
  font-weight: normal;
}

/*=============== BUTTONS & LINKS ===============*/
.nav-link {
  transition: all 0.3s;
}

.button-master {
  border: none;
  line-height: 3em;
  padding: 0 2rem;
  transition: all 0.3s;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  margin: 0.5em;
}
.button-master:hover {
  text-decoration: none;
}
.button-master.button-rounded {
  border-radius: 1.5em;
}
.button-master.button-squared {
  border-radius: 0px;
}
.button-master.button-half-rounded {
  border-radius: 5px;
}
.button-master:active {
  transform: scale(0.95);
}

.float-buttons {
  bottom: 0.5rem;
  width: 50px;
  z-index: 2;
  display: none;
}
.float-buttons.animation-up .float-link {
  transition: all 0.3s;
}
.float-buttons.animation-up .float-link:hover {
  transform: translateY(-3px);
}
.float-buttons.animation-opacity .float-link {
  transition: all 0.3s;
}
.float-buttons.animation-opacity .float-link:hover {
  opacity: 0.7;
}
.float-buttons.alignment-right {
  right: 0.5em;
}
.float-buttons.alignment-left {
  left: 0.5em;
}
.float-buttons.alignment-center {
  left: 0;
  bottom: 0.5em;
  width: 100%;
}
.float-buttons.alignment-center .nav {
  flex-direction: row !important;
  justify-content: center;
}

.button-icon {
  width: 2.6em;
  height: 2.6em;
  margin: 0.4em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.button-icon.link-rounded {
  border-radius: 50%;
}
.button-icon.link-half-rounded {
  border-radius: 5px;
}
.button-icon.link-squared {
  border-radius: 0px;
}
.button-icon:active {
  transform: scale(0.95);
}

.button-toggle-custom {
  border: none;
  float: right;
  cursor: pointer;
  margin-right: 0;
}

.text-link {
  transition: all 0.3s;
}

.large-button {
  font-size: 1.4em;
}

.small-button {
  font-size: 0.7em;
}

.normal-button {
  font-size: 1em;
}

.button-menu-lateral {
  background-color: transparent;
  width: 40px;
  height: 40px;
  padding: 0.5em 0.6em;
  cursor: pointer;
  border: 1px solid black;
  transition: all 0.3s;
}
.button-menu-lateral.button-style-grid {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(3, 6px);
  grid-gap: 2px;
  padding: 0.5em !important;
}
.button-menu-lateral.button-style-grid .square {
  grid-column: span 1;
  grid-row: span 1;
  display: block;
  background-color: black;
}
.button-menu-lateral.button-style-grid .square:last-child {
  opacity: 0;
  transition: all 0.3s;
}
.button-menu-lateral.button-style-grid:hover .square:last-child {
  opacity: 1;
}
.button-menu-lateral.button-style-grid.close-menu-lateral .square:last-child {
  opacity: 1;
}
.button-menu-lateral.button-style-grid.close-menu-lateral:hover .square:last-child {
  opacity: 0;
}
.button-menu-lateral .line {
  display: block;
  width: 100%;
  height: 2px;
  position: relative;
  transition: all 0.3s;
  background-color: black;
}
.button-menu-lateral .line:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  margin: 8px 0;
  transition: all 0.3s;
}
.button-menu-lateral .line:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  margin: 8px 0;
  transition: all 0.3s;
}
.button-menu-lateral.open-menu:hover .line {
  transform: rotate(90deg);
}
.button-menu-lateral.open-menu:hover .line:after, .button-menu-lateral.open-menu:hover .line:before {
  margin: 0;
  transform: rotate(90deg);
}
.button-menu-lateral.close-menu-lateral:hover .line {
  transform: rotate(45deg);
}
.button-menu-lateral.close-menu-lateral:hover .line:after, .button-menu-lateral.close-menu-lateral:hover .line:before {
  margin: 0;
  transform: rotate(90deg);
}

/*=============== SUBHEADING ===============*/
.sub-heading-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 3em;
}
.sub-heading-section .content-box {
  position: relative;
}
.sub-heading-section .content-box .link-breadcrumb:hover {
  text-decoration: none;
}

.opacity-layer:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/*=============== OWL CAROUSEL ===============*/
/*=============== LIGTHBOX ===============*/
.lb-image {
  border: 1px solid #fff !important;
  border-radius: 0 !important;
}

/*=============== SERVICES ===============*/
.heading-services {
  padding: 5rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
}
.heading-services h1 {
  color: #fff;
  text-transform: uppercase;
}
.heading-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/*=============== ARCHIVE ===============*/
.article-archive {
  position: relative;
  margin-bottom: 2rem;
}
.article-archive .caption-article {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  transition: all 0.3s;
}
.article-archive .caption-article h2 {
  line-height: 2rem;
  margin-bottom: 1rem;
  position: relative;
}
.article-archive .caption-article .button-master {
  position: relative;
}
.article-archive .caption-article::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  transform: scale(1);
  transition: all 0.3s;
}
.article-archive .caption-article:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.article-archive .caption-article:hover::before {
  transform: scale(0.9);
}

/*=============== WOOCOMMERCE ===============*/
.subitem-cart {
  z-index: 3000;
  background-color: #fff;
  padding: 1em;
  width: 250px;
  right: 0;
  border: 1px solid #d7d7d7;
  display: none;
}

.remove-item-cart {
  color: red;
  cursor: pointer;
}

.woocommerce-input-wrapper {
  width: 100%;
}

/*Switch*/
.filter-toggle a {
  display: inline-block;
  width: 55px;
  height: 30px;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #d7d7d7;
  position: relative;
}

.filter-toggle a:before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #f4f4f4;
  border: 1px solid #d7d7d7;
  position: absolute;
  top: 1px;
  border-radius: 50%;
  margin: 0 1px;
  transform: translatex(0);
  transition: all 0.4s;
}

.filter-toggle.active a {
  border: none;
}

.filter-toggle.active a:before {
  transform: translatex(100%);
  border: none;
}

.loop-productos .woocommerce-result-count, .loop-productos .woocommerce-ordering {
  display: none;
}

.info-filter {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  background-color: #f8f8f8;
  padding: 1em;
  align-items: center;
}

.info-filter .woocommerce-result-count, .info-filter .woocommerce-ordering {
  float: none;
}

/*=============== WIDGETS ===============*/
.contact-widget .nav-link {
  padding-left: 0;
}

.contact-widget .nav-link {
  display: inline-block;
}

/*=============== SEARCH MODAL ===============*/
.search-box-modal {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: all 0.3s;
}
.search-box-modal.show-modal {
  transform: translateY(0);
}
.search-box-modal .container-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.search-box-modal .container-form .close-button {
  position: absolute;
  right: 3em;
  top: 3em;
  background-color: transparent;
  border: none;
  color: black;
}
.search-box-modal .container-form .form-search {
  width: 100%;
}
.search-box-modal .container-form .form-search .form-control {
  border-radius: 0;
}

/*=============== SEARCH PAGE ===============*/
.search-results .attachment-post-thumbnail {
  width: 100%;
  height: auto;
}

/*=============== SIDEBAR ===============*/
.widget-area .widget-title {
  font-size: 1em;
}
.widget-area .widget {
  margin: 1em 0;
  padding: 1em 0;
}
.widget-area .widget:last-child {
  border-bottom: none;
}
.widget-area .widget ul {
  list-style: none;
  padding-left: 0;
}
.widget-area .widget ul li {
  line-height: 1.8em;
}
.widget-area .widget ul li::before {
  content: "→ ";
}

/*=============== FORMS ===============*/
.form-control {
  line-height: 3em;
  padding: 1.5em 1em;
}

/*=============== FOOTER ===============*/
.site-footer {
  font-size: 0.9rem;
}
.site-footer .widget-title {
  font-size: 1.5rem;
  font-weight: 500;
}
.site-footer .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .menu .menu-item .nav-link {
  padding: 0.2rem;
  color: #ccc;
  transition: all 0.3s;
}
.site-footer .menu .menu-item .nav-link:hover {
  opacity: 0.7;
}
.site-footer .menu .menu-item .nav-link::before {
  content: "» ";
}
.site-footer .nav-footer {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .nav-footer .nav-item .nav-link {
  padding: 0.2rem;
  transition: all 0.3s;
}
.site-footer .nav-footer .nav-item .nav-link:hover {
  opacity: 0.7;
}
.site-footer .nav-footer .nav-item .nav-link::before {
  content: "» ";
}

.top-footer {
  padding: 2rem 0;
}

.bottom-footer {
  padding: 1rem 0;
  font-size: 1rem;
}

/*=============== RESPONSIVE ===============*/
@media (max-width: 768px) {
  .menu-item-has-children .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    background-color: transparent;
  }
}
@media (max-width: 480px) {
  .container-top-header {
    display: none;
  }

  .bottom-header {
    padding: 0.5em !important;
  }
  .bottom-header .menu-principal {
    text-align: center !important;
  }

  .static-header {
    z-index: 2;
  }

  .bottom-header.sticky-header .button-toggle-custom {
    width: 35px;
    height: 35px;
  }

  .container-nav-header {
    display: none;
    padding: 0;
  }
  .container-nav-header .nav {
    flex-direction: column;
  }
  .container-nav-header .nav .menu-item {
    padding: 0;
  }
  .container-nav-header .nav .menu-item .nav-link {
    padding: 1rem;
  }
  .container-nav-header .nav .menu-item:nth-child(2n+1) {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .widget-title {
    margin-top: 2rem;
    margin-bottom: 1rem !important;
  }

  .heading-services {
    padding: 2rem 1rem;
  }
  .heading-services h1 {
    font-size: 2rem !important;
    line-height: 2.5rem;
    margin-bottom: 2rem;
  }

  .padding-section {
    padding: 2em !important;
  }

  .row-logo-superior {
    justify-content: space-between !important;
  }

  .menu-lateral {
    width: 100%;
    transition: all 0.3s;
  }
  .menu-lateral .menu-item {
    padding: 0.5em;
    border-bottom: 1px solid #ccc;
  }
  .menu-lateral .menu-item:last-child {
    border-bottom: none;
  }
  .menu-lateral .nav-link {
    font-size: 1em;
  }

  .button-open-menu-responsive {
    background-color: #fff;
    padding: 0.5em;
    border-top: 1px solid #ccc;
  }
  .button-open-menu-responsive button {
    background-color: transparent;
    border: none;
    color: #555555;
    letter-spacing: 1px;
    font-size: 0.8em;
    font-weight: normal !important;
  }
  .button-open-menu-responsive button i {
    margin-right: 0.5em;
  }
}

/*# sourceMappingURL=style.css.map */
