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


.navbar-web{
	display: block;
	width: 100%;
	height: 20vh;
	position: relative;
}

.superior{
	z-index: 5000;
}

.nav-web{
	display: block;
}

.logo{
	width: 100%;
	height: 20vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo img{
	height: 50%;
}

.nav-web{
	width: 100%;
	height: 6vh;
	background-color: white;
	border-bottom: 1px solid rgb(232, 232, 232);
}

.nav-web .links{
	width: 70%;
	height: 5vh;
	margin-left: 15%;
	display: flex;
	justify-content: space-around;
	padding-top: 13px;
}

.nav-web ul{
	display: flex;
	list-style: none;
}

.nav-web ul li a{
	text-decoration: none;
	color: white;
	margin: 8px;
	color: rgb(114, 114, 114);
	font-family: Arial;
	font-size: 13px;
}

.nav-web ul li a:hover{
	text-decoration: none;
	color: rgb(5, 27, 60);
}

.navbar-movil, .nav-movil{
	display: none;
}

.demo, .demo-2{
	display: none;
}

.buscador, .big-btn-close, .btn-buscador, .btn-buscador-2{
	display: none;
}

@media screen and (max-width: 1024px){
	.navbar-web, .nav-web{
		display: none;
	}
	
	.navbar-movil{
		display: flex;
		padding: 10px;
		position: relative;
		background-color: white;
	}

	.navbar-movil i, .demo i, .demo-2 i{
		font-size: 25px;
	}

	.navbar-movil .btn-menu{
		flex: 1;
	}

	.navbar-movil .movil-logo{
		flex: 1;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.movil-logo img{
		width: 65%;
	}

	.navbar-movil .btn-call{
		display: flex;
		justify-content: flex-end;
		flex: 1;
	}

	.demo, .demo-2{
		position: absolute;
		top: 0;
		left: 0;
		z-index: 500;
		width: 100vw;
		height: 100vh;
		background-color: white;
		display: none;
		overflow-y: scroll;
	}

	.demo ul li{
		list-style: none;
		font-size: 25px;
		margin-top: 20px;
	}

	.demo ul li a{
		color: black;
		text-decoration: none;
	}

	.demo ul li a:hover{
		text-decoration: none;
	}

	.demo ul li .sub-menu{
		float: right;
		margin-right: 10px;
		font-size: 17px;
		padding-left: 20px;
		border-left: 1px solid gray;
	}
	
	.sub-menu-1{
		position: absolute;
		top: 0;
		left: 0;
		margin-top: 10%;
		visibility: hidden;
	}

	.menu{
		position: absolute;
		top: 0;
		left: 0;
		margin-top: 10%;
		margin-left: 2%;
	}

	.sub-menu-text{
		font-size: 15px;
		color: rgb(106, 106, 106);
	}

	.sub-menu-text i:hover{
		color: yellow;
	}

	/* BUSCADOR */

	.btn-buscador{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 90%;
		padding: 10px 20px;
		color: white;
		background-color: rgb(166, 47, 47);
		margin-bottom: 20px;
		margin-left: 5%;
		border-radius: 25px;
		z-index: 5000;
		outline: none;
	}

	.btn-buscador-2{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 90%;
		padding: 10px 20px;
		color: white;
		background-color: rgb(166, 47, 47);
		margin-bottom: 20px;
		margin-left: 5%;
		border-radius: 25px;
		z-index: 6000;
		outline: none;
		visibility: hidden;
	}

	.big-btn-close{
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 30vh;
		background-color: rgb(0, 0, 0, .5);
		visibility: hidden;
		z-index: 3000;
	}

	.buscador{
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 80vh;
		background-color: white;
		border-top-left-radius: 15px;
		border-top-right-radius: 15px;
		z-index: 4000;
		visibility: hidden;
	}

	.buscador .sec-1{
		width: 93%;
		height: 20vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-left: 3%;
		border-bottom: 1px solid rgb(221, 221, 221);
	}

	.sec-1 input{
		width: 100%;
		border-radius: 20px;
		background-color: transparent;
		border: 1px solid rgb(221, 221, 221);
		padding: 10px;
	}

	.buscador .sec-2{
		width: 93%;
		height: 10vh;
		display: flex;
		margin-left: 3%;
		border-bottom: 1px solid rgb(221, 221, 221);
	}

	.sec-2 input{
		border: none;
		background-color: transparent;
		outline: none;
	}

	.sec-2 div{
		flex: 1;
		display: flex;
		align-items: center;
	}

	.sec-2 div:nth-child(1){
		justify-content: flex-start;
	}

	.sec-2 div:nth-child(2){
		justify-content: flex-end;
	}

	.sec-2 span{
		width: 15px;
		height: 15px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50%;
		border: 1px solid black;
		padding: 0;
		margin-left: 10px;
		cursor: pointer;
		font-size: 8px;
		font-weight: bold;
	}

}












