
:root {
    --padding:                  1.5rem;
    --breakpoint-md:            992px;
    --font-family-sans:         -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-serif:        "Unna", Times;
    --font-family-mono:         "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    --font-family:              var(--font-family-sans , --font-family-sans );
    --color-black:              #000;
    --color-white:              #fff;
    --color-grey:               #777;
    --color-light:              #efefef;
    --color-text:               var(--color-black);
    --color-text-grey:          var(--color-grey);
    --color-background:         var(--color-white);
    --color-link:#111111;
    --color-activelink:#000000;
    --color-hover:#000000;
    --color-base:#111111;
    --color-body:#111111;
    --color-textlink:#ff4400;
    --color-headline:#111111;
    --color-headers:#343434;
    --sidebar-bg-color:#FFFFFF;
    --sidebar-text-color:#111111;
    --navbar-bg-color:#FFFFFF;
}



@font-face {
    font-family: "FKT Gnarly Regular";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/FKTGnarly/FKTGnarly_Rg.ttf") format("truetype"), 
         url("../fonts/FKTGnarly/FKTGnarly_Rg.woff2") format("woff2"),
         url("../fonts/FKTGnarly/FKTGnarly_Rg.woff") format("woff"), 
}

@font-face {
    font-family: "FKT Gnarly SemiBold";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/FKTGnarly/FKTGnarly_SBd.ttf") format("truetype"), 
         url("../fonts/FKTGnarly/FKTGnarly_SBd.woff2") format("woff2"),
         url("../fonts/FKTGnarly/FKTGnarly_SBd.woff") format("woff"), 
}

@font-face {
    font-family: "FKT Gnarly Bold";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/FKTGnarly/FKTGnarly_Bd.ttf") format("truetype"), 
         url("../fonts/FKTGnarly/FKTGnarly_Bd.woff2") format("woff2"),
         url("../fonts/FKTGnarly/FKTGnarly_Bd.woff") format("woff"), 
}



@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_900-normal.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_900-italic.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_700-bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_700-italic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_400-italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_400-italic.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_300-regular.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_300-italic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_200-regular.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Netto Pro";
    src: url("../fonts/NettoPro/netto-pro_200-italic.otf") format("opentype");
    font-weight: 200;
    font-style: italic;
}

.desktop-only {
    display:none;
}

.mobile-only {
    display:block;
}

@media(min-width: 992px) {
    .desktop-only {
        display:block;
    }
    .mobile-only {
        display:none;
    }
}

.nav .menu-badge .label {
    margin-right: 0.4rem;
}

