@font-face {
    font-family: 'AktivGroteskGeberit';
    src:  url('../fonts/AktivGroteskGeberit_W_Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'AktivGroteskGeberit';
    src:  url('../fonts/AktivGroteskGeberit_W_Bd.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
	font-family: 'AktivGroteskGeberit', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}

.layouts ul li {
	margin-bottom:5px;
}

.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}

.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}

.row {
    max-width: 1270px;
    padding: 0 20px;
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong {
	font-weight: bold;
}

i {
	font-style: italic;
}

em {
	font-style: italic;
}

.clear {
	clear:both;
}

.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    margin-bottom: 15px;
}


.invi {
	visibility: hidden;
	opacity: 0;
}

/* preloader */

.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   hamburger   */

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #566777;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

/* Dev style */
header {
    position: fixed;
    top: 0; right: 0; left: 0;
    background: #fff;
    transition: 0.2s ease-in-out;
}
header.scrolled {
    -webkit-box-shadow: 0 .1875rem .75rem rgba(0,0,0,.2);
    box-shadow: 0 .1875rem .75rem rgba(0,0,0,.2);
}
.main-subheader {
    background-color: #f7f7f7;
    transition: 0.4s ease-in-out;
}
.main-subheader.scrollUp {
    margin-top: -40px;
}
.main-subheader-hold {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 40px;
}
.main-subheader-hold ul li {
    float: left;
    margin-right: 25px;
}
.main-subheader-hold ul li a {
    font-size: 14px;
    color: #666;
    text-decoration: underline solid transparent;
    transition: 0.2s ease-in-out;
}
.main-subheader-hold ul li a:hover {
    color: #26513b;
    text-decoration: underline solid Currentcolor;
}
.btn-header,
.btn-header:focus,
.btn-header:active {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    background: #566777;
    padding: 13px 28px;
    transition: 0.2s ease-in-out;
}
.btn-header:hover {
    color: #fff;
}
.main-header-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    transition: 0.2s ease-in-out;
}
header.scrolled .main-header-box {
    padding: 10px 0;
}
.main-header-logo {
    float: left;
    width: 84px;
}

.main-header-logo.no {
    float: left;
    width: 300px;
}

.main-header-logo.fi {
    float: left;
    width: 160px;
}

.main-header-logo img {
    max-width: 84px;
    transition: 0.2s ease-in-out;
}

.main-header-logo.no img {
    max-width: 300px;
    transition: 0.2s ease-in-out;
}

.main-header-logo.fi img {
    max-width: 300px;
    transition: 0.2s ease-in-out;
}

header.scrolled .main-header-logo img {
    max-width: 50px;
}

header.scrolled .main-header-logo.no img {
    max-width: 200px;
}

header.scrolled .main-header-logo.fi img {
    max-width: 130px;
}


