/*
Design:   EuroART93
XHTML/CSS:  EuroART93
*/
/* ==================================================
    =Reset
===================================================== */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ==================================================
    =Less CSS
===================================================== */
.box-shadow-none {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ir {
  text-indent: -9999px;
  outline: none;
}
.cf {
  zoom: 1;
}
.cf:after {
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
  content: ".";
}
/* ==================================================
    =General
===================================================== */
.left {
  text-align: left !important;
}
.center {
  text-align: center !important;
}
.right {
  text-align: right !important;
}
.alignleft {
  float: left;
}
.aligncenter {
  margin: 0 auto;
}
.alignright {
  float: right;
}
.alignleft.clear,
.alignright.clear,
.aligncenter.clear {
  float: none;
}
img.alignleft,
table.alignleft,
.image-container.alignleft {
  margin: 5px 10px 5px 0;
}
img.alignright,
table.alignright,
.image-container.alignright {
  margin: 5px 0 5px 10px;
}
img.aligncenter {
  display: block;
  margin: 10px auto;
}
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
.mobile-show {
  display: block !important;
}
.mobile-hide {
  display: none !important;
}
.cf:before,
.cf:after,
.container:before,
.container:after,
.widget:before,
.widget:after,
form ol > li:before,
form ol > li:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
.cf:after,
.clear,
.container:after,
.widget:after,
form ol > li:after {
  clear: both;
}
.cf,
.container,
.widget,
form ol > li {
  zoom: 1;
}
/* ==================================================
    =Main tags
===================================================== */
/* Defined in html element when using rem unit */
html {
  font: normal 62.5% 'adelle', serif;
  color: #444;
  background-color: #fff;
}
/* apply a natural box layout model to all elements */
/* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
/* Buggy in IE7, avoid if developing for IE7 */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* ==================================================
    =Typography
===================================================== */
h1,
h2,
h3,
h4,
h5,
h6,
p,
table,
.user-content ul,
.user-content ol,
.user-content dl {
  margin-bottom: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
}
h1 {
  font: 400 32px/1.3 'adelle', serif;
}
h2 {
  font: 400 24px/1.2 'adelle', serif;
}
h3 {
  font: 400 22px/1.2 'adelle', serif;
}
h4 {
  font: 400 20px/1.2 'adelle', serif;
}
h5 {
  font: 400 16px/1.2 'adelle', serif;
}
h6 {
  font: 400 14px/1.2 'adelle', serif;
}
a {
  color: #444444;
  text-decoration: none;
}
/* Styling */
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
sup {
  vertical-align: text-top;
  font-size: 75%;
}
sub {
  vertical-align: bottom;
  font-size: 75%;
}
blockquote {
  font-style: italic;
}
/* User generated  */
.user-content ul {
  list-style: disc;
  margin-left: 24px;
}
.user-content ul ul {
  margin-left: 20px;
  margin-bottom: 0;
}
.user-content ul li {
  margin-bottom: 0;
}
.user-content ol {
  margin-left: 24px;
  list-style: decimal;
}
.user-content ol ol {
  list-style: lower-latin;
  margin-bottom: 0;
}
.user-content ul ul,
.view ol ol {
  margin-bottom: 0;
}
.user-content li li {
  font-size: 1em;
}
/* Table */
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}
table thead th {
  border-top: none;
  font-weight: bold;
  color: #fff;
  background: #222222;
}
table tbody th {
  text-transform: uppercase;
  font-weight: bold;
  color: #444;
}
table td,
table th {
  padding: 5px;
  vertical-align: middle;
}
table tr:nth-child(even) td,
table tr:nth-child(even) th {
  background-color: #eeeeee;
}
/* Normal form */
.normal-form input[type="text"],
.normal-form input[type="password"],
.normal-form input[type="datetime"],
.normal-form input[type="datetime-local"],
.normal-form input[type="date"],
.normal-form input[type="month"],
.normal-form input[type="time"],
.normal-form input[type="week"],
.normal-form input[type="number"],
.normal-form input[type="email"],
.normal-form input[type="url"],
.normal-form input[type="search"],
.normal-form input[type="tel"],
.normal-form input[type="color"],
.normal-form textarea,
.normal-form select {
  -webkit-appearance: none;
}
/* Button styling */
.button {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 10px 0 0;
  font: bold 14px/20px 'adelle', serif;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  border: none;
  background: #222222;
  text-align: center;
  overflow: visible;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.button:hover {
  color: #fff;
  background-color: #080808;
}
/* ==================================================
    =Layout
===================================================== */
.logo.desktop {
  display: none;
}
.logo {
  display: block;
  width: 291px;
  height: 179px;
  text-indent: -9999px;
  background: url(../img/logo.png) no-repeat center center;
  margin: 0 auto 70px auto;
}
body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: url(../img/map.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  padding-top: 50px;
  padding-bottom: 40px;
}
.claim {
  font-size: 30px;
  color: #dedede;
  margin-bottom: 50px;
  padding: 0 10px;
}
.claim span {
  font-style: italic;
  color: #f47820;
  text-transform: uppercase;
  font-weight: 600;
}
.side-content {
  padding: 0 10px;
}
.side-content p {
  font-size: 24px;
  color: #919092;
  line-height: 32px;
}
.mobile-products img {
  width: 100%;
}
.leaf {
  color: #919092;
  font-size: 17px;
  font-style: italic;
  padding-left: 30px;
  position: relative;
  line-height: 26px;
  margin-bottom: 30px;
  margin-left: 10px;
  margin-right: 10px;
}
.leaf:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/leaf.png) no-repeat center center;
  position: absolute;
  top: 0;
  left: 0;
}
.comming-soon {
  float: right;
  text-align: right;
  width: 335px;
  height: 101px;
  padding: 17px 50px 0 0;
  background: url(../img/coming-soon-box.png) no-repeat center center;
}
.comming-soon p {
  color: #919092;
  font-size: 17px;
  font-style: italic;
}
.comming-soon .orange {
  font-size: 29px;
  color: #f47820;
  margin-bottom: 15px;
}
.bottom-content {
  zoom: 1;
}
.bottom-content:after {
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
  content: ".";
}
@media only screen and (min-width: 1024px) {
  #main {
    overflow-x: hidden; 
  }
  .mobile-products,
  .logo.mobile {
    display: none;
  }
  .logo.desktop {
    display: block;
    margin: 40px 165px 35px auto;
  }
  body {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: url(../img/body-bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
  }
  #main {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .claim {
    font-size: 29px;
    color: #dedede;
    margin-top: 255px;
    margin-left: 20px;
  }
  .claim span {
    font-style: italic;
    color: #f47820;
    text-transform: uppercase;
    font-weight: 600;
  }
  .side-content {
    position: absolute;
    right: -80px;
    top: 0;
    width: 555px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    -ms-transform: skewX(-11deg);
    -webkit-transform: skewX(-11deg);
    transform: skewX(-11deg);
  }
  .side-content .wrapper {
    -ms-transform: skewX(11deg);
    -webkit-transform: skewX(11deg);
    transform: skewX(11deg);
  }
  .side-content p {
    width: 390px;
    font-size: 22px;
    color: #919092;
    text-align: right;
    line-height: 33px;
  }
  .bottom-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
  }
  .leaf {
    color: #919092;
    font-size: 17px;
    font-style: italic;
    padding-left: 30px;
    position: relative;
    position: absolute;
    left: 20px;
    top: 55px;
  }
  .leaf:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/leaf.png) no-repeat center center;
    position: absolute;
    top: -4px;
    left: 0;
  }
  .comming-soon {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    width: 365px;
    height: 101px;
    padding: 17px 50px 0 0;
    background: url(../img/coming-soon-box.png) no-repeat center center;
  }
  .comming-soon p {
    color: #919092;
    font-size: 17px;
    font-style: italic;
  }
  .comming-soon .orange {
    font-size: 29px;
    color: #f47820;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .claim {
    font-size: 44px;
    margin-left: 50px;
  }
  .side-content p {
    font-size: 32px;
    line-height: 42px;
  }
  .logo.desktop {
    margin: 40px 160px 110px auto;
  }
}
