/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  box-sizing: border-box;
}
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* ==========================================================================
 styles
 ========================================================================== */
 *, *:before, *:after {
       box-sizing: inherit;
       margin: 0;
       padding: 0;
       font-size: 100%;
    }
 
body{  
    position: relative;
    display: block;
    font-size: 1.71vw; 
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    letter-spacing: 0.022em;
    line-height: 1.5;
    color: #2B2B2B;
    max-width: 1280px;
    margin: 0 auto;
}
img {
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
}
.center-text {
    text-align: center;
}
.left-text{
    text-align: left;
}
.right-text{
    text-align: right;
}
ul, ol {
    list-style: none;
}
li {
    display: inline-block;
    position: relative;
}
a {
    cursor: pointer;
    text-decoration: none;
    color: #2b2b2b;
}

/***** botones *****/
.btn{
    position: relative;
    font-family: 'Karla', sans-serif;
    font-size: 1.01vw;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.15;
    text-decoration: none;
    padding: 1.01vw 3.125vw;
    text-transform: uppercase;
    outline: none;
  
}
.btn_red{
    background: #D9343C;
    box-shadow: 0 2px 4px 0 #902D32;
    color: #FFF;
}
.btn_red:hover{
    background: #D9343C;
    box-shadow: 0 1px 2px 0 #902D32;
}
.btn_white{
    background: #F2F3F6;
    box-shadow: 1px 2px 3px 0 #2D777C;
    color: #46B3BA;
    padding: 0.70vw 3.125vw;
}
.btn_white:hover{
    background: #F2F3F6;
    box-shadow: 1px 1px 2px 0 #2D777C;
}
.btn.btn_download{
    color: #D9343C;
    padding-left: 0em;
    padding-right: 0em;
    
}
.btn_download::before{
    content: url(../img/line_btn_down.svg);
    display: inline-block;
    position: relative;
    top: -0.199em;
    margin-right: 1em;
}
.btn_download:hover::before{
    content: url('../img/line_btn_down_hover.svg');
    display: inline-block;
    top: unset;
}

.btn.btn_download_white{
    color: #FFF;
    padding-left: 0em;
    padding-right: 0em;
    
}
.btn_download_white::before{
    content: url(../img/line_btn_down_white.svg);
    display: inline-block;
    position: relative;
    top: -0.199em;
    margin-right: 1em;
}
.btn_download_white:hover::before{
    content: url('../img/line_btn_down_white_hover.svg');
    display: inline-block;
    top: unset;
}

