/* --------------------------
* WM 7-1 SCSS - Version 2.0.0b
* --------------------------
*/
/* 2.0.0b (22.03.18 // FH)
  * - Completely restructured the entire thing, movign to a more reusable component-based framework.
  *   = Added some components and base partials as humble beginnings for 2.0.
  *   = Added _required partial to store all hardcoded required variables.
  *   = All configuration now goes in abstract/_config.scss
  *   = Added procedurally generated margin, padding and border classes (See _spacings and _borders). 
  *   = Moved "_globals" to "base/".
  *   = Renamed build file to wm-style. This allows minification of the output since we no longer need to keep the comment lines required by WP in the build output. Just remember to include this file also!
  *   = Renamed "pages/" to "site/" to reflect its updated use as site-wide specific rules.
  *   = Removed "template/" directory. This goes in "site/" now.
  *   = Removed "overrides/" directory. This also goes in "site/".
  * - Lots and lots of small fixes and changes.
  */
/* 1.1:
 * - Added global namespace variable.
 * - Added some automation to text classes, check _type partial!
 * - Moved colours to map.
 * (26.11.2017 FH)
*/
/*  1.03:
 *  - Fixed mobile breakpoint.
 *  - Added generic svg size classes.
 */
@media (max-width: 980px) {
  .p-hide-on-mobile {
    display: none;
  }
}

@media (min-width: 981px) {
  .p-hide-on-desktop {
    display: none;
  }
}

/* Any defined colours as background (e.g. .site-bg-primary)*/
.p-bg-lightblue {
  background-color: #71C5E8;
}

.p-col-lightblue {
  color: #71C5E8;
}
.p-col-lightblue:hover {
  color: #71C5E8;
}

.p-hovercol-lightblue:hover {
  color: #71C5E8;
}

.p-bg-blue {
  background-color: #00A3E0;
}

.p-col-blue {
  color: #00A3E0;
}
.p-col-blue:hover {
  color: #00A3E0;
}

.p-hovercol-blue:hover {
  color: #00A3E0;
}

.p-bg-midblue {
  background-color: #007DBA;
}

.p-col-midblue {
  color: #007DBA;
}
.p-col-midblue:hover {
  color: #007DBA;
}

.p-hovercol-midblue:hover {
  color: #007DBA;
}

.p-bg-darkblue {
  background-color: #000333;
}

.p-col-darkblue {
  color: #000333;
}
.p-col-darkblue:hover {
  color: #000333;
}

.p-hovercol-darkblue:hover {
  color: #000333;
}

.p-bg-gray {
  background-color: #E6E6E6;
}

.p-col-gray {
  color: #E6E6E6;
}
.p-col-gray:hover {
  color: #E6E6E6;
}

.p-hovercol-gray:hover {
  color: #E6E6E6;
}

.p-bg-darkgray {
  background-color: #25282a;
}

.p-col-darkgray {
  color: #25282a;
}
.p-col-darkgray:hover {
  color: #25282a;
}

.p-hovercol-darkgray:hover {
  color: #25282a;
}

.p-bg-green {
  background-color: #5bb469;
}

.p-col-green {
  color: #5bb469;
}
.p-col-green:hover {
  color: #5bb469;
}

.p-hovercol-green:hover {
  color: #5bb469;
}

.p-bg-nordic-blue {
  background-color: #0070E1;
}

.p-col-nordic-blue {
  color: #0070E1;
}
.p-col-nordic-blue:hover {
  color: #0070E1;
}

.p-hovercol-nordic-blue:hover {
  color: #0070E1;
}

.p-bg-primary {
  background-color: #00A3E0;
}

.p-col-primary {
  color: #00A3E0;
}
.p-col-primary:hover {
  color: #00A3E0;
}

.p-hovercol-primary:hover {
  color: #00A3E0;
}

.p-bg-secondary {
  background-color: #000333;
}

.p-col-secondary {
  color: #000333;
}
.p-col-secondary:hover {
  color: #000333;
}

.p-hovercol-secondary:hover {
  color: #000333;
}

.p-bg-text {
  background-color: #25282a;
}

.p-col-text {
  color: #25282a;
}
.p-col-text:hover {
  color: #25282a;
}

.p-hovercol-text:hover {
  color: #25282a;
}

.p-bg-grey {
  background-color: #E6E6E6;
}

.p-col-grey {
  color: #E6E6E6;
}
.p-col-grey:hover {
  color: #E6E6E6;
}

.p-hovercol-grey:hover {
  color: #E6E6E6;
}

.p-bg-darkgrey {
  background-color: #25282a;
}

.p-col-darkgrey {
  color: #25282a;
}
.p-col-darkgrey:hover {
  color: #25282a;
}

.p-hovercol-darkgrey:hover {
  color: #25282a;
}

.p-bg-black {
  background-color: black;
}

.p-col-black {
  color: black;
}
.p-col-black:hover {
  color: black;
}

.p-hovercol-black:hover {
  color: black;
}

.p-bg-white {
  background-color: white;
}

.p-col-white {
  color: white;
}
.p-col-white:hover {
  color: white;
}

.p-hovercol-white:hover {
  color: white;
}

a.p-nodeco {
  text-decoration: none;
}

.p-h200 {
  height: 200px;
}

.p-h300 {
  height: 300px;
}

.p-h600 {
  height: 600px;
}

.p-h800 {
  height: 800px;
}

/* Force block display*/
.p-block {
  display: block;
}

/* Force centered content*/
.p-tcenter {
  text-align: center;
}

.p-mcenter {
  margin-left: auto;
  margin-right: auto;
}

.p-vcenter-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-vcenter-content.p-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.p-shadow {
  -webkit-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.25);
}

.p-float-left {
  float: left;
}

.p-float-right {
  float: right;
}

.p-clear-float {
  clear: both;
}

.wpb_content_element, .vc_column-inner {
  margin: 0;
  padding: 0;
}

.vc_column-inner {
  padding-top: 0 !important;
}

article .post-thumbnail {
  display: none !important;
}

p.wm-text, input.wm-toggle-check:checked + .wm-toggle p.wm-c-content, .wm-toggle p.wm-c-content, span.wm-text, input.wm-toggle-check:checked + .wm-toggle span.wm-c-content, .wm-toggle span.wm-c-content, a.wm-text, input.wm-toggle-check:checked + .wm-toggle a.wm-c-content, .wm-toggle a.wm-c-content {
  font-size: 16px;
  color: #25282a;
}

h1.wm-text, input.wm-toggle-check:checked + .wm-toggle h1.wm-c-content, .wm-toggle h1.wm-c-content {
  font-size: 36px;
  line-height: 120%;
}

h2.wm-text, input.wm-toggle-check:checked + .wm-toggle h2.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2, .wm-toggle h2.wm-c-content, .wm-toggle .wm-c-title h2 {
  font-size: 30px;
  line-height: 120%;
}

h3.wm-text, input.wm-toggle-check:checked + .wm-toggle h3.wm-c-content, .wm-toggle h3.wm-c-content {
  font-size: 24px;
  line-height: 120%;
}

h4.wm-text, input.wm-toggle-check:checked + .wm-toggle h4.wm-c-content, .wm-toggle h4.wm-c-content {
  font-size: 20px;
  line-height: 120%;
}

h5.wm-text, input.wm-toggle-check:checked + .wm-toggle h5.wm-c-content, .wm-toggle h5.wm-c-content {
  font-size: 16px;
  line-height: 120%;
}

h6.wm-text, input.wm-toggle-check:checked + .wm-toggle h6.wm-c-content, .wm-toggle h6.wm-c-content {
  font-size: 16px;
  line-height: 120%;
}

