/**
 * CLICKPRESS CSS-Grid
 * @author: Stefan Schulz-Lauterbach
 *
 * thanks to Dinko Skopljak for co-working
 */
.justify-items-start {
  justify-items: start;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-stretch {
  justify-items: stretch;
}

.content-start {
  align-content: start;
}

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

.content-end {
  align-content: end;
}

.items-start {
  align-items: start;
}

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

.items-end {
  align-items: end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

[class*=grid_] {
  display: grid;
  grid-gap: 1rem;
}
[class*=grid_] > .block {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .grid_mobile_100 {
    grid-template-columns: 1fr;
  }
  .grid_mobile_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_mobile_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_mobile_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_mobile_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_mobile_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_mobile_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_mobile_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_mobile_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_mobile_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_mobile_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_mobile_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_mobile_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_mobile_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_mobile_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_mobile_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .gap_mobile_0 {
    grid-gap: 0;
  }
  .gap_mobile_1 {
    grid-gap: 1rem;
  }
  .gap_mobile_2 {
    grid-gap: 2rem;
  }
  .gap_mobile_3 {
    grid-gap: 3rem;
  }
  .gap_mobile_4 {
    grid-gap: 4rem;
  }
  .gap_mobile_5 {
    grid-gap: 5rem;
  }
  .gap_mobile_6 {
    grid-gap: 6rem;
  }
  .gap_mobile_7 {
    grid-gap: 7rem;
  }
  .gap_mobile_8 {
    grid-gap: 8rem;
  }
  .gap_mobile_9 {
    grid-gap: 9rem;
  }
  .gap_mobile_10 {
    grid-gap: 10rem;
  }
  .gap_mobile_11 {
    grid-gap: 11rem;
  }
  .gap_mobile_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 768px) {
  .grid_tablet_100 {
    grid-template-columns: 1fr;
  }
  .grid_tablet_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_tablet_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_tablet_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_tablet_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_tablet_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_tablet_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_tablet_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_tablet_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_tablet_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_tablet_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_tablet_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_tablet_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_tablet_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_tablet_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_tablet_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_tablet_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_tablet_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_tablet_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .gap_tablet_0 {
    grid-gap: 0;
  }
  .gap_tablet_1 {
    grid-gap: 1rem;
  }
  .gap_tablet_2 {
    grid-gap: 2rem;
  }
  .gap_tablet_3 {
    grid-gap: 3rem;
  }
  .gap_tablet_4 {
    grid-gap: 4rem;
  }
  .gap_tablet_5 {
    grid-gap: 5rem;
  }
  .gap_tablet_6 {
    grid-gap: 6rem;
  }
  .gap_tablet_7 {
    grid-gap: 7rem;
  }
  .gap_tablet_8 {
    grid-gap: 8rem;
  }
  .gap_tablet_9 {
    grid-gap: 9rem;
  }
  .gap_tablet_10 {
    grid-gap: 10rem;
  }
  .gap_tablet_11 {
    grid-gap: 11rem;
  }
  .gap_tablet_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 992px) {
  .grid_desktop_100 {
    grid-template-columns: 1fr;
  }
  .grid_desktop_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_desktop_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_desktop_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_desktop_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_desktop_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_desktop_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_desktop_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_desktop_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_desktop_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_desktop_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_desktop_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_desktop_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .grid_desktop_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_desktop_40_20_20_20 {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .grid_desktop_20_40_20_20 {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
  .grid_desktop_20_20_40_20 {
    grid-template-columns: 1fr 1fr 2fr 1fr;
  }
  .grid_desktop_20_20_20_40 {
    grid-template-columns: 1fr 1fr 1fr 2fr;
  }
  .grid_desktop_20_20_20_20_20 {
    grid-template-columns: repeat(5, 1fr);
  }
  .gap_desktop_0 {
    grid-gap: 0;
  }
  .gap_desktop_1 {
    grid-gap: 1rem;
  }
  .gap_desktop_2 {
    grid-gap: 2rem;
  }
  .gap_desktop_3 {
    grid-gap: 3rem;
  }
  .gap_desktop_4 {
    grid-gap: 4rem;
  }
  .gap_desktop_5 {
    grid-gap: 5rem;
  }
  .gap_desktop_6 {
    grid-gap: 6rem;
  }
  .gap_desktop_7 {
    grid-gap: 7rem;
  }
  .gap_desktop_8 {
    grid-gap: 8rem;
  }
  .gap_desktop_9 {
    grid-gap: 9rem;
  }
  .gap_desktop_10 {
    grid-gap: 10rem;
  }
  .gap_desktop_11 {
    grid-gap: 11rem;
  }
  .gap_desktop_12 {
    grid-gap: 12rem;
  }
}

/*# sourceMappingURL=clickpress-grid.css.map */

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
html, body{
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 17px;
    color: black;
}

:root{
    --accent: #94C130;
    --light-grey: rgb(242, 242, 242);
    --dark: #1e1d1d;
    --border: #ddddda;
    --radius: 0.5rem;

    --font-main: 'Barlow';
    --font-secondary: 'Orbitron';
}

::selection{
    background: var(--accent);
    color: white;
}

/* Helper */

a.invisible{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}
a.invisible:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip-path: none;
}

.inside{
    width: 90vw;
    max-width: 75rem;
    margin: 0 auto;
}

/* Tags */
ul, ol{
    & li::marker{
        color: var(--blue)
    }
}
figure{
    padding: 0;
    margin: 0;
}

figure, img{
    max-width: 100%;
    height: auto;
}
a:active, a:visited, a:link{
    color: inherit;
    font-weight: 400;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.1em;
}

/* Image Sizes */
img{
    &.icon-s{
        max-width: 4rem;
    }
}

/* Header */
#header{
    border-bottom: 2px solid var(--border);
    position: relative;
    z-index: 1000;
    position: sticky;
    background: white;
    top: 0;
    padding: 1rem 0;
    @media (min-width: 768px) {
        padding: 0;
    }
    & .inside{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    & img{
        height: 2.5rem;
        width: auto;
    }
    .mod_navigation{
        button{
            padding: 0;
            border: none;
        }
    }
    nav ul{
        list-style: none;
        display: flex;
        gap: 2rem;
        padding: 0;
        margin: 0;
        justify-content: flex-end;
        align-items: center;
        text-transform: uppercase;
        & .active, & .trail{
            font-weight: 700;
            color: var(--blue);
        }
        & li{
            position: relative;
        }
        a, strong{
            display: block;
            @media (min-width: 768px) {
                padding: 2rem 0;
            }
        }
        & li.active::after, & li a:hover::after{
            content: '';
            position: absolute;
            bottom: 0;
            height: 4px;
            width: 100%;
            left: 0;
            background: var(--accent);
        }
        & li a:hover::after{
            opacity: .5;
        }
    }
    a{
        text-decoration: none;
    }
    button{
        display: inline-flex;
        align-items: center;
        gap: .25rem;
    }
    & .level_1{
        & > li.submenu{
            position: relative;
            & svg{
                color: var(--blue);
                transition: transform 0.25s ease-in-out;
            }
            &.is-open{
                & svg{
                    transform: rotate(-180deg)
                }
            }
        }

    }
    & .level_2 {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 50;    
        gap: .5rem;
        margin: 0;
        padding: 1rem;
        background: white;
        border-radius: var(--radius);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-.5rem);
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
        align-items: flex-start;
        flex-direction: column;
        border: 2px solid var(--border)
    }
    .is-open > .level_2 {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    & .meta_nav{
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
        font-size: 0.875rem;
        & a{
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            & svg{
                color: white;
                opacity: 0.5;
                height: 1rem;
                width: 1rem;
            }
        }
        & a.blue{
            background: var(--blue);
        }
        & a.red{
            background: var(--red);
        }
    }
    .mod_navigation[hidden] {
        display: none;
    }
    .menu-toggle{
        display: block;
        @media (min-width: 768px) {
            display: none;
        }
    }    
}
#header-menu { display: none; }
#header-menu.is-open { 
    display: flex;
    flex-direction: column-reverse; 
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 100%;
    margin: 0 auto;
    & .meta_nav, .mod_navigation{
        width: 90vw;
        margin: 0 auto;
    }
    & .meta_nav{
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 2rem;
    }
    & .mod_navigation{
        margin: 0 auto 2rem auto;
        ul{
            gap: 1rem;
            flex-direction: column;
        }
    }
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
  #header-menu { display: block; }
}

/* Teaser */
#teaser{
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
    z-index: 1;
    color: white;
    h1 > em{
        color: var(--accent);
        font-style: normal;
    }
    & .mod_pageimage{
        & figure, img, picture{
            height: 100%;
            width: 100%;
        }
        & figure{
            position: relative;
        }
        & figure::before{
            content: '';
            position: absolute;
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
            @media (width >= 600px){
                background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
                height: 100%;
                width: 60%;
            }
        }
        & img{
            object-fit: cover;
        }
    }
    & .mod_article + .mod_pageimage{
        position: absolute;
        height: 25vh;
        z-index: -1;
        width: 100%;
        top: 0;
        right: 0;
        @media (width >= 600px){
            height: 100%;
            width: 75%;
        }
    }
    & .mod_article{
        padding-top: 25vh;
        z-index: 20;
        @media (width >= 600px){
            padding: 5rem 0;
            max-width: 40%;
        }
        & .inside{
            width: 100%;
        }
    }
    & .content-text{
        position: relative;
        width: fit-content;
        font-size: 2rem;
        h1, h2, h3{
            color: white;
        }
        & h1:last-child{
          margin: 0;  
        }
        p{
            font-size: 1.25rem;
        }
    }
}

/* Structure */
#main{
    & .mod_article{
        padding: 5rem 0;
    }
    & .mod_article:not(:last-of-type){
        border-bottom: 1px solid var(--border)
    }
    .ce_cp_grid_start:not(:last-of-type){
        margin-bottom: 2rem;
    }
}
[class*="grid_"]{
    gap: 2rem;
}
.ce_cp_grid_start{
    display: block;
}

