@charset "UTF-8";

/* C & M Monument Web Stylesheet */

/* Imports */
@import url("animate.css");
@import url("fonts.css");

/* Colors */

	Dark Grey: #555
	Footer Grey: #373633
    Pink: #E2856D
    Light Grey: #A7A9AB
    Medium Grey: #bbb

/* Selections */

::selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

::-moz-selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}


/* Basics */

html, body {
	width: 100%;
	font-family: 'proxima_nova_rgregular', Helvetica, sans-serif;
	color: #222;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	background-color: rgba(0, 0, 0, 0);
	margin: 0 auto;
}

.wrap {
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
}

.header {	
    background: url(../img/bg.jpg) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	margin: auto;
}

.single_header {	
    background: url(../img/bg_single.jpg) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	margin: auto;
}

.double_header {	
    background: url(../img/bg_double.jpg) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	margin: auto;
}

.bronze_header {	
    background: url(../img/bg_bronze.jpg) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	margin: auto;
}

.memorial_header {	
    background: url(../img/bg_memorial.jpg) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	margin: auto;
}

.about_header {	
    background: url(../img/bg_about.jpg) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	margin: auto;
}

.contact_header {	
    background: url(../img/bg_contact.jpg) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	margin: auto;
}

.order_header {	
    background: url(../img/bg_order.jpg) center bottom no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	margin: auto;
}

.head {
	width: 960px;
	height: 600px;
	margin: auto;
}

.left {
	float: left;
	width: 300px;
	text-align: center;
}

.right {
	float: right;
	width: 400px;
	text-align: right;
}

.seal {
	width: 250px;
	margin-top: 70px;
}

.logo {
	width: 500px;
	margin-top: 50px;
}

.badge_info {
	width: 900px;	
	color: #FFF;
	font-family: 'proxima_nova_ltregular', Helvetica, sans-serif;
	font-size: 1.03em;
	line-height: 1.25em;
	margin: 120px 0 0 0;
	text-shadow: 0 2px 0 rgba(0, 0, 0, .5);
}

.top {
	color: #FFF;
	font-family: 'proxima_nova_ltregular', Helvetica, sans-serif;
	font-size: 3em;
	font-weight: bold;
	line-height: 1.5em;
	border-bottom: #FFF solid 3px;
	width: 729px;
	margin: auto;
}

.bottom {
	color: #FFF;
	font-family: 'proxima_nova_rgbold', Helvetica, sans-serif;
	font-size: 5em;
	font-weight: bold;
	line-height: 1.25em;
}


/* Nav */

.nav {
	float: right;
	padding-top: 85px;
}

.nav li {
	float: left;
}

.nav li:last-child {
	padding-right: 0px;
}

.nav li a {
	padding: 12px;
	font-family: 'proxima_nova_rgregular', Helvetica, sans-serif;
	font-size: 1.2em;
	color: #fff;
	text-shadow: 0 2px 0 rgba(0, 0, 0, .2);
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

.nav li a:hover {
	color: #E2856D;
}

.nav li ul a:hover, 
.nav ul li li:hover > a  {
	color: #E2856D;
}



.nav li ul {
	    background: rgba(0, 0, 0, .3);
    	border-radius: 10px 10px 10px 10px;
    	-moz-border-radius: 10px 10px 10px 10px;
    	-webkit-border-radius: 10px 10px 10px 10px;
    	left: -999em;
    	margin: 10px 0 0 -5px;
		padding: 10px 0;
    	position: absolute;
    	width: 150px;
    	z-index: 9999;
    	box-shadow: 0 0 15px rgba(0, 0, 0, 1) inset; 
    	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 1) inset; 
    	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 1) inset;
}

.nav li:hover ul {
    	left: auto;
}

.nav li ul a {
		color: #FFF;
    	background: none;
    	border: 0 none;
    	margin: 0 0 0 0px;
		padding: 10px 0 10px 20px;
    	width: 130px;
		text-align: left;
		line-height: 20px;
		display: block;
    	box-shadow: none;
    	-moz-box-shadow: none;
    	-webkit-box-shadow: none;
    	border-bottom: 1px solid transparent;
    	border-top: 1px solid transparent;
}

.nav li li ul {
    	margin: -1px 0 0 160px;
    	-webkit-border-radius: 0 10px 10px 10px;
    	-moz-border-radius: 0 10px 10px 10px;
    	border-radius: 0 10px 10px 10px;
    	visibility:hidden;
}

