@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap" rel="stylesheet'); /* zum Benutzen von Google-Fonts. Zahlen stehen für verschiedene Schriftstile*/


/* Responsive: 320px bis 1920px !!! */

/* Breakpoint (klein): Alles unter 720px (Mobile) */

@media only screen and (min-width : 320px) and (max-width : 720px){

body {
    margin: 0;
    padding: 0;
	scroll-behavior: smooth; /* Beim Klick auf Navigationslink wird zur Sprungmarke "sanft gescrollt" und nicht gesprungen; funktioniert so nur in Firefox */
}


.header {
  /* Oberer weißer Kasten */
  background-color: #FFFFFF;
	box-shadow: -2px 13px 13px rgba(0, 0, 0, 0.2);
	position: fixed;
	height: 65px;
	width: 100%;
	top: 0;
	left: 0;
}

/* Gestaltung der Links (Festival, Veranstalter, Kontakt, Impressum) */

.nav {
display: none;
}	
	
/* Hamburger Menu */
	
  a
{
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 15px;
	line-height: 30px;
	color: #3d4648;
  text-decoration: none;
  
  transition: color 0.3s ease; /* Einblendung bei Breakpointübergang */
}

a:hover
{
  color: #e84e1d;
}

#menuToggle
{
  display: block;
  position: fixed;
  top: 20px;
  right: 60px;
  
  z-index: 1;
  
  -webkit-user-select: none; /* text kann nicht markiert werden für safari*/
  user-select: none; /* text kann nicht markiert werden für firefox*/
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0;
  z-index: 2;
  
  -webkit-touch-callout: none; /* text kann nicht markiert werden für Handy aber überflüssig da kein Touchbedienung */
}

/*
 * Gestaltung der drei Striche
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #3d4648;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
} /* Cubic-Bezier stellt den Übergangseffekt zwischen 3 & 2 Strichen dar. Es können variable Geschwindigkeiten eingestellt werden. */

	
	
#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* Beim Klick sollen sich die Striche drehen und zu zwei werden */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #3d4648;
}

/*
 * Der mittlere der drei Strichen wird versteckt
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Hiermit dreht sich der untere Strich genau andersherum als der obere
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/* Absolute Position des herausfahrenden Menus am oberen rechten Rand des Bildschirms */
#menu
{
  position: absolute;
  width: 250px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* Damit der Text in manchen Browsern nicht "flickert" */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 16px;
}

/*
 * Herausfahren des Menus von rechts
 */
#menuToggle input:checked ~ ul
{
  transform: scale(1.0, 1.0);
  opacity: 1;
}
	


/* Entusiastas del Tango Logo PLatzierung im Header */
.logo {
	margin-top: 22px;
    margin-left: 50px;
	position: fixed;
	display:none;
}
	
#Entusiastas { width: 220px; height: auto }
	
	
	.logo-small {
	margin-top: 12px;
    margin-left: 50px;
	position: fixed;
}
	
#Entusiastas-small { width: 65px; height: auto }
	

/* Orangenes Bild mit Tupfen */
.test {
	width: 100%;
	height: auto;
}

.test-1 {
	width: 100%;
	height: 740px;
}
	
.hintergrund-orange {
    position: absolute;
    top: 10px;
    height: auto;
	width: 100%;
    z-index: -1;
}



/* Startbereich im orangenen Bild mit Überschrift, Text, Logo und Pfeil*/
	
h1 {
margin-top: 25%;
	margin-right: 15px;
	margin-left: 15px;
font-family: 'Playfair Display', serif;
 font-weight:900;
 font-size: 60px;
	color: #FFFFFF;
	padding: 17px;
}

h3 {
	margin-top: -1%;
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 20px;
	line-height: 35px;
	color: #FFFFFF;
	padding: 17px;
	margin-right: 15px;
	margin-left: 15px;
}
	
	
.logo-bailando {
	margin-top: -5px;
	text-align: center;}
	