.wm-text h1, input.wm-toggle-check:checked + .wm-toggle .wm-c-content h1, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h1, .wm-toggle .wm-c-content h1, .wm-toggle .wm-c-title h2 h1 {
  font-size: 36px;
  line-height: 120%;
}
.wm-text h2, input.wm-toggle-check:checked + .wm-toggle .wm-c-content h2, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h2, .wm-toggle .wm-c-content h2, .wm-toggle .wm-c-title h2 h2 {
  font-size: 30px;
  line-height: 120%;
}
.wm-text h3, input.wm-toggle-check:checked + .wm-toggle .wm-c-content h3, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h3, .wm-toggle .wm-c-content h3, .wm-toggle .wm-c-title h2 h3 {
  font-size: 24px;
  line-height: 120%;
}
.wm-text h4, input.wm-toggle-check:checked + .wm-toggle .wm-c-content h4, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h4, .wm-toggle .wm-c-content h4, .wm-toggle .wm-c-title h2 h4 {
  font-size: 20px;
  line-height: 120%;
}
.wm-text h5, input.wm-toggle-check:checked + .wm-toggle .wm-c-content h5, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h5, .wm-toggle .wm-c-content h5, .wm-toggle .wm-c-title h2 h5 {
  font-size: 16px;
  line-height: 120%;
}
.wm-text h6, input.wm-toggle-check:checked + .wm-toggle .wm-c-content h6, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h6, .wm-toggle .wm-c-content h6, .wm-toggle .wm-c-title h2 h6 {
  font-size: 16px;
  line-height: 120%;
}
.wm-text.t-lightblue, input.wm-toggle-check:checked + .wm-toggle .t-lightblue.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-lightblue, .wm-toggle .t-lightblue.wm-c-content, .wm-toggle .wm-c-title h2.t-lightblue, .wm-text .t-lightblue, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-lightblue, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-lightblue, .wm-toggle .wm-c-content .t-lightblue, .wm-toggle .wm-c-title h2 .t-lightblue, .wm-text .t-lightblue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-lightblue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-lightblue *, .wm-toggle .wm-c-content .t-lightblue *, .wm-toggle .wm-c-title h2 .t-lightblue *, .wm-text.t-lightblue.t-nohover:hover, .wm-text .t-hover-lightblue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-lightblue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-lightblue:hover, .wm-toggle .wm-c-content .t-hover-lightblue:hover, .wm-toggle .wm-c-title h2 .t-hover-lightblue:hover {
  color: #71C5E8;
}
.wm-text.t-blue, input.wm-toggle-check:checked + .wm-toggle .t-blue.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-blue, .wm-toggle .t-blue.wm-c-content, .wm-toggle .wm-c-title h2.t-blue, .wm-text .t-blue, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-blue, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-blue, .wm-toggle .wm-c-content .t-blue, .wm-toggle .wm-c-title h2 .t-blue, .wm-text .t-blue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-blue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-blue *, .wm-toggle .wm-c-content .t-blue *, .wm-toggle .wm-c-title h2 .t-blue *, .wm-text.t-blue.t-nohover:hover, .wm-text .t-hover-blue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-blue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-blue:hover, .wm-toggle .wm-c-content .t-hover-blue:hover, .wm-toggle .wm-c-title h2 .t-hover-blue:hover {
  color: #00A3E0;
}
.wm-text.t-midblue, input.wm-toggle-check:checked + .wm-toggle .t-midblue.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-midblue, .wm-toggle .t-midblue.wm-c-content, .wm-toggle .wm-c-title h2.t-midblue, .wm-text .t-midblue, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-midblue, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-midblue, .wm-toggle .wm-c-content .t-midblue, .wm-toggle .wm-c-title h2 .t-midblue, .wm-text .t-midblue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-midblue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-midblue *, .wm-toggle .wm-c-content .t-midblue *, .wm-toggle .wm-c-title h2 .t-midblue *, .wm-text.t-midblue.t-nohover:hover, .wm-text .t-hover-midblue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-midblue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-midblue:hover, .wm-toggle .wm-c-content .t-hover-midblue:hover, .wm-toggle .wm-c-title h2 .t-hover-midblue:hover {
  color: #007DBA;
}
.wm-text.t-darkblue, input.wm-toggle-check:checked + .wm-toggle .t-darkblue.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-darkblue, .wm-toggle .t-darkblue.wm-c-content, .wm-toggle .wm-c-title h2.t-darkblue, .wm-text .t-darkblue, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-darkblue, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-darkblue, .wm-toggle .wm-c-content .t-darkblue, .wm-toggle .wm-c-title h2 .t-darkblue, .wm-text .t-darkblue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-darkblue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-darkblue *, .wm-toggle .wm-c-content .t-darkblue *, .wm-toggle .wm-c-title h2 .t-darkblue *, .wm-text.t-darkblue.t-nohover:hover, .wm-text .t-hover-darkblue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-darkblue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-darkblue:hover, .wm-toggle .wm-c-content .t-hover-darkblue:hover, .wm-toggle .wm-c-title h2 .t-hover-darkblue:hover {
  color: #000333;
}
.wm-text.t-gray, input.wm-toggle-check:checked + .wm-toggle .t-gray.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-gray, .wm-toggle .t-gray.wm-c-content, .wm-toggle .wm-c-title h2.t-gray, .wm-text .t-gray, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-gray, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-gray, .wm-toggle .wm-c-content .t-gray, .wm-toggle .wm-c-title h2 .t-gray, .wm-text .t-gray *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-gray *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-gray *, .wm-toggle .wm-c-content .t-gray *, .wm-toggle .wm-c-title h2 .t-gray *, .wm-text.t-gray.t-nohover:hover, .wm-text .t-hover-gray:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-gray:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-gray:hover, .wm-toggle .wm-c-content .t-hover-gray:hover, .wm-toggle .wm-c-title h2 .t-hover-gray:hover {
  color: #E6E6E6;
}
.wm-text.t-darkgray, input.wm-toggle-check:checked + .wm-toggle .t-darkgray.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-darkgray, .wm-toggle .t-darkgray.wm-c-content, .wm-toggle .wm-c-title h2.t-darkgray, .wm-text .t-darkgray, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-darkgray, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-darkgray, .wm-toggle .wm-c-content .t-darkgray, .wm-toggle .wm-c-title h2 .t-darkgray, .wm-text .t-darkgray *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-darkgray *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-darkgray *, .wm-toggle .wm-c-content .t-darkgray *, .wm-toggle .wm-c-title h2 .t-darkgray *, .wm-text.t-darkgray.t-nohover:hover, .wm-text .t-hover-darkgray:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-darkgray:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-darkgray:hover, .wm-toggle .wm-c-content .t-hover-darkgray:hover, .wm-toggle .wm-c-title h2 .t-hover-darkgray:hover {
  color: #25282a;
}
.wm-text.t-green, input.wm-toggle-check:checked + .wm-toggle .t-green.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-green, .wm-toggle .t-green.wm-c-content, .wm-toggle .wm-c-title h2.t-green, .wm-text .t-green, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-green, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-green, .wm-toggle .wm-c-content .t-green, .wm-toggle .wm-c-title h2 .t-green, .wm-text .t-green *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-green *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-green *, .wm-toggle .wm-c-content .t-green *, .wm-toggle .wm-c-title h2 .t-green *, .wm-text.t-green.t-nohover:hover, .wm-text .t-hover-green:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-green:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-green:hover, .wm-toggle .wm-c-content .t-hover-green:hover, .wm-toggle .wm-c-title h2 .t-hover-green:hover {
  color: #5bb469;
}
.wm-text.t-nordic-blue, input.wm-toggle-check:checked + .wm-toggle .t-nordic-blue.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-nordic-blue, .wm-toggle .t-nordic-blue.wm-c-content, .wm-toggle .wm-c-title h2.t-nordic-blue, .wm-text .t-nordic-blue, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-nordic-blue, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-nordic-blue, .wm-toggle .wm-c-content .t-nordic-blue, .wm-toggle .wm-c-title h2 .t-nordic-blue, .wm-text .t-nordic-blue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-nordic-blue *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-nordic-blue *, .wm-toggle .wm-c-content .t-nordic-blue *, .wm-toggle .wm-c-title h2 .t-nordic-blue *, .wm-text.t-nordic-blue.t-nohover:hover, .wm-text .t-hover-nordic-blue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-nordic-blue:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-nordic-blue:hover, .wm-toggle .wm-c-content .t-hover-nordic-blue:hover, .wm-toggle .wm-c-title h2 .t-hover-nordic-blue:hover {
  color: #0070E1;
}
.wm-text.t-primary, input.wm-toggle-check:checked + .wm-toggle .t-primary.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-primary, .wm-toggle .wm-text.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.wm-c-content, .wm-toggle .t-primary.wm-c-content, .wm-toggle .wm-c-content, .wm-toggle .wm-c-title h2, .wm-text .t-primary, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-primary, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-primary, .wm-text .wm-toggle .wm-c-content, .wm-toggle .wm-text .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .wm-c-content, .wm-toggle .wm-c-content .t-primary, .wm-toggle .wm-c-content .wm-c-content, .wm-toggle .wm-c-title h2 .t-primary, .wm-toggle .wm-c-title h2 .wm-c-content, .wm-text .t-primary *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-primary *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-primary *, .wm-text .wm-toggle .wm-c-content *, .wm-toggle .wm-text .wm-c-content *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-c-content *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .wm-c-content *, .wm-toggle .wm-c-content .t-primary *, .wm-toggle .wm-c-content .wm-c-content *, .wm-text .wm-toggle .wm-c-title h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-toggle .wm-c-title h2 *, .wm-toggle .wm-c-content .wm-toggle .wm-c-title h2 *, .wm-toggle .wm-c-title .wm-text h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title .wm-c-content h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h2 *, .wm-toggle .wm-c-title .wm-c-content h2 *, .wm-toggle .wm-c-title h2 .t-primary *, .wm-toggle .wm-c-title h2 .wm-c-content *, .wm-toggle .wm-c-title h2 h2 *, .wm-text.t-primary.t-nohover:hover, .wm-text .t-hover-primary:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-primary:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-primary:hover, .wm-toggle .wm-c-content .t-hover-primary:hover, .wm-toggle .wm-c-title h2 .t-hover-primary:hover {
  color: #00A3E0;
}
.wm-text.t-secondary, input.wm-toggle-check:checked + .wm-toggle .t-secondary.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-secondary, .wm-toggle .t-secondary.wm-c-content, .wm-toggle .wm-c-title h2.t-secondary, .wm-text .t-secondary, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-secondary, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-secondary, .wm-toggle .wm-c-content .t-secondary, .wm-toggle .wm-c-title h2 .t-secondary, .wm-text .t-secondary *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-secondary *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-secondary *, .wm-toggle .wm-c-content .t-secondary *, .wm-toggle .wm-c-title h2 .t-secondary *, .wm-text.t-secondary.t-nohover:hover, .wm-text .t-hover-secondary:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-secondary:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-secondary:hover, .wm-toggle .wm-c-content .t-hover-secondary:hover, .wm-toggle .wm-c-title h2 .t-hover-secondary:hover {
  color: #000333;
}
.wm-text.t-text, input.wm-toggle-check:checked + .wm-toggle .t-text.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-text, .wm-toggle .t-text.wm-c-content, .wm-toggle .wm-c-title h2.t-text, .wm-text .t-text, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-text, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-text, .wm-toggle .wm-c-content .t-text, .wm-toggle .wm-c-title h2 .t-text, .wm-text .t-text *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-text *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-text *, .wm-toggle .wm-c-content .t-text *, .wm-toggle .wm-c-title h2 .t-text *, .wm-text.t-text.t-nohover:hover, .wm-text .t-hover-text:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-text:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-text:hover, .wm-toggle .wm-c-content .t-hover-text:hover, .wm-toggle .wm-c-title h2 .t-hover-text:hover {
  color: #25282a;
}
.wm-text.t-grey, input.wm-toggle-check:checked + .wm-toggle .t-grey.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-grey, .wm-toggle .t-grey.wm-c-content, .wm-toggle .wm-c-title h2.t-grey, .wm-text .t-grey, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-grey, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-grey, .wm-toggle .wm-c-content .t-grey, .wm-toggle .wm-c-title h2 .t-grey, .wm-text .t-grey *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-grey *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-grey *, .wm-toggle .wm-c-content .t-grey *, .wm-toggle .wm-c-title h2 .t-grey *, .wm-text.t-grey.t-nohover:hover, .wm-text .t-hover-grey:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-grey:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-grey:hover, .wm-toggle .wm-c-content .t-hover-grey:hover, .wm-toggle .wm-c-title h2 .t-hover-grey:hover {
  color: #E6E6E6;
}
.wm-text.t-darkgrey, input.wm-toggle-check:checked + .wm-toggle .t-darkgrey.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-darkgrey, .wm-toggle .t-darkgrey.wm-c-content, .wm-toggle .wm-c-title h2.t-darkgrey, .wm-text .t-darkgrey, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-darkgrey, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-darkgrey, .wm-toggle .wm-c-content .t-darkgrey, .wm-toggle .wm-c-title h2 .t-darkgrey, .wm-text .t-darkgrey *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-darkgrey *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-darkgrey *, .wm-toggle .wm-c-content .t-darkgrey *, .wm-toggle .wm-c-title h2 .t-darkgrey *, .wm-text.t-darkgrey.t-nohover:hover, .wm-text .t-hover-darkgrey:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-darkgrey:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-darkgrey:hover, .wm-toggle .wm-c-content .t-hover-darkgrey:hover, .wm-toggle .wm-c-title h2 .t-hover-darkgrey:hover {
  color: #25282a;
}
.wm-text.t-black, input.wm-toggle-check:checked + .wm-toggle .t-black.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-black, .wm-toggle .t-black.wm-c-content, .wm-toggle .wm-c-title h2.t-black, .wm-text .t-black, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-black, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-black, .wm-toggle .wm-c-content .t-black, .wm-toggle .wm-c-title h2 .t-black, .wm-text .t-black *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-black *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-black *, .wm-toggle .wm-c-content .t-black *, .wm-toggle .wm-c-title h2 .t-black *, .wm-text.t-black.t-nohover:hover, .wm-text .t-hover-black:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-black:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-black:hover, .wm-toggle .wm-c-content .t-hover-black:hover, .wm-toggle .wm-c-title h2 .t-hover-black:hover {
  color: black;
}
.wm-text.t-white, input.wm-toggle-check:checked + .wm-toggle .wm-text.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .t-white.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2, .wm-toggle .t-white.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-content, .wm-toggle .wm-c-title h2.t-white, .wm-text .t-white, .wm-text input.wm-toggle-check:checked + .wm-toggle .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-text .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-white, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-white, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .wm-c-content, .wm-toggle .wm-c-content .t-white, .wm-toggle .wm-c-title h2 .t-white, .wm-text .t-white *, .wm-text input.wm-toggle-check:checked + .wm-toggle .wm-c-content *, input.wm-toggle-check:checked + .wm-toggle .wm-text .wm-c-content *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-white *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-c-content *, .wm-text input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title .wm-text h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title .wm-c-content h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-white *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .wm-c-content *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h2 *, .wm-toggle .wm-c-content .t-white *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-c-title h2 *, .wm-toggle .wm-c-title h2 .t-white *, .wm-text.t-white.t-nohover:hover, .wm-text .t-hover-white:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hover-white:hover, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hover-white:hover, .wm-toggle .wm-c-content .t-hover-white:hover, .wm-toggle .wm-c-title h2 .t-hover-white:hover {
  color: white;
}
.wm-text.t-header, input.wm-toggle-check:checked + .wm-toggle .t-header.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-header, .wm-toggle .t-header.wm-c-content, .wm-toggle .wm-c-title h2, .wm-text .t-header, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-header, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-header, .wm-toggle .wm-c-content .t-header, .wm-toggle .wm-c-title h2 .t-header, .wm-text .t-header *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-header *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-header *, .wm-toggle .wm-c-content .t-header *, .wm-text .wm-toggle .wm-c-title h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-toggle .wm-c-title h2 *, .wm-toggle .wm-c-content .wm-toggle .wm-c-title h2 *, .wm-toggle .wm-c-title .wm-text h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title .wm-c-content h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h2 *, .wm-toggle .wm-c-title .wm-c-content h2 *, .wm-toggle .wm-c-title h2 .t-header *, .wm-toggle .wm-c-title h2 h2 * {
  font-family: "Khand" , sans-serif;
}
.wm-text.t-standard, input.wm-toggle-check:checked + .wm-toggle .t-standard.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-standard, .wm-toggle .t-standard.wm-c-content, .wm-toggle .wm-c-title h2.t-standard, .wm-text .t-standard, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-standard, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-standard, .wm-toggle .wm-c-content .t-standard, .wm-toggle .wm-c-title h2 .t-standard, .wm-text .t-standard *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-standard *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-standard *, .wm-toggle .wm-c-content .t-standard *, .wm-toggle .wm-c-title h2 .t-standard * {
  font-family: "Roboto" , sans-serif;
}
.wm-text.t-light, input.wm-toggle-check:checked + .wm-toggle .t-light.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-light, .wm-toggle .t-light.wm-c-content, .wm-toggle .wm-c-title h2.t-light, .wm-text .t-light, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-light, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-light, .wm-toggle .wm-c-content .t-light, .wm-toggle .wm-c-title h2 .t-light, .wm-text .t-light *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-light *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-light *, .wm-toggle .wm-c-content .t-light *, .wm-toggle .wm-c-title h2 .t-light * {
  font-weight: 300;
}
.wm-text.t-semibold, input.wm-toggle-check:checked + .wm-toggle .t-semibold.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-semibold, .wm-toggle .t-semibold.wm-c-content, .wm-toggle .wm-c-title h2, .wm-text .t-semibold, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-semibold, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-semibold, .wm-toggle .wm-c-content .t-semibold, .wm-toggle .wm-c-title h2 .t-semibold, .wm-text .t-semibold *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-semibold *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-semibold *, .wm-toggle .wm-c-content .t-semibold *, .wm-text .wm-toggle .wm-c-title h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-toggle .wm-c-title h2 *, .wm-toggle .wm-c-content .wm-toggle .wm-c-title h2 *, .wm-toggle .wm-c-title .wm-text h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title .wm-c-content h2 *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 h2 *, .wm-toggle .wm-c-title .wm-c-content h2 *, .wm-toggle .wm-c-title h2 .t-semibold *, .wm-toggle .wm-c-title h2 h2 * {
  font-weight: 600;
}
.wm-text.t-bold, input.wm-toggle-check:checked + .wm-toggle .t-bold.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-bold, .wm-toggle .t-bold.wm-c-content, .wm-toggle .wm-c-title h2.t-bold, .wm-text .t-bold, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-bold, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-bold, .wm-toggle .wm-c-content .t-bold, .wm-toggle .wm-c-title h2 .t-bold, .wm-text .t-bold *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-bold *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-bold *, .wm-toggle .wm-c-content .t-bold *, .wm-toggle .wm-c-title h2 .t-bold * {
  font-weight: 700;
}
.wm-text.t-small, input.wm-toggle-check:checked + .wm-toggle .t-small.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-small, .wm-toggle .wm-text.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.wm-c-content, .wm-toggle .t-small.wm-c-content, .wm-toggle .wm-c-content, .wm-toggle .wm-c-title h2.t-small, .wm-toggle .wm-c-title h2.wm-c-content, .wm-text .t-small, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-small, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-small, .wm-text .wm-toggle .wm-c-content, .wm-toggle .wm-text .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .wm-c-content, .wm-toggle .wm-c-content .t-small, .wm-toggle .wm-c-content .wm-c-content, .wm-toggle .wm-c-title h2 .t-small, .wm-toggle .wm-c-title h2 .wm-c-content, .wm-text .t-small *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-small *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-small *, .wm-text .wm-toggle .wm-c-content *, .wm-toggle .wm-text .wm-c-content *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .wm-c-content *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .wm-c-content *, .wm-toggle .wm-c-content .t-small *, .wm-toggle .wm-c-content .wm-c-content *, .wm-toggle .wm-c-title h2 .t-small *, .wm-toggle .wm-c-title h2 .wm-c-content * {
  font-size: 16px;
  line-height: 24px;
}
.wm-text.t-medium, input.wm-toggle-check:checked + .wm-toggle .t-medium.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-medium, .wm-toggle .t-medium.wm-c-content, .wm-toggle .wm-c-title h2.t-medium, .wm-text .t-medium, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-medium, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-medium, .wm-toggle .wm-c-content .t-medium, .wm-toggle .wm-c-title h2 .t-medium, .wm-text .t-medium *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-medium *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-medium *, .wm-toggle .wm-c-content .t-medium *, .wm-toggle .wm-c-title h2 .t-medium * {
  font-size: 20px;
  line-height: 30px;
}
.wm-text.t-large, input.wm-toggle-check:checked + .wm-toggle .t-large.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-large, .wm-toggle .t-large.wm-c-content, .wm-toggle .wm-c-title h2.t-large, .wm-text .t-large, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-large, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-large, .wm-toggle .wm-c-content .t-large, .wm-toggle .wm-c-title h2 .t-large, .wm-text .t-large *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-large *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-large *, .wm-toggle .wm-c-content .t-large *, .wm-toggle .wm-c-title h2 .t-large * {
  font-size: 24px;
  line-height: 36px;
}
.wm-text.t-larger, input.wm-toggle-check:checked + .wm-toggle .t-larger.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-larger, .wm-toggle .t-larger.wm-c-content, .wm-toggle .wm-c-title h2.t-larger, .wm-text .t-larger, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-larger, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-larger, .wm-toggle .wm-c-content .t-larger, .wm-toggle .wm-c-title h2 .t-larger, .wm-text .t-larger *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-larger *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-larger *, .wm-toggle .wm-c-content .t-larger *, .wm-toggle .wm-c-title h2 .t-larger * {
  font-size: 30px;
  line-height: 45px;
}
.wm-text.t-huge, input.wm-toggle-check:checked + .wm-toggle .t-huge.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-huge, .wm-toggle .t-huge.wm-c-content, .wm-toggle .wm-c-title h2.t-huge, .wm-text .t-huge, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-huge, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-huge, .wm-toggle .wm-c-content .t-huge, .wm-toggle .wm-c-title h2 .t-huge, .wm-text .t-huge *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-huge *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-huge *, .wm-toggle .wm-c-content .t-huge *, .wm-toggle .wm-c-title h2 .t-huge * {
  font-size: 36px;
  line-height: 54px;
}
.wm-text.t-hugest, input.wm-toggle-check:checked + .wm-toggle .t-hugest.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-hugest, .wm-toggle .t-hugest.wm-c-content, .wm-toggle .wm-c-title h2.t-hugest, .wm-text .t-hugest, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hugest, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hugest, .wm-toggle .wm-c-content .t-hugest, .wm-toggle .wm-c-title h2 .t-hugest, .wm-text .t-hugest *, input.wm-toggle-check:checked + .wm-toggle .wm-c-content .t-hugest *, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2 .t-hugest *, .wm-toggle .wm-c-content .t-hugest *, .wm-toggle .wm-c-title h2 .t-hugest * {
  font-size: 72px;
  line-height: 108px;
}
.wm-text.t-nodeco, input.wm-toggle-check:checked + .wm-toggle .t-nodeco.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-nodeco, .wm-toggle .t-nodeco.wm-c-content, .wm-toggle .wm-c-title h2.t-nodeco {
  text-decoration: none;
}
.wm-text.t-tight, input.wm-toggle-check:checked + .wm-toggle .t-tight.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-tight, .wm-toggle .t-tight.wm-c-content, .wm-toggle .wm-c-title h2.t-tight {
  line-height: 120%;
}
@incude breakpoint(mobile) {
  .wm-text.t-mobile-scaling-8, input.wm-toggle-check:checked + .wm-toggle .t-mobile-scaling-8.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-mobile-scaling-8, .wm-toggle .t-mobile-scaling-8.wm-c-content, .wm-toggle .wm-c-title h2.t-mobile-scaling-8 {
    font-size: 8vw !important;
  }
}
.wm-text.t-aleft, input.wm-toggle-check:checked + .wm-toggle .t-aleft.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-aleft, .wm-toggle .t-aleft.wm-c-content, .wm-toggle .wm-c-title h2.t-aleft {
  text-align: left;
}
.wm-text.t-aright, input.wm-toggle-check:checked + .wm-toggle .t-aright.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-aright, .wm-toggle .t-aright.wm-c-content, .wm-toggle .wm-c-title h2.t-aright {
  text-align: right;
}
.wm-text.t-acenter, input.wm-toggle-check:checked + .wm-toggle .t-acenter.wm-c-content, input.wm-toggle-check:checked + .wm-toggle .wm-c-title h2.t-acenter, .wm-toggle .t-acenter.wm-c-content, .wm-toggle .wm-c-title h2.t-acenter {
  text-align: center;
}

