@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

html {margin: auto;}

body {
  /* background: #fff;
    background-image: url("Video-Portada.jpg");
    background-repeat: no-repeat;
    background-size: cover; */
  font-family: 'Poppins', sans-serif;
  margin: auto;
  text-align: center;
}

.img-page {
    background-image: url("TIBURONARIO.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

video {    
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: fixed;    
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);       
  z-index: -100;    
  background-size: cover;


}

.centrado {
  margin: auto;
  position: absolute;
  width: 80%;	
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo{
	max-width: 250px;
	margin-top: 10%;
	margin-bottom: 0;
}

/* img { display: block; margin: auto; } */
form {
  width: 55%;
  margin: auto;
  background: transparent;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 0;
  padding-bottom: 2%;	
  margin-top: 0px;
  margin-bottom: 50px;
}

h1 {
  text-align: center;
  font-family: 'Poppins', sans-serif;	
  font-weight: 600;
  letter-spacing: 0.1vw;
  margin-bottom: 1vw;
  margin-top: 3vw;
  color: #FFF;
  font-size: 3.4em;	
  font-style: normal;	
  text-shadow: 0px 0px 10px #2B3990;
}

label, input,select {
  width: 100%;
  display: block;
  font-size: 0.9em;
  line-height: 2.9em;	
}

input, select {
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 2%;
  padding-right: 2%;	
  margin-bottom: 2%;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  color: #606060;
  font-style: italic;
  font-size: 0.9em;
  line-height: 2.9em;	
}

input[type="submit"] {
  width: 55%;
  padding-top: 7px;
  padding-bottom: 7px;	
  margin: auto;
  background: #E93025;
  border-radius: 10px;
  color: white;
  border: 30px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.3em;
  letter-spacing: 0.06vw;
  line-height: 44px;	
}

select {
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    box-sizing: border-box;
    align-items: center;
    white-space: pre;
    -webkit-rtl-ordering: logical;
    background-color: #fff;
    cursor: pointer;
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 1%;
  padding-right: 1%;	
  margin-bottom: 10%;
  font-size: 0.9em;
  line-height: 2.9em;
  font-family: 'Poppins', sans-serif;
  color: #606060;
  border-radius: 10px;
}

/* Eliminamos la fecha que por defecto aparece en el desplegable */
select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
}
 
/* 
Creamos la fecha que aparece a la izquierda del select.
Realmente este elemento es un cuadrado que sólo tienen
dos bordes con color y que giramos con transform: rotate(-45deg);
*/
.content-select-arriba i{
	position: absolute;
	right: 35%;
	top: calc(54% - 13px);
	width: 16px;
	height: 16px;
	display: block;
	border-left:4px solid #E93025;
	border-bottom:4px solid #E93025;
	transform: rotate(-45deg); /* Giramos el cuadrado */
	transition: all 0.25s ease;
}

.content-select-abajo i{
	position: absolute;
	right: 35%;
	top: calc(69% - 13px);
	width: 16px;
	height: 16px;
	display: block;
	border-left:4px solid #E93025;
	border-bottom:4px solid #E93025;
	transform: rotate(-45deg); /* Giramos el cuadrado */
	transition: all 0.25s ease;
}
 
.content-select:hover i{
	margin-top: 3px;
}


/* Tabletas */
@media (min-device-width: 1024px) and (max-device-width: 1280px) and (orientation:portrait){
  body {
  background-image: url('Video-Portada-tablet.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  }	
}

/* Celulares Portrait*/
@media (min-device-width: 280px) and (max-device-width: 900px) and (orientation:portrait){
 /* body {
        background-image: url("Video-Portada-movil.jpg");
        background-repeat: no-repeat;
        background-size: cover;
    } */
	
h1 {
  font-size: 2.4em;	
}
	
.content-select-arriba i{
	right: 35%;
	top: calc(50% - 13px);
}
	
.content-select-abajo i{
	right: 35%;
	top: calc(66% - 13px);
}
}

/* Celulares Landscape*/
@media (min-device-width: 667px) and (max-device-width: 1024px) and (orientation:landscape){
  body {
  background-image: url('Video-Portada-movil.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  }
	
h1 {
  font-size: 2.4em;	
}
	
.content-select-arriba i{
	right: 35%;
	top: calc(52% - 13px);
}
	
.content-select-abajo i{
	right: 35%;
	top: calc(67% - 13px);
}
}
