#main{
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0px 0px 4px gray;
	/*background-color: red;*/
}

#companyLogo{
	width: 100%;
	/*background-color: white;*/
	overflow: hidden;
}

#content{
	width: 100%;
	/*background-color: white;*/
	overflow: hidden;
}

#contentButtons{
	width: 100%;
	height: auto;
	padding-top: 15px;
	/*background-color: white;*/
}

#contentSocialMedia{
	height: fit-content;
	margin: 0 auto;
	margin-bottom: 5%;
	display: flex;
	justify-content: space-evenly;
	padding: 5px 0 5px 0;
	overflow: hidden;
}

.socialMedia{
	max-width: 80px;
	max-height: 80px;
	height: 100%;
	width: 50px;
	/*background: #ff7e21;*/
	overflow: hidden;
}

.telephone{
	/*background-image: url("img/telephone.png");
	-webkit-background-size: cover;
 	 -moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;*/
}

.instagram{
	/*background-image: url("img/instagram.png");
	-webkit-background-size: cover;
 	 -moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;*/
}

.whatsapp{
	/*background-image: url("img/whatsapp.png");
	-webkit-background-size: cover;
 	 -moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;*/
}

.facebook{
	/*background-image: url("img/facebook.png");
	-webkit-background-size: cover;
 	 -moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;*/
}

.maps{
	/*background-image: url("img/maps.png");
	-webkit-background-size: cover;
 	 -moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;*/
}

.businessCard{
	/*background-image: url("img/maps.png");
	-webkit-background-size: cover;
 	 -moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;*/
}

#contentButtonOrder{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 5px 0 20px 0;
}

#buttonOrder{
	text-align: center;
	font-size: 3em;

	width: 85%;
	margin: 0 auto;

	overflow: hidden;
}

.bgButtonOrder{
	width: 100%;
}

.imgContent{
	width: 100%;
	height: 100%;
}

.sticky{
	
	position: fixed;
  	top: 0;
	margin: 0 auto;
	display: block;
	animation: smoothScroll 0.2s forwards;
	-webkit-transition: all 0.2s ease;
 	-moz-transition: position 0.2s;
  	-ms-transition: position 0.2s;
  	-o-transition: position 0.2s;
  	transition: all 0.2s ease;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}