@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text&display=swap');
/*! 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;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

/*
 * 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
 ========================================================================== */
/*********** menu **************/
#burguerMenu {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 1.642em;
  height: 20px;
  -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;
}
#burguerMenu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  border-radius: 9px;
  background-color: #FFFFFF;
  opacity: 1;
  left: 0;
  -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: 0px;
}

#burguerMenu span:nth-child(2),
#burguerMenu span:nth-child(3) {
  top: 7px;
  width: 50%;
  left: 6px;
}

#burguerMenu span:nth-child(4) {
  top: 14px;
}
#burguerMenu.open{
  z-index: 10;
  position: fixed;
  right: 24px;
}
#burguerMenu.open span:nth-child(1) {
  top: 7px;
  width: 0%;
  left: 50%;
}

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

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

#burguerMenu.open span:nth-child(4) {
  top: 7px;
  width: 0%;
  left: 50%;
}
    
     
body{
   background-color: #FFFFFF;
   font-family: 'Open Sans', sans-serif;
   font-size: 17px;
   letter-spacing: 0.05em;
   line-height: 1.35;
   margin: auto;
   color: #2A2929;
 }
 .container{
    position: relative;
    display: block;
 }
/*Colors*/
.bg-brown-strong{
  background-color: #2A2929;
}
.brown-strong{
  color: #2A2929;
}
.text-brown{
  color: #2A2929;
}
.bg-gray-light{
  background-color: #E3E3E3;
}
.gray-light{
  color: #E3E3E3; 
}
.text-gray{
  color: #E3E3E3;
}

.text-white{
    color: #FFFFFF;
}

.bg-gray{
  background-color: #CECAC8;
}
.gray {
  color: #CECAC8;
}

.bg-white{
  background-color: #FFFFFF;
}
.white{
    color: #FFFFFF;
}
.titulo{
  font-family: 'DM Serif Text', serif;
}
.sub-titulo{
  font-family: 'DM Serif Text', serif;
}
.info_cards .sub-titulo{
  color: #2A2929;
}
.visitanos .text{
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.42;
  letter-spacing: 0.035em;
  font-family: 'Poppins', sans-serif; 
  font-size: 1.09vw;
  font-weight: 500;
  padding: 0.781vw 0;
}
.main-title {
  font-family: 'DM Serif Text', serif;
  font-size: 2.70em;
  color: #2A2929;
  letter-spacing: 0.04em;
  line-height: 1.34em;
  text-align: left;
}
.sub-main-title{
  font-size: 1.76em;
  color: #2A2929;
  letter-spacing: 0.03em;
  line-height:  1.36em;
  text-align: left;
}
.title{
  font-family: 'Poppins', sans-serif;  
  font-size: .95em;
  letter-spacing: .4em;
  line-height: 1.43em;
  text-align: center;
}
ul,
ol {
  list-style: none;
}
li {
  display: inline-block;
  position: relative;
}
a {
  cursor: pointer;
  text-decoration: none;
}
h2 {
  font-size: 3.593vw;
  font-weight: 400;
  letter-spacing: 0.043em;
  line-height: 1.35em;
  padding-bottom: 0.87em;
}
.center-text {
  text-align: center;
}
img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

.menu {
  font-family: 'Poppins', sans-serif;  
  font-size: 1.015vw;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5em;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
}
.menu a:hover{
  font-weight: 600;
}
.active{
  text-decoration: underline;
}

