@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");
@font-face {
    font-family: "intro_bold_regular";
    src: url("../fonts/introboldregular.ttf") format("truetype"), url("../fonts/introboldregular.woff2") format("woff2"), url("../fonts/introboldregular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --global--font-primary: intro_bold_regular, "Helvetica Neue", sans-serif;
    --branding--title--font-size: intro_bold_regular;
    --branding--title--text-transform: none;
    --branding--description--font-family: "Roboto", sans-serif;
    --branding--description--font-size: 12px;
    --branding--description--line-heigth: 19px;
    --footer--font-family: intro_bold_regular;
    --primary-nav--font-family: intro_bold_regular;
    --global--font-color: #2D3E45;
    --global--color-background: #ffffff;
    --global--spacing-vertical: 50px;
    --theme--primary-color: #4BD69D;
    --theme--primary-color-hover: #256a4e;
    --primary-nav--color-link: rgba(255, 255, 255, 70%);
    --primary-nav--color-link-hover: #ffffff;
}


/**
 * Root Media Query Variables
 */

:root {
    --responsive--spacing-horizontal: calc(2 * var(--global--spacing-horizontal) * 0.6);
    --responsive--aligndefault-width: calc(100vw - var(--responsive--spacing-horizontal));
    --responsive--alignwide-width: calc(100vw - var(--responsive--spacing-horizontal));
    --responsive--alignfull-width: 100%;
    --responsive--alignright-margin: var(--global--spacing-horizontal);
    --responsive--alignleft-margin: var(--global--spacing-horizontal);
}

@media only screen and (min-width: 769px) {
     :root {
        --responsive--aligndefault-width: min(calc(100vw - 4 * var(--global--spacing-horizontal)), 880px);
        --responsive--alignwide-width: calc(100vw - 4 * var(--global--spacing-horizontal));
        --responsive--alignright-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
        --responsive--alignleft-margin: calc(0.5 * (100vw - var(--responsive--aligndefault-width)));
    }
}

@media only screen and (min-width: 1024px) {
     :root {
        --responsive--aligndefault-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 880px);
        --responsive--alignwide-width: min(calc(100vw - 8 * var(--global--spacing-horizontal)), 1240px);
    }
}

body {
    font-family: var(--global--font-primary);
}

body a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

body a:hover {
    text-decoration: none;
}

body #page {
    position: relative;
    min-height: calc(100vh - var(--global--admin-bar--height));
    --e-global-color-primary: var(--global--font-color);
}

header#masthead.site-header {
    position: fixed;
    max-width: none;
    width: 100vw;
    margin: 0 0 40px;
    padding: 0;
    background-color: #F2F2F2;
    row-gap: 0;
    z-index: 1;
}

header#masthead.site-header a:hover,
header#masthead.site-header a:focus,
header#masthead.site-header a:active {
    text-decoration: none;
    background: none;
    outline: none;
}

header#masthead.site-header a:hover *,
header#masthead.site-header a:focus *,
header#masthead.site-header a:active * {
    text-decoration: none;
    background: none;
    outline: none;
}

header#masthead.site-header>.site-branding {
    max-width: none;
    width: 100vw;
    height: 100px;
    display: grid;
    grid-template-columns: auto 60px;
    align-items: center;
    padding: 0 20px;
    margin-right: 0;
    margin-top: 0;
}

header#masthead.site-header>.site-branding>.site-logo {
    width: 185px;
    margin: 0;
}

header#masthead.site-header>.site-branding>.site-logo>a>img {
    height: 60px;
}

header#masthead.site-header>.site-branding>.site-logo>a>svg {
    height: 60px;
    width: auto;
    display: block;
}

header#masthead.site-header>.site-branding>.site-logo>a>svg path[fill] {
    fill: var(--theme--primary-color);
}

header#masthead.site-header>.site-branding>.site-name {
    font: normal normal bold 33px/41px var(--global--font-primary);
    letter-spacing: 0;
}

