@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
/* SCSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* mixins
---------------------------------------------  */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: block;
}
.container.narrow {
  max-width: 800px;
}

.row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
  flex: 0 1 auto;
  /* large */
  /* medium */
  /* small */
}
@media screen and (max-width: 1430px) {
  .row {
    margin: 0;
  }
}
.row .col-1 {
  flex: 0 0 auto;
  width: calc(8.3333333333% - 30px);
  margin: 0 15px;
}
.row .col-2 {
  flex: 0 0 auto;
  width: calc(16.6666666667% - 30px);
  margin: 0 15px;
}
.row .col-3 {
  flex: 0 0 auto;
  width: calc(25% - 30px);
  margin: 0 15px;
}
.row .col-4 {
  flex: 0 0 auto;
  width: calc(33.3333333333% - 30px);
  margin: 0 15px;
}
.row .col-5 {
  flex: 0 0 auto;
  width: calc(41.6666666667% - 30px);
  margin: 0 15px;
}
.row .col-6 {
  flex: 0 0 auto;
  width: calc(50% - 30px);
  margin: 0 15px;
}
.row .col-7 {
  flex: 0 0 auto;
  width: calc(58.3333333333% - 30px);
  margin: 0 15px;
}
.row .col-8 {
  flex: 0 0 auto;
  width: calc(66.6666666667% - 30px);
  margin: 0 15px;
}
.row .col-9 {
  flex: 0 0 auto;
  width: calc(75% - 30px);
  margin: 0 15px;
}
.row .col-10 {
  flex: 0 0 auto;
  width: calc(83.3333333333% - 30px);
  margin: 0 15px;
}
.row .col-11 {
  flex: 0 0 auto;
  width: calc(91.6666666667% - 30px);
  margin: 0 15px;
}
.row .col-12 {
  flex: 0 0 auto;
  width: calc(100% - 30px);
  margin: 0 15px;
}
@media (max-width: 1024px) {
  .row .col-md-1 {
    flex: 0 0 auto;
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-2 {
    flex: 0 0 auto;
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-3 {
    flex: 0 0 auto;
    width: calc(25% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-4 {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-5 {
    flex: 0 0 auto;
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-6 {
    flex: 0 0 auto;
    width: calc(50% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-7 {
    flex: 0 0 auto;
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-8 {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-9 {
    flex: 0 0 auto;
    width: calc(75% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-10 {
    flex: 0 0 auto;
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-11 {
    flex: 0 0 auto;
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 1024px) {
  .row .col-md-12 {
    flex: 0 0 auto;
    width: calc(100% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-1 {
    flex: 0 0 auto;
    width: calc(8.3333333333% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-2 {
    flex: 0 0 auto;
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-3 {
    flex: 0 0 auto;
    width: calc(25% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-4 {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-5 {
    flex: 0 0 auto;
    width: calc(41.6666666667% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-6 {
    flex: 0 0 auto;
    width: calc(50% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-7 {
    flex: 0 0 auto;
    width: calc(58.3333333333% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-8 {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-9 {
    flex: 0 0 auto;
    width: calc(75% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-10 {
    flex: 0 0 auto;
    width: calc(83.3333333333% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-11 {
    flex: 0 0 auto;
    width: calc(91.6666666667% - 30px);
    margin: 0 15px;
  }
}
@media (max-width: 780px) {
  .row .col-sm-12 {
    flex: 0 0 auto;
    width: calc(100% - 30px);
    margin: 0 15px;
  }
}

@media (max-width: 780px) {
  .hide-for-sm {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hide-for-md {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .hide-for-lg {
    display: none !important;
  }
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.1em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #7f4f24;
  margin: 0.5em 0 0 0;
}

p {
  margin: 0 0 0.5em 0;
}

h1 {
  font-size: 4em;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 3em;
  }
}
@media (max-width: 780px) {
  h1 {
    font-size: 2em;
  }
}

h2 {
  font-size: 3em;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 2em;
  }
}
@media (max-width: 780px) {
  h2 {
    font-size: 1.6em;
  }
}

h3 {
  font-size: 2em;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 1.6em;
  }
}
@media (max-width: 780px) {
  h3 {
    font-size: 1.4em;
  }
}

h4 {
  font-size: 1.4em;
}
@media (max-width: 1024px) {
  h4 {
    font-size: 1.2em;
  }
}
@media (max-width: 780px) {
  h4 {
    font-size: 1em;
  }
}

h5 {
  font-size: 1.2em;
}
@media (max-width: 1024px) {
  h5 {
    font-size: 1em;
  }
}
@media (max-width: 780px) {
  h5 {
    font-size: 1em;
  }
}

.text-center {
  text-align: center;
}

a {
  text-decoration: none;
  color: #0e51a0;
}
a:visited {
  color: #0e51a0;
}

.lead {
  font-size: 140%;
}

strong {
  font-weight: 700;
}

ul {
  font-family: "Lato", sans-serif;
}

.page-title {
  margin: 0.5em 0;
}

.subheader {
  margin-bottom: 0;
  color: #161616;
}

.narrow {
  max-width: 1000px;
}

.icon-text {
  padding-left: 40px;
  position: relative;
  margin-bottom: 1.5em;
}
.icon-text img {
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
}

#navigation {
  width: 100%;
  display: block;
  margin: 40px 0 50px 0;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10000;
  /* mobiili */
}
#navigation .navigation-content {
  background-color: rgba(255, 255, 255, 0.7);
  height: 70px;
  display: block;
  width: 100%;
  clear: both;
}
@media (max-width: 1024px) {
  #navigation .navigation-content {
    height: 40px;
  }
}
#navigation .offercart {
  float: right;
  margin: 5px 0 0 0;
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  text-shadow: 1px 1px 2px #000000;
  position: relative;
  padding: 10px 15px;
}
#navigation .offercart:before {
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
#navigation .offercart img {
  width: 24px;
  height: 24px;
  float: right;
  margin: 0 0 0 10px;
}
#navigation .offercart:hover {
  color: #0e51a0;
  text-shadow: none;
}
#navigation .offercart:hover:before {
  height: 100%;
}
#navigation .logo {
  display: block;
  width: auto;
  height: 70px;
  position: relative;
  float: left;
  margin: 0 0 0 10px;
}
#navigation .logo img {
  width: auto;
  height: 100px;
  margin: -15px 0 -15px 0;
}
@media screen and (min-width: 1024px) and (max-width: 1400px) {
  #navigation .logo img {
    height: 60px;
    margin: 5px;
  }
}
@media (max-width: 1024px) {
  #navigation {
    margin: 15px 0;
  }
  #navigation .offercart {
    display: none;
  }
  #navigation .logo {
    height: 40px;
    margin: 0 0 0 10px;
  }
  #navigation .logo img {
    height: 50px;
    margin: -5px 0 -5px 0;
  }
}

#menu {
  box-sizing: border-box;
  display: block;
  text-align: right;
  float: right;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  /* mobiili */
}
#menu ul {
  display: block;
  margin: 0;
  padding: 0;
}
#menu ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 70px;
  position: relative;
}
#menu ul li a {
  color: #333333;
  padding: 0 20px;
  margin: 0;
  display: block;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
#menu ul li a::before, #menu ul li a::after {
  content: "";
  position: absolute;
  display: block;
  border: 0 solid transparent;
  width: 0;
  height: 0;
  transition: all 0.3s ease;
}
#menu ul li a::after {
  top: 0;
  right: 0;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
}
#menu ul li a::before {
  left: 0;
  bottom: 0;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
}
#menu ul li a:hover::before, #menu ul li a:hover::after {
  width: 15px;
  height: 15px;
  border-color: #0e51a0;
}
#menu ul li a:hover {
  background-color: rgb(240, 240, 240);
}
#menu ul li ul {
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 200px;
  height: auto;
  top: 70px;
  right: 0;
  background-color: rgb(240, 240, 240);
}
#menu ul li ul li {
  display: block;
  width: 100%;
  line-height: 32px;
  padding: 0;
  margin: 0;
  height: auto;
}
#menu ul li ul li a {
  height: 32px;
  width: 100%;
  text-align: right;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 16px;
}
#menu ul li ul li a:hover {
  background-color: rgb(220, 220, 220);
}
#menu ul li:hover ul, #menu ul li:active ul, #menu ul li:focus ul, #menu ul li.opened ul {
  display: block;
}
@media (max-width: 1024px) {
  #menu {
    width: 100%;
    display: none;
    background-color: rgba(255, 255, 255, 0.7);
  }
  #menu ul {
    display: block;
    height: auto;
  }
  #menu ul li {
    display: block;
    height: auto;
  }
  #menu ul li a {
    text-align: center;
    line-height: 40px;
    height: 40px;
  }
  #menu ul li ul {
    width: 100%;
    position: relative;
    top: 0;
    background-color: #e5e5e5;
  }
  #menu ul li ul li {
    display: block;
    width: 100%;
    height: 40px;
  }
  #menu ul li ul li a {
    text-align: center;
    height: 40px;
    line-height: 30px;
  }
  #menu.open {
    display: block;
  }
}