.btn {
  font-size: 1.09vw;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.77em 1.5em;
  display: inline-block;
  position: relative;
  font-family: 'Poppins', sans-serif;  
  letter-spacing: 0.058em;
  line-height: 1.47em;
  text-align: center;
  transition: background 250ms ease-in-out, 
                    transform 150ms ease;
}
.brown-btn {
  background: #2A2929;
  color: #FFFFFF;
}
.brown-btn:hover{
  outline: 1px solid #FFFFFF;
}
.white-btn{
  color: #2A2929;
  background: #FFFFFF;
}
.white-btn:hover{
  outline: 1px solid #2A2929;
}
.form .input{
  position: relative;
}
.input.error:after {
  content: "Corrige este campo";
  position: absolute;
  bottom: -1.1em;
  color: #D0021B;
  display: block;
  width: 100%;
  height: 1em;
  left: 0px;
  font-size: .7em;
}
input{
  border-top: none;
  border-right: none;
  border-left: none;
  outline: none;
  font-family: 'Open Sans',sans-serif;
  color: rgba(42,41,41,0.70);
  letter-spacing: 0.06em;
  border-bottom: 0.06em solid rgba(42,41,41,0.70);
  padding-top: 0.6em;
  padding-left: 0.66em;
  padding-right: 0.66em;
  padding-bottom: 0.73em;
  line-height: 1.33em;
  font-size: 0.88em;
  width: 100%;
  max-width: 27.26em;
}
input.active{
  font-weight: 600;
  color: #2A2929;
  text-decoration: none;
  border-bottom: 1px solid #2A2929;
}
input.error{
  border-bottom:  0.06em solid #D0021B;
  color: #D0021B;
}
.col-2 {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 1.796vw;
  -ms-grid-columns: 1fr 1.796vw 1fr;
  grid-template-columns: repeat(2, 1fr);
}
.social-media-form .icon{
  width: 1.56vw;
  max-width: 1.25rem;
  margin-top: 0;
  margin-bottom: 0;
}
.social-media-form .redes .icon:nth-child(1){
  margin-right: 1.56vw;
}
.contact .contenedor .social-media-form  p{
  margin-top: 0.78vw;
  margin-bottom: 1.56vw;
}

/****** *********/
.menu-mobile {
  display: none;
}
nav{
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding-inline-start: 8.43vw;
  padding-inline-end: 8.43vw;
  max-width: 1280px;
  margin: 0 auto;
}
.menu.logo-head{
  margin-bottom: 2.94em;
  margin-top: 2.94em;
  padding: 0 3.65em;
  order: -1;
  padding: 0;
}
.menu a.logo-head img {
  max-width: 25.46em;
  width: 25.85vw;
}
nav .social-media ul li {
  width: 1.56vw;
  max-width: 20px;
}
nav .social-media ul li:nth-child(2) {
  padding: 0;
  margin: 0 1.56vw;
}
nav .social-media ul li:nth-child(3) {
  margin-right: 1.56vw;
}
.menu.social-media .ig,
.menu.social-media .fb  {
  width: inherit;
}
.head-mobile {
    display: none;
}
/* btn-whats */
.btn-whats .mobile{
  display: none;
}
.btn-whats {
  width: 11.71vw;
  max-width: 10.5em;
  height: 3.125vw;
  max-height: 2.71em;
  z-index: 14;
  position: fixed;
  right: 8.59vw;
  top: 43.048vw;
  cursor: pointer;
  background: #00BB2D;
  border-radius: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.09vw;

}
.btn-whats.footer {
  position: absolute;
  top: unset;
  bottom: 13.6vw;
}
.btn-whats img{
  width: 1.56vw;
  margin-right: 0.781vw;
}
.btn-whats span{
  color: #FFF;
}

/*************** footer ***************/
footer.container{
    padding: 0 7.81vw;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 33.59vw 1fr;
    grid-template-columns: 33.59vw 1fr;
    max-width: 1280px;
    margin: 0 auto;
}
.logos-footer {
  width: 33.59vw;
  max-width: 25.30em;
}
.logo-nara {
    width: 8.235em;
    margin-top: 3.53em;
    margin-bottom: 2.94em;
}
.social-media{
  text-align: left;
}
footer .social-media ul li:nth-child(2) {
    padding: 0;
}
footer .social-media img{
  width: 1.56vw;
  max-width: 1.25rem;
}

.social-media-form p{
  margin-top: 0.714em;
  margin-bottom: 1.42em;
} 
.social-media-form p.tel img{
  display: inline;
  margin: 0;
  margin-right: 0.4rem;
}
footer .social-media a.icons .fb{
  margin: 0 1.56vw;
}
footer .social-media a.icons .ig{
  margin-right: 1.56vw;
}
footer .info{
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 33.59vw 1fr;
     grid-template-columns: 33.59vw 1fr;
     max-width: 1280px;
}
.menu-footer {
  grid-column: 2 / 3;
  grid-row: 3 / 2;
}
.menu-footer ul {
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  text-align: left;
  display: flex;
}
.menu-footer li{
  margin-right: 5.31vw; 
}

hr.first {
  grid-column: 1 / 3;
}
footer .info .btn {
  max-width: 17.41em;
}

footer .locations {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  text-align: left;
  display: flex;
  align-self: self-end;
  column-gap: 50px;
}
.location {
  display: inline-block;
  position: relative;
  text-align: left;
}
.location p {
  font-weight: 600;
  font-family: 'Poppins',sans-serif;
  font-size: 0.764em;
  letter-spacing: 0.076em;
  line-height: 1.46em;
  margin-bottom: 0.38em;
}
.location p a{
  color: white;
}
.location ul li {
  display: block;
  position: relative;
  font-size: 0.705em;
  font-weight: 400;
  line-height: 2.08em;
}

