@import url('https://fonts.googleapis.com/css?family=Roboto');

* {
	margin: 0;
	padding: 0;
	color: #1d1d1d;
	box-sizing: border-box;
}

body {
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
}
a {
	color: #1d1d1d;
	text-decoration: none;
}
h1 {
	font-size: 50px;
	color: #fff;
}
h2 {
	font-size: 32px;
}
h3 {
	font-size: 22px;
	font-weight: bolder;
}
button {
	outline: none;
	cursor: pointer;
}
.empty_input::-webkit-input-placeholder {
	color: #FF4242;
	font-weight: 300;
} 
.empty_input::-moz-placeholder {
	color: #FF4242;
	font-weight: 300;
} 
.empty_input:-ms-input-placeholder {
	color: #FF4242;
	font-weight: 300;
} 
.empty_input::placeholder {
	color: #FF4242;
	font-weight: 300;
}
.overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	background: #000;
	opacity: 0.7;
	display: none;
	animation: overlay 1s linear;
	cursor: pointer;
}
@keyframes overlay {
	from {opacity: 0}
	to {opacity: 0.7}
}
.popup {
	position: fixed;
	z-index: 1000;
	margin: 5% 35%;
	width: 30%;
	height: 300px;
	background-color: #fff8de;
	border-radius: 4px;
	display: none;
}
.close_popup {
	font-weight: 900;
	font-size: 20px;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -20px;
	right: -20px;
	height: 40px;
	width: 40px;
	color: #000;
	background-color: #fff8de;
	border: 3px #ae1212 solid;
	border-radius: 50%;
	z-index: 1001;
	cursor: pointer;
}
#transport {
	display: none;
	height: 500px;
}
.popup form {
	width: 100%;
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}
.popup p {
	color: #242424;
	font-size: 18px;
}
.popup label.checkbox {
    cursor: pointer;
}
.popup label {
	max-width: 300px;
	display: block;
	text-align: justify;
}
.popup input {
	width: 300px;
	height: 50px;
	font-size: 18px;
	color: #242424;
	background-color: rgba(0,0,0,0.1);
	border: 1px solid #ffd277;
	border-radius: 4px;
	padding-left: 20px;
	outline: none;
}
.popup textarea {
	color: #242424;
	background-color: rgba(0,0,0,0.1);
	border: 1px solid #ffd277;
	border-radius: 4px;
	padding-left: 20px;
	outline: none;
	width: 300px;
	height: 100px;
	padding: 10px;
	resize: none
}

.popup input[type="submit"] {
	padding: 0;
	background: #ffd277;
	cursor: pointer;
	color: #fff;
}
.popup input[type="submit"]:hover {
	background: none;
	color: #242424;
}
.popup_label {
	text-align: left;
	width: 300px;
	margin-top: 10px;
}
#discount {
	height: 400px;
}
#discount select {
	width: 300px;
	height: 50px;
	font-size: 18px;
	color: #242424;
	background-color: rgba(0,0,0,0.1);
	border: 1px solid #ffd277;
	border-radius: 4px;
	padding-left: 20px;
	outline: none;
	cursor: pointer;
}
#discount option:hover {
	background-color: #ffd277;
}
#email {
	height: 550px;
}
#email textarea {
	height: 200px;
}
/*------------------------HEADER---------------------------*/
header {
	height: 150px;
	width: 100%;
	background-color: #fff;
	font-size: 14px;
}
header .header_wrapper {
	max-width: 1155px;
	height: 100%;
	margin: 0 auto;
	font-weight: 500;
	line-height: 1.3em;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.header_wrapper>div {
	display: flex;
	flex-direction: column;
}
.header_wrapper button {
	font-size: 16px;
}
header .logo {
	display: flex;
	align-items: center;
}
header .header_item2 {
	max-width: 240px;
	height: 113px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.header_item2 button {
	width: 240px;
	height: 40px;
	font-weight: 600;
	background-color: #fff;
	border: #ffd277 solid 1px;
	border-radius: 4px;
}

.header_item2 button:hover, .header_item3 button:hover {
	box-shadow: 0px 0px 9px rgba(0,0,0,.15);
	font-weight: 600;
}
header .header_item3 {
	max-width: 272px;
	height: 113px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.header_item3>div {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.envelope {
	height: 21px;
	line-height: 21px;
}
.header_item3 button {
	width: 272px;
	height: 40px;
	margin-top: 15px;
	font-weight: 600;
	background-color: #fff;
	border: #ffd277 solid 1px;
	border-radius: 4px;
}
.header_item3 img {
	margin-right: 11px;
}
header .header_item4 {
	max-width: 262px;
	height: 119px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.callback {
	font-weight: 600;
	width: 262px;
	height: 45px;
	background-color: #ffd277;
	color: #fff;
	border: none;
	border-radius: 4px;
	margin-bottom: 1px;
}
.header_item4 .callback:hover {
	background-color: #fff;
	color: #000;
	border: #ffd277 solid 1px;
}
.phone {
	font-size: 16px;
	line-height: 21px;
	font-weight: 600;
}

/*------------------------END OF HEADER---------------------------*/
/*------------------------NAV---------------------------*/

.nav {
	width: 100%;
	min-width: 250px;
	height: 75px;
	overflow: hidden;
	background-color: rgba(0,0,0,0.46);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 180px;
	left: 0;
	right: 0;
	transition-property: height;
	transition-duration: .2s;
	z-index: 100;

}
.nav .fa {
	margin-right: 10px;
	padding: 5px;	
	border-radius: 2px;
	font-size: 19px;
	cursor: pointer;
	transition-property: background-color;
	transition-duration: .2s;
}
.nav .fa:hover {
	background-color: #ffd277;
}
.nav .fa-close {
	display: none;
}
.nav_list {
	width: 803px;
	margin: 0 10px;
	display: flex;
	justify-content: space-between;
}
.nav_list a {
	color: #fff;
}
.nav_list li {
	height: 32px;
	line-height: 32px;
	display: inline-block;
	font-size: 20px;
	margin: auto 5px;
	cursor: pointer;
}
.nav_list li:hover {
	border-bottom: #ffd277 3px solid;
}
.nav.default {
	position: fixed;
	top: 0;
	height: 50px;
}
.now {
	border-bottom: #ffd277 3px solid;
}
.send_email:hover {
	cursor: pointer;
	color: #ffd277;
}