@charset "utf-8";
/* CSS Document */

@font-face {
	font-family: Modern;
	src: url(fonts/modernpics-webfont.ttf),url(fonts/modernpics-webfont.eot),url(fonts/modernpics-webfont.svg),url(fonts/modernpics-webfont.woff);
}

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
	margin: 0;
	height: 100%;
	background-image: url(../images/bg20.png);
	background-size: cover;
	background-attachment: fixed;
	font-family: Arial, Helvetica, "sans-serif";
	line-height: 1.5em;
}

/** stick footer **/
#wrap {
  min-height: 100%;
  margin-bottom: -300px; 
}
#wrap:after {
  content: "";
  display: block;
}
#footer, #wrap:after {
	height: 300px; 
}

#footer {
    background: #e4cdcd;
	border-top: 2px solid darkgray;
	text-align: center;
}

/** navigation **/
.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}
.header img {
	margin-top: .3em;
	width: auto;
	height: 25px;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
}
.header li a:first-child {
	border-left: 1px solid #f4f4f4;
}
.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/** layout **/
main {
	width: 100%;
	padding: 2em;
	background-color: rgba(255,255,255,.9);
}
.content {
	position: relative;
	margin-top: 4em;
}
.clear {clear: both}
h1, h2 {
	color: darkblue;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif"
}
h2 {
	position: relative;
	top: -.5em;
}

.right {
	float: none;
	width: 100%;
	text-align: center;	
}
.left {
	float: none;
	width: 100%;
	margin-top: .5em;
	text-align: left;
}
#prod .left, #prod .right {
	float: none;
	width: 100%;
	text-align: left;
}
.special {
	height: 2px;
	margin: 3.5em 0 3em 0;
	text-align: center;
	color: darkblue;
}
.special span {
	position: relative;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight: bold;
	font-style: italic;
	font-size: 2em;
	margin: 1em 0;
	padding: 0 .3em;
}

.left img {
	border: 2px solid black;
	border-radius: 5px;
	width: 100%;
	height: auto;
}
.buy {text-align: center;}
.price {font-weight: bold;}
a.btn {
  background: #cfd3d6;
  background-image: -webkit-linear-gradient(top, #cfd3d6, #abacad);
  background-image: -moz-linear-gradient(top, #cfd3d6, #abacad);
  background-image: -ms-linear-gradient(top, #cfd3d6, #abacad);
  background-image: -o-linear-gradient(top, #cfd3d6, #abacad);
  background-image: linear-gradient(to bottom, #cfd3d6, #abacad);
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5px;
  font-family: Arial;
  color: #000;
  font-size: .8em;
  padding: .4em .8em;
  border: solid #d1cad1 1px;
  text-decoration: none;
}
a.button:active {
  background: #edeaed;
  background-image: -webkit-linear-gradient(top, #edeaed, #d1cfd1);
  background-image: -moz-linear-gradient(top, #edeaed, #d1cfd1);
  background-image: -ms-linear-gradient(top, #edeaed, #d1cfd1);
  background-image: -o-linear-gradient(top, #edeaed, #d1cfd1);
  background-image: linear-gradient(to bottom, #edeaed, #d1cfd1);
  text-decoration: none;
}
#footer .content {
	width: 90%;
	max-width: 1100px;
	margin: 1em auto;
	text-align: center;
	line-height: normal;
}
#footer a {
	color: black;
	text-decoration: none;
}
.icon {
	font-family: Modern;
	font-size: 2em;
	vertical-align: middle;
	line-height: 1.5em;
}
.CM {
	width: 100%;
	margin: 2em 0 0 0;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	background-color: rgba(255,255,255,0.1);
	text-align: center;
}
.CM img {
	position: relative;
	top: .4em;
	border:0
}



@media (min-width: 768px) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
	#wrap {
		margin-bottom: -220px;
	}
	#footer, #wrap:after {
		height: 220px;
	}
	main {
		width: 90%;
		max-width: 1100px;
		margin: 0 auto;
		padding: 2em;
		background-color: rgba(255,255,255,.9);
		box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
	}
	.right {
		float: right;
		width: 30%;
	}
	.left {
		float: left;
		width: 70%;
		padding-right: 2em;
	}
	#intro .left::first-letter {
		font-size: 2em;
		font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		font-style: italic;
	}
	.special {
		background: #f1f1f1;
		background: -moz-linear-gradient(left, #f1f1f1 0%, #303030 51%, #f1f1f1 100%);
		background: -webkit-linear-gradient(left, #f1f1f1 0%,#303030 51%,#f1f1f1 100%);
		background: linear-gradient(to right, #f1f1f1 0%,#303030 51%,#f1f1f1 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f1f1', endColorstr='#f1f1f1',GradientType=1 );
		height: 2px;
		margin: 3em 0;
		text-align: center;
	}
	.special span {
		display: inline-block;
		background: white;
		top: -1.5em;
	}
	#prod .left {
		float: left;
		width: 35%;
	}
	#prod .left img {
		margin-top: 5em;
		width: 100%;
	}
	#prod .right {
		float: right;
		width: 65%;
		text-align: left;
	}
	
	.buy {
		width: 90%;
		border-bottom: 1px dotted #333;
	}
	.price {
		float: left;
		position: relative; 
		top: .55em;
		width: 10%;
		background-color: white;
	}
	.button {
		float: right;
		position: relative; 
		top: .1em;
		padding-left: .4em;
		background-color: white;
	}

	.columns {
		width: 90%;
		max-width: 1100px;
		margin: 0 auto;
		text-align: center;
		display: flex;
	}
	.col {
		width: 33.33%;
		float: left;
		justify-content: center;
		align-items: center;
		display: flex;
		padding-top: .5em;
		line-height: 1.5;
	}
	address {font-style: normal}
	
}