.nav li li:hover ul {
    	visibility:visible;
}

.nav ul ul li:last-child > a {
	-moz-border-radius: 0 0 10px 10px;
	-webkit-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}

.nav ul ul li:first-child > a {
	-moz-border-radius: 10px 10px 0 0;
	-webkit-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
}

/* Sections */

.info {
	background: #FFF;
	text-align: center;
	padding: 0 0 20px 0;
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-ms-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-webkit-animation-delay: 1.5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
}

.showcase {
	background: rgba(0, 0 , 0 , 0.03);
	text-align: center;
	height: 300px;
	padding: 40px 20px;
	margin: 20px 0 0 0;
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-ms-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-webkit-animation-delay: 1.5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
}

.showcase_left {
	margin: 40px 0 0 0;
	width: 400px;
	border-top: 1px solid #ddd;
	float: left;
}

.showcase_right {
	margin: 0;
	width: 400px;
	height: 300px;
	float: right;
}

.about {
	background: #FFF;
	text-align: center;
	padding: 0 0 20px 0;
	margin: 60px auto 0 auto;
	font-family: 'proxima_nova_ltregular', Helvetica, sans-serif;
	font-size: 1.3em;
	line-height: 1.3em;
	color: #777;
	width: 650px;
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-ms-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-webkit-animation-delay: 1.5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	border-top: 2px solid #ddd;
}

.mission {
    background: url(../img/mission_bg.jpg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	text-align: left;
	padding: 70px;
	margin: 30px auto 0 auto;
	font-family: 'proxima_nova_ltregular', Helvetica, sans-serif;
	font-size: 3em;
	line-height: 1.2em;
	color: #FFF;
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-ms-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-webkit-animation-delay: 1.5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
	text-shadow: 0 2px 0 rgba(0, 0, 0, .5);
}

.title {
	margin-top: -11px;
}

.title span {
	font-family: 'proxima_nova_ltregular', Helvetica, sans-serif;
	z-index: 999;
	padding: 10px;
	font-size: 3em;
	text-transform: uppercase;
	text-shadow: 0 2px 0 #fff;
	color: #878787;
	background: #f9f9f9;
}

.medium_title {
	margin-top: -33px;
}

.medium_title span {
	font-family: 'proxima_nova_ltregular', Helvetica, sans-serif;
	z-index: 999;
	font-size: 4em;
	padding: 10px;
	line-height: 2em;
	text-transform: uppercase;
	text-shadow: 0 2px 0 #fff;
	color: #555;
	background: #FFF;
}

h3 {
	font-family: 'proxima_nova_ltregular', Helvetica, sans-serif;
	font-size: .4em;	
}

.showcase_comment {
	font-family: 'proxima_nova_ltregular', Helvetica, sans-serif;
	font-size: 3em;
	padding: 30px 10px;
}

.block {
	margin-top: 20px;
	width: 20%;
	padding: 1.5%;
	display: inline-block;
}

.block .ic {
	font-size: 7.5em;
	font-family: 'Avenir';
	color: #bbb;
	text-shadow: 0 2px 0 #fff;
	display: inline-block;
}

#snap .ic {
	margin-top: 40px;
}

#edit .ic {
	
}

#share .ic {
	font-size: 9em;
}

.block h2 {
	font-size: 2em;
	color: #444;
	text-shadow: 0 2px 0 #fff;
	margin-top: 30px;
}

.block .text {
	padding-top: 15px;
	font-size: 1em;
	line-height: 1.2em;
	text-shadow: 0 1px 0 #fff;
	color: #777;
}


/* Footer */

footer {
	background: #161817;
	height: 220px;
}

.footer_logo {
	max-width: 380px;	
}

.footer_left {
	width: 400px;
	float: left;
	padding: 20px
}

.sales {
	font-family: 'proxima_nova_ltregular';
	font-size: 1.3em;
	line-height: 1.3em;
	color: #A7A9AB;
	padding: 30px 0 0 0;
}

.sales_color {
	color: #E2856D;
}

.footer_right {
	width: 380px;
	float: right;
	padding: 45px 0 0 0;
}

.info_column {
	width: 140px;
	font-family: 'proxima_nova_rgregular';
	font-size: 1.2em;
	color: #A7A9AB;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
	float: left;
}

