body * {
    font-family: 'Open Sans', sans-serif;
    color: #2E3142;
}

body p {
	font-family: 'Tinos', serif;
}

.burger, .close-menu {
	display: none;
}

header {
	box-shadow: 0px 4px 25px rgba(46, 49, 66, 0.4);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 100;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 35px 0;

	transition: padding 0.7s;
    -webkit-transition: padding 0.7s;
    -moz-transition: padding 0.7s;
}

header .pageScrolled {
	padding: 0;
}

nav ul {
	display: flex;
	padding-left: 0;
	list-style-type: none;
	margin: 0;
	height: 100%;
}

nav ul li:not(:last-of-type) {
	margin-right: 60px;
}

nav a {
	transition-duration: .3s;
	padding: 30px 0;
	display: block;
	color: #2E3142;
}

nav a:hover {
	text-decoration: none;
	color: #FFA800;
}

.header-contacts ul {
	display: flex;
	padding-left: 0;
	list-style-type: none;
	margin: 0;
}

.header-contacts ul li:not(:last-of-type) {
	margin-right: 40px;
}

.header-contacts a {
	color: #2E3142;
	transition-duration: .3s;
	padding: 30px 0;
	display: block;
}

.header-contacts a:hover {
	text-decoration: none;
	color: #FFA800;
}

.banner {
	margin-top: 154px;
	background-image: url(/img/84285.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 0;
	padding: 350px 0 200px 200px;
}

.banner:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(46, 49, 66, 0.35);
	z-index: 1;
}

.banner .container {
	z-index: 2;
	position: relative;
}

.banner h1 {
	color: #fff;
	font-size: 54px;
}

.banner h1 span {
	font-size: 48px;
	color: #fff;
}

.about {
	padding: 100px 0;
}

.about-heading {
	text-align: center;
	font-size: 36px;
}

.about-us {
	margin-top: 45px;
	display: flex;
}

.about-us img {
	width: 48%;
	margin-right: 4%;
}

.about-us div {
	width: 48%;
}

.about h2 {
	margin-bottom: 25px;
}

.about-delivery {
	margin-top: 45px;
	display: flex;
	align-items: center;
}

.about-delivery div {
	width: 48%;
	margin-right: 4%;
}

.about-delivery img {
	width: 48%;
}

.catalog {
	padding: 100px 0;
	background: #F2F2F2;
}

.catalog-headings {
	text-align: center;
}

.catalog-headings h2 {
	font-size: 36px;
}

.catalog-headings div {
	font-size: 21px;
	font-family: 'Tinos', serif;
}

.catalog-content {
	display: flex;
	flex-wrap: wrap;
}

.goods-margin {
	margin: 70px 5% 0 5%;
}

.goods-current {
	margin-top: 70px;
	width: 30%;
}

.goods-current img {
	width: 100%;
}

.goods-current h3 {
	margin-top: 25px;
	margin-bottom: 15px;
}

.current-disclamer {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
}

.current-disclamer span {
	font-family: 'Tinos', serif;
	font-size: 20px;
}

.goods-button {
	display: flex;
	justify-content: center;
}

.goods-button a {
	color: #2E3142;
	background: #FFA800;
	padding: 12px 60px;
	border-radius: 5px;
	font-size: 18px;
	transition-duration: .3s;
}

.goods-button a:hover {
	text-decoration: none;
	background: #2E3142;
	color: #FFA800;
}

.contacts {
	padding: 100px 0;
}

.contacts-heading {
	text-align: center;
	font-size: 36px;
	margin-bottom: 70px;
}

.contacts-content {
	display: flex;
}

.contacts-info {
	width: 45%;
	margin-right: 5%;
}

.contacts-slogan {
	font-size: 28px;
	margin-bottom: 200px;
}

.contacts-data {
	display: flex;
	flex-direction: column;
}

.contacts-data a {
	font-family: 'Tinos', serif;
	font-size: 24px;
	color: #2E3142;
	margin-bottom: 10px;
	transition-duration: .3s;
}

.contacts-data a:hover {
	text-decoration: none;
	color: #FFA800;
}

.contacts-form {
	width: 50%;
}

.contacts-form > div {
	font-size: 24px;
	margin-bottom: 5px;
}

