/*
 Theme Name:   MacroFood 2024
 Author:       WAP
 Author URI:   http://wearebrand.cl
 Version:      GS 24
*/

/************************************************************************************
FONT
*************************************************************************************/

@import url(https://fonts.googleapis.com/css?family=Lato:400,100,300,700,900);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800);
@import url(https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800&display=swap);

/************************************************************************************
GENERAL STYLING RESET
*************************************************************************************/

@charset "UTF-8";

:root {
  --font-family-system: "Mulish", sans-serif;
  --font-family-raw: "Proxima Nova Rg", sans-serif;


  /* color */
  --black: #262626;
  --white: #faf9f6;
  --Orange: #ee7f00;
  --Green: #86bc25;
  --cyan: #36a9e1;
  --bermellon: #e73061;
  --cerise: #cc3366;
  --purple: #502583;
  --grey: #7b7b7b;
  --greylight: #b4b4b4;
  --greydark: #515050;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body {
  min-height: 100vh;
  font-size: 15px;
  font-family: var(--font-family-system);
  color: var(--black);
  fill: var(--black);
  background-color: var(--white);
  font-weight: normal;
  /* opcional */
  line-height: 1.3em;
  /* opcional */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /* opcional */
  font-smooth: always;
  /* opcional */
  -webkit-font-smoothing: antialiased;
  /* opcional */
  -moz-osx-font-smoothing: grayscale;
}

header {}

main {}

/* Las adaptamos al modo oscuro */
@media (prefers-color-scheme: dark) {
  :root {}
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
}

* {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
  /* opcional 
  -o-object-fit: cover;
  object-fit: cover;*/
  -o-object-position: center center;
  object-position: center center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

p a {
  display: inline;
  font-size: 15px;
  line-height: initial;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: 16px;
  font-style: inherit;
  line-height: 20px;
  text-decoration: none;
  color: inherit;
  word-break: normal;
  hyphens: initial;
  color: var(--black);
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

::-moz-selection {
  background-color: var(--black);
  color: var(--white);
}

form,
input,
textarea,
select,
label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
}

table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* Variantes especiales */

.svg_hidden {
  display: none;
}

/* BUILD */

section {
  margin: 0 16px 48px;
}

.wrap {
  max-width: 930px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin: 0 auto;
}

.wrap p {
  font-weight: 400;
  font-size: 15px;
  line-height: inherit;
}

.wrap_text {
  max-width: 930px;
  margin: 24px auto;
  text-align: justify;
}

.wrap_text p {
  font-size: 15px;
  line-height: initial;
  margin-bottom: 12px;
}

.wrap_text ol,
.wrap_text ul {
  margin: 16px 40px;
}

.wrap_text ul li {
  list-style-type: initial;
}

.wrap_text ol li {
  list-style-type: decimal;
}

.ancla {
  padding: 12px 18px;
  color: var(--white);
  background: var(--Orange);
  border-radius: 50px;
  font-weight: bold;
  line-height: inherit;
}

.ancla:hover {
  background: var(--Green);
}

/* Buton clic top */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  font-size: 24px;
  background-color: var(--Orange);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  width: 50px;
  height: 50px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollToTopBtn:hover {
  background-color: var(--Green);
}


.big_box {
  display: flex;
  width: 100%;
  border-radius: 16px;
  padding: 16px;
  gap: 16px;
  justify-content: space-between;
}

.row_top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* COLOR */

.c_black {
  color: var(--black);
}

.c_white {
  color: var(--white);
}

/* BG COLOR */

.bg_green {
  background-color: var(--Green);
}

.bg_orange {
  background-color: var(--Orange);
}

.bg_black {
  background-color: var(--black);
}

.bg_greylight {
  background-color: var(--greylight);
}

.bg_grey {
  background-color: var(--grey);
}

.bg_greydark {
  background-color: var(--greydark);
}

.bg_cerise {
  background-color: var(--cerise);
}

/* RATIOS */

.ratio_1 {
  aspect-ratio: 1/1;
}

.ratio_1_2 {
  aspect-ratio: 1/2;
}

.ratio_1_6 {
  aspect-ratio: 1/0.6;
}

.ratio_2_3 {
  aspect-ratio: 2/3;
}

.ratio_16_9 {
  aspect-ratio: 16/9;
}

/* ROTATION */

.rotate_45 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* MARGIN */

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

.margin-bottom-8 {
  margin-bottom: 8px !important;
}

.margin-bottom-16 {
  margin-bottom: 16px !important;
}

.margin-bottom-24 {
  margin-bottom: 24px !important;
}

.margin-bottom-32 {
  margin-bottom: 32px !important;
}

.margin-bottom-48 {
  margin-bottom: 48px !important;
}

.margin-bottom-auto {
  margin-bottom: auto;
}

.margin-60-0 {
  margin: 60px 0;
}

/* Padding */

.padding_6 {
  padding: 6px;
}

.p_8 {
  padding: 8px;
}

/* Align font */

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.justify {
  text-align: justify;
}

/* Size font */

.size_32 {
  font-size: 32px;
}

/* text */

.balance,
.text_wrap {
  text-wrap: balance;
}

.italic {
  font-style: italic;
}

/* Titles */

.title_24_r {
  font-size: 24px;
  font-weight: 300;
  line-height: 26px;
}

.title_36 {
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
}

.title_42 {
  font-size: 42px;
  line-height: 44px;
  display: block;
  font-weight: 400;
}

.title_42_country {
  font-size: 42px;
  line-height: 44px;
  display: block;
  font-weight: 400;
}

.title_48 {
  font-size: 48px;
  line-height: 52px;
  display: block;
  font-weight: 400;
}

.title_48_r {
  font-size: 48px;
  font-weight: 300;
  line-height: 48px;
}

.up {
  text-transform: uppercase;
}

.gap_42 {
  gap: 42px !important;
}

.bold_600 {
  font-weight: 600;
}

.bold_800 {
  font-weight: 800;
}

.w_40 {
  width: 40%;
}

.w_60 {
  width: 60%;
}

.w_70 {
  width: 70%;
}

.w_90 {
  width: 90%;
}

.w_100 {
  width: 100%;
}

.w_320 {
  width: 320px;
}

.m_w_320 {
  min-width: 320px;
}

.flex_center {
  justify-content: center;
}

/************************************************************************************
Accesos superiores 
*************************************************************************************/

.wrap_slider {
  max-width: 930px;
  display: flex;
  flex-direction: row;
  margin: 24px auto 0;
  gap: 8px;
  justify-content: space-between;
}

.row_slide {
  max-width: 700px;
  max-height: 415px;
  display: block;
  position: relative;
}

.row_slide div {
  border-radius: 24px;
  overflow: hidden;
}

.row_blog {
  display: flex;
  width: auto;
  flex: 1 1 auto;
  justify-content: space-between;
  flex-direction: column;
  gap: 8px;
}

.logo_ver {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}

.logo_ver img {
  width: 200px;
}

.exmf {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: left;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bermellon);
  flex: 1;
  padding: 22px;
}

.exmf h1 {
  z-index: 2;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.link_exmf {
  padding: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.row_blog i {
  color: var(--white);
  font-size: 32px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.row_blog img {
  z-index: 1;
}

.bg_blog {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

/* mini accesos */

.box_entry {
  background: var(--Green);
  border-radius: 24px;
  flex-grow: 1;
  padding: 16px;
  color: var(--white);
  position: relative;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.box_entry span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: end;
  padding: 22px;
}

.box_entry h1 {
  font-size: 22px;
  font-weight: 700;
  z-index: 2;
  color: var(--white);
}

.box_entry i {
  position: absolute;
  top: -24px;
  right: -24px;
  font-size: 32px;
  color: var(--white);
}

.box_entry:hover {
  i {
    top: 16px;
    right: 16px;
  }
}

.grad {
  position: absolute;
  bottom: 0px;
  width: 100%;
  margin: 0 -22px;
  height: 120px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 5%, rgba(0, 0, 0, 0.7) 100%);
}

/************************************************************************************
Productos
*************************************************************************************/

.box_product {
  border-radius: 16px;
  padding: 16px;
  color: var(--white);
  position: relative;
}

.box_product span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg); */
}

.box_product div {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.box_product span i {
  width: fit-content;
  height: fit-content;
  font-size: 48px;
  color: var(--white);
}

.two {
  background-size: 60%;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  background-position: 30px 20px;
}

.two span p {
  position: absolute;
  bottom: 5px;
  margin: 16px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  right: 10px;
  color: var(--white);
}

.one {
  background-position: center center;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position-y: -40px;
  background-size: 60%;
}

.one span p {
  position: absolute;
  bottom: 30px;
  margin: 16px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  rotate: -90deg;
  right: -20px;
  color: var(--white);
}

.four {
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 90px 10px;
}

.four span p {
  position: absolute;
  bottom: 50px;
  margin: 16px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  rotate: -90deg;
  left: -38px;
  color: var(--white);
}

.five {
  background-position: center center;
  background-position-y: center;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position-y: 60px;
  background-size: 60%;
}

.five span p {
  position: absolute;
  top: 10px;
  margin: 16px 0;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--white);
}

.six {
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: 15px 70px;
}

.six span p {
  position: absolute;
  bottom: 40px;
  margin: 16px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  rotate: -90deg;
  right: -25px;
  color: var(--white);
}

.wrap_stretch:hover {
  .one {
    background-position-y: 30px;
    aspect-ratio: 1;
  }

  .four {
    aspect-ratio: 1;
  }

  .five {
    background-position-y: 65px;
    background-size: 80%;
    aspect-ratio: 1;
  }

  .two,
  .three {
    aspect-ratio: 16/9;
  }

  .six {
    background-size: 55%;
    background-position: 30px -70px;
    aspect-ratio: 16/9;
  }
}

.box_product span svg {
  width: 90px;
  height: 90px;
}

.spin {
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/************************************************************************************
Valores
*************************************************************************************/

.wrap_value {
  max-width: 930px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  gap: 8px;
}

.row_value_info {
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0.8px solid var(--black);
}

.row_value {
  border-radius: 16px;
  flex: 1 1 50%;
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}

.row_value h1 {
  line-height: 18px;
  font-size: 16px;
  letter-spacing: -0.3px;
  text-wrap: balance;
  z-index: 2;
  color: var(--white);
}

.row_value svg {
  width: 50px;
  height: 50px;
  margin: auto;
}

.box_value {
  border-radius: 16px;
  flex: 1 1 32%;
  padding: 16px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

/************************************************************************************
canales HOME
*************************************************************************************/

.wrap_channel {
  max-width: 930px;
  display: flex;
  margin: 0 auto;
  gap: 8px;
  flex-flow: wrap row;
}

.wrap_channel .row {
  flex: 1 1 30%;
  display: flex;
  height: 190px;
  border-radius: 16px;
  padding: 20px;
  color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.wrap_channel .row i {
  font-size: 42px;
  margin: auto;
  color: var(--white);
}

.wrap_channel .row_orange {
  flex: 1 1 40%;
  display: flex;
  height: 190px;
  border-radius: 16px;
  background: var(--Orange);
  padding: 16px;
  color: var(--white);
  align-items: end;
  position: relative;
}

.wrap_channel a:hover {
  background-color: #000;
}

.row_orange span {
  position: absolute;
  top: 16px;
  right: 16px;
}

.wrap_channel .row_green {
  flex: 0 0 59%;
  display: flex;
  height: 190px;
  border-radius: 16px;
  background: var(--Green);
  padding: 16px;
  color: var(--white);
  align-items: stretch;
}

.row_green h1 {
  flex: 1 1 50%;
  display: flex;
  align-items: end;
  color: var(--white);
}

.row_green .img {
  flex: 1 1 40%;
  background: var(--white);
  background-size: cover;
  border-radius: 8px;
  margin: -4px;
}

.row_orange p,
.row_orange span i {
  color: var(--white);
}

/************************************************************************************
Distribuidores HOME
*************************************************************************************/

.wrap_stretch {
  max-width: 930px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  gap: 8px;
  align-items: stretch;
}

.wrap_stretch .row {
  flex-grow: 1;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.wrap_stretch p {
  flex-shrink: 1.8;
  display: flex;
  align-items: center;
  text-wrap: balance;
}

.box_one {
  width: 280px;
  height: 220px;
  border-radius: 32px 16px 16px 32px;
}

.box_two {
  width: 180px;
  height: 220px;
  border-radius: 16px 8px 8px 16px;
}

.big_box:hover {
  .box_one {
    width: 180px;
    height: 220px;
  }

  .box_two {
    width: 280px;
    height: 220px;
  }
}

/************************************************************************************
Mercado internacional HOME
*************************************************************************************/

.country {
  text-align: right;
  line-height: initial;
  font-size: 44px;
}

.box_flag {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.box_line {
  display: flex;
  gap: 8px;
}

.flag_1 {
  width: 110px;
  height: 130px;
  background-color: var(--white);
  border-radius: 16px;
}

.flag_2 {
  width: 130px;
  height: 130px;
  background-color: var(--white);
  border-radius: 16px;
}

.flag_3 {
  height: 100px;
  width: 140px;
  background-color: var(--white);
  border-radius: 16px;
}

.flag_4 {
  width: 100px;
  height: 100px;
  background-color: var(--white);
  border-radius: 16px;
}

.big_box:hover {
  .flag_1 {
    width: 100px;
    height: 100px;
  }

  .flag_2 {
    height: 100px;
    width: 140px;
  }

  .flag_3 {
    width: 130px;
    height: 130px;
  }

  .flag_4 {
    width: 110px;
    height: 130px;
    background-color: var(--white);
  }
}

/************************************************************************************
Footer
*************************************************************************************/

footer {
  display: block;
}

footer .row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 20%;
  flex-direction: column;
}

.row_market {
  display: block;
  width: 25%;
}

.row_market i {
  font-size: 24px;
  margin-bottom: 12px;
}

.row_market h1 {
  text-wrap: balance;
  font-weight: 400;
  font-size: 16px;
}

.box {
  border-radius: 16px;
  display: flex;
  padding: 16px;
  box-sizing: border-box;
  color: var(--white);
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}

.boxlink {
  border-radius: 16px;
  display: flex;
  padding: 16px;
  box-sizing: border-box;
  color: var(--white);
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}

.box h1 {
  font-size: 18px;
  text-wrap: balance;
  font-weight: 500;
}

.box p {
  text-align: right;
  margin: -4px;
}

.box p i {
  font-size: 22px;
}

.footer_logo {
  background: var(--black);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 8px;
  box-sizing: border-box;
}

/* =============================================
Interior desarrollo
================================================ */
.wrap_stretch_16 {
  max-width: 930px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  gap: 16px;
  align-items: stretch;
}

.cita {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cita span {
  font-size: 32px;
  font-weight: 900;
  line-height: normal;
  font-style: initial;
  color: var(--white);
  background: var(--black);
  padding: 16px;
  border-radius: 16px;
}

.row_info {
  flex: 1 1 30%;
}

.row_process {
  flex: 1 1 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.row_process svg {
  width: 32px;
  height: 32px;
  margin-left: auto;
}

.process {
  width: 32.5%;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.process i {
  font-size: 64px;
  margin: auto;
}

.row_dinamic {
  display: flex;
  gap: 8px;
  flex-direction: column;
  flex: 1;
}

.row_dinamic .cover {
  background-size: cover;
  background-position: center center;
  border-radius: 16px;
  overflow: hidden;
}

.row_dinamic h1 {
  font-size: 24px;
  line-height: 28px;
}

.row_dinamic p {
  font-size: 15px;
}

.row_dinamic .pad {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
  padding: 16px;
  border: 0.8px solid var(--black);
  border-radius: 16px;
}

/* =============================================
Interior Somos / Empresa
================================================ */

.row_50 {
  flex: 1 1 50%;
}

.img_tray {
  background-size: cover;
  background-position: center center;
  border-radius: 16px;
  overflow: hidden;
}

.videoWrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.row_val {
  display: flex;
  gap: 8px;
  flex-direction: column;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
}

.row_val .cover {
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  width: 100%;
}

.row_val .pad {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
  padding: 16px;
}

.row_val_info {
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0.8px solid var(--black);
  position: relative;
}

.row_val_info span {
  position: absolute;
  top: 16px;
  right: 16px;
}

.fix .flag_1 {
  width: 60%;
  height: 143px;
}

.fix .flag_2 {
  width: 40%;
  height: 143px;
}

.fix .flag_3 {
  width: 45%;
  height: 143px;
}

.fix .flag_4 {
  width: 65%;
  height: 143px;
}

/* =============================================
Interior canales
================================================ */

.row_slide-page {
  max-width: 700px;
  width: 700px;
  max-height: 300px;
  height: 300px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.row_blog-page {
  display: flex;
  width: auto;
  flex: 1 1 auto;
  justify-content: space-between;
  flex-direction: column;
  gap: 8px;
  height: 300px;
}

.row_blog-page i {
  color: var(--white);
  font-size: 32px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.row_blog-page img {
  z-index: 1;
}

.row_slide-page h1 {
  position: absolute;
  padding: 32px;
  bottom: 0;
  font-size: 42px;
  font-weight: initial;
  color: var(--white);
  line-height: initial;
  z-index: 3;
}

.row_slide-page .slider-page {
  background-position: center;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.row_slide-page .grad {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 5%,
      rgba(0, 0, 0, 0.5) 100%);
  margin: 0;
  height: 110px;
}

.wrap_c {
  max-width: 930px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  gap: 16px;
  align-items: center;
}

.row_c-wrap {
  flex: 1 1 50%;
  gap: 16px;
  display: flex;
  align-items: center;
}

.row_c-columnright {
  flex: 1 1 50%;
  gap: 16px;
  display: flex;
  flex-flow: column nowrap;
  align-items: end;
}

.row_c-columnleft {
  flex: 1 1 50%;
  gap: 16px;
  display: flex;
  flex-flow: column nowrap;
  align-items: start;
}

.row_c-img {
  background-color: var(--Orange);
  background-size: cover;
  background-position: center center;
  justify-content: center;
  align-items: center;
  flex: 1 1 50%;
  display: flex;
  height: 50%;
  border-radius: 16px;
}

.row_c-wrap h1,
.row_c-columnleft h1,
.row_c-columnright h1 {
  border-radius: 16px;
  padding: 16px;
  background: var(--Green);
  color: var(--white);
  font-size: 24px;
  font-weight: normal;
  line-height: initial;
  width: fit-content;
}

.row_c-wrap p,
.row_c-columnleft p,
.row_c-columnright p {
  padding: 16px;
  font-size: 14px;
  line-height: 18px;
  word-break: keep-all;
}

.row_c-wrap h1 i,
.row_c-columnleft h1 i,
.row_c-columnright h1 i {
  font-size: 24px;
  margin: 0 8px;
  color: var(--white);
}

/* =============================================
SECRET MENU
================================================ */

/* Overlay style */
.overlay,
.overlay2 {
  position: fixed;
  width: 500px;
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: 1100;
  background-color: #414042;
}

#trigger-overlay,
#trigger-overlay-2 {
  color: var(--white);
  background: var(--Orange);
  padding: 16px 24px;
  border-radius: 24px;
  height: 60px;
  display: flex;
  gap: 9px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

#trigger-overlay p,
#trigger-overlay-2 p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

#trigger-overlay svg,
#trigger-overlay-2 svg {
  width: 24px;
  height: 24px;
}

#trigger-overlay:hover,
#trigger-overlay-2:hover {
  color: var(--white);
  background: var(--Green);
}

.close {
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  background: #fff;
}

.overlay .overlay-close,
.overlay2 .overlay-close2 {
  float: right;
  text-decoration: none;
  background-color: transparent;
  display: block;
  width: 32px;
  height: 32px;
  margin: 24px;
  cursor: pointer;
}

.overlay .overlay-close i,
.overlay2 .overlay-close2 i {
  font-size: 40px;
  position: initial;
  text-decoration: none;
  color: var(--white);
}

.overlay .overlay-close:hover i,
.overlay2 .overlay-close2:hover i {
  color: var(--black);
}

/* Effects */
.overlay-slidedown {
  visibility: hidden;
  -webkit-transform: translatex(100%);
  transform: translatex(100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
  background-color: var(--Orange);
  border-radius: 32px 0 0 32px;
}

.overlay-slidedown.open {
  visibility: visible;
  -webkit-transform: translatex(0%);
  transform: translatex(0%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  background-color: var(--Green);
  border-radius: 32px 0 0 32px;
}

/* COLUMNS */
.col1 {
  padding: 16px;
}

.col1 h1 {
  font-size: 24px;
  color: var(--white);
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--white);
  line-height: initial;
}

.container-4 {
  width: 100%;
  padding: 100px 32px 0px;
}

.container-4 .col1 {
  text-align: right;
}

/* Menu superior */
#main-nav-top {
  float: right;
}

#main-nav-top li {
  margin: 0px;
  list-style: outside none none;
  text-align: center;
  display: inline-block;
}

#main-nav-top a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  padding: 20px 15px 15px;
  color: #fff;
  border-bottom: 3px solid transparent;
  margin: 0px;
  height: 70px;
  align-items: center;
}

#main-nav-top a:hover {
  border-bottom: 3px solid #ff6b00;
}

#main-nav-top ul {
  list-style: none;
  position: absolute;
  background: #fff;
  z-index: 100;
  display: none;
  max-width: 95px;
}

#main-nav-top li:hover>ul {
  display: block;
}

#main-nav-top ul li {
  background: none;
  padding: 0;
  margin: 0;
  float: none;
}

#main-nav-top ul li a {
  text-decoration: none;
  font-size: 14px !important;
  font-weight: 400;
  display: block;
  padding: 20px 15px;
  color: #000;
  margin: 0px;
  border: none;
}

#main-nav-top ul li a:hover {
  color: #ff6b00;
  border: none;
}

/* btn seleccionado */
#main-nav-top .current_page_item a,
#main-nav-top .current-menu-item a {
  color: #ff6b00;
}

