/* Elements: GLOBAL *********************************************************************************/
/****************************************************************************************************/

body {
  height: 100%;
  background: #323232;
  margin: 0;
  padding: 0;
  font-family: Roboto, Trebuchet MS, Sans-Serif;
  font-size: 18px;
  color: #444;
}

p { text-align: justify; }

.placeholder_top    { height: 512px; }

li { text-align: left; }

hr { margin: 16px; padding: 0; height: 1px; border: 0; background: rgba(255,255,255,0.5); }


/* Elements: LINKS **********************************************************************************/
/****************************************************************************************************/

a:link, a:visited { color: #711; text-decoration: none; }
a:hover, a:active { color: #b50; }


/* Elements: HEADLINES ******************************************************************************/
/****************************************************************************************************/

h1, h2, h3, h4, h5 { font-family: Roboto Condensed; font-weight: normal; margin: 0px; text-transform: uppercase; }

h1 { font-size: 48px; color: #fff; text-align: center; padding: 16px; text-shadow: 0px 1px 2px rgba(0,0,0,0.5); }
h2 { font-size: 28px; color: #711; text-align: left }
h3 { font-size: 24px; color: #711; text-align: left; }
h4 { font-size: 20px; color: #666; text-align: left; }
h5 { font-size: 20px; color: #444; font-family: text-align: center; }
h5 i { color: #711; margin-bottom: 16px; }

.headline {
  background: rgba(50,0,0,0.75); padding: 128px 0px 64px 0px; 
  font-family: Roboto Condensed; font-size: 48px; color: #fff; text-transform: uppercase; text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
}


/* Elements: LOGO ***********************************************************************************/
/****************************************************************************************************/

@keyframes fromRight { 0% { transform: translateX(100%); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }

#logo { position: fixed; z-index: -50; top: 181px; left: 64px; opacity: 1; animation: 1s ease-out 0s 1 fromRight; transition: 1s; }
#logo.pinned { transform: translateX(100%); opacity: 0; }

/* Elements: NAVIGATION *****************************************************************************/
/****************************************************************************************************/

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  font-family: Roboto Slab;
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  transition: all 500ms;
}

#navbar a               { color: #ddd; font-size: 24px; text-align: center; text-shadow: 0px 1px 2px rgba(0,0,0,0.5); padding: 24px; transition: all 500ms; } 
#navbar a:hover         { color: #fff; box-shadow: inset 0px 80px 0px rgba(255,255,255,0.5); }
#navbar a.current       { border-top: 4px solid #fff; }
#navbar.pinned          { background: rgba(0,0,0,0.9); }
#navbar.pinned a        { color: #bbb; font-size: 16px; padding: 16px; }
#navbar.pinned a:hover  { color: #fff; }


/* Elements: SLIDESHOW ******************************************************************************/
/****************************************************************************************************/

#slideshow { position: fixed; top: 0; left: 0; z-index: -100; width: 100%; height: 100%; }

#slideshow > div { position: absolute; z-index: -200; top: 0; left: 0; right: 0; bottom: 0; 
  background-position: center center; background-repeat: no-repeat; background-size: cover; }

slidefade {
  position: absolute;
  z-index: -50;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(50,50,50,1) 0%, rgba(50,50,50,0) 50%);
}


/* Elements: WRAPPER ********************************************************************************/
/****************************************************************************************************/

.wrapper { background: #333 url('../img/lines02.png'); padding: 32px 0px; box-shadow: 0px 8px 64px rgba(0,0,0,0.5); }
.frame   { background: #666 url('../img/lines03.png'); width: calc(1280px - 16px); box-shadow: 0px 8px 64px rgba(0,0,0,0.25); }

.wrapper_end { width: calc(1280px - 16px); font-size: 32px; text-align: right; margin: 32px 32px 0px 0px; }

.wrapper_end a { color: #bbb; } .wrapper_end a:hover { color: #b50; }


/* Elements: GRID ***********************************************************************************/
/****************************************************************************************************/

.grid {
  display: grid;
  grid-template-columns: calc(100% / 4 - 24px) calc(100% / 4 - 24px) calc(100% / 4 - 24px) calc(100% / 4 - 24px);
  grid-gap: 32px;
  padding: 32px;
}

.grid > div { background: #bbb; padding: 32px; box-shadow: 0px 8px 32px rgba(0,0,0,0.25); }

.grid_box    {  }
.grid_panel  { grid-column: 1 / span 4; }
.grid_left   { grid-column: 1 / span 2; }
.grid_right  { grid-column: 3 / span 2; }
.grid_board  { grid-column: 1 / span 2; }


/* Elements: ACCORDION ******************************************************************************/
/****************************************************************************************************/

.acc       { background: #711; color: #fff; text-align: left; margin-bottom: 8px; padding: 16px; cursor: pointer; transition: box-shadow 250ms; }
.acc:hover { box-shadow: inset 0 -64px 0 0 #b50; }
.acc.atv   { background: #511; color: #fff; margin-bottom: 0; }

.acp         { background: rgba(0,0,0,0.10); border: 1px solid #888; margin-bottom: 8px; padding: 16px; overflow: hidden; display: none; }
.acp p       {  }
.acp small   {  }
.acp li      {  }
.acc::before { font-family: FontAwesome; content: "\f107"; display: inline-block; width: 16px; margin-right: 8px; }
.atv::before { font-family: FontAwesome; content: "\f106"; display: inline-block; width: 16px; margin-right: 8px; }


/* Elements: HIDE ***********************************************************************************/
/****************************************************************************************************/

#navopn, #mask { display: none; }