footer .derechos{
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  max-width: 1280px;
}
footer .btn{
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: flex-start;
}
.derechos p {
    font-size: 0.705em;
    line-height: 1em;
    padding-top: 0.66em;
    padding-bottom: 0.764em;
    text-align: center;
    margin-block-start: 1em;
    margin-block-end: 0.76em;
}
span.aviso.text-white a {
  color: #FFF;
  text-decoration: underline;
  line-height: 1.41;
  margin-top: 0.5em;
  position: relative;
}
/******************************* Ajustes Big ******************************/
@media only screen and (min-width: 1280px) {
  .btn{
    font-size: 0.82em;
  }
  .menu{
    font-size: .77em;
  }
  nav{
    padding-inline-start: 5.88em;
    padding-inline-end: 5.88em;
  }
  nav .social-media ul li:nth-child(2) {
    margin: 0 1.25rem;
  }
  nav .social-media ul li:nth-child(3) {
    margin-right: 1.25rem;
  }
  .visitanos .text{
    padding: 0.714em 0em;
    font-size: 0.823em;
  }
  .social-media-form .redes .icon:nth-child(1){
    margin-right: 1.25rem;
  }
  footer.container{
    padding: 0 5.882em;
    -ms-grid-columns: 25.30em 1fr;
    grid-template-columns: 25.30em 1fr;
  }
  footer .info{
    -ms-grid-columns: 25.29em 1fr;
    grid-template-columns: 25.29em 1fr;
  }
  .menu-footer li{
    margin-right: 4em; 
  }
  
  h2{
    width: 100%;
    font-size: 2.70em;
    font-weight: 400;
    letter-spacing: 0.043em;
    line-height: 1.35em;
    padding-bottom: 0.87em;
  }

  .btn-whats{
    font-size: 0.823em;
    right: 6.47em;
  }
  .btn-whats img{
    width: 1.25rem;
    margin-right: 0.625rem;
  }
  footer .social-media a.icons .fb{
    max-width: 1.25rem;
  }
  footer .social-media a.icons .ig{
    margin-right: 1.25rem;
  }
}

/***** Ajustes tablet ***/
@media only screen and (min-width: 600px) and (max-width: 992px){
  nav {
    padding-right: 8.1vw;
    padding-left: 8.1vw;
  }
  .menu a.logo-head {
    padding: 0em;
}
footer.container {
  grid-template-columns: 30vw 1fr;
}
footer .info {
  grid-template-columns: 30vw 1fr;
}
  footer .info .btn {
    font-size: 1.81vw;
  }
.menu-footer li {
  margin-right: 1.5em;
}
}

