@charset "UTF-8";

/********************************************************
 *
 *             General
 *
 ********************************************************/
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 16px;
}

@font-face {
    font-family: "texgyreadventorregular";
    src: url("/fonts/texgyreadventor-regular-webfont.eot");
    src: url("/fonts/texgyreadventor-regular-webfont.eot?#iefix") format("embedded-opentype"),
    url("/fonts/texgyreadventor-regular-webfont.woff") format("woff"),
    url("/fonts/texgyreadventor-regular-webfont.ttf") format("truetype"),
    url("/fonts/texgyreadventor-regular-webfont.svg#texgyreadventorregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/MaterialIcons-Regular.eot'); /* For IE6-8 */
    src: local('/fonts/Material Icons'),
    local('/fonts/MaterialIcons-Regular'),
    url('/fonts/MaterialIcons-Regular.woff2') format('woff2'),
    url('/fonts/MaterialIcons-Regular.woff') format('woff'),
    url('/fonts/MaterialIcons-Regular.ttf') format('truetype');
}




body {
    font-family: 'Calibri', 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
    margin:0;
    /*height:100%;*/
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;
    font-size: 22px;
    hyphens: auto;
}

a {
    color: #000000;
    text-decoration: none;
}

h1 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.8em;
}

h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.6em;
}

h3 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.4em;
}

h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.3em;
}

h5 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.2em;
}

h6 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.1em;
}

h1 + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6 {
    margin-top: 0;
}

h1:first-of-type,
h2:first-of-type,
h3:first-of-type,
h4:first-of-type,
h5:first-of-type,
h6:first-of-type {
    margin-top: 0;
}


/********************************************************
 *
 *             Container
 *
 ********************************************************/

#page-wrap {
    margin: auto;
    width: 100%;
    position: relative;
    background-size: cover;
    transition: all 436ms ease;

    /* Flex-Properties */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

#header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 999;
    transition: all 436ms ease;
    background: rgba(255,165,0,0.9);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);

    /* Flex-Properties */
    -webkit-box-flex: 0;
    -webkit-flex: none;
    flex: none;
}
#header:hover {
    height: 85px;
}

#header-logo {
    height: 85%;
}

#container-content {
    z-index: 1;
}

#main {
    /*margin-top: 64px;*/
    margin-left: auto;
    margin-right: auto;

    background-color: rgba(255, 255, 255, 0.9);
    /*padding: 15px 15px 15px 15px;*/
    transition: 0.2s all ease-in;

    /* Flex-Properties */
    display: flex;
    flex-direction: column;


}

#content {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 15px 15px 15px;
    transition: 0.2s all ease-in;

    /* Flex-Properties */
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

#menu{
    width:250px;
    background-color:rgba(0, 0, 0, 0.6);
    position: fixed;
    top:64px;
    left:-180px;
    right:0;
    bottom:0;
    z-index: 0;
    transition: 0.2s all ease-in;
    height:auto;
}


#footer {
    display: block;
    /*height: 50px;*/
    line-height: 1.5em;
    /*text-align: right;*/
    background-color: rgba(0, 0, 0, 1);
    transition: 0.2s all ease-in;
    color: #FFFFFF;
    z-index: 1;

    /* Flex-Properties */
    -webkit-box-flex: 0;
    -webkit-flex: none;
    flex: none;
}


.circle {
    border-radius: 50%;
}


#main-header {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000000;
    transition: all 436ms ease;
}

#main-header:before {
    content: "";
    display: block;
    margin-top: 40%;
    transition: all 436ms ease-in;
}

#main-header-img {
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 436ms ease;
    transition-delay: 500ms;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

#main-header-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 436ms ease;
    transition-delay: 500ms;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(5px) brightness(0.5);
}

/*.small-main-header:before {*/
/*    content: "";*/
/*    display: block;*/
/*    margin-top: 30%;*/
/*}*/

/*.medium-main-header:before {*/
/*    content: "";*/
/*    display: block;*/
/*    margin-top: 40%;*/
/*}*/

/*.large-main-header:before {*/
/*    content: "";*/
/*    display: block;*/
/*    margin-top: 50%;*/
/*}*/


/*#main-title-inner {*/
/*    display: block;*/
/*    !*width: 100%;*!*/
/*    position: absolute;*/
/*    bottom: 50;*/
/*    left: 50;*/
/*}*/