/* NAVIGATION TOGGLE
------------------------------------------ */
#navigation-toggle {
  margin: 0;
  right: 10px;
  top: 3px;
  position: absolute;
  display: none;
  padding: 0;
  transition: 0.3s;
  cursor: pointer;
  width: 30px;
  height: 30px;
  z-index: 1000;
  background-color: transparent;
  border: none;
}
@media (max-width: 1024px) {
  #navigation-toggle {
    display: block;
  }
}
#navigation-toggle:before, #navigation-toggle:after {
  display: none;
}

#navigation-toggle .lines {
  display: inline-block;
  width: 30px;
  height: 4.2857142857px;
  background: #161616;
  border-radius: 2.1428571429px;
  transition: all 0.3s ease-in-out;
  color: #161616;
  position: relative;
}
#navigation-toggle .lines:before, #navigation-toggle .lines:after {
  display: inline-block;
  width: 30px;
  height: 4.2857142857px;
  background: #161616;
  border-radius: 2.1428571429px;
  transition: all 0.3s ease-in-out;
  color: #161616;
  position: absolute;
  left: 0;
  content: "";
  transform-origin: 2.1428571429px center;
}
#navigation-toggle .lines:before {
  top: 7.5px;
}
#navigation-toggle .lines:after {
  top: -7.5px;
}

