/** UTILIDADES **/
:root {
    /* --marco: 8px ridge #FFEC00;
    --marco2: 8px inset #2f00ff;
    --marco3: 8px ridge #FF0000;
    --marco4:border: 8px groove #14f000;
    --marco5: 8px outset #ff00e6;
    --fondo-naranja: rgb(255, 128, 0);
    --fondo-verde:rgb(0, 255, 229);
    --fondo-png:#075E54;
    --color-blanco: white; */
    --bg-color:#926f0e;
    --boton-up: red;
  }
  
  .centrar-flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  html {
    background-color: #926f0e;
  }
  
  img {
    /* display: block; */
    height: auto;
    max-width: 100%;
    width: 100%;
  }
  
  .img {
    margin: 0 auto;
    max-width: 23rem;
  }

  
  .arabesco {
    max-width: 30%;

  }
  
  section {
    outline: var(--marco);
    background-position: center;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
  }
  
  .divider {
    height: 95px;
  }
  
  .container {
    outline: var(--marco2);
    max-width: 1140px;
  }
  
  @media (max-width: 576px) {
    .container {
      width: 100%;
    }
  }
  .contenedor {
    outline: var(--marco3);
  }
  
  /*** BOTON LLAMADA Ocultar para todas las pantallas excepto moviles ***/
  @media (min-width: 769px) {
    .pulse-wr {
      display: none;
    }
    .bton.btn-lg.llamar {
      display: none;
    }
    .bton.btn-lg {
      display: block;
    }
    .bton.btn-lg i {
      font-size: 25px;
    }
  }
  /* Mostrar solo en pantallas moviles */
  @media (max-width: 768px) {
    .pulse-wr {
      display: block;
      position: fixed;
      bottom: 40px;
      left: 13px;
      width: 4.8rem;
      z-index: 1000;
      background: transparent;
    }
    .bton.btn-lg.llamar {
      display: block;
    }
    .bton.btn-lg {
      display: none;
    }
  }
  /** FIN BOTON LLAMADA ***/
  .barra-superior {
    /* Permalink - https://colorzilla.com/gradient-editor/#4a2220+0,cf9c4f+19,f7e279+37,f7f3bf+50,f7e279+64,cf9c4f+82,502922+100 */
    background: #4a2220;
    /* Old browsers */
    background: -moz-linear-gradient(left, #4a2220 0%, #cf9c4f 19%, #f7e279 37%, #f7f3bf 50%, #f7e279 64%, #cf9c4f 82%, #502922 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #4a2220 0%, #cf9c4f 19%, #f7e279 37%, #f7f3bf 50%, #f7e279 64%, #cf9c4f 82%, #502922 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #4a2220 0%, #cf9c4f 19%, #f7e279 37%, #f7f3bf 50%, #f7e279 64%, #cf9c4f 82%, #502922 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4a2220", endColorstr="#502922",GradientType=1);
    /* IE6-9 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#4a2220', endColorstr='#502922', GradientType=1)";
  }
  
  .info-superior {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 1.1rem;
    font-size: 20px;
    gap: 10px;
  }
  
  @media (max-width: 992px) {
    .info-superior {
      grid-template-columns: unset;
    }
  }
  @media (max-width: 900px) {
    .menuzord-responsive .menuzord-brand {
      margin: 16px 0 10px 20px;
    }
  }
  @media (max-width: 576px) {
    .info-superior {
      font-size: 18px;
    }
  }
  .reloj {
    grid-column: 1/2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @media (max-width: 992px) {
    .reloj {
      margin-bottom: 8px;
    }
  }
  .reloj i {
    margin-right: 5px;
  }
  
  .info-barra {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  
  .info-barra a {
    color: rgb(0, 0, 0);
    padding: 8px;
    transition-duration: 0.3s;
    outline: var(--marco3);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  
  .info-barra a:hover {
    color: var(--fondo-naranja, white);
    background-color: var(--fondo-verde, rgb(0, 0, 0));
    opacity: 0.6;
    padding: 8px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  
  @media (max-width: 576px) {
    .info-barra a,
    .info-barra a:hover {
      padding: 0;
    }
    .info-barra a:hover {
      background-color: unset;
      opacity: unset;
    }
  }
  .redes a {
    display: flex;
    align-items: center;
    transition-duration: 0.2s;
    color: rgb(6, 7, 0);
  }
  
  @media (max-width: 576px) {
    .redes a {
      flex-direction: column;
    }
  }
  .redes i {
    margin-right: 5px;
    font-size: 25px;
  }
  
  @media (max-width: 576px) {
    .redes i {
      margin-right: 0;
    }
  }
  /************* MENU *****************/
  nav ul li.active {
    background-color: unset;
  }
  
  .header-nav .contenedor-nav nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  
  @media (max-width: 960px) {
    .header-nav .contenedor-nav nav {
      display: unset;
    }
  }
  .header-nav a {
    text-transform: uppercase;
  }
  
  .menuzord a {
    transition: color 0.2s linear, background 0.2s linear;
    -webkit-transition: color 0.2s linear, background 0.2s linear;
    -moz-transition: color 0.2s linear, background 0.2s linear;
    -ms-transition: color 0.2s linear, background 0.2s linear;
    -o-transition: color 0.2s linear, background 0.2s linear;
  }
  
  .menuzord.blue .menuzord-menu > li.active > a, .container .contenedor-info .bton.btn-lg {
    background: linear-gradient(to bottom, #4a2220 0%, #cf9c4f 19%, #f7e279 37%, #f7f3bf 50%, #f7e279 64%, #cf9c4f 82%, #502922 100%);
    color: black;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  
  .menuzord.blue .menuzord-menu > li.active > a:hover {
    color: white;
  }
  
  .menuzord.blue .menuzord-menu > li:hover > a {
    background: radial-gradient(ellipse at center, #926f0e 0%, #141414 100%);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  
  .header-nav-wrapper {
    border-bottom: 3px inset rgba(152, 149, 139, 0.61);
    box-shadow: rgba(0, 0, 0, 0.85) 0px 8px 20px 0px;
    z-index: 1 !important;
  }
  
  .header-nav .header-nav-wrapper .menuzord {
    height: 80px;
  }
  
  ul .li {
    text-align: center;
  }
  
  @media (min-width: 768px) {
    ul .li {
      text-align: right;
      margin-right: 20px;
    }
  }
  @media (min-width: 990px) {
    .menuzord .showhide {
      display: block;
    }
  }
  @media (max-width: 990px) {
    .menuzord .showhide {
      /* display: block; */
      padding: 30px 20px 0 0;
    }
  }
  /******* FIN MENU ***********/

  /************** hero HEADER ***********/
  .hero-header {
    background-image: url(../images/bg/trompeta.webp);
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
  }
  
  .header-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  
  .contenedor-info {
    background-color: rgba(0, 0, 0, 0.838);
    color: rgb(255, 248, 240);
    border-radius: 22px;
    padding: 42px;
    outline: var(--marco3);
  }
  
  .contenedor-info .col {
    outline: var(--marco4);
  }
  
  @media (max-width: 650px) {
    .contenedor-info {
      width: 90%;
      padding: 40px 30px;
    }
  }
  .hero-header .enlace-wp {
    background-color: #075e4b;
    color: var(--color-blanco);
    padding: 10px;
    border-radius: 6px;
  }
  
  .hero-header h2 {
    color: var(--color-blanco);
    padding: 10px 0;
  }
  
  .container .bton.btn-lg {
    margin-top: 10px;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    font-weight: bold;
  }
  
  .container .bton.btn-lg:hover {
    color: #075e4b;
  }
  
  .hero-header .fa-lg {
    font-size: 25px;
    vertical-align: -22%;
  }
  
  /***    FIN hero-header  ****/

  
  /********************  VIDEO   ********************/


  .row.videos {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.linea_video {
  background: var(--bg-color);
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  height: .2rem;
}
.row.videos h2{
  text-align: center;
  font-size: 2.5rem;
}

@media (min-width: 357px) { 
  .row.videos h2 {
      
      font-size: 2.8rem;
  }
}
@media (min-width: 480px) { 
  .row.videos h2 {
      
      font-size: 3.2rem;
  }
}

@media (min-width: 576px) { 
  .row.videos {
      margin: 0;
  }
}

.linea_video {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

.contenido_videos {
 background-image: url('../images/white-waves.webp');
 box-shadow: 0px 14px 13px 0px rgba(0, 0, 0, 0.72);
 border-radius:1rem ;
 -webkit-border-radius:1rem ;
 -moz-border-radius:1rem ;
 -ms-border-radius:1rem ;
 -o-border-radius:1rem ;
}


.contenedor_video {
  aspect-ratio: 16/9;
  position: relative;
  /* outline: var(--marco); */
  margin: 60px 0;
}


@media (max-width: 768px) {
    .contenedor_video {
        margin: 35px 0;
      }
  }

  @media (min-width: 820px) {
      .contenedor_video {
          margin: 0;
      }

      .texto_video {
      display: flex;
      flex-direction: column;
      justify-content: center;
      }

      .texto_video h3 {
          margin: 0;
      }
  }
  .contenedor_video:last-child {
  margin-bottom: 0;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.72);
}

@media (min-width: 820px) {

  .contenido_videos {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 2rem;
      align-items: center;
    }

    .video2 {
      grid-column: 2 / 3;
    }
    .tex2 {
      grid-row: 1/2;
    }

   
}

@media (min-width: 991px) { 
  .col-md-6 {
      width: unset;
  }
}

.texto_video .texto_titulo {
  margin: 2rem 0;
}


  
  /******* FIN VIDEOS ********/


  /********* OVERLAY ICONS *********/
  .container.icons {
    padding: 37px;
  }
  
  .box-contenido {
    display: flex;
    justify-content: space-around;
  }
  
  .box-icons {
    width: 25%;
    outline: var(--marco2);
  }
  
  @media (max-width: 820px) {
    .box-contenido {
      flex-wrap: wrap;
      row-gap: 30px;
    }
    .box-icons:nth-child(3) {
      width: 100%;
    }
  }
  @media (max-width: 576px) {
    .box-icons {
      width: 100%;
    }
  }
  /********* FIN OVERLAY ICONS *********/
  /********* PRECIOS *********/
  .contenedor-precios {
    display: flex;
    flex-direction: column;
    gap: 32px;
    outline: var(--marco3);
  }
  
  .contenedor-precios .descripcion {
    outline: var(--marco4);
  }
  
  .contenedor-precios span {
    color: red;
    font-weight: 800;
  }
  
  .contenedor-precios .servicios {
    display: flex;
    justify-content: space-evenly;
  }
  
  .precio {
    border: 3px solid #d4d4d4;
    border-radius: 10px;
    box-shadow: 0px 11px 12px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 28%;
  }
  
  @media (max-width: 1000px) {
    .precio {
      width: 31%;
    }
  }
  @media (max-width: 820px) {
    .contenedor-precios .servicios {
      flex-wrap: wrap;
      row-gap: 30px;
    }
    .precio {
      width: 43%;
    }
  }
  @media (max-width: 576px) {
    .precio {
      width: 72%;
    }
  }
  @media (max-width: 480px) {
    .precio {
      width: 85%;
    }
  }
  @media (max-width: 393px) {
    .precio {
      width: 96%;
    }
  }
  .mariachis-precio {
    margin: 0 0 20px 0;
    padding: 20px;
    background: linear-gradient(to right, rgba(74, 34, 32, 0.9) 0%, rgba(207, 156, 79, 0.9) 19%, rgba(247, 226, 121, 0.9) 37%, rgba(247, 243, 191, 0.9) 50%, rgba(247, 226, 121, 0.9) 64%, rgba(207, 156, 79, 0.9) 82%, rgba(80, 41, 34, 0.9) 100%);
  }
  
  .mariachis-precio p:nth-child(1) {
    margin-bottom: 15px;
  }
  
  .mariachis-precio p:nth-child(2) {
    font-size: 2.5rem;
  }
  
  .mariachis-precio p {
    font-family: "Droid Serif";
    padding: 0;
    margin: 0;
    font-size: 2rem;
    line-height: 1.3;
  }
  

  
  .listado-precio {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin: 25px 0 20px 0;
  }
  
  .tabla {
    text-align: center;
  }
  
  /********* FIN PRECIOS *********/
  /********* MEDIOS DE PAGO *********/
  #medios-pago {
    background: linear-gradient(to bottom, #ffffff 18%, #240909 70%);
  }
  
  #medios-pago .container {
    padding: 0;
    outline: var(--marco2);
  }
  
  @media (max-width: 576px) {
    #medios-pago .container {
      overflow: hidden;
    }
  }
  .carousel {
    height: 330px;
    width: 90%;
    margin: 0 auto;
  }
  
  @media (max-width: 576px) {
    .carousel {
      height: 300px;
      /* width: 85%; */
    }
  }
  .h2 {
    display: flex;
    justify-content: center;
    margin: 0;
  }
  
  .h2 h2 {
    font-size: 2rem;
    margin: 0;
  }
  
  .carousel .carousel-item {
    visibility: hidden;
    /* overflow: hidden; */
    width: 500px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  
  @media (max-width: 576px) {
    .carousel .carousel-item {
      height: 180px;
      width: 90%;
    }
  }
  .carousel .indicators .indicator-item.active {
    background-color: rgba(255, 255, 255, 0.9058823529);
    height: 10px;
    width: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  
  .linea-division {
    width: 100%;
    height: 2px;
    background-color: #4c1d0e;
    margin: 10px 0 5px 0;
  }
  
  .numero-cuenta {
    margin: 0;
    color: #000;
    display: inline;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  @media (max-width: 576px) {
    .numero-cuenta {
      font-size: 27px;
    }
  }
  .carousel .indicators .indicator-item {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin: 0 15px;
    background-color: rgb(178, 138, 100);
  }
  
  @media (max-width: 576px) {
    .carousel .indicators .indicator-item {
      margin: 0 10px;
    }
  }
  /********* FIN MEDIOS DE PAGO *********/
  /************** REPERTORIO ***************/
  .descripcion {
    padding: 25px;
  }
  
  .bloques-reper {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    outline: var(--marco2);
    margin-top: 30px;
  }
  
  .tablas-reper {
    font-family: "Droid Serif";
    font-size: 35px;
    font-weight: bold;
    color: #141414;
    margin-top: 10px;
  }
  
  .canciones {
    border: 3px solid #d4d4d4;
    max-width: 320px;
    width: 90%;
    text-align: center;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    box-shadow: 0px 8px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, rgba(74, 34, 32, 0.9) 0%, rgba(207, 156, 79, 0.9) 19%, rgba(247, 226, 121, 0.9) 37%, rgba(247, 243, 191, 0.9) 50%, rgba(247, 226, 121, 0.9) 64%, rgba(207, 156, 79, 0.9) 82%, rgba(80, 41, 34, 0.9) 100%);
  }
  
  /* 2 */
 

  .btn-2 {
    background: linear-gradient(0deg, rgb(138, 137, 137) 0%, rgb(255, 255, 255) 100%);
    border: none;
    padding: 16px;
    margin: 20px 0;
    border-radius: 5px;
    text-transform: uppercase;
    color: black;
    font-weight: bold;
    letter-spacing: 0.5px;
  }
  
  .btn-2:before {
    height: 0%;
    width: 2px;
  }
  
  .btn-2:hover {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.5), -4px -4px 6px 0 rgba(116, 125, 136, 0.5), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.4);
  }

  .btn-precios{
    margin: 0;
    letter-spacing: 2px;
    font-size: 18px;

  }
  
  /************** FIN REPERTORIO ***************/
  
  /************** GALERIA ***************/
  .gallery-isotope .gallery-item .overlay-shade, .gallery-item {
    z-index: 0;
  }
  
  @media only screen and (max-width: 767px) {
    .gallery-isotope .gallery-item {
      width: 100% !important;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .gallery-isotope .gallery-item {
      width: 50% !important;
    }
  }
  @media only screen and (min-width: 992px) {
    .gallery-isotope .gallery-item {
      width: 33.333% !important;
    }
  }
  @media only screen and (min-width: 1440px) {
    .gallery-isotope .gallery-item {
      width: 25% !important;
    }
  }
  .nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
  }
  
  .gallery-isotope.gutter-small .gallery-item {
    padding: 0.5%;
  }
  
  .gallery-isotope .gallery-item:hover .icons-holder .icons-holder-inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 60px;
    width: 60px;
  }
  
  .icon-theme-colored.icon-dark a {
    background-color: #c2b564 !important;
  }
  
  .fa {
    font-size: 35px;
  }
  
  .fa:hover {
    color: #141414;
  }
  
  @media (max-width: 820px) {
    .nivo-lightbox-theme-default .nivo-lightbox-nav {
      width: 10%;
    }
  }
  @media (max-width: 768px) {
    .nivo-lightbox-theme-default .nivo-lightbox-nav {
      width: 12%;
    }
  }
  @media (max-width: 576px) {
    .nivo-lightbox-theme-default .nivo-lightbox-nav {
      width: 15%;
    }
  }
  /************ FIN GALERIA *************/
  /************ GARANTIA *************/
  section .padre-contacto {
    background-color: var(--fondo-verde);
  }
  
  .padre-contacto .descripcion {
    outline: var(--marco3);
  }
  
  .padre-contacto .llamado-accion {
    outline: var(--marco4);
  }
  
  #garantia .descripcion {
    gap: 20px;
  }
  
  .padre-contacto .ventajas {
    display: flex;
    justify-content: center;
    gap: 15px;
    outline: var(--marco3);
  }
  
  @media (max-width: 950px) {
    .padre-contacto .ventajas {
      gap: 0;
      flex-wrap: wrap;
    }
  }
  .garantias {
    background-color: var(--fondo-naranja);
    outline: var(--marco5);
    flex-grow: 1;
    width: 50%;
  }
  
  @media (max-width: 576px) {
    .padre-contacto .ventajas {
      gap: 0;
      flex-direction: column;
    }
    .garantias {
      width: 100%;
    }
  }
  .ventajas .garantias img {
    width: 345px;
    margin: 0 auto;
    background-color: var(--fondo-png);
  }
  
  .thumb {
    display: flex;
  }
  
  .llamado-accion .botones-centro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 13px;
    height: 160px;
  }
  
  .llamado-accion .botones-centro .btn-lg {
    font-size: 17px;
  }
  
  .llamado-accion .botones-centro h3 {
    color: white;
    margin: 0;
  }
  
  /************ FIN GARANTIA *************/
  /************ FOOTER *************/
  
  
  /* .footer {
    position: relative;
  } */
  
  footer h3 {
    color: black;
  }
  
  footer .image {
    margin: 0 auto;
    width: 265px;
    object-fit: cover;
  }
  
  .contacto-redes .instagram {
    padding: 40px;
  }
  
  .contacto-redes img {
    width: 80px;
    margin: 0 auto;
  }
  
  .enlace-redes {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: relative;
    flex-wrap: wrap;
    gap: 4rem;
    outline: var(--marco);
    padding: 20px;
  }
  
  .red-social h3, .red-social span {
    color: rgb(0, 0, 0);
  }
  
  .creditos .diseno img {
    width: 200px;
  }
  
  .contenedor-creditos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    column-gap: 20px;
  }
  
  @media (max-width: 768px) {
    .contenedor-creditos {
      flex-direction: column;
      row-gap: 20px;
    }
  }
  .diseno {
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .diseno:nth-child(2) {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      background-color: var(--fondo-png);
    }
    #galeria .gallery-isotope .gallery-item {
      width: 100% !important;
      padding: 1.5% !important;
    }
  }
  @media (max-width: 550px) {
    .diseno:nth-child(1) {
      border-bottom: 3px solid #898989;
      width: 85%;
      padding-bottom: 13px;
    }
    .diseno a {
      display: block;
      width: 100%;
    }
  }
  .division {
    text-align: center;
    color: white;
    font-size: 24px;
    padding: 30px;
  }
  
  .division.uno {
    padding: 0 0 30px 0;
  }
  
  .division p {
    margin: 0;
    font-family: "Droid Serif";
    font-size: 30px;
    font-weight: bold;
  }
  
  .bg-black-333, .division{
      /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#4e0502+1,130b0c+100 */
      background: #4e0502; /* Old browsers */
      background: -moz-radial-gradient(center, ellipse cover,  #4e0502 1%, #130b0c 100%); /* FF3.6-15 */
      background: -webkit-radial-gradient(center, ellipse cover,  #4e0502 1%,#130b0c 100%); /* Chrome10-25,Safari5.1-6 */
      background: radial-gradient(ellipse at center,  #4e0502 1%,#130b0c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e0502', endColorstr='#130b0c',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
      
       }
  
  /************ FIN FOOTER ************/

    /***  BOTON UP ***/
  
    #button-up {
      width: 3rem;
      height: 3rem;
      background-image: radial-gradient(ellipse at center, #4e0502 1%,#130b0c 100%);
      color: whitesmoke;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      font-size: 2.2rem;
      cursor: pointer;
      position: fixed;
      bottom: 11rem;
      right: 2rem;
      z-index: 200;
      border: 0.4rem solid transparent;
      transition: all 300ms ease;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transform: scale(0);
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale
  }
  
  #button-up:hover {
      transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      border-color: rgba(0, 1, 2, 0.5);
  }
  
    /***  FIN BOTON UP ***/