/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
hr,
.prev, 
.next,
button,
.button,
.teaser i,
.teaser p,
.teaser h3,
#topfooter p,
#topfooter a:hover,
input[type=submit],
#bottomfooter p,
#bottomfooter a,
#hero h1,
#hero p,
#hero a,
#intro h3,
#intro p,
#popup p,
.menuitem .button,
.menuitem .button:hover {
    color: var(--white);
}

/* ORANGE */
a,
.form h4,
#decline,
#popup h3,
#selection,
#topfooter h3,
#topfooter a,
.menuitem a:hover,
#teaserbox .box h3 {
    color: var(--orange);
}

/* BLUE */
h2,
h3,
h4,
#hero p > a:hover,
.menuitem a,
.dropdown .menuitem a:hover,
.menuitem.horizontal::after, 
.menuitem.vertical::after {
    color: var(--blue);
}

/* BLACK */
p,
li i,
#selection {
    color: var(--black);
} 

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
body,
.bottommenu nav,
.bottommenu,
#teaserbox .box {
    background: var(--white);    
}

/* GREY */
input,
textarea,
.topmenu {
    background: var(--grey);
}

/* BLACK */
#burgermenu .burger .line {
    background: var(--black);
}

/* ORANGE */
button,
.button,
.teaser i,
input[type=submit],
#hero .wrapper-inner,
#teaserbox .box .button:hover {
    background: var(--orange);
}

/* BLUE */
#intro,
#popup,
.teaser,
#topfooter,
#bottomfooter,
#hero .button,
#teaserbox .box .button {
    background: var(--blue);
}

/* TRANSPARENT */
#selection,
#burgermenu,
#decline {
    background: transparent;
}

/* CUSTOM */
.dropdown {
    background: rgb(242, 245, 248);
}
.dropdown li:hover {
    background: rgb(229, 236, 241);
}

/**** OUTLINE ****/
#decline,
input:focus,
textarea:focus {
    outline: .15rem solid rgb(226, 226, 226);
}
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
a:focus-visible {
    outline: .15rem solid rgb(226, 226, 226);
}
.dropdown li {
    border-bottom: .15rem solid rgb(226, 226, 226);
}

/**** BOX SHADOW ****/
header,
#popup,
#teaserbox .box {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

/**** TEXT DECORATION ****/
.menuitem a:hover {
    text-decoration: none;
}
#popup a {
    text-decoration: underline;
}

/**** TRANSITIONS ****/
nav,
#more,
.all i,
.dropdown,
.menuitem a,
.bottommenu nav,
#selection span {
    transition: all linear 100ms;
}

#burgermenu {
    transition: all linear 200ms;
}

/**** FONTS ****/
@font-face {
    font-family: 'Oswald';
    src: url(../font/oswald/Oswald-VariableFont_wght.ttf);
}
* {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    font-size: 1rem;
}

/**** ROOT ****/
:root {
    --white: rgb(255, 255, 255);
    --grey: rgb(240, 240, 240);
    --orange: rgba(244, 159, 37, 0.95); 
    --blue: rgb(0, 66, 122); 
    --black: rgb(0, 0, 0);
}

/**** TYPOGRAPHY ****/
.menuitem a {
    font-family: 'Oswald';
}
p {
    margin: 0 0 1rem;
}
h1 {
    font-size: 2.25rem;
    font-family: 'Oswald';
    margin: 0 0 .5rem;
}
h2 {
    font-size: 1.75rem;
    font-weight: 500;
    font-family: 'Oswald';
    margin: 0 0 1rem;
}
h3 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Oswald';
    margin: 0 0 1rem;
}
h4 {
    font-size: 1.35rem;
    font-weight: 500;
    font-family: 'Oswald';
    margin: 0 0 1rem;
}