/*#main-header-inner-pre-title {*/
/*    display: inline-block;*/
/*    padding: 10px 20px 0;*/
/*    background: rgba(0,0,0,0.75);*/
/*    color: #FFFFFF;*/
/*    font-size: 1.5em;*/
/*    font-weight: bold;*/
/*}*/

/*#main-header-inner-title {*/
/*    padding: 0 20px 10px;*/
/*    background: rgba(0,0,0,0.75);*/
/*    color: #FFFFFF;*/
/*    font-size: 2.5em;*/
/*    font-weight: bold;*/
/*}*/


@media all and (min-width: 62.5625em) {
    /* min-width is 1001px */
    /* LARGE */

    #main-title {
        display: block;
        /*width: 100%;*/
        position: absolute;
        bottom: 50;
        left: 50;
    }

}

@media all and (min-width: 40.6875em) and (max-width: 62.5em) {
    /* width is between 651px and 1000px */
    /* MEDIUM */

    #main-title {
        display: block;
        /*width: 100%;*/
        position: absolute;
        bottom: 30;
        left: 30;
    }

}

@media all and (max-width: 40.625em) {
    /* max-width is 650px */
    /* SMALL */

    #main-title {
        display: block;
        /*width: 100%;*/
        position: absolute;
        bottom: 30;
        left: 30;
    }

}


#main-header-pre-title {
    display: inline-block;
    padding: 10px 20px 0;
    background: rgba(0,0,0,0.75);
    color: #FFFFFF;
    font-size: 1.5em;
    font-weight: bold;
}

#main-header-title {
    padding: 0 20px 10px;
    background: rgba(0,0,0,0.75);
    color: #FFFFFF;
    font-size: 2.5em;
    font-weight: bold;
}

/*#main-title-outer {*/
/*    width: 100%;*/
/*    padding: 10px;*/
/*}*/

/*#main-header-outer-pre-title {*/
/*    display: inline-block;*/
/*    border-bottom: 2px solid #000000;*/
/*    font-size: 0.9em;*/
/*    font-weight: bold;*/
/*}*/

/*#main-header-outer-title {*/
/*    font-size: 1.5em;*/
/*    font-weight: bold;*/
/*}*/


.wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-top {
    height: 50px;
}
























.section-header {
    display: flex;
    position: relative;
}

.section-header + .margin {
    margin-top: 15px;
}

.spacer + .section-header {
    margin-top: 40px;
}

.text-header {
    border-bottom: 5px solid rgba(255,165,0,1);
}

.img-header {
    float: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 10px solid rgba(0,0,0,0.9);
    border-bottom: 5px solid rgba(0,0,0,0.9);
}

.section-header h1,
.section-header h2,
.section-header h3 {
    margin: 0;
    padding: 10px;
    background: rgba(255,165,0,1);
    color: #FFFFFF;
}

.img-header h1 {
    position: absolute;
}

@media all and (max-width: 46.875em) {
    /* max-width is 750px */

    .img-header:before {
        content: "";
        display: block;
        margin-top: 40%;
    }

    .img-header h1 {
        left: 0;
    }



}

@media all and (min-width: 46.9375em) {
    /* min-width is 751px */

    .img-header:before {
        content: "";
        display: block;
        margin-top: 40%;
    }

    .img-header h1 {
        left: 25px;
    }

}



.spacer {
    height: 3px;
    width: 90%;
    margin: 0 auto;
    background: rgba(255,195,0,0.8);
}

.spacer-margin {
    height: 3px;
    width: 90%;
    margin: 30px auto;
    background: rgba(255,195,0,0.8);
}

.text-links {
    white-space: nowrap;
}

.text-links i {
    color: #FFC300;
}

.sized-icon {
    width: 1.3em;
    text-align: center;
}

.external-link-icon {
    font-size: 0.75em !important;
    width: 30px;
    text-align: center;
}










.display-none {
    display: none;
}

.input-fadeout {
    width: 0px;
    overflow: hidden;
    opacity: 0;
}

.input-faded-out {
    width: 0px;
    overflow: hidden;
    opacity: 0;
}

.input-faded-in {
    width: 190px;
    opacity: 1;
}

.input-fadein {
    width: 190px;
    overflow: hidden;
    opacity: 1;
}

.label-faded-out {
    visibility: hidden;
}