#navigation-toggle.open .lines {
  background: transparent;
}
#navigation-toggle.open .lines:before, #navigation-toggle.open .lines:after {
  transform-origin: 50% 50%;
  top: 0;
  width: 30px;
  background: #161616;
}
#navigation-toggle.open .lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}
#navigation-toggle.open .lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}

.section-image {
  position: relative;
  width: 100%;
  height: auto;
}
.section-image img {
  height: auto;
  border: 3px solid #ffffff;
  position: relative;
  z-index: 100;
}

section {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  clear: both;
  /* HERO
  ------------------------------------------------------------ */
  /* KOKEMUKSELLA
    ------------------------------------------------------------ */
  /* TUOTTEET
    ------------------------------------------------------------ */
  /* TUOTERYHMÄT LISTAUS
    ------------------------------------------------------------ */
  /* KOTIMAISTA
    ------------------------------------------------------------ */
  /* KULJETUKSET
    ------------------------------------------------------------ */
  /* yrityssivun kokemuksen takaamaa
      ------------------------------------------------------------ */
  /* yrityssivun ratkaisut
        ------------------------------------------------------------ */
  /* sijainti
  ------------------------------------------------------------ */
}
section .section-content {
  padding: 30px;
  display: block;
}
section#intro {
  position: relative;
  width: 100%;
  height: 80vh;
  display: block;
}
section#kokemuksella {
  padding: 20vh 0;
}
section#kokemuksella .bg {
  position: absolute;
  width: auto;
  height: 90%;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: -1;
}
section#kokemuksella .container {
  max-width: 800px;
}
@media (max-width: 1024px) {
  section#kokemuksella {
    padding: 100px 0;
  }
  section#kokemuksella .bg {
    width: 90%;
    height: auto;
  }
}
section#tuotteet {
  background-color: #e9e4d0;
  margin: 100px 0;
}
@media (max-width: 780px) {
  section#tuotteet {
    overflow: hidden;
  }
}
section#tuotteet .products-image {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  clip-path: inset(-100vw 0 -100vw -100vw);
}
@media (max-width: 780px) {
  section#tuotteet .products-image {
    width: 80%;
    margin-left: 20%;
  }
}
section#tuotteet .products-image .floatbox {
  right: 0;
  top: -100px;
  width: 50%;
  height: 140%;
  background-color: #c19f72;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  section#tuotteet .products-image .floatbox {
    top: 50px;
    height: 100%;
  }
}
@media (max-width: 780px) {
  section#tuotteet .products-image .floatbox {
    top: 0;
  }
}
section#tuotteet .products-image img {
  margin: -80px 0 -80px 0;
  width: 100%;
  height: auto;
  position: relative;
  opacity: 0;
  right: -80px;
  transition: all 1s;
  border: none;
}
@media (max-width: 1024px) {
  section#tuotteet .products-image img {
    margin: 50px 0 0 0;
  }
}
@media (max-width: 780px) {
  section#tuotteet .products-image img {
    margin: 0;
  }
}
section#tuotteet.visible .products-image img {
  opacity: 1;
  right: 0;
}
@media (max-width: 1024px) {
  section#tuotteet .img-column {
    order: 2;
  }
  section#tuotteet .text-column {
    order: 1;
  }
}
section#tuoteryhmat {
  margin-top: 200px;
}
@media (max-width: 1024px) {
  section#tuoteryhmat {
    margin-top: 50px;
  }
}
section#kotimaista {
  background-color: #d6d0b7;
  margin: 400px 0;
}
@media (max-width: 1024px) {
  section#kotimaista {
    margin: 100px 0;
  }
}
section#kotimaista .section-image img {
  right: 20px;
  width: 50%;
  position: absolute;
}
section#kotimaista .section-image img.left {
  left: 40px;
  top: -100px;
}
@media (max-width: 1024px) {
  section#kotimaista .section-image img.left {
    top: 20px;
  }
}
section#kotimaista .section-image img.right {
  right: 30px;
  top: -30px;
}
@media (max-width: 1024px) {
  section#kotimaista .section-image img.right {
    top: 50px;
  }
}
section#kotimaista .section-image .floatbox {
  width: 40%;
  height: 500px;
  top: -50px;
  right: 0;
}
section#kotimaista .section-image .floatbox.alt {
  top: 50px;
  left: 0;
  width: 45%;
}
@media (max-width: 1024px) {
  section#kotimaista .section-image .floatbox {
    width: 40%;
    top: -20px;
    height: 220px;
  }
  section#kotimaista .section-image .floatbox.alt {
    top: 20px;
    left: 10px;
    width: 45%;
    height: 260px;
  }
}
section#kuljetukset {
  background-color: #ffffff;
  background-image: url("../images/white-wood-bg.gif");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 400px 0 200px 0;
}
@media (max-width: 1024px) {
  section#kuljetukset {
    margin: 100px 0;
  }
}
@media (max-width: 780px) {
  section#kuljetukset .floatbox {
    display: none;
  }
}
section#kuljetukset .section-image img {
  width: 90%;
  position: relative;
  border: 3px solid #ffffff;
  margin: -50px 5%;
}
@media (max-width: 1024px) {
  section#kuljetukset .section-image img {
    margin: 20px 0;
    width: 100%;
  }
}
section#kuljetukset .section-image .floatbox {
  width: 80%;
  height: 110%;
  top: -30px;
}
section#kuljetukset .section-image .floatbox.alt {
  top: 30px;
  left: 0;
  width: 70%;
}
section#kokemuksen-takaamaa {
  background-color: #d6d0b7;
  margin: 100px 0 200px 0;
}
@media (max-width: 1024px) {
  section#kokemuksen-takaamaa {
    margin: 100px 0;
  }
}
section#kokemuksen-takaamaa .section-image img {
  width: 90%;
  position: relative;
  border: 3px solid #ffffff;
  margin: -50px 5%;
}
section#kokemuksen-takaamaa .section-image .floatbox {
  width: 80%;
  height: 500px;
  top: -30px;
}
section#kokemuksen-takaamaa .section-image .floatbox.alt {
  top: 30px;
  left: 0;
  width: 70%;
}
section#ratkaisut {
  background-color: #ffffff;
  margin: 300px 0 200px 0;
}
@media (max-width: 1024px) {
  section#ratkaisut {
    margin: 100px 0;
  }
}
section#ratkaisut .section-image img {
  width: 90%;
  position: relative;
  border: 3px solid #ffffff;
  margin: -50px 5%;
}
section#ratkaisut .section-image .floatbox {
  width: 80%;
  height: 500px;
  top: -30px;
}
section#ratkaisut .section-image .floatbox.alt {
  top: 30px;
  left: 0;
  width: 70%;
}
section#sijainti {
  height: 80vh;
  background-image: url("../images/kartta.jpg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  section#sijainti {
    height: 70vw;
  }
}
section#sijainti .content {
  display: block;
  width: 100%;
  height: auto;
  overflow-x: hidden;
}
section#sijainti .content .block {
  display: block;
  width: 50%;
  height: auto;
  margin: 0 0 0 50%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}