.label.label-primary {
    background: var(--btn-color,#007aff);
    color: #fff;
}
.label {
    background: #eef0f3;
    border-radius: 0.2rem;
    color: #455060;
    display: inline-block;
    line-height: 1.25;
    padding: 0.2rem 0.6rem;
}


.data-list li {
    display: grid;
    grid-template-columns: 10em 1fr;
    gap: 3em;
}

/* ========================================================================
   Layout: App
 ========================================================================== */

.app {
    height: 100%;
    position: relative;
    width: 100%;
    background: var(--color-background);
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 300ms ease;
    -moz-transition: -moz-transform 300ms ease;
    -o-transition: -o-transform 300ms ease;
    transition: transform 300ms ease;



}


.app-body {
    display: block;
    height: 100%;
    padding: 0;

}

.app-content {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0;

}

.page-wrap {
    flex: 1 0 auto;
    margin-top: 50px;
}
@media (min-width: 992px){
    .page-wrap {
        margin-top: 0;
    }
}


/* ========================================================================
   Layout: Navbar
 ========================================================================== */


.navbar-app {
    height: 50px;
    background: var(--navbar-bg-color, #ffffff);
    color: var(--color-base, #000000);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

}

.navbar-app .btn-navbar,
.navbar-app .btn {
    background: none;
    border: none;
    line-height: 30px;
    padding-top: 0;
    padding-bottom: 0;
    color: #000;
}

.navbar-brand-center {
    position: absolute;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    z-index: -1;
}

.navbar-brand {
    float: left;
    padding: 5px 5px;
    font-size: 18px;
    line-height: 20px;
    height: 50px;
}

.navbar-brand:focus {
    text-decoration: none;
}

.navbar-brand figure img {
    height: 40px;
    width: auto;
}

.navbar-brand .name {
    font-size: 18px;
    height: 50px;
    line-height: 35px;
    margin: 0;
}

.navbar-absolute-top,
.navbar-absolute-bottom {
    position: absolute;
    z-index: 1000;
    border-width: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
}

.navbar-absolute-top {
    top: 0;
}

.navbar-absolute-bottom {
    top: auto;
    bottom: 0;
    border-bottom: 0 none;
    border-top-width: 1px;
}

@media (display-mode: standalone) {
    .navbar-absolute-bottom {
        min-height: 80px;
    }
}

.has-navbar-bottom .app-body {
    padding-bottom: 51px;
}

@media (min-width: 992px) {
    .has-navbar-bottom .app-body {
        padding-bottom: 0;
    }
    .has-navbar-top .app-body {
        padding-top: 0;
    }
}

.k-main-header {
    position: relative;
    padding-left: 5em;
    padding-right: 5em;
}

.k-navbar-topmenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.k-main-nav a {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--color-link, #000000);
    text-decoration: none;

}

.k-main-nav a:hover {
    color: var(--color-hover, #000000);
    border-bottom: solid 2px var(--color-link, #000000);
    padding-bottom: 3px;
}

.k-main-nav ul {
    margin: 0;
    padding: 0;
}

.k-main-nav ul {
    margin: 1em 0 .5em;
    text-align: center;
}

.k-main-nav li {
    padding: .5em 1em;
    display: inline-block;
}

.k-main-nav a.active {
    border-bottom: solid 2px var(--color-link, #000000);
    padding-bottom: 3px;
}

.k-main-nav a.active:hover {
    border-color: var(--color-hover, #000000);
}

@media (min-width: 992px) {
    .k-main-header .k-container {
        justify-content: space-between;
    }
}


.mx-1 {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}

.mx-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.mx-3 {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
}

.langmenu a {
    text-transform: uppercase;
    border: 0 !important;
    color: var(--color-grey, #777);
}

.langmenu a.active {
    color: var(--color-black, #000);
}


.hamburger {
    padding: 0px 10px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 20px;
    height: 12px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 2px;
    background-color: #000;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
      content: "";
      display: block;
}

.hamburger-inner::before {
    top: -5px;
}

.hamburger-inner::after {
    bottom: -5px;
}

.hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-4px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-4px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
    transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/* ========================================================================
   Element: Menu
 ========================================================================== */


.nav {
    display:flex;
    display:-ms-flexbox;
    -ms-flex-direction:column;
    flex-direction:column;
    list-style:none;
}
.nav .nav-item a {
    color: var(--sidebar-text-color, #505c6e);
    padding:.2rem .4rem;
    text-decoration:none;
    display: block;
    transition: all 0.2s ease-in-out;
}
.nav .nav-item a:focus,
.nav .nav-item a:hover {
    color: var(--color-hover, #505c6e);
    margin-left: .2rem;
}
.nav .nav-item a.active, .nav .nav-item.open>a  {
    color: var(--color-activelink, #505c6e);
    font-weight:700
}

.nav .nav-item.closed .nav{
    display: none;

}
.nav .nav-item.active>a:focus,
.nav .nav-item.active>a:hover {
    color: var(--color-hover, #505c6e);
}
.nav .nav {
    margin-left:.8rem
}
.nav .nav-item {
    padding-left: 2.5rem;
    padding-bottom: 0.25rem;
    padding-top: 0.25rem;
    position: relative;
}

.nav .nav .nav-item {
    padding-left: 0.5rem;
}

.nav .menu-badge {
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.nav .menu-badge .label {
    margin-right: .4rem;
}

/* ========================================================================
   Element: Shadow
 ========================================================================== */

.shadow-top {
    box-shadow: 0px -1px 3px 0px rgba(191,191,191,0.6);
}
.shadow-bottom{
    box-shadow: 0 1px 3px 0 rgba(191,191,191,0.6);
}

/* Mask
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 992px) {

    .no-scroll {
        overflow: hidden;
    }

    .nav-active .mask {
        visibility: visible;
        opacity: 1;
    }

    .mask {
        transition: opacity 300ms;
        visibility: hidden;
        position: fixed;
        opacity: 0;
        z-index: 50;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
    }

    .mask  {
        background: rgba(0, 0, 0, 0.5);
    }
}

.nav-active .menu-dropdown {
    display: block;
    background-color: #fff;
}

/* ========================================================================
   Element: menu-dropdown
 ========================================================================== */

.menu-dropdown {
    display: none;
    background-color: #fff;
}

.menu-dropdown {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 50;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 112px);
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    -webkit-box-shadow: 0 18px 18px 0 rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0 18px 18px 0 rgba(0, 0, 0, 0.33);
    box-shadow: 0 18px 18px 0 rgba(0, 0, 0, 0.33);
}

.menu-dropdown li.nav-item.depth-1 {
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}


.scrollable {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 100px;
}



.scrollable-header,
.scrollable-footer {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    display: block;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

.scrollable-header {
    top: 0;
    padding: 2.5rem 0rem 2.5rem 2.5rem;
}

.scrollable-footer {
    bottom:0;
    background-color: var(--sidebar-bg-color);
    padding: 2.5rem;
}


.scrollable-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}

.sidebar .scrollable-content {
    max-height: calc(~"100% - 170px");
}

@media (min-width: 992px) {
    .sidebar .scrollable-content {
        max-height: calc(~"100% - 220px");
    }
}


h1{
    font-weight: bold;
    margin-bottom:2rem;
}
h2, h3{
    margin-bottom:2rem;
   
}
.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    margin: .2rem 0;
    font-size:.8em;
}
.nav .nav-item{
    font-weight: bold;
}
.nav .nav-item a {
    color: #66758c;
    padding: .2rem .4rem;
    text-decoration: none;
    font-weight: normal;
}

.nav .nav-item a:focus,
.nav .nav-item a:hover {
    color: #000000;
}

.nav .nav-item.active > a {
    color: #505c6e;
    font-weight: bold;
}

.nav .nav-item.active > a:focus,
.nav .nav-item.active > a:hover {
    color: #000000;
}

.nav .nav {
    margin-bottom: .0rem;
    margin-left: .0rem;
}

.header-hero__heading {
    font-family: "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'", "Mier B", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: normal;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    margin-top: 0;
    margin-bottom: 15px;
}

.header-hero__subheading {
    font-family: "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'", "Mier B", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: rgba(255,255,255,0.7);
    font-size: 1.25rem;
    letter-spacing: normal;
    line-height: 1.2;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-content .page-title {
    font-family: "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'", "Mier B", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: rgba(0,0,0,1);
    font-size: 30px;
    line-height: 1.3;
    font-weight: normal;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: normal;
}

.font-preview-character {
    color: #565454;
    display: block;
    font-size: 90px;
    line-height: 1;
}

.font-preview {
    border-right: 2px solid #eaebeb;
    box-sizing: border-box;
    display: block;
    font-size: 18px;
    line-height: 1.5;
    margin-right: 30px;
    margin-top: 5px;
    padding: 0 20px 0 0;
}

.font-name {
    color: #565454;
    display: block;
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: 5px;
    margin-top: 5px;
}

.font-weight {
    color: #2d3232;
    font-size: 13px;
    margin-bottom: 5px;
}

.font-style {
    color: #2d3232;
    font-size: 13px;
    margin-bottom: 5px;
}

.fs-7{
    font-size:.8em;
}

/* section spacing */

section.assets,
section.logo,
section.typography, 
section.color_palette
{
    margin-bottom:30px;
}


.color-palette .swatch {
    display: inline-block;
    width: 200px;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 5px;
    box-shadow: 3px 3px 3px #F1F1F1;
}

.color-palette .swatch:first-child, .swatch:nth-child(4) {
    margin-left: 0;
}

.color-palette .color {
    height: 100px;
    width: 100%;
}

.color-palette .color-info {
    background-color: #FFFFFF;
    padding: 5px 10px;
}

.color-palette .color-name {
    color: #565454;
    font-weight: 700;
    line-height: 1.5;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.color-palette .label {
    width: 100%;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 22px;
}


.block-type-tinymce img {
    max-width: 100%;
    height: auto;
}

.block-type-image img {
    max-width: 100%;
    height: auto;
}

.block-type-border {
    border: 1px solid #ccc;
    border-radius: 5px;
}

.k-embed-card {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: rgba(0, 0, 0, .1);
}

.k-embed-card iframe,
.k-embed-card object,
.k-embed-card embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================================================
   Module: Image Grid
 ========================================================================== */

picture, figure {
    width: 100%;
    object-fit: cover;
}

.ig .thumb {
   max-width: 100%;
   margin: 0
}


.ig {
    margin-top: 0;
}

.ig:after {
    content: "";
    display: table;
    clear: both;
}

.ig .thumb-link {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-bottom: none;
}

.ig .thumb-link:hover,
.ig .thumb-link:focus {
    border: none;
}

.ig img {
    position: absolute;
    transition: all 0.3s;
}



.album-gallery {
    --min-width: 50%;
    --row-height: 20vh;
    --max-row-height: 100vh;

    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--gutter) * -1);
}



@media screen and (min-width: 30rem) {
    .album-gallery {
        --min-width: 33.33%;
    }
}
@media screen and (min-width: 45rem) {
    .album-gallery {
        --min-width: 25%;
    }
}
@media screen and (min-width: 60rem) {
    .album-gallery {
        --min-width: 20%;
    }
}
@media screen and (min-width: 90rem) {
    .album-gallery {
        --min-width: 16.66%;
    }
}
@media screen and (min-width: 120rem) {
    .album-gallery {
        --min-width: 15%;
    }
}

.album-photo {
    flex-grow: calc(var(--ratio) * 100);
    flex-basis: calc(var(--ratio) * var(--row-height));
    margin: var(--gutter);
    min-width: var(--min-width);
    list-style: none;
}

.album-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-height: var(--max-row-height);
    object-fit: cover;
    background-image: url("../img/img-bg.gif");
    
}



ul.data-list li a{
    background-color: white;
    color:var(--color-textlink);
    margin: 0.25rem 0.125rem;
    cursor: pointer;
    display: inline-block;
    border-radius: 10px;
    border-radius: 10px;
    text-align: center;
    padding: 10px 8px;
    margin: 15px 0 0 0;
    
}
ul.data-list li a:hover{
    background-color: var(--color-textlink);
    color:white;
}



.lg-thumbs img.landscape.center {
   left: 50%;
   -webkit-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   transform: translateX(-50%);
}

.lg-thumbs img.landscape.top {
    top: 0;
}

.lg-thumbs img.landscape.right {
    right: 0;
}

.lg-thumbs img.landscape.bottom {
    bottom: 0;
}

.lg-thumbs img.landscape.left {
    left: 0;
}

.lg-thumbs img.portrait.center {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lg-thumbs img.portrait.top {
    top: 0;
}

.lg-thumbs img.portrait.right {
    right: 0;
}

.lg-thumbs img.portrait.bottom {
    bottom: 0;
}

.lg-thumbs img.portrait.left {
    left: 0;
}




[data-image-grid="square"] .thumb-link {
   padding-bottom: 100%;
}

[data-image-grid="square"] img.portrait {
    width: 100%;
    height: auto;
}

[data-image-grid="square"] img.landscape {
    width: auto;
    max-width: none;
    height: 100%;
}



[data-image-grid="landscape"] .thumb-link {
   padding-bottom: 66%;
}

[data-image-grid="landscape"] img {
    width: 100%;
    min-height: 100%;
    height: auto;
}





[data-image-grid="portrait"] .thumb-link {
   padding-bottom: 130%;
}

[data-image-grid="portrait"] img.landscape {
    width: auto;
    max-width: none;
    height: 100%;
}

[data-image-grid="portrait"] img.portrait {
    min-height: 100%;
}



@media (max-width: 768px) {
    .k-cards figure {
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .k-cards {
        display: -ms-grid;
        display: grid;
        grid-gap: var(--grid-gap, 1.5rem);
        grid-template-columns: none;
    }
}
@media screen and (min-width:30em) {
    .k-cards[data-size=tiny] {
        grid-template-columns:repeat(auto-fill,minmax(12rem,1fr))
    }
    .k-cards[data-size=small] {
        grid-template-columns:repeat(auto-fill,minmax(16rem,1fr))
    }
    .k-cards[data-size=medium] {
        grid-template-columns:repeat(auto-fill,minmax(24rem,1fr))
    }
    .k-cards[data-size=huge],
    .k-cards[data-size=large] {
        grid-template-columns:1fr
    }
}
@media screen and (min-width:65em) {
    .k-cards[data-size=large] {
        grid-template-columns:repeat(auto-fill,minmax(32rem,1fr))
    }
}

.k-cards a figure {
    cursor: pointer;
}

.k-cards figcaption {
    margin-top: 5px;
}


.k-cards-title {
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 600;
    display: block;
}

.k-cards-subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
    display: block;
}
.k-layout {
    display: grid;
}

@media (min-width: 768px) {
    .k-layout {
        --columns: 12;
        --gutter: 3rem;
        display: -ms-grid;
        display: grid;
        grid-gap: var(--gutter);
        grid-template-columns: 1fr;
    }

    .k-layout > .column {
        margin-bottom: var(--gutter);
    }
}

@media screen and (min-width: 60rem) {

    .k-layout {
        grid-template-columns: repeat(12, 1fr);
    }
    .k-layout > .column {
        grid-column: span var(--columns);
    }

}

.k-order-first {
    order: -9999;
}
@media (min-width: 60rem) {
    .k-order-first{
        order: 0;
    }
}


.autogrid {
    --gutter: 3rem;
    --min: 10rem;
    display: -ms-grid;
    display: grid;
    grid-gap: var(--gutter);
    grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
    grid-auto-flow: dense;
}


.k-grid {
    margin: 0;
    width: 100%;
    display: -ms-grid;
    display: grid;
    align-items: stretch;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--grid-gap);
}

@media (min-width: 992px) {
    .k-grid {
        grid-template-columns: var(--columns);
    }
}

.k-list {
    display: -ms-grid;
    display: grid;
    grid-gap: 3rem;
}

.k-image {
    position: relative;
    padding-bottom: 75%;
    background: rgba(0,0,0,0.1);
    overflow: hidden;
}

img.item {
    /* max-width: 500px; */
}

