/*
negocio/plantillas/panels/0101heropaginainterior/style.css
negocio/plantillas/panels/0005breadcrumb/style.css
negocio/plantillas/panels/1301contactomini/style.css
*/
.mdl-herointerior .hero {
  width: 100vw;
  height: 56.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  justify-content: center;
}
.mdl-herointerior .hero .hero-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 58.3rem;
}
.mdl-herointerior .hero .hero-content .title {
  text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.35);
  font-family: "Barlow";
  font-size: 6.5rem;
  line-height: 0.98;
  letter-spacing: 0.006rem;
  text-align: center;
}
@media (max-width: 769px) {
  .mdl-herointerior .hero .hero-content .title {
    font-size: 5.5rem;
    line-height: 1.16;
    letter-spacing: 0.005rem;
    position: inherit;
  }
}
@media (max-width: 551px) {
  .mdl-herointerior .hero .hero-content .title {
    font-size: 4.5rem;
    line-height: 1.42;
    letter-spacing: 0.004rem;
  }
}
.mdl-herointerior .hero .hero-content .pre-title {
  text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.35);
  font-family: "Montserrat";
  font-size: 2.1rem;
  line-height: 1.71;
  letter-spacing: 0.338rem;
  text-align: center;
}
@media (max-width: 769px) {
  .mdl-herointerior .hero .hero-content .pre-title {
    font-size: 1.8rem;
    line-height: 2.9;
    letter-spacing: 0.433;
  }
}
@media (max-width: 551px) {
  .mdl-herointerior .hero .hero-content .pre-title {
    font-size: 1.7rem;
    line-height: 4.59;
    letter-spacing: 0.274rem;
  }
}
.mdl-herointerior .hero .mouse_scroll {
  display: none;
}
.mdl-herointerior .hero-nav {
  padding: 0.14rem 6.7rem;
}
.mdl-herointerior.landing .hero {
  height: 92rem;
  align-items: center;
  position: relative;
}
.mdl-herointerior.landing .hero .mouse_scroll {
  display: block;
  margin: 0 auto;
  position: absolute;
  right: 50%;
  bottom: 9rem;
  cursor: pointer;
  transform: translateX(50%);
  align-items: center;
}
.mdl-herointerior.landing .hero .mouse_scroll .mouse {
  height: 2.8rem;
  width: 1.6rem;
  border-radius: 14px;
  border: 0.2rem solid white;
}
.mdl-herointerior.landing .hero .mouse_scroll .mouse .wheel {
  display: block;
  margin: 0.5rem auto;
  background: white;
  position: relative;
  height: 0.6rem;
  width: 0.2rem;
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}
.mdl-herointerior.landing .hero .mouse_scroll .arrows-container {
  align-items: center;
}
.mdl-herointerior.landing
  .hero
  .mouse_scroll
  .arrows-container
  .m_scroll_arrows {
  display: block;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  border-right: 0.1rem solid white;
  border-bottom: 0.1rem solid white;
  width: 0.8rem;
  height: 0.8rem;
}
.mdl-herointerior.landing
  .hero
  .mouse_scroll
  .arrows-container
  .m_scroll_arrows.unu,
.mdl-herointerior.landing
  .hero
  .mouse_scroll
  .arrows-container
  .m_scroll_arrows.doi,
