*{

  margin: 0px;  /* sin margenes en el documento. Ningún elemento tendrá márgenes.*/
  padding: 0px;

  box-sizing: border-box; /* border, margin o padding, hacia dentro del contenedor */
  -webkit-box-sizing:border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

/* FAMILIA PARA todo EL TEXTO */
h1, h2, h3, h4, h5, h6, p, a {

  font-family: 'Oswald', sans-serif;
  font-family: 'Open Sans', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Roboto Condensed', sans-serif;

}

/*h1 {font-family: 'Quicksand', sans-serif;} */



/* CONTENEDORES PADRE PRINCIPAL */

html, body {
  width: 100%; /* cambié el height por width !!!!  */
  margin: auto;
  background-color: #020202;
}

/* CONTENEDOR PADRE */

.great_container {
  /*background-color: #F7C873; */
  height: 0;
}


/* ---------------HEAD_ER  > 768PX ----------------------- */

/* TRES CONTENEDORES HIJO. 1ero HEAD_ER */

.head_er {
  /*background-color: black; */

  width: 100%;
  max-width: 1440px;
  margin: auto;
  font-size: 1em;
  /* para que el menú se quede pegado al hacer scroll en la página */
  position: fixed;
  /* ubicado el inicio desde esquina sup izquierda */
  /*top:0;
  left:0; */
  /* siempre por delante */
  z-index: 3;

  }




.head_er .menu {
   /*width: 100%;
   max-width: 1440px;*/
 }

/* Esconder barras(label fa) y caja checkbox (input) y barra de idiomas */

.head_er #menu-respons, .head_er .fa-bars, .foot-menubarras {
  display: none;
}


/* LOGOTIPO Y SIMBOLO  > 768PX  */

  .webtop_area {
    /*background-color: #E23E57;*/

    padding: 10px;
    display:flex;
    justify-content: space-between;

  }


  /* SELECTOR DE IDIOMA */
  .language{
    /*background-color: #27aae1;*/
    margin-left: 80px;
    padding: 12px;
  }

    .langs{
      /*background-color: #555;*/
      display: flex;
      flex-direction: row;
      /*justify-content: flex-start; /* alinear a la izquierda */
      top: 0px;
      list-style: none;
    }

      .langs li {
      padding: 0px 5px;
      }

        .langs li .idioma{
          text-decoration: none;
          font-size: 16px;
          color: #fff;
          font-family: 'Roboto', sans-serif;
          font-weight: 500;
        }




    .logo {
      /*background-color: #0B5269; */
      display: flex;
      flex-direction: row;
      /* justify-content: flex-end; alinear a la derecha */
      /*align-items:flex-start; /* alinear h5 e imagen verticalmente arriba */
      margin-right: 20px;
      padding: 0px;


    }

      .logo img {
        /*background-color: #65799B; */
        width: 50px;
        padding: 0px ;  /* determina el tamaño de la imagen, establecer en cero quizás */
        margin-right: 10px;
      }

      .logo a, .logo h5 {  /* mantener en primer plano y fijar */
        z-index: 1;
      }

      .logo h5{
          /*background-color: #65799B; */
          font-size: 22px;
          font-weight: 100;
          text-decoration: none;
          color: #fff;
          line-height: 50px;
      }




