body{
  font-family: Arial, sans-serif;
}

header{
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  visibility: visible;
  transition: 0.5s;
}

.cabezera{
  height: 100%;
  overflow: hidden;
}

.header1, .header3{
  width: 25%;
}

.header2{
  width: 50%;
}

.header1{
  display: flex;
  justify-content: flex-end;
  vertical-align: center;
}

.header1 img{
  height: 35px;
  text-align: right;
  margin-top:10px;
  margin-right: 15px;
}

.header2{
  display: flex;
  justify-content: space-between;
}

.header2 .btn-menuSeg{
	background-color: transparent;
	color: white;
	font-size: 18px;
	font-weight: bold;
	border: none;
}

.header2 .menu{
  padding: 0;
  height: 100%;
}

.header2 .menu nav{
	display: inline-block;
}

.menu li{
  display: inline-block;
  height: 100%;
  padding: 15px;
  cursor: pointer;
  padding-top: 25px;
}

.header2 .menu li a{
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.header2 .busqueda{
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: white;
  margin: 5px 30px 0 0;
}

.header3 .sesion{
	width: 100%;
	height: 100%;
}

.header3 .sesion{
	display: flex;
	justify-content: space-between;
}

.header3 .sesion .nombre{
	height: 100%;
	display: flex;
	align-items: center;
	margin-left: 50px;
}

.header3 .sesion .nombre .usuario{
	font-size: 14px;
}

.header3 .sesion .toggle-btn{
		height: 100%;
}

.header3 .sesion .toggle-btn button{
	background-color: transparent;
	border: none;
	height: 100%;
	width: 60px;
}

.header3 .sesion .toggle-btn button span{
	font-size: 40px;
	font-weight: bold;
	background-color: transparent;
	border: none;
	margin-top: -4px;
}
/********FIN DE HEADER********/


/********MENU SERVICIOS********/
.menuServicios{
	position: fixed;
	top: 60px;
	width: 100%;
	background-color: black;
	z-index: 100;
	display: none;
}

.menuSerciciosActive{
	display: block;
}

.menuServicios ul{
	display: flex;
	justify-content: space-around;
	padding: 10px 0 0 0;
	margin: 0;
}

.menuServicios ul li{
	list-style: none;
}

.menuServicios ul li a{
	text-align: center;
}

.menuServicios ul li div{
	/*border: 1px solid white;
	width: 4rem;
	height: 4rem;
	border-radius: 10px;*/
}

.menuServicios ul li label{
	display: block;
	color: white;
}
/********FIN DE HEADER********/

/********CERRAR SESION********/
.cerrarSesion{
/*	position: fixed;
	height: calc(100% - 60px);
	top: 60px;
	right: 0px;
	background-color: rgba(255, 255, 255);
	z-index: 1000;
	width: 0%;
	transition: 0.6s;*/
}

.cerrarSesion .menuContenedor,
.cerrarSesion .textoLogin{
	height: 45%;
	max-height: 45%;
	overflow: auto;
}

.cerrarSesion .btn-cerrar{
	height: 10%;
	max-height: 10%;
	border-top: 1px solid rgba(211, 211, 211);
}

.cerrarSesion .textoLogin img{
	width: 30%;
}

.cerrarSesion .btn-cerrar button{
	width: 100%;
	height: 100%;
	border: none;
	background-color: rgba(255, 255, 255);
	color: rgba(218, 41, 28);
	font-size: 16px;
	font-weight: bold;
}

.cerrarAncho{
	width: 25%;
	transition: 0.6s;
}
/********FIN DE CERRAR SESION********/

/*******************************************************************************************************************/
/******************************************      PORTRAIT     ******************************************************/
/*******************************************************************************************************************/
/***********************PORTRAIT DISPOSITIVO MOVIL CELULAR**********************************************************/
@media only screen and (max-width: 320px) and (orientation: portrait){

	header .header1{
		/*display: none;*/
	}

	header .header2{
		width: 90%;
	}

	.header2 .btn-menuSeg{
		font-size: 12px;
	}

	.menu li {
		padding: 17px 15px; 
	}

	header .header2 .menuResponsivo{
		position: fixed;
		top: 60px;
		left: 0px;
		flex-direction: column;
		width: 100%;
		display: none;
	}

	header .header2 .menuResponsivoActive{
		display: block;
		height: auto;
	}

	.menuResponsivo li{
		width: 100%;
		border-bottom: 2px solid white;
		display: flex;
		align-items: center;
		justify-content: center;
		height: auto;
	}

	.header2 .menu li a {
		text-decoration: none;
		font-size: 12px;
		font-weight: bold;
		color: rgb(255, 255, 255);
	}

	.menuServicios{
		top: 60px;
		width: 100%;
		height: calc(100% - 60px);
		overflow: auto;
	}

	.menuServicios ul{
		flex-direction: column;
	}

	.menuServicios ul li{
		display: flex;
		justify-content: center;
		border-bottom: 2px solid white;
		padding-top: 5px;
	}

	.header3 .sesion .nombre {
		display: none;
	}
}
@media only screen and (min-width: 321px) and (max-width: 424px) and (orientation: portrait){
}
/***********************PORTRAIT DISPOSITIVO MOVIL TABLET***********************************************************/
@media only screen and (min-width: 425px) and (max-width: 600px) and (orientation: portrait){
}
@media only screen and (min-width: 601px) and (max-width: 679px) and (orientation: portrait){
}
@media only screen and (min-width: 680px) and (max-width: 767px) and (orientation: portrait){
}
/*******************************IPAD USADA EN LA EMPRESA************************************************************/
@media only screen and (min-width: 768px) and (max-width: 820px) and (orientation: portrait){
}
/***********************PORTRAIT DISPOSITIVO MOVIL LAPTOP***********************************************************/
@media only screen and (min-width: 821px) and (max-width: 991px) and (orientation: portrait){
}
@media only screen and (min-width: 992px) and (max-width: 1150px) and (orientation: portrait){
}
/***********************PORTRAIT DISPOSITIVO PC ESCRITORIO***********************************************************/
@media only screen and (min-width: 1151px) and (max-width: 1199px) and (orientation: portrait){
}
@media only screen and (min-width: 1200px) and (max-width:3000px) and (orientation: portrait){
	  .header2 .btn-menuSeg{
    display: none;
  }
}
/*******************************************************************************************************************/
/******************************************      LANDSCAPE      ****************************************************/
/*******************************************************************************************************************/
/*********************LANDSCAPE DISPOSITIVO MOVIL CELULAR***********************************************************/
@media only screen and (max-width: 424px) and (orientation: landscape){
}
@media only screen and (min-width: 425px) and (max-width: 600px) and (orientation: landscape){
}
@media only screen and (min-width: 601px) and (max-width: 679px) and (orientation: landscape){
}
@media only screen and (min-width: 680px) and (max-width: 767px) and (orientation: landscape){
}
@media only screen and (min-width: 768px) and (max-width: 820px) and (orientation : landscape){
}
/*********************LANDSCAPE DISPOSITIVO MOVIL TABLET***********************************************************/
@media only screen and (min-width: 821px) and (max-width: 991px) and (orientation : landscape){
}
@media only screen and (min-width: 992px) and (max-width: 1150px) and (orientation: landscape){
}
/*********************LANDSCAPE DISPOSITIVO MOVIL LAPTOP***********************************************************/
@media only screen and (min-width: 1151px) and (max-width: 1199px) and (orientation: landscape){
}
@media only screen and (min-width: 1200px) and (max-width: 1360px) and (orientation: landscape){
	  .header2 .btn-menuSeg{
    display: none;
  }
}
/*********************LANDSCAPE DISPOSITIVO PC ESCRITORIO***********************************************************/
/*patalla de escritorio utilizado en la empresa*/
@media only screen and (min-width: 1361px) and (max-width: 1899px) and (orientation : landscape){
	  .header2 .btn-menuSeg{
    display: none;
  }
}
@media only screen and (min-width: 1900px) and (max-width: 2299px) and (orientation : landscape){
	  .header2 .btn-menuSeg{
    display: none;
  }
}
@media only screen and (min-width: 2300px) and (max-width: 2599px) and (orientation : landscape){
	  .header2 .btn-menuSeg{
    display: none;
  }
}
@media only screen and (min-width: 2600px) and (max-width: 3599px) and (orientation : landscape){
	  .header2 .btn-menuSeg{
    display: none;
  }
}