/***Colores ******/
.white{
    color: #FFF;
}
.bg_white{
    background-color: #FFF;
}
.red{
    color: #D9343C;
}
.bg_red{
    background: #D9343C;
}
.red_deg{
    background-image: linear-gradient(-180deg, #D9343C 23%, #C6C2BD 100%);
}

.aqua{
    color:  #46B3BA;
}
.bg_aqua{
    background: #46B3BA;
}
.aqua_deg{
    background-image: linear-gradient(-180deg, #46B3BA 45%, #C6C2BD 100%);
}

.gray-light{
    color: #C6C2BD;
}
.bg_gray_light{
    background: #C6C2BD;
}
.gray_light_deg{
    background-image: linear-gradient(0deg, #F2F3F6 0%, #C6C2BD 100%);
}

.gray{
    color: #565757;
}
.bg_gary{
    background: #565757;
}
.gray_deg{
    background-image: linear-gradient(0deg, #F2F3F6 0%, #5B5C5C 100%);
}

.bg_crema{
  background-color: #F2F3F6;
}
.grisesito{
  color: #565757;
}
/**** inputs ******/
input{
    outline: none;
    width: 100%;   
    max-width: 24.64em;
    background: #F2F3F6;
    border: 1px solid #C6C2BD;
    font-family: 'Karla', sans-serif;
    font-size: 1.09vw;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.71;
    color: #C6C2BD;
    padding-top: 0.625vw;
    padding-bottom: 0.625vw;
    padding-left: 0.625vw;
    }
    label{
        display: none;
    }
    input.active{
      color: #565757;
      text-decoration: none;
      border-bottom: 1px solid #46B3BA;
    }
    input.error{
      border-bottom:  1px solid #D9343C;
      color: #D9343C;
    }

/***** Textos ******/

.h1{
    font-family: 'Marcellus', serif;
    font-size: 8.59vw;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin: 0;
}
.h2{
    font-family: 'Marcellus', serif;
    font-size: 4.68vw;
    letter-spacing: 0.06em;
    line-height: 1.25;
    font-weight: 400;
}
.h3{
    font-family: 'Marcellus', serif;
    font-size: 3.28vw;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.26;
}
.text_link{
    font-family: 'Karla', sans-serif;
    font-weight: 500;
    font-size: 1.01vw;
    letter-spacing: 0.15em;
    line-height: 1.15;
    text-transform: uppercase;
}
.text_link:hover, .text_link.active{
    font-weight: 700
}

.text_destacado1{
    font-family: 'Marcellus', serif;
    font-size: 1.64vw;
    letter-spacing: 0.04em;
    line-height: 1.23;
}
.text_destacado2{
    font-family: 'Karla', sans-serif;
    font-size: 3.90vw;
    letter-spacing: 0.02em;
    line-height: 1.18;
    font-weight: 300;
    
}
.sub_title1{
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    font-size: 0.93vw;
    letter-spacing: 0.4em;
    line-height: 1.16;
}
.sub_title2{
    font-family: 'Marcellus', serif;
    font-size: 3.28vw;
    letter-spacing: 0.04em;
    line-height: 1.26;
}
.sub_title3{
    font-family: 'Karla', sans-serif;
    font-size: 1.17vw;
    letter-spacing: 0.13em;
    line-height: 1.2;
}

.text_big{
    font-family: 'Karla', sans-serif;
    font-size: 2.18vw;
    line-height: 1.42;
}
.text_normal{
  font-family: 'Karla', sans-serif;
  font-size: 1.71vw;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.text_small{
    font-family: 'Karla', sans-serif;
    font-size: 1.09vw;
    letter-spacing: 0.14em;
    line-height: 1.71;
}

/**** clase *****/
.text-deg{
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.row{
    display: block;
    position: relative;
}
.desktop{
  display: block;
}
.mobile{
  display: none;
}
.bold{
  font-weight: 700;
}
.small_circle{
  width: 25.31vw;
  max-width: 14.72em;
}
.mapa{
  width: 38.90vw;
  max-width: 22.63em;
  padding-top: 0.36em;
}
.small_margin{
  margin-left: 3.125vw;
  margin-right: 3.125vw;
}
/*********** menu **************/
#burguerMenu {
  position: absolute;
  display: block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  top: 3em;
  left: calc(50% - 17px);
  transform: translateY(-50%);
  background: rgba(255,255,255,.7);
  border-radius: 2em;
}
#burguerMenu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  border-radius: 0px;
  opacity: 1;
  left: 6px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#burguerMenu span:nth-child(1) {
  top: 11px;
  width: 50%;
  left: 9px;
}

#burguerMenu span:nth-child(2),
#burguerMenu span:nth-child(3) {
  top: 17px;
}

#burguerMenu span:nth-child(4) {
  top: 23px;
  width: 50%;
  left: 9px;
}
header.open #burguerMenu{
  z-index: 10;
  top: 15vw;
}
header.open #burguerMenu span:nth-child(1) {
  top: 7px;
  width: 0%;
  left: 50%;
}

header.open #burguerMenu span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 23px;
  left: 6px;
}

header.open  #burguerMenu span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 23px;
  left: 6px;
}

header.open #burguerMenu span:nth-child(4) {
  top: 7px;
  width: 0%;
  left: 50%;
}


/*=============== nav =====================*/
header {
    position: fixed;
    z-index: 100;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    transition: .3s ease-in-out;
    max-height: 2em;
}
header.open{
  background: white;
  max-height: 100vh;
}
header .row.bg_white{
    opacity: .8;
}
.container {
  overflow: hidden;
}
.container_contacto {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 3.125vw;
    padding-right: 3.125vw;
    padding-top: 0.46vw;
    padding-bottom: 0.78vw;
}
.container_contacto img{
    vertical-align: middle;
}
.container_contacto .redes img{
    width: 1em;
}
.container_contacto .redes img:first-child{
    margin-right: 2.34vw;
}
.container_contacto .telefono{
    width: 0.71em;
    margin-right: 0.78vw;
}
.container_contacto .whatsapp{
    width: 1.07em;
    margin-right: 0.78vw;
    margin-left: 1.17vw;
}
.container_contacto .item_contenedor:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container_contacto .item_contenedor:last-child > p {
    margin-right: 2.96vw;
}
.container_contacto .item_contenedor:last-child > p:last-child{
    margin-right: 0;
}