/* --------MENU VERTICAL > 768px --------   */

      .menu {
        /*background-color: #E23E57; */
        /* menú NAV */
      }

        .options {
          /*background-color: cadetblue;  */

          /* ----MENÚ OPTIONS ( UL )------ */
          top: 150px;
          position: fixed;  /* fijar el menú */
          margin-left: 80px;
          z-index: 9; /* para mantenerlo siempre adelante */
          display: flex;
          flex-direction: column; /* aquí era column-reverse antes del feedback de RC*/
          list-style: none;
        }

       /* SEPARACIÓN DE LOS ELEMENTOS DEL MENU */

        .options li {

          padding: 8px; /* espaciado entre opciones del menú */
          white-space: nowrap;
        }

        .options li a {

          text-decoration: none;
          color: rgba(255,255,255,1);
          writing-mode: vertical-rl;  /* posición del menú del lado izquierdo de la ventana */
          transform: rotate(180deg); /* rotación a 180 grados */
          font-family: 'Roboto', sans-serif;
          font-size: 14px;
          font-weight:300;
        }



    /* HEADER Y MENÚ PARA < 768PX */

    @media(max-width:768px) {  /* mirar en pos horizontal !!! moviles */

      /* TRES CONTENEDORES HIJO. 1ero HEAD_ER PARA UNA PANTALLA < 800PX */

      .head_er {
         /*background-color: black; */
         /* maquetación del header */
         width: 100%;

         font-size: 1em;

         /* para que el menú se quede pegado al hacer scroll en la página */
         position: fixed;
         /* ubicado el inicio desde esquina sup izquierda */
         top:0;
         left:0;
         /* siempre por delante */
         z-index: 3;

      }

      /* SIMBOLO Y LOGOTIPO < 800PX */

        .webtop_area {
        /*background-color: #E23E57; */
        padding: 16px 0;}

        /* SELECTOR DE IDIOMA */
        .language{
          /*background-color: #27aae1;*/

          margin-top: 70px;
          margin-left: 30px;
          padding: 0px;

          writing-mode: vertical-rl;  /* posición del menú del lado izquierdo de la ventana */
          transform: rotate(180deg); /* rotación a 180 grados */

        }

          .langs{
            /*background-color: #555;*/
            display: flex;
            flex-direction: row;
            justify-content: flex-start; /* alinear a la izquierda */
            list-style: none;
          }

            .langs li {
            padding: 5px 0px;
            }

              .langs li .idioma{

                text-decoration: none;
                font-size: 16px;
                color: #fff;
                font-family: 'Roboto', sans-serif;
                font-weight: 100;
              }

        /* LOGO "T" Y TEXTO */

        .logo img {
        /*background-color: #65799B; */
        width: 50px;
        padding: 0px ;  /* determina el tamaño de la imagen, establecer en cero quizás */
        margin-right: 0px;
        color: #000;}

        /* No mostrar el logotipo */
        .logo h5 {
          display: none;}

          /* MOSTRAR EL SIMBOLO DE BARRAS  */

        .head_er .fa-bars {
          display: block;
          padding: 35px;  /* Tiene que ser uno solo para que al girar el simbolo lo haga en su eje */
          position: absolute;
          top: -10px;
          font-size: 32px;
          z-index: 10;
          color: rgba(255,255,255,1);}


        /* MOVIMIENTO DEL SIMBOLO DE MENÚ ( 3 BARRAS) */


        .head_er label {

          position: absolute;
          font-weight: 100;
          /*margin: 10px 0px 0px 0px ; /* 6 arriba, cero a los lados */
          cursor: pointer;
          /* para que tenga animación el icono menu rayitas */
          -webkit-transition: all 500ms ease;
          -ms-transition: all 500ms ease;
          -o-transition: all 500ms ease;
          -moz-transition: all 500ms ease;
          transition:all 500ms ease;
       }

        /* Se esconde a la izquierda el menú y un fondo blanco */

        .head_er nav {
        position: absolute;
        background-color: #211e24;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* para que el fondo blanco ocupe todo el alta de la ventana de este dispo < 800px */

         /* para hacer que el menú desaparezca(hacia la derecha) y el tiempo en el que lo hace */
        -ms-transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        -webkit-transition: all .5s;
        transition: all .5s;

        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        transform: translateX(-100%);
        }


        /* Al hacer click sobre las barras, gira y cambia de color */
       #menu-respons:checked ~ label {
           color: rgba(199, 10, 10,1);
           transform: rotate(225deg);
           -moz-transform: rotate(225deg);
           -ms-transform: rotate(225deg);
           -o-transform: rotate(225deg);
           -webkit-transform: rotate(225deg);

           -ms-transition: all .5s;
           -o-transition: all .5s;
           -moz-transition: all .5s;
           -webkit-transition: all .5s;
           transition: all .5s;
       }


         /* Al presionar las barras, se desplaza fondo y menú hacía la derecha  */
        #menu-respons:checked ~ nav {
          -webkit-transform: translateX(0);
          -moz-transform: translateX(0);
          -ms-transform: translateX(0);
          -o-transform: translateX(0);
          transform: translateX(0);
        }

      /* --------MENU HORIZONTAL < 800px --------   */

        .menu {
          /*background-color: #E23E57; */


        /* menú NAV */
        }

        .options {
          /*background-color: cadetblue; */

          /* ----MENÚ OPTIONS ( UL )------ */

          position: fixed;  /* fijar el menú */
          top: 90px; /* era 50px, pero no cambia nada... */
          margin-left: 30px;
          z-index: 1; /* para mantenerlo siempre adelante */
          display: flex;
          text-align: left; /* alinear elementos del menú en el centro */
          flex-direction: column;
          list-style: none;
          width: 100%;
          /*height: calc(100%-300px);  pendiente. Esto estaba activado pero lo quité... no cambia nada ---- */
          overflow: scroll;
        }

        /* SEPARACIÓN DE LOS ELEMENTOS DEL MENU */

        .options li {
          padding: 5px; /* espaciado entre opciones del menú */
        }

        .options li a {

          text-decoration: none;
          color: rgba(255, 255, 255, 1);
          writing-mode: horizontal-tb;  /* posición del menú del lado izquierdo de la ventana */
          transform: rotate(270deg); /* rotación a 180 grados */
          font-size: 30px;
          font-weight:100;
        }

        .foot-menubarras {

          display: block;

          position: fixed;
          bottom: 0;
          width: 100%;
          max-width: 1440px;
          margin: auto;

        }

        .foot-menubarras .address h4 {
          background-color: #b7000d;
          text-align: center;
          font-size: 16px;
          line-height: 24px;
          padding: 5px 0px 5px 0px;
          color: rgb(255, 255, 255);
          font-weight: 100;

          }

          .foot-menubarras .address h5 {
            background-color: rgba(255, 255, 255, 1);
            text-align: center;
            font-size: 14px;
            line-height: 18px;
            padding: 5px 0px 5px 0px;
            color: #000;
            font-weight: 100;

          }




    /*.foot_mob {

      display: block;

      position: fixed;
      bottom: 0;
      width: 100%;
      max-width: 1440px;
      margin: auto;

    }


    .firma_mob {
      background-color: rgba(255, 255, 255, 1);
      text-align: center;
      padding-top: 5px;
      padding-bottom: 5px;
      border-bottom: 1px solid rgba(173, 172, 167, .2);


     }

      .firma_mob img {
        width: 30px;
        vertical-align:bottom;
        padding: 5px;
      }

      .firma_mob a {
        text-decoration: none;
        line-height: 28px;
        color: #ADACA7;
        font-size: 12px;
        font-weight: 100;
         }


      .freeclass {
        padding: 10px 0px 0px 0px;
        /*background-color: #fff;

      } */
      /* Antes la clase se llamaba "freeclass" , ahora es open, para crear una clase fuera del tamaño movil
      .freeclass h4{
        background-color: #b7000d;
        text-align: center;
        font-size: 18px;
        line-height: 24px;
        padding: 0px 0px 0px 0px;
        color: rgb(255, 255, 255);
        font-weight: 100;


      }

      .freeclass h5 {
        background-color: rgba(255, 255, 255, 1);
        text-align: center;
        font-size: 16px;
        line-height: 18px;
        padding: 5px 0px 5px 0px;
        color: #000;
        font-weight: 100;


      }

      .freeclass a {
        display: flex;
        justify-content: center;
        background-color:  rgba(255, 255, 255, 1);
        padding-top: 5px;
        padding-bottom: 10px;
        text-decoration: none;
        font-size: 28px;
        color: #b7000d;

      }

      /*.social_mob {


      padding-top: 10px;
      padding-bottom: 10px;

      display: flex;
      justify-content: center;


      list-style: none;
      text-decoration: none;
      border-top: 1px solid rgba(173, 172, 167, .2);
      border-bottom: 1px solid rgba(173, 172, 167, .2);}


      .social_mob a {
        font-size: 24px;
        text-decoration: none;
        padding: 15px;
        color: rgb(255, 255, 255);}


      .contact_mob {

        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        border-top: 1px solid rgba(173, 172, 167, .2);
        border-bottom: 1px solid rgba(173, 172, 167, .2);
      }

      .contact_mob a {
        text-decoration: none;
        line-height: 28px;
        color: #ADACA7;
        font-size: 16px;
        font-weight: 100;
      }

      .contact_mob a:hover{
        cursor: pointer;
        color:#1c75bc;}

      .footext_mob {

      text-align: center;
      font-size: 10px;
      padding: 10px 0px 10px 0px; /* arriba, der, abajo, izq
      color: #ADACA7;
      font-weight: 100;

    } */

    }



/* TRES CONTENEDORES HIJO. 2ndo PRINCIPAL */

.principal {
  /*background-color: black;*/

  margin: auto;
  /* contenedor de los divs con cada imagen */
}

/* ---------------------------------------- */

  /* HIJOS DE PRINCIPAL */

  .prin_sect {

    /* todos los contenedores con sus imágenes */

    /*opacity: .90; no es compatible con la ventana modal del modulo DJing */

    background-position: center;
    /*position: relative;  /* No sé muy bien para que me puede servir aquí */
    background-size: cover; /* define el tamaño de la imagen */
    background-repeat: no-repeat;
    background-attachment: fixed; /* esta es la línea que hace el efecto de "scrolling". Y lo que sucede es que el "prin_sect" no se mueve y el "sub_sect" se mueve! */

    /*background-color: aquamarine; */
    height: 100vh; /* y el height con "vh" no con "%" */
  }

  /* DIVS SECUNDARIOS. ES UTILIZADO UNO DE ELLOS EN DJING PARA LOS PANELES */

  /*.sub_sect {
    background-color: rgba(0,0,0,.2);
    height: 100vh;

  }
*/


/* --------------COMIENZAN ESTILOS PARA TEXTO DE .ONE------------ */
  .ONE {
    /*background-color: deeppink;  */
    background-image:url(../images/home-principal.jpg);
    position: relative;
  }