/* current link :hover */
#main-nav-top .current_page_item a:hover,
#main-nav-top .current-menu-item a:hover {
  color: #ff6b00;
}

/* Menu but */

.nav_icon {
  text-align: center;
  color: #ff2200;
  font-size: 400%;
  margin: 10px 0px;
}

#main-nav-mobile {
  display: flex;
  flex-flow: column nowrap;
  gap: 32px;
}

.var #main-nav-mobile {
  gap: 24px !important;
}

.container-4 .var a,
.container-4 .var a:visited {
  font-size: 24px !important;
}

.container-4 .col1 a,
.container-4 .col1 a:visited,
#main-nav-mobile li a,
#main-nav-mobile li a:visited {
  color: var(--white);
  display: initial;
  font-size: 32px;
  text-decoration: none;
  float: right;
  line-height: 26px;
}

.container-4 .col1 a:hover,
#main-nav-mobile li a:hover {
  color: var(--black);
}

.blog {
  width: 80px;
  float: right;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  height: 70px;
  display: flex;
  align-items: center;
}

.blog p {
  font-size: 10px;
  color: #fff;
}

.blog a {
  text-decoration: none !important;
}

/* =============================================
Pagina distribuidores
================================================ */
section #A {
  margin: 0 0 42px;
  width: 100%;
}

