@charset "UTF-8";

/********************************/
/*****  Carga Tipografías  *****/

@font-face {
  font-family: "Ubuntu-Bold";
  src: url("fonts/Ubuntu-Bold.ttf");
}

@font-face {
  font-family: "Ubuntu-Bold-Italic";
  src: url("fonts/Ubuntu-BoldItalic.ttf");
}

@font-face {
  font-family: "Ubuntu-Italic";
  src: url("fonts/Ubuntu-Italic.ttf");
}

@font-face {
  font-family: "Ubuntu-Light";
  src: url("fonts/Ubuntu-Light.ttf");
}

@font-face {
  font-family: "Ubuntu-Light-Italic";
  src: url("fonts/Ubuntu-LightItalic.ttf");
}

@font-face {
  font-family: "Ubuntu-Medium";
  src: url("fonts/Ubuntu-Medium.ttf");
}

@font-face {
  font-family: "Ubuntu-Medium-Italic";
  src: url("fonts/Ubuntu-MediumItalic.ttf");
}

@font-face {
  font-family: "Ubuntu-Regular";
  src: url("fonts/Ubuntu-Regular.ttf");
}

@font-face {
  font-family: "Signika";
  src: url("fonts/Signika-VariableFont_wght.ttf");
}

/********************************/
/*****  Variables y  ***********/

:root {
  --green-pcf: #43d87e;
  --yellow-pcf: #e2ff3c;
  --blue-pcf: #0042fd;
  --gray-pcf: #666666;
  --white: #ffffff;
  --black: #000000;
}

/********************************/
/********  Textos  *************/

/** Colores Textos **/

.pcf-text-green {
  color: var(--green-pcf);
}
.pcf-text-blue {
  color: var(--blue-pcf);
}
.pcf-text-yellow {
  color: var(--yellow-pcf);
}

.pcf-text-gray {
  color: var(--gray-pcf);
}

.pcf-text-white {
  color: var(--white);
}

.pcf-text-black {
  color: var(--black);
}

/** Tipografías Textos **/

.pcf-text-regular {
  font-family: Ubuntu-Regular;
}

.pcf-text-medium {
  font-family: Ubuntu-Medium;
}

.pcf-text-bold {
  font-family: Ubuntu-Bold;
}

/** Tamaños de Texto (Títulos y Parrafo) **/

.pcf-title-big {
  font-size: 4em !important;
}

.pcf-title-medium {
  font-size: 2.5em !important;
}

.pcf-title-small {
  font-size: 1.5em !important;
}

.pcf-paragraph {
  font-family: "Signika", Ubuntu-Bold, sans-serif;
  font-size: 1.2em;
  line-height: 1.3em;
  margin: 10 px 0;
  margin-top: 20 px;
  margin-bottom: 20 px;
  font-weight: 400;
}

/********************************/
/*******  Fondos  **************/

.pcf-bg-gray {
  background-color: var(--gray-pcf) !important;
}

.pcf-bg-green {
  background-color: var(--green-pcf);
}
.pcf-bg-white {
  background-color: var(--white);
}
.pcf-bg-blue {
  background-color: var(--blue-pcf);
}
.pcf-bg-yellow {
  background-color: var(--yellow-pcf);
}

/********************************/
/*******  Botones  **************/

a.buttonSeeAll {
  border: 1px solid #7a7a7a;
  padding: 10px 20px;
  border-radius: 15px;
  display: inline-block;
  margin: 10px 0;
  color: var(--gray);
  font-size: 1.5em;
}

a.buttonSeeAll:hover {
  border: 1px solid var(--green-pcf);
  color: var(--green-pcf);
}

/****************************************/
/****** Header Landing  *********/

.headerlanding .img-header {
  max-width: 1420px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  float: initial;
  display: block;
}

/****************************************/
/****** Separadores Productos  *********/

.separador-especial {
  background-image: none;
  background-color: #43d87e;
}

/****************************************/
/*******  Titular categoria  ***********/

.white-txt {
  color: white !important;
  padding: 15px;
}

.texto-titular-categoria {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: #fff !important;
}
/****************************************/
/***** CSS MODAL ******/

.modal_video {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  opacity: 0;
}

.modal_video_content {
  width: 80%;
  height: 90%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #fff;
  background: #000;
  display: none;
  z-index: 99;
}

.close-icon {
  /* float: right; */
  /* width: 13px; */
  /* margin-right: 9px; */
  /* margin-top: 54px; */
  position: absolute !important;
  top: 3%;
  right: 7%;
}

#landing .delete,
.close-icon {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 290486px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 0;
  height: 20px;
  max-height: 20px;
  max-width: 20px;
  min-height: 20px;
  min-width: 20px;
  outline: 0;
  position: relative;
  vertical-align: top;
  width: 20px;
}