/* --------------------------------------------- */
    .ONE  .textsection {
        position: absolute;
        text-align: center;
        /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
        top:50%;
        left:50%;
        transform: translateX(-50%) translateY(-50%);
        color: #fff;

    }

      .ONE  .textsection h1 {
          width: 90%;
          margin: auto;
          font-weight: 300;
          line-height: 120px;
          font-size: 140px;
          padding-bottom: 30px;
          border-bottom: 1px solid rgba(173, 172, 167, .4);
      }

      .ONE .textsection h3 {
          font-weight: 200;
          font-size: 40px;
          padding-bottom: 50px;
      }


      .ONE .textsection .openclass {
        width: 40%;
        margin: auto;
      }


      .openclass h4 {
        background-color: #b7000d;
        text-align: center;
        font-size: 18px;
        line-height: 32px;
        padding: 0px 0px 0px 0px;
        color: rgb(255, 255, 255);
        font-weight: 100;
      }

      .openclass h5 {
        background-color: rgba(255, 255, 255, 1);
        text-align: center;
        font-size: 16px;
        line-height: 18px;
        border-bottom: 1px solid rgba(173, 172, 167, .2);
        padding: 5px 0px 5px 0px;
        color: rgba(0, 0, 0, 1);
        font-weight: 400;

      }


      .openclass h6 {

        background-color: rgba(255, 255, 255, 1);
        text-align: center;
        font-size: 14px;
        line-height: 20px;
        border-bottom: 1px solid rgba(173, 172, 167, .2);
        padding: 8px 0px 8px 0px;
        color: rgba(0, 0, 0, 1);
        font-weight: 100;
      }


      .openclass a {
        display: flex;
        justify-content: center;
        background-color:  rgba(255, 255, 255, 1);
        padding-top: 5px;
        padding-bottom: 10px;
        text-decoration: none;
        font-size: 34px;
        color: #b7000d;

      }



      /* ADAPTACIÓN < 1024PX */

      @media(max-width:1024PX){

      .ONE {
        background-attachment:scroll;
      }
      }



    /* ADAPTACIÓN < 768PX */

    @media(max-width:768PX){

      .ONE {
        background-position: 49% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
        background-attachment:scroll;
      }

      .ONE  .textsection h1 {
        font-weight: 300;
        font-size: 68px;
        line-height:58px;
        padding-bottom: 10px;
        width:60%;
        margin: auto;}

      .ONE .textsection h3 {
        font-weight: 200;
        font-size: 28px;
        padding-bottom: 20px;}

      .ONE .textsection .openclass {
          width: 100%;
          margin: auto;
      }



      .openclass h6 {

        background-color: rgba(255, 255, 255, 1);
        text-align: center;
        font-size: 12px;
        line-height: 18px;
        border-top: 1px solid rgba(173, 172, 167, .2);
        padding: 8px 0px 8px 0px;
        color: rgba(0, 0, 0, 1);
        font-weight: 100;
      }

    }




    /* ADAPTACIÓN < 460PX */

    @media (max-width: 460px) {

      .ONE {
        background-position: 36% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
        /*background-attachment:scroll;*/
        position: relative;
        background-attachment: scroll;

      }

      .ONE .textsection {
            position: absolute;
            text-align: center;
            /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
            top:50%;
            left:50%;
            transform: translateX(-50%) translateY(-50%);
            color: #fff;}

          .ONE .textsection h1 {
              font-weight: 300;
              width: 90%;
              font-size: 44px;
              line-height: 46px;
              padding-bottom: 10px;
              border-bottom: 1px solid rgba(173, 172, 167, .4);}

          .ONE .textsection h3 {
              font-weight: 200;
              font-size: 24px;
              padding-bottom: 20px;}


          .ONE .textsection .openclass {
                width: 100%;
                margin: auto;
          }


          .openclass h4 {
            background-color: #b7000d;
            text-align: center;
            font-size: 18px;
            line-height: 18px;
            padding: 8px 8px 8px 8px;
            color: rgb(255, 255, 255);
            font-weight: 100;

          }


          .openclass h5 {
            background-color: rgba(255, 255, 255, 1);
            text-align: center;
            font-size: 16px;
            line-height: 18px;
            border-bottom: 1px solid rgba(173, 172, 167, .2);
            padding: 8px 8px 8px 8px;
            color: rgba(0, 0, 0, 1);
            font-weight: 400;

          }

          .openclass h6 {

            background-color: rgba(255, 255, 255, 1);
            text-align: center;
            font-size: 12px;
            line-height: 16px;
            border-top: 1px solid rgba(173, 172, 167, .2);
            padding: 8px 0px 8px 0px;
            color: rgba(0, 0, 0, 1);
            font-weight: 100;
          }


    }




/* --------------TERMINAN ESTILOS PARA TEXTO DE .ONE------------ */



 /* --------------COMIENZAN ESTILOS PARA TEXTO DE .TWO------------ */
  .TWO {
    /*background-color: blue; */
    background-image:url(../images/kasiapablo-aboutus.jpg);
    background-position: 45% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
    background-attachment:scroll;
    position: relative;

  }

/* --------------------------------------------- */
    .TWO .textsection {

      background-color: rgba(0,0,0,0.3);
      padding: 40px 20px;
      position: absolute;
      text-align: center;
      /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
      top:55%;
      left:50%;
      transform: translateX(-50%) translateY(-50%);
    }

      .TWO  .textsection h2 {
          font-weight: 400;
          font-size: 24px;
          padding-bottom: 5px;
          color: rgb(255, 255, 255);
      }

      .TWO .textsection h3 {
          font-weight: 300;
          font-size: 20px;
          padding-bottom: 20px;
          color: rgb(255, 255, 255);
      }

      .TWO .textsection p {

          font-weight: 100;
          font-size: 18px;
          color: rgb(255, 255, 255);
          padding-bottom: 20px;
          padding: 10px 80px;
          text-align:center;
      }

      .TWO .textsection a {
        text-align: center;
        display: inline-block;
        width: 200px;
        color:#000;
        text-decoration: none;
        padding:6px;
        margin-top: 20px;
        font-size: 20px;
        border: 1px solid #000;
        border-radius: 10px;
        transition: all .5s;
    }

    .TWO .textsection a:hover{
        cursor:pointer;
        color: #c10000;
        border: 1px solid #c10000;
        transition: all .5s ease-in;
    }



      /* ADAPTACIÓN < 768PX */

      @media(max-width:768PX){

        .TWO {
        /* pos en x( desplaza horizontal) y pos en y ( vertical) */
         background-position: 49% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
        }

          .TWO .textsection {
            position: absolute;
            text-align: center;
            padding: 50px 0px;
            /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
            top:50%;
            left:50%;
            transform: translateX(-50%) translateY(-50%);
          }

          .TWO .textsection {
            width: 70%;}

          .TWO  .textsection h2 {
            font-size: 18px;
            font-family: "roboto condensed";
            padding-bottom: 5px;}

          .TWO .textsection h3 {
              /*display: none;*/
              font-weight: 100;
              font-size: 16px;
              padding-bottom: 10px;}

          .TWO .textsection p {
            font-weight: 100;
            font-size: 12px;
            line-height: 18px;

            padding: 10px 60px;
            text-align: center;}
      }

          @media(max-width:460px){
            .TWO {
              background-attachment: scroll;
            }
            
            .TWO .textsection {
            position: absolute;
            text-align: center;

            font-size: 10px;
            padding-top: 100px;
            width:100%;

            /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
            top:65%;
            left:50%;
            transform: translateX(-50%) translateY(-50%);
          }
          .TWO {
            background-position: 16% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
          }

          .TWO  .textsection h2 {
            font-size: 22px;
            font-family: "roboto condensed";
            padding-bottom: 5px;}

          .TWO .textsection h3 {
              /*display: none;*/
              font-weight: 100;
              font-size: 18px;
              padding-bottom: 10px;}

          .TWO .textsection p {
            font-weight: 100;
            font-size: 16px;
            line-height: 18px;

            padding: 10px 60px;
            text-align: center;}
          
        }




/* --------------TERMINAN ESTILOS PARA TEXTO DE .TWO------------ */


/* --------------COMIENZAN ESTILOS PARA TEXTO DE .THREE------------ */

  .THREE {
    /*background-color: deeppink; */
    background-image:url(../images/group-bnw.jpg);
    position: relative;
  }

  /* --------------------------------------------- */

    .THREE .textsection {
        position: absolute;
        text-align: center;
        /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
        top:50%;
        left:50%;
        transform: translateX(-50%) translateY(-50%);
    }


      .THREE .textsection h2 {
          font-weight: 400;
          font-size: 44px;
          color: #fff;
          text-align: center;
          padding-bottom: 40px;
      }

      .THREE .textsection h3 {
          font-weight: 300;
          font-size: 36px;
          text-align: center;
          color: #fff;
          padding-top: 40px;
          padding-bottom: 10px;
          border-bottom: 1px solid rgba(255,255,255, .4);
      }

      .THREE .textsection h3.especialh3 {
          font-weight: 300;
          font-size: 36px;
          text-align: center;
          color: #fff;
          padding-top: 40px;
          padding-bottom: 10px;
          border-bottom: none;
      }

      .THREE .textsection p {
          font-weight: 100;
          font-size: 22px;
          color: #fff;
          padding-top: 20px;
          padding-bottom: 0px;
          text-align: center;
      }

      .THREE .textsection p:nth-child(4){ /* es el orden de aparición del elemento dentro del div */
          padding-top: 0px;
      }

      /* ADAPTACIÓN < 1024PX */

      @media(max-width:1024PX){

      .THREE {
        background-attachment:scroll;
      }
      }

      @media(max-width:768px) {

      .THREE {
        background-attachment:scroll;
      }
      }

      @media(max-width:460px) {

      .THREE {
        display: none;
        background-position: 56% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
        background-attachment:scroll;
      }
      }
  /* --------------TERMINAN ESTILOS PARA TEXTO DE .THREE------------ */


  /* --------------COMIENZAN ESTILOS PARA TEXTO DE .FOUR------------ */
  .FOUR {
    /*background-color: blue; */
    background-image:url(../images/group-color.jpg);
    position: relative;

  }
  /* --------------------------------------------- */

    .FOUR .textsection {
        position: absolute;
        text-align: center;
        /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
        top:50%;
        left:50%;
        transform: translateX(-50%) translateY(-50%);
    }


    /* Este es el texto */


    .FOUR .textsection h2 {
      font-weight: 400;
      font-size: 44px;
      color: #fff;
      text-align: center;
      padding-bottom: 40px;
  }

  .FOUR .textsection h3 {
      font-weight: 300;
      font-size: 36px;
      text-align: center;
      color: #fff;
      padding-top: 40px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255, .4);
  }

  .FOUR .textsection p {
      font-weight: 100;
      font-size: 24px;
      color: #fff;
      padding-top: 20px;
      padding-bottom: 40px;
      text-align: center;
  }




    /* Este es el botón de CONTACTO */

      .FOUR .textsection a {

        z-index: 1;
        text-align: center;
        display: inline-block;
        width: 200px;
        color:#fff;
        text-decoration: none;
        padding:6px;
        margin-top: 20px;
        font-size: 20px;
        border: 1px solid #fff;
        border-radius: 10px;
        transition: all .5s;
    }

    .FOUR .textsection a:hover{
        cursor:pointer;
        color: #D3220B;
        border: 1px solid #D3220B;
        transition: all .5s ease-in;
    }


      /* ADAPTACIÓN < 1024PX */

      @media(max-width:1024PX){

      .FOUR {
        background-attachment:scroll;
      }
      }

      /* ADAPTACIÓN < 768PX */

      @media(max-width:768px) {

      .FOUR {
        background-attachment: scroll;
      }
      }


      /* ADAPTACIÓN < 768PX */

      @media(max-width:460px) {

      .FOUR {
        background-attachment: scroll;
        background-position: 66% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
      }

      .FOUR .textsection p {
        font-weight: 100;
        font-size: 22px;
        color: #fff;
        padding-top: 20px;
        padding-bottom: 40px;
        text-align: center;
    }

      }


  /* --------------TERMINAN ESTILOS PARA TEXTO DE .FOUR------------ */



  /* --------------COMIENZAN ESTILOS PARA TEXTO DE .FIVE------------ */
  .FIVE {
    /*background-color: deeppink; */
    background-image:url(../images/private-bnw.jpg);
    position: relative;

  }

  /* --------------------------------------------- */

    .FIVE .textsection {
        position: absolute;
        text-align: center;
        /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
        top:50%;
        left:50%;
        transform: translateX(-50%) translateY(-50%);

    }

      .FIVE  .textsection h2 {
          font-weight: 400;
          font-size: 44px;
          color: #fff;
          text-align: center;
          padding-bottom: 40px;
      }

      .FIVE .textsection h3 {
          font-weight: 300;
          font-size: 36px;
          text-align: center;
          color: #fff;
          padding-top: 40px;
          padding-bottom: 10px;
          border-bottom: 1px solid rgba(255,255,255, .4);
      }

      .FIVE .textsection h3.especialh3 {
        font-weight: 300;
          font-size: 36px;
          text-align: center;
          color: #fff;
          padding-top: 40px;
          padding-bottom: 10px;
          border-bottom: none;
      }

      .FIVE .textsection p {
          font-weight: 100;
          font-size: 22px;
          color: #fff;
          padding-top: 20px;
          padding-bottom: 0px;
          text-align: center;

      }

      .FIVE .textsection p:nth-child(4){ /* es el orden de aparición del elemento dentro del div */
          padding-top: 0px;
      }


      /* Este es el botón de CONTACTO */

      .FIVE .textsection a {

        text-align: center;
        display: inline-block;
        width: 200px;
        color:#fff;
        text-decoration: none;
        padding:6px;
        margin-top: 20px;
        font-size: 20px;
        border: 1px solid #fff;
        border-radius: 10px;
        transition: all .5s;
    }

    .FIVE .textsection a:hover{
        cursor:pointer;
        color: #D3220B;
        border: 1px solid #D3220B;
        transition: all .5s ease-in;
    }





      /* ADAPTACIÓN < 1024PX */

      @media(max-width:1024PX){

      .FIVE {
        background-attachment:scroll;
      }
      }

      /* ADAPTACIÓN < 768PX */

      @media(max-width:768px) {

      .FIVE {
        background-attachment: scroll;
      }
      }

      /* ADAPTACIÓN < 768PX */

      @media(max-width:460px) {

      .FIVE {
        display: none;
        background-position: 10% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
        background-attachment: scroll;
      }
      }


  /* --------------TERMINAN ESTILOS PARA TEXTO DE .FIVE------------ */



  /* --------------COMIENZAN ESTILOS PARA TEXTO DE .SIX------------ */
  .SIX {
    /*background-color: blue; */
    background-image:url(../images/private-color.jpg);
    position: relative;

  }