.wrap_contact {
  gap: 8px;
  flex-flow: row wrap;
  width: 100%;
  display: flex;
}

.wrap_contact div {
  display: flex;
  gap: 6px;
  flex-flow: column nowrap;
}

.contact_box {
  padding: 16px;
  border: 0.7px solid var(--black);
  border-radius: 16px;
  width: 32.5%;
  display: flex;
  flex-flow: column nowrap;
  gap: 6px;
  justify-content: space-between;
}

.contact_box span {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
}

.wrap_map {
  max-width: 930px;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  gap: 16px;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  border: 0.7px solid var(--black);
}

/* =============================================
TABS distribuidores
================================================ */

.w3-bar .w3-button {
  white-space: normal;
}

.w3-bar .w3-bar-item {
  padding: 8px 16px;
  float: left;
  width: auto;
  border: none;
  display: block;
  outline: 0;
}

.w3-btn,
.w3-button {
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  width: 50%;
  float: left;
  text-align: center;
  padding: 24px 0;
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  font-size: 18px;
  font-weight: normal;
}

.w3-btn,
.w3-button:hover,
.w3-btn,
.w3-button:active,
.w3-btn,
.w3-button:visited {
  background: var(--Orange);
}

.w3-btn,
.w3-button svg {
  width: 24px;
  height: 24px;
  fill: #999;
}

