/*
===============
= ADJUSTMENTS =
===============
*/

/*RESET
   http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126
   License: none (public domain)
**************************************************************/

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,
button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

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;
}

/*BORDER-BOX LAYOUT
**************************************************************/

*,
*:before,
*:after {
    box-sizing: border-box;
}

/*
============
= FONTFACE =
============
*/

/*
=============
= VARIABLES =
=============
*/

:root {
    --black: #000;
    --white: #fff;
    --blue: #40a7c3;
    --beige: #f8f1e7;
    --grey: #738290;

    --sans: "Lato", Helvetica, Arial, sans-serif;
    --serif: Georgia, serif;
}

/*
=========================================================
= ===================== BASE STYLES =================== =
=========================================================
*/

/*Basic Styling for Headlines, Forms, links etc. */

html {
    min-height: 100vh;
    font-size: 100%;
    background-color: #fff;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100%;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    scroll-behavior: smooth;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 20px;
        line-height: 32px;
    }
}

a {
    border: 0;
    outline: 0;
    color: inherit;
    font-weight: 700;
}

@media (hover: hover) {
    a:hover {
        color: #4d4d4d;
    }
}

a:focus {}

a:active {
    color: #999999;
}

button,
.cta {
    cursor: pointer;
}

button:hover {
    background-color: #aaa;
}

button:focus {
    background-color: #aaa;
}

button:active {
    background-color: #000;
    color: #fff;
}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
    -webkit-appearance: none;
    border-radius: 0;
    font-family: "Lato", Helvetica, Arial, sans-serif !important;
}

input[type="button"],
input[type="submit"] {
    border-radius: 4px;
    font-weight: 700;
}

em {
    font-style: italic;
}

strong,
b {
    font-weight: 700;
}

code {
    font-family: courier, monospace;
    background-color: #eee;
    padding: 0 5px;
}

address {
    font-style: italic;
}

pre {
    font-family: courier, monospace;
    white-space: pre-wrap;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

sup {
    vertical-align: super;
    font-size: smaller;
}

img {
    position: relative;
    max-width: 100%;
    width: auto;
    /* ie8 */
    height: auto !important;
    -ms-interpolation-mode: bicubic;
    border: 0;
}

video {
    position: relative;
    max-width: 100%;
    width: auto;
    /* ie8 */
    height: auto !important;
}

svg {
    width: 100%;
    max-width: 100%;
}

blockquote {
    font-size: 20px;
    line-height: 1.3;
}

/*  ::-webkit-selection { background-color: #aaa; color: #fff; }
     ::-moz-selection { background-color: #aaa; color: #fff; }
          ::selection { background-color: #aaa; color: #fff; }

         h1::-webkit-selection { color: #222; }
            h1::-moz-selection { color: #222; }
                 h1::selection { color: #222; }

         h2::-webkit-selection { color: #222; }
            h2::-moz-selection { color: #222; }
                 h2::selection { color: #222; }

         h3::-webkit-selection { color: #222; }
            h3::-moz-selection { color: #222; }
                 h3::selection { color: #222; }

         h4::-webkit-selection { color: #222; }
            h4::-moz-selection { color: #222; }
                 h4::selection { color: #222; }

         h5::-webkit-selection { color: #222; }
            h5::-moz-selection { color: #222; }
                 h5::selection { color: #222; }

         h6::-webkit-selection { color: #222; }
            h6::-moz-selection { color: #222; }
                 h6::selection { color: #222; }

          a::-webkit-selection { color: #222; }
             a::-moz-selection { color: #222; }
                  a::selection { color: #222; }

 blockquote::-webkit-selection { color: #222; }
    blockquote::-moz-selection { color: #222; }
         blockquote::selection { color: #222; } */

/*FONT AND COLOR CLASSES
**************************************************************/

.sans {
    font-family: Verdana, sans-serif;
}

.serif {
    font-family: Georgia, Times, serif;
}

.mono {
    font-family: courier, monospace;
}

.fancy {
    font-family: "Didot", "Times New Roman", Georgia, Times, serif;
    font-feature-settings: "liga" 1;
}

/*WP-CORE
**************************************************************/

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.wp-video,
video.wp-video-shortcode,
.mejs-container,
.mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}

.mejs-container {
    padding-top: 56.25%;
}

.wp-video,
video.wp-video-shortcode {
    max-width: 100% !important;
}

video.wp-video-shortcode {
    position: relative;
}

.mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.mejs-controls {
    display: none;
}

.mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}

/*
==========
= HELPER =
==========
*/

/*MISC
**************************************************************/

.circle {
    border-radius: 50%;
}