img.center {  /* Damit Bild mittig ist*/
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll Pfeil*/
.arrow {
	margin-top: 90px;
	text-align: center;}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

	
/* Festival Teil mit Logo und Text */
	
	
.white-container {
	background-color: #FFFFFF;
	height: 60px;
	width: 100%;
}

	
.logo-2 {
	text-align: center;
margin-top: 180px;
}
	
	
#Entusiastas-2 { width: 250px; height: auto }
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


h2 {
	margin-top: 60px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 25px;
	color: #3d4648;
	margin-left: 15px;
	margin-right: 15px;
}

p {
	margin-top: 40px;
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 15px;
	line-height: 30px;
	color: #3d4648;
	margin-left: 18px;
	margin-right: 15px;
}

.strich {
	text-align: center;
margin-top: 23px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
	
	
/* Bai - Lan - Do */	

.h2-links {
	padding-top: 50px;
		margin: 0;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 20px;
	color: #3d4648;
}

.h2-links-2 {
	padding-top: 50px;
	margin: 0;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 20px;
	color: #3d4648;
}

.h2-links-3 {
	padding-top: 50px;
		margin: 0;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 20px;
	color: #3d4648;
}

.p-links {
	margin-top: 21px;
	padding-left: 18px;
	padding-right: 18px;
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 15px;
	line-height: 28px;
	color: #3d4648;
}

.bai {
	background-image: url("Bilder/bai.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 340px;
}

/* Bild & Text Blöcke die hier untereinander angeordnet sind */	
.bild-1 {
	background-image: url("Bilder/bild-1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 340px;
}	

.number-26 {
	background-image: url("Bilder/Tango-2-small.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 340px;
	display: none;
}

.lan {
	background-image: url("Bilder/lan.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 340px;
}	

.do {
	background-image: url("Bilder/do.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 340px;
}

.bild-2-mobil {
	background-image:url("Bilder/Tango-3-large.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 340px;
}


.white-container-2 {
	background-color: #FFFFFF;
	height: 60px;
	width: 100%;
}

	/* Veranstalter */

.h2-veranstalter {
font-family: 'Playfair Display', serif;
	padding-top: 20px;
	float: center;
  font-weight:800;
  font-size: 25px;
	color: #3d4648;
}

.p-veranstalter {
font-family: 'Playfair Display', serif;
	margin-top: 60px;
  font-weight:500;
  font-size: 17px;
	padding-left: 50px;
	padding-right: 50px;
	line-height: 30px;
	color: #3d4648;
}

/* Gestaltung der Links im Text */
.p-veranstalter a:link{
	font-family: 'Playfair Display', serif;
	margin-top: 40px;
  font-weight:500;
  font-size: 17px;
	line-height: 30px;
	text-decoration: none;
  color: #f59f11;
}

.p-veranstalter a:visited {
  text-decoration: none;
	color: #f59f11;
}

.p-veranstalter a:hover {
  text-decoration: none;
	color: #e84e1d;
}

.p-veranstalter a:active {
  text-decoration: none;
	color: #f59f11;
}

/* Großes Logo wird hier ausgeblendet */
.logo-bailando-farbe {
	text-align: center;
margin-top: 10px;
	display:none;
}
	/* Kleinere Version des Logos für Mobil */
	.logo-bailando-farbe-small {
	text-align: center;
margin-top: 20px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/* Rotes Bild mit Icons*/

.hintergrund-rot {
    position: absolute;
    height: 1200px;
	width: 100%;
    z-index: -1;
}
	
.test-rot {
	width: 100%;
	height: 1400px;
}

.h2-white {
	font-family: 'Playfair Display', serif;
	float: center;
	margin-top: 80px;
  font-weight:800;
  font-size: 30px;
	color: #FFFFFF;
}


.p-icon {
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 17px;
	line-height: 28px;
	color: #FFFFFF;
	margin-bottom: 45px;
}

/* Icons nebeneinander werden ausgeblendet */
	.icons-gross {
		display: none;
	}
	
	/* Hiermit werden die Icons & der dazugehörige Text untereinander angezeigt */
	#icon1{
		display: block;
    margin-left: auto;
    margin-right: auto;
		padding-top: 25px;
	}

	#icon2{
		display: block;
    margin-left: auto;
    margin-right: auto;
padding-top: 25px;
	}
	
	#icon3{
		display: block;
    margin-left: auto;
    margin-right: auto;
padding-top: 25px;
	}
	
/* Kontakt */

.hintergrund-kontakt {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}


.elena {
	margin-top: 50px;
	text-align: center;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.p-kontakt{
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 18px;
	line-height: 30px;
	color: #3d4648;
	margin-top: 40px;
	margin-bottom: 55px;
	padding-left: 50px;
	padding-right: 50px;
	display:none;
	}

.p-kontakt-mobil{
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 17px;
	line-height: 28px;
	color: #3d4648;
	margin-top: 40px;
	margin-bottom: 55px;
	padding-left: 50px;
	padding-right: 50px;
	}	
	
.p-kontakt-mobil a:link{
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 17px;
	line-height: 28px;
	text-decoration: none;
    color: #f59f11;
}

.p-kontakt-mobil a:visited {
  text-decoration: none;
	text-align: center;
	color: #f59f11;
}

.p-kontakt-mobil a:hover {
  text-decoration: none;
	text-align: center;
	color: #e84e1d;
}

.p-kontakt-mobil a:active {
  text-decoration: none;
	text-align: center;
	color: #f59f11;
}


/* Anmeldung */

.hintergrund-anmelden {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}
	
	.test-anmelden {
	width: 100%;
	height: 1000px;
}

.h1-anmeldung {
    font-family: 'Playfair Display', serif;
    font-weight:900;
    font-size: 40px;
	margin-top: 100px;
	padding-left: 15px;
	padding-right: 15px;
	color: #FFFFFF;
}

.p-anmelden {
	text-align: center;
	color: #FFFFFF;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	padding-left: 40px;
	padding-right: 40px;
}

	/* Individueller Button von Button Generator */
.Button {
	background-color:#FFFFFF;
	text-align: center;
	align: center;
	border-radius:4px;
	display: block;
	margin: auto;
  width: 35%;
	cursor:pointer;
	color:#f59f11;
	font-family: 'Playfair Display', serif;
	font-size:17px;
	font-weight:bold;
	text-transform: uppercase;
	padding:18px 50px;
	text-decoration: none;
	margin-top: 60px;
	margin-bottom: 80px;
}

.Button:hover {
	color:#e84e1d;
}
.Button:active {
	position:relative;
	top:1px;
}



/* Impressum */


.hintergrund-karte {
    height: 500px;
	width: 100%;
	margin-bottom: -40px; /* Die eingebettete Google Karte wird hiermit noch ans Layout angepasst*/
}

/* Footer */

	/* Grauer Hintergrund */
footer {
	background-color:#3d4648;
	bottom: 0;
	width: 100%;
	height: 530px;
}


.h3-impressum {
	padding-top: 100px;
font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
	color: #FFFFFF;
	text-align: center;
}

.p-impressum {
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 12px;
	line-height: 28px;
	color: #FFFFFF;
	margin-top: 8px;
	text-align: center;
}


.p-impressum a:link{
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 12px;
	line-height: 28px;
	padding-top: 8px;
	text-align: center;
	text-decoration: none;
    color: #D3D3D3;
}

.p-impressum a:visited {
  text-decoration: none;
	color: #D3D3D3;
}

.p-impressum a:hover {
  text-decoration: none;
	color: #f59f11;
}

.p-impressum a:active {
  text-decoration: none;
	color: #D3D3D3;
}

	.p-footer-mobil {
		font-family: 'Playfair Display', serif;
  font-weight:700;
  font-size: 15px;
	line-height: 30px;
	color: #FFFFFF;
	padding-bottom: 20px;
		margin: 0;
	text-align: center;
	}

.p-footer{
	font-family: 'Playfair Display', serif;
  font-weight:700;
  font-size: 15px;
	line-height: 30px;
	color: #FFFFFF;
	padding-left: 60px;
	vertical-align: baseline;
	padding-top: 15px;
	display: none;
}
	
	
	
/* Anordnung der Social Media Icons als Reihe im Footer */
.row-icon2 {
  display:flex;
}

.facebook{
	flex: 5%;
	padding-left: 20%;
	padding-top: 50px;
}

.youtube{
	flex: 5%;
	padding-top: 50px;
}

.instagram{
	flex: 5%;
	padding-top: 50px;
}
}

/* Breakpoint (mittel): Alles unter 960px (Mobile/Tablet) */

@media only screen and (min-width : 721px) and (max-width : 960px){

body {
    margin: 0;
    padding: 0;
	scroll-behavior: smooth; /* Beim Klick auf Navigationslink wird zur Sprungmarke "sanft gescrollt" und nicht gesprungen; funktioniert so nur in Firefox */
}


.header {
  /* Oberer weißer Kasten */
  background-color: #FFFFFF;
	box-shadow: -2px 13px 13px rgba(0, 0, 0, 0.2);
	position: fixed;
	height: 80px;
	width: 100%;
	top: 0;
	left: 0;
}

/* Gestaltung der Links (Festival, Veranstalter, Kontakt, Impressum) */

.nav {
display: none;
}	
	
/* Hamburger Menu */
	
  a
{
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 15px;
	line-height: 30px;
	color: #3d4648;
  text-decoration: none;
  
  transition: color 0.3s ease; /* Einblendung bei Breakpointübergang */
}

a:hover
{
  color: #e84e1d;
}

#menuToggle
{
  display: block;
  position: fixed;
  top: 30px;
  right: 80px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0;
  z-index: 2;
  
  -webkit-touch-callout: none;
}

/*
 * Gestaltung der drei Striche
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #3d4648;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
} /* Cubic-Bezier stellt den Übergangseffekt zwischen 3 & 2 Strichen dar. Es können variable Geschwindigkeiten eingestellt werden. */

	
	
#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* Beim Klick sollen sich die Striche drehen und zu zwei werden */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #3d4648;
}

/*
 * Der mittlere der drei Strichen wird versteckt
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Hiermit dreht sich der untere Strich genau andersherum als der obere
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/* Absolute Position des herausfahrenden Menus am oberen rechten Rand des Bildschirms */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* Damit der Text in manchen Browsern nicht "flickert" */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * Herausfahren des Menus von rechts
 */
#menuToggle input:checked ~ ul
{
  transform: scale(1.0, 1.0);
  opacity: 1;
}
	


/* Entusiastas del Tango Logo PLatzierung im Header */
	
	.logo-small {
		display:none;}
	
.logo {
	margin-top: 22px;
    margin-left: 50px;
	position: fixed;
}
	
#Entusiastas { width: 220px; height: auto }
	
	

/* Orangenes Bild mit Tupfen */
.test {
	width: 100%;
	height: auto;
}

.test-1 {
	width: 100%;
	height: 840px;
}
	
.hintergrund-orange {
    position: absolute;
    top: 10px;
    height: auto;
	width: 100%;
    z-index: -1;
}



/* Startbereich im orangenen Bild mit Überschrift, Text, Logo und Pfeil*/
	
h1 {
margin-top: 20%;
	margin-right: 50px;
	margin-left: 50px;
font-family: 'Playfair Display', serif;
 font-weight:900;
 font-size: 70px;
	color: #FFFFFF;
	padding: 17px;
}

h3 {
	margin-top: -1%;
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 22px;
	line-height: 35px;
	color: #FFFFFF;
	padding: 17px;
}
	
	
.logo-bailando {
	margin-top: 20px;
	text-align: center;}
	
img.center {  /* Damit Bild mittig ist*/
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll Pfeil*/
.arrow {
	margin-top: 120px;
	text-align: center;}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

	
/* Festival Teil mit Logo und Text */
	
	
.white-container {
	background-color: #FFFFFF;
	height: 80px;
	width: 100%;
}

	
.logo-2 {
	text-align: center;
margin-top: 200px;
}
	
	
#Entusiastas-2 { width: 350px; height: auto }
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


h2 {
	margin-top: 60px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 32px;
	color: #3d4648;
	margin-left: 30px;
	margin-right: 30px;
}

p {
	margin-top: 40px;
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 18px;
	line-height: 30px;
	color: #3d4648;
	margin-left: 30px;
	margin-right: 30px;
}

.strich {
	text-align: center;
margin-top: 23px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
	
	
/* Bai - Lan - Do */	

.h2-links {
	padding-top: 100px;
		margin: 0;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 30px;
	color: #3d4648;
}

.h2-links-2 {
	padding-top: 100px;
	margin: 0;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 30px;
	color: #3d4648;
}

.h2-links-3 {
	padding-top: 100px;
		margin: 0;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 30px;
	color: #3d4648;
}

.p-links {
	margin-top: 20px;
	padding-left: 50px;
	padding-right: 50px;
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 18px;
	line-height: 30px;
	color: #3d4648;
}

/* Anordnung der Bild & Textblöcke untereinander */	
.bai {
	background-image: url("Bilder/bai.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 450px;
}

.bild-1 {
	background-image: url("Bilder/bild-1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 450px;
}	

.number-26 {
	background-image: url("Bilder/Tango-2-small.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 450px;
	display: none;
}

.lan {
	background-image: url("Bilder/lan.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 450px;
}	

.do {
	background-image: url("Bilder/do.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 450px;
}

.bild-2-mobil {
	background-image:url("Bilder/Tango-3-large.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 450px;
}


.white-container-2 {
	background-color: #FFFFFF;
	height: 60px;
	width: 100%;
}

	/* Veranstalter */

.h2-veranstalter {
font-family: 'Playfair Display', serif;
	float: center;
  font-weight:800;
  font-size: 35px;
	color: #3d4648;
}

.p-veranstalter {
font-family: 'Playfair Display', serif;
	margin-top: 80px;
  font-weight:500;
  font-size: 18px;
	padding-left: 50px;
	padding-right: 50px;
	line-height: 30px;
	color: #3d4648;
}

/* Gestaltung der Text Links */
.p-veranstalter a:link{
	font-family: 'Playfair Display', serif;
	margin-top: 80px;
  font-weight:500;
  font-size: 18px;
	line-height: 30px;
	text-decoration: none;
  color: #f59f11;
}

.p-veranstalter a:visited {
  text-decoration: none;
	color: #f59f11;
}

.p-veranstalter a:hover {
  text-decoration: none;
	color: #e84e1d;
}

.p-veranstalter a:active {
  text-decoration: none;
	color: #f59f11;
}


.logo-bailando-farbe {
	text-align: center;
margin-top: 30px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
	
	.logo-bailando-farbe-small { display:none}


/* Rotes Bild mit Icons*/

.hintergrund-rot {
    position: absolute;
    height: 1200px;
	width: 100%;
    z-index: -1;
}
	
.test-rot {
	width: 100%;
	height: 1500px;
}

.h2-white {
	font-family: 'Playfair Display', serif;
	float: center;
	margin-top: 80px;
  font-weight:800;
  font-size: 35px;
	color: #FFFFFF;

}


.p-icon {
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 18px;
	line-height: 30px;
	color: #FFFFFF;
	margin-bottom: 45px;
}

/* Icons nebeneinander werden ausgeblendet */
	.icons-gross {
		display: none;
	}
	
	/* Gestaltung für Icons untereinander */
	#icon1{
		display: block;
    margin-left: auto;
    margin-right: auto;
		padding-top: 25px;
	}

	#icon2{
		display: block;
    margin-left: auto;
    margin-right: auto;
padding-top: 25px;
	}
	
	#icon3{
		display: block;
    margin-left: auto;
    margin-right: auto;
padding-top: 25px;
	}
	
/* Kontakt */

.hintergrund-kontakt {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}


.elena {
	margin-top: 50px;
	text-align: center;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

	
.p-kontakt-mobil {display:none}
	
.p-kontakt{
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 18px;
	line-height: 30px;
	color: #3d4648;
	margin-top: 40px;
	margin-bottom: 55px;
	padding-left: 50px;
	padding-right: 50px;
	}

.p-kontakt a:link{
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 18px;
	line-height: 30px;
	text-decoration: none;
    color: #f59f11;
}

.p-kontakt a:visited {
  text-decoration: none;
	text-align: center;
	color: #f59f11;
}

.p-kontakt a:hover {
  text-decoration: none;
	text-align: center;
	color: #e84e1d;
}

.p-kontakt a:active {
  text-decoration: none;
	text-align: center;
	color: #f59f11;
}


/* Anmeldung */

.hintergrund-anmelden {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}
	
	.test-anmelden {
	width: 100%;
	height: 1000px;
}

.h1-anmeldung {
    font-family: 'Playfair Display', serif;
    font-weight:900;
    font-size: 50px;
	margin-top: 150px;
	padding-left: 40px;
	padding-right: 40px;
	color: #FFFFFF;
}

.p-anmelden {
	text-align: center;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 500;
	padding-left: 40px;
	padding-right: 40px;
}

	/* Gestaltung des individuellen Buttons von CSS Button Generator */
.Button {
	background-color:#FFFFFF;
	text-align: center;
	align: center;
	border-radius:4px;
	display: block;
	margin: auto;
  width: 30%;
	cursor:pointer;
	color:#f59f11;
	font-family: 'Playfair Display', serif;
	font-size:17px;
	font-weight:bold;
	text-transform: uppercase;
	padding:18px 50px;
	text-decoration: none;
	margin-top: 80px;
	margin-bottom: 80px;
}

.Button:hover {
	color:#e84e1d;
}
.Button:active {
	position:relative;
	top:1px;
}



/* Impressum */


.hintergrund-karte {
    height: 500px;
	width: 100%;
	margin-bottom: -40px;
}

/* Footer */

	/* Grauer Hintergrund */
footer {
	background-color:#3d4648;
	bottom: 0;
	width: 100%;
	height: 530px;
}


.h3-impressum {
	padding-top: 100px;
font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
	color: #FFFFFF;
	text-align: center;
}

.p-impressum {
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 15px;
	line-height: 30px;
	color: #FFFFFF;
	padding-top: 10px;
	text-align: center;
}


.p-impressum a:link{
	text-decoration: none;
    color: #D3D3D3;
}

.p-impressum a:visited {
  text-decoration: none;
	color: #D3D3D3;
}

.p-impressum a:hover {
  text-decoration: none;
	color: #f59f11;
}

.p-impressum a:active {
  text-decoration: none;
	color: #D3D3D3;
}

	.p-footer-mobil {
		font-family: 'Playfair Display', serif;
  font-weight:700;
  font-size: 15px;
	line-height: 30px;
	color: #FFFFFF;
	padding-bottom: 20px;
		margin: 0;
	text-align: center;
	}

.p-footer{
	font-family: 'Playfair Display', serif;
  font-weight:700;
  font-size: 15px;
	line-height: 30px;
	color: #FFFFFF;
	padding-left: 60px;
	vertical-align: baseline;
	padding-top: 15px;
	display: none;
}
	
	
	/* Darstellung der Social Media Icons*/

.row-icon2 {
  display:flex;
}

.facebook{
	flex: 5%;
	padding-left: 20%;
	padding-top: 50px;
}

.youtube{
	flex: 5%;
	padding-top: 50px;
}

.instagram{
	flex: 5%;
	padding-top: 50px;
}
}

/* Breakpoint (größ): Alles unter 1280px (Tablet) */

@media only screen and (min-width: 961px) and (max-width : 1280px){

body {
    margin: 0;
    padding: 0;
	scroll-behavior: smooth; /* Beim Klick auf Navigationslink wird zur Sprungmarke "sanft gescrollt" und nicht gesprungen; funktioniert so nur in Firefox */
}

	/* Burger Menu der Mobilen Version wird ausgeblendet */
#menu {
  display: none;
	}
	
	
.header {
  /* Oberer weißer Kasten */
  background-color: #FFFFFF;
	box-shadow: -2px 13px 13px rgba(0, 0, 0, 0.2);
	position: fixed;
	height: 80px;
	width: 100%;
	top: 0;
	left: 0;
}

/* Gestaltung der Links (Festival, Veranstalter, Kontakt, Impressum) */
.nav a {
  float: right;
  color: #3d4648;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-weight:600;
  font-size: 18px;
	margin-top: 28px;
	margin-right: 50px;
	padding-right: 5px;
}

/* Mouse-Over Effekt bei Links*/
.nav a:hover {
  color: #f59f11;
}

/* Entusiastas del Tango Logo PLatzierung im Header */
	
		.logo-small {
		display:none;}
	
.logo {
	margin-top: 18px;
    margin-left: 50px;
	position: fixed;
}

/* Orangenes Bild mit Tupfen */
.test {
	width: 100%;
	height: auto;
}

.test-1 {
	width: 100%;
	height: 880px;
}
	
.hintergrund-orange {
    position: absolute;
    top: 10px;
    height: auto;
	width: 100%;
    z-index: -1;
}


/* Überschrift im orangenen Bild*/
h1 {
margin-top: 17%;
font-family: 'Playfair Display', serif;
 font-weight:900;
 font-size: 85px;
	color: #FFFFFF;
}

h3 {
	margin-top: -1%;
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 22px;
	line-height: 40px;
	color: #FFFFFF;
}

/* Startbereich */
	
.logo-bailando {
	margin-top: 30px;
	text-align: center;}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll Pfeil*/
.arrow {
	margin-top: 120px;
	text-align: center;}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

	/* Weißer Container als fixer Abstand */
.white-container {
	background-color: #FFFFFF;
	height: 120px;
	width: 100%;
}

.logo-2 {
	text-align: center;
margin-top: 200px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


h2 {
	margin-top: 50px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 35px;
	color: #3d4648;
}

p {
	margin-top: 40px;
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 20px;
	line-height: 30px;
	color: #3d4648;
}

.strich {
	text-align: center;
margin-top: 23px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
	
	
/* Bai - Lan - Do */	

.h2-links {
	margin-top: 50px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 30px;
	color: #3d4648;
}

.h2-links-2 {
	margin-top: 90px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 30px;
	color: #3d4648;
}

.h2-links-3 {
	margin-top: 90px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 30px;
	color: #3d4648;
}

.p-links {
	margin-top: 10px;
	padding-left: 100px;
	padding-right: 100px;
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 18px;
	line-height: 26px;
	color: #3d4648;
}

	/* Anordnung der 6 Bilder jeweils links & rechts nebeneinander */
.bai {
	background-image: url("Bilder/bai.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	float:left; /* Fangen jeweils links an */
	width: 50%; /* Mit einer Breite von 50% --> Deshalb nehmen sie immer nur die Hälfte des Bildschirms ein*/
	height: 400px;
}

.bild-1 {
	background-image: url("Bilder/bild-1-large.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	float:left;
	width: 50%;
	height: 400px;
}	

.number-26 {
	background-image: url("Bilder/Tango-2-small.jpg");
	background-repeat: no-repeat;
	float:left;
	background-size: cover;
	width: 50%;
	height: 400px;
}

.lan {
	background-image: url("Bilder/lan.jpg");
	background-repeat: no-repeat;
	float:left;
	background-size: cover;
	width: 50%;
	height: 400px;
}	

.do {
	background-image: url("Bilder/do.jpg");
	background-repeat: no-repeat;
	float:left;
	background-size: cover;
	width: 50%;
	height: 450px;
}

.bild-2 {
	background-image:url("Bilder/Tango-3-large.jpg");
	background-repeat: no-repeat;
	float:left;
	background-size: cover;
	width: 50%;
	height: 450px;
	margin-bottom: 60px;
}


.white-container-2 {
	background-color: #FFFFFF;
	height: 60px;
	width: 100%;
}

	/* Veranstalter */

.h2-veranstalter {
font-family: 'Playfair Display', serif;
	float: center;
  font-weight:800;
  font-size: 35px;
	color: #3d4648;
}

.p-veranstalter {
font-family: 'Playfair Display', serif;
	margin-top: 80px;
  font-weight:500;
  font-size: 20px;
	line-height: 30px;
	color: #3d4648;
}

/* Gestaltung der Links im Text */
.p-veranstalter a:link{
	text-decoration: none;
  color: #f59f11;
}

.p-veranstalter a:visited {
  text-decoration: none;
	color: #f59f11;
}

.p-veranstalter a:hover {
  text-decoration: none;
	color: #e84e1d;
}

.p-veranstalter a:active {
  text-decoration: none;
	color: #f59f11;
}


.logo-bailando-farbe {
	text-align: center;
margin-top: 30px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
	/* Kleines Logo für Mobil wird ausgeblendet */
	.logo-bailando-farbe-small { display:none}
	

/* Rotes Bild mit Icons*/

.hintergrund-rot {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}
	
.test-rot {
	width: 100%;
	height: 900px;
}

.h2-white {
	font-family: 'Playfair Display', serif;
	float: center;
	margin-top: 80px;
  font-weight:800;
  font-size: 35px;
	color: #FFFFFF;
}


.p-icon {
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 20px;
	line-height: 30px;
	color: #FFFFFF;
}

	/* Icons untereinander werden ausgeblendet */
	.icons-mobil {
		display:none;
	}
	
/* Icons und Text werden hier jeweils in einer Reihe mit Abstand dazwischen (flex) angeordnet */
	
.row-icon {
  display:flex;
}

.column-icon {
  flex: 10%;
	padding-left: 8.5%;
	padding-top: 50px;
}

.column-text {
  flex: 10%;
	padding-top: 5px;
	margin-bottom: 60px;
}

/* Kontakt */

.hintergrund-kontakt {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}


.elena {
	margin-top: 50px;
	text-align: center;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.p-kontakt-mobil {display:none}

.p-kontakt{
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 20px;
	line-height: 30px;
	color: #3d4648;
	margin-top: 40px;
	margin-bottom: 55px;
	}

.p-kontakt a:link{
	text-decoration: none;
    color: #f59f11;
}

.p-kontakt a:visited {
  text-decoration: none;
	text-align: center;
	color: #f59f11;
}

.p-kontakt a:hover {
  text-decoration: none;
	text-align: center;
	color: #e84e1d;
}


.p-kontakt a:active {
  text-decoration: none;
	text-align: center;
	color: #f59f11;
}


/* Anmeldung */

.hintergrund-anmelden {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}

		.test-anmelden {
	width: 100%;
	height: 1000px;
}
	
.h1-anmeldung {
    font-family: 'Playfair Display', serif;
    font-weight:900;
    font-size: 60px;
	margin-top: 150px;
	color: #FFFFFF;
}

.p-anmelden {
	text-align: center;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 500;
}

	/* GEstaltung des individuellen Buttons von CSS Button Generator */
.Button {
	background-color:#FFFFFF;
	text-align: center;
	align: center;
	border-radius:4px;
	display: block;
	margin: auto;
  width: 15%;
	cursor:pointer;
	color:#f59f11;
	font-family: 'Playfair Display', serif;
	font-size:17px;
	font-weight:bold;
	text-transform: uppercase;
	padding:18px 50px;
	text-decoration: none;
	margin-top: 100px;
	margin-bottom: 100px;
}

.Button:hover {
	color:#e84e1d;
}
.Button:active {
	position:relative;
	top:1px;
}



/* Impressum */

/* Anpassung der eingebetteten Googel Maps Karte ans Layout */
.hintergrund-karte {
    height: 500px;
	width: 100%;
	margin-bottom: -40px;
}

/* Footer */

	/* Grauer Hintergrund */
footer {
	background-color:#3d4648;
	bottom: 0;
	width: 100%;
	height: 500px;
}


.h3-impressum {
	padding-top: 50px;
font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
	color: #FFFFFF;
	text-align: center;
}

.p-impressum {
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 15px;
	line-height: 30px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-bottom: 20px;
	text-align: center;
}


.p-impressum a:link{
	text-decoration: none;
    color: #D3D3D3;
}

.p-impressum a:visited {
  text-decoration: none;
	color: #D3D3D3;
}

.p-impressum a:hover {
  text-decoration: none;
	color: #f59f11;
}

.p-impressum a:active {
  text-decoration: none;
	color: #D3D3D3;
}


.p-footer{
	font-family: 'Playfair Display', serif;
  font-weight:700;
  font-size: 20px;
	line-height: 30px;
	color: #FFFFFF;
	text-align: center;
	vertical-align: baseline;
	padding-top: 15px;
}


	.p-footer-mobil {
		display:none
	}
	
	/* Anordnung der Social Media Icons */
	
.row-icon2 {
  display:flex;
	float: right;
	padding-right: 20%;
}

.facebook{
	margin-top: 15%;
	margin-right: 30px;
	margin-left: 30px;
}

.youtube{
	margin-top: 13%;
	margin-right: 30px;
	margin-left: 30px;
}

.instagram{
	margin-top: 13%;
	margin-right: 30px;
	margin-left: 30px;
}
}

/* Breakpoint (größer): Alles über 1280px (Desktop) */

@media only screen and (min-width: 1281px) and (max-width : 1920px){

body {
    margin: 0;
    padding: 0;
	scroll-behavior: smooth; /* Beim Klick auf Navigationslink wird zur Sprungmarke "sanft gescrollt" und nicht gesprungen; funktioniert so nur in Firefox */
}

	
/* Burger Menu wird ausgeblendet */	
	#menu {
  display: none;
	}

.header {
  /* Oberer weißer Kasten */
  background-color: #FFFFFF;
	box-shadow: -2px 13px 13px rgba(0, 0, 0, 0.2);
	position: fixed;
	height: 80px;
	width: 100%;
	top: 0;
	left: 0;
}

/* Gestaltung der Links (Festival, Veranstalter, Kontakt, Impressum) */
.nav a {
  float: right;
  color: #3d4648;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-weight:600;
  font-size: 20px;
	margin-top: 28px;
	margin-right: 120px;
}


/* Mouse-Over Effekt bei Links*/
.nav a:hover {
  color: #f59f11;
}




/* Entusiastas del Tango Logo PLatzierung im Header */
	
		.logo-small {
		display:none;}
	
.logo {
	margin-top: 18px;
    margin-left: 50px;
	position: fixed;
}

/* Orangenes Bild mit Tupfen */
.test {
	width: 100%;
	height: auto;
}

.test-1 {
	width: 100%;
	height: 985px;
}
	
.hintergrund-orange {
    position:absolute;
    top: 0px;
	width: 100%;
    z-index: -1;
}



/* Überschrift im orangenen Bild*/
h1 {
margin-top: 17%;
font-family: 'Playfair Display', serif;
 font-weight:900;
 font-size: 85px;
	color: #FFFFFF;
}

h3 {
	margin-top: -1%;
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 22px;
	line-height: 40px;
	color: #FFFFFF;
}

/* Bailando Logo PLatzierung Mittig (text align und img.center) im Startbereich */
.logo-bailando {
	margin-top: 30px;
	text-align: center;}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll Pfeil*/
.arrow {
	margin-top: 120px;
	text-align: center;}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.white-container {
	background-color: #FFFFFF;
	height: 120px;
	width: 100%;
}

.logo-2 {
	text-align: center;
margin-top: 200px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


h2 {
	margin-top: 60px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 35px;
	color: #3d4648;
}

p {
	margin-top: 40px;
font-family: 'Playfair Display', serif;
	margin-left: 20px;
	margin-right: 20px;
  font-weight:500;
  font-size: 20px;
	line-height: 30px;
	color: #3d4648;
}

.strich {
	text-align: center;
margin-top: 23px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
	
	
	/* Bai - Lan - Do */

.h2-links {
	margin-top: 110px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 35px;
	color: #3d4648;
}

.h2-links-2 {
	margin-top: 90px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 35px;
	color: #3d4648;
}

.h2-links-3 {
	margin-top: 90px;
font-family: 'Playfair Display', serif;
  font-weight:800;
  font-size: 35px;
	color: #3d4648;
}

.p-links {
	margin-top: 40px;
	padding-left: 120px;
	padding-right: 120px;
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 20px;
	line-height: 30px;
	color: #3d4648;
}

.bai {
	background-image: url("Bilder/bai.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	float:left; /* Bildblöcke werden von links angeordnet */
	width: 50%; /* Mit einer Breite von 50% des Bildschirms */
	height: 550px;
}

.bild-1 {
	background-image: url("Bilder/bild-1-large.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	float:left;
	width: 50%;
	height: 550px;
}	

.number-26 {
	background-image: url("Bilder/Tango-2.jpg");
	background-repeat: no-repeat;
	float:left;
	background-size: cover;
	width: 50%;
	height: 550px;
}

.lan {
	background-image: url("Bilder/lan.jpg");
	background-repeat: no-repeat;
	float:left;
	background-size: cover;
	width: 50%;
	height: 550px;
}	

.do {
	background-image: url("Bilder/do.jpg");
	background-repeat: no-repeat;
	float:left;
	background-size: cover;
	width: 50%;
	height: 550px;
}

.bild-2 {
	background-image:url("Bilder/Tango-3-large.jpg");
	background-repeat: no-repeat;
	float:left;
	background-size: cover;
	width: 50%;
	height: 550px;
	margin-bottom: 80px;
}


.white-container-2 {
	background-color: #FFFFFF;
	height: 60px;
	width: 100%;
}

	/* Veranstalter */

.h2-veranstalter {
font-family: 'Playfair Display', serif;
	float: center;
  font-weight:800;
  font-size: 35px;
	color: #3d4648;
}

.p-veranstalter {
font-family: 'Playfair Display', serif;
	margin-top: 80px;
  font-weight:500;
  font-size: 20px;
	line-height: 30px;
	color: #3d4648;
}


.p-veranstalter a:link{
	text-decoration: none;
  color: #f59f11;
}

.p-veranstalter a:visited {
  text-decoration: none;
	color: #f59f11;
}

.p-veranstalter a:hover {
  text-decoration: none;
	color: #e84e1d;
}

.p-veranstalter a:active {
  text-decoration: none;
	color: #f59f11;
}


.logo-bailando-farbe {
	text-align: center;
margin-top: 30px;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

	/* Mobiles Logo wird ausgeblendet */
.logo-bailando-farbe-small { display:none}
	
	

/* Rotes Bild mit Icons*/

.hintergrund-rot {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}

.test-rot {
	width: 100%;
	height: 1300px;
}	
	
.h2-white {
	font-family: 'Playfair Display', serif;
	float: center;
	margin-top: 80px;
  font-weight:800;
  font-size: 35px;
	color: #FFFFFF;
}


.p-icon {
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 20px;
	line-height: 30px;
	color: #FFFFFF;
}

	/* Mocile Icons untereinander werden ausgeblendet */
	.icons-mobil {
		display: none;
	}

	/* Darstellung der Icons & Texte nebeneinander in einer Reihe */
.row-icon {
  display:flex;
}

	/* Abstände zwischen den Elementen */
.column-icon {
  flex: 10%; 
	padding-left: 11%;
	padding-top: 50px;
}

.column-text {
  flex: 10%;
	padding-top: 5px;
	margin-bottom: 60px;
}

/* Kontakt */

.hintergrund-kontakt {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}


.elena {
	margin-top: 50px;
	text-align: center;
}
	
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.p-kontakt-mobil {display:none}

.p-kontakt{
font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 20px;
	line-height: 30px;
	color: #3d4648;
	margin-top: 40px;
	margin-bottom: 55px;
	}

.p-kontakt a:link{
	text-decoration: none;
    color: #f59f11;
}

.p-kontakt a:visited {
  text-decoration: none;
	text-align: center;
	color: #f59f11;
}

.p-kontakt a:hover {
  text-decoration: none;
	text-align: center;
	color: #e84e1d;
}


.p-kontakt a:active {
  text-decoration: none;
	text-align: center;
	color: #f59f11;
}


/* Anmeldung */

.hintergrund-anmelden {
    position: absolute;
    height: 900px;
	width: 100%;
    z-index: -1;
}
	.test-anmelden {
	width: 100%;
	height: 1000px;
}
	

.h1-anmeldung {
    font-family: 'Playfair Display', serif;
    font-weight:900;
    font-size: 60px;
	margin-top: 150px;
	color: #FFFFFF;
}

.p-anmelden {
	text-align: center;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 500;
}

	/* Gestaltung des Buttons von CSS Button Generator */
.Button {
	background-color:#FFFFFF;
	text-align: center;
	align: center;
	border-radius:4px;
	display: block;
	margin: auto;
  width: 15%;
	cursor:pointer;
	color:#f59f11;
	font-family: 'Playfair Display', serif;
	font-size:17px;
	font-weight:bold;
	text-transform: uppercase;
	padding:18px 50px;
	text-decoration: none;
	margin-top: 100px;
	margin-bottom: 100px;
}

.Button:hover {
	color:#e84e1d;
}
.Button:active {
	position:relative;
	top:1px;
}



/* Impressum */

/* ANpassung der eingebetteten Google Maps Karte ins Layout */
.hintergrund-karte {
    height: 500px;
	width: 100%;
	margin-bottom: -40px;
}

/* Footer */

	/* Grauer Hintergrund */
footer {
	background-color:#3d4648;
	bottom: 0;
	width: 100%;
	height: 530px;
}


.h3-impressum {
	padding-top: 3%;
font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
	color: #FFFFFF;
	text-align: center;
}

.p-impressum {
	font-family: 'Playfair Display', serif;
  font-weight:500;
  font-size: 15px;
	line-height: 30px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-bottom: 20px;
	text-align: center;
}


.p-impressum a:link{
	text-decoration: none;
    color: #D3D3D3;
}

.p-impressum a:visited {
  text-decoration: none;
	color: #D3D3D3;
}

.p-impressum a:hover {
  text-decoration: none;
	color: #f59f11;
}

.p-impressum a:active {
  text-decoration: none;
	color: #D3D3D3;
}


.p-footer{
	font-family: 'Playfair Display', serif;
  font-weight:700;
  font-size: 20px;
	line-height: 30px;
	color: #FFFFFF;
	text-align: center;
	vertical-align: baseline;
	padding-top: 15px;
}

	.p-footer-mobil {
		display:none
	}

	/* Position & Abstand zwischen den Social Media Icons */
.row-icon2 {
  display:flex;
	float: right;
	padding-right: 20%;
}

.facebook{
	margin-top: 15%;
	margin-right: 30px;
	margin-left: 30px;
}

.youtube{
	margin-top: 13%;
	margin-right: 30px;
	margin-left: 30px;
}

.instagram{
	margin-top: 15%;
	margin-right: 30px;
	margin-left: 30px;
}
}