section#sijainti .content .block:after {
  position: absolute;
  top: 0;
  right: -2000px;
  width: 2000px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
}

/* KARUSELLI
--------------------------------------------- */
.carousel {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.carousel .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel .slide.active {
  opacity: 1;
}
.carousel .slide .carousel-content {
  display: block;
  width: 100%;
  height: auto;
  overflow-x: hidden;
}
.carousel .slide .carousel-content .block {
  display: block;
  width: 50%;
  height: auto;
  margin: 0 0 0 50%;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1400px) {
  .carousel .slide .carousel-content .block {
    width: 80%;
    margin: 0 0 0 20%;
  }
}
@media (max-width: 1024px) {
  .carousel .slide .carousel-content .block {
    width: 70%;
    margin: 0 0 0 30%;
  }
}
@media (max-width: 780px) {
  .carousel .slide .carousel-content .block {
    width: 95%;
    margin: 0 0 0 5%;
  }
}
.carousel .slide .carousel-content .block:after {
  position: absolute;
  top: 0;
  right: -2000px;
  width: 2000px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
}

.carousel-links {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 12px;
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.carousel-links li {
  position: relative;
  display: inline-block;
  background-color: #9f7c4d;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  margin: 0 5px;
  cursor: pointer;
  transition: background 1s ease-in-out;
}
.carousel-links li.active {
  background-color: #7f4f24;
}

.products {
  display: flex;
  flex-flow: row wrap;
  flex: 0 1 auto;
}
.products .product {
  display: inline-block;
  width: 20%;
  margin: 0 0 30px 0;
  padding: 30px 30px 0 0;
  position: relative;
  box-sizing: border-box;
  flex: 0 0 auto;
}
@media (max-width: 1024px) {
  .products .product {
    width: 25%;
  }
}
@media (max-width: 780px) {
  .products .product {
    width: 50%;
  }
}
.products .product .bg {
  position: absolute;
  right: 20px;
  top: 40px;
  width: 88%;
  height: 88%;
  content: "";
  display: block;
  z-index: 10;
  background-color: #ff0000;
  transition: all 0.3s ease-in-out;
}
.products .product img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.products .product span {
  font-weight: 400;
  display: block;
  width: 100%;
  position: relative;
  font-size: 20px;
  color: #ffffff;
  z-index: 20;
  margin: 15px 0 0 0;
  text-align: center;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.products .product span a {
  color: #ffffff;
}
.products .product:nth-child(8n+1) .bg {
  background-color: rgb(202, 161, 125);
}
.products .product:nth-child(8n+2) .bg {
  background-color: rgb(191, 157, 114);
}
.products .product:nth-child(8n+3) .bg {
  background-color: rgb(201, 162, 123);
}
.products .product:nth-child(8n+4) .bg {
  background-color: rgb(182, 160, 110);
}
.products .product:nth-child(8n+5) .bg {
  background-color: rgb(209, 148, 124);
}
.products .product:nth-child(8n+6) .bg {
  background-color: rgb(184, 165, 128);
}
.products .product:nth-child(8n+7) .bg {
  background-color: rgb(192, 145, 128);
}
.products .product:nth-child(8n+8) .bg {
  background-color: rgb(199, 145, 103);
}

.product-header {
  border-bottom: 1px dashed #000000;
}

/* product page
------------------------------------------------------- */
#specs {
  background-color: #7f4f24;
  display: block;
  margin: 100px 0;
  width: 100%;
  color: #ffffff;
  padding: 0;
}
#specs h1, #specs h2, #specs h3, #specs h4, #specs p, #specs table {
  color: #ffffff;
}

.product-table, .lot-table {
  width: 100%;
  margin: 50px 0;
  border: 0;
  border-spacing: 0;
}
.product-table tr + tr td, .lot-table tr + tr td {
  border-top: 1px dashed #e5d6ae;
}
.product-table tr td, .lot-table tr td {
  color: white;
  padding: 10px 20px 10px 0;
  text-align: left;
  vertical-align: top;
}
.product-table tr td p, .lot-table tr td p {
  margin: 0;
}
.product-table tr td.label, .lot-table tr td.label {
  font-weight: bold;
  width: 200px;
}

/* product images
--------------------------------------------------------  */
.product-images {
  display: block;
  width: calc(100% - 60px);
  height: 100%;
  position: relative;
  padding: 0;
  margin: 0 30px;
}
.product-images img {
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding: 0;
  z-index: 30;
  position: relative;
}
.product-images img.left {
  float: left;
}
.product-images img.right {
  float: right;
}
.product-images img.first {
  margin-top: -50px;
}
@media (max-width: 1024px) {
  .product-images img.first {
    margin-top: 20px;
  }
}
@media (max-width: 780px) {
  .product-images img.first {
    margin-top: 0;
  }
}
.product-images img.last {
  margin-bottom: -50px;
}
@media (max-width: 780px) {
  .product-images img.last {
    margin-bottom: 20px;
  }
}
.product-images.images-1 img {
  width: 90%;
}
@media (max-width: 780px) {
  .product-images.images-1 img {
    width: 100%;
  }
}
.product-images.images-2 img {
  width: 70%;
}
.product-images.images-3 img, .product-images.images-4 img, .product-images.images-5 img {
  width: 55%;
}
.product-images .floatbox {
  width: 60%;
  height: 25vh;
}
.product-images .floatbox.left {
  left: 0;
}
.product-images .floatbox.right {
  right: 0;
}
.product-images .floatbox.box-1 {
  top: -10%;
  background-color: rgb(156, 130, 72);
}
.product-images .floatbox.box-2 {
  top: 40%;
  background-color: rgb(148, 108, 83);
}
.product-images .floatbox.box-3 {
  top: 56.6666666667%;
  background-color: rgb(168, 113, 79);
}
.product-images .floatbox.box-4 {
  top: 65%;
  background-color: rgb(147, 122, 79);
}
.product-images .floatbox.box-5 {
  top: 70%;
  background-color: rgb(170, 108, 71);
}

/* calculator
------------------------------------ */
.calculator {
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  flex: 0 1 auto;
}
.calculator .calc-col {
  flex: 0 0 auto;
  width: 33%;
  margin: 0;
  padding: 10px 10px 10px 0;
  box-sizing: border-box;
}

#offer-cart-title {
  margin: 100px 0;
}