.mask-circle {
    border-radius: 50%;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/*Call to Action Button*/

.cta,
.cta-parent>a {
    display: inline-block;
    outline: none;
    border: 1px solid var(--blue);
    color: var(--white);
    background-color: var(--blue);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    padding: 20px 24px;
    border-radius: 4px;
    line-height: 1.25;
    transition: all 0.15s ease-in-out;
    white-space: nowrap;
    font-weight: 700 !important;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: 100%;
}

.cta>*,
.cta-parent>* {
    font-weight: 700 !important;
}

.cta-parent>a {
    display: inline-block !important;
    padding: 16px 24px 14px !important;
}

@media screen and (min-width: 600px) {

    .cta,
    .cta-parent>a {
        width: auto;
    }
}

@media screen and (min-width: 768px) {

    .cta+.cta,
    .cta-parent+.cta-parent {
        margin-left: 16px;
    }
}

@media (hover: hover) {

    .cta:hover,
    .cta-parent>a:hover {
        border-color: #368ea6;
        background-color: #368ea6;
        color: #fff;
    }

    .cta-parent>a:hover {
        color: #fff !important;
    }
}

.cta:active,
.cta.active {
    border-color: #2d7588;
    background-color: #2d7588;
    transition: none;
}

.bg-white .cta {
    background-color: var(--blue);
    color: var(--white);
}

@media (hover: hover) {
    .bg-white .cta:hover {
        background-color: #368ea6;
        color: #fff;
    }
}

.bg-white .cta:active,
.bg-white .cta.active {
    background-color: #2d7588;
    transition: none;
}

.cta-vid {
    display: flex;
    display: inline-flex;
    justify-content: center;
    gap: 8px;
}

.cta-vid svg {
    width: 16px;
}

.cta-beige,
.bg-grey .cta,
.bg-blue .cta {
    border-color: var(--beige);
    background-color: var(--beige);
    color: var(--black);
}

@media (hover: hover) {

    .cta-beige:hover,
    .bg-grey .cta:hover,
    .bg-blue .cta:hover {
        border-color: #ece5db;
        background-color: #ece5db;
        color: #000;
    }
}

.cta-beige:active,
.cta-beige.active,
.bg-grey .cta.active,
.bg-grey .cta:active,
.bg-blue .cta.active,
.bg-blue .cta:active {
    border-color: #dfd9d0;
    background-color: #dfd9d0;
    transition: none;
}

.bg-white>.cta,
.bg-white>p>.cta {
    background-color: var(--blue);
    color: var(--white);
}

.bg-white>.cta:hover,
.bg-white>p>.cta:hover {
    background-color: #368ea6;
    color: #fff;
}

.bg-white>.cta:active,
.bg-white>p>.cta:active {
    background-color: #2d7588;
    transition: none;
}

.cta-ghost {
    border-color: var(--black);
    background-color: var(--ghost);
    color: var(--black);
    border: 1px solid;
}

@media (hover: hover) {
    .cta-ghost:hover {
        border-color: var(--black);
        background-color: #f2f2f2;
        color: #000;
    }
}

.cta-ghost:active,
.cta-ghost.active {
    background-color: #e5e5e5;
    background-color: #e5e5e5;
    transition: none;
}

/*TYPOGRAPHY & LAYOUT
**************************************************************/

/*size*/

small {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

@media screen and (min-width: 768px) {
    small {
        font-size: 16px;
        line-height: 24px;
    }
}

.medium {
    font-size: 1.5em;
}

.large {
    font-size: 2em;
}

.x-large {
    font-size: 2.5em;
}

/*alignment*/

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

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

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

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

/*DISPLAY OPTIONS
**************************************************************/

/*floats*/

.slick-dots li:only-child {
    display: none;
}

.error404 .section-error {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* CSS Debugger */

/* *:not(path):not(g) {
  color:                    hsla(210, 100%, 100%, 0.9) !important;
  background:               hsla(210, 100%,  50%, 0.5) !important;
  outline:    solid 0.25rem hsla(210, 100%, 100%, 0.5) !important;
  box-shadow: none !important;
} */

/*
==================
= PAGE STRUCTURE =
==================
*/

/* Basic Page Structure (Container and Frame Sizes, standard-Padding etc...)

/*PAGE-SEGMENTS
**************************************************************/

.container {
    /*contains the whole Page */
    position: relative;
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.content {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

section {
    position: relative;
    padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
    section {
        padding-bottom: 160px;
    }
}

.frame,
[class*="frame-"] {
    /*frame, contains Content-Modules, no padding!*/
    position: relative;
    width: 100%;
    max-width: 1792px;
    margin: 0 auto;
}

.frame-narrow {
    max-width: 1482px;
}

.frame-small {
    max-width: 1194px;
}

.frame-672 {
    max-width: 672px;
}

.frame-864 {
    max-width: 864px;
}

.module,
[class*="module-"],
.page-pad,
.page-padding {
    /* adds l/r padding to element */
    padding-left: 24px;
    padding-right: 24px;
}

@media screen and (min-width: 768px) {

    .module,
    [class*="module-"],
    .page-pad,
    .page-padding {
        /* adds l/r padding to element */
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media screen and (min-width: 1680px) {

    .module,
    [class*="module-"],
    .page-pad,
    .page-padding {
        /* adds l/r padding to element */
        padding-left: 16px;
        padding-right: 16px;
    }
}