.row.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 10.93vw;
    margin-right: 10.93vw;
    transform: translateY(calc(-100% - 2em));
}
header.open .row.nav{
    transform: none;
}
.nav .logo {
    width: 9.29vw;
    max-width: 5.40em;
    margin-top: 2.10vw;
    margin-bottom: 1.25vw;
}
.row.nav .text_link{
    margin-right: 2.96vw;
}
.row.nav .text_link:last-child{
    margin-right: 0;
}
.row.nav .text_link.active a {
    color: #46B3BA;
}

.contenedor.title.center-text {
  margin-top: 3.125vw;
  margin-bottom: 1.56vw;
}
/**** footer *****/
footer{
    padding-left: 3.125vw;
    padding-right: 3.125vw;
    z-index: 10;
    position: relative;
}
footer .contenedor {
    display: grid;
    grid-template-columns: 17.57vw 1fr 1fr;
}
#footer a {
  color: #FFF;
}
#footer a.btn_white{
    color: #46B3BA;
}
.content_logo_footer {
    max-width: 5.40em;
    width: 9.29vw;
    padding-top: 3.67vw;
    padding-bottom: 1.56vw;
    margin-left: 2.73vw;
    margin-right: 5.46vw;
}
.content_nav_footer {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
}
footer .item_contenedor {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    top: 0.7em;
    position: relative;
}
footer .item_contenedor:first-child{
    margin-bottom: .5em;
}

#footer .container_contacto .redes img{
    width: 1.09vw;
}
#footer .container_contacto{
    display: grid;
    position: relative;
    grid-template-columns: repeat(3 , 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding: 2.34vw 0vw 0vw;
}
.item.text_link.email {
    display: none;
}
.item.btn-contacto {
    grid-column: 1 / 2;
    position: relative;
    left: 5.15vw;
}
.item.btn-descarga {
    grid-column: 2 / 4;
}
.item.content_redes {
    grid-column: 1 / 4;
}
.item.text_link.ubicacion{
    grid-column: 1 / 4;
    text-transform: unset;
    position: absolute;
    bottom: 0.625vw;
    right: 0;
    vertical-align: bottom;
}
.item.text_link.ubicacion .desktop{
    display: inline;
}
.item.text_link.ubicacion .mobile{
    display: none;
}
.item.content_redes {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    position: relative;
    top: 0.85vw;
}
.item.content_redes > p {
    margin-right: 2.34vw;
}