/* --------------TERMINAN ESTILOS PARA TEXTO DE .SIX------------ */

    .SIX .textsection {
        position: absolute;
        text-align: center;
        /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
        top:50%;
        left:50%;
        transform: translateX(-50%) translateY(-50%);
    }


    /* Este es el TEXTO */


    .SIX .textsection h2 {
      font-weight: 400;
      font-size: 44px;
      color: #fff;
      text-align: center;
      padding-bottom: 40px;
  }

  .SIX .textsection h3 {
      font-weight: 300;
      font-size: 36px;
      text-align: center;
      color: #fff;
      padding-top: 40px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255, .4);
  }

  .SIX .textsection p {
      font-weight: 100;
      font-size: 24px;
      color: #fff;
      padding-top: 20px;
      padding-bottom: 40px;
      text-align: center;
  }




    /* Este es el botón de CONTACTO */

      .SIX .textsection a {
        text-align: center;
        display: inline-block;
        width: 200px;
        color:#fff;
        text-decoration: none;
        padding:6px;
        margin-top: 20px;
        font-size: 20px;
        border: 1px solid #fff;
        border-radius: 10px;
        transition: all .5s;
    }

    .SIX .textsection a:hover{
        cursor:pointer;
        color: #D3220B;
        border: 1px solid #D3220B;
        transition: all .5s ease-in;
    }

    /* ADAPTACIÓN < 1024PX */
      @media(max-width:1024PX){

      .SIX {
        background-attachment:scroll;
      }
      }


      /* ADAPTACIÓN < 768PX */

      @media(max-width:768px) {

      .SIX {
        background-attachment: scroll;
      }
      }

      /* ADAPTACIÓN < 768PX */

      @media(max-width:460px) {

      .SIX {
        background-position: 5% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
        background-attachment: scroll;
      }

      .SIX .textsection p {
        font-weight: 100;
        font-size: 22px;
        color: #fff;
        padding-top: 20px;
        padding-bottom: 40px;
        text-align: center;
      }

    }