header#masthead.site-header>.site-branding>.site-name>.tag-line {
    font: normal normal bold 18px/18px var(--global--font-primary);
}

header#masthead.site-header>.site-branding>.lang-selection {
    font-weight: bold;
    font-variant: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    font-family: var(--global--font-primary);
    text-align: right;
    text-transform: uppercase;
}

header#masthead.site-header>.site-branding>.lang-selection ul {
    list-style: none;
    padding: 0;
    display: flex;
}

header#masthead.site-header>.site-branding>.lang-selection ul li a:focus {
    background: none;
    outline: none;
    text-decoration: none;
}

header#masthead.site-header>.site-branding>.lang-selection ul li:not(:first-of-type)>a {
    padding-left: 8px;
}

header#masthead.site-header>.site-branding>.lang-selection ul li:not(:last-of-type)>a {
    padding-right: 8px;
    border-right: 1px solid #000000;
}

header#masthead.site-header>.site-branding>.lang-selection ul li.current-lang {
    pointer-events: none;
}

header#masthead.site-header>.site-branding>.lang-selection ul li:not(.current-lang) a {
    color: var(--theme--primary-color);
}

header#masthead.site-header>.site-branding>.lang-selection ul li:not(.current-lang):hover a {
    color: var(--theme--primary-color-hover);
}

@media only screen and (max-width: 599px) {
    header#masthead.site-header>.site-branding .site-name {
        display: none;
    }
}

@media only screen and (min-width: 600px) {
    header#masthead.site-header>.site-branding {
        width: 100vw;
        height: 100px;
        padding: 0 40px;
        display: grid;
        grid-template-columns: 150px auto 60px;
    }
    header#masthead.site-header>.site-branding .site-name {
        padding-right: 10px;
    }
    header#masthead.site-header>.site-branding .site-name>.site-title {
        font-size: clamp(20px, 13px + 1.8vw, 33px);
        margin-bottom: -5px;
    }
    header#masthead.site-header>.site-branding .site-name>.tag-line {
        font-size: 15px;
    }
}

@media only screen and (min-width: 769px) {
    header#masthead.site-header>.site-branding {
        width: 100vw;
        height: 100px;
        padding: 0 60px;
        display: grid;
        grid-template-columns: 185px auto 60px;
    }
    header#masthead.site-header>.site-branding .site-name>.tag-line {
        font-size: 15px;
    }
}

@media only screen and (min-width: 1024px) {
    header#masthead.site-header>.site-branding {
        width: 100vw;
        height: 100px;
        padding: 0 60px;
        display: grid;
        grid-template-columns: 185px auto 60px;
    }
    header#masthead.site-header>.site-branding .site-name>.tag-line {
        font-size: 18px;
    }
}

header#masthead.site-header>.primary-navigation {
    position: absolute;
    top: 100px;
    width: 100%;
    height: 40px;
    background-color: var(--theme--primary-color);
    display: flex;
    justify-content: space-between;
}

body.home header#masthead.site-header>.primary-navigation .primary-menu-container,
body.home header#masthead.site-header>.primary-navigation .home-button-container {
    display: none;
}

header#masthead.site-header>.primary-navigation .home-button-container {
    padding-right: 60px;
}

header#masthead.site-header>.primary-navigation .home-button-container a {
    padding: 0;
    line-height: 46px;
}

header#masthead.site-header>.primary-navigation .home-button-container a:hover path {
    fill: var(--theme--primary-color-hover);
}

@media only screen and (max-width: 768px) {
    header#masthead.site-header>.primary-navigation .home-button-container {
        padding-right: 20px;
    }
}

header#masthead.site-header>.primary-navigation #breadcrumbs span {
    display: inline-block;
    color: var(--primary-nav--color-link-hover);
    font-size: 14px;
    line-height: 20px;
}

header#masthead.site-header>.primary-navigation #breadcrumbs span a {
    display: inline-block;
    color: var(--primary-nav--color-link);
    font-size: 14px;
    line-height: 20px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