#offer-cart {
  background-color: #ffffff;
  padding: 30px 0;
}

section#offercart {
  background-color: #ffffff;
  margin: 50px 0;
  padding: 0;
}

.cart-header {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: #d6d0b7;
}
.cart-header h4 {
  font-size: 20px;
  color: black;
  margin: 0;
  font-weight: bold;
}
.cart-header .cart-header-content {
  margin-left: 13%;
}
@media (max-width: 1024px) {
  .cart-header {
    display: none;
  }
}

.cart-row {
  background-color: #ffffff;
}
.cart-row .cart-row-inner {
  display: flex;
  margin: 0;
  padding: 10px 0;
  width: 100%;
  clear: both;
  align-items: center;
}
.cart-row .cart-row-inner .cart-image {
  display: block;
  width: 15%;
  float: left;
}
.cart-row .cart-row-inner .cart-image img {
  width: 80%;
  display: block;
  height: auto;
  margin: 0 auto;
}
.cart-row .cart-row-inner .cart-content {
  display: block;
  width: 90%;
  flex-grow: 1;
  float: right;
}
.cart-row .cart-row-inner .cart-content p {
  margin: 0;
}
.cart-row .cart-row-inner .cart-content p span {
  display: none;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .cart-row .cart-row-inner .cart-content p span {
    display: inline-block;
    width: 100px;
  }
}

