/*GENERAL COMPONENT*/
/*------------------------------------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.imgResponsive{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
body{
	background-image:url(../img/bg/bg_main.webp);
}
html {
  scroll-behavior: smooth;
}
.separador{
	border: 0;
	height: 1px;
	background: #333;
	background-image: linear-gradient(to right, #ccc, #333, #ccc);
	margin-bottom: 10px;
	margin-top: 10px;
	width: 100%;
}
/*TOP HEADER*/
/*-------------------*/
.topHeader{
	width: 100%;
	display: block;
	height: 70px;
	background-color:yellow;
}
.containerLogo{
	height: 70px;
	justify-content: space-between;
}

/*-NAVBAR DESTOP--*/
/*---------------------------*/
#navDes{
	width:100%;
	background-color:white;
	-webkit-box-shadow: 0px 7px 10px -11px #212121; 
	box-shadow: 0px 7px 10px -11px #212121;
}
.containerNavDest{
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.itemNavDest{
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    font-size: medium;
    text-decoration: none;
    color: #212121;
    border-right: gray solid 1px;
	transition: .35s all;
}
.itemNavDest:hover{
    background-color:red;
    color: white;
}

/*---------------------------*/
#navMov{
	width:100%;
	position: fixed;
	bottom: 0;
}
.containerNavMov{
	background-color:#212121;
	width: 100%;
    align-items: center;
    justify-content:space-between;
}
.contNavBarMovItem{
	width: 100%;
    text-align: center;
	border: gray solid 1px;
	padding: 5px;
    margin: 2px;
	transition: .7s all;
}
.contNavBarMovItem:active{
	background-color:#d50000;
}
.itemNavMov{
	font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    font-size: medium;
    text-decoration: none;
    color: #fff;
    
	transition: .35s all;
	text-align: center;
}

/*GRID STYLE*/
/*-------------------------------------*/
/*----------CONTENEDOR PADRE----------*/
.container{
    max-width: 1200px;
    margin: 0 auto;
}
.flexContainer{
    display: flex;
}
.flexContainerRow{
    flex-direction: row;
}
.flexContainerRowReverse{
    flex-direction: row-reverse;
}
.flexContainerColum{
    flex-direction: column;
}
.flexContainerColumReverse{
    flex-direction: column-reverse;
}
.flexWrap{
    flex-wrap: wrap;
}
.flexWrapReverse{
    flex-wrap: wrap-reverse;
}
.flexNoWrap{
    flex-wrap: nowrap;
}
/*---------CONTENEDOR HIJO-------------*/
.grow1{
    flex-grow:1;
}



/*---------MENU-----------------------------*/
/*--------------------------------------------*/
.containerEspecialidades{
	display:flex;
	padding: 10px;
	width: 100%;
	justify-content: space-evenly;
}
.namePizza{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #d50000;
	font-size:large ;
	padding: 0px 5px 0px;
	text-align: center;
}
/*.especialidad{
	font-size: medium;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size:large ;
	color: #212121;
	
}*/

.ingredientes{
	padding:0px 5px 5px;
	font-family: Arial, Helvetica, sans-serif;
	color: #212121;
	font-size:medium;
	text-align: center;
}
/*------------FOOTER-----------------*/
/*---------------------------------------*/
.footer{
	min-height: 100px;
	background-color:#d50000;
	padding: 10px;
	justify-content: space-between;
	align-items:flex-end;
}
.containerSuc{
	padding: 10px;
	width: 100%;
	text-align:center;
}
@media only screen and (max-width: 720px) {
	.footer{
		flex-direction: column;
		padding: 10px 10px 70px;
	}
	.containerSuc{
		width: 100%;
		border-right:none;
	}
	
	.containerEspecialidades{
	display:block;
	padding: 10px;
	width: 100%;
}
}