header#masthead.site-header>.primary-navigation #breadcrumbs span a:hover,
header#masthead.site-header>.primary-navigation #breadcrumbs span a:focus,
header#masthead.site-header>.primary-navigation #breadcrumbs span a:active {
    text-decoration: none;
    color: var(--primary-nav--color-link-hover);
    background: none;
    -webkit-tap-highlight-color: transparent;
}

@media only screen and (min-width: 600px) {
    header#masthead.site-header>.primary-navigation #breadcrumbs {
        width: inherit;
    }
    header#masthead.site-header>.primary-navigation #breadcrumbs span a {
        padding-right: 5px;
    }
    header#masthead.site-header>.primary-navigation #breadcrumbs a+span {
        padding-left: 5px;
    }
}

@media only screen and (min-width: 769px) {
    header#masthead.site-header>.primary-navigation #breadcrumbs {
        width: inherit;
    }
    header#masthead.site-header>.primary-navigation #breadcrumbs span a {
        padding-right: 10px;
    }
    header#masthead.site-header>.primary-navigation #breadcrumbs a+span {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 599px) {
    header#masthead.site-header>.primary-navigation #breadcrumbs {
        margin-left: 20px;
    }
}

@media only screen and (min-width: 600px) {
    header#masthead.site-header>.primary-navigation #breadcrumbs {
        margin-left: 40px;
    }
}

@media only screen and (min-width: 769px) {
    header#masthead.site-header>.primary-navigation #breadcrumbs {
        margin-left: 60px;
    }
}

@media only screen and (min-width: 1024px) {
    header#masthead.site-header>.primary-navigation #breadcrumbs {
        margin-left: 245px;
    }
}


footer.site-footer {
    position: absolute;
    top: auto;
    bottom: 0;
    max-width: none;
    width: 100vw;
    padding: 17px 60px 26px 60px;
    background-color: var(--theme--primary-color);
    display: grid;
}

@media only screen and (max-width: 768px) {
    footer.site-footer {
        justify-items: center;
        grid-gap: 20px;
        padding: 17px 20px 26px 20px;
    }
}

@media only screen and (min-width: 769px) {
    footer.site-footer {
        grid-template-columns: 0 auto 200px 0;
    }
}

footer.site-footer>* {
    margin-top: 0;
    margin-bottom: 0;
}

footer.site-footer>.site-info {
    border: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 12px 0 0;
}

@media only screen and (min-width: 769px) {
    footer.site-footer>.site-info {
        align-items: flex-start;
        justify-content: space-between;
    }
}

footer.site-footer>.site-info>.site-description {
    line-height: var(--branding--description--line-heigth);
    text-align: center;
}

footer.site-footer>.site-info>.footer-navigation {
    margin: 0;
}

footer.site-footer>.site-info>.footer-navigation .secondary-menu-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    max-width: none;
    padding-left: 0;
    position: relative;
}

@media only screen and (min-width: 769px) {
    footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper {
        justify-content: flex-start;
    }
}

footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper .menu-item {
    display: block;
    position: relative;
    width: inherit;
}

footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper .menu-item>a {
    color: var(--primary-nav--color-link);
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 19px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0;
}

footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper .menu-item>a:hover,
footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper .menu-item>a:focus,
footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper .menu-item>a:active {
    text-decoration: none;
    color: var(--primary-nav--color-link-hover);
    background: none;
}

footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper .menu-item:not(:first-of-type)>a {
    padding-left: 14.5px;
}

footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper .menu-item:not(:last-of-type)>a {
    padding-right: 15.5px;
    border-right: 1px solid #ffffff;
}

footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper .menu-item.current-menu-item>a:first-child,
footer.site-footer>.site-info>.footer-navigation .secondary-menu-container .menu-wrapper .menu-item.current_page_item>a:first-child {
    color: var(--primary-nav--color-link-hover);
    text-decoration: none;
}

footer.site-footer>.powered-by {
    width: 154px;
    height: 57px;
}

footer.site-footer>.powered-by>img {
    height: auto;
    width: 100%;
}