﻿@font-face {
    font-family: 'Epilogue';
    src: url('/resources/Epilogue-VariableFont_wght.ttf') format('truetype-variations');
}
@font-face {
    font-family: 'Epilogue';
    src: url('/resources/Epilogue/Epilogue-Light.ttf') format('truetype');
    font-weight: 300;
}
html {
    color: #f4f4f4;
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    background-color: #eff5ef;
    color: rgba(0,0,0,.6);
    font-family: Epilogue,Arial,Helvetica,sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-touch-callout: none;
    font-size: 1rem;
    overflow-x: hidden;
}

#site-content {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: #ff9500;
    transition: all .15s cubic-bezier(.075,.82,.165,1);
}

    a:focus, a:hover {
        text-decoration: underline;
    }

*, :after, :before {
    box-sizing: border-box;
    border: 0 solid #e2e8f0;
}

blockquote, body, dd, dl, figure, h1, h2, h3, h4, p {
    margin: 0;
}

ol[role=list], ul[role=list] {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

img, picture {
    max-width: 100%;
    display: block;
}

button, input, select, textarea {
    font: inherit;
}

@media (prefers-reduced-motion:reduce) {
    *, :after, :before {
        -webkit-animation-duration: .01ms !important;
        animation-duration: .01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

.page-subtitle {
    text-transform: uppercase;
    line-height: 1.25;
    font-size: 1.8rem;
    font-weight: 400;
    font-feature-settings: "pnum","lnum";
}

.color-accent {
    color: #ff9500;
}

.color-regular {
    color: #20604a;
}

.page-text {
    max-width: 65ch;
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 400;
}

.btn {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: #fff;
    background-color: #ff9500;
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.site-footer {
    background-color: #064731;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

    .site-footer * {
        color: #fff;
    }

    .site-footer ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
    }

        .site-footer ul * + * {
            margin-left: 1rem;
        }

@media (min-width:768px) {
    .site-footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.entry-footer {
    background-color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

    .entry-footer a {
        color: inherit;
    }

    .entry-footer ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .entry-footer img[src=""] {
        background-color: #b8e0be;
    }

.entry-footer-inner {
    display: -ms-grid;
    display: grid;
    grid-row-gap: 3rem;
    row-gap: 3rem;
    -ms-grid-columns: 2fr 2fr;
}
.column-left{
    -ms-grid-column: 1;
}
.column-right {
    -ms-grid-column: 2;
}

.column-left ul, .column-right ul {
    margin-top: 1rem;
}

    .column-right ul {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(4,auto);
        -ms-grid-column: 1fr 1fr 1fr 1fr;
    }
.column-right li {
    margin-right: 1.5rem;
}
.column-right img {
    margin-left: auto;
    margin-right: auto;
    /*max-height:70px;*/
}

@media (min-width:1024px) {
    .entry-footer {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .entry-footer-inner {
        display: -ms-grid;
        display: grid;
        grid-gap: 2rem;
        gap: 2rem;
        grid-template-columns: repeat(2,1fr);
    }
}

.site-header {
    background-color: #064731;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

    .site-header * {
        color: #fff;
    }

@media (min-width:768px) {
    .site-header {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .site-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

#site-navigation {
    margin-top: 1.5rem;
}

#primary-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

    #primary-menu li a {
        font-size: 18px;
    }

    #primary-menu * + * {
        margin-left: 1rem;
    }

@media (min-width:768px) {
    #site-navigation {
        margin-top: 0;
    }
}

@media (min-width:1280px) {
    #primary-menu * + * {
        margin-left: 2rem;
    }
}

.wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
}

.wrapper-clean {
    margin: 0 auto;
    padding: 0 !important;
}

@media (min-width:768px) {
    .wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width:1024px) {
    .wrapper {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width:1280px) {
    .wrapper {
        padding-left: 4rem;
        padding-right: 4rem;
        max-width: 1440px;
    }
}

.home .entry-header {
    background-color: #fff;
}

.home-intro {
    padding: 4rem 1rem;
}

    .home-intro * + * {
        margin-top: 2rem;
    }

.home-title {
    color: #20604a;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.35;
}

.home-text {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.65;
}

.home-intro a {
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    font-size: 1.35rem;
    line-height: 1.5;
}

.home-img {
    display: none;
    position: relative;
}

    .home-img .image {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: transparent;
        background-blend-mode: luminosity;
    }

.workshop-container {
    padding-top: 3rem;
    padding-bottom: 4.5rem;
}

.workshop-intro * + * {
    margin-top: 1rem;
}

.workshop-card {
    border-color: #b8e0be;
    border-top: 2px #b8e0be;
    border-style: solid;
    padding-top: 2.5rem;
}

    .workshop-card * + * {
        margin-top: 1rem;
    }

.workshop-title {
    color: #20604a;
    font-style: normal;
    font-weight: 600;
    font-size: 2.3rem;
    line-height: 1.25;
}

.workshop-text {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
}

.workshop-card a {
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (min-width:768px) {
    .home-container {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(6,1fr);
        -ms-grid-columns: 1fr 1fr;
    }

    .home-intro {
        padding-left: 2rem;
        padding-right: 2rem;
        grid-column: 1/span 4;
        -ms-grid-column: 1;
    }

    .home-img {
        display: block;
        grid-column: span 2/-1;
        -ms-grid-column: 2;
    }

    .workshop-container {
        padding-top: 4.5rem;
    }

    .workshop-list {
        margin-top: 3rem;
        display: -ms-grid;
        display: grid;
        grid-gap: 4rem 2rem;
        gap: 4rem 2rem;
        grid-template-columns: repeat(2,1fr);
        margin-top: 4rem;
    }

    .workshop-card {
        border-top-width: 0;
        border-left-width: 2px;
        padding: 1rem 0 1rem 2rem;
    }
}

@media (min-width:1024px) {
    .home-intro {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .workshop-container {
        padding-bottom: 6rem;
    }

    .workshop-card {
        padding-right: 3rem;
    }
}

@media (min-width:1280px) {
    .home-container {
        max-width: 1440px;
        margin: 0 auto;
        grid-column-gap: 2rem;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }

    .home-intro {
        padding-left: 4rem;
        padding-right: 4rem;
        grid-column: 1/span 3;
    }

    .home-img {
        display: block;
        grid-column: span 3/-1;
    }
}

.workshop .entry-header {
    background-color: #064731;
    border-color: hsla(0,0%,100%,.25);
    border-top: 1px hsla(0,0%,100%,.25);
    border-style: solid;
}

.workshop .entry-header-inner {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    display: -ms-grid;
    display: grid;
    grid-gap: 2rem;
    gap: 2rem;
}

.workshop .back {
    display: none;
}
.back{
    -ms-grid-column: 1;
}
.workshop-head{
    -ms-grid-column:2;
}
.workshop-weekday {
    -ms-grid-column: 1;
}
.workshop-event-list {
    -ms-grid-column: 2;
}

    .workshop .back a {
        color: #fff;
    }

    .workshop-cal-tag, .workshop .back a {
        font-size: 1.35rem;
    }

.workshop-cal-tag {
    color: #ff9500;
}

.workshop-head {
    grid-column: 2/-1;
}

.workshop-main {
    color: #fff;
}

    .workshop-main * + * {
        margin-top: .5rem;
    }

.workshop-info {
    color: #fff;
    margin-top: 2.5rem;
}

.workshop-cal-title {
    font-style: normal;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 1.15;
}

.workshop-cal-text {
    font-size: 1.1rem;
    max-width: 80ch;
}

dl {
    font-size: 1.1rem;
}

dt {
    font-weight: 600;
}

dd {
    padding-bottom: 1rem;
}

@media (min-width:768px) {
    .workshop .entry-header-inner {
        grid-template-columns: repeat(4,1fr);
    }

    .workshop-info {
        margin-top: 4rem;
    }

    .workshop .back {
        display: block;
    }

    dl {
        display: -ms-grid;
        display: grid;
        grid-template: auto/10em 1fr;
    }

    dd, dt {
        padding-bottom: .5rem;
    }
}

.workshop .entry-content-inner {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

    .workshop .entry-content-inner > * + * {
        margin-top: 4.5rem;
    }

.workshop-day {
    display: -ms-grid;
    display: grid;
}

.workshop-weekday {
    font-size: 1.35rem;
    color: #ff9500;
    text-transform: uppercase;
}

.workshop-event-list {
    margin-top: 2rem;
    grid-column: 2/-1;
}

    .workshop-event-list > * + * {
        margin-top: 2rem;
    }

    .workshop-event-list article {
        border-color: #b8e0be;
        border-left-color: #b8e0be;
        border-bottom: 2px #b8e0be;
        border-style: solid;
        border-right-color: #b8e0be;
        border-top-color: #b8e0be;
        padding-bottom: 1.25rem;
    }

        .workshop-event-list article a {
            color: inherit;
        }

            .workshop-event-list article a:focus, .workshop-event-list article a:hover {
                text-decoration: none;
                color: #064731;
            }

    .workshop-event-list h3 {
        font-style: normal;
        font-weight: 600;
        font-size: 1.75rem;
        line-height: 1.25;
        color: #20604a;
    }

.workshop-event-details {
    font-size: 1rem;
    display: -ms-grid;
    display: grid;
    margin-top: 1rem;
}

.more-button {
    display: flex;
    justify-content: flex-start;
}

@media (min-width:768px) {
    .workshop-day {
        grid-column-gap: 2rem;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        grid-template-columns: repeat(4,1fr);
    }

    .workshop-event-list {
        margin-top: 0;
    }

    .workshop-event-details {
        grid-template-columns: repeat(3,1fr);
    }

    .more-button {
        justify-content: flex-end;
    }
}

.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

    .screen-reader-text:focus {
        background-color: #eff5ef;
        border-radius: 3px;
        box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
        clip: auto !important;
        -webkit-clip-path: none;
        clip-path: none;
        color: rgba(0,0,0,.6);
        display: block;
        font-size: .875rem;
        font-weight: 700;
        height: auto;
        left: 5px;
        line-height: normal;
        padding: 15px 23px 14px;
        text-decoration: none;
        top: 5px;
        width: auto;
        z-index: 100000;
    }
#content[tabindex="-1"]:focus {
    outline: 0;
}

.skip-link {
    left: -9999rem;
    top: 2.5rem;
    z-index: 999999999;
    text-decoration: underline;
}

    .skip-link:focus {
        display: block;
        left: 6px;
        top: 7px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        line-height: normal;
        padding: 15px 23px 14px;
        z-index: 100000;
        right: auto;
    }


/*MIO HEADER*/
.header-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .header-wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .header-wrapper {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1280px) {
    .header-wrapper {
        padding-left: 4rem;
        padding-right: 4rem;
        max-width: 1440px;
    }
}

.topmenuonly-inner {
    width: 100%;
    display: flex;
  /*  margin-top: 0.5rem;
    margin-bottom: 0.5rem;*/
}

@media (min-width:768px) {
    .topmenuonly-inner {
        display: inline-flex;
        justify-content: space-between
    }
}
.topmenuonly {
    right: 0px;
    top: 0px;
    left: 0px;
    background-color: #064731;
    z-index: 0;
    font-size: .875rem;
    line-height: 60px;
    transition: left 0.5s;
    z-index: 11;
    white-space: nowrap;
    border: none;
    display: flex;
}

.topmenuonly-inner > div > a{
    padding-right: 1.2rem;
    color: #fff;
}
.home-logo {
    margin-top: auto;
    margin-bottom: auto;
}
.header-links {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 18px;
    line-height: 100%;
    display: inline-block;
}
@media (max-width:610px) {
    .home-logo {
       /* display: none;*/
    }
    .header-links{
        margin-left: 10px;
    }
}

.header-buttons {
    display: inline-flex;
    justify-content: start;
    margin-top: 3rem;
}

    .header-buttons button {
        margin-right: 1.5rem;
        padding: .7rem 1rem;
        border-radius: 0;
    }

        .header-buttons button > span {
            margin-right: .7rem;
            vertical-align: bottom;
        }

.btn-negative{
    background-color: transparent;
    border: 1px solid #fff;
}
    .btn-negative:hover {
        color: #b8e0be;
        border-color: #b8e0be;
    }
.content-row-title {
    font-size: 32px;
    line-height: 125%;
    text-transform: uppercase;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #FF9500;
    margin-top: 1.5rem;
}
.content-row-list {
    margin-top: 2rem;
    grid-column: 2/-1;
    -ms-grid-column: 2;
}
@media (min-width: 768px) {
    .content-row-list {
        margin-top: 0;
    }
}

.content-row-data {
    font-size: 1rem;
    display: -ms-grid;
    display: grid;
    margin-top: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: .7rem;
}
@media (min-width: 768px) {
    .content-row-data {
        grid-template-columns: 1fr 2fr;
    }
}
.content-row-data > div:first-child {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.6);
}
.content-row-data > div:not(:first-child) {
    font-weight: 300;
    font-size: 24px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.6);
}
.document-row {
    display: inline-flex;
    font-size: 1rem;
    margin-top: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: .7rem;
    width: 100%;
}
    .document-row > i {
        margin-right: 1rem;
        font-size: 26px;
        color: #7AB88F;
    }
    .document-row > div {
        margin-right: 1rem;
        font-size: 18px;
        display: block;
        margin-top: auto;
        margin-bottom: auto;
    }
    .document-row > a {
        margin-right: 1rem;
        font-size: 18px;
        display: block;
        margin-top: auto;
        margin-bottom: auto;
        color: rgba(0,0,0,.6);
    }
.session-grid {
    display: -ms-grid;
    display: grid;
}
@media (min-width: 768px) {
    .session-grid {
        grid-column-gap: 2rem;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        grid-template-columns: 1fr 3fr;
    }
}

.document-row-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.document-row-title > span,
.document-row-title > button {
}
    .document-row-title > button {
        background-color: #20604A;
        border: none;
        font-weight: 500;
        margin-top: 2rem;
        padding: 1rem 1.5rem;
    }
    .document-row-title > button > span {
        margin-right: .5rem;
    }
        .document-row-title > button:hover,
        .document-row-title > button:focus {
            color: #fff;
            box-shadow: none;
            background-color: #064731;
        }

div.j1Window {
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
    div.j1Window label {
        font-weight: 500;
        font-size: 16px;
        line-height: 125%;
        margin-left: 0px !important;
    }

div.j1Window .dbwp_grid.dbwp_Page_Base {
    padding: 3rem;
    padding-top: 1rem;
}

div.j1Panel .card-header {
    margin-left: 3rem;
    border-bottom: 1px solid #7AB88F;
    margin-right: 3rem;
    padding-bottom: 1rem;
    padding-top: 1.5rem;
    padding-left: 0;
    background-color: #fff;
}

    div.j1Panel .card-title {
        font-weight: 600 !important;
        font-size: 24px !important;
        line-height: 125%;
        color: #20604A !important;
    }

div.j1Panel .navbar {
    padding-left: 3rem;
    padding-right: 3rem;
    background-color: #fff !important;
}

    div.j1Panel .navbar .btn:not([closeBtn]) {
        margin-right: 1.5rem;
        height: 2.5rem;
        padding: .3rem 1rem;
        border-radius: 0;
        border: none;
        background-color: #064731;
        width: 130px;
    }
        div.j1Panel .navbar .btn:not([closeBtn]):hover {
            background-color: #20604A;
        }

button[closeBtn] {
    margin-right: 1.5rem;
    padding: .3rem 1rem;
    background-color: transparent;
    color: #064731;
    height: 2.5rem;
    width: 130px;
    border: 1px solid #064731;
    border-radius: 0px;
}

button[closeBtn] > span{
    margin-left: .5rem;
}

    button[closeBtn]:hover, button[closeBtn]:focus, button[closeBtn]:active {
        background-color: #CCCCCC !important;
        color: #064731 !important;
        border: 1px solid #064731;
    }


div.j1Panel .btn:not([closeBtn]) {
    margin-right: 1.5rem;
    height: 2.5rem;
    border-radius: 0;
    border: none;
    background-color: #064731;
    padding-top: .5rem;
}
div.j1Panel .btn:not([closeBtn]):hover {
    background-color: #20604A;
}
.workshoplink {
    color: #ff9500 !important;
    font-weight:bold;
}
.workshoplink:hover {
    color: #ff6000 !important;
}
img.media-object1 {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
    max-width: 40px;
    -ms-interpolation-mode: bicubic
}