.w3-red .icon {
  fill: #262626;
}

.w3-red,
.w3-hover-red:hover {
  background: var(--Green);
}


/************************************************************************************
Ficha producto
*************************************************************************************/

.single-productos {
  font-family: var(--font-family-raw);
}

.margin-top-85 {
  margin-top: 85px;
}

.section_product {
  display: flex;
  flex-direction: column;
  max-width: 930px;
  margin: auto;
  margin-top: auto;
  gap: 16px;
  width: 100%;
  padding: 16px;
  z-index: 1;
}

.wrap_product {
  width: 930px;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  gap: 16px;
  align-items: stretch;
}

.arrow_back {
  background: var(--black);
  border-radius: 100px;
  color: var(--white);
  font-size: 24px;
  padding: 12px 13px;
  font-weight: normal;
  line-height: 18px;
}

.arrow_back i {
  font-size: 18px;
}

.item {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-inline: auto;
  gap: 16px;
  align-items: stretch;
}

.item_v {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.item_box {
  border-radius: 16px;
  display: flex;
  position: relative;
  padding: 24px;
  box-sizing: border-box;
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
}

.h_auto {
  height: 100%;
}

.h_300 {
  height: 300px;
}

.f-g-1 {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 250px;
}

.item_box-video {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: block;
  margin-bottom: 32px;
}

.item_box-video iframe {
  height: 100%;
}

.wrap_title {
  width: 930px;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  margin: 32px auto;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 16px;
}

.button_download {
  font-weight: 700;
  padding: 12px;
  margin: initial;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  gap: 8px;
  border-radius: 100px;
  margin: 0px;
  align-items: center;
}

.button_download p {
  transition: opacity 200ms, display 200ms;
  display: none;
  opacity: 0;
  width: 0;
}


/************************************************************************************
Page producto
*************************************************************************************/

.page-template-page_catalogo .wrap_nav {
  display: flex;
  justify-content: space-between;
}

.page-template-page_catalogo .logo {
  max-width: 120px;
}

.page-template-page_catalogo .flex_row {
  flex-direction: row;
}

.page-template-page_catalogo .margin-top-85 {
  margin-top: 85px;
}

.page-template-page_catalogo section {
  display: flex;
  flex-direction: column;
  max-width: 930px;
  margin: auto;
  gap: 16px;
  width: 100%;
  padding: 16px;
}

.tag_title {
  background: var(--black);
  border-radius: 100px;
  color: var(--white);
  font-size: 24px;
  padding: 12px 24px;
  font-weight: normal;
}

.produce {
  width: 32%;
  background-color: #ddddddc9;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.page-template-page_catalogo .wrap {
  max-width: 930px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin: initial;
}

.wrap_row a.produce {
  width: 32%;
}

.produce img {
  padding: 0px 24px 8px;
}

.wrap_row {
  width: 930px;
  max-width: 100%;
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto;
  gap: 12px;
  align-content: flex-start;
}

.wrap_row .produce h1 {
  font-size: 16px;
  font-weight: 900;
  line-height: 18px;
  width: 100%;
}

.produce article {
  padding: 24px 16px 16px;
}

.arrow_back {
  background: var(--black);
  border-radius: 100px;
  color: var(--white);
  font-size: 24px;
  padding: 12px 13px;
  font-weight: normal;
}

.arrow_back i {
  font-size: 18px;
}

.right_top {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 16px;
}

.right_top i {
  font-size: 24px;
}


/* Fix filter */

.wrap_menu_right {
  width: 270px;
  display: block;
}

.wrap .widget_wpc_filters_widget {
  width: 100%;
}

.wpc-filter-title {
  font-weight: bold;
}

.wrap .wpc-search-field-wrapper a.wpc-search-clear-icon {
  font-size: 32px;
  font-weight: 900 !important;
}

.wpc-filters-main-wrap .wpc-filters-labels li.wpc-term-item label span.wpc-filter-label-wrapper {
  padding: 6px 12px !important;
}

body .wpc-filter-chips-list li.wpc-chip-reset-all a,
body .wpc-filter-chips-list li.wpc-filter-chip:not(.wpc-chip-reset-all) a {
  border-color: var(--Orange) !important;
  padding: 6px 12px !important;
}

input[type="text"] {
  border: 1px solid var(--black);
  font-size: 18px;
  border-radius: 6px;
  padding: 16px;
  padding-left: 16px;
  color: var(--black);
  width: 100%;
}

input[type="text"]:focus {
  outline: none;
}





/* =============================================
SEARCH
================================================ */

/* form input */
input,
textarea,
select,
button {
  font-size: 100%;
}

input[type="file"] {
  font-size: 14px;
  color: #999;
  padding: 5px;
}

select {
  color: #666;
  padding: 9px 10px;
  height: 40px;
  overflow: hidden;
  width: 100%;
  text-transform: uppercase;
  background-color: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #999;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 9px 0 10px;
}

.arrow-select {
  background: #fff url("images/arrow-down.png") no-repeat 95% 54%;
  background-size: auto auto;
  height: 55px;
  background-size: 5%;
}

.imput_home {
  width: 100% !important;
  padding: 10px !important;
  border: 1px solid #999 !important;
  margin: 8px auto !important;
  text-align: left !important;
  font-family: "Open Sans" !important;
  font-size: 12px !important;
  color: #999 !important;
}

input[type="password"],
textarea {
  background-color: transparent;
  color: #ccc;
  border: 0px none;
  font-size: 12px;
  -webkit-appearance: none;
  text-align: right;
}

/* text area */
textarea {
  line-height: 150%;
  height: 130px;
}

/* form input:focus */
textarea:focus,
input[type="password"]:focus {
  outline: none;
}

/* form button */
input[type="reset"],
input[type="submit"],
button {
  background-color: #e42e44;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 15px 25px;
  margin: 5px auto;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* form button:hover */
input[type="reset"]:hover,
input[type="submit"]:hover,
button:hover {
  background-color: #f58220;
}

/* =============================================
SEARCH FORM
================================================ */

#header #searchform {
  position: absolute;
  right: 5%;
  top: 40px;
  width: 160px;
}

#header #searchform #s {
  width: 100px;
  color: #a5a099;
  background: #eee url(images/search.png) no-repeat 8px center;
  border: solid 1px #ddd;
  padding-left: 28px;
  float: right;
  -webkit-transition: width 0.7s;
  -moz-transition: width 0.7s;
  transition: width 0.7s;
}

