@font-face {
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/heebo-light.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Heebo';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/heebo-medium.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'PT Serif Caption';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/ptserif-caption.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
    --green: #415335;
    --green-rgb: 10, 73, 88;
    --light-grey: #e8e8e8;
    --light-grey-rgb: 173, 214, 224;
    --light: #ffffff;
    --light-rgb: 255, 255, 255;
    --grey: #6e6d6d;
    --grey-rgb: 105, 105,105;
    --padding: 54px;
    --main-text-color: var(--grey);
    --main-font: 'Heebo', sans-serif;
    --highlight-font: 'PT Serif Caption', serif;
    --shadow-null: 0 0 0px rgba(0,0,0,0);
    --shadow: 0 0 5px rgba(0,0,0,0.5);
    --flex-base: 190px;
    --max-width: 1800px;
}
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}
html {
    overflow-x: hidden;
    position: relative;
    min-height: 550px;
    font-size: 22px;
    scrollbar-width: thin;
    scrollbar-color: var(--light-grey) var(--light);
    transition: scrollbar-color 0.5s ease-in-out;
}
@media (max-width: 1680px){
html {
    font-size: 20px;
}
}
@media (max-width: 1200px){
html {
    font-size: 18px;
}
}
html:hover {
    scrollbar-color: var(--green) var(--light);
}
body {
    font-family: var(--main-font);
    font-weight: 300;
    overflow: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: var(--main-text-color);
    min-width: 300px;
}
body, body * {
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
a {
    text-decoration: none;
    color: var(--green);
    transition: color 0.5s ease-in;
}
a:hover {
    color: var(--grey);
}
p {
    margin: 0.5rem 0;
    line-height: 1.7em;
}
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--highlight-font);
    line-height: 1.2;
    color: var(--green);
    letter-spacing: 0.1em;
}
h1, .h1 {
    font-size: 1.6rem;
    position: relative;
}
h2, .h2 {
    font-size: 1.4rem;
    position: relative;
}
h3 {
    font-size: 1rem;
}
body a.cta {
    text-transform: uppercase;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.05em;
}
body .dark a.cta {
    color: var(--light);
}
body img {
    height: auto;
    max-width: 100%;
}
button, .button {
    display: block;
    cursor: pointer;
    background-color: var(--green);
    border: none;
    color: var(--light);
    font-family: var(--main-font);
    font-size: 1rem;
    text-transform: uppercase;
    padding: calc(0.25 * var(--padding)) calc(2 * var(--padding));
    transition: background-color 0.5s ease-in-out;
}
.dark button, .dark .button {
    background-color: var(--light);
    color: var(--green);
}
button:hover, .button:hover {
    background-color: var(--light-grey)
}
.center {
    text-align: center;
}
.table > span {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.table {
    display: block;
}
.table > span > * {
    white-space: nowrap;
}
.table > span > *:first-child {
    flex: 1 1 33%;
}
.table > span > *:last-child {
    flex: 2 1 66%;
}
.table > span > *:only-child {
    flex: 1 1 100%;
}
.table > span > .tcs {
    flex: 0 0 1.5rem;
}

/* FLEX */
.flex {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    width: auto;
    padding: var(--padding)
}
.pad {
    padding: var(--padding)
}
.flex.halfpad {
    padding: calc(1.5 * var(--padding))
}
.flex.halfpad > [class*="box"] {
    padding: calc(0.5 * var(--padding))
}
.flex.nm {
    margin: calc(-1 * var(--padding));
}
.flex.nw {
    flex-flow: row nowrap;
}
.flex.unpad {
    margin: 0 calc(-1 * var(--padding));
    max-width: calc(100% + 2 * var(--padding))
}
.flex.wr {
    flex-flow: row wrap-reverse;
}
.flex.vcenter {
    align-items: center;
    align-content: center;
}
.flex.vstretch {
    align-items: stretch;
    align-content: stretch;
}
.flex.vstart {
    align-items: flex-start !important;
    align-content: flex-start !important;
}
.flex.vend {
    align-items: flex-end !important;
    align-content: flex-end !important;
}
.vcenter[class*="box"] {
    align-self: center;
}
.vend[class*="box"] {
    align-self: flex-end;
}
.box0 {flex: 1 1 calc(0.2 * var(--flex-base));}
.box1 {flex: 1 1  calc(1 * var(--flex-base));}
.box2 {flex: 2 1  calc(2 * var(--flex-base));}
.box3 {flex: 3 1  calc(3 * var(--flex-base));}
.box4 {flex: 4 1  calc(4 * var(--flex-base));}
.box5 {flex: 5 1  calc(5 * var(--flex-base));}
.box5 {flex: 6 1  calc(6 * var(--flex-base));}
.boxfull {flex: 1 1 100%;}
.box0, .box1, .box2,.box3,.box4,.box5, .box-po, .boxfull {padding: var(--padding);max-width: 100%;}
.flex.box1.fw, .flex.box2.fw,.flex.box3.fw,.flex.box4.fw,.flex.box5.fw {
    width: calc(100% + (2 * var(--padding)));
    max-width: calc(100% + (2 * var(--padding)));
}
.flex > .nopad[class*="box"] {
    padding: 0;
}
.flex > .flex[class*="box"]:not(.fpad) {
    padding: 0;
}
.flex > .divider {
    flex: 1 1 100%;
    padding: 0;
    margin: 0;
}
.flex > .hdivider {
    flex: 0 0 0%;
    padding: 0;
    margin: 0;
}
.flex > .hw + .hdivider {
    flex: 1 1 100%;
    padding: 0;
    margin: 0;
}
@media (max-width: 1220px){
.flex > .divider {
    display: none;
}    
}
img[class^="box"], picture[class^="box"], picture[class^="box"] > img {
    width: 100%;
    display: block;
    height: 100%;
}
/* HEADER */
.header {
    position: relative;
}
.index header {
    height: 100vh;
    min-height: 500px;
}
.header .logo a {
    display: block;
    margin: 0 auto;
    width: 60%;
    max-width: 400px;
    min-width: 200px;
}
.header .logo a img {
    display: block;
    width: 100%;
}
.header .headertop {
    position: relative;
    width: 100%;
    padding: calc(0.5 * var(--padding)) var(--padding) var(--padding);
    z-index: 10;
}
.index .header .headertop {
    position: absolute;
    top: 0;
    margin-bottom: 0;
}
.header .headerimg {
    position: absolute;
    left: 0;
    bottom: 0;
    right:  0;
    height: 73%;
}
.header .headerimg p {
    max-width: 700px;
    color: var(--green);
}
.header .headerimg p.h1 {
    font-size: 4.2rem;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
}
.header .headerimg > div {
    position: relative;
    z-index: 2
}

.header .headerimg p.h1 small {
    margin-top: 0.5em;
    display: block;
    font-family: var(--main-font);
    font-weight: 300;
    font-size: 1.9rem;
    color: var(--grey);
    letter-spacing: 0.1em;
}
.header .hbg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
    opacity: 0.2
}
.header .social {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    padding: calc(0.475 * var(--padding));
}
.header .social > * {
    display: block;
    padding: calc(0.125 * var(--padding));
    color: var(--blue1);
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;  
    width: 100%;
    padding: calc(0.5 * var(--padding));
}
.index header + footer {
    position: absolute;
    bottom: 0;
    left: 0;
}
footer * {
    margin: 0;
}
footer:before {
    content: '';
    height: 2px;
    background-color: var(--light-grey);
    display: block;
    position: absolute;
    top: 0;
    left: var(--padding);
    right: var(--padding);
}