.mdl-herointerior.landing
  .hero
  .mouse_scroll
  .arrows-container
  .m_scroll_arrows.trei {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.mdl-herointerior.landing
  .hero
  .mouse_scroll
  .arrows-container
  .m_scroll_arrows.unu {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-direction: alternate;
}
.mdl-herointerior.landing
  .hero
  .mouse_scroll
  .arrows-container
  .m_scroll_arrows.doi {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
  margin-top: -0.3rem;
}
.mdl-herointerior.landing
  .hero
  .mouse_scroll
  .arrows-container
  .m_scroll_arrows.trei {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
  margin-top: -0.3rem;
}
@media (max-width: 769px) {
  .mdl-herointerior.landing .hero .mouse_scroll {
    display: none;
  }
}
@media (max-width: 1025px) {
  .mdl-herointerior.landing .hero {
    height: 75rem;
  }
}
@media (max-width: 769px) {
  .mdl-herointerior.landing .hero {
    height: 92rem;
  }
}
@media (max-width: 551px) {
  .mdl-herointerior.landing .hero {
    height: 82rem;
  }
}
@media (max-width: 551px) {
  .mdl-herointerior .hero .hero-content .title {
    font-size: 4.5rem;
  }
  .mdl-herointerior .hero .hero-content .pre-title {
    line-height: 1.71;
    letter-spacing: -0.1rem;
  }
}
@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 0.2rem;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 0.2rem;
  }
  100% {
    top: 1px;
  }
}
@-o-keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 0.2rem;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 0.2rem;
  }
  100% {
    top: 1px;
  }
}
@keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 0.2rem;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 0.2rem;
  }
  100% {
    top: 1px;
  }
}
@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.mdl-breadcrumb {
  padding: 2rem 0 1.9rem;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 3.21;
  color: #ffffff;
  z-index: 1;
  background-color: white;
  font-size: 1.5rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.07;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
}
.mdl-breadcrumb.sticky {
  position: fixed;
  top: 20.6rem;
  z-index: 4;
}
@media (max-width: 1024px) {
  .mdl-breadcrumb.sticky {
    top: 10.7rem;
  }
}
.mdl-breadcrumb.sticky2 {
  position: fixed;
  top: 26.6rem;
  z-index: 4;
}
@media (max-width: 1024px) {
  .mdl-breadcrumb.sticky2 {
    top: 6.7rem;
  }
}
.mdl-breadcrumb.sticky-sinhero {
  position: fixed;
  top: 20.6rem;
  z-index: 4;
}
@media (max-width: 1440px) {
  .mdl-breadcrumb.sticky-sinhero {
    top: 10.9rem;
  }
}
.mdl-breadcrumb.topofertas {
  top: 17rem;
}
.mdl-breadcrumb .first {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.mdl-breadcrumb > a,
.mdl-breadcrumb > div {
  margin: 0 0.3rem;
}
@media (max-width: 551px) {
  .mdl-breadcrumb {
    display: none !important;
  }
}

.mdl-contactomini {
  padding: 3rem 0 14.3rem;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.mdl-contactomini .contacto {
  position: relative;
  max-width: 121.1rem;
  min-height: 25.3rem;
  width: 100%;
  color: black;
}
.mdl-contactomini .contacto .contenedor-1,
.mdl-contactomini .contacto .contenedor-2 {
  position: relative;
}
.mdl-contactomini .contacto .contenedor-1 {
  width: 35.5%;
}
.mdl-contactomini .contacto .contenedor-1 .box-1 {
  position: absolute;
  max-width: 31.4rem;
  min-height: 14.5rem;
  width: 100%;
  background-color: white;
  left: 11.3rem;
  z-index: 2;
}
.mdl-contactomini .contacto .contenedor-1 .box-1 .texto {
  font-family: "Barlow";
  padding: 2.8rem 1.5rem;
  font-size: 4rem;
  font-weight: bold;
  font-stretch: condensed;
  font-style: normal;
  line-height: 1.08;
  text-align: center;
  border: solid 0.2rem #d3d3d3;
}
.mdl-contactomini .contacto .contenedor-1 .box-1::before {
  content: "";
  position: absolute;
  width: 11.3rem;
  left: -11.3rem;
  top: 50%;
  border-bottom: solid 0.2rem #d3d3d3;
  z-index: 1;
}
.mdl-contactomini .contacto .contenedor-2 {
  width: 64.5%;
}
.mdl-contactomini .contacto .contenedor-2:hover .bocadillo {
  top: -5.3rem;
  right: 11.1rem;
  opacity: 1;
}
.mdl-contactomini .contacto .contenedor-2 .bocadillo {
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  min-width: 22.9rem;
  min-height: 12.6rem;
  transition: all 0.6s ease;
  top: 8.7rem;
  right: 35.1rem;
  opacity: 0;
  font-family: "Barlow";
  font-size: 4rem;
  font-weight: bold;
  font-stretch: condensed;
  line-height: 1.08;
  text-align: center;
}
.mdl-contactomini .contacto .contenedor-2 .bocadillo .texto {
  padding: 2.4rem 0rem;
}
.mdl-contactomini .contacto .contenedor-2 .box-2,
.mdl-contactomini .contacto .contenedor-2 .box-3 {
  position: absolute;
  max-width: 30rem;
  min-height: 16.6rem;
  width: 100%;
  background-color: white;
  border: solid 0.2rem #d3d3d3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mdl-contactomini .contacto .contenedor-2 .box-2.extraSize,
.mdl-contactomini .contacto .contenedor-2 .box-3.extraSize {
  max-width: 60rem;
}
.mdl-contactomini .contacto .contenedor-2 .box-2 .icono,
.mdl-contactomini .contacto .contenedor-2 .box-3 .icono {
  margin-bottom: 2.8rem;
}
.mdl-contactomini .contacto .contenedor-2 .box-2 .texto,
.mdl-contactomini .contacto .contenedor-2 .box-3 .texto {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.84;
}
.mdl-contactomini .contacto .contenedor-2 .box-2 {
  bottom: 0;
  right: 51.4rem;
}
.mdl-contactomini .contacto .contenedor-2 .box-3 {
  bottom: 0;
  right: 21.2rem;
}
.mdl-contactomini .contacto .contenedor-2 .box-3::after {
  content: "";
  position: absolute;
  width: 21.3rem;
  right: -21.3rem;
  top: 50%;
  border-bottom: solid 0.2rem #d3d3d3;
}
@media (max-width: 1285px) {
  .mdl-contactomini {
    padding: 0 0 10.5rem;
  }
  .mdl-contactomini .contacto {
    max-width: 90%;
  }
}
@media (max-width: 1254px) {
  .mdl-contactomini {
    padding: 3rem 5rem 5rem;
  }
  .mdl-contactomini .contacto {
    flex-direction: column;
    max-width: 120.8rem;
  }
  .mdl-contactomini .contacto .contenedor-1 {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .mdl-contactomini .contacto .contenedor-1 .box-1 {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
    width: 100%;
    max-width: 36rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  .mdl-contactomini .contacto .contenedor-1 .box-1::before {
    content: unset;
  }
  .mdl-contactomini .contacto .contenedor-2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }
  .mdl-contactomini .contacto .contenedor-2:before {
    content: "";
    position: absolute;
    width: 100%;
    right: 0;
    top: 50%;
    border-bottom: solid 0.2rem #d3d3d3;
  }
  .mdl-contactomini .contacto .contenedor-2 .bocadillo {
    display: none;
  }
  .mdl-contactomini .contacto .contenedor-2 .box-2,
  .mdl-contactomini .contacto .contenedor-2 .box-3 {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
    width: 38.5%;
    max-width: unset;
    margin: 1rem 1.5rem;
  }
  .mdl-contactomini .contacto .contenedor-2 .box-3::after {
    content: unset;
  }
}
@media (max-width: 769px) {
  .mdl-contactomini .contacto {
    flex-direction: column;
    max-width: 120.8rem;
  }
  .mdl-contactomini .contacto .contenedor-2 .box-2,
  .mdl-contactomini .contacto .contenedor-2 .box-3 {
    width: 45%;
    margin: 1rem;
  }
}
@media (max-width: 675px) {
  .mdl-contactomini {
    padding: 3rem 1rem;
  }
}
@media (max-width: 600px) {
  .mdl-contactomini {
    padding: 0 1rem 3rem;
  }
  .mdl-contactomini .contacto .contenedor-2 {
    flex-direction: column;
    align-items: center;
  }
  .mdl-contactomini .contacto .contenedor-2 .box-2,
  .mdl-contactomini .contacto .contenedor-2 .box-3 {
    width: 80%;
    margin: 0.5rem;
  }
  .mdl-contactomini .contacto .contenedor-2:before {
    display: none;
  }
}