.label-faded-in {
    visibility: visible;
}

.label-fadeout {
    visibility: hidden;
}

.label-fadein {
    visibility: visible;
}


/*.display-none {*/
    /*display: none;*/
/*}*/

/*.fadeout {*/
    /*height: 0 !important;*/
    /*margin-top: 0 !important;*/
    /*overflow: hidden;*/
    /*!*transition: 0.5s all ease-in;*!*/
/*}*/

/*.faded-out {*/
    /*height: 0 !important;*/
    /*margin-top: 0 !important;*/
    /*overflow: hidden;*/
/*}*/

/*.faded-in {*/
    /*overflow: hidden;*/
    /*height: auto !important;*/
/*}*/

/*.fadein {*/
    /*height: 88px !important;*/
    /*transition: 0.5s all ease-in;*/
    /*overflow: hidden;*/
/*}*/









/* PROCESS-REPLY ==================================================================================================== */

.container-process-reply {
    border-radius: 5px;
    display: block;
    padding: 10px;
    color: #FFFFFF;
    margin-top: 10px;
}

.container-process-reply-notes {
    margin-right: 80px;
}

.container-process-reply-mark {
    float: right;
    font-size: 60px;
}

.red-bg-border {
    background: #FFB2B2;
    border: 5px solid #FF0000;
}

.green-bg-border {
    background: #B2FFB2;
    border: 5px solid #00FF00;
}
















/********************************************************
 *
 *             Site-Navigation
 *
 ********************************************************/

.site-navigation {

}

.site-navigation ul {
    display: flex;
    list-style: none;
    line-height: 2em;
    font-size: 1.25em;
    text-align: center;
    text-transform: uppercase;
}

.site-navigation ul li {
    flex: 1;
}

.site-navigation ul li a {
    display: flex;
    background: #000000;
    color: #FFC300;
    justify-content: center;
    transition: all 436ms ease;
}

.site-navigation ul li a:hover {
    background: #FFC300;
    color: #000000;
}

.site-navigation ul li a.active {
    background: #FFC300;
    color: #000000;
    font-weight: bold;
}









/********************************************************
 *
 *             Container-Menu
 *
 ********************************************************/

/*#menu ul{*/
/*margin-top:100px;*/
/*padding:0;*/
/*}*/

/*#menu li{*/
/*color:rgba(255,255,255,1);*/
/*list-style: none;*/
/*height:50px;*/
/*width:195px;*/
/*border-right:5px solid transparent;*/
/*line-height:50px;*/
/*transition: 0.3s all ease-out;*/
/*font-size:14px;*/
/*display:table;*/
/*}*/
/*#menu li:hover{*/
/*color:rgba(255,255,255,1);*/
/*border-right:5px solid #ff7317;*/
/*transition: 0.2s all ease-in;*/
/*cursor:pointer;*/
/*background-color:rgba(0,0,0,0.15);*/
/*}*/

/*#menu li i{*/
/*width:50px;*/
/*font-size: 23px;*/
/*float:right;*/
/*padding-right:7px;*/
/*vertical-align:middle;*/
/*text-align: center;*/
/*line-height:50px;*/
/*display:table-cell;*/
/*transition: 0.2s all ease-in;*/
/*}*/

/*#menu li span{*/
/*display:none;*/
/*vertical-align: middle;*/
/*text-align:left;*/
/*}*/

.menu_btn {
    position:fixed;
    width:20px;
    height:20px;
    left:15px;
    bottom:0;
    right:0;
    z-index:2;
    text-decoration: none;
    font-size:20px;
    color:white;
    transition: 150ms all ease-in;
    display: inline-block;
    cursor: pointer;
}

.normal-btn {
    top:22px;
}

.small-btn {
    top:15px;
}

.bar1, .bar2, .bar3 {
    width: 20px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.4s;
    transition: 0.2s all ease-in;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
}

#sidebartoggler{
    display:none;
}

#sidebartoggler:checked + #page-wrap #menu {
    left: 0;
}

#sidebartoggler:checked + #page-wrap .menu_btn {
    left: 270px;
    transition: all 436ms ease;
}

#sidebartoggler:checked + #page-wrap .menu_btn .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 3px) ;
    transform: rotate(-45deg) translate(-9px, 3px) ;
}

#sidebartoggler:checked + #page-wrap .menu_btn .bar2 {
    opacity: 0 ;
}

