/*RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:none;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}

* {
  box-sizing: border-box;
}

/*-----------------------*/
/* Structure */

body {
    font-size: 1em;
    font-family: 'Jura', sans-serif;
    background-color: #111;
    overflow: scroll;
}

header {
	position:absolute;
	width: 100%;
    height: 250px; /*30%;*/
	top: 0;
	left: 0;
	z-index: 100;
}

.invisibleHeaderSpacer {
    display: block;
    height: 250px;
}


nav {
    display:block;
    position: absolute;
    top: 75%;
    width:100%;
    
    text-align: center;   
    line-height: 80%;
}

howtonav {
    display: block;
    
    width: 100%;
    height: 30px;
    text-align: center;
    line-height: 50%;
}


section {
    display:block;
    width: 100%;	
    /* height gets stretched from content*/
    padding-bottom: 40px;
    
    background-color:black;
    
}

/*nav content (rows) */
mobilenav {
    display:none;
    width: 100%;
    background-color: #000;
    text-align:center;
}



content {
    display: block;
    margin-left: 20%;
    width: 60%;
    min-height: auto;
    border-bottom: 1px solid #555;
    /* height gets stretched from realcontent*/

    background-color: #111;
}


realcontent {
    display: block;

    /* height gets stretched from THE content*/
    overflow:hidden;
    border-top: 1px solid #555;
    background-color: none;
}



.featureHighlightsRow {
    padding: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 40px;
    width: 70%;
    justify-content: center;
    align-content: center;
}

.featureHighlight {
    padding: 10px;
    display: table;
    background-color: #222;
    border-radius: 15px;
    min-height: 100px;
    text-align: center;
    align-items: center;
}

.featureHighlight p {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        padding-bottom: 5px;
}


.socialHighlightsRow {
    padding: 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 120px;
    width: auto;
    justify-content: center;
    align-content: center;
}

.socialHighlight {
    display: table-cell;
    background-color: none;
    text-align: center;
    align-items: center;
}


/* ----- Roadmap / Timeline ----- */
.timelineContainer {
    width: 100%;
    padding: 50px 0px;
    /*margin: 50px auto;*/
    margin: 40px 0px 40px 20px;
    position: relative;
    overflow: hidden;
}


    .timelineContainer:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -1px;
        width: 2px;
        height: 100%;
        background: #CCD1D9;
        z-index: 1
    }


.timeline-block {
    width: -webkit-calc(50% + 8px);
    width: -moz-calc(50% + 8px);
    width: calc(50% + 8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    clear: both;
}

.timeline-block-right {
    float: right;
}

.timeline-block-left {
    float: left;
    direction: rtl
}

.marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #F5F7FA;
    background: #000;
    margin-top: 10px;
    z-index: 9999
}

.timeline-content {
    width: 95%;
    padding: 0 15px;
    color: #666
}

    .timeline-content h3 {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 25px;
        font-weight: 500
    }

    .timeline-content span {
        font-size: 15px;
        color: #a4a4a4;
    }

    .timeline-content p {
        font-size: 1em;
        line-height: 1.5em;
        word-spacing: 1px;
        color: #fff;
    }



@media screen and (max-width: 768px) {
    
    .timelineContainer:before {
        left: 8px;
        width: 2px;
    }

    .timeline-block {
        width: 100%;
        margin-bottom: 30px;
    }

    .timeline-block-right {
        float: none;
    }

    .timeline-block-left {
        float: none;
        direction: ltr;
    }
}





/* ---- youtube iframes -----*/

.ytVideoRow {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
    width: 100%;

    justify-content: center;
    align-content: center;
}


.ytVideoWrapperRelative {
    position: relative;
    overflow: hidden;
    padding-top: 50%;
    margin: 0px;
}

.ytVideoWrapped {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #555;
}

 


.footer {
    display: flex;
    justify-content: center;
    align-items: center;
}


footerWrapper {
    margin-top: 40px;
    padding: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 40px;
    width: auto;
    justify-content: center;
    align-content: center;

    background-color: none;
}

footercontent {
    padding: 0px;
    margin: 0px;
    background-color: none;
    height: auto;
    min-width: 200px;

}

footercontent img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
}
 
 
 


/*------------------------*/
/*--- Text formats*/

a {
  color: #fff;
  /*text-decoration:none;*/
 }

/* "Menu" & Menu-Icon */
#menu-title {
    padding-top: 20px;
	display: none;
	text-decoration: none;
	font-weight: bold;
    font-size: 1.5em;
}

myneon p {
       text-align:center;
 }
 
myneon p a {
    color: #999;
	text-decoration: none;
	font-weight: bold;
    font-size: 1.5em;
    /*font-family: 'Jura', sans-serif;*/ 
}

myneon a:hover {
  text-shadow: 0 0 3px #fff, /*0 0 8px #fff, */0 0 16px #228DFF, 0 0 20px #228DFF; /*, 0 0 23px #228DFF;*/
}

myneon p a:hover {
  color: #ffffff;
}


nav li {
	display: inline-block;
	padding: 10px
}

.current {

    color: #fff;  
    text-shadow: 0 0 3px #fff, /*0 0 8px #fff, */0 0 16px #FF1177, 0 0 20px #FF1177; /*, 0 0 23px #FF1177;*/  
}


mobilenav p {
    padding: 10px;
    /*border-bottom: 1px solid #555;*/
    border-top: 1px solid #555;
}


mobilenav p a {
    color: #999;
	font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
    /*font-family: 'Jura', sans-serif;*/ 
}

mobilenav a:hover {
    color: #fff;
    text-shadow: 0 0 3px #fff, 0 0 8px #fff, 0 0 16px #228DFF, 0 0 20px #228DFF; /*, 0 0 23px #228DFF;*/
}