/* --------------COMIENZAN ESTILOS PARA TEXTO DE .SEVEN------------ */
  .SEVEN {
    /*background-color: deeppink; */
    background-image:url(../images/djing1-bnw.jpg);
    background-attachment:scroll;
    position: relative;

  }

  /* --------------------------------------------- */
    /* ESTILOS PARA .SEVEN QUE SON LAS DOS CAJAS-DJ  */
    /* Estilos para elementos comunes. Imagen, titulos y boton */

    .SEVEN .textsection{
        position: absolute;
        top: 80%;
        left: 50%;
        /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
        transform: translateX(-50%) translateY(-50%);
        color:#fff;
        text-align: center;
    }

    .SEVEN .textsection h4{
        font-size: 24px;
        font-weight: 200;
        padding-bottom: 20px;
        text-align: center;
    }

    .SEVEN #btn-dj{
        text-align: center;
        display: inline-block;
        width: 200px;
        color:#fff;
        text-decoration: none;
        padding:6px;
        margin-top: 0%;
        font-size: 20px;
        border: 1px solid #fff;
        border-radius: 10px;
        transition: all .5s;
    }

    .SEVEN #btn-dj:hover{
        cursor:pointer;
        color: #c10000;
        border: 1px solid #c10000;
        transition: all .5s ease-in;
    }

    /* ESTILOS PARA EL LINK DE LA IMAGEN MODAL NEXT-EVENTS */

    .SEVEN .box-next #link2image p{
        text-decoration: none;
        color: #000;
        transition: 0.3s;
    }

    .SEVEN .box-next #link2image p:hover {
        cursor:pointer;
        color: #c10000;
        transition: all .5s ease-in;
    }

    /* BACKGROUND DE LA VENTANA MODAL */
    .SEVEN .box-next .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 100; /* Sit on top */
        padding-top: 100px; /* Location of the box */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow:hidden; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,1); /* Black w/ opacity */
    }

    /* IMAGEN DE LA VENTANA MODAL */
    .SEVEN .box-next .modal-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 1000px;
        height: auto;


    }

    /* CAPTION DE LA IMAGEN */
    .SEVEN .box-next .modal #caption p { /* listo, había que escribir el parrafo en el div id="caption" */
        margin: auto;
        display: block;
        width: 100%;
        max-width: 1440px;
        text-align: center;
        color: #fff;
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: 200;
        font-size: 20px;
        padding: 10px 0;
        margin-bottom: 20px;
        height: 30px;
        z-index: 1;
    }



    /* ANIMACION */
    .SEVEN .box-next .modal-content, #caption p {
        -webkit-animation-name: zoom;
        -webkit-animation-duration: 0.6s;
        animation-name: zoom;
        animation-duration: 0.6s;

    }

    @-webkit-keyframes zoom {
        from {-webkit-transform:scale(0)}
        to {-webkit-transform:scale(1)}
    }

    @keyframes zoom {
        from {transform:scale(0)}
        to {transform:scale(1)}
    }

    /* BOTON CERRAR */
    .SEVEN .box-next .close {
        position: absolute;
        top: 85px;
        right: 85px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: lighter;
        transition: 0.3s;
    }

    .SEVEN .box-next .close:hover,
    .SEVEN .box-next .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }


    /* Titulos y cajas */

    /* TEXTO DE LAS CAJAS */
    .SEVEN .box-next p, .SEVEN .box-past p{
      color: #555;
      font-weight: 300;
      /*font-size: 16px; */
    }

    /* CAJA EVENTOS  */


    .SEVEN .box-next{
        position: absolute;
        top: 20%;
        width: 40%;
        left: 30%;
    }

    .SEVEN .box-past{
        position: absolute;
        top: 44%;
        width: 40%;
        left: 30%;
    }

    .SEVEN .box-title-n{
        background: none;
        position: absolute;
        top:12%;
        left:44%;
        }

    .SEVEN .box-title-p{
        background: none;
        position: absolute;
        top:36%;
        left:44%;
        }

    .box-title-n, .box-title-p{
        text-align: center;
        background-color: rgba(255,255,255,1);
        font-variant-caps: all-small-caps;
    }

    .box-title-n h2, .box-title-p h2{
        font-size: 26px;
        font-weight: 400;
        color: #fff;
        border-bottom: 1px solid #fff;
    }


    .box-next{ /* pendiente mirar en posición horizontal de dispo movil */
      overflow:scroll;
      overflow-y:visible;
      overflow-x:hidden;
      width:100%;
      height:100px;
      background: rgba(255,255,255, .8);
      padding:15px;
      border: solid 1px rgba(128,143,136,1);
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
    }


    .box-past{
      overflow:scroll;
      overflow-y:visible;
      overflow-x:hidden;
      width: 100%;
      height: 150px;
      background: rgba(255,255,255, .8);
      padding:10px;
      border: solid 1px rgba(128,143,136,1);
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
    }

    .box-past, .box-next{
      text-align: center;
    }
    /* TERMINAN LOS ESTILOS PARA LAS DOS CAJAS-DJ PARA ESCRITORIO */


  /* Los acordeones "previous events" y "upcoming events" no se muestran */
    .elacordeon button.accordion {
            display: none;
        }

  /* CUANDO LA PANTALLA ES > 960PX. NO SE VEN LAS CAJAS DE LOS PANELES */

  .elacordeon .box-title-n, .elacordeon .box-title-p, .elacordeon .box-next, .elacordeon .box-past {
    display: none;
  }


/* Estilos para el texto y boton a partir de 768px */

@media (max-width: 960px){

    .SEVEN .textsection{
      position: absolute;
      top:50%;
      left:50%;
      /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
      transform: translateX(-50%) translateY(-50%);
      color:#fff;
      text-align: center;
}

     .SEVEN .textsection h4{
      font-size: 38px;
      padding-bottom: 20px;
      text-align: center;
      width: 45%;
      margin-left: 30%;
    }

  /* CUANDO LA PANTALLA ES < 960PX. NO SE VEN LAS CAJAS DE ESCRITORIO */
  .SEVEN .box-title-n, .SEVEN .box-title-p, .SEVEN .box-next, .SEVEN .box-past {
    display: none;
  }


  /* CUANDO LA PANTALLA ES < 960PX. SE VEN LAS CAJAS DE LOS PANELES */
  .elacordeon .box-next, .elacordeon .box-past {
    display: block;
  }

    /* CAJAS Y VENTANA MODAL PARA < 960PX */

  /* TEXTO DE LAS CAJAS */
    .elacordeon .box-next p, .elacordeon .box-past p{
      color: #777;
      font-weight: 300;
      /*font-size: 16px; */
    }

    /* ESTILOS PARA EL LINK DE LA IMAGEN MODAL NEXT-EVENTS */

    .elacordeon .box-next #link2image-ac p{
        text-decoration: none;
        color: #000;
        transition: 0.3s;
    }

    .elacordeon .box-next #link2image-ac p:hover {
        cursor:pointer;
        color: #c10000;
        transition: all .5s ease-in;
    }

    /* BACKGROUND DE LA VENTANA MODAL */
    .elacordeon .box-next .modal-ac {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        padding-top: 100px; /* Location of the box */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow:hidden; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,1); /* Black w/ opacity */
    }

    /* IMAGEN DE LA VENTANA MODAL */
    .elacordeon .box-next .modal-content-ac {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 1000px;
        height: auto;
    }

    /* CAPTION DE LA IMAGEN */
    .elacordeon .box-next #caption-ac p{
        margin: auto;
        display: block;
        width: 80%;
        max-width: 1000px;
        text-align: center;
        color: #fff;
        padding: 10px 0;
        height: 50px;
    }

    /* ANIMACION */
    .elacordeon .box-next .modal-content-ac, #caption-ac p{
        -webkit-animation-name: zoom;
        -webkit-animation-duration: 0.6s;
        animation-name: zoom;
        animation-duration: 0.6s;
    }

    @-webkit-keyframes zoom {
        from {-webkit-transform:scale(0)}
        to {-webkit-transform:scale(1)}
    }

    @keyframes zoom {
        from {transform:scale(0)}
        to {transform:scale(1)}
    }

    /* BOTON CERRAR */
    .elacordeon .box-next .close-ac {
        position: absolute;
        top: 35px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: lighter;
        transition: 0.3s;
    }

    .elacordeon .box-next .close-ac:hover,
    .elacordeon .box-next .close-ac:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

    /* INICIAN ESTILOS PARA LOS ACORDEONES */


    .elacordeon button.accordion {
        display: block;
        background-color: #fff;
        color: #000;
        cursor: pointer;
        padding: 16px;
        width: 100%;
        border: none;
        text-align: center;
        outline: none;
        font-size: 15px;
        transition: 0.4s;
    }

    .elacordeon button.accordion.active, .elacordeon button.accordion:hover {
        background-color: #000;
        color: #fff;
    }

    .elacordeon button.accordion:after {
        content: '\002B';
        color: #777;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

    .elacordeon button.accordion.active:after {
        content: "\2212";
    }

    .elacordeon div.panel {
        padding: 0;
        background-color: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
    }

    /* TERMINAN ESTILOS PARA LOS ACORDEONES */

}
/* --------------TERMINAN ESTILOS PARA TEXTO DE .SEVEN------------ */