/* POPUPS */
.tpu-box, .sharebuttons, #form-result, .tooltip {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light);
    color: var(--grey);
    opacity: 0;
    pointer-events: none;
    z-index: 2100;
    transition: opacity 0.5s ease-in-out;
}
.tpu-box.tpu-show, .sharebuttons.showbuttons, #form-result.shownotice, .tooltip.ttopen {
    opacity: 1;
    pointer-events: all;
}
.tpu-box > .tpu, .sharebuttons .shbox, #form-result div.notices, #form-result p, .tooltip .tti {
    position: relative;
    display: block;
    width: 90%;
    max-width: 500px;
    margin: 0;
    padding: 20px;
    background-color: transparent;
}
.tpu-box > .tpu {
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    transition: scrollbar-color .5s ease-in-out;
}
.tpu-box > .tpu:hover {
    scrollbar-color: var(--blue1) var(--light);
}
.tpu-box p > span:not(.heading) {
    display: flex;
    width: 100%;
}
.tpu-box p > span > *:first-child {
    flex: 1 1 100px;
}
.tpu-box p > span > *:last-child {
    flex: 2 1 200px;
}
#tpu-close, .closeshare, #sc-close, #closeform, .tooltip .ctt, .pu-close {
    position: absolute;
    z-index: 3000;
    cursor: pointer;
    top: calc(0.5 * var(--padding));
    right: calc(0.5 * var(--padding));
    height: 2rem;
    width: 2rem;
    font-size: 2rem;
    margin: 0;
    text-align: center;
    line-height: 1;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; 
}
#tpu-close:hover, .closeshare:hover, #sc-close:hover, #closeform:hover, .tooltip .ctt:hover {
    color: var(--red)
}
.sharebuttons {
    text-align: center;
}
.sharebuttons .shariff ul {
    justify-content: center;
}
.sharebuttons .shariff .orientation-horizontal li, .sharebuttons .shariff .orientation-horizontal li  a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.sharebuttons .tosoc {
    font-size: 0.7rem;
    line-height: 1.2em;
}
#form-result > p {
    text-align: center;
}
#form-result > p > i {
    display: block;
    margin: 0 auto 0.5em;
    font-size: 3rem;
}

/* TABLET */
@media (max-width: 1150px){
:root {
    --padding: 18px;
}    
header.header .headerimg {
    height: 60vh;
    width: 100%;
    align-items: center !important;
    align-content: center !important;
} 
.header .headerimg > * {
    flex: 1 1 100%;
    height: 100%;
}   
.header .headerimg p.h1 {
    font-size: 3.2rem;
}
.header .headerimg p.h1 small {
    margin-top: 0.5em;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}
form .form-field, form .form-spacer, .buttons {
    margin: calc(1 * var(--padding)) 0px;
}    
}
@media only screen 
    and (min-device-width: 375px) 
    and (max-device-width: 812px) 
    and (-webkit-min-device-pixel-ratio: 3), 
    only screen 
    and (min-device-width: 375px) 
    and (max-device-width: 667px) 
    and (-webkit-min-device-pixel-ratio: 2),
    (max-width: 500px)
{
:root {
    --padding: 10px;
}  
.index header.header {
    height: 100vh;
    min-height: 650px;
}    
header.header .headerimg {
    display: block;
    bottom: calc(10 * var(--padding))
} 
.header .headerimg > picture img {
    object-fit: contain;
    object-position: bottom right;
    max-width: 300px;
    bottom: calc(-15 * var(--padding))
}  
.header .headerimg p.h1 {
    font-size: 2rem;
}
.header .headerimg p.h1 small {
    margin-top: 0.5em;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}       
}
.empty {
    min-height: 0 !important;
    height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    opacity: 0 !important;
    margin-bottom: 0 !important;
}