.cart-row + .cart-row {
  border-top: 1px solid #d6d0b7;
}

/* small cart table
------------------------------------------ */
.small-cart {
  padding: 0;
  margin: 20px 0;
  display: block;
  width: 100%;
}

.small-title-row {
  background-color: #fdb71e;
  font-size: 14px;
  padding: 10px 0;
  font-weight: bold;
}
.small-title-row p {
  margin: 0;
}

.small-cart-row {
  background-color: #ffffff;
  font-size: 14px;
  padding: 10px 0;
}
.small-cart-row p {
  margin: 0;
}

.small-cart-row + .small-cart-row {
  border-top: 1px solid #d6d0b7;
}

.outlet-row {
  width: 100%;
  height: auto;
  margin: 100px 0;
  position: relative;
}
@media (max-width: 780px) {
  .outlet-row {
    background-color: #ffffff;
  }
}
.outlet-row h3 {
  margin: 0 0 30px 0;
  padding: 0;
  line-height: 30px;
  font-weight: bold;
  font-size: 30px;
}
.outlet-row h3 a {
  color: #7f4f24;
}
.outlet-row .description {
  width: 80%;
}
@media (max-width: 780px) {
  .outlet-row .description {
    width: 100%;
  }
}
.outlet-row .inforow {
  font-size: 24px;
  font-weight: 400;
}
.outlet-row .inforow .price {
  float: right;
  color: #3e290b;
  text-align: right;
}
.outlet-row:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 40px);
  content: "";
  background-color: #ffffff;
  z-index: -1;
}
@media (max-width: 780px) {
  .outlet-row:before {
    display: none;
  }
}
.outlet-row .outlet-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.outlet-row .outlet-image img {
  margin: -20px 0 -30px 0;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 100;
}
@media (max-width: 780px) {
  .outlet-row .outlet-image img {
    margin: 30px 0;
  }
}

