

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.container-fluid, .container, #container {
	margin: 0px auto;
}
.col1 {
	width: 6.6666666666667%;
}
.col2 {
	width: 15%;
}
.col3 {
	width: 23.333333333333%;
}
.col4 {
	width: 31.666666666667%;
}
.col5 {
	width: 40%;
}
.col6 {
	width: 48.333333333333%;
}
.col7 {
	width: 56.666666666667%;
}
.col8 {
	width: 65%;
}
.col9 {
	width: 73.333333333333%;
}
.col10 {
	width: 81.666666666667%;
}
.col11 {
	width: 90%;
}
.col12 {
	width: 98.333333333333%;
}
.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 {
	margin-left: 0.83333333333333%;
	margin-right: 0.83333333333333%;
	float: left;
	display: block;
}
.container, .container-large, #container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}



@media (max-width: 767px) {
	.col1,  .col2,  .col3,  .col4,  .col5,  .col6,  .col7,  .col8,  .col9,  .col10,  .col11,  .col12 {
		width: 100%;
		margin: 0px 0px 20px 0;
		float: none;
	}
}

@media (min-width: 768px) {
	.container, #container {
		width: 750px;
	}
	
}

@media (min-width: 992px) {
	.container, #container {
		width: 960px;
	}
	
}

@media (min-width: 1200px) {
	.container, #container{
		width: 1140px;
	}
}

.example-grid{
	background: #ccc;
}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */




html {
	font-size: 62.5%;
}
body {
	font-size: 1.4em; /* currently ems cause chrome bug misinterpreting rems on body element */
	line-height: 1.4;
	font-weight: 400;
	font-family: 'Roboto', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #2a2a2a;
}
/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-top: 0;
	margin-bottom: 2.5rem;
	font-weight: 300;
	color: #2a2a2a;
}
h1 {
	font-size: 3.6rem;
	line-height: 1.2;
	letter-spacing: 6px;
	text-transform: uppercase;
	display: inline-block;
}
h1:after{
	content: "";
	display: block;
	width: 100px;
	margin-top: 10px;
	border-bottom: 4px solid #75af47;
}

h1.h2:after{
	border-bottom: none;
	margin: 0px;
}
h2, .h2 {
	font-size: 3.6rem;
	line-height: 1;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: lowercase;
}
h3 {
	font-size: 1.8rem;
	line-height: 1.3;
	letter-spacing: 6px;
	text-transform: uppercase;
}
h3.alt{
	font-size: 2.5rem;
	line-height: 1.25;
	letter-spacing: 0px;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: lowercase;
}
.underline:after{
	content: "";
	width: 100px;
	display: block;
	height: 10px;
	margin: 0px auto;
	border-bottom: 10px solid #75af47;
}
h4 {
	font-size: 2.4rem;
	line-height: 1.35;
}
h5 {
	font-size: 1.8rem;
	line-height: 1.5;
}
h6 {
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing: 0;
}



@media (max-width: 767px){
	h1 {
		font-size: 3.0rem;
		line-height: 1.2;
	}
	h2 {
		font-size: 3rem;
		line-height: 1.25;
	}
	h3 {
		font-size: 3.0rem;
		line-height: 1.3;
	}
	p{
		margin-bottom: 1rem;
	}
}


p {
	margin-top: 0;
	line-height: 1.6em;
}

li{
	list-style: disc;
}
/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
	color: #75af47;
	text-decoration: none;
	transition: 0.5s;
}
a:hover {
	color: #373737;
}

strong{
	
}

blockquote{
	font-size: 2.2rem;
}

@media (max-width: 767px){
	blockquote{
		font-size: 1.3rem;
	}
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button, button, input[type="submit"], input[type="reset"], input[type="button"], .woocommerce ul.products li.product .button {
	display: inline-block;
	height: 68px;
	padding: 0 30px;
	color: #2a2a2a;
	text-align: center;
	font-size: 16px;
	font-weight: normal;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 68px;
	letter-spacing: 0rem;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border-radius: 0px;
	border: 1px solid #75af47;
	cursor: pointer;
	box-sizing: border-box;
	transition: 0.5s;
}
.woocommerce ul.products li.product .button {
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
	color: #2a2a2a;
	border-color: #2a2a2a;
	outline: 0;
}
.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary, .woocommerce ul.products li.product .button {
	color: #FFF;
	background-color: #75af47;
	border-color: #75af47;
}
.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
	color: #FFF;
	background-color: #2a2a2a;
	border-color: #2a2a2a;
}

.button.button-secondary, button.button-secondary, input[type="submit"].button-secondary, input[type="reset"].button-secondary, input[type="button"].button-secondary {
	color: #FFF;
	background-color: #2a2a2a;
	border-color: #2a2a2a;
}
.button.button-secondary:hover, button.button-secondary:hover, input[type="submit"].button-secondary:hover, input[type="reset"].button-secondary:hover, input[type="button"].button-secondary:hover, .button.button-secondary:focus, button.button-secondary:focus, input[type="submit"].button-secondary:focus, input[type="reset"].button-secondary:focus, input[type="button"].button-secondary:focus {
	color: #FFF;
	background-color: #75af47;
	border-color: #75af47;
}
/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
	height: 38px;
	padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 0px;
	box-shadow: none;
	box-sizing: border-box;
	width: 100%;
	color: #2a2a2a;
	font-family: 'Roboto', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}


/* Removes awkward default styles on some inputs for iOS */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
}
input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	border: 1px solid #75af47;
	outline: 0;
}
label, legend {
	display: block;
	margin-bottom: .5rem;
	font-weight: 600;
}
fieldset {
	padding: 0;
	border-width: 0;
}
input[type="checkbox"], input[type="radio"] {
	display: inline;
}
label > .label-body {
	display: inline-block;
	margin-left: .5rem;
	font-weight: normal;
}
/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
	list-style: circle inside;
}
ol {
	list-style: decimal inside;
}
ol, ul {
	padding-left: 2rem;
	margin-top: 0;
}
ul ul, ul ol, ol ol, ol ul {
	margin: 1.5rem 0 1.5rem 1.5rem;
	font-size: 90%;
}
li {
	margin-bottom: 1rem;
}
/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
	padding: .2rem .5rem;
	margin: 0 .2rem;
	font-size: 90%;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 4px;
}
pre > code {
	display: block;
	padding: 1rem 1.5rem;
	white-space: pre;
}
/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th, td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #E1E1E1;
}
th:first-child, td:first-child {
	padding-left: 0;
}
th:last-child, td:last-child {
	padding-right: 0;
}
/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button, .button {
	margin-bottom: 1rem;
}
input, textarea, select, fieldset {
	margin-bottom: 1.5rem;
}
pre, blockquote, dl, figure, table, p, ul, ol {
	margin-bottom: 2.5rem;
}
/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
	width: 100%;
	box-sizing: border-box;
}
.u-max-full-width {
	max-width: 100%;
	box-sizing: border-box;
}
.u-pull-right {
	float: right;
}
.u-pull-left {
	float: left;
}
/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
	margin-top: 3rem;
	margin-bottom: 3.5rem;
	border-width: 0;
	border-top: 1px solid #E1E1E1;
}
/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after, .row:after, .u-cf {
	content: "";
	display: table;
	clear: both;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Mobile */
@media (max-width: 767px) {
	
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 768px) {
}

/* Larger than tablet */
@media (min-width: 992px) {
	
}

/* Larger than desktop */
@media (min-width: 1200px) {
	
}

