body {
	font-family: 'Montserrat', sans-serrif;
}
/*
 *
 * products.html
 *
 */

header {
	background: #BBBBBB;
	padding: 20px 0;
}

.box {
	position: relative;
	width: 940px;
	margin: 0 auto;
}

nav {
	position: absolute;
	top: 110px;
	right: 0px;
}

nav li {
	display: inline;
	margin: 0 0 0 15px;
}

nav a {
	text-transform: uppercase;
	color: #000000;
	font-weight: bold;
	font-size: 26px;
	text-decoration: none;	
}

.products {
	width: 940px;
	margin: 0 auto;
	padding: 50px 0;
}

.products li {
	/* background-color: #CCCCCC; */

	display: inline-block;
	text-align: center;
	width: 30%;
	vertical-align: top;
	margin: 0 1.5%;
	padding: 30px 20px;
	box-sizing: border-box;
	border: 2px solid #000000;
	border-radius: 10px 30px 50px 100px;
}

.products h2 {
	font-size: 30px;
	font-weight: bold;
}

.product-description {
	font-size: 18px;
}

.product-price {
	font-size: 22px;
	font-weight: bold;
	margin-top: 10px;
}

nav a:hover {
	color: #C78C19;
	text-decoration: underline;
}

.products li:hover {
	border-color: #C78C19;
}

.products li:active {
	border-color: #088C19;
}

.products li:hover h2 {
	font-size: 50px;
}

footer {
	text-align: center;
	background: url("../img/bg.jpg");
	padding: 40px 0;
}

.copyright {
	color: #FFFFFF;
	font-size: 13px;
	margin: 20px; 0 0;
}

/*
 *
 * contacts.html
 *
 */

/* main { */
/* 	/\* width: 940px; *\/ */
/* 	/\* margin: 0 auto; *\/ */
/* } */

form {
	margin: 40px;
}

form label, form legend {
	display: block;
	font-size: 20px;
	margin: 0 0 10px;
}

.default-input {
	display: block;
	margin: 0 0 20px;
	padding: 10px 25px;
	width: 50%;
}

.checkbox {
	margin: 20px 0;
}

.send {
	width: 40%;
	padding: 15px 0;
	background: orange;
	color: white;
	font-weight: bold;
	font-size: 18px;
	border: none;
	border-radius: 5px;
	transition: 2s all;
	cursor: pointer;
}

.send:hover {
	background: darkorange;
	transform: scale(1.2);
}

table {
	margin: 20px 40px;
}

table caption {
	color: #335555;
	font-weight: bold;
	font-size: 35px;
	margin: 0 0 10px 0;
	text-transform: uppercase;
}

thead {
	background: #555555;
	color: #FFFFFF;
	font-weight: bold;
}

td, th {
	border: 1px solid #000000;
	padding: 8px 15px;
}

/*
 *
 * index.html
 *
 */

.banner {
	width: 100%
}

.main {
	padding: 3em 0;
	background: #FEFEFE;
	width: 940px;
	margin: 0 auto;
}

.main-title {
	text-align: center;
	font-size: 2em;
	margin: 0 0 1em;
	clear: left;
}

.main-title:before {
	content: "[";
}

.main-title:after {
	content: "]";
}


.main p {
	margin: 0 0 1em;
}

.main strong {
	font-weight: bold;
}

.main em {
	font-style: italic;
}

.utensils {
	width: 120px;
	float: left;
	margin: 0 20px 20px 0;
}

.img-benefits {
	width: 60%;
}

.map {
	padding: 3em 0;
	background: linear-gradient(#FEFEFE, #888888);
}

.map p {
	margin: 0 0 2em;
	text-align: center;
}

.map-content {
	width: 940px;
	margin: 0 auto;
}

.video {
	width: 560px;
	margin: 1em auto;
}

.benefits {
	padding: 3em 0;
	background: #888888;
}

.benefits-content {
	width: 640px;
	margin: 0 auto;
}

.benefits-list {
	width: 40%;
	display: inline-block;
	vertical-align: top;
}

.item {
	line-height: 1.5;
}

.item:first-child {
	font-weight: bold;
}

.item:before {
	content: "★";
}

.image-benefits {
	width: 60%;
	opacity: 1;
	transition: 400ms;
	/* box-shadow: 10px 10px 10px 0 #000000, 10px 10px #CCCCCC, -15px -15px #FFAAFF; */
	box-shadow: 10px 10px 10px 0 #000000;
}

.image-benefits:hover {
	opacity: 0.5;
}

/*
 *
 * mobile
 *
 */

@media screen and (max-width: 480px) {
	.box, .main, .benefits-content, .map-content, .video {
		width: auto;
	}

	h1 {
		text-align: center;
	}

	nav {
		position: static;
	}

	.benefits-list, image-benefits {
		width: 100%;
	}
}