/***** Ajustes mobile ***/
@media only screen and (max-width: 600px) {
    .hero {
      padding-top: 4.847em;
    }
    body{
        font-size: 14px;
    }
    header{
      position: relative;
      display: block;
      position: fixed;
      width: 100vw;
      z-index: 1;
    }
    .btn {
      font-size: 0.928em;
      padding-left: 0.61em;
      padding-right: 0.61em;
  }
  
  /***** menu-mobile******/
  .menu-mobile {
    width: 100vw;
    height: calc(100vh + 4vh);
    overflow: auto;
    display: block;
    z-index: 5;
    transition: 0.5s ease-in-out;
    top: 4em;
    position: fixed;
    padding-top: 5.5em;
    padding-bottom: 5em;
    transform: translateX(200%);
  }
  .menu{
    font-size:  0.92em;
  }
  .logos-menu-mobile {
    display: block;
    margin-top: 1.42em;
    margin-bottom: 1.42em;
    width: 100%;
  }
  .logos-menu-mobile .social-media ul{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logos-menu-mobile .social-media ul li{
    width: 1.25rem;
  }
  .menu-mobile .btn{
    outline: 1px solid #FFFFFF;
  }
  .menu-mobile span.aviso.text-white {
    display: block;
  }
  .visitanos .text {
    font-size: 1em;
    padding: 0.714em 0;
  }
  /******** End: menu-mobile ********/
  .btn-whats{
    background: none;
    top: calc(100% - 44.66vw);
    right: 4vw;
  }
  .btn-whats .desktop{
    display: none;
  }
  .btn-whats .mobile{
    display: flex;
  }
  .btn-whats img{
    width: 1.875rem;
  }
  .btn-whats span{
    display: none;
  }
  header .menu-mobile.open {
    transform: translateX(0%);
    transition: 0.5s ease-in-out;
    left: 0;
  }
  h2{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
   font-size: 2.43em;
   padding-bottom: 0.435em;
  }
    header nav{
        display: none;
    }
    .container.head-mobile {
        margin-top: 1.71em;
        margin-bottom: 1.71em;
        vertical-align: middle;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .head-mobile img {
        width: 14.43em;
    }
    .small-margin{
        padding: 0 1.71em;
    }
    
    /***** Contacto *****/
    section.contact{
      padding: 0em 0em;
    }
    .contenedor.col-2.bg-gray {
      display: block;
      padding: 2.85em 1.71em 2.14em 1.71em;
    }
    .formulario {
      width: 100%;
    }
    .contact .contenedor p {
      font-family: 'Poppins', sans-serif;
      font-size: 0.86em;
      line-height: 2.08em;
      max-width: 95%;
    }
    .contact .contenedor p.necesario {
      font-size: .86em;
      line-height: 1.41em;
    }
    .map.bg-white {
      width: 100%;
      max-width: 23.35em;
      max-height: 17.14em;
      height: 17.14em;
      margin-top: 3.57em;
      margin-bottom: 2.64em;
    }
  .geolocation img {
    max-width: 14.42em;
    width: 14.42em;
    margin-bottom: 1.42em;
  }
  .contact .contenedor .social-media-form p {
    font-size: 1em;
    letter-spacing: 0.071em;
    line-height: 1.78;
    font-family: 'Open Sans',sans-serif;
    margin-top: 1.42em;
    margin-bottom: 1.28em;
  }
  .social-media-form .icon{
    width: 1.42em;
  }
  .social-media-form .redes .icon:nth-child(1) {
    margin-right: 1.42em;
  }
  .contact .contenedor .social-media-form .redes{
    padding-bottom: 2.85em;
  }

    /***** footer *****/
    footer.container{
        margin: 0 1.71em;
        display: block;
    }
    .logos-footer {
        display: flex;
        align-items: center;
        justify-content: center;
       /*
        margin-top: 3.571em;
        margin-bottom:  2.857em;
        */
        width: 100%;
    }
    .logo-nara {
        width: 14.42em;
    }
    .logos-footer .social-media{
      display: none;
    }
    /* .logos-menu-mobile .social-media li {
      width: 1.25rem;
      display: inline-block;
    } */
    .logos-menu-mobile .social-media ul li:nth-child(2) {
        margin: 0 1.25rem;
    }
    .logos-menu-mobile .social-media ul li:nth-child(3) {
        margin: 0 1.25rem 0 0;
    }
    
    footer .info {
      display: block;
    }
    
    .menu-footer ul {
      text-align: center;
      display: block;
      top: 0%;
      transform: none;
    }
    .menu-footer li.menu {
        display: block;
        margin-bottom: 1.42em;
        margin-right: 0em;
    }
    .menu-footer li.menu:last-child{
        margin-bottom: 0em;
    }
    .menu-footer .menu {
        font-size: 0.92em;
        letter-spacing: 0.076em;
        line-height: 1.46em;
    }
    footer .first{
        margin-top: 2.142em;
        margin-bottom: 2.142em;
    }
    footer .info .btn {
      max-width: 14.61em ;
      display: block;
      position: relative;
      margin: auto;
      text-align: center;
      outline: 1px solid #FFFFFF;
  }
    
    .location:nth-child(-n+2) {
        margin-bottom: 1.785em;
    }
    .locations.text-white {
        margin-top: 2.142em;
        margin-bottom: 2.142em;
        display: block;
        text-align: center;
    }
    .location {
      width: 100%;
      text-align: center;
    }
    .location p {
        font-weight: 600;
        font-family: 'Poppins',sans-serif;
        font-size: 0.928em;
        letter-spacing: 0.076em;
        line-height: 1.46em;
    }
  .location ul li {
    display: block;
    font-size: 0.857em;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 0.85em;
    line-height: 2.08em;

  }    
    .derechos p {
        font-size: 0.857em;
        line-height: 1.41em;
        padding-top: 0.66em;
        padding-bottom: 1em;
        border-top: 1px solid #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
    }
    .derechos.text-white {
      padding-bottom: 6em;
  }
  .contenedor_footer .derechos.text-white {
    padding-bottom: 0.5em;
  }
  span.aviso.text-white a{
    display: block;
  }
  .linea_perpen    {
    display: none;
  }
}