.lot-table {
  margin: 30px 0;
}
.lot-table tr td {
  color: #161616;
}
.lot-table tr + tr td {
  border-top: 1px dashed #7f4f24;
}

body.lot-detail #specs {
  padding: 30px 0;
  background-color: #d6d0b7;
  color: #161616;
}
body.lot-detail #specs p {
  color: #161616;
}
body.lot-detail #specs a {
  font-weight: bold;
}

/* BASICS
--------------------------------------------------  */
body {
  margin: 0;
  padding: 0;
  background-image: url("../images/puutausta2.jpg");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}

img {
  height: auto;
  max-width: 100%;
}

.vertical-middle, section#sijainti, .carousel .slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

label {
  display: block;
  width: 100%;
  height: auto;
  padding: 5px 20px 5px 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1em;
}

input, textarea, select {
  border: 1px solid #8d400d;
  background-color: #f4f2ea;
  display: block;
  width: 100%;
  height: auto;
  padding: 10px;
  margin: 0 0 20px 0;
  line-height: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1em;
}

.button, button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #fdb71e;
  color: #161616;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  transition: all 0.3s ease;
}
.button.small, button.small {
  padding: 7px 15px;
}
.button:visited, button:visited {
  color: #161616;
}
.button.success, button.success {
  background-color: #06bd86;
  border: none;
}
.button.hollow, button.hollow {
  background-color: transparent;
  border: 1px solid #fdb71e;
}
.button::before, .button::after, button::before, button::after {
  content: "";
  position: absolute;
  display: block;
  border: 0 solid transparent;
  width: 0;
  height: 0;
  transition: all 0.3s ease;
}
.button::after, button::after {
  top: 0;
  right: 0;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
}
.button::before, button::before {
  left: 0;
  bottom: 0;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
}
.button:hover::before, .button:hover::after, button:hover::before, button:hover::after {
  width: 15px;
  height: 15px;
  border-color: #7f4f24;
}
.button:hover, button:hover {
  background-color: rgb(253.8986784141, 215.3524229075, 131.1013215859);
}

