/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.0.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;
}

/*
 * 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: 1.5px solid var(--rojo);
  margin: 0 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;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
   :root {
     --rojo: #ff5251;
     --rojoD: rgba(255, 82, 81, 0.6);
     --amarillo: #ff9513;
     --amarilloD: rgba(255, 149, 19, 0.6);
     --rojoUno: #fe615d;
     --cafe: #674b4b;
     --blancoD: rgba(255, 255, 255, 0.2);
     --blancoDD: rgba(255, 255, 255, 0.8);


     /*footer*/
     --cafeO: #3d3027;
     --cafeC: #856a57;
     --cafeT: #9e8676;
     --cafeI: #eeb892;
     --grisT: #dedad5;
   }


   /***************
   *****General******
   ****************/
   .contenedor {
     width: 98%;
     margin:  auto;
   }
   @media only screen and (min-width:480px) {
     .contenedor {
       width: 95%;
     }
   }
   @media only screen and (min-width:768px) {
     .contenedor {
       width: 90%;
     }
   }
   @media only screen and (min-width:992px) {
     .contenedor {
       width: 80%;
     }
   }
   *, *:before, *:after {
     box-sizing: inherit;
   }

   body {
     box-sizing: border-box;
     min-height: 100%; /*este comentario es para optimizar el degradado en el fondo del sitio*/
     font-size: 62.5%; /*truco para convertir un rem en 10px*/
     font-family: 'Molengo', sans-serif;
   }

   /*
   * FLEXBOXES
   */
   .flex {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-flex-wrap: nowrap;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap;
     -webkit-justify-content: flex-start;
     -ms-flex-pack: start;
     justify-content: flex-start;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
   }
   .flex-flexend {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-flex-wrap: nowrap;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap;
     -webkit-justify-content: flex-end;
     -ms-flex-pack: end;
     justify-content: flex-end;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
     -webkit-align-items: flex-start;
     -ms-flex-align: start;
     align-items: flex-start;
   }
   .flex-wrap {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     -webkit-justify-content: flex-end;
     -ms-flex-pack: end;
     justify-content: flex-end;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
     -webkit-align-items: flex-start;
     -ms-flex-align: start;
     align-items: flex-start;
   }
   .flex-wrap-center-center {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     -webkit-justify-content: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
     -webkit-align-items: center;
     -ms-flex-align: center;
     align-items: center;
   }
   .column-center-center {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: column;
     -ms-flex-direction: column;
     flex-direction: column;
     -webkit-flex-wrap: nowrap;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap;
     -webkit-justify-content: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
     -webkit-align-items: center;
     -ms-flex-align: center;
     align-items: center;
   }
   .column-end-center {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
   .column {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
        align-content: stretch;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
   .column-spaceBetween-center {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: column;
     -ms-flex-direction: column;
     flex-direction: column;
     -webkit-flex-wrap: nowrap;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap;
     -webkit-justify-content: space-between;
     -ms-flex-pack: justify;
     justify-content: space-between;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
     -webkit-align-items: center;
     -ms-flex-align: center;
     align-items: center;
   }
   .spaceBetween-wrap {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     -webkit-justify-content: space-between;
     -ms-flex-pack: justify;
     justify-content: space-between;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
     -webkit-align-items: flex-start;
     -ms-flex-align: start;
     align-items: flex-start;
   }
   .spaceBetween-wrap-center {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     -webkit-justify-content: space-between;
     -ms-flex-pack: justify;
     justify-content: space-between;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
     -webkit-align-items: center;
     -ms-flex-align: center;
     align-items: center;
   }
   .space-between {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-flex-wrap: nowrap;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap;
     -webkit-justify-content: space-between;
     -ms-flex-pack: justify;
     justify-content: space-between;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
     -webkit-align-items: flex-start;
     -ms-flex-align: start;
     align-items: flex-start;
   }
   .spacearround-center-center {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-flex-wrap: nowrap;
     -ms-flex-wrap: nowrap;
     flex-wrap: nowrap;
     -webkit-justify-content: space-around;
     -ms-flex-pack: distribute;
     justify-content: space-around;
     -webkit-align-content: center;
     -ms-flex-line-pack: center;
     align-content: center;
     -webkit-align-items: center;
     -ms-flex-align: center;
     align-items: center;
   }
   .spacearround-wrap-center-center {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }


 /* ==========================================================================
    ESTILOS CSS
    ========================================================================== */
    h4 {
      color: var(--cafe);
      text-transform: uppercase;
      font-weight: bolder;
      text-align: center;
      font-size: 1.1rem;
      font-family: 'Raleway', sans-serif;
    }
    h4::after {
      content:'';
      margin: 0 auto 15px auto;
      background-image: url(../img/separador.png);
      height: 16px;
      width: 67px;
      display:block;
    }

/**********NAV************/
div.navPrincipal {
    background-color: #38302d;
    height: 50px;
    transition: all 1s ease;
    position: fixed!important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
div.separadorNav {
    height: 50px;
}
div.logoPrin {
    padding: 10px;
    background-color: #fff;
}
div.logoPrin img {
    height: 80px;
}
div.navContResp {
    position: relative;
}

div.navPrinScreen {
    margin-top: 5px;
    height: 45px;
    padding: 10px;
}
div.navPrinScreen ul li.btnScreen {
    display: none;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    margin-left: 20px;
    font-size: 1rem;
}
div.navPrinScreen ul li.btnResp {
    display: block;
}
@media only screen and (min-width: 550px) {
    div.navPrinScreen ul li.btnScreen {
        display: inline-block;
    }
    div.navPrinScreen ul li.btnResp {
        display: none;
    }
}
div.navPrinScreen ul li i {
    font-size: 2.3rem;
    color: #ffcc1b;
    display: block;
}
div.navPrinScreen a {
    text-decoration: none;
    color: #fff;
}
div.navPrinScreen a:hover {
    color: var(--rojoUno);
}

/**********HERO************/
.heroImage{
  width: 100%;
  height: 500px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /*background-attachment: fixed;//esto crea el efecto paralax*/
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/biuld.jpg);
  content:'';
}
div.heroCont {
    color: white;
    z-index: 10;
}
div.heroCont {
    font-size: 2rem;
    padding: 0;
    margin: 0;
    color: #fff;
}
div.heroCont h1 {
    font-size: 2rem;
    font-family: 'Anton', sans-serif;
    padding: 0;
    margin: 0;
}
div.heroCont h2 {
    font-family: 'Pacifico', cursive;
    padding: 0;
    margin: 0;
}
div.heroCont h3 {
    font-family: 'Anton', sans-serif;
    font-size: 6.2rem;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}
div.heroCont p {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    margin-top: 5px;
    font-size: 2rem;
    border: #fff 1.5px solid;
    padding: 0 10px;
    background-color: var(--blancoD);
    width: 350px;
    text-align: center;
}
div.heroCont p span {
    color: #ffcc1b;
}

/**********Paralax************/
.parallax::before{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;//esto crea el efecto paralax
}
div.parallax {
  position: relative;
  height: 350px;
}
div.casosExito::before{
    background-image: url(../img/paralax09.jpg);
    content:'';
}
div.iurisHero::before{
    background-image: url(../img/paralax06.jpg);
    content:'';
}
div.iurisHero{
    height: 120px;
}
div.iurisServicios::before, div.iurisPrivacidad::before{
    background-image: url(../img/paralax06.jpg);
    content:'';
}
div.iurisServicios{
    height: 300px;
}


/**********HERO IURIS************/
.heroIuris{
  width: 100%;
  height: 500px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /*background-attachment: fixed;//esto crea el efecto paralax*/
  background-image: url(../img/derechoDR.jpg);
  content:'';
}
div.HiCont {
    padding: 30px;
    width: 100%;
    color: #38302d;
    font-size: 1rem;
    text-align: justify;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}
div.HiCont h2 {
    font-family: 'Anton', sans-serif;
}
@media only screen and (min-width: 550px) {
    div.HiCont {
        width: 80%;
    }
}

@media only screen and (min-width: 800px) {
    div.HiCont {
        width: 65%;
    }
}
@media only screen and (min-width: 1050px) {
    div.HiCont {
        width: 50%;
    }
}
/**************Descripcion Ross iuris.php**********/
div.HiCont p {
    font-size: .7rem;
}
@media only screen and (min-width: 400px) {
    div.HiCont p {
        font-size: .9rem;
    }
}





/**********BARRA DE tITULO************/
div.iurisTitulo{

}
div.iurisTitulo h1{
    margin: 0;
    padding: 0;
}
div.iurisTitulo h2{
    margin: 0;
    padding: 0;
}

/**********Baner Servicios************/
.embla {
  overflow: hidden;
}
.embla__container {
  display: flex;
}
.embla__slide {
  position: relative;
  flex: 0 0 90%;
}
@media only screen and (min-width: 800px) {
    .embla__slide {
      flex: 0 0 70%;
    }
}
@media only screen and (min-width: 1000px) {
    .embla__slide {
      flex: 0 0 50%;
    }
}
@media only screen and (min-width: 1200px) {
    .embla__slide {
      flex: 0 0 40%;
    }
}
.embla__slide img {
    max-width: 100%;
    filter: gray;
    -webkit-filter: grayscale(1);
    -webkit-transition: all .5s ease-in-out;
}
div.servImg{
    overflow: hidden;
    height: auto;
    position: relative;
}
div.servImg:hover img {
  -webkit-filter: grayscale(0);
  transform: scale(1.1);
}
div.servImg p {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 20px;
    margin: 0;
    margin: 0;
    background-color: rgba(56, 48, 45, .8);
    width: 100%;
    text-align: left;
    COLOR: #fff;
    transition: all .5s ease-in-out;
    font-size: 1rem;
    z-index: 5;
}
div.servImg:hover p {
    background-color: rgba(56, 48, 45, .4);
    font-size: 1.2rem;
}
div.servInfo {
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: #fff!important;
    transition: all 1s ease-in-out;
    font-size: 1.7rem;
    z-index: 10;
    display: none;
}
div.servImg:hover div.servInfo {
    display: block;
}
div.servInfo a {
    font-family: 'Raleway', sans-serif;
    color: #fff!important;
    font-size: 1.7rem;
    text-decoration: none;
}
div.servInfo a i {
    color: red;
    font-size: 1.5rem;
    font-weight: bolder;
}

/**********MODAL Servicios************/
div.serModalCont img {
    width: 100%;
}
div.modalInfo h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
}
div.modalInfo p {
    font-family: 'Raleway', sans-serif;
    font-size: .9rem;
    text-align: justify;
}
div.modalInfo p ul li {
    font-family: 'Raleway', sans-serif;
    font-size: .9rem!important;
    text-align: justify;
}

/***********************
***Barra Casos éxito****
***********************/
div.nuestrosC {
    margin-top: 20px;
}
div.cajaExito {
    width: 90px;
    margin: 10px;
}
div.cajaExitoImg img {
    border-radius: 40%;
    width: 100%;
}

/***********************
****Barra Proceso*****
***********************/
div.barraServicios {
  position: relative;
}
div.serviciosContenido {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
div.servContTit h4 {
  background-color: var(--blancoDD);
  border-radius: 15px;
  margin: 10px 20px 50px 20px;
  padding: 10px 0 5px 0;
}
div.cajaServicio {
  width: 300px;
  height: 280px;
  /*border: 2px solid var(--rojo);*/
  border-radius: 15px 15px 15px 35px;
  -webkit-box-shadow: 10px 10px 10px 0 var(--cafe);
  box-shadow: 10px 10px 10px 0 var(--cafe);
  margin-right: 15px;
  margin-bottom: 15px;
  position: relative;
}
div.cajaServImg img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}
div.cajaServContenido p {
  font-size: .8rem;
  text-align: justify;
  padding: 0 10px;
}
div.cajaServPie {
  margin-top: 25px;
  background-color: var(--amarilloD);
  border-radius: 0 0 15px 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
div.cajaServPie a {
  margin: 7px 20px 7px auto;
  font-size: 1rem;
  color: #fff;

}
div.cajaServLogo {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
div.cajaServLogo img {
  height: 38px;
}

/************************
*********MODAL MENSJAE**********
************************/
div.ModalMensaje input {
    width: 100%;
    margin-bottom: 20px;
    height: 35px;
    padding: 10px;
    border: 1px solid var(--amarillo);
    border-radius: 5px;
    color: var(--amarillo);
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
}
div.chbxAP input {
  height: 20px;
  width: auto;
  padding: 0;
  margin: 0;
  margin-right: 10px;
}
div.chbxAP label a {
  color: var(--amarillo);
  text-decoration: none;
}
div.chbxAP label a:hover {
  color: var(--rojo);
}
div.chbxAP p {
  color: var(--rojo);
  margin: 0;
  padding: 0;
  margin-left: 25px;
}
div.chbxAP label {
  font-size: .9rem;
}
div.ModalMensaje textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid var(--amarillo);
    border-radius: 5px;
    /* color: var(--rojoUno); */
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
}

/************************
*********IURIS.PHP**********
************************/
div.tituloIuris{
    background-color: var(--blancoD);
}
div.iurisTitCont{
    position: absolute;
    top: 50;
    left: auto;
}
div.iurisIntro{
    padding: 50px 10px;
}
@media only screen and (min-width: 500px) {
    div.iurisIntro{
        padding: 50px 50px;
    }
}
@media only screen and (min-width: 700px) {
    div.iurisIntro{
        padding: 50px 100px;
    }
}
@media only screen and (min-width: 1000px) {
    div.iurisIntro{
        padding: 50px 150px;
    }
}
div.iurisIntro p {
    color: var(--cafeO);
    font-size: 1rem;
    text-align: justify;
}
div.cabezalIuris {
    position: relative;
}
div.cabezalCont{
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background-color: var(--blancoD);
    padding-top: 15px;
}
/* BARRA PRINCIPIOS */
div.divPrincipios{
    position: relative;
}
div.prinTitulo{
    background-color: var(--blancoD);
    padding: 15px 0 10px 0;
    position: absolute;
    width: 100%;
    top: 15px;
    left: 0;
}
div.prinContenido{
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
}

div.cajaPrincipio {
    width: 300px;
    border-radius: 20px;
    height: 450px;
    margin-top: 15px;
    position: relative;
}
div.cajaPrincipio img.top {
    width: 100%;
    border-radius: 20px 20px 0 0;

}
div.cajaPrincipio img.bottom {
    width: 100%;
    border-radius: 0 0 20px 20px;
}
div.cajaPrincipio p {
    font-size: .8rem;
    margin: 10px 20px;
    text-align: justify;
}
div.cajaPrincipio ul li {
    font-size: .8rem;
}
div.prinTitCaja {
    position: absolute;
    top: 145px;
    left: 30px;
}
div.prinTitCaja p {
    margin: 0;
    padding: 8px 13px 0 13px;
    color: var(--rojo);
    font-size: 2rem;
    background-color: var(--blancoD);
    border-radius: 10px;
}


/************************
*********ap.php**********
************************/
/* div.contApParalax{
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    left: 0;
} */
div.contApParalax p, div.contApParalax ul li, div.contApParalax ol li {
  color: var(--cafeO);
  font-size: 1rem;
  text-align: justify;
}
ol.letraMin li {
  list-style-type: lower-latin;
}
p.fechaMin {
  text-align: right;
  font-size: .7rem!important;
}


/************************
*********FOOTER**********
************************/
footer{
    background-color: #38302d;
    padding: 30px 0;
}
div.fooCont {
    width: 100%;
}
div.fooTweeter {
    width: 100%;
}
@media only screen and (min-width: 900px) {
    div.fooCont {
        width: 70%;
    }
    div.fooTweeter {
        width: 30%;
    }
}
@media only screen and (min-width: 1050px) {
    div.fooCont {
        width: 59%;
    }
    div.fooTweeter {
        width: 39%;
    }
}
footer h5 {
    color: var(--rojoUno);
}
footer h5 span {
    color: var(--amarillo);
}
div.fooContInfo{
    width: 100%;
    color: #ebebeb;
    font-size: .8rem;
}
@media only screen and (min-width: 900px) {
    div.fooContInfo{
        width: 80%;
    }
}
@media only screen and (min-width: 1050px) {
    div.fooContInfo{
        width: 50%;
    }
}
div.fooContInfo h5{
    color: var(--cafeT);
    font-size: 1rem;
}
div.fooContInfo p {
    margin: 0;
    padding: 0;
}
div.fooContInfo a {
    text-decoration: none;
    color: #ebebeb;
}
div.fooContInfo a i {
    color: var(--rojoUno);
    font-size: 1.2rem;
}
div.footColLogo img{
    width: 100px;
}
div.fooColMessage a {
    text-align: center;
    width: 100%;
    background-color: var(--amarilloD);
    margin-top: 10px;
    border-radius: 5px;
    padding: 5px 0;
}

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

/*
 * Hide visually and from screen readers
 */

.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: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.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: transparent !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;
  }
}
