@font-face {
	font-family: minionReg;
	src: url(./minion/MinionPro-Regular.otf) format('opentype');
}

@font-face {
	font-family: agrandirReg;
	src: url(./Agrandir/Agrandir-Regular.otf) format('opentype');
}

* {
	margin: 0;
	padding: 0;
	box-sizing:border-box;
	font-color: #202322;
	font-family: agrandirReg;
}

img {max-width:100%;display:block;}
html {font-size: 10px;}
body {font-size:1.6rem;}

.agrandir {
	font-family: agrandirReg;
}

.minion {
	font-family: minionReg;
}

.cl-main {
	color: #a57fb3;
}

.cl-alt {
	color: #d7bfdd;
}

.cl-tert {
	color: #fffdff;
}

.cl-dark {
	color: #202322;
}

.bg-main {
	background-color: #a57fb3;
}

.bg-alt {
	background-color: #d7bfdd;
}

.bg-tert {
	background-color: #fffdff;
}

.bg-dark {
	background-color: #202322;
}

.bg-shakers {
	background-image:url(./assets/shakersBg.png);
	background-size: 20%;
	background-positon: -33%;
}

.main__header {
	display: flex;
	justify-content: space-between;
	padding: 2rem 4rem;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

.main__logo-cont {

}

.main__logo {
	min-width: 150px;
	width: 150px;
}

.main__header-nav {
	/*padding: 1rem 2rem;*/
	display: flex;
	align-items: center;
}

.header__nav-item {
	position: relative;
	display: inline-block;
	margin-right: 3rem;
	font-size: 2.6rem;
	font-weight: 900;
	text-decoration: none;
	color: #fffdff;
	height: fit-content;
}

.header__nav-item:last-child {
	margin-right: 0;
}

.header__nav-item::after,
.header__nav-item::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #fffdff;
	bottom: -5px;
	left: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s ease-out;
}

.header__nav-item::before {
	top: -5px;
	transform-origin: left;
}

.header__nav-item:hover::after,
.header__nav-item:hover::before {
	transform: scaleX(1);
}

.instagram-icon {
  background-image: url("./assets/instagram-brands-solid-full.svg");
  background-repeat: no-repeat;
  width: 3.4rem;
  height: 3.4rem;
  background-size: 3.4rem 3.4rem;
  background-position: center center;
  /*margin: 0 10px;*/
  z-index: 100;
}

.main__cont {
	width: 77%;
	margin: 0 auto;
}

.main__cont-menu {
	margin: 112px 0 0 0;
}

.main__cont-spacing {
	margin: 150px auto;
}

.main__splash {
	border-radius: 30px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	display: flex;
}

.main__splash_map {
	border-radius: 30px 0 0 30px;
}

.main__message {
	padding: 3rem;
	text-align: center;
}

.main__message-heading {
	display: flex;
	align-items: center;
	border-bottom: 2px solid #202322;
	padding: 0 0 2rem 0;
}

.main__message-heading img {
	width: 150px;
	height: fit-content;
	padding: 0 2rem 0 0;
}

.main__message-heading__cont {
/*border-bottom: 2px solid #202322;*/
}

.main__message-heading__cont h1 {
	color: #202322;
	font-family: minionReg;
	font-size: 5rem;
/*padding: 2rem 0 1rem;*/
}

.main__message-heading__cont h2 {
	text-decoration:underline;
	padding-bottom: 3rem;
}

.main__message h3 {
	padding: 2rem 0 1rem;
}

.main__menu-cont {
	display: flex;
	justify-content: space-around;
}

.main__menu-meal {
	flex: 3;
	padding: 0 1rem;
}

.main__menu-meal h4 {
	text-decoration:underline;
}

.main__menu-meal li {
	list-style-type: none;
	padding: 2rem 0 1rem;
}

.main__menu-meal span {
	font-size: 1.2rem;
	display: block;
	text-align: left;
}

.main__carousel {
	display: flex;
	flex-wrap: wrap;
}

.main__carousel img {
	width: 33.33%;
}

.main__cta {
	padding: 4rem;
	display: flex;
	justify-content: center;
}

.main__cta img {
	width: 33.33%;
	padding: 0 0 0 3rem;
}

.form_cont {
	display: block;
}

form {
	display: flex;
	flex-direction: column;
}

label {
	display: flex;
	flex-direction: column;
	padding: 2rem 0;
	font-size: 2rem;
}

input, textarea {
	font-size: 2rem;
	border: none;
	border-bottom: 2px solid #a57fb3;
	/*border-left: 2px solid #a57fb3;*/
	outline: none;
}