ul.subpage{
    list-style: none;
    display: flex;
    flex-flow: column wrap;
    gap: 1rem;
    padding: 0;
    margin: 0;
    li{
        width: 100%;
        background: white;
        @media (min-width: 768px) {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
        }
        & h3{
            color: var(--dark);
            margin: 0;
        }
        & a{
            text-decoration: none;
        }
        & > div{
            padding: 2rem;
            display: flex;
            flex-flow: column wrap;
            gap: 1rem;
        }
        & figure, picture{
            height: 100%;
            width: 100%;
        }
        & figure{
            object-fit: cover;
            height: 100%;
            max-height: 25vh;
            overflow: hidden;
            @media (min-width: 768px) {
                max-height: 100%;
            }
            img{
                height: 100%;
            }
        }
    }
}

/* Footer */
#footer{
    background: var(--dark);
    color: white;
    & .mod_navigation{
        ul{
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 1rem;
        }
    }
    img{
        max-height: 3rem;
    }
    .main{
        padding: 3rem 0;
    }
    .subfooter{
        display: flex;
        justify-content: space-between;
        font-size: 0.875rem;
        opacity: .5;
    }
    .verband{
        padding: 2rem 0;
        margin: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.227);
        border-bottom: 1px solid rgba(255, 255, 255, 0.227);
        a{
            display: inline-block;
        }
        p{
            opacity: .5;
        }
        img{
            height: 4rem;
            width: auto;
        }
    }
    .social{
        background: var(--accent);
        color: var(--dark);
        padding: 1rem 0;
        .inside{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;

        }
        .content-hyperlink{
            img{
                height: 2rem;
                width: 2rem;
            }
        }
    }
    h2{
        font-size: 1.25rem;
    }
}

