/*------------------------------------*\
 BASIC
 \*------------------------------------*/
html {
  font-size: 100%;
}
input, input:focus {
  outline: 0;
  border: 0;
}
.columns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start safe;
  align-content: flex-start safe;
  margin: 0 -1em;
}
@media only screen and (min-width: 768px) {
  .columns {
    flex-direction: row;
  }
}
.columns .col {
  padding: 0 1em;
  flex-basis: 100%;
  flex-grow: 0;
  flex-shrink: 1;
  align-self: auto;
}
@media only screen and (min-width: 768px) {
  .columns .col {
    flex-basis: calc(100% / 3);
  }
  .columns .col.col-1of1 {
    flex-basis: 100%;
  }
  .columns .col.col-1of2 {
    flex-basis: 50%;
  }
  .columns .col.col-2of2 {
    flex-basis: 100%;
  }
  .columns .col.col-1of3 {
    flex-basis: calc(100% / 3);
  }
  .columns .col.col-2of3 {
    flex-basis: calc(100% / 3 * 2);
  }
  .columns .col.col-3of3 {
    flex-basis: 100%;
  }
  .columns .col.col-1of4 {
    flex-basis: 50%;
  }
  .columns .col.col-2of4 {
    flex-basis: 50%;
  }
  .columns .col.col-3of4 {
    flex-basis: 75%;
  }
  .columns .col.col-4of4 {
    flex-basis: 100%;
  }
  .columns .col.col-1of5 {
    flex-basis: 20%;
  }
  .columns .col.col-2of5 {
    flex-basis: 40%;
  }
  .columns .col.col-3of5 {
    flex-basis: 60%;
  }
  .columns .col.col-4of5 {
    flex-basis: 80%;
  }
  .columns .col.col-5of5 {
    flex-basis: 100%;
  }
  .columns .col.col-1of6 {
    flex-basis: calc(100% / 3);
  }
}
@media only screen and (min-width: 1024px) {
  .columns .col.col-1of4 {
    flex-basis: 25%;
  }
}
@media only screen and (min-width: 1280px) {
  .columns .col.col-1of6 {
    flex-basis: calc(100% / 6.2);
  }
}
@supports (-webkit-touch-callout: none) {
  .columns .col {
    width: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .columns .col.col-1of3 {
    flex-basis: 50% !important;
  }
}
/*------------------------------------*\
 HEADER
 \*------------------------------------*/
.header {
  padding: 2rem 0;
  background-color: #FFFFFF;
  position: relative;
  z-index: 999;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo .logo-img {
  width: 150px;
}
.header #mobile-menu-button {
  width: 2.4rem;
  height: calc(2.4rem / 1.5);
  transform: rotate(0deg);
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .header #mobile-menu-button {
    display: none;
  }
}
.header #mobile-menu-button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  transform: rotate(0);
  transition: 0.2s ease-in-out;
}
.header #mobile-menu-button span:nth-child(1) {
  top: 0;
}
.header #mobile-menu-button span:nth-child(2), .header #mobile-menu-button span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(0);
}
.header #mobile-menu-button span:nth-child(4) {
  bottom: 0;
}
.header #mobile-menu-button.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(0);
  width: 0%;
  left: 50%;
}
.header #mobile-menu-button.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header #mobile-menu-button.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header #mobile-menu-button.open span:nth-child(4) {
  bottom: 50%;
  transform: translateY(50%) rotate(0);
  width: 0%;
  left: 50%;
  /* MENU */
}
.header .nav {
  font-size: 1rem;
  position: absolute;
  transition: left 0.3s ease;
  bottom: 0;
  display: block;
  width: 100%;
  left: -150%;
  transform: translateY(calc(100% - 1rem));
  z-index: 99;
  background: white;
  text-align: center;
  transition: left 0.3s ease;
}
.header .nav.open {
  left: 0;
}
@media only screen and (min-width: 768px) {
  /* Eka taso UL */
  .header .nav {
    text-align: right;
    user-select: none;
    position: relative;
    transform: none;
    z-index: 0;
    left: auto;
  }
}
.header .nav > ul {
  margin: 0;
  padding: 1em;
}
@media only screen and (min-width: 768px) {
  /* Eka taso LI */
  .header .nav > ul {
    padding: 0;
  }
}
.header .nav > ul > li {
  display: block;
  margin: 0.5em 0;
}
@media only screen and (min-width: 768px) {
  /* Kaikki alemmat tasot UL */
  .header .nav > ul > li {
    display: inline-block;
    margin: 0.5rem 0 0.5rem 3rem;
  }
  .header .nav > ul > li:first-child {
    margin-left: 0;
  }
}
.header .nav > ul > li ul.sub-menu {
  height: 0;
  list-style: none;
  padding: 0;
  overflow: hidden;
  font-size: 0.9em;
  background-color: #FFFFFF;
}
@media only screen and (min-width: 768px) {
  .header .nav > ul > li ul.sub-menu {
    position: absolute;
    font-size: 1em;
    padding: 0 1rem;
    width: auto;
    text-align: left;
  }
  .header .nav > ul > li ul.sub-menu.open {
    overflow: visible;
  }
}
.header .nav > ul > li ul.sub-menu li:first-child {
  margin-top: 0.5rem;
}
.header .nav > ul > li ul.sub-menu li:last-child {
  margin-bottom: 0.5rem;
  /* Tasottain alemman tason UL */
}
@media only screen and (min-width: 768px) {
  /* Kaikki LI */
  .header .nav > ul > li > ul.sub-menu {
    left: -1rem;
    bottom: calc(-0.5rem - 2rem);
    transform: translateY(100%);
  }
  .header .nav > ul > li > ul.sub-menu.open-to-left {
    left: auto;
    right: -1rem;
  }
  .header .nav > ul > li > ul.sub-menu li > ul.sub-menu {
    right: -1rem;
    top: -0.5rem;
    transform: translateX(100%);
  }
  .header .nav > ul > li > ul.sub-menu li > ul.sub-menu.open-to-left {
    right: auto;
    left: -1rem;
    transform: translateX(-100%);
  }
}
.header .nav > ul li {
  position: relative;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .header .nav > ul li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.header .nav > ul li a {
  text-decoration: none;
  transition: 0.2s ease-in-out;
  /* Kaikki current itemit */
}
.header .nav > ul .current-menu-ancestor > a, .header .nav > ul .current-menu-item > a {
  color: #ff5543;
}
.header .nav > ul .current-menu-ancestor > a:hover, .header .nav > ul .current-menu-item > a:hover {
  color: #ff5543;
}
.header .nav > ul .current-menu-ancestor > .arrow span, .header .nav > ul .current-menu-item > .arrow span {
  background-color: #ff5543 !important;
}
.header .nav > ul .current-menu-item:not(.menu-item-has-children) {
  pointer-events: none;
  /* Kaikki parentit */
}
.header .nav > ul .menu-item-has-children {
  padding-right: calc(2 * 1rem);
  padding-left: calc(2 * 1rem);
}
@media only screen and (min-width: 768px) {
  .header .nav > ul .menu-item-has-children {
    padding-left: 0;
  }
  .header .nav > ul .menu-item-has-children.hover > a {
    color: #ff5543;
  }
  .header .nav > ul .menu-item-has-children.hover > span.arrow span {
    background-color: #ff5543;
  }
}
.header .nav > ul .menu-item-has-children .arrow {
  display: block;
  position: absolute;
  right: calc(2.4rem / 2 - 1rem / 2);
  top: calc(1em - 0.5em);
  transform: translateY(-30%);
  width: 1rem;
  height: 1rem;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .header .nav > ul .menu-item-has-children .arrow {
    cursor: default;
    right: 0;
  }
}
.header .nav > ul .menu-item-has-children .arrow span {
  position: absolute;
  width: calc(0.707106781186548 * 1rem);
  height: 2px;
  border-radius: 2px;
  background-color: #040404;
  top: 70%;
  transition: 0.2s ease-in-out;
}
.header .nav > ul .menu-item-has-children .arrow span:first-child {
  left: calc(50% + 2px / 2);
  transform: translateX(-100%) rotate(45deg);
  transform-origin: calc(100% - 2px / 2) center;
}
.header .nav > ul .menu-item-has-children .arrow span:last-child {
  right: calc(50% + 2px / 2);
  transform: translateX(100%) rotate(-45deg);
  transform-origin: calc(2px / 2) center;
}
.header .nav > ul .menu-item-has-children .arrow.open span {
  top: 25%;
  background-color: #ff5543;
}
.header .nav > ul .menu-item-has-children .arrow.open span:first-child {
  transform: translateX(-100%) rotate(-45deg);
}
.header .nav > ul .menu-item-has-children .arrow.open span:last-child {
  transform: translateX(100%) rotate(45deg);
}
.header .nav > ul .menu-item-has-children .arrow:hover span {
  background-color: #ff5543;
}
/*------------------------------------*\
 FOOTER
 \*------------------------------------*/
.footer {
  padding: 5rem 0;
  position: relative;
  margin-top: 5rem;
}
.footer .copyright {
  text-align: center;
  margin: 0;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 1rem;
  font-size: 0.8rem;
  user-select: none;
}
.footer .copyright img {
  width: 55px;
}
/*------------------------------------*\
 RESPONSIIVISUUS
 \*------------------------------------*/
/* Mobiili */
/* Tabletti */
/* Tyopoyta */
/*------------------------------------*\
 PLUGINS
 \*------------------------------------*/
/* Contact Form 7 */
.wpcf7 input[type="text"], .wpcf7 input[type="email"] {
  border: 1px solid;
  width: 100%;
}
.wpcf7 textarea {
  width: 100%;
}
.wpcf7 .columns {
  justify-content: flex-start;
}
.wpcf7 .columns .col.col-1of3 {
  width: calc(100% / 3);
}
@media only screen and (max-width: 1024px) {
  .wpcf7 .columns .col.col-1of3 {
    width: auto;
  }
}
.wpcf7 .columns .col.col-1of4 {
  width: 25%;
}
@media only screen and (max-width: 1024px) {
  .wpcf7 .columns .col.col-1of4 {
    width: auto;
  }
}
.wpcf7 .columns .col.col-1of5 {
  width: 20%;
}
@media only screen and (max-width: 1024px) {
  .wpcf7 .columns .col.col-1of5 {
    width: auto;
  }
}
/* Joku muu yleinen plugini, joka vaatii määritykset */
/*# sourceMappingURL=https://psek.fi/wp-content/build/scss_library/d4d2e7cb65d9da0ea426f096cd12d9c7a5a63be1.css.map */