/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #3d3536;
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: #3D3536;
  text-decoration: none;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
  .logo {
    display: block;
    margin: auto;
    position: relative;
    padding-top: 50%;
    width: 70%;
  }
     .heading {
       display: block;
       position: relative;
       margin-right: auto;
       margin-left: auto;
       margin-top: -70px;
       margin-bottom: 40px;
       height: 40px;
  }
img.wwf {
    width: 400px;
    padding: 0px;
    margin-top: 30px;
    height: auto;
    z-index: 3;
}
img.textbild {
    width: 100%;
    padding: 0px;
    margin-top: 30px;
    height: auto;
    z-index: 3;
    border: 2px solid #2b2b2b;
    border-radius: 1%;
}
.caption {
  position: absolute;
  bottom: 5%;
  left: 2%;
  width: auto;
  height: auto;
  font-size: 1em;
  color: #fff;
  display: none;
}
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #2b2b2b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
  padding-top: 0px;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  font-size: 2em;
  position: absolute;
  top: 2%;
  left: 40px;
  padding-top: 4px;
}
.cd-header #cd-logo img {
  display: block;
  float: left;
  width: auto;
  height: 6%;
  position: fixed;
  top: 7px;
  left: 10px;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 60px;
  }
  .cd-header #cd-logo {
    margin: 15px 0 0 30px;
  }
  .logo {
    display: block;
    margin: auto;
    position: relative;
    padding-top: 16%;
    width: 700px;
    animation: fadein 2s;
     -moz-animation: fadein 2s; /* Firefox */
     -webkit-animation: fadein 2s; /* Safari and Chrome */
     -o-animation: fadein 2s; /* Opera */
  }
  @keyframes fadein {
      from {
          opacity:0;
      }
      to {
          opacity:1;
      }
  }
  @-moz-keyframes fadein { /* Firefox */
      from {
          opacity:0;
      }
      to {
          opacity:1;
      }
  }
  @-webkit-keyframes fadein { /* Safari and Chrome */
      from {
          opacity:0;
      }
      to {
          opacity:1;
      }
  }
  @-o-keyframes fadein { /* Opera */
      from {
          opacity:0;
      }
      to {
          opacity: 1;
      }
}
   .heading {
     display: block;
     position: relative;
     margin-right: auto;
     margin-left: auto;
     margin-top: -110px;
     margin-bottom: 40px;
     height: 70px;
  }
  .cd-header #cd-logo {
    float: left;
    font-size: 2em;
    position: absolute;
    top: 2%;
    left: 60px;
    padding-top: 10px;
    font-weight: 400;
}
.caption {
  position: absolute;
  bottom: 5%;
  left: 2%;
  width: auto;
  height: auto;
  font-size: 1em;
  color: #fff;
  display: block;
}
}

.cd-main-nav {
  text-align: center;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.png") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: -25px;
  left: 0;
  width: 55%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(85px);
  -moz-transform: translateY(85px);
  -ms-transform: translateY(85px);
  -o-transform: translateY(85px);
  transform: translateY(85px);
}
.cd-main-nav a {
  display: block;
  height: 30px;
  line-height: 20px;
  padding-bottom: 35px;
  padding-left: 1%;
  background: #2b2b2b;
  border-top: 0px solid #453c3d;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 65px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: 15px;
    border-top: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.275rem;
  }
  .no-touch .cd-main-nav a:hover {
    color: #ccc;
  }
}
.infobar {
  height: 45px;
  width: 100%;
  position: relative;
  top: 0px;
  left: 0px;
  background-color: #333;
  padding-top: 16px;
  padding-left: 2%;
  padding-right: 2%;
  color: #fff;
  font-weight: 400;
  font-size: 0.8em;
  text-transform: uppercase;
  z-index: 2;
}
hr { 
    display: block;
	margin-top: 1em;
	margin-bottom: 1em;
    overflow: hidden;
    border-width: 2px;
	border-style: solid;
	color:#ffffff;
}

.submenu {
  float: left;
}
.subcontact {
  float: right;
  text-transform: none;
}
a.link, a.link:hover, a.link:active, a.link:visited {
	color: #fff;
	font-weight: 400;
}
a.fb {
	background-image: url("../img/facebook.png");
	background-position: center top;
 	background-repeat: no-repeat;
	background-size: auto 20px;
	display: block;
	margin-top: -4px;
	height: 20px;
	width: 20px;
	margin-left: 12px;
	float: right;
}
a.fb:hover, a.fb:active, a.fb:visited {
	background-image: url("../img/facebook.png");
}
a.twitter {
	background-image: url("../img/instagram.png");
	background-position: center top;
 	background-repeat: no-repeat;
	background-size: auto 20px;
	display: block;
	margin-top: -4px;
	height: 20px;
	width: 20px;
	margin-left: 30px;
	float: right;
}
a.twitter:hover, a.twitter:active, a.twitter:visited {
	background-image: url("../img/instagram.png");
}
.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}
.cd-fixed-bg {
  position: relative;
  min-height: 110%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 40%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/cd-background-1.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/cd-background-2.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/cd-background-3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/cd-background-4.jpg");
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
    font-weight: 700;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 60px;
    font-weight: 700;
  }
}
a.top {
position: relative;
top: 70%;
display: block;
height: 0;
width:0;
}
.cd-scrolling-bg {
  position: relative;
  min-height: 70%;
  width: 100%;
  padding: 1em 0em;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: normal;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #fff;
  color: #000;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #fff;
  color: #000;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #fff;
  color: #000;
}
  .cd-scrolling-bg.cd-color-4 {
  background-color: #fff;
  color: #000;
}
.div-table {
  display: table;
  width: 110%;                  
  border: 0px solid #000;         
  border-spacing: 2px; /* cellspacing:poor IE support for  this */
  font-size: 0.7em;
}
.div-table-row {
  display: table-row;
  width: auto;
  clear: both;
}
.div-table-col {
  float: left; /* fix for  buggy browsers */
  display: table-column;         
  width: 50%;           
}
.div-table-col-pris {
  float: left; /* fix for  buggy browsers */
  display: table-column;         
  width: 25%;           
}
.div-table-col-prod {
  float: left; /* fix for  buggy browsers */
  display: table-column;         
  width: 25%;           
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 1em 0em;
    font-size: 1.6rem;
    line-height: normal;
    font-weight: 300;
  }
  p.tillverkare {
font-size: 1.4rem;
}
}