/* Pages / IDs */
#mitgliedschaften{
    .content-text{
        text-align: center;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 1rem;
    }
    figure{
        height: 5rem;
        width: 100%;
    }
    picture, img{
        height: 100%;
        width: 100%;
    }
    img{
        object-fit: contain;
    }
}

.content-image.logo{
    img{
        height: 4rem;
        width: auto;
        margin: 0 auto;
    }
}

/* Contao */
.content-text, .content-image{
    img{
        width: 100%;
    }
}
.content-text{
    p:not(:last-child){
        margin-bottom: 1rem;
    }
    &.media--left{
        display: flex;
        gap: 3rem;
    }

    ul, ol{
        li:not(:last-child){
            margin-bottom: 0.5rem;
        }
    }
    & blockquote{
        font-size: 1.25rem;
        padding: 0;
        margin: 0;
    }
}
.content-accordion{
    margin: 1rem 0;
    & .handorgel__header button{
        padding: 1rem 0;
        border: none;
        border-bottom: 1px solid var(--border)
    }
}
.content-hyperlink{
    &.button a, &.button_icon a, &.button_ghost a{
        display: inline-flex;
        text-decoration: none;
        padding: .5rem 1rem;
        border: 1px solid transparent;
        text-transform: uppercase;
        font-weight: 500;
        align-items: center;
    }
    &.button_icon a{
        background: var(--accent);
        border: 1px solid var(--accent);
        color: white;
        gap: .5rem;
    }
    &.button_icon a::after{
        display: block;
        content: '';
        background-image: url('/files/theme/assets/arrow_right.svg');
        background-size: 1rem;
        height: 1rem;
        width: 1rem;
        opacity: .5;
    }
    &.button_ghost a{
        border: 1px solid var(--border);
        border-bottom: 2px solid var(--border);
    }
    &.button_ghost a:hover{
        background: var(--light-grey);
    }
}