#header #searchform #s:focus {
  width: 140px;
  color: #212121;
}

/************************************************************************************
RESET
*************************************************************************************/
address,
blockquote,
div,
dl,
form,
ol,
p,
pre,
table,
ul,
dd,
dt,
li,
tbody,
td,
tfoot,
th,
thead,
tr,
button,
del,
ins,
map,
object,
a,
abbr,
acronym,
b,
bdo,
big,
br,
cite,
code,
dfn,
em,
i,
img,
kbd,
q,
samp,
small,
span,
strong,
sub,
sup,
tt,
var,
legend,
fieldset,
figure {
  margin: 0;
  padding: 0;
}

img,
fieldset {
  border: 0;
}

/* set html5 elements to block */
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/************************************************************************************
POST NAVIGATION
*************************************************************************************/
.post-nav {
  margin-bottom: 10px;
  padding: 15px 0;
  clear: both;
}

.post-nav span {
  width: 47%;
  position: relative;
}

.post-nav a {
  text-decoration: none;
  display: block;
  color: #ec5e92;
}

.post-nav a:hover {
  text-decoration: none;
  color: #11e1ba;
}

.post-nav .prev {
  float: left;
  height: 20px;
}

.post-nav .next {
  float: right;
  height: 20px;
  text-align: right;
}

