* {
	padding: 0;
	margin: 0;
}

/*
* {
	border: dotted 1px darkred;
}

*:nth-child(odd) {
	border: dotted 1px blueviolet;
}*/



html {
	font-family: var(--main-font);
	color: var(--main-color);
	font-size: 10pt;
}

body {
	background: url(../img/back.jpg) 50% 0% ;
	background-size: var(--background-size);
	background-repeat: no-repeat;

	display: flex;
	flex-direction: column;

}

/* header */

header-veggie {
	height: 150px;

	display: flex;
	flex-direction: row;
	justify-content: flex-end;

	padding: var(--main-padding);


}

header-veggie nav {
	display: flex;
	align-items: center;
}

nav a {
	margin-right: 10px;
	text-transform: capitalize;
	text-decoration: none;
	padding: 15px 20px;
	color: var(--main-color);
}

nav a:last-child {
	margin-right: 0;
}

nav a:hover {
	padding: 14px 19px;
	border: 1px solid var(--main-color);

}

main {
	display: flex;
	flex-direction: column;

}

/* first block */

first-block {
	padding: var(--main-padding);

	height: calc(100vh - 150px);

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

slogan-block {
	display: flex;
	flex-direction: column;
	align-items: center;
}

slogan-block h2 {
	text-align: center;
	font-weight: 100;
}

slogan-block img {
	margin-top: 15px;
}

first-block slogan-block {
	margin-top: -75px;
}

/* second block */

second-block {
	padding: var(--main-padding);

	height: 250px;

	background: url(../img/back2.jpg);
	background-repeat: repeat-x;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

}

promo-block {
	flex-basis: 25%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
promo-block h3 {
	margin: 20px 0;
	text-transform: uppercase;
}

promo-block span {
	text-align: center;
	font-size: 9pt;
}


/* third block */



third-block {
	padding: var(--main-padding);


	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

}

third-block slogan-block {
	margin: 50px 0;
}

menu-sectors {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-flow: row wrap;

	margin-bottom: 70px;

	width: var(--menu-square-size);
}


/* Old dish */

dish-block {
	display: flex;
	flex-direction: row

}

dish-block img {
	height: var(--square-size);
	width: var(--square-size);
}

dish-description {
	background: #f8f8f8;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: var(--square-size);
	width: var(--square-size);
}

dish-description div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

dish-description h4,
dish-description span:last-child {
	color: var(--color-dark);
	font-weight: 600;

}

dish-description div div {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1px;
	background-color: var(--color-dark);
	width: 50px;
	margin: 10px 0;
}

dish-description span{
	text-align: center;
}

dish-description span:last-child {
	margin-top: 10px;
}







/* fourth block */

fourth-block {
	padding: var(--main-padding);

	background: url(../img/back3.jpg) 50% 0%;
	background-size: 1366px auto;
	background-repeat: no-repeat;

	display: flex;
	flex-direction: column;

	justify-content: center;

	height: 695px;
}

about-block {

	display: flex;
	flex-direction: column;
	align-items: center;

	width: 35%;
}

about-block span {
	margin: 30px 0;

	line-height: 22pt;
	text-align: center;
}

about-block img {
	align-self: flex-end;
}


/* fifth block */

fifth-block {
	padding: var(--main-padding);

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

}

fifth-block slogan-block {
	margin-top: 50px;
}


fifth-block nav {
	display: flex;
	justify-content: center;

	margin-top: 30px;
}


main-menu {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;

	margin: 50px 0 80px;
}

main-menu-block {
	display: flex;
	flex-direction: column;
	flex-basis: 45%;
}

dish-article {
	display: flex;
	flex-direction: column;
	width: 100%;

	margin-bottom: 20px;
}

dish-article:last-child {
	margin-bottom: 0;
}

dish-article-row {
	display: flex;
	flex-direction: row;
}

dish-article-row h4 {
	display: flex;
	position: relative;
	font-size: 13pt;
	font-weight: 600;

}

dish-article-row span {
	display: flex;
	font-size: 13pt;
}

dotted-row {
	margin: 0 8px;
	position: relative;
	top: -4px;
	flex: 1;
	border-bottom: dotted 1px var(--main-color);

}

dish-article-description {
	font-style: italic;
	margin-top: -2px;
}


/* sixth block */

sixth-block {
	padding: var(--main-padding);

	background: url(../img/back4.jpg) 50% 0%;
	background-size: 1366px auto;
	background-repeat: no-repeat;

	display: flex;
	flex-direction: column;

	align-items: flex-end;

}

info-block {
	display: flex;
	flex-direction: column;
	width: 40%;
}

info-block slogan-block {
	margin-top: 60px;
}

contact-block {
	margin-top: 50px;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

contact-block div h3 {
	text-transform: uppercase;
	margin-bottom: 15px;
}

contact-block div:last-child span {
	display: flex;
	flex-direction: column;
}

contact-block div span {
	line-height: 17pt;
}

contact-block div span a {
	color: var(--main-color);
	text-decoration: none;
}

contact-block div span a:hover {
	color: var(--main-color-hover);
}

form-block {
	margin: 70px 0;

	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

form-block h3 {
	text-transform: uppercase;
}

form-block-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;

}

form-input {
	background: inherit;
	position: relative;
	margin: 35px 0 0;
}



form-input:after {
	display: flex;
	position: absolute;
	content: "";
	height: 1px;
	width: 100%;
	background:  var(--main-color);
	left: 0;
	bottom: -7px;
}

input {
	background: inherit;
	border: none;
	outline: none;
	width: 100%;
	color:  var(--main-color);
	transition: all .3s;
	position: relative;
}

textarea {
	background: inherit;
	border: none;
	outline: none;
	width: 100%;
	color: var(--main-color);
	max-width: 100%;
	resize: none;
}

label, .textarea {
	position: absolute;
	font-style: italic;
	top: -5px;
	left: 20px;
	padding: 0;
	cursor: text;
	transition: .2s ease-out;
}

.textarea-1 {
	top: -18px;
}

.textarea-2 {
	top: -36px;
}

form-block button {
	margin-top: 50px;
	font-family: var(--main-font);
	color: var(--main-color);
	font-size: 10pt;
	background: inherit;
	text-transform: capitalize;
	padding: 15px 20px;
	border: 1px solid var(--main-color);
	width: 100px;
	align-self: center;
}


form-block button:hover {
	border: 1px solid var(--main-color-hover);

}