#sidebartoggler:checked + #page-wrap .menu_btn .bar3 {
    -webkit-transform: rotate(45deg) translate(-5px, 0px) ;
    transform: rotate(45deg) translate(-5px, 0) ;
}

#sidebartoggler:checked + #page-wrap #content {
    margin: 15px 15px 15px 265px;
    /*transition: 0.2s all ease-in;*/
}

#sidebartoggler:checked + #page-wrap #menu {
    left: 0;
    opacity: 1;
}

#sidebartoggler:checked + #page-wrap #menu span{
    display:table-cell;
    text-align:left;
    width:120px;
}

#sidebartoggler:checked + #page-wrap #menu li i{
    vertical-align:middle;
    display:table-cell;
    float:left;
    padding-left:10px;
    transition: 0.2s all ease-in;
}

#sidebartoggler:checked + #page-wrap #mobile-menu-main {
    width: 300px;
}

#sidebartoggler:checked + #page-wrap #mobile-menu-main li {
    opacity: 1;
    transition: all 436ms ease 200ms;
}







.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-sidebar-links div {
    display: flex;
    justify-content: center;
}

.post-sidebar-links div i {
    font-size: 2.5em;
    transition: all ease-in 0.2s;
}
.post-sidebar-links div i:hover {
    transform: scale3d(1.05,1.05,1.05);
}

.spotify {
    color: #18d860;
}

.apple-music {
    color: #fa445c;
}

.youtube {
    color: #f60000;
}

.list-key {
    padding-right: 0.5em;
    font-weight: bold;
}

.list-value {
    padding-left: 0.5em;
}

.flex-center {
    justify-content: center;
}



#fixed-title {
    /*display: none;*/
    position: fixed;
    top: 50px;
    width: 100%;
    background: rgba(255,165,0,0.9);
    z-index: 2;
    transition: all 500ms ease;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.fixed-title-slide-full {
    opacity: 1;
}

.fixed-title-slide-zero {
    opacity: 0;
}

#fixed-title .main-title {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
}

#fixed-title .main-header-pre-title {
    display: inline-block;
    color: #FFFFFF;
    font-size: 1.25em;
    font-weight: bold;
    border-bottom: 2px solid #FFFFFF;
}

#fixed-title .main-header-title {
    color: #FFFFFF;
    font-size: 1.75em;
    font-weight: bold;
}



@media all and (min-width: 62.5625em) {
    /* min-width is 1001px */
    /* LARGE */

    #floating-title .main-title {
        display: block;
        max-width: 1100px;
        /*width: 100%;*/
        position: absolute;
        bottom: 50;
        left: 50;
    }

    #floating-title .main-header-pre-title {
        display: inline-block;
        padding: 10px 20px 0;
        background: rgba(0,0,0,0.75);
        color: #FFFFFF;
        font-size: 1.5em;
        font-weight: bold;
    }

    #floating-title .main-header-title {
        padding: 0 20px 10px;
        background: rgba(0,0,0,0.75);
        color: #FFFFFF;
        font-size: 2.5em;
        font-weight: bold;
    }

}

@media all and (max-width: 62.5em) {
    /* max-width is 1000px */
    /* SMALL and MEDIUM */

    #floating-title {
        background: white;
    }

    #floating-title .main-title {
        display: block;
        max-width: 1100px;
        /*width: 100%;*/
    }

    .main-title {
        padding: 10px 15px;
    }

    #floating-title .main-header-pre-title {
        display: inline-block;
        padding: 10px 20px 0;
        font-size: 1.5em;
        font-weight: bold;
    }

    #floating-title .main-header-title {
        padding: 0 20px 10px;
        font-size: 2.5em;
        font-weight: bold;
    }

    #fixed-title {
        display: none;
    }


}

#floating-title {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}



#main-header-small {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


#main-header-small-pre-title {
    display: inline-block;
    padding: 10px 20px 0;
    font-size: 1.25em;
    font-weight: bold;
    border-bottom: 2px solid #FFFFFF;
}

#main-header-small-title {
    padding: 0 20px 10px;
    font-size: 2.5em;
    font-weight: bold;
}

#header-spacer {
    height: 50px;
    width: 100%;
}


#overlay-background {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    display: none;
}

.overlay-active {
    filter: blur(5px) brightness(0.5);
}