#landing .delete::after,
#landing .delete::before,
.close-icon::after,
.close-icon::before {
  background-color: #fff;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

#landing .delete::before,
.close-icon::before {
  height: 2px;
  width: 50%;
}

#landing .delete::after,
.close-icon::after {
  height: 50%;
  width: 2px;
}

.modal_video iframe {
  width: 100%;
  height: 100%;
  top: 50%;
}

.modal_video_title {
  font-size: 28px;
  margin: 10px 15px;
  color: #76b900;
}

/****************************************/
/***** CSS ESPECIFICO DEL LANDING ******/

.landing {
  max-width: 1420px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 1.5em;
}

/* TIPOGRAFÌA */

@font-face {
  font-family: "HP Simplified";
  src: url("assets/font/HPSimplified-Light.eot");
  src: url("assets/font/HPSimplified-Light.eot?#iefix")
      format("embedded-opentype"),
    url("assets/font/HPSimplified-Light.woff2") format("woff2"),
    url("assets/font/HPSimplified-Light.woff") format("woff"),
    url("assets/font/HPSimplified-Light.ttf") format("truetype"),
    url("assets/font/HPSimplified-Light.svg#HPSimplified-Light") format("svg");
  font-weight: 300;
  font-style: lighter;
  font-display: swap;
}

@font-face {
  font-family: "HP Simplified";
  src: url("assets/font/HPSimplified-Regular.eot");
  src: url("assets/font/HPSimplified-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("assets/font/HPSimplified-Regular.woff2") format("woff2"),
    url("assets/font/HPSimplified-Regular.woff") format("woff"),
    url("assets/font/HPSimplified-Regular.ttf") format("truetype"),
    url("assets/font/HPSimplified-Regular.svg#HPSimplified-Regular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* CLASES TIPOGRAFÍA */

.mhp__display {
  font-size: 8rem;
  font-weight: lighter;
  max-width: 1200px;
  margin: 0;
}

.mhp__h1 {
  font-size: 3rem;
  font-weight: lighter;
  max-width: 1200px;
  color: var(--clr-dark-grey);
}

.mhp__h2 {
  font-size: 3.4em;
  font-weight: lighter;
  color: var(--clr-grey);
}

.mhp__h3 {
  font-size: 2.7rem;
  margin: 0;
  font-weight: lighter;
}

.mhp__text {
  font-size: 2.5rem;
  color: var(--clr-dark-grey);
  font-weight: lighter;
  margin: 0;
}

.mhp__p {
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1600 - 300)));
}

.mhp__bold {
  font-weight: bold;
}

.mhp__normal {
  font-weight: normal;
}

.mhp__500 {
  font-weight: 500;
}

.mhp__lighter {
  font-weight: lighter;
}

/* LAYOUT */

.mhp__body {
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.mhp__container {
  font-family: "HP Simplified";
  font-weight: normal;
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 0 8vw; */
  /* border: 1px solid var(--clr-verde-pcf); */

  --clr-verde-pcf: #43d87e;
  --clr-light-grey: #e6e6e6;
  --clr-grey: #8c8c8c;
  --clr-dark-grey: #515151;
  --clr-dark: #000000;

  --margin-01: 1.8rem;
  --margin-02: 2.5rem;
}

.mhp__container img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .mhp__container {
    max-width: 768px;
    padding: 0 3vw;
  }
}

@media only screen and (max-width: 425px) {
  .mhp__container {
    max-width: 425px;
    padding: 0 3vw;
  }
}

.mhp__article-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.mhp__article-grid-row {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2em;
}

.mhp__article-grid-s4 {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.gap {
  gap: 24px;
}

.no-gap {
  gap: 0;
}

.mhp__item-main {
  grid-row: 1 / 3;
}

.mhp__item-main-col {
  grid-column: 1 / 3;
}

.mhp__thumbnail {
  max-height: auto;
}

@media only screen and (max-width: 798px) {
  .mhp__article-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .mhp__article-grid-row {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .gap {
    gap: 18px;
  }

  .mhp__item-main {
    grid-row: auto;
  }

  .mhp__item-main-col {
    grid-column: 0 / 1;
  }

  .mhp__thumbnail {
    max-height: 200px;
    height: 200px;
  }
}

/* COLOR  */

.mhp__clr-dark {
  color: var(--clr-dark);
}

.mhp__clr-dark-grey {
  color: var(--clr-dark-grey);
}

.mhp__clr-light-grey {
  color: var(--clr-light-grey);
}

.mhp__clr-grey {
  color: var(--clr-grey);
}

/* GLOBAL */

.mhp__flex-cs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mhp__flex-cc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mhp__text-center {
  text-align: center;
}

.mhp__text-left {
  text-align: left;
}

.mhp__m0a {
  margin: 0 auto;
}

.mhp__p2 {
  padding: 32px 24px;
}
.mhp__p3 {
  padding: 48px 16px;
}

.mhp__pb1 {
  padding-bottom: 1em;
}

.mhp__pt2 {
  padding-top: 1.6em;
}

.mhp__my-1 {
  margin-top: var(--margin-01);
  margin-bottom: var(--margin-01);
}

.mhp__py-1 {
  padding-top: var(--margin-01);
  padding-bottom: var(--margin-01);
}

.mhp__mb2 {
  margin-bottom: var(--margin-02);
}
.mhp__mt1 {
  margin-top: var(--margin-01);
}

.mhp__mt2 {
  margin-top: var(--margin-02);
}
/* BUTTONS */

.mhp__link {
  color: var(--clr-dark-grey);
  text-decoration: none;
  font-weight: lighter;
}
.mhp__button {
  font-size: 1.6em;
  padding: 12px 26px;
  text-decoration: none;
}

.mhp__button-primary {
  background-color: var(--clr-dark-grey);
  color: white;
  border: none;
}

.mhp__button-primary--active {
  background: var(--clr-verde-pcf);
}

.mhp__button-inline {
  border: 1px solid var(--clr-dark-grey);
  color: var(--clr-dark-grey);
}

.mhp__button-inline:hover {
  border: 1px solid var(--clr-dark-grey);
  color: black;
  background-color: var(--clr-verde-pcf);
}

.mhp__button-big {
  font-size: 2.6em;
}

/* SLIDER */

.swiper-slide {
  position: relative;
}

.mhp__slide-box {
  position: absolute;
  top: 0%;
  left: 5%;
  color: white;
  height: 98%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.mhp__slide-box h2 {
  font-weight: 500;
  font-size: 2.3rem;
  margin: 0;
}

.mhp__slide-box p {
  font-weight: lighter;
  font-size: 1.5rem;
  margin: 0;
  padding-top: 10px;
  max-width: 330px;
}

@media only screen and (max-width: 1160px) {
  .mhp__slide-box h2 {
    font-size: 2rem;
  }

  .mhp__slide-box p {
    font-size: 1.3rem;
    max-width: 200px;
  }
}

@media only screen and (max-width: 580px) {
  .mhp__slide-box h2 {
    font-size: 2rem;
  }

  .mhp__slide-box p {
    font-size: 1rem;
    max-width: 150px;
  }
}

.append-buttons {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 2em;
}

.append-buttons a {
  width: 20%;
}

.swiper {
  width: 100%;
}

.swiper-pagination {
  position: relative !important;
  bottom: -3px !important;
}

.swiper-pagination-bullet {
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--clr-verde-pcf) !important;
}
@media only screen and (max-width: 1060px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
/* .swiper-button-next {
  left: 130px;
  position: relative;
} */
.mhp__slide-height {
  height: auto;
}

/* STYLES */

.mhp__box {
  background-color: var(--clr-light-grey);
  color: #666666;
  display: grid;
  grid-template-columns: 90%;
  align-items: center;
  justify-items: flex-start;
  justify-content: center;
  justify-content: start;
}

.mhp__box__icon {
  grid-template-columns: 120px auto;
  gap: 16px;
  align-items: center;
  justify-items: center;
}

.mhp__icon {
  max-width: 128px;
}

.mhp__box__text {
  /* font-size: calc(22px - 25%); */
  font-size: calc(18px + (18 - 14) * ((100vw - 300px) / (1600 - 300)));

  font-weight: lighter;
  margin: 12px 0;
}

@media only screen and (max-width: 860px) {
  .mhp__box__icon {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mhp__icon {
    max-width: 96px;
  }

  /* .mhp__box__text{
    font-size: 18px;
    font-weight: lighter;
    margin: 12px 0;
  } */

  .mhp__mb2 {
    margin-bottom: 1.2rem;
  }
}

.mhp__box-bg {
  background-position: center;
  background-size: cover;
}

.mhp__section05__box {
  color: white;
  padding: 3em 0;
  position: relative;
}

.mhp__section05__box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

.mhp__section05__box p {
  max-width: 60%;
  position: relative;
}

.mhp__section05__box h2 {
  position: relative;
}

.mhp__section05__box-01::before {
  background-color: rgba(88, 157, 216, 0.8);
}

.mhp__section05__box-02::before {
  background-color: rgba(128, 128, 128, 0.8);
}

.mhp__section05__box-03::before {
  background-color: rgba(190, 132, 163, 0.8);
}

.mhp__section05__box-04::before {
  background-color: rgba(80, 133, 163, 0.8);
}
