@charset "UTF-8";
/* CSS Document */

html, body {
	margin: none;
	background: #fff;
}

/* border */
#top, #bottom, #left, #right {
	background: #f5f5f5;
	z-index: 2000;
	}
			
#left, #right {
	position: fixed;
	top: 0; bottom: 0;
	width: 30px;
	}
				
#left { left: 0; }
				
#right { right: 0; }
				
#top, #bottom {
	position: fixed;
	left: 0; right: 0;
	height: 30px;
				}

#top { top: 0; }
#bottom { bottom: 0; }

/* general */
.border {
	border: solid 1pt #f5f5f5;
}

.border-bottom {
    border-bottom: solid 6pt #87a581;
}

/* type */
p {
    font-family: "big-caslon-fb", serif; 
	text-decoration:none;
	font-size:12pt;
	color: #143325;
	line-height: 18pt;
	margin: none;
}

p2 {
    font-family: "big-caslon-fb", serif; 
	text-decoration:none;
	font-size:14pt;
	color: #143325;
	line-height: 21pt;
	margin: none;
}

h1 { 
	color: #d70e1d;
	font-family: "commuters-sans", "sans-serif";
	text-decoration:none;
	font-size:42px;
    font-weight: 500;
    text-transform: uppercase;
}

h2 { 
	font-family: "nautica", "serif";
	color: #143325;
	font-size:28px;
	font-weight: 500;
}

h3 { 
	color: #d70e1d;
	font-family: "commuters-sans", "sans-serif";
	text-decoration:none;
	font-size:24px;
    font-weight: 500;
    text-transform: uppercase;
}

h4 { 
	color: #d70e1d;
	font-family: "commuters-sans", "sans-serif";
	text-decoration:none;
	font-size:18px;
    font-weight: 500;
    text-transform: uppercase;
}

h5 { 
	color: #d70e1d;
	font-family: "commuters-sans", "sans-serif";
	text-decoration:none;
	font-size:12px;
    font-weight: 700;
    text-transform: uppercase;
}

h6 {
    font-family: "commuters-sans", "sans-serif";
	color: #143325;
	text-decoration:none;
	font-size:14px;
    font-weight: 700;
    text-transform: uppercase;
}

em {
  color: #143325;
}

a {
	text-decoration: none;
	font-style: normal;
	color: #d70e1d;
}

/* mouse over link */
a:hover {
    color: #143325;
    text-decoration: none;
}

/* selected link */
a:active {
    color: #143325;
    text-decoration: none;
} 

/* Modifier: `uk-icon-button`
 ========================================================================== */
.uk-icon-button {
  box-sizing: border-box;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #87a581;
  line-height: 30px;
  color: #fff;
  font-size: 15px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-icon-button:hover,
.uk-icon-button:focus {
  background-color: #87a581;
  color: #143325;
  /* 2 */
  outline: none;
}
/* Active */
.uk-icon-button:active {
  background-color: #143325;
  color: #143325;
}

hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  margin: 30px 0;
  border: 0;
  border-top: 2px solid #87a581;
}
.hr2 {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  margin: 15px 0;
  border: 0;
  border-top: 2px solid #87a581;
}

.uk-button {
	width: 100%;
	margin: 10px;
	height: auto;
}

.uk-panel-box{
	padding: 20px;
    background: #f5f5f5;
}

.padding20 {
    padding: 20px;
}

/* nav */
.uk-navbar {
	z-index: 5000;
	position: fixed;
	height: 80px;
	top: 0;
	left: 0;
	right: 0;
	background: #f5f5f5;
}

.uk-navbar-nav {
	padding-top:20px;
}

.uk-navbar-nav > li > a {
  display: block;
    background-color: none;
  box-sizing: border-box;
  text-decoration: none;
  /* 1 */
  height: 40px;
  padding: 0 27px;
  line-height: 40px;
  /* 2 */
  color: #143325;
  font-size: 14px;
  font-family: "big_caslonmedium", Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
  font-weight: normal;
	list-style: none;
}

.uk-form-icon > [class*='uk-icon-'] {
  /* 1 */

  line-height: auto;
  /* 2 */
  color: #143325;
  
}

/* Appear not as link */
.uk-navbar-nav > li > a[href='#'] {
  cursor: text;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-open > a {
  background-color: none;
  color: #87a581;
  /* 3 */
  outline: none;
}
/* OnClick */
.uk-navbar-nav > li > a:active {
  background-color: none;
  color: #87a581;
}
/* Active */
.uk-navbar-nav > li.uk-active > a {
  background-color: none;
  color: #87a581;
}

.uk-icon-arrow-down {
	color: #87a581;
	background: #143325;
}

/* ========================================================================
   Component: Button
 ========================================================================== */

.uk-button {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: #f5f5f5;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 12px;
  background: #87a581;
  vertical-align: middle;
  /* 8 */
  line-height: 30px;
  /* 9 */
  min-height: 30px;
  /* 10 */
  font-size: 1rem;
  /* 11 */
  text-decoration: none;
  text-align: center;
}
.uk-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.uk-button:hover,
.uk-button:focus {
  background-color: #87a581;
  color: #143325;
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
}
/* Active */
.uk-button:active,
.uk-button.uk-active {
  color: #143325;
}

#about {
	padding: 40px 0;
    background: #F0F0F0;
	/*background: #87a581;*/
	list-style: none;
}

#about p {
	color: #143325;
}

#about h1 {
	color: #d70e1d;
}

#testimonials {
	padding: 40px 0;
	background: #E7E7E7;
	list-style: none;
}

#order {
	padding: 40px 0;
	background: #E0E0E0;
	list-style: none;
}

#products {
	padding: 40px 0;
    margin-top: 79px;
	background: #E0E0E0;
	list-style: none;
    text-decoration: none;
}

#products li a{
	list-style: none;
    text-decoration: none;
    color: #143325;
}

#products li a:hover {
	list-style: none;
    text-decoration: none;
    color: #87a581;
}

#shop {
	padding: 40px 0;
    margin-top: 79px;
	background: #E0E0E0;
	list-style: none;
    text-decoration: none;
}

#shop li a{
	list-style: none;
    text-decoration: none;
    color: #143325;
}

#shop li a:hover {
	list-style: none;
    text-decoration: none;
    color: #87a581;
}

#wholesale {
	padding: 40px 0;
    margin-top: 79px;
	background: #E0E0E0;
	list-style: none;
    text-decoration: none;
}

#contact {
	padding: 40px 0;
	/*background: #87a581;*/
    background: #f0f0f0;
	list-style: none;
}

#contact h1 {
	color: #d70e1d;
}


/* media queries */
@media (max-width: 1379px) {

	#top, #bottom, #left, #right { 
		display: none; 
	}
    
    h1 { 
	font-size:36px;
    }
    
     h6 { 
	font-size:12px;
    }
	
	.uk-navbar {
	z-index: 5000;
    height: 120px;
    position: absolute;
	}
    
    #products, #shop, #wholesale  {
	padding: 20px 0;
    margin-top: 120px;
	background: #E0E0E0;
	list-style: none;
}

}