/**
 * Typography & Text styles
 */

/* html is set to 62.5% so that all the REM measurements are based on 10px sizing. So basically 1.5rem = 15px */
html {
  font-size: 62.5%;
}

.raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

body {
  font-size: 1.5em;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFFFFF;
}

/**
 * Links
 */
a {
  font-weight: normal;
  text-decoration: none; 
  color:#EF6D3D;
}
a:focus {
  outline: thin dotted;
}

small {
  font-size: 75%;
}

/**
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  text-rendering: optimizeLegibility; /*  voodoo to enable ligatures and kerning | https://developer.mozilla.org/en-US/docs/CSS/text-rendering */
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
}
h1 { font-size: 6.0rem; line-height: 1.25; letter-spacing: -.1rem; }
h2 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h3 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h4 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h5 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }
h6 { font-size: 1.4rem; line-height: 1.6;  letter-spacing: 0; }

/**
 * Paragraphs
 */
/* bottom margin for paragraphs */
/*
p {
  margin: 0 auto 1.5em auto; 
}
p + p {

}
*/

/**
 * Quotes & Blockquotes
 */
q {
  quotes: '\00201C' '\00201D';
}
q:before {
  content: open-quote;
}
q:after {
  content: close-quote;
}

blockquote {
  /*background-color: #F8F8F8;*/
  border-left: 2px solid #AFC0D2;
  margin: 1.6em 10%;
  padding: .75em 1em;
  font-size:1.8rem;
}
blockquote p:last-child {
  margin-bottom: 0;
}

/**
 * Layout styles
 */

/* Full size background image */
html, #container, .inner { 
  background-color:transparent;
  display: flex;
  flex-flow: column;
  height: 100%;
}
html {
  /*background:url(bgs/bg_net_dark.jpg) center center no-repeat fixed;*/
  background:rgba(1,1,1,0.9);
  background-size:cover;
}
body {
  height: 100%;
  padding-top:4rem;
  /*margin:25px auto;*/
}
header, #content{
  /*background: rgba(0,0,0,0);*/
  color:#FFFFFF;
  margin-bottom: 1%;
}

footer {
  /*background: rgba(0,0,0,.7);*/
  position:absolute;
  bottom:0;
  width:99%;
  left:1%;
}

iframe {
  max-width:100%;
}

header.centered {
  text-align: center;
}

/*
ul li.linkeding_logo_list_element {
  list-style-image: url('logos/linkedin.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px 16px;
  padding-left: 24px;
}
*/

/* Menu Links */
.main-menu {
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  /*background-color: #000000aa;*/
}
ul.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  height: 5%;
}

.big_logo_image {
  position:center;
  margin:auto;
  max-width: 320px;
}

ul.main-menu li a {
  margin-right:20px;
  font-size:2.4rem;
  border-bottom: solid transparent 3px;
  color:#cfd2da;
}
ul.main-menu li a:hover {
  color:#FFFFFF;
}
ul.main-menu li a.active {
  color:#FFFFFF;
  border-bottom-color:#EF6D3D;
}

/* Utility classes */
.hide {
  display:none;
}
.show {
  display:block;
}
