/*GENERALES------------------------------------------------------------------------------------------------------------------------------------*/

*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body{

  background: #000;
  font-family: 'Century Gothic';
  font-size: 16px;
  }

.contenedor{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.titulo-seccion{
  text-align: center;
  margin-bottom: 40px;
}

.titulo-seccion h2{
  color: #B78549;
  font-size: 4rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.titulo-seccion p{
  color: #979797;
  font-size: 1rem;
  font-weight: 400;
}

/*Boton Volver Arriba--------------------------------------------------------------------------------------------------------------------------*/

.btn-volver-arriba{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  border-radius: 30%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  margin-right: -60px;
  transition: all .4s ease;
}

.btn-volver-arriba a{
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 30%;
  text-align: center;
}

.btn-volver-arriba a i{
  font-size: 1rem;
  color: #fff;
  line-height: 40px;
}

/* ------ ENCABEZADO ------------------------------------------------------------------------------------------------------------------------- */

.menu-bar-pc{
  width: 100%;
  min-height: 68px;
  border-bottom: 1px solid rgba(255,255,255, 0.15);
  padding: 0 36px;
  background:#000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;  
}

.logo{
  display: inline-block;
  width: 50px;
}

.logo img{
  width: 100%;
  vertical-align: top;
}

.menu-principal a, .top-redes a{
  display: inline-block;
  padding: 0 10px;
  color: #CC9933;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.876rem;
  letter-spacing: 0;
  line-height: 1.5em;
  transition: all .3s ease;
}

.menu-principal a:last-child, .top-redes a:last-child{
  padding-right: 0;
}

.top-redes a i{
  font-size: 1rem;
}

.menu-principal a:hover, .top-redes a:hover{
  color: #fff;
}

.fixed-header{
  width: 100%;
  min-height: 68px;
  border-bottom: 1px solid rgba(204,204,204,0.5);
  padding: 0 36px;
  background: #eaeaea;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all .4s ease;
  margin-top: -68px;
}

.fixed-header .menu-principal a, .fixed-header .top-redes a{
  color: #B78549;
}

.fixed-header .menu-principal a:hover, .top-redes a:hover{
  color: #444444;
}

/*Mobile menu-----------------------------------------------------------------------------------------------------------------------------------------------*/

.menu-mobile{
  display: none;
}

/* ------ MAIN -------------------------------------------------------------------------------------------------------------------------------------------- */

/*Banner principal*/

.main{
  width: 100%;
  text-align: center; 
}

.main .banner-principal{
  position: relative;
  width: 100%; 
  height: 100vh;
  background-color:#000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;

/*  top: 100%;*/
/*  margin-top: -50px;*/
 }

.main .banner-principal .banner{ 
  width: 100%;   
}

.im_logo { 
  width:50%;
  margin-top:200px;
}

/*idioma movil*/

.es {
    color:#fff;
}

.en {
    color: #B78549;
}

.check {
position:relative;
width:50px;
}

    .check::before {
    content:'';
    position:absolute;
    width:50px;
    height:25px;
    background:#333;
    border-radius:25px;

    }

    .check::after {
        content: '';
        position: absolute;
        width: 25px; 
        height: 25px;
        background: #fff;
        border-radius: 25px;
        transition:0.25s;
        border:2px solid #333;
        box-sizing:border-box;
    }

    .check:checked::after{
        left:25px;
        border:2px solid #B78549;
    }

    .check:checked::before {
    background:#B78549;
    }


/*idioma escritorio*/

.ess {
    color: #fff;
}

.enn {
    color: #B78549;
}

.check_1 {
    position: relative;
    width: 50px;
}

    .check_1::before {
        content: '';
        position: absolute;
        width: 50px;
        height: 25px;
        background: #333;
        border-radius: 25px;
    }

    .check_1::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        background: #fff;
        border-radius: 25px;
        transition: 0.25s;
        border: 2px solid #333;
        box-sizing: border-box;
    }

    .check_1:checked::after {
        left: 25px;
        border: 2px solid #B78549;
    }

    .check_1:checked::before {
        background: #B78549;
    }