.mobilecurrent {
    color: #fff;
    /*text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FF1177, 0 0 35px #FF1177, 0 0 40px #FF1177, 0 0 50px #FF1177, 0 0 75px #FF1177;*/
    text-shadow: 0 0 3px #fff, 0 0 8px #fff, 0 0 16px #FF1177, 0 0 20px #FF1177; /*, 0 0 23px #FF1177;*/  
   
}


.highlight_blue {
    color: #fff;
    text-shadow: 0 0 3px #fff, 0 0 8px #fff, 0 0 16px #0d53c0, 0 0 20px #0d53c0; /*, 0 0 23px #228DFF;*/
}




realcontent h1 {
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em;
}

realcontent p {
    /*margin-left: 20px;*/
    color: #fff; 
    text-decoration: none;
    font-size: 1.1em;
    font-family: 'Jura', sans-serif; 
    line-height: 125%;
}

realcontent p ul {
    display:list-item;
    
}


howtonav li {
    padding:10px;
	display: inline-block;
	/*padding: 10px*/
}


howtonav p {
    font-size: small;
}

.howtocurrent {
    color: #fff;
    text-shadow: 0 0 3px #fff, /*0 0 8px #fff, */0 0 16px #0fff4b;/*, 0 0 20px #0fff4b; /*, 0 0 23px #0fff4b;*/  
   
}

/* outer box */
.howto ol {
  list-style-type: decimal;
  background: none;
}

/* outer box */
.howto ul {
  list-style-type: disc;
  background: none;
}


/* list-box */
.howto li {
  color: #fff;
  background: none;
  padding: 5px;
  margin-left: 35px;
}

download p a {
    color: #fff;
    text-decoration: none;
    /*font-family: 'Jura', sans-serif;*/ 
}

footercontent p a {
    color: #fff;
    text-decoration: none;
    font-family: 'Jura', sans-serif;
    font-size: 1em;
    line-height: 150%;
}



 

/*---------------------------------
/* other Format */


#logo{

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width:90%;
    max-width: 355px;
}

nav img {
    display:block;
    width:30px; 
    height:auto; 
    float:right;
    transform: translate(5px, -7px);
    /*background-color:green;*/
}

.howto img {
    float:right;
    width: 50%;
    max-width: 600px;
    height:auto;
    margin:20px;
}




 /*--------------------------
 /*   Picture viewer
 
 /* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1200px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #555;
        text-decoration: none;
        cursor: pointer;
    }
 






/*-------------------------------------
/*    Gallery */

.gallery {
  color: #fff;
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
}

.gallery:hover {
  border: 1px solid #777;
}

.gallery img {
  width: auto;
  height: 200px;
}

.desc {
  padding: 15px;
  text-align: center;
}
























/*--------------------------------------------*/
/*---- Effects */


.starfield{ 
    position:absolute;
    /*z-index:-1;*/
    vertical-align:middle;
    width:100%;
    height:100%;
}



/*MEDIA QUERY*/

@media only screen and (max-width : 1340px) {
    nav {
        top: 60%;
    }

    /*
    #logo{    
        top: 40%;
    }*/
    
    content {
        margin-left: 7.5%;
        width: 85%;
    }
    
    .mygallery {
        min-height:700px;
    }
    
}

@media only screen and (max-width : 1024px) {
    nav {
        top: 60%;
    }

    /*
    #logo {
        top: 40%;  
    }*/
    
    content {
        margin-left: 5%;
        width: 90%;
    }
    
    .mygallery {
        min-height:1000px;
    }


    .ytVideoRow {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media only screen and (min-width : 540px) {
    mobilenav {
        display:none;
    }

}

@media only screen and (max-width : 540px) {

	header {
           height:130px;
	}

    .invisibleHeaderSpacer {
        height: 130px;
    }

    #menu-title {
        transform: translate(0%, -50%);
        display: inline-block;
    }

    #logo img {
        max-width: 50%;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -100%);
    }
       
    nav {
        top: 70%; 
    }


    mobilenav {
        border-bottom: 1px solid #555*;
    }

    
    .howto li {
        margin-left: 15px;
    }

    .howto img {
        margin: 0;
        width: 100%;
        padding: 10px;
    }

       
    section {
        top: 30%;  
    }
    
    content {
        margin-left: 5%;
        width: 90%;
    }
    
    realcontent {
        display:block;
        padding: 0px;
     }

        realcontent h1 {
            padding-top: 10px;
            padding-bottom: 10px;
            font-size: 1.2em;
        }
    
    realcontent p {
        margin-left: 0px;
    }

    .featureHighlightsRow {
        grid-template-columns: repeat(1, 1fr);
    }

    .socialHighlightsRow {
        grid-template-columns: repeat(1, 1fr);
        padding: 20px;
        gap: 20px;
        background-color: none;
    }

    .socialHighlight {
        background-color: none;
        padding: 20px;
    }


    .ytVideoRow {
        grid-template-columns: repeat(1, 1fr);
    }


    div.gallery img {
        width: 300px;
        height: auto;
    }

    div.desc {
        width: 300px;
        padding: 15px;
        text-align: center;
    }


    footerWrapper {
        grid-template-columns: repeat(1, 1fr);
        padding-bottom: 50px;
    }



    /* versteckt das Menü des "großen" Schirms,  */
    nav ul, nav:active ul {
        display: none;
    }
    
    /* current menu-object */
    .current {
        color: #fff;
    }    
    
}

/*
@media only screen and (max-width : 400px) {
       #logo img{
            max-width: 50%;
            height: auto;
       }
       
       

}

    */