body {
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif !important;
}

p {
  line-height: 24px !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Source Code Pro", monospace !important;
  font-weight: 600 !important;
}

h1 {
  font-size: 44px !important;
  color: white !important;
  line-height: 1.5 !important;
}

h2 {
  font-size: 30px !important;
}

h3 {
  font-size: 22px !important;
}

.menu-text {
  font-family: "Source Code", monospace !important;
  font-weight: 800 !important;
  letter-spacing: -0.2px !important;
}

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif !important;
}

.underline {
  border-bottom: 1px solid #0070E1;
}

.thick-underline {
  border-bottom: 3px solid white;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.blue, .blue * {
  color: #0070E1;
}

/* WM Global Spacing Classes */
/* Version history:*/
/* 1.0 - Initial release (30.11.17)*/
/* Author:*/
/* FH*/
/* Notes:*/
/* Due to a built-in rule in the7, top paddings cannot be applied to column elements.*/
/* TODOs:*/
/* Fix that ^ */
/* Wrap everything in one loop*/
/* Classes: */
/* - p-[direction][type]-[spacing] - Adds a spacing of [type] (p as in padding, m as in margin) in [spacing] px (10, 20, 30, 50 or as defined in _Variables).*/
/*   in the specified [direction]: t (top), r (right), b (bottom), l (left), a (all), h (horizontal), v (vertical). */
/*   Not specifying a spacing value will use defaultSpacing (20 unless defined in _variables).*/
/*   Margins also support "auto" for [spacing].*/
/* Usage:*/
/* <div class="p-vp">This has the default vertical (top and bottom) padding</div>*/
/* <div class="p-lm-20">This has a left margin of 20px</div>*/
/* <div class="p-hp-20 p-vp-40">This has a left/right margin of 20px and a top/bottom padding of 40px</div>*/
/* <div class="p-ap p-lm-auto">This has the default padding in every direction and a auto left/right margin</div>*/
/* in PX*/
/* in PX*/
.p-tp-0 {
  padding-top: 0px;
}

.p-tm-0 {
  margin-top: 0px;
}

.p-rp-0 {
  padding-right: 0px;
}

.p-rm-0 {
  margin-right: 0px;
}

.p-bp-0 {
  padding-bottom: 0px;
}

.p-bm-0 {
  margin-bottom: 0px;
}

.p-lp-0 {
  padding-left: 0px;
}

.p-lm-0 {
  margin-left: 0px;
}

.p-ap-0 {
  padding: 0px;
}

.p-vp-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.p-hp-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.p-am-0 {
  margin: 0px;
}

.p-vm-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.p-hm-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.p-tp-5 {
  padding-top: 5px;
}

.p-tm-5 {
  margin-top: 5px;
}

.p-rp-5 {
  padding-right: 5px;
}

.p-rm-5 {
  margin-right: 5px;
}

.p-bp-5 {
  padding-bottom: 5px;
}

.p-bm-5 {
  margin-bottom: 5px;
}

.p-lp-5 {
  padding-left: 5px;
}

.p-lm-5 {
  margin-left: 5px;
}

.p-ap-5 {
  padding: 5px;
}

.p-vp-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-hp-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.p-am-5 {
  margin: 5px;
}

.p-vm-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.p-hm-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.p-tp-10 {
  padding-top: 10px;
}

.p-tm-10 {
  margin-top: 10px;
}

.p-rp-10 {
  padding-right: 10px;
}

.p-rm-10 {
  margin-right: 10px;
}

.p-bp-10 {
  padding-bottom: 10px;
}

.p-bm-10 {
  margin-bottom: 10px;
}

.p-lp-10 {
  padding-left: 10px;
}

.p-lm-10 {
  margin-left: 10px;
}

.p-ap-10 {
  padding: 10px;
}

.p-vp-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.p-hp-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p-am-10 {
  margin: 10px;
}

.p-vm-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.p-hm-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.p-tp-20 {
  padding-top: 20px;
}

.p-tm-20 {
  margin-top: 20px;
}

.p-rp-20 {
  padding-right: 20px;
}

.p-rm-20 {
  margin-right: 20px;
}

.p-bp-20 {
  padding-bottom: 20px;
}

.p-bm-20 {
  margin-bottom: 20px;
}

.p-lp-20 {
  padding-left: 20px;
}

.p-lm-20 {
  margin-left: 20px;
}

.p-ap-20 {
  padding: 20px;
}

.p-vp-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-hp-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-am-20 {
  margin: 20px;
}

.p-vm-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.p-hm-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.p-tp-30 {
  padding-top: 30px;
}

.p-tm-30 {
  margin-top: 30px;
}

.p-rp-30 {
  padding-right: 30px;
}

.p-rm-30 {
  margin-right: 30px;
}

.p-bp-30 {
  padding-bottom: 30px;
}

.p-bm-30 {
  margin-bottom: 30px;
}

.p-lp-30 {
  padding-left: 30px;
}

.p-lm-30 {
  margin-left: 30px;
}

.p-ap-30 {
  padding: 30px;
}

.p-vp-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-hp-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.p-am-30 {
  margin: 30px;
}

.p-vm-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.p-hm-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.p-tp-45 {
  padding-top: 45px;
}

.p-tm-45 {
  margin-top: 45px;
}

.p-rp-45 {
  padding-right: 45px;
}

.p-rm-45 {
  margin-right: 45px;
}

.p-bp-45 {
  padding-bottom: 45px;
}

.p-bm-45 {
  margin-bottom: 45px;
}

.p-lp-45 {
  padding-left: 45px;
}

.p-lm-45 {
  margin-left: 45px;
}

.p-ap-45 {
  padding: 45px;
}

.p-vp-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.p-hp-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.p-am-45 {
  margin: 45px;
}

.p-vm-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.p-hm-45 {
  margin-left: 45px;
  margin-right: 45px;
}

.p-tp {
  padding-top: 30px;
}

.p-tm {
  margin-top: 30px;
}

.p-tm-auto {
  margin-top: auto;
}

.p-rp {
  padding-right: 30px;
}

.p-rm {
  margin-right: 30px;
}

.p-rm-auto {
  margin-right: auto;
}

.p-bp {
  padding-bottom: 30px;
}

.p-bm {
  margin-bottom: 30px;
}

.p-bm-auto {
  margin-bottom: auto;
}

.p-lp {
  padding-left: 30px;
}

.p-lm {
  margin-left: 30px;
}

.p-lm-auto {
  margin-left: auto;
}

.p-vp {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-hp {
  padding-left: 30px;
  padding-right: 30px;
}

.p-ap {
  padding: 30px;
}

.p-vm {
  margin-top: 30px;
  margin-bottom: 30px;
}

.p-hm {
  margin-left: 30px;
  margin-right: 30px;
}

.p-am {
  margin: 30px;
}

.p-am-auto {
  margin: auto;
}

.p-vm-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.p-hm-auto {
  margin-left: auto;
  margin-left: auto;
}

/* Borders*/
.p-border {
  border-style: solid;
  border-width: 2px;
}

.p-tb {
  border-top-style: solid;
}

.p-rb {
  border-right-style: solid;
}

.p-bb {
  border-bottom-style: solid;
}

.p-lb {
  border-left-style: solid;
}

.p-ab {
  border-style: solid;
}

.p-vb {
  border-top-style: solid;
  border-bottom-style: solid;
}

.p-hb {
  border-left-style: solid;
  border-right-style: solid;
}

.p-bc-lightblue {
  border-color: #71C5E8;
}

.p-bc-blue {
  border-color: #00A3E0;
}

.p-bc-midblue {
  border-color: #007DBA;
}

.p-bc-darkblue {
  border-color: #000333;
}

.p-bc-gray {
  border-color: #E6E6E6;
}

.p-bc-darkgray {
  border-color: #25282a;
}

.p-bc-green {
  border-color: #5bb469;
}

.p-bc-nordic-blue {
  border-color: #0070E1;
}

.p-bc-primary {
  border-color: #00A3E0;
}

.p-bc-secondary {
  border-color: #000333;
}

.p-bc-text {
  border-color: #25282a;
}

.p-bc-grey {
  border-color: #E6E6E6;
}

.p-bc-darkgrey {
  border-color: #25282a;
}

.p-bc-black {
  border-color: black;
}

.p-bc-white {
  border-color: white;
}

.p-bw {
  border-width: 2;
}

.p-bw-1 {
  border-width: 1px;
}

.p-bw-2 {
  border-width: 2px;
}

div.p-rounded {
  border-radius: 4px;
}
div.p-round-25 {
  border-radius: 25px;
}
div.p-round-50 {
  border-radius: 50px;
}
div.p-dynround {
  border-radius: 15%;
}
div.p-round {
  border-radius: 50%;
}
div .p-excl-corner-tl {
  border-top-left-radius: 0;
}
div .p-excl-corner-tr {
  border-top-right-radius: 0;
}
div .p-excl-corner-br {
  border-bottom-right-radius: 0;
}
div .p-excl-corner-bl {
  border-bottom-left-radius: 0;
}

@media (max-width: 991px) {
  h1 {
    font-size: 30px !important;
  }
  h2 {
    font-size: 25px !important;
  }
  h3 {
    font-size: 20px !important;
  }
  .tjanst-box-content:before, .tjanst-box-content:after, #header_tag, .section_tag, #header_lang_switcher {
    display: none !important;
  }
  .menu-item.wpml-ls-item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .captcha-fields {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .aktuellt-box-inner {
    padding: 2% !important;
  }
  .smal {
    width: 100% !important;
  }
  .aktuellt-ctrl {
    top: 75% !important;
  }
  #citat > .vc_row:first-child:before {
    margin-left: 0 !important;
    margin-bottom: 12px !important;
  }
  #citat > .vc_row:first-child:after {
    margin-right: 0 !important;
    margin-top: 12px !important;
  }
  .nordic-form-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .nordic-form-section {
    width: 100% !important;
  }
  .kontaktinfo-section > .vc_row > .wpb_column {
    margin-bottom: 40px;
  }
  .kontakt-grid-item .vc_gitem-row-position-bottom {
    padding: 90px 20px 20px !important;
  }
  .aktuellt-container {
    padding: 100px 0 !important;
  }
  .aktuellt-post {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .aktuellt-content, .aktuellt-image {
    width: 100% !important;
  }
  .aktuellt-content-inner {
    padding: 100px 20px 40px 20px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tjanst-box img {
    max-height: 80px !important;
  }
  .tjanst-box .nordic-btn {
    margin: 0 !important;
  }
  .footer .widget {
    width: 50% !important;
  }
}
/* WM Generic Container */
/* Version history:*/
/* 1.0 - Initial release (29.11.17)*/
/* Author:*/
/* FH*/
/* TODOs:*/
/* */
/* Dependencies: */
/* - breakpoint in _mixins*/
/* - (Optional) The7 Theme */
/* Main class: */
/* - site-container*/
/* Property modifiers:*/
/* - p-h#px - (# is Integer) Fixed height as pixels. Valid values are 200, 300, 400, 500, and 600 unless otherwise specified in _variables as $elHeights.*/
/* - p-mh#px - (# is Integer) Fixed height in mobile. Same as above.*/
/* - p-is-7-top-banner - Pulls the element up by 70px to get rid of the whitespace underneath the header in The7*/
/* Usage:*/
/* As is, or specify as the class for a the7 page builder top-level row element.*/
@media (min-width: 981px) {
  .wm-container.p-h200px {
    height: 200px;
  }
}
@media (min-width: 981px) {
  .wm-container.p-h300px {
    height: 300px;
  }
}
@media (min-width: 981px) {
  .wm-container.p-h600px {
    height: 600px;
  }
}
@media (min-width: 981px) {
  .wm-container.p-h800px {
    height: 800px;
  }
}
.wm-container.p-is-7-top-banner, .wm-container.p-7tr {
  margin-top: -70px;
}
.wm-container.p-centered-fw-child {
  max-width: 1300px;
  margin: 0 auto;
}

/* WM Universal Flexbox Class */
/* Version history:*/
/* 1.0 - Initial release (29.11.17)*/
/* Author:*/
/* FH*/
/* TODOs:*/
/* - An override to force children to their widths on mobile instead of collapsing to a single column.*/
/* - Add some more flex: [...] rules 

/* Dependencies: */
/* breakpoint in _mixins*/
/* Parent class: */
/* .site-flex*/
/* Parent property modifiers:*/
/* .p-space-children - Puts some space between child elements.

/* Child classes:*/
/* .site-flex-child - Class given to all the child elements of the flexbox*/
/* Child property modifiers:*/
/* .p-20, .p-33, .p-50 etc - Width in %. If the total width is over 100%, the elements will wrap unless the parent has nowrap.*/
/* Usage:*/
/* <div class="site-flex p-space-around p-align-mid p-column p-nowrap">*/
/*   <div class="site-flex-child p-33">1st div, 33% width</div>*/
/*   <div class="site-flex-child p-66">2nd div, 66% width </div>*/
/*   <div class="site-flex-child p-100">3rd div, full width, appearing on the next line!</div>*/
/* </div>*/
.wm-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  /* Parent property/modifier classes*/
}
.wm-flex.p-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.wm-flex.p-space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.wm-flex.p-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.wm-flex.p-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.wm-flex.p-align-mid {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.wm-flex.p-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.wm-flex.p-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.wm-flex.p-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wm-flex.p-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wm-flex.p-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 980px) {
  .wm-flex.p-collapse-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
}
@media (max-width: 980px) {
  .wm-flex.p-collapse-mobile > .wm-flex-child {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100% !important;
  }
}
.wm-flex.p-mobile-compensation-0 {
  margin-right: 0px !important;
}
.wm-flex.p-vspace-0 {
  margin-top: calc(-0px / 2);
  margin-bottom: calc(-0px / 2);
}
.wm-flex.p-vspace-0 > .wm-flex-child {
  margin-top: calc(0px / 2);
  margin-bottom: calc(0px / 2);
}
.wm-flex.p-hspace-0 {
  margin-left: calc(-0px / 2);
  margin-right: calc(-0px / 2);
}
.wm-flex.p-hspace-0 > .wm-flex-child {
  margin-left: calc(0px / 2);
  margin-right: calc(0px / 2);
}
.wm-flex.p-hspace-0 > .wm-flex-child.p-20 {
  width: calc(20% - 0px);
}
.wm-flex.p-hspace-0 > .wm-flex-child.p-25 {
  width: calc(25% - 0px);
}
.wm-flex.p-hspace-0 > .wm-flex-child.p-33 {
  width: calc(33% - 0px);
}
.wm-flex.p-hspace-0 > .wm-flex-child.p-50 {
  width: calc(50% - 0px);
}
.wm-flex.p-hspace-0 > .wm-flex-child.p-66 {
  width: calc(66% - 0px);
}
.wm-flex.p-hspace-0 > .wm-flex-child.p-75 {
  width: calc(75% - 0px);
}
.wm-flex.p-hspace-0 > .wm-flex-child.p-80 {
  width: calc(80% - 0px);
}
.wm-flex.p-hspace-0 > .wm-flex-child.p-100 {
  width: calc(100% - 0px);
}
.wm-flex.p-mobile-compensation-5 {
  margin-right: 5px !important;
}
.wm-flex.p-vspace-5 {
  margin-top: calc(-5px / 2);
  margin-bottom: calc(-5px / 2);
}
.wm-flex.p-vspace-5 > .wm-flex-child {
  margin-top: calc(5px / 2);
  margin-bottom: calc(5px / 2);
}
.wm-flex.p-hspace-5 {
  margin-left: calc(-5px / 2);
  margin-right: calc(-5px / 2);
}
.wm-flex.p-hspace-5 > .wm-flex-child {
  margin-left: calc(5px / 2);
  margin-right: calc(5px / 2);
}
.wm-flex.p-hspace-5 > .wm-flex-child.p-20 {
  width: calc(20% - 5px);
}
.wm-flex.p-hspace-5 > .wm-flex-child.p-25 {
  width: calc(25% - 5px);
}
.wm-flex.p-hspace-5 > .wm-flex-child.p-33 {
  width: calc(33% - 5px);
}
.wm-flex.p-hspace-5 > .wm-flex-child.p-50 {
  width: calc(50% - 5px);
}
.wm-flex.p-hspace-5 > .wm-flex-child.p-66 {
  width: calc(66% - 5px);
}
.wm-flex.p-hspace-5 > .wm-flex-child.p-75 {
  width: calc(75% - 5px);
}
.wm-flex.p-hspace-5 > .wm-flex-child.p-80 {
  width: calc(80% - 5px);
}
.wm-flex.p-hspace-5 > .wm-flex-child.p-100 {
  width: calc(100% - 5px);
}
.wm-flex.p-mobile-compensation-10 {
  margin-right: 10px !important;
}
.wm-flex.p-vspace-10 {
  margin-top: calc(-10px / 2);
  margin-bottom: calc(-10px / 2);
}
.wm-flex.p-vspace-10 > .wm-flex-child {
  margin-top: calc(10px / 2);
  margin-bottom: calc(10px / 2);
}
.wm-flex.p-hspace-10 {
  margin-left: calc(-10px / 2);
  margin-right: calc(-10px / 2);
}
.wm-flex.p-hspace-10 > .wm-flex-child {
  margin-left: calc(10px / 2);
  margin-right: calc(10px / 2);
}
.wm-flex.p-hspace-10 > .wm-flex-child.p-20 {
  width: calc(20% - 10px);
}
.wm-flex.p-hspace-10 > .wm-flex-child.p-25 {
  width: calc(25% - 10px);
}
.wm-flex.p-hspace-10 > .wm-flex-child.p-33 {
  width: calc(33% - 10px);
}
.wm-flex.p-hspace-10 > .wm-flex-child.p-50 {
  width: calc(50% - 10px);
}
.wm-flex.p-hspace-10 > .wm-flex-child.p-66 {
  width: calc(66% - 10px);
}
.wm-flex.p-hspace-10 > .wm-flex-child.p-75 {
  width: calc(75% - 10px);
}
.wm-flex.p-hspace-10 > .wm-flex-child.p-80 {
  width: calc(80% - 10px);
}
.wm-flex.p-hspace-10 > .wm-flex-child.p-100 {
  width: calc(100% - 10px);
}
.wm-flex.p-mobile-compensation-20 {
  margin-right: 20px !important;
}
.wm-flex.p-vspace-20 {
  margin-top: calc(-20px / 2);
  margin-bottom: calc(-20px / 2);
}
.wm-flex.p-vspace-20 > .wm-flex-child {
  margin-top: calc(20px / 2);
  margin-bottom: calc(20px / 2);
}
.wm-flex.p-hspace-20 {
  margin-left: calc(-20px / 2);
  margin-right: calc(-20px / 2);
}
.wm-flex.p-hspace-20 > .wm-flex-child {
  margin-left: calc(20px / 2);
  margin-right: calc(20px / 2);
}
.wm-flex.p-hspace-20 > .wm-flex-child.p-20 {
  width: calc(20% - 20px);
}
.wm-flex.p-hspace-20 > .wm-flex-child.p-25 {
  width: calc(25% - 20px);
}
.wm-flex.p-hspace-20 > .wm-flex-child.p-33 {
  width: calc(33% - 20px);
}
.wm-flex.p-hspace-20 > .wm-flex-child.p-50 {
  width: calc(50% - 20px);
}
.wm-flex.p-hspace-20 > .wm-flex-child.p-66 {
  width: calc(66% - 20px);
}
.wm-flex.p-hspace-20 > .wm-flex-child.p-75 {
  width: calc(75% - 20px);
}
.wm-flex.p-hspace-20 > .wm-flex-child.p-80 {
  width: calc(80% - 20px);
}
.wm-flex.p-hspace-20 > .wm-flex-child.p-100 {
  width: calc(100% - 20px);
}
.wm-flex.p-mobile-compensation-30 {
  margin-right: 30px !important;
}
.wm-flex.p-vspace-30 {
  margin-top: calc(-30px / 2);
  margin-bottom: calc(-30px / 2);
}
.wm-flex.p-vspace-30 > .wm-flex-child {
  margin-top: calc(30px / 2);
  margin-bottom: calc(30px / 2);
}
.wm-flex.p-hspace-30 {
  margin-left: calc(-30px / 2);
  margin-right: calc(-30px / 2);
}
.wm-flex.p-hspace-30 > .wm-flex-child {
  margin-left: calc(30px / 2);
  margin-right: calc(30px / 2);
}
.wm-flex.p-hspace-30 > .wm-flex-child.p-20 {
  width: calc(20% - 30px);
}
.wm-flex.p-hspace-30 > .wm-flex-child.p-25 {
  width: calc(25% - 30px);
}
.wm-flex.p-hspace-30 > .wm-flex-child.p-33 {
  width: calc(33% - 30px);
}
.wm-flex.p-hspace-30 > .wm-flex-child.p-50 {
  width: calc(50% - 30px);
}
.wm-flex.p-hspace-30 > .wm-flex-child.p-66 {
  width: calc(66% - 30px);
}
.wm-flex.p-hspace-30 > .wm-flex-child.p-75 {
  width: calc(75% - 30px);
}
.wm-flex.p-hspace-30 > .wm-flex-child.p-80 {
  width: calc(80% - 30px);
}
.wm-flex.p-hspace-30 > .wm-flex-child.p-100 {
  width: calc(100% - 30px);
}
.wm-flex.p-mobile-compensation-45 {
  margin-right: 45px !important;
}
.wm-flex.p-vspace-45 {
  margin-top: calc(-45px / 2);
  margin-bottom: calc(-45px / 2);
}
.wm-flex.p-vspace-45 > .wm-flex-child {
  margin-top: calc(45px / 2);
  margin-bottom: calc(45px / 2);
}
.wm-flex.p-hspace-45 {
  margin-left: calc(-45px / 2);
  margin-right: calc(-45px / 2);
}
.wm-flex.p-hspace-45 > .wm-flex-child {
  margin-left: calc(45px / 2);
  margin-right: calc(45px / 2);
}
.wm-flex.p-hspace-45 > .wm-flex-child.p-20 {
  width: calc(20% - 45px);
}
.wm-flex.p-hspace-45 > .wm-flex-child.p-25 {
  width: calc(25% - 45px);
}
.wm-flex.p-hspace-45 > .wm-flex-child.p-33 {
  width: calc(33% - 45px);
}
.wm-flex.p-hspace-45 > .wm-flex-child.p-50 {
  width: calc(50% - 45px);
}
.wm-flex.p-hspace-45 > .wm-flex-child.p-66 {
  width: calc(66% - 45px);
}
.wm-flex.p-hspace-45 > .wm-flex-child.p-75 {
  width: calc(75% - 45px);
}
.wm-flex.p-hspace-45 > .wm-flex-child.p-80 {
  width: calc(80% - 45px);
}
.wm-flex.p-hspace-45 > .wm-flex-child.p-100 {
  width: calc(100% - 45px);
}
.wm-flex > .wm-flex-child {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.wm-flex > .wm-flex-child.p-20 {
  width: 20%;
}
.wm-flex > .wm-flex-child.p-25 {
  width: 25%;
}
.wm-flex > .wm-flex-child.p-33 {
  width: 33%;
}
.wm-flex > .wm-flex-child.p-40 {
  width: 40%;
}
.wm-flex > .wm-flex-child.p-50 {
  width: 50%;
}
.wm-flex > .wm-flex-child.p-60 {
  width: 60%;
}
.wm-flex > .wm-flex-child.p-66 {
  width: 66%;
}
.wm-flex > .wm-flex-child.p-75 {
  width: 75%;
}
.wm-flex > .wm-flex-child.p-80 {
  width: 80%;
}
.wm-flex > .wm-flex-child.p-100 {
  width: 100%;
}
.wm-flex > .wm-flex-child.p-order-1 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
}
.wm-flex > .wm-flex-child.p-order-2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
}
.wm-flex > .wm-flex-child.p-order-3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  order: 3;
}
.wm-flex > .wm-flex-child.p-order-4 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 4;
  order: 4;
}
.wm-flex > .wm-flex-child.p-order-5 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 5;
  order: 5;
}
.wm-flex > .wm-flex-child.p-order-6 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 6;
  order: 6;
}
.wm-flex > .wm-flex-child.p-order-7 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 7;
  order: 7;
}
.wm-flex > .wm-flex-child.p-order-8 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 8;
  order: 8;
}
.wm-flex > .wm-flex-child.p-align-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.wm-flex > .wm-flex-child.p-align-mid {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.wm-flex > .wm-flex-child.p-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.wm-flex.p-column > .wm-flex-child {
  width: 100%;
}

/* WM Universal Button Class */
/* Version history:*/
/* 1.0 - Initial release (01.12.17)*/
/* Author:*/
/* FH*/
/* Parent class: */
/* .site-button*/
/* Usage:*/
/* <a class="site-button"> </a>*/
.wm-button {
  width: auto;
  padding-bottom: 5px;
  display: inline-block;
  -webkit-transition: -webkit-box-shadow 800ms;
  transition: -webkit-box-shadow 800ms;
  transition: box-shadow 800ms;
  transition: box-shadow 800ms, -webkit-box-shadow 800ms;
}
.wm-button.p-fullwidth {
  display: block;
  width: 100%;
}
.wm-button:hover {
  -webkit-box-shadow: inset 0 0 999px 999px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 999px 999px rgba(255, 255, 255, 0.2);
}
.wm-button.p-no-hover:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wm-button.p-faster-anim {
  -webkit-transition: -webkit-box-shadow 200ms;
  transition: -webkit-box-shadow 200ms;
  transition: box-shadow 200ms;
  transition: box-shadow 200ms, -webkit-box-shadow 200ms;
}
.wm-button.p-no-anim {
  -webkit-transition: -webkit-box-shadow none;
  transition: -webkit-box-shadow none;
  transition: box-shadow none;
  transition: box-shadow none, -webkit-box-shadow none;
}
.wm-button i.fa {
  margin-right: 15px;
}

a.nordic-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 5px 20px;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  text-decoration: none !important;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
a.nordic-btn.blue-btn {
  color: #0070E1 !important;
  border-color: #0070E1 !important;
}
a.nordic-btn.blue-btn:hover {
  color: white !important;
  background-color: #0070E1 !important;
}
a.nordic-btn:after {
  content: " +";
}
a.nordic-btn:hover {
  color: #0070E1 !important;
  background-color: white !important;
}

a.scroll-top.on {
  background-color: #0070E1;
  height: 50px;
}
a.scroll-top.on:before {
  height: 50px;
}
a.scroll-top.on:hover {
  background-color: #0057ae;
}

.nordic-form-section input[type=submit] {
  position: absolute !important;
  right: 15px !important;
  bottom: 0 !important;
  padding: 5px 20px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background-color: rgba(0, 0, 0, 0) !important;
  color: #0070E1 !important;
  border: 2px solid #0070E1 !important;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.nordic-form-section input[type=submit]:hover {
  color: white !important;
  background-color: #0070E1 !important;
}

input.wm-toggle-check {
  display: none;
}

.wm-toggle {
  padding: 10px 20px;
  background: #E6E6E6;
}
.wm-toggle .wm-c-title {
  color: #00A3E0;
  font-weight: 600;
  font-size: 24px;
}
.wm-toggle .wm-c-title, .wm-toggle .wm-c-title h2 {
  cursor: pointer;
}
.wm-toggle .wm-c-title label {
  display: block;
}
.wm-toggle .wm-c-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 700ms;
  transition: all 700ms;
}