.content-headline{
        & span{
            font-size: 1.25rem;
            text-transform: uppercase;
            margin-bottom: .25rem;
            display: block;
            font-weight: 500;
        }
    }

.mod_article{
    [class*="content-"]:not(:last-of-type){
        margin-bottom: 2rem;
    }
    &.dark{
        background-color: var(--dark);
        color: white;
    }
    &.light{
        background-color: var(--light-grey);
    }
}
    
/* onpage navigation */
#overview_nav{
    background: white;
    border-bottom: 1px solid var(--border);
}
.module-onepage-navigation{
    ul{
        margin: 0;
        padding: 1rem 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        row-gap: 1rem;
    }
    a{
        text-decoration: none;
    }
    li.active{
        color: var(--red);
    }
}

/* Inputs / Form */
button{
    background: inherit;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    line-height: inherit;
    cursor: pointer;
}

/* Breadcrumb */
.mod_breadcrumb{
    padding: 1rem 0;
    font-size: 0.875rem;
    opacity: .5;
    & ul{
        gap: .5rem;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }
    & li{
        display: inline-flex;
        align-items: center;
        gap: .5rem;
    }
    & a{
        text-decoration: none;
    }
    & li:not(:last-of-type)::after{
        content: '//';
        letter-spacing: -.25em;
        display: block;
        color: var(--accent)
    }
}


/* Praxis-Picker */
#praxispicker{
    position: relative;
    button{
        background: var(--blue);
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: white;
        display: inline-flex;
        width: fit-content;
        align-items: center;
        svg{
            color: rgba(255, 255, 255, 0.5);
        }
    }
    .submenu{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .level_2{
        right: 0;
        padding: 0;
        margin: 0;
    
        li a{
            padding: 0.5rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            display: block;
            align-items: center;
            border-radius: var(--radius);
        }
        .trail{
            opacity: .5;
        }
    }
    .is-open{
        .level_2{
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
    }
}

/* Form */
form{
    & .widget{
        & > label{
            font-size: 0.875rem;
            display: block;
            margin-bottom: .25rem;
        }
    }
    & .widget:not(:last-child){
        margin-bottom: 2rem;
    }
    input, textarea{
        padding: 1rem;
        border: 2px solid var(--border);
        width: 100%;
        font-weight: 700;
    }
    .checkbox_container{
        padding: 0;
        border: none;
        & > span{
            display: flex;
        }
        input{
            height: 1rem;
            width: 1rem;
        }
    }
    input:focus-within, textarea:focus-within{
        outline: 2px solid var(--blue);
    }
}

#information{
    background: var(--blue);
    color: white;
    & .inside{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    & a{
        color: white;
    }
}
/* barlow-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/fonts/barlow-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* barlow-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  src: url('/files/theme/fonts/barlow-v13-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* barlow-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  src: url('/files/theme/fonts/barlow-v13-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* barlow-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 500;
  src: url('/files/theme/fonts/barlow-v13-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* barlow-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/fonts/barlow-v13-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* orbitron-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 600;
  src: url('/files/theme/fonts/orbitron-v35-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* orbitron-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 800;
  src: url('/files/theme/fonts/orbitron-v35-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


h1, h2, h3, h4, h5, h6{
    color: var(--accent);
    font-family: var(--font-secondary);
    margin-top: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    hyphens: auto;
}

h1{
    font-size: 2.5rem;
}

h2{
    font-size: 1.75rem;
    margin-bottom: 0.75em;
}

h3{
    font-size: 1.35rem;
    margin-bottom: 0.65em;
}

p{
  margin: 0;
}

strong{
  font-weight: 700;
}
