
/*** HEADER ***/


.header-contendor-fluid {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9000;
	background-color: #ffffff;
	transition: .2s ease-in-out all;
}

.header-contendor-fluid:hover {
	opacity: 1 !important;
	transition: .2s ease-in-out all;
}

.header {
	background-color: #ffffff;
}


/*
#####################################################
##	Estilos Search Form
#####################################################
*/


#searchform {
	margin-left: auto;
}
#searchform .search-field {
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
    outline-offset: none;
    box-shadow: none;
	outline: none;
	border: 0; 
	border-radius: 17px;
	padding: 4px 20px;
	width: 320px;
}
#searchform .search-field:-ms-input-placeholder { transition: color .4s ease; color:#999 }
#searchform .search-field::placeholder { transition: color .4s ease; color:#999 }
#searchform .search-field:focus:-ms-input-placeholder { color:#ccc }
#searchform .search-field:focus::placeholder { color:#ccc }

#call-search {
	right: 15px; 
	z-index: 2;
	opacity: .8;
}

/*
#####################################################
##	FIN Estilos Search Form
#####################################################
*/


/*
#####################################################
##	Estilos MENU
#####################################################
*/


.navbar-principal {
	display: flex;
    align-items: center;
    text-align: center;
	flex-direction: column;
}
@media (min-width:992px) {
	.navbar-principal {
		flex-direction: row;
	}	
}

.navbar-principal li {
	padding: .5rem 1rem;
	position: relative;
	display: flex;
    align-items: center;
    text-align: center;
}

.navbar-principal li a {
	color: #333333;
	font-size: 16px;
	font-family: 'Gotham-bold';
}


/* ########### MENU RESPONSIVE ############ */

.button-display-menu {
	top: 1.6rem;
	right: 1.6rem;
	width: 35px;
	height: 20px;
	background-color: transparent;
	padding: 0;
	border: 0;
	transition: .3s all ease-in-out;
	z-index: 5000;
}
@media (min-width: 992px) {
	.button-display-menu {
		display: none;
	}
	.contenedor-header-principal {
		position: initial;
		padding-bottom: 0;
	}
}

.container-bars-menu {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	display: -ms-flexbox;
	flex-direction: column;
	-ms-flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.button-display-menu span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: var(--body);
	transition: .3s all ease-in-out;
}
.button-display-menu span:first-child {
	transition-delay: .3s;
}

.button-display-menu span:last-child {
	transition-delay: .3s;
}


.navmenu-contenedor {
	position: fixed;
    height: 100vh;
    background: white;
    width: 100vw;
	transition: .3s all ease-in-out;
	transform: translateX(-150%);
	left: 0;
	padding-top: 3rem;
}

@media (min-width: 992px) {
	.navmenu-contenedor {
		transform: inherit;
		position: initial;
		height: auto;
		background: white;
		width: 100%;
		padding-top: inherit;
	}
}



/*
#####################################################
##	FIN estilos MENU
#####################################################
*/