/* post nav arrow */
.post-nav span span {
  background: #ec5e92;
  color: #fff;
  font: normal 20px/100%;
  display: block;
  width: auto;
  float: left;
  width: 32px;
  height: 28px;
  padding: 4px 0 0;
  text-align: center;
  margin: -8px 10px 17px 0;
  -webkit-border-radius: 10em;
  -moz-border-radius: 10em;
  border-radius: 10em;
}

.post-nav .next span {
  float: right;
  margin-left: 10px;
  margin-right: 0;
}

.post-nav a:hover span {
  background: #11e1ba;
  color: #fff;
}

/************************************************************************************
WORDPRESS POST FORMATTING
*************************************************************************************/
img.alignleft,
img.alignright {
  margin-bottom: 20px;
}

img.aligncenter {
  margin: 30px 0px;
  padding: 20px 0px;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  text-align: center;
  display: block;
  margin: auto;
}

.textcenter {
  text-align: center;
}

.textleft {
  text-align: left;
}

.textright {
  text-align: right;
}

.wp-caption {
  text-align: center;
  margin-bottom: 15px;
  max-width: 100%;
}

.wp-caption-text {
  font-style: italic;
  font-size: 95%;
  line-height: 120%;
  margin: 6px 0;
}

/************************************************************************************
GALLERY
*************************************************************************************/
#body .gallery {
  margin: 5px 0 20px 0;
}

#body .gallery img {
  border: none;
}

/* gallery item */
#body .gallery dl {
  margin: 0 8px 8px 0;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;
  width: auto;
  float: none;
  text-align: center;
}

/* gallery caption */
#body .gallery dd {
  width: 140px;
  line-height: 120%;
  font-size: 90%;
  text-align: center;
  margin: 5px 0 0;
}

/* get rid of br tag */
.gallery br {
  display: none;
}

/************************************************************************************
CLEAR & ALIGNMENT
*************************************************************************************/

.widget li:after,
#body:after,
#footer:after,
footer:after,
.pagenav:after,
#main-nav:after,
.menu:after,
.gallery:after,
#content:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.widget li,
#body,
#footer,
footer,
.pagenav,
#main-nav,
.menu,
.gallery,
#content {
  display: inline-block;
}

/* clearfix for ie7 */
.widget li,
#body,
#footer,
footer,
.pagenav,
.menu,
.gallery,
#content {
  display: block;
  zoom: 1;
}