@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-h2 {
  font-size: 1.7em !important;
  font-weight: lighter;
  color: var(--clr-dark-grey);
  margin: 0;
  text-align: center;
}

.mhp-p {
  font-size: calc(12px + (18 - 14) * ((100vw - 300px) / (1600 - 300)));
  color: var(--clr-dark-grey);
  margin: 5px auto 10px auto;
  font-weight: lighter;
  text-align: center;
}

/* 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; */

  --clr-verde-pcf: #43d87e;
  --clr-light-grey: #e6e6e6;
  --clr-grey: #8c8c8c;
  --clr-dark-grey: #4d4d4d;
  --clr-dark: #000000;

  --margin-01: 1.8rem;
  --margin-02: 2.5rem;
}

.mhp__container img {
  width: 100%;
}

@media only screen and (max-width: 798px) {
  .mhp__container {
    max-width: 768px;
    padding: 0 3vw;
  }
}

@media only screen and (max-width: 496px) {
  .mhp__container {
    max-width: 425px;
    padding: 0 3vw;
  }
}

.mhp-art__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
  margin-top: 46px;
}

.mhp-art__subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 14px;
}

.mhp-art__box {
  grid-column: 1 / span 2;
  background-color: var(--clr-light-grey);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  padding: 16px;
}

.mhp-art__text {
  color: var(--clr-dark-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mhp-art__thumbnail {
  max-width: 260px;
}

.mhp-art__main {
  background-position: center;
  background-size: cover;
  min-height: 360px;
  position: relative;
}

.mhp-art__logo-hp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 83px !important;
  height: 83px;
}

.mhp-art__img-left,
.mhp-art__img-right {
  background-color: #cccccc;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mhp-art__eco {
  max-width: 260px;
}
@media only screen and (max-width: 1120px) {
  .mhp-art__eco {
    max-width: 200px;
  }
}

@media only screen and (max-width: 898px) {
  .mhp-art__box {
    flex-direction: column;
  }
  .mhp-art__thumbnail {
    flex-basis: 50%;
    flex-grow: 1;
    max-width: 80%;
    margin: 0 auto;
    padding-top: 8px;
  }
}

@media only screen and (max-width: 518px) {
  .mhp-art__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 46px;
  }
}

/* BUTTONS */

.mhp-btn__inline {
  font-size: 16px;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid var(--clr-dark-grey);
  color: var(--clr-dark-grey);
}

.mhp-btn__inline:hover {
  border: 1px solid var(--clr-dark-grey);
  color: black;
  background-color: var(--clr-verde-pcf);
}