/* --------------COMIENZAN ESTILOS PARA TEXTO DE .EIGHT------------ */
  .EIGHT {
    /*background-color: blue; */
    background-image:url(../images/blog-img_red.jpg);
    background-attachment:scroll;
    position: relative;
  }

    .EIGHT .textsection {
      position: absolute;
      text-align: center;
      /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
      top:50%;
      left:50%;
      transform: translateX(-50%) translateY(-50%);
      color: #fff;
    }

    .EIGHT .textsection h2 {
      font-weight: 200;
      font-size: 24px;
      padding-bottom: 5px;
    }

    .EIGHT .textsection h3 {
        font-weight: 100;
        font-size: 20px;
        padding-bottom: 20px;
    }

    .EIGHT .textsection a {
        text-align: center;
        display: inline-block;
        width: 200px;
        color:#fff;
        text-decoration: none;
        padding:6px;
        margin-top: 0%;
        font-size: 20px;
        border: 1px solid #fff;
        border-radius: 10px;
        transition: all .5s;
    }

    .EIGHT .textsection a:hover{
        cursor:pointer;
        color: #000;
        border: 1px solid #000;
        transition: all .5s ease-in;
    }

/* --------------TERMINAN ESTILOS PARA TEXTO DE .EIGHT------------ */


/* --------------COMIENZAN ESTILOS PARA TEXTO DE .NINE------------ */
  .NINE {
    /*background-image:url(../images/contactpaper.jpg); */
    background-color: white;
    background-attachment:scroll;
    position: relative;
    margin-top: 0;

}


    .NINE form {
    text-align: center;
    margin: auto;
    width: 100%;
    padding: 60px 10px 10px 10px;
    box-sizing: border-box;
    font-family: "roboto", Arial;
    font-weight: 100;
    }


    .NINE .content-form {
      width: 60%;
      margin: auto;
      position: absolute;
      text-align: center;
      /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
      top:50%;
      left:50%;
      transform: translateX(-50%) translateY(-50%);

    }
    .NINE form h2 {
      text-align: center;
      margin-top: 50px;
      color: #000;
      font-size: 30px;
      font-weight: 400; }
    .NINE form h3 {
      text-align: center;
      top: 20px;
      margin-bottom: 20px;
      font-size: 22px;
      color: #808f88;
      font-family: "roboto", Arial;
      font-weight: 100; }
    .NINE form .input-group {
      position: relative;
      margin-bottom: 32px; }
      .NINE form .input-group textarea {
        min-height: 100px;
        max-height: 100px;
        max-width: 100%;
        resize: none; }
      .NINE form .input-group input[type="text"],
      .NINE form .input-group input[type="email"],
      .NINE form .input-group textarea[type="text"] {
        font-size: 18px;
        font-weight: 400;
        font-family: "roboto", Arial;
        color: black;
        width: 100%;
        outline: none;
        background: none;
        border: none;
        padding: 15px;
        border-bottom: 1px solid rgba(128, 143, 136, 0.2); }
        .NINE form .input-group input[type="text"]:focus, .sect10 form .input-group input[type="text"]:active,
        .NINE form .input-group input[type="email"]:focus,
        .NINE form .input-group input[type="email"]:active,
        .NINE form .input-group textarea[type="text"]:focus,
        .NINE form .input-group textarea[type="text"]:active {
          outline: none;
          border-bottom: 1px solid #808f88; }
        .NINE form .input-group input[type="text"].error,
        .NINE form .input-group input[type="email"].error,
        .NINE form .input-group textarea[type="text"].error {
          border-bottom: 1px solid #b7000d; }
          .NINE form .input-group input[type="text"].error + label,
          .NINE form .input-group input[type="email"].error + label,
          .NINE form .input-group textarea[type="text"].error + label {
            color: #b7000d; }
      .NINE form .input-group label {
        color: rgba(0,0,0,.8); }
        .NINE form .input-group label.etiqueta {
          position: absolute;
          top: 16px;
          left: 0px;
          font-size: 20px;
          line-height: 16px;
          margin-left: 16px;
          -webkit-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          .NINE form .input-group label.etiqueta.active {
            top: -12px;
            font-size: 12px;
            line-height: 12px;
            color: rgba(0,0,0,1); }
      .NINE form input[type="submit"] {
        width: 50%;
        color: rgba(0,0,0,.4);
        padding: 14px;
        font-size: 22px;
        border: 1px solid rgba(0,0,0,.4);
        border-radius: 10px;
        background: none;
        outline: none;
        -webkit-transition: all 1s ease-in;
        -o-transition: all 1s ease-in;
        transition: all 1s ease-in;
        margin-bottom: 80px;
        margin-top: 0px; }
        .NINE form input[type="submit"]:hover {
          cursor: pointer;
          color: rgba(0,0,0,.8);
          border: 1px solid rgba(0,0,0,.8);
          border-radius: 10px;
          background-color: none; }


      /* ADAPTACIÓN A  < 768PX */

      @media(max-width:768PX) {
        /* FORMATO CONTACTO */
        /* CONTENEDOR DE LA FORMA */

        .NINE {
          position: relative;
          margin-top: 0;}

        .NINE .content-form {
          width: 80%;
          top: 60%;
          /*height: 100vh;*/} /* Entonces esto hacía que se sobrepusieran los divs */

        /* TITULARES DE LA FORMA */
        .NINE form h2 {
          margin-top: 10px;
          font-size: 20px;
          font-weight: 400; }
        .NINE form h3 {
          display: none;
          top: 60px;
          margin-bottom: 0px;
          font-size: 18px;
          font-weight: 100; }

        /* SEPARACIÓN ENTRE CADA INPUT */
        .NINE form .input-group {
          position: relative;
          margin-bottom: 12px;
        }

        /* TAMAÑO DEL CAMPO DE MENSAJE */
        .NINE form .input-group textarea {
          min-height: 40px;
          max-height: 40px;}

        /* TAMAÑO DEL TEXTO DE INPUT Y SEPARACIÓN ENTRE ELLOS */
        .NINE form .input-group input[type="text"],
        .NINE form .input-group input[type="email"],
        .NINE form .input-group textarea[type="text"] {
          font-size: 14px;
          font-weight: 400;
          width: 100%;
          padding: 12px;
          border-bottom: 1px solid rgba(128, 143, 136, 0.2); }

        /* TAMAÑO DEL TEXTO-ETIQUETA */
        .NINE form .input-group label.etiqueta {
          position: absolute;
          top: 16px;
          left: 0px;
          font-size: 14px;
          line-height: 16px;
          margin-left: 12px;}

        .NINE form .input-group label.etiqueta.active {
            top: -6px;
            font-size: 11px;
            line-height: 12px;
            color: rgba(0,0,0,1); }

        /* BOTÓN SUBMIT */
        .NINE form input[type="submit"]{
          width: 100%;
        }
      }


      /* ADAPTACIÓN A  < 460PX */

      @media(max-width: 460PX) {

        /* FORMATO CONTACTO */
        /* CONTENEDOR DE LA FORMA */

        .NINE {
          position: relative;
          margin-top: 0;}

        .NINE .content-form {
          width: 80%;
          top:50%;
          /*height: 100vh;*/} /* la sobreposición de los divs */

        /* TITULARES DE LA FORMA */
        .NINE form h2 {
          margin-top: 40px;
          font-size: 20px;
          font-weight: 400; }
        .NINE form h3 {
          display: block;
          top: 60px;
          margin-bottom: 30px;
          font-size: 18px;
          font-weight: 100; }


        /* SEPARACIÓN ENTRE CADA INPUT */
        .NINE form .input-group {
          position: relative;
          margin-bottom: 12px;
        }

        /* TAMAÑO DEL CAMPO DE MENSAJE */
        .NINE form .input-group textarea {
          min-height: 80px;
          max-height: 80px;}

        /* TAMAÑO DEL TEXTO DE INPUT Y SEPARACIÓN ENTRE ELLOS */
        .NINE form .input-group input[type="text"],
        .NINE form .input-group input[type="email"],
        .NINE form .input-group textarea[type="text"] {
          font-size: 22px;
          font-weight: 400;
          width: 100%;
          padding: 22px;
          border-bottom: 1px solid rgba(128, 143, 136, 0.2); }

        /* TAMAÑO DEL TEXTO-ETIQUETA */
        .NINE form .input-group label.etiqueta {
          position: absolute;
          top: 18px;
          left: 0px;
          font-size: 20px;
          line-height: 18px;
          margin-left: 18px;}


        .NINE form .input-group label.etiqueta.active {
            top: -12px;
            font-size: 12px;
            line-height: 22px;
            color: rgba(0,0,0,1); }



        /* BOTÓN SUBMIT */
        .NINE form input[type="submit"]{
          width: 100%;
        }
      }


      /* VENTANA MODAL PARA EL ENVÍO DEL FORMULARIO */

      /* SE ESCONDE LA VENTANA DE INICIO */
      .NINE .bckgrnd-mwindow{
        display: none;
      }

      .NINE .mwindow{
        display: block;
      }

      /* ----TERMINA ESTADO INICIAL DE VENTANA ---*/

      /* Comienza definición de background */
      .NINE .bckgrnd-mwindow{
        position: fixed;
        overflow: auto;
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        width: 100%;
        height: 100%;
        top:0;
        left: 0;
        z-index: 1;
      }


      /* BOTON CLOSE
      .NINE .btn-close {
        position: absolute;
        color: #fff;
        top: 200px;
        right: 400px;
        font-size: 42px;
        font-weight:100;
      }

      .NINE .btn-close:hover,
      .NINE .btn-close:focus {
        color: #c10000;
        text-decoration: none;
        cursor: pointer;
      }*/


      /* Ventana */
      .NINE .mwindow{
        position: absolute;
        top:50%;
        left:50%;
        /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
        transform: translateX(-50%) translateY(-50%);
        text-align: center;
        background-color: #fefefe;
        margin: auto;
        padding: 0;
        width: 80%;
        max-width: 300px;
      }

      /* EL HEADER DE LA VENTANA */
      .NINE .headwin  {
        padding: 8px 16px;
        background-color: #000;
        color: #fff;
      }

        .NINE .headwin h2 {
          font-weight: 100;
        }

      /* EL CONTENIDO DE LA VENTANA */
      .NINE .mwindow .text-content {
        padding: 2px 16px;
      }

        .NINE .mwindow .text-content h3{
          font-size: 25px;
          padding-top: 20px;
          padding-bottom: 10px;
          font-weight:300;
        }

        .NINE .mwindow .text-content h4{
          font-size: 20px;
          padding-bottom: 20px;
          font-weight:100;
        }

      /* EL PIE */
      .NINE .footwin {
        padding: 10px 16px;
        font-weight:100;
        background-color: #000;
        color: #fff;
      }

        .NINE .footwin h5 {
          font-weight: 100;
        }

      /* ADAPTACIÓN DE LA VENTANA MODAL < 768PX */
        @media(max-width:768PX){

        }
        /* TERMINA ADAPTACIÓN DE LA VENTANA MODAL < 768PX */




/* ESTILOS PARA LA PÁGINA DE CLASES GRUPALES */


    /* --------------COMIENZAN ESTILOS PARA TEXTO DE .TEN------------ */
  .TEN {
    /*background-color: deeppink;  */
    background-image:url(../images/group-principal_bnw.jpg);
    position: relative;
    /*background-attachment: fixed;*/
  }

/* --------------------------------------------- */
    .TEN  .textsection {
        position: absolute;
        text-align: center;
        /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
        top:50%;
        left:50%;
        transform: translateX(-50%) translateY(-50%);
        color: #fff;
    }

      .TEN  .textsection h1 {
          width: 90%;
          margin: auto;
          font-weight: 300;
          font-size: 140px;
          line-height: 130px;
          padding-bottom: 30px;
          border-bottom: 1px solid rgba(173, 172, 167, .4);
      }

      .TEN .textsection h3 {
          font-weight: 200;
          font-size: 40px;
          padding-bottom: 50px;
      }



    /* ADAPTACIÓN < 768PX */

    @media(max-width:768PX){

      .TEN {
        background-position: 49% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */

      }

      .TEN  .textsection h1 {
        font-weight: 300;
        font-size: 68px;
        line-height: 58px;
        padding-bottom: 15px;
        width:70%;
        margin: auto;}

      .TEN .textsection h3 {
        font-weight: 200;
        font-size: 24px;
        padding-bottom: 20px;}
    }


    /* ADAPTACIÓN < 460PX */

    @media (max-width: 460px) {

      .TEN {
        background-position: 46% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
        background-attachment: scroll;
      

      }

      .TEN .textsection {
            position: absolute;
            text-align: center;
            /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
            top:50%;
            left:50%;
            transform: translateX(-50%) translateY(-50%);
            color: #fff;}

          .TEN .textsection h1 {
              font-weight: 300;
              width: 90%;
              font-size: 48px;
              line-height: 46px;
              padding-bottom: 12px;
              border-bottom: 1px solid rgba(173, 172, 167, .4);}

          .TEN .textsection h3 {
              font-weight: 200;
              font-size: 28px;
              padding-bottom: 20px;}
    }


/* --------------TERMINAN ESTILOS PARA TEXTO DE .TEN------------ */




 /* --------------COMIENZAN ESTILOS PARA TEXTO DE .ELEVEN------------ */
 .ELEVEN {
  /*background-color: deeppink;  */
  background-image:url(../images/group-principal.jpg);
  position: relative;
}

/* --------------------------------------------- */
  .ELEVEN  .textsection {
      position: absolute;
      text-align: center;
      /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
      top:50%;
      left:50%;
      transform: translateX(-50%) translateY(-50%);
      color: #fff;
  }

  /* DAYONE, ES DECIR LUNES */

    .ELEVEN .dayone {
      width: 100%;
      /*margin-left: 10px;
      margin-top: 180px; */

    }

    .ELEVEN .dayone h2 {
        font-weight: 300;
        font-size: 50px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(173, 172, 167, .4);
    }

    .ELEVEN .dayone h3 {
        font-weight: 200;
        font-size: 40px;
        padding-bottom: 10px;
    }

    .ELEVEN .dayone p {
        font-weight: 100;
        font-size: 26px;
        padding-bottom: 50px;
    }

    /* DAYTWO, ES DECIR MARTES */

   /* .ELEVEN .daytwo {
      width: 80%;
      margin-top: 50px;
      margin-right: 140px;
    }

    .ELEVEN .daytwo h2 {
        font-weight: 300;
        font-size: 50px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(173, 172, 167, .4);
    }

    .ELEVEN .daytwo h3 {
        font-weight: 200;
        font-size: 40px;
        padding-bottom: 10px;
    }


    .ELEVEN .daytwo p {
        font-weight: 100;
        font-size: 26px;
        padding-bottom: 50px;
    } */




  /* ADAPTACIÓN < 768PX */

  @media(max-width:768PX){

    .ELEVEN {
      background-position: 49% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */

    }

    /* DAYONE, ES DECIR LUNES */

    .ELEVEN .dayone {
      width: 100%;
      /*margin-left: 10px; */
    }

    .ELEVEN .dayone h2 {
        font-weight: 300;
        font-size: 42px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(173, 172, 167, .4);
    }

    .ELEVEN .dayone h3 {
        font-weight: 200;
        font-size: 36px;
        padding-bottom: 10px;
    }

    .ELEVEN .dayone p {
        font-weight: 100;
        font-size: 24px;
        padding-bottom: 50px;
    }

    /* DAYTWO, ES DECIR MARTES */

    /*.ELEVEN .daytwo {
      width: 70%;
      margin-top: 50px;
      margin-right: 160px;
    }

    .ELEVEN .daytwo h2 {
        font-weight: 300;
        font-size: 42px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(173, 172, 167, .4);
    }

    .ELEVEN .daytwo h3 {
        font-weight: 200;
        font-size: 36px;
        padding-bottom: 10px;
    }


    .ELEVEN .daytwo p {
        font-weight: 100;
        font-size: 24px;
        padding-bottom: 50px;
    }*/


  } 


  /* ADAPTACIÓN < 460PX */

  @media (max-width: 460px) {

    .ELEVEN {
      background-position: 46% 0%; /* pos en x( desplaza horizontal) y pos en y ( vertical) */
      background-attachment:local;
      /* Pos relative hace que en móbil la imagen se adapte al tamaño de la pantalla*/
      position: relative;
      
    }

    .ELEVEN .textsection {
          position: absolute;
          text-align: center;
          /* ahora para que el contenedor del texto esté ubicado siempre en el medio */
          top:50%;
          left:50%;
          transform: translateX(-50%) translateY(-50%);
          color: #fff;}

       /* DAYONE, ES DECIR LUNES */

    .ELEVEN .dayone {
      width: 100%;
     /* margin-right: 10px;
      padding-bottom: 50px; */
    }

    .ELEVEN .dayone h2 {

        font-weight: 300;
        font-size: 44px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(173, 172, 167, .4);
    }

    .ELEVEN .dayone h3 {
        font-weight: 200;
        font-size: 36px;
        padding-bottom: 10px;
    }

    .ELEVEN .dayone p {
        font-weight: 100;
        font-size: 22px;
        padding-bottom: 50px;
    }

    /* DAYTWO, ES DECIR MARTES */

    /*.ELEVEN .daytwo {
      width: 55%;
      margin-top: 50px;
      margin-left: 70px;
    }

    .ELEVEN .daytwo h2 {

        font-weight: 300;
        font-size: 36px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(173, 172, 167, .4);
    }

    .ELEVEN .daytwo h3 {
        font-weight: 200;
        font-size: 28px;
        padding-bottom: 10px;
    }

    .ELEVEN .daytwo p {
        font-weight: 100;
        font-size: 18px;
        padding-bottom: 50px;
    }*/

} 



/* --------------TERMINAN ESTILOS PARA TEXTO DE .ELEVEN------------ */




/* TRES CONTENEDORES HIJO. 3ero FOOT_ER */

.foot_er {
  background-color: #211e24;
  /*position: sticky; */
}

/* ---------------------------------------- */

  .containfooter {
    /*background-color: crimson; */
    background-color: none;
  }

    .firma {
      background-color: #211e24;
      text-align: center;
      padding-top: 10px;
      padding-bottom: 10px;
      margin: auto;
    }

      .firma img {
        width: 40px;
        vertical-align:bottom;
        padding: 10px;
      }

      .firma a {
        text-decoration: none;
        line-height: 40px;
        color: #ADACA7;
        font-size: 18px;
        font-weight: 100;
      }

    .rsocial {
      background-color: #211e24;
      /*background-color: darkgoldenrod; */
      display: flex;
      justify-content: center;
      padding-top: 0;
      padding-bottom: 10px;
      list-style: none;
      text-decoration: none;
      /*border-top: 1px solid rgba(173, 172, 167, .5); */
      border-bottom: 1px solid rgba(173, 172, 167, .2);
    }

      .rsocial a {
        /*background-color: #A64452; */
        font-size: 24px;
        text-decoration: none;
        padding: 15px;
        color: #ADACA7;
      }

    .intouch {
      /*background-color: darkgoldenrod; */
      background-color: #211e24;
      list-style: none;
      text-align: center;
      padding: 20px 0;
      border-bottom: 1px solid rgba(173, 172, 167, .2);
      margin: auto;
    }

      .intouch a {
        /*background-color: #A64452; */
        text-decoration: none;
        line-height: 30px;
        color: #ADACA7;
        font-size: 18px;
        font-weight: 100;
      }

        /* --- INICIA CAMBIO DE COLOR PARA LOS ÍCONOS DE REDES SOCIALES ---*/

       .rsocial .fa-facebook:hover{
          cursor: pointer;
          color:#1c75bc;}
       .rsocial .fa-youtube-play:hover{
          cursor: pointer;
          color:#ed1c24;}
       .rsocial .fa-instagram:hover{
          cursor: pointer;
          color:#a97c50;}
       .rsocial .fa-twitter:hover{
          cursor: pointer;
          color:#27aae1;}
      .rsocial .fa-whatsapp:hover{
        cursor: pointer;
        color:#8af57c;}

      /* --- Termina cambio de color para íconos ---*/

    .footext {
      background-color: #211e24;
      text-align: center;
      font-size: 12px;
      padding: 15px 0px 25px 0px;
      color: #ADACA7;
      font-weight: 100;
    }

      .footext p {
        /*background-color: #A64452; */
      }

      /*.geo {
        display: flex;
        justify-content:flex-end;
      } */


    /* ADAPTACIÓN < 768PX */

    @media(max-width:768PX){

      .firma {
      /*display: none;  */
      text-align: center;
      padding-top: 5px;
      padding-bottom: 5px;
      margin: auto;}

      .firma img {
        width: 30px;
        vertical-align:bottom;
        padding: 5px;}

      .firma a {
        text-decoration: none;
        line-height: 28px;
        color: #ADACA7;
        font-size: 12px;
        font-weight: 100;}

      .rsocial {
      justify-content: center;
      padding-top: 0;
      padding-bottom: 5px;
      /*border-top: 1px solid rgba(173, 172, 167, .5); */
      border-bottom: 1px solid rgba(173, 172, 167, .2);}

      .rsocial a {
        font-size: 24px;
        padding: 10px;
        color: #ADACA7;}


      .intouch {
      text-align: center;
      padding: 10px 0;
      border-bottom: 1px solid rgba(173, 172, 167, .2);
      margin: auto;}

      .intouch a {
        line-height: 10px;
        color: #ADACA7;
        font-size: 12px;
        font-weight: 100;}

      .footext {
      /*display: none; */
      text-align: center;
      font-size: 10px;
      padding: 10px 0px 10px 0px;
      color: #ADACA7;
      font-weight: 100;}
    }


      /* ADAPTACIÓN < 460PX */

      @media(max-width:320PX) {

     .firma {
      /*display: block; */
      text-align: center;
      padding-top: 5px;
      padding-bottom: 5px;
      margin: auto;}

      .firma img {
        width: 30px;
        vertical-align:bottom;
        padding: 5px;}

      .firma a {
        text-decoration: none;
        line-height: 28px;
        color: #ADACA7;
        font-size: 12px;
        font-weight: 100;}

      .rsocial {
      justify-content: center;
      padding-top: 0;
      padding-bottom: 5px;
      /*border-top: 1px solid rgba(173, 172, 167, .5); */
      border-bottom: 1px solid rgba(173, 172, 167, .2);}

      .rsocial a {
        font-size: 24px;
        padding: 10px;
        color: #ADACA7;}


      .intouch {
      text-align: center;
      padding: 10px 0;
      border-bottom: 1px solid rgba(173, 172, 167, .2);
      margin: auto;}

      .intouch a {
        line-height: 10px;
        color: #ADACA7;
        font-size: 12px;
        font-weight: 100;}

      .footext {
      /*display: block;*/
      text-align: center;
      font-size: 10px;
      padding: 10px 0px 10px 0px;
      color: #ADACA7;
      font-weight: 100;}
      }