@font-face {
	font-family:'NouvelR';
	src:	url('../font/NouvelR-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family:'NouvelR';
	src:	url('../font/NouvelR-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
}

body {
	font-family: 'NouvelR';
}

#principal {
    background-color: black;
  
    background-image: url("img/fondo.jpg");
    height: 1000px; 
  
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  
}

#logo {
    padding: 1.5rem;
}

#logo img {
   float: right; 
}
#tituloMovil {
    display: none;
}
#contenido {
    padding: 1rem;
    margin: 0 auto;
    text-align: center;
    
}

#contenido .col {
    margin: 0 auto;
}

#contenido #texto {
    
}

#contenido #texto h1 {
    color: black;
    text-align: center;
    font-weight: normal;
    font-size: 1.2rem;
    text-transform: uppercase;
}

#formulario {
    margin: 0 auto;
}

#formulario form {
    /*margin: 4rem 3rem;*/
}

#formulario label {
    margin-bottom: 0.1rem;
}

#formulario .form-control {
    font-size: .8rem!important;
    border: 1px solid black;
    border-radius: unset;
    /*height: calc(1.2em + .75rem + 2px);*/
    
}

#formulario label, #formulario p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 0;
}

#formulario p {
    margin-bottom: 0rem;
}


/*Checkbox*/

/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  padding-top: 2rem;
  cursor: pointer;
  /*font-size: 22px;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 30px;
  background-color: white;
  border: solid 1px black;
  border-radius: .8rem;
    
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #ffd600;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 11px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*Fin Checkbox*/

/*Botones*/
#enviar {
    margin: 2rem;
}

#formulario .btn-primary {
    background-color: #000000;
    border-radius: unset;
    padding: .35em 2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0 auto;
}

#formulario .btn-primary:hover {
    /*background-color: #ccc;*/
    color: white;
}

.btn-primary {
    background-color: #ffd600;
    border: none;
    border-radius: .8rem;
    padding: .2em 2rem;
    font-weight: normal;
    color: black;
    text-align: center;
    margin: 0 auto;
}

.btn-primary:hover {   
    background-color: #ffd600;
    color: white;
    border: solid 1px black;
}
/*Fin Boton*/

#titulo {
    text-align: right;
}
#titulo .col-6 {
    float: right;
    padding: 2.5rem;
    
}
#titulo span {
    color: white;
    font-weight: 600;
    font-size: 2rem;
}
#titulo .yellow {
    color: #ffd600;
}

/*#tituloMovil .col-6 {
    float: right;
    padding: 2.5rem;
    
}*/
#tituloMovil {
    text-align: center;
    padding-bottom: 1rem;
}
#tituloMovil span {
    color: white;
    font-weight: 600;
    font-size: 2rem;    
}
#tituloMovil .yellow {
    color: #ffd600;
}

/*Small col-sm*/
@media only screen and (max-width: 576px) {
    #logo {
        margin: 0 auto;
        text-align: center;
        padding: 1rem;
    }    
    #logo img {
        float: none;
    }
   /* #formulario {
        position: relative;
    }*/
    #formulario form {
        margin: 1rem;
    }
    #formulario label {
        font-size: 1rem;
    }
    #formulario p {
        font-size: .9rem;
    }
    #titulo {
        display: none;
    }
    #tituloMovil {
        display: block;
    }
}

/*Medium col-md */
@media only screen and (min-width: 577px) and (max-width: 991px) {
    #logo {
        margin: 0 auto;
        text-align: center;
        padding: 1rem;
    }      
    /*#formulario {
        position: relative;
    }
    #formulario form {
        margin: 1rem;
    }*/
     #logo img {
        float: none;
    }
    #titulo {
        display: none;
    }
    #tituloMovil {
        display: block;
    }    
}

/* Large col-lg 
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #formulario {
        position: absolute;
    }
}
*/
/*Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { 
}