.item.content_redes p:last-child{
    margin-right: 0vw;
}
.telefonos span:first-child{
    margin-right: 2.34vw;
}
.copyright.center-text {
    border-top: 1px solid #FFFFFF;
}
.copyright p {
    font-size: 0.93vw;
    font-weight: 500;
    letter-spacing: 0.083em;
    line-height: 1.16;
    padding-top: 0.78vw;
    padding-bottom: 0.78vw;
}
#footerMenuMobile{
  display: none;
}
.paneo_img{
  transition: .2s linear;
}
/* =================================Ajustes Big=========================================*/
@media only screen and (min-width: 1280px) {
    body{
        font-size: 1.375em;
        
        width: 100vw;
        max-width: 100%;
    }
    .btn{
        font-size: 0.59em;
        padding: 0.92em 2.85em;
    }
    .btn_white{
        padding: 0.71em 3.57em;
    }
    
    /**** inputs ******/
    input {
        font-size: 0.63em;
        padding-top: 0.57em;
        padding-bottom: 0.57em;
        padding-left: 0.57em; 
    }
    /***** textos *****/
    .h1{
        font-size: 5em;
    }
    .h2{
        font-size: 2.72em;
    }
    .h3{
        font-size: 1.90em;
    }
    .text_link{
        font-size: 0.59em;
    }
    .text_destacado1{
        font-size: 0.95em;
    }
    .text_destacado2{
        font-size: 2.27em;
    }
    .sub_title1{
        font-size: 0.54em;
    }
    .sub_title2{
        font-size: 1.90em;
    }
    .sub_title3{
        font-size: 0.68em;
    }
    .text_big{
        font-size: 1.27em;
    }
    .text_normal{
      font-size: 1em;
    }
    .text_small{
        font-size: 0.63em;
    }
    .small_margin{
      margin-left: 1.81em;
      margin-right: 1.81em;
    }
    .contenedor.title.center-text {
        margin-top: 1.81em;
        margin-bottom: 0.9em;
    }
    .container_contacto{
        padding-left: 2.85em;
        padding-right: 2.85em;
        padding-top: 0.42em;
        padding-bottom: 0.71em;
    }
    .container_contacto .item_contenedor:last-child > p {
        margin-right: 2.71em;
    }
    
    .row.nav {
        margin-left: 6.36em;
        margin-right: 6.36em;
    }
    .nav .logo{
        margin-top: 1.22em;
        margin-bottom: 0.72em;
    }
    .row.nav .text_link{
        margin-right: 2.71em;
    }
    
    .row.burguer {
        margin-top: 1.36em;
    }
    header.open #burguerMenu{
      top: 9em;
    }
    
    /********************************/
    header {
      top: 0;
      padding-left: calc((100vw - 1280px)/2);
      padding-right: calc((100vw - 1280px)/2);
      width: 100vw;
      max-width: 100%;
    }
    
    .container{
      overflow: visible;
      /* width: 1280px; */
      margin: 0 auto;
    }
    .contentGen {
      overflow: hidden;
    }
    footer{
        padding-left: calc((100vw - 1280px) / 2);
        padding-right: calc((100vw - 1280px) / 2);
    }
    footer .contenedor {
        grid-template-columns: 10.22em 1fr 1fr;
        padding-left: 1.81em;
        padding-right: 1.81em;
    }
    
    .content_logo_footer {
        padding-top: 2.04em;
        padding-bottom: 0.9em;
        margin-right: 3.18em;
        margin-left: 1.59em;
    }
    
    #footer .container_contacto .redes img{
        width: 0.63em; 
    }
    .item.content_redes > p {
        margin-right: 2.14em;
    }
    .item.content_redes{
        margin-right: 0em;
        top: 0.5em;
    }
    #footer .container_contacto .whatsapp{
        margin-left: 0;
    }
    #footer .container_contacto{
        padding: 1.36em 0em 0em;
    }
    .item.btn-contacto {
        left: 3em;
    }
    
    .telefonos span:first-child{
        margin-right: 2.14em;
    }
    .copyright.center-text{
      margin-left: 1.81em;
      margin-right: 1.81em;
    }
    .copyright p {
        font-size: 0.54em;
        padding-top: 0.83em;
        padding-bottom: 0.83em;
    }
    
}
/* =================================Ajustes Big=========================================*/
@media only screen and (min-width: 1281px) {
  .paddin_max{
    padding-left: calc((100vw - 1280px ) / 2 );
    padding-right: calc((100vw - 1280px ) / 2 );
  }
  .small_margin {
    margin-left: 0em;
    margin-right: 0em;
  }
}
/* =================================Ajustes mobile=========================================*/
@media only screen and (max-width: 600px) {
    .desktop{
      display: none;
    }
    .mobile{
      display: block;
    }
    .hideOnMobile{
      display: none;
    }
    body{
        font-size: 1em;
        letter-spacing: 0.012em;
        line-height: 1.375;
    }
    .btn{
        font-size: 0.8125em;
        letter-spacing: 0.15em;
        line-height: 1.15;
        padding: 1em 3.0em;
    }
    input{
        font-size: 0.875em;
        letter-spacing: 0.07em;
        line-height: 1.7;
        padding: 0.57em;
    }
    /***** Textos ******/
    
    .h1{
        font-size: 3.75em;
        letter-spacing: 0.05em;
        line-height: 1.25;
        margin: 0;
    }
    .h2{
        font-size: 2.625em;
        letter-spacing: 0.03em;
        line-height: 1.26;
    }
    .h3{
        font-size: 2.375em;
        letter-spacing: 0.036em;
    }
    .text_link{
        font-size: 0.81em;
        letter-spacing: 0.15em;
        line-height: 1.15;
    }
    
    .text_destacado1{
        font-size: 1.12em;
        letter-spacing: 0.04em;
        line-height: 1.27;
    }
    .text_destacado2{
        font-size: 2em;
        letter-spacing: 0.012em;
        line-height: 1.15;
        
    }
    .sub_title1{
        font-size: 0.75em;
    }
    .sub_title2{
        font-size: 2.62em;
    }
    .sub_title3{
        font-size: 0.93em;
    }
    
    .text_big{
        font-size: 1.375em;
        line-height: 1.36;
    }
    .text_normal{
      font-size: 1em;
      letter-spacing: 0.012em;
      line-height: 1.37;
    }
    .text_small{
        font-size: 0.875em;
        letter-spacing: 0.07em;
        line-height: 1.71;
    }
    
    header .row.bg_white {
      display: none;
    }
    .row.nav {
        flex-direction: column;
        display: block;
        width: 100vw;
        margin: 0px;
        height: 100vh;
        transform: translateY(-100%);
        transition: .3s ease-in-out;
        padding-top: calc(90px + 30vw);
    }
    .row.nav div:first-child, .row.nav div:last-child{
        order: 2;
    }
    .nav .logo{
        order: 1;
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        max-width: unset;
        width: 40vw;
    }
    .row.nav .text_link {
        display: block;
        text-align: center;
        line-height: 3em;
    }
    #footerMenuMobile{
      display: block;
      position: absolute;
      bottom: 3em;
      width: 100vw;
      transition: .3s ease-in-out;
    }
    .open #footerMenuMobile{
      bottom: 0px;
    }
    #footerMenuMobile .footer {
        background: #46B3BA;
        color: white;
        text-align: center;
        padding-top: 1em;
    }
    
    #footerMenuMobile .footer img {
        max-width: 1em;
        vertical-align: middle;
        margin-right: .5em;
    }
    
    #footerMenuMobile .footer a {
        color: white;
        font-weight: 100;
        line-height: 2em;
    }
    
    #footerMenuMobile .footer .copyright.center-text p {
        background: unset;
    }
    #footerMenuMobile p.address span.mobile {
        display: inline;
    }
    #footerMenuMobile .copyright.center-text {
        margin-left: 1em;
        margin-right: 1em;
        padding-bottom: .7em;
        padding-top: .2em;
        margin-top: .4em;
    }
    #footerMenuMobile .redes img {
        width: 1em;
        margin-left: .7em;
        margin-right: .7em;
    }
    
    #footerMenuMobile .redes {
        text-align: center;
        padding-bottom: 1em;
        padding-top: 1em;
        margin-left: 3em;
        margin-right: 3em;
        border-top: solid 1px #C6C2BD;
    }
    #footerMenuMobile .redes img {
        width: 1em;
        margin-left: .7em;
        margin-right: .7em;
    }
    
    #footerMenuMobile .redes {
        text-align: center;
        padding-bottom: 1em;
        padding-top: 1em;
        margin-left: 3em;
        margin-right: 3em;
        border-top: solid 1px #C6C2BD;
    }
    
    #footerMenuMobile .footer a.btn {
        color: #46B3BA;
        background: white;
        padding: .7em;
        padding-left: 1.5em;
        padding-right: 1.5em;
        margin-bottom: 1em;
        margin-top: 1em;
        display: inline-block;
        line-height: 1em;
        box-shadow: 1px 1px 3px rgb(0 0 0 / 40%);
    }
    header.open #burguerMenu {
        top: 40px;
    }
    
    div#burguerMenu {
        top: 40px;
    }
    /***** footer ***/
    footer{
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    footer .contenedor{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 23em;
    }
    #footer .container_contacto {
        grid-template-columns: 1fr ;
        grid-template-rows: repeat(5, 1fr);
        text-align: center;
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        bottom: -1.5em;
    }
    .content_logo_footer{
        width: 7.43em;
        max-width: 100%;
        grid-column: 1 / 2;
        display: flex;
        align-content: center;
        justify-content: center;
    }
    .content_nav_footer{
        display: none;
    }
    .item.btn-contacto {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .item.btn-contacto.mobile {
        display: flex;
        align-items: center;
        left: 0;
        text-align: center;
        justify-content: center;
    }
    .item.btn-descarga{
        grid-column: 1 / 4; 
        text-align: center;
        margin-bottom: 0.875em;
    }
    .btn.btn_white{
        width: 10.30em;
        padding: 0.84em 1.53em;
    }
    .item.text_link.email{
        display: block;
        grid-row: 4 / 5;
        text-transform: lowercase;
    }
    .item.text_link.ubicacion .desktop{
        display: none;
    }
    .item.text_link.ubicacion .mobile{
        display: inline;
    }
    .item.text_link.ubicacion {
        grid-row: 3 / 4;
    }
    .item.content_redes {
        grid-row: 1 / 3;
        flex-direction: column;
    }
    .item.content_redes > p{
        margin-right: 0;
    }
    #footer .container_contacto .redes img{
        width: 0.875em;
        padding-bottom: 1.42em;
    }
    .container_contacto .redes img:first-child{
        margin-right: 1.87em;
    }
    .container_contacto .whatsapp{
        width: 1.15em;
        margin-right: 0.76em;
        margin-left: 1.53em;
    }
    .container_contacto .telefono{
        width: 0.76em;
        margin-right:  0.76em;
    }
    .telefonos.text_link, .item.text_link.ubicacion, .item.text_link.email {
        font-size: 0.875em;
    }
    .copyright p{
        font-size: 0.75em;
       margin-top: 0.56em;
       padding-bottom: 0.56em; 
    }
}
.appearOnScroll{
  opacity: 0 !important;
  transform: translateY(1em) !important;
}