.text-success {
  color: #06bd86;
}

input[type=checkbox] {
  margin: 0 10px 0 0;
  display: inline-block;
  width: 20px;
}

#id_email2 {
  display: none;
}

/* FOOTER
----------------------------------------------- */
.footer {
  margin: 50px 0 0 0;
  padding: 0;
  display: block;
  width: 100%;
  height: auto;
  color: #ffffff;
}
.footer a {
  color: #ffffff;
}
.footer h1, .footer h2, .footer h3, .footer h4 {
  color: #fdb71e;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  margin: 3px 0;
  padding: 0;
}
.footer ul li a {
  color: #ffffff;
}
.footer .footer-top {
  background-color: #3e290b;
  display: block;
  padding: 50px 0;
  width: 100%;
}
.footer .footer-bottom {
  background-color: #7f4f24;
  padding: 5px 0;
  display: block;
  width: 100%;
}
.footer .footer-bottom a {
  display: block;
  margin: 0 auto;
  width: 300px;
}
.footer .footer-bottom a img {
  width: 100%;
  height: auto;
}

/*header
-------------------------------------------  */
.header {
  position: relative;
  width: 100%;
  height: 40vh;
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/wood-plane-header.jpg");
}

/* pages
----------------------------------------  */
.page-content {
  margin: 50px 0;
}

/* floater image
-------------------------------------------------- */
.floatbox {
  position: absolute;
  display: block;
  content: "";
  width: 80%;
  height: 100%;
  background-color: rgb(142, 128, 79);
  z-index: 10;
  top: -50px;
  right: 30px;
}
@media (max-width: 1024px) {
  .floatbox {
    top: 50px;
    right: 50px;
  }
}
.floatbox.alt {
  background-color: rgb(169, 112, 69);
}

.floating-image {
  position: relative;
  width: 100%;
  height: auto;
  margin: 100px 0 0 0;
}
.floating-image img {
  position: relative;
  width: 80%;
  margin: -50px 10%;
  z-index: 100;
}
@media (max-width: 1024px) {
  .floating-image img {
    margin: 50px 10%;
  }
}

.whitebox {
  background-color: #ffffff;
  padding: 30px;
  display: block;
  width: 100%;
  height: auto;
}

/* pagination
---------------------------------------  */
.pagination {
  display: block;
  width: 100%;
  list-style: none;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
}
.pagination li {
  display: inline-block;
  margin: 0 10px;
}
.pagination li a {
  color: #7f4f24;
}

.form-success .icon {
  display: block;
  width: 150px;
  height: 150px;
  margin: 50px auto 30px auto;
  position: relative;
}
.form-success .icon svg {
  width: 150px;
  height: 150px;
}
.form-success .icon svg #circle, .form-success .icon svg #check {
  opacity: 0;
  transition: all 0.5s ease-in;
}
.form-success .icon svg #check {
  transform: translate(0, -3px);
}
.form-success .text {
  font-size: 20px;
  color: #06bd86;
  font-weight: bold;
  text-align: center;
}
.form-success.visible .icon svg #circle, .form-success.visible .icon svg #check {
  opacity: 1;
}
.form-success.visible .icon svg #check {
  transform: translate(0, 0);
}

/*# sourceMappingURL=app.css.map */