.products_column {
	width: 120px;
	font-family: 'proxima_nova_rgregular';
	font-size: 1.2em;
	color: #A7A9AB;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
	float: left;
}

.more_column {
	width: 120px;
	font-family: 'proxima_nova_rgregular';
	font-size: 1.2em;
	color: #A7A9AB;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
	float: left;
}

.tiny {
	padding-top: 15px;
}

.tiny li {
}

.tiny li a {
	font-family: 'proxima_nova_rgregular';
	font-size: 1em;
	line-height: 1.5em;
	color: #E2856D;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

.tiny li a:hover {
	color: #444;
}

.copy {
	background: #373633;
	height: 75px;
	padding: 25px;	
}

.copy_left {
	float: left;
	font-family: 'proxima_nova_ltregular';
	font-size: 1.1em;
	color: #A7A9AB;
	padding-top: 30px;
	text-align: left;
}

.copy_right {
	float: right;
	font-family: 'proxima_nova_ltregular';
	font-size: 1.1em;
	color: #A7A9AB;
	padding-top: 30px;
	text-align: right;
}


/* Product */

.products {
	background: #FFF;
	text-align: center;
	padding: 30px 0 30px 0;
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-ms-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-webkit-animation-delay: 1.5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
}

.product img {
	width: 280px;
	padding: 20px;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.product:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.product_descript {
	width: 280px;
	padding: 0 20px;
	text-align: center;
	font-family: 'proxima_nova_ltregular';
	font-size: .9em;
	line-height: 1.3em;
	color: rgba(0, 0, 0, 0.6);
	float: left;
}

.product_wrap {
	width: 280px;
	float: left;
	padding: 0 20px 20px 20px;	
}

.product_clear {
	clear: both;	
}

.about_info {
	background: #FFF;
	text-align: justify;
	font-family: 'proxima_nova_ltregular';
	font-size: 1.1em;
	line-height: 1.5em;
	color: rgba(0, 0, 0, 0.8);
	padding: 30px 75px;
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-ms-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-webkit-animation-delay: 1.5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
}

.contact_info {
	background: #FFF;
	text-align: justify;
	font-family: 'proxima_nova_ltregular';
	font-size: 1.1em;
	line-height: 1.5em;
	color: rgba(0, 0, 0, 0.8);
	padding: 30px 75px;
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-ms-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-webkit-animation-delay: 1.5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease;
}

.contact_icon {
	width: 115px;
	height: 115px;	
}

.contact_information {
	width: 300px;
	font-family: 'proxima_nova_ltregular';
	font-size: 1.1em;
	line-height: 1.5em;
	color: rgba(0, 0, 0, 0.8);
	text-align: center;
	padding: 30px;
	display: inline;
}

.contact_information_header {
    font-family: 'proxima_nova_rgbold';
}

.contact_divide {
	width: 85%;
	border-top: solid 1px rgba(0, 0, 0, 0.1);
	margin: 40px auto 0 auto;
}

.contact_linkage li {
}

.contact_linkage li a {
	font-family: 'proxima_nova_rgregular';
	font-size: 1em;
	line-height: 1.2em;
	color: #E2856D;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

.contact_linkage li a:hover {
	color: #444;
}


/* Cute */

#my-cute-slider {
	position: relative;
}

#slider-wrapper {
	position: relative;
	min-width: 300px;
	max-width: 400px;
	margin: 0 auto;
}

/* End Cute */


/* Modal */

#lean_overlay {
    position: fixed;
    z-index:100;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #000;
    display: none;
}

.modal_header {
	font-size: 1.5em;
	font-weight: bold;	
}

#terms {
    width: 600px;
	padding: 30px; 
    display:none;
	background: #FFF;
	font-size: 1.1em;
	line-height: 1.3em;
    border-radius: 5px; 
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.7); 
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7); 
	-moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);   
}

#terms p { color: #666; text-shadow: none; }

.terms_headers { font-family: 'proxima_nova_rgbold'; } 

#privacy {
    width: 600px;
	padding: 30px; 
    display:none;
	font-size: 1.1em;
	background: #FFF;
	line-height: 1.3em;
    border-radius: 5px; 
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.7); 
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7); 
	-moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);   
}

#privacy p { color: #666; text-shadow: none; }

/* End Modal */


/* Order Form */

.online_order_header {
	font-family: 'proxima_nova_rgregular';
	font-size: 2em;
	padding: 0 0 20px 0;
}

