/* Vars */
:root {
    --default-font-family: 'NotoSerif-Regular';
    --default-font-size: 15px;
    --default-line-height: 22px;
    
    --title-font-family: 'DINEngschrift';
    --title-font-size: 90px;
    --title-line-height: normal;
    
    --title2-font-family: 'DINEngschrift';
    --title2-font-size: 45px;
    --title2-line-height: 50px;

    --max-width: 1600px;
    --default-spacing: 15px;
    --main-spacing: 30px;
    --blue: #002fa7;
    
    --header-height: 97px;
    --scroll-header-height: 53px;
}
@media only screen and (min-width: 768px) {
    :root {
        --header-height: 130px;
        --scroll-header-height: 55px;
    }
}
@media only screen and (min-width: 1024px) {
    :root {
        --default-spacing: 25px;
        --main-spacing: 50px;
        --header-height: 170px;
         --scroll-header-height: 55px;
    }
}
textarea,
body {
    color: black;
    font-family: var( --default-font-family), serif;
    font-size: var(--default-font-size);
    line-height: var(--default-line-height);
    -webkit-font-smoothing : antialiased;
}
a {
    color: black;
}

/* Fonts */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: var(--default-font-size);
    font-family: var(--title-font-family);
    line-height: normal;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
}
.section_name {
    display: none;
    font-size: 40px;
    line-height: 35px;
    margin-bottom: 10px;
}
.surtitle {
    font-size: 11px;
    font-family: 'DINSchrift_light';
    margin-bottom: 10px;
    text-transform: uppercase;
}
.subtitle {
    font-size: 18px;
    margin-top: 5px;
}
.description strong,
.text strong {
    font-family: var(--title-font-family);
    text-transform: uppercase;
    font-size: 28px;
    line-height: 28px;
}

@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1024px) {
}
@media only screen and (min-width: 1280px) {
}

/* Misc */
.more {
    width: 16px;
    height: 16px;
    background: url('../img/more.svg') no-repeat;
    background-size: 100%;
    cursor: pointer;
    display: inline-block;
}
.more.opened {
    background: url('../img/less.svg') no-repeat;
    background-size: 100%;
}
input[type=text] {
    height: 35px;
    border-bottom: 1px solid black;
}
.fancybox-container {
    z-index: 100000000 !important;
}