form {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

form input {
	border: none;
	border-bottom: 1px solid #2E3142;
	width: 430px;
}

form select {
	padding-top: 15px;
	border: none;
	border-bottom: 1px solid #2E3142;
	width: 430px;
 	-moz-appearance: none;
 	-webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

.select-wrapper {
	position: relative;
}

.select-wrapper:after {
	content: '';
	position: absolute;
	top: 21px;
	right: 0;
	width: 13px;
	height: 13px;
	background-image: url('/img/arrow.svg');
	background-size: contain;
	background-position: center;
}

form span {
	font-family: 'Tinos', serif;
	margin-top: 35px;
}

form input[type="submit"] {
	border: none;
	margin-top: 35px;
	width: auto;
	color: #2E3142;
	background: #FFA800;
	padding: 12px 60px;
	border-radius: 5px;
	font-size: 18px;
	transition-duration: .3s;
}

input[type="submit"]:hover {
	text-decoration: none;
	background: #2E3142;
	color: #FFA800;
}

footer {
	box-shadow: 0px 4px 25px rgba(46, 49, 66, 0.4);
}

footer .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 35px 0;
}

footer .container div {
	font-family: 'Tinos', serif;
	margin-top: 30px;
}

footer br {
	display: none;
}

@media screen and (max-width: 767px) {
	.burger {
		display: block;
		width: 30px;
		height: 30px;
	}

	header .container {
		padding: 10px 15px;
	}

	.header-logo {
		width: 175px;
	}

	.header-logo img {
		max-width: 100%;
	}

	nav, .header-contacts {
		display: none !important;
	}

	.menuActive {
		display: flex  !important;
	}

	nav.menuActive {
		position: fixed;
		top: 0;
		background: #fff;
		left: 0;
		height: 100vh;
		width: 100vw;
	}

	nav ul {
		flex-direction: column;
		width: 100%;
		height: 50%;
		justify-content: center;
	}

	nav ul li:not(:last-of-type) {
		margin: 0;
	}

	.header-contacts.menuActive {
		position: fixed;
		top: 50vh;
		left: 0;
		width: 100%;
		transform: translateY(-55px);
	}

	.header-contacts ul {
		flex-direction: column;
		width: 100%;
	}

	.header-contacts ul li:not(:last-of-type) {
		margin: 0;
	}

	nav a, .header-contacts a {
		text-align: center;
		display: block;
		padding: 20px 0;
	}

	.close-menu {
		display: block;
		position: absolute;
		right: 20px;
		top: 20px;
		width: 20px;
		height: 20px;
		padding: 0;
	}

	.banner {
		margin-top: 71px;
		padding: 60px 10px;
	}

	.banner h1, .banner h1 span {
		font-size: 28px;
	}

	.about {
		padding: 30px 0;
	}

	.about-heading {
		font-size: 24px;
	}

	.about-us {
		margin-top: 25px;
		flex-direction: column;
	}

	.about-us img {
		width: calc(100% + 30px);
		margin-left: -15px;
	}

	.about-us div {
		width: 100%;
		margin-top: 15px;
	}

	.about-delivery {
		margin-top: 25px;
		flex-direction: column;
		align-items: normal;
	}

	.about-delivery div {
		order: 2;
		width: 100%;
		margin-right: 0;
		margin-top: 15px;
	}

	.about-delivery img {
		order: 1;
		width: calc(100% + 30px);
		margin-left: -15px;
	}

	.about h2 {
		margin-bottom: 15px;
		font-size: 24px;
	}

	.catalog {
		padding: 30px 0;
	}

	.catalog-headings h2 {
		font-size: 24px;
	}

	.catalog-headings div {
		font-size: 18px;
	}

	.catalog-content {
		flex-wrap: nowrap;
		flex-direction: column;
	}

	.goods-current {
		margin-top: 40px;
		width: 100%;
	}

	.goods-margin {
		margin: 40px 0 0 0;
	}

	.goods-current h3 {
		font-size: 22px;
		margin-top: 15px;
		margin-bottom: 10px;
	}

	.current-disclamer {
		margin-bottom: 15px;
	}

	.current-disclamer span {
		font-size: 16px;
	}

	.goods-button a {
		padding: 8px 35px;
	}

	.contacts {
		padding: 30px 0;
	}

	.contacts-heading {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.contacts-content {
		flex-direction: column;
	}

	.contacts-info {
		width: 100%;
	}

	.contacts-slogan {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.contacts-data a {
		font-size: 20px;
	}

	.contacts-form {
		width: 100%;
		margin-top: 20px;
	}

	.contacts-form > div {
		font-size: 18px;
	}

	form span {
		margin-top: 30px;
	}

	form input {
		width: 100%;
		-webkit-appearance: none;
	}

	.select-wrapper {
		width: 100%;
	}

	form select {
		width: 100%;
		-webkit-appearance: none;
	}

	form input[type="submit"] {
		padding: 8px 35px;
		-webkit-appearance: none;
	}

	footer img {
		width: 175px;
	}

	footer .container div {
		text-align: center;
		font-size: 14px;
	}

	footer br {
		display: block;
	}
}