/**
 * 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 */

html, body{
    font-family: 'Libre Franklin';
    font-weight: 300;
    font-size: 17px;
    color: black;
}

:root{
    --red: #cb0f13;
    --blue: #0082c3;
    --blue-transparent: rgba(0, 131, 196, 0.8);
    --light-grey: rgb(242, 242, 242);
    --border: #ddddda;
    --radius: 0.5rem;
}

::selection{
    background: var(--blue);
    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: 85rem;
    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;
}

/* Header */
#header{
    border-bottom: 2px solid var(--border);
    position: relative;
    z-index: 1000;
    & .inside{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 2rem 0;
    }
    & img{
        height: 2rem;
        width: auto;
    }
    .mod_navigation{
        button{
            padding: 0;
            border: none;
        }
    }
    nav ul{
        list-style: none;
        display: flex;
        gap: 2rem;
        padding: 0;
        margin: 2rem 0 0 0;
        justify-content: flex-end;
        align-items: center;
        & .active, & .trail{
            font-weight: 700;
            color: var(--blue);
        }
    }
    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:last-child{
            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(--blue); */
    z-index: 1;
    & .mod_article:not(:last-child){
        min-height: 50dvh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    & .mod_pageimage{
        & figure, img, picture{
            height: 100%;
            width: 100%;
        }
        & img{
            object-fit: cover;
        }
    }
    & .mod_article + .mod_pageimage{
        position: absolute;
        /* height: 100%; */
        width: 100%;
        z-index: 0;
        top: 0;
        left: 0;
        bottom: 3rem;
    }
    & .content-text{
        background: var(--blue-transparent);
        backdrop-filter: blur(2px);
        color: white;
        position: relative;
        z-index: 10;
        /* border-radius: var(--radius); */
        padding: 3rem;
        width: fit-content;
        @media (width >= 600px){
            max-width: 50%;
        }
        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;
}

/* Footer */
#footer{
    padding: 5rem 0;
    background: var(--blue);
    color: white;
    & .subfooter{
        gap: 2rem;
        @media (width >= 560px){
            display: grid;
            grid-template-columns: 1fr 1fr;
        };
        @media (width >= 960px){
            grid-template-columns: repeat(3, 1fr);
        }
    }
    & .mod_navigation{
        font-size: 0.875rem;
        a{
            opacity: .5;
        }
        ul{
            display: flex;
            margin: 0;
            padding: 0;
            gap: 1rem;
        }
    }
    h2, h3, h4{
        color: white;
        opacity: .5;
    }
    .footer{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        padding-top: 2rem;
    }
    h2{
        font-size: 1.25rem;
    }
    [class*="content-"]{
        margin-bottom: 1rem;
    }
}

/* 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;
    }
}
#ablauf-op{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    .content-text{
        padding: 1rem;
        border: 1px solid var(--blue);
        border-radius: var(--radius);
        background: white;
    }
    &.content-element-group::after{
        content: '';
        height: 100%;
        width: 1px;
        position: absolute;
        background: var(--blue);
        left: calc(50% - 1px);
        display: block;
        z-index: -1;
    }
}
.content-image.logo{
    img{
        height: 4rem;
        width: auto;
        margin: 0 auto;
    }
}

/* Contao */
.content-text, .content-image{
    figure{
        border-radius: var(--radius);
        overflow: hidden;
    }
    img{
        width: 100%;
    }
}
.content-text{
    p:not(:last-child){
        margin-bottom: 1rem;
    }
    &.information{
        background: var(--light-grey);
        padding: 1rem;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        margin: 2rem 0;
        display: flex;
        gap: 1rem;
    }
    &.information::before{
        height: 2rem;
        flex-shrink: 0;
        width: 2rem;
        display: block;
        opacity: .5;
        content: '';
        background-size: contain;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3C!-- Icon from Material Symbols by Google - https://github.com/google/material-design-icons/blob/master/LICENSE --%3E%3Cpath fill='currentColor' d='M11 17h2v-6h-2zm1-8q.425 0 .713-.288T13 8t-.288-.712T12 7t-.712.288T11 8t.288.713T12 9m0 13q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4T6.325 6.325T4 12t2.325 5.675T12 20m0-8'/%3E%3C/svg%3E");
    }
    ul, ol{
        li:not(:last-child){
            margin-bottom: 0.5rem;
        }
    }
    & blockquote{
        font-size: 1.25rem;
        padding: 0;
        margin: 0;
    }
    & figure{
        margin-bottom: 1rem;
    }
}
.content-accordion{
    margin: 1rem 0;
    & .handorgel__header button{
        padding: 1rem 0;
        border: none;
        border-bottom: 1px solid var(--border)
    }
}

/* onpage navigation */
#overview_nav{
    position: sticky;
    top: 0;
    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-radius: var(--radius);
    border: 1px solid var(--border);
    line-height: inherit;
    cursor: pointer;
}

/* Breadcrumb */
#breadcrumb{
    background: var(--light-grey);
    padding: 1rem 0;
    border-top: 2px solid var(--border);
    & ul{
        gap: 1rem;
        padding: 0;
        margin: 0;
        display: flex;
    }
    & li{
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        opacity: .5;
    }
    & li:first-child::before{
        background: url('../../files/theme/assets/home.svg');
        content: '';
        background-size: contain;
        height: 1rem;
        width: 1rem;
        display: block;
        opacity: .5;
    }
    & li:not(:last-of-type)::after{
        content: '';
        background: url('../../files/theme/assets/arrow_right.svg');
        background-size: contain;
        height: 1rem;
        width: 1rem;
        display: block;
        opacity: .5;
    }
}


/* 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);
    }
}
/* 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;
}
/* libre-franklin-300 - 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: 'Libre Franklin';
  font-style: normal;
  font-weight: 300;
  src: url('/files/theme/fonts/libre-franklin-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-franklin-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: 'Libre Franklin';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/fonts/libre-franklin-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-franklin-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: 'Libre Franklin';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/fonts/libre-franklin-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

h1, h2, h3, h4, h5, h6{
    color: var(--blue);
    margin-top: 0;
    font-weight: 700;
}

h1{
    font-size: 2rem;
    margin-bottom: 1em;
}

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