/*this CSS contains general design and custom elements*/
/*all elements that do not have a dedicated CSS should be handled here*/
* {
  margin: none;
  padding: none;
}

/*general Settings*/
body {
	margin: 0;
	padding:0;	
}
main {
    margin-top: -1em;
	min-height: calc(100vh - 380px);
}

a{
	color: #666666;
	text-decoration: none;
}

a[href="#"] { /* <-- empty links*/
    color: #cccccc;
    cursor: not-allowed;
}

p, a, dt, dd, li {
    font-family: "Frutiger Light", sans-serif;
	font-size: 18px;
}

p {
    color: #black;
}

h1, h2, h3 {
    font-family: "Frutiger Light", sans-serif;
}

h3 {
	color: #666666;
	text-decoration: underline;
	text-align: center;
}

/*Copyright Notices*/
.img-copy {
	font-size: 1vw;
	position: absolute;
    margin-top: -2em;
	right: 3em;
    color: white;
}

.img-copy_SMALL {
	font-size: 0.5em;
	position: relative;
    margin-top: -2em;
    margin-left: 2em;
    color: #e9e9e9;
}

#missions-copy {
	z-index: 2;
	position: absolute;
	bottom: 0.5em;
}

/*Containers*/
.text{ 					/* <-- class in privacy, imprint, accessibility*/
	padding: 3em;
}

.map-container {
	position: relative;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	width: 95%;
}

 .stretch {
	position: relative;
	display: block;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	z-index: -1;
}

/*Homepage decorations*/
.yellowline {
	display: block;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	margin-top: -7.5vw;
	width: 100%;
	height: 15vw;
	z-index: 2;
	overflow: hidden;
}

#yline {
	width: 100%;
	height: 1vw;
	margin-top: 6.85vw;
	background-color: #ffcc00;
	box-shadow: 0.5em 0 0.5em  rgba(255, 204, 0, 1);
}

#triangle-right {
	position: absolute;
	font-size: 9vw;
	margin-top: 2vw;
	margin-left: -1.3vw;
	color: #ffcc00;
	text-shadow: 0 0 0.1em rgba(255, 204, 0, 1);
	transform:scale(1,1.8);
}

#myGSN-Logo {
	font-family: "Helvetica Neue", Arial, sans-serif !important;
	position: absolute;
	font-size: 6vw !important;
	color: #3d76c2;
	background-color: rgba(255,255,255,0.8);
	margin-top: -20vw;
	margin-left: 2%;
	margin-bottom: 2%;
	padding: 2%;
}

/*Contact Form*/
.input-group label, .input-group input {
	display: block;
}
.input-group {
	padding: 0.5em;
}


/*Note, Sizes and Units; 1em = 16px @100%, 1vw = 1% of viewport width */