input.wm-toggle-check:checked + .wm-toggle {
  background: #00A3E0;
}
input.wm-toggle-check:checked + .wm-toggle .wm-c-content {
  max-height: 1000px;
}

#certificate {
  position: absolute;
  left: 0;
  bottom: 5%;
  background-color: #fff;
  padding: 20px;
}
@media (max-width: 1000px) {
  #certificate {
    bottom: 12.5%;
  }
}
@media (max-width: 768px) {
  #certificate {
    bottom: 100px;
    padding: 12px;
  }
}
#certificate .wm-certificate img {
  margin-bottom: 0 !important;
}
@media (min-width: 1200px) {
  #certificate .wm-certificate {
    padding-left: clamp(20px, 6.25vw, 100px);
  }
}
@media (max-width: 768px) {
  #certificate .wm-certificate img {
    max-width: 50vw;
  }
}

/* Site-wide specific rules and overrides etc.*/
#citat p {
  font-size: 18px;
}
#citat h2 {
  font-weight: 700 !important;
}
#citat > .vc_row:first-child:before {
  content: url(/wp-content/uploads/2024/04/citattecken-new.png);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-left: -74px;
}
#citat > .vc_row:first-child:after {
  content: url(/wp-content/uploads/2024/04/citattecken-new.png);
  margin-left: auto;
  margin-right: -74px;
}

body.single-tjanst .custom-css-section {
  height: 0;
}
body.single-tjanst .custom-css-section .vc_col-sm-12 {
  margin-top: -1px;
}
body.single-tjanst .custom-css-section * {
  height: 0;
}
body.single-tjanst #tjanster_bottom_section {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.single-tjanst #tjanster_bottom_section > .wpb_column {
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
}

.tjanst-box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tjanst-box {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.tjanst-box:before {
  content: "";
  display: block;
  margin-top: 100%;
}
.tjanst-box * {
  color: white;
}
.tjanst-box img {
  max-height: 110px;
  margin-bottom: 20px;
}
.tjanst-box h2 {
  font-size: 24px !important;
}

.tjanst-box-inner {
  background-color: rgba(0, 0, 0, 0.3019607843);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.tjanst-box-inner:hover {
  background-color: rgba(0, 0, 0, 0.168627451);
}

.tjanst-box-content:before, .tjanst-box-content:after {
  content: "";
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.tjanst-box-content:before {
  background-image: url(/wp-content/uploads/2018/07/hrn-12x-e1531376509568.png);
  left: 15%;
  top: 15%;
}
.tjanst-box-content:after {
  background-image: url(/wp-content/uploads/2018/07/hrn-22x-e1531376854144.png);
  right: 15%;
  bottom: 15%;
}

.tjanst-box:hover .tjanst-box-content:before {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.tjanst-box:hover .tjanst-box-content:after {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

/*.projekt-box .tjanst-box-content {
  &:before {
    left: 25% !important;
    top: 25% !important;
  }
  &:after {
    right: 25% !important;
    bottom: 25% !important;
  }
} */
.aktuellt-pa-framsidan > .vc_column-inner {
  padding: 0;
}

.aktuellt-start {
  position: relative;
}

.aktuellt-box {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aktuellt-box-inner {
  padding: 7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aktuellt-box-content {
  padding: 10%;
  background: rgba(0, 112, 225, 0.7);
}
.aktuellt-box-content * {
  color: white;
}

.aktuellt-ctrl {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.aktuellt-ctrl.prev {
  left: 12px;
}
.aktuellt-ctrl.prev a {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  background-image: url("/wp-content/uploads/2018/07/pil2x.png");
}
.aktuellt-ctrl.next {
  right: 12px;
}
.aktuellt-ctrl.next a {
  background-image: url("/wp-content/uploads/2018/07/pil2x.png");
}
.aktuellt-ctrl a {
  display: inline-block;
  width: 30px;
  height: 56px;
  background-size: cover;
  background-repeat: no-repeat;
}

.lightbox-open {
  width: 100px;
  height: 89px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(/wp-content/uploads/2024/04/blue-button.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.lightbox-open * {
  height: 100%;
}
.lightbox-open a {
  display: block;
}
.lightbox-open img {
  opacity: 0;
}

.pswp__zoom-wrap.active-item {
  -webkit-transform: none !important;
  transform: none !important;
  width: 100%;
  height: 100%;
}
.pswp__zoom-wrap.active-item img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 75%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#start-citat {
  height: 500px;
}
#start-citat > .wpb_column {
  background-color: rgba(0, 0, 0, 0.4);
}
#start-citat * {
  color: white !important;
}

.nr-earlierProjects {
  padding: 0 5vw;
}
.nr-earlierProjects h3 {
  border-bottom: 1px solid #179BD5;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.nr-earlierProjects__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}
@media all and (max-width: 991px) {
  .nr-earlierProjects__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 767px) {
  .nr-earlierProjects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 499px) {
  .nr-earlierProjects__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.nr-earlierProjects__item {
  display: block;
  text-decoration: none;
}
.nr-earlierProjects__item p {
  color: #fff;
  background: #179BD5;
  padding: 1rem;
  text-decoration: none;
  line-height: 1.2 !important;
}

.nr-earlierProjects__imageContainer {
  padding-top: 70.28%;
  position: relative;
}

.nr-earlierProjects__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.tax-projekt-kategori #header_tag {
  display: none;
}

body.archive.term-bostadsbolag .aktuellt-box-content, body.archive.term-asunto-osakeyhtiot .aktuellt-box-content {
  display: none;
}

#header.archive-header {
  margin-top: 0;
  top: -125px;
}

body.archive.tax-projekt-kategori .page-title {
  display: none;
}

.aktuellt-box-inner.projekt-slider {
  padding: 0 !important;
}
.aktuellt-box-inner.projekt-slider .aktuellt-box-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.projekt-navigation {
  position: absolute;
  right: 1%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.projekt-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.projekt-navigation ul a {
  color: white;
  border: 2px solid white;
}
.projekt-navigation .page-link {
  border-radius: 100% !important;
  background: rgba(0, 0, 0, 0);
}

.projekt-table-section {
  padding: 100px 0px !important;
}

.projekt-table-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Source Code", monospace;
  text-align: center;
}
.projekt-table-container > table > tbody > tr:first-child {
  font-size: 18px;
  color: #0070E1;
}
.projekt-table-container td {
  padding: 12px;
  border: 2px solid #0070E1;
}
.projekt-table-container p {
  font-family: "Source Code", monospace !important;
}

.projekt-table-container {
  overflow-x: auto;
}

.horizontal-table-scroll {
  text-align: center;
  padding: 0px 24px 24px 24px;
}
.horizontal-table-scroll i {
  font-size: 50px;
  color: #0070E1;
}

@media (min-width: 1090px) {
  .horizontal-table-scroll {
    display: none;
  }
}
body.blog .paginator {
  display: none;
}

.aktuellt-container {
  padding: 100px 15px;
}

.aktuellt-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.aktuellt-post > * {
  width: 50%;
}
.aktuellt-post:not(:last-child) {
  margin-bottom: 80px;
}

.aktuellt-content {
  background: #e4e6e7;
  position: relative;
}

.aktuellt-image {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.aktuellt-image:before {
  content: "";
  display: block;
  margin-top: 85%;
}

span.aktuellt-date {
  font-family: "Source Code Pro", monospace;
  background-color: #0070E1;
  color: white;
  position: absolute;
  height: 80px;
  width: 80px;
  top: -40px;
  left: 20px;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
span.aktuellt-date span:first-child {
  font-size: 44px;
}
span.aktuellt-date span:last-child {
  font-size: 18px;
  text-transform: uppercase;
}

.aktuellt-content-inner {
  padding: 100px 80px 40px 40px;
}

.single-aktuellt-post > *:not(.aktuellt-kryss):not(.aktuellt-date) {
  width: 100%;
}

.aktuellt-kryss {
  position: absolute;
  right: 4%;
  top: 4%;
  border: 0;
  background: rgba(0, 0, 0, 0);
}
.aktuellt-kryss i {
  font-size: 30px;
  color: #0070E1;
}

.single-aktuellt-post {
  padding: 10% 15%;
  background: #e4e6e7;
  position: relative;
}
.single-aktuellt-post .lightbox-open {
  bottom: 9px !important;
}

@media (max-width: 688px) {
  .single-aktuellt-post {
    padding: 20% 15%;
  }
}
.single-aktuellt-content {
  padding-top: 20px;
}

.personer-grid-item {
  font-family: "Roboto Condensed", sans-serif !important;
}
.personer-grid-item h3 {
  font-family: "Source Code", monospace !important;
}
.personer-grid-item * {
  margin: 0;
  position: static !important;
}
.personer-grid-item:before {
  padding: 0;
}

.om-oss-team * {
  max-width: 100%;
}
.om-oss-team .vc_grid-item {
  margin-right: -3px;
}

.nordic-form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nordic-form-container input, .nordic-form-container textarea {
  border: 0 !important;
  background: #F4F4F4 !important;
}

.nordic-form-section {
  width: 50%;
  min-height: 52px;
}
.nordic-form-section:first-child {
  margin-right: 4%;
}
.nordic-form-section p:first-child, .nordic-form-section label p:first-child {
  margin: 0 !important;
}

form > div:nth-child(3) {
  margin-top: 40px !important;
}
form > div:nth-child(3) > .nordic-form-section:first-child {
  width: 75%;
}
form > div:nth-child(3) > .nordic-form-section:last-child {
  width: 25%;
}

.name-fields, .captcha-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.name-fields > *:first-child, .captcha-fields > *:first-child {
  margin-right: 4%;
}

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0 !important;
}

.kontakt-grid-item a {
  color: #787d85;
  text-decoration: none;
}
.kontakt-grid-item .vc_gitem-row-position-bottom {
  background: #F4F4F4;
  margin-top: -100px;
  padding: 20px;
}
.kontakt-grid-item .vc_gitem-post-meta-field-wpcf-titel {
  padding-bottom: 15px;
}

.kontaktinfo-section a {
  color: #787d85;
  text-decoration: none;
}
.kontaktinfo-section .vc_figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  height: 140px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .wpcf7-form-control-wrap {
    -webkit-transform: scale(0.93);
    transform: scale(0.93);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  .nordic-form-container input[type=submit] {
    position: absolute !important;
    right: 50% !important;
    bottom: -20px !important;
    -webkit-transform: translateX(50%) !important;
            transform: translateX(50%) !important;
  }
}
.page-title {
  display: none;
}

#main {
  padding: 0 !important;
  margin-top: -125px;
}

.custom-css-section {
  height: 0 !important;
  margin-top: -1px;
}
.custom-css-section * {
  height: 0 !important;
}

.masthead {
  padding: 0 25px;
  font-family: "Source Code", monospace !important;
}
.masthead:not(#phantom) {
  width: 90%;
  margin: 25px auto auto auto;
}
.masthead .same-logo {
  max-width: 216px;
}
@media (max-width: 600px) {
  .masthead .same-logo {
    max-width: 150px;
    padding: 1rem 0;
  }
}
.masthead#phantom .logo-box {
  max-width: 216px;
}
.masthead#phantom .logo-box a {
  display: inline-block;
}
.masthead#phantom .logo-box a img {
  display: inline-block;
  height: auto;
  width: 100%;
}
.masthead #primary-menu {
  margin-bottom: 0 !important;
}
.masthead #primary-menu > li.menu-item:not(:last-child) {
  margin-right: 12px !important;
}
.masthead #primary-menu > li.menu-item > a {
  position: static !important;
  margin: 15px 7px 15px 7px !important;
}
.masthead #primary-menu > li.menu-item > a > .menu-item-text {
  position: static !important;
}
.masthead #primary-menu > li.menu-item > a > .menu-item-text i.underline {
  position: absolute !important;
  top: 0;
  height: 8px;
}
.masthead .menu-item-has-children .menu-text:after {
  content: "+";
  position: relative;
  padding-left: 5px;
}
.masthead .sub-nav {
  background-color: white !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.masthead .sub-nav * {
  color: black !important;
}
.masthead .sub-nav li {
  margin: 0 10% 0 10%;
  padding: 0;
}
.masthead .sub-nav li > a {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.masthead .sub-nav li > a:hover {
  background-color: white !important;
}
.masthead .sub-nav li > a:hover * {
  color: #0070E1 !important;
}
.masthead .sub-nav li:not(:last-child) {
  border-bottom: 1px solid #0070E1;
}
.masthead .mini-widgets * {
  text-align: right;
  color: #0070E1;
}

#header {
  position: relative;
}
#header h1 {
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.7);
}
#header #header_lang_switcher {
  position: absolute;
  right: 0;
  top: 25%;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: fixed;
  background-color: #0070E1;
  z-index: 999999999999;
  width: 210px;
  height: 120px;
  text-transform: uppercase;
}
#header #header_lang_switcher a {
  display: block;
  text-decoration: none;
  padding: 5px 10px;
  line-height: 1;
  color: white;
}
#header #header_lang_switcher *:not(li):not(a) {
  height: 100%;
}
#header #header_lang_switcher #lang-toggle:after {
  content: url(/wp-content/uploads/2018/07/x.png);
  position: absolute;
  top: 12px;
}
#header #header_lang_switcher.inactive {
  -webkit-transform: translateX(179px);
  transform: translateX(179px);
}
#header #header_lang_switcher.inactive #lang-toggle:after {
  content: url(/wp-content/uploads/2018/07/pil.png);
}
#header #header_lang_switcher .vc_column-inner {
  padding-right: 0 !important;
}
#header #header_lang_switcher .wpml-ls {
  padding: 0;
  border: 0;
}
#header #header_lang_switcher .wpml-ls > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header #header_lang_switcher .wpml-ls > ul li {
  width: 60%;
  margin: 0 auto;
}
#header #header_lang_switcher .wpml-ls > ul li:not(:last-child) {
  border-bottom: 1px solid white;
}
#header #header_lang_switcher .wpb_text_column {
  color: white;
}
#header #readmore {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#header #readmore .wpb_text_column {
  margin-bottom: 0 !important;
}
#header #readmore a {
  display: inline-block;
  text-decoration: none;
  color: white;
}
#header #readmore a > span:after {
  content: "";
  display: block;
  width: 27px;
  height: 38px;
  margin: 0px auto 10px auto;
  background-image: url(/wp-content/uploads/2018/07/plus-i-ruta.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.menu-item.wpml-ls-item {
  display: none;
}
.menu-item.wpml-ls-item * {
  font-size: 12px;
}

#header_tag, .section_tag {
  width: 200px;
  height: 42px;
  background-image: url(/wp-content/uploads/2018/07/vit-flik-e1532006082366.png);
  position: absolute !important;
  bottom: -1px;
  left: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#header_tag h3, .section_tag h3 {
  font-size: 16px !important;
}
#header_tag *, .section_tag * {
  max-height: 100%;
}
#header_tag.right, .section_tag.right {
  left: 80%;
}

.page-om-oss .section_tag, .page-meista .section_tag, .page-about-us .section_tag {
  background-image: url(/wp-content/uploads/2018/07/kategoriflik-e1531395256230.png) !important;
}

.page-start #header_tag {
  background-image: url(/wp-content/uploads/2018/07/kategoriflik-e1531395256230.png) !important;
}

.text-section {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  position: relative;
}

section:not(.text-section) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.smal {
  width: 66.666666%;
  margin: 0 auto !important;
}

footer * {
  color: white;
}
footer .widget_media_image {
  text-align: center;
}
footer section img {
  max-height: 200px;
  width: auto !important;
}
footer section.widget_custom_html {
  text-align: right;
}
footer .wf-wrap {
  width: 1550px !important;
}
footer .wf-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  margin: 0 !important;
}
@media (max-width: 951px) {
  footer .wf-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  footer .wf-container, footer .widget_custom_html {
    text-align: center !important;
  }
}/*# sourceMappingURL=wm-style.css.map */