body {
        font-family: Arial, sans-serif;
        background-color: #efefef;
        font-size: 1em;
		color: #3C3C3B;
		margin: 0;
		padding: 0px;
		width: 100vw;
		overflow-x: hidden;
    }

    .snap-wrapper {
        width: 100%;
        height: 90vh;
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
        /*scroll-snap-type: y proximity;*/
		/* overflow-x: hidden; */
		}
		
    .snap-box {
        /*width: 95%;*/
        min-height: 90vh;
        display: flex;
        flex-wrap: wrap;
        /*justify-content: center;
        align-items: center;*/
        /* margin: 0 0 5px 0; */
        scroll-snap-align: center;
        overflow-x: hidden;
    }

    header {
		position: fixed;
		/* position: absolute; */
		left: 0;
		top: 5vh;
		/* width: 50px; */
		/* height: 95vh; */
		background: #efefef;
		border-radius: 0 25px 25px 0;
		box-shadow: -5px -5px 10px #fff, 5px 5px 10px #bdc3c7;
		z-index: 999;
	}

    footer {
		width: 100%;
		height: auto;
		display: flex;
		flex-flow: row wrap;
		justify-content: space around;
	}
	
	#footer {
		width: 100%;
		height: auto;
		padding-top: 35px;
		padding-bottom: 35px;
		background: #3C3C3B;
		font-family: 'Lato', sans-serif;
		font-weight: 300;
		font-size: 16px;
		text-transform: uppercase;
		text-align: center;
		color: #FFF;
	}
	
	#footer a:hover {
		color: #E6245E;
	}
	
	#footer .links{
		margin-left: 20px;
		margin-right: 20px;
		text-decoration: none; 
		text-transform: uppercase;
		color: #FFF;
	}

/* Navigation */
	#nav {
		margin-top: 10px;
	}

	#nav ul {
		list-style: none;
		padding-left: 0px;
	}

	#nav ul li {
		display: flex;
		white-space: nowrap;
		line-height: 60px;
	}

	#nav a {
		/* width: 220px; */ 
		padding-left: 5px;
		color: #3c3c3b;
		text-decoration: none;
		text-transform: uppercase;
	}

	#nav a img {
		vertical-align: middle;
	}

	#nav a:hover {
		color: #E6245E;
	}

	#nav a:hover > span {
		visibility: visible;
		margin-left: 20px;
		padding: 5px 8px;
		background: #efefef;
		border-radius: 10px;
		box-shadow: -5px -5px 10px #fff, 5px 5px 10px #bdc3c7;
		transition: 400ms ease;
	}

	#nav button:hover > div {
		visibility: visible;
		margin-left: 20px;
		padding: 5px 8px;
		border-radius: 10px;
		box-shadow: -5px -5px 10px #fff, 5px 5px 10px #bdc3c7;
		transition: 400ms ease;
	}

	#nav .Icon {
		height: 30px;
		padding-left: 5px;
	}

	#nav .Logo {
		height: 50px;
		position: absolute;
		top: 10px;
		left: 150px;
	}

	.shadow {	
		border-radius: 10px;
		box-shadow: -5px -5px 10px #fff, 5px 5px 10px #bdc3c7;
	}

	.shadow-inset {	
		border-radius: 10px;
		box-shadow: -5px -5px 10px #fff inset, 5px 5px 10px #bdc3c7 inset;
	}

	.gross {
		width: 220px;
		transition: 400ms ease;
	}

	.klein {
		width: 50px;
		transition: 400ms ease;
	}

	.sichtbar {
		visibility: visible;
		transition-delay: 170ms;
		transition-duration: 400ms;
		white-space: nowrap;
		margin-left: 10px;
	}

	.unsichtbar {
		visibility: hidden;
		white-space: nowrap;
	}

	.sicht {
		width: 220px;
	}

	.uni {
		width: 30px;
	}

	.sicht:hover {
		transition: 200ms ease;
		box-shadow: -5px -5px 10px #fff inset, 5px 5px 10px #bdc3c7 inset;
	}

/* Startseite */

    #Intro {
		position: relative;
		width: 100%;
		height: 100%;
	}

	#Intro #Title {
		/*position: absolute;
		top: 10vh;
		left: 17vw;*/
		margin-top: 10vh;
		margin-left: 17vw;
		font-size: 50px;
	}

	#Intro #Logo {
		position: absolute;
		top: 1vh;
		right: 3vw;
	}

    #Intro #Logo img {
        height: 70px;
    }

	#Intro #Foto {
		/*position: absolute;
		top: 25vh;
		right: 22vw;*/
		margin-top: 2vh;
		margin-left: 22vw;
		border-radius: 15px;
	}

    #Intro #Foto img {
        height: 300px;
		border-radius: 25px;
		box-shadow: -5px -5px 10px #fff, 5px 5px 10px #3C3C3B /*#bdc3c7;*/
		
    }

    #Intro #Übermich {
		/*position: absolute;
		top: 60vh;
		left: 12vw;*/
		margin-top: 2vh;
		margin-left: 12vw;
    }

	#Intro #Übermich div {
        width: 80vw;
        padding-bottom: 20px;
    }

/* First Page */

    #RK {
        position: relative;
		width: 100%;
		height: 100%;
    }

	#RK #Referenzen {
		position: absolute;
		top: 10vh;		
        left: 60px;
		line-height: 25px;
	}

/* Kontaktformular */

    .container {
        background-color: #efefef;
        padding: 30px;
        margin-left: 10vw;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 70vw;
        height: 83vh;
    }
    .container h2 {
        text-align: center;
        color: #333;
        margin-bottom: 20px;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .container label {
        display: block;
        margin-bottom: 5px;
        color: #555;
    }
    .container input[type="text"],
    .container input[type="email"],
    .container textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
        font-size: 16px;
    }
    .container textarea {
        resize: vertical;
        min-height: 100px;
    }
    .error {
        color: #d9534f;
        margin-bottom: 10px;
        list-style-type: none;
        padding: 0;
    }
    .success {
        color: #5cb85c;
        text-align: center;
        margin-bottom: 10px;
    }
    .container button {
        background-color: #007bff;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 18px;
        width: 100%;
    }
    .container button:hover {
        background-color: #0056b3;
    }

/* Impressum */

    #Impressum {
        font-family: Arial, sans-serif;
        background-color: #efefef;
        font-size: 1em;
		color: #3C3C3B;
        margin-left: 150px;
        height: 87vh;
    }

@media all and (min-width:800px) {
    

	#Intro #Title {
		position: absolute;
		top: 0vh;
		left: 20vw;
		font-size: 50px;
	}

    #Intro #Logo {
		position: absolute;
		top: 25vh;
		right: 55vw;
	}

    #Intro #Logo img {
        height: 250px;
    }


	#Intro #Foto {
		position: absolute;
		top: 25vh;
		right: 20vw;
		border-radius: 15px;
	}

    #Intro #Foto img {
        height: 500px;
		border-radius: 25px;
		box-shadow: -5px -5px 10px #fff, 5px 5px 10px #3C3C3B /*#bdc3c7;*/
		
    }

    #Intro #Übermich {
		position: absolute;
		top: 57vh;
		left: 0vw;
    }

    #Intro #Übermich div {
        width: 40vw;
    }

    .container {
        margin-left: 35vw;
        max-width: 30vw;
    }

	#RK #Referenzen {
		left: 40vw;
	}
}