.main-header-nav {
    float: left;
    width: calc(100% - 84px);
    padding-left: 40px;
}
.main-header-nav ul li {
    float: left;
    margin: 0 25px;
}
.main-header-nav ul li a {
    color: #000;
    text-decoration: underline solid transparent;
    transition: 0.2s ease-in-out;
}
.main-header-nav ul li a:hover {
    color: #26513b;
    text-decoration: underline solid Currentcolor;
}
.header-mobile-nav {
    position: fixed;
    right: 0; left: 0; bottom: 0;
    background: #fff;
    display: none;
}
.header-mobile-nav {
    height: 100%;
    overflow: auto;
    padding: 40px 0;
}
.header-mobile-nav .footer-socials ul {
    width: 100%;
    padding: 20px 0;

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header-mobile-nav .footer-socials ul li {
    float: left;
    width: auto;
    margin: 0 20px 20px 0;
}

main {
    overflow: hidden;
}
.main-section {
    padding: 40px 0;
}
.main-section-text {
    margin-bottom: 60px;
}
.main-section-text h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.main-section-text p {
    font-size: 16px;
    line-height: 1.375;
}

footer {
    border-top: 1px solid #d9d9d9;
    padding: 80px 0;
}
.footer-top {
    margin-bottom: 40px;
}
.footer-text span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.footer-text a {
    color: #566777;
    font-size: 16px;
    text-decoration: underline solid Currentcolor;
    transition: 0.2s ease-in-out;
}
.footer-text a:hover {
    color: #26513b;
    text-decoration: underline solid transparent;
}
.footer-socials ul {
    float: right;
}
.footer-socials ul li {
    float: left;
    margin-right: 20px;
}
.footer-socials ul li:last-child {
    margin-right: 0;
}
.footer-socials ul li a {
    transition: 0.2s ease-in-out;
}
.footer-socials ul li a:hover {
    opacity: 0.7
}
.footer-socials ul li a img {
    width: 25px;
    height: 25px;
}
.footer-links {
    margin-bottom: 20px;
}
.footer-links ul {
    float: right;
}
.footer-links ul li {
    float: left;
    margin-right: 15px;
}
.footer-links ul li:last-child {
    margin-right: 0;
}
.footer-links ul li a {
    font-size: 14px;
    color: #000;
    text-decoration: underline solid Currentcolor;
    transition: 0.2s ease-in-out;
}
.footer-links ul li a:hover {
    color: #26513b;
    text-decoration: underline solid transparent;
}
.footer-copyright {
    font-size: 14px;
    color: #000;
}

/* Media */
@media only screen and (max-width: 1023px) {

    .main-subheader {
        display: none;
        padding: 0;
    }
    .main-header-nav {
        padding: 0;
        width: 100%;
    }
    .main-header-nav ul li {
        width: 100%;
        margin: 0 0 20px;
        text-align: center;
    }
	.hamburger {
		display: inline-block;
	}
    .main-header-logo img {
        max-width: 47px;
    }
    .main-header-box .main-header-nav ul {
        display: none;
    }
    .main-section {
        padding: 40px 0;
    }
    footer {
        padding: 60px 0;
    }
}

@media screen and (max-width:639px) {
    .main-header-box {
        padding: 10px 0;
    }
    .main-section {
        padding: 40px 0;
    }
    .main-section-text {
        margin-bottom: 40px;
    }
    .main-section-text h1 {
        font-size: 24px;
    }
    footer {
        padding: 30px 0;
    }
	.footer-text {
        padding: 0;
        margin-bottom: 40px;
    }
    .footer-socials ul {
        float: left;
    }
    .footer-links ul {
        float: left;
    }
    .footer-links ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .footer-socials {
        padding: 0;
    }
    header.scrolled .main-header-logo img {
        max-width: 47px;
      }
}

.main-section-embed {text-align: center; color: red; font-weight: bold;}

@media screen and (max-width:840px) {
    .main-section-embed iframe {
        height: 1698px !important;
    }
}
@media screen and (max-width:800px) {
    .main-section-embed iframe {
        height: 1629px !important;
    }
}
@media screen and (max-width:762px) {
    .main-section-embed iframe {
        height: 1629px !important;
    }
}
@media screen and (max-width:730px) {
    .main-section-embed iframe {
        height: 1461px !important;
    }
}
@media screen and (max-width:700px) {
    .main-section-embed iframe {
        height: 1395px !important;
    }
}
@media screen and (max-width:670px) {
    .main-section-embed iframe {
        height: 1344px !important;
    }
}
@media screen and (max-width:630px) {
    .main-section-embed iframe {
        height: 1251px !important;
    }
}
@media screen and (max-width:600px) {
    .main-section-embed iframe {
        height: 1194px !important;
    }
}
@media screen and (max-width:600px) {
    .main-section-embed iframe {
        height: 1194px !important;
    }
}
@media screen and (max-width:520px) {
    .main-section-embed iframe {
        height: 1020px !important;
    }
}
@media screen and (max-width:440px) {
    .main-section-embed iframe {
        height: 849px !important;
    }
}
@media screen and (max-width:375px) {
    .main-section-embed iframe {
        height: 711px !important;
    }
}
@media screen and (max-width:340px) {
    .main-section-embed iframe {
        height: 639px !important;
    }
}

.top-menu {float: left;}