/*Load google font*/
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700');



/* Reset Styles */

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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
a{
	text-decoration: none;
	text-transform: none;
	color: #4A90E2;
}

body {
	line-height: 1;
	font-family: lato, ubuntu,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
	text-rendering : optimizeLegibility;
	-webkit-font-smoothing : antialiased;
	font-size: 19px;
	background-color: #f2f2f2;
	color: #04143A;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

p {
	color: #15171a;
	font-size: 17;
	line-height: 31px;
}

strong {
	font-weight: 600;
}

div , footer {
	box-sizing: border-box;
}

/* Reset ends */


/*Hero section*/

.container {
	max-width: 1100px;
	height: auto;
	margin: 60px auto;
}

.hero {
	margin: 50px auto; 
	position: relative;
}

h1.name {
	font-size: 70px;
	font-weight: 300;
	display: inline-block;
}

.job-title {
	vertical-align: top;
	background-color: #D9E7F8;
	color: #4A90E2;
	font-weight: 600;
	margin-top: 5px;
	margin-left: 20px;
	border-radius: 5px;
	display: inline-block;
	padding: 15px 25px;
}

.email {
	display: block;
	font-size: 24px;
	font-weight: 300;
	color: #81899C;
	margin-top: 10px;
}

.lead {
	font-size: 44px;
	font-weight: 300;
	margin-top: 60px;
	line-height: 55px;
}

/*hero ends*/

/* HEADING */

.heading {
	text-align: center;
  }
  
  .heading__title {
	font-weight: 600;
  }
  
  .heading__credits {
	margin: 10px 0px;
	color: #888888;
	font-size: 25px;
	transition: all 0.5s;
  }
  
  .heading__link {
	text-decoration: none;
  }
  
  .heading__credits .heading__link {
	color: inherit;
  }
  
  /* CARDS */

  .cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  }
  
  .card {
	margin: 20px;
	padding: 20px;
	width: 500px;
	min-height: 200px;
	display: grid;
	grid-template-rows: 20px 50px 1fr 50px;
	border-radius: 10px;
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
	transition: all 0.2s;
  }
  
  .card:hover {
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
	transform: scale(1.01);
  }
  
  .card__link,
  .card__exit,
  .card__icon {
	position: relative;
	text-decoration: none;
	color: rgba(40, 40, 43, 0.9);
  }
  
  .card__link::after {
	position: absolute;
	top: 25px;
	left: 0;
	content: "";
	width: 0%;
	height: 3px;
	background-color: rgba(40, 40, 43, 0.9);
	transition: all 0.5s;
  }
  
  .card__link:hover::after {
	width: 100%;
  }
  
  .card__exit {
	grid-row: 1/2;
	justify-self: end;
  }
  
  .card__icon {
	grid-row: 2/3;
	font-size: 30px;
  }
  
  .card__title {
	grid-row: 3/4;
	font-weight: 400;
	color: #ffffff;
  }
  
  .card__apply {
	grid-row: 4/5;
	align-self: center;
  }
  
  /* CARD BACKGROUNDS */
  
  .card-1 {
	background: radial-gradient(#1fe4f5, #3fbafe);
  }
  
  .card-2 {
	background: radial-gradient(#fbc1cc, #fa99b2);
  }
  
  .card-3 {
	background: radial-gradient(#76b2fe, #b69efe);
  }
  
  .card-4 {
	background: radial-gradient(#60efbc, #58d5c9);
  }
  
  .card-5 {
	background: radial-gradient(#f588d8, #c0a3e5);
  }
  
  /* RESPONSIVE */

/* Media queries*/

@media(max-width: 1024px){
	.container {
		padding: 15px;
		margin: 0px auto;
	}
	.cards {
		margin-top: 250px;
	}
}

#footer {
	position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem
}

@media(max-width: 768px){
	.container {
		padding: 15px;
		margin: 0px auto;
	}
	
}


@media(max-width: 425px) {
	h1.name {
		font-size: 40px;
	}

	.sections {
		width: 100%;
		height: auto;
		margin: 10px 0;
		float: left;
	}

	

	.job-title {
		position: absolute;
		font-size: 15px;
		top: -40px;
		right: 20px;
		padding: 10px
	}

	.lead {
		margin-top: 15px;
		font-size: 20px;
		line-height: 28px;
	}
	.container {
		margin: 0px;
		padding: 0 15px;
	}
	footer {
		margin-top: 2050px;
	}
	}

.component{
	/* width: 750px; */
	margin:0 auto;
	margin-top: 60px;
	padding: 3rem;
  }
  
  .component blockquote.quote {
	  position: relative; 
	  text-align: center;
	  padding: 1rem 1.2rem;
	  width: 80%;  /* create space for the quotes */
	  color: #484748;
	  margin: 1rem auto 2rem;
  }

    /* -- create the quotation marks -- */
	.component blockquote.quote:before,
	.component blockquote.quote:after{
		font-family: FontAwesome;
		position: absolute;
		color: #039be5;
		font-size: 34px;
	}
	
  
	
	.zitat1 {
	  position: relative;
	  font-family: 'Verdana', serif;
	  font-size: 2.4em;
	  line-height: 1.5em;
	}
	.zitat1 cite {
	  font-family: 'Verdana', sans-serif;
	  font-size: 0.6em;
	  font-weight: 700;
	  color: #bdbec0;
	  float: right;
	}
  
	.sidekick {
	  position: relative;
	  padding-left: 1em;
	  border-left: 0.2em solid #039be5;
	  font-family: 'Roboto', serif;
	  font-size: 2.4em;
	  line-height: 1.5em;
	  font-weight: 100;
	}
	.sidekick:before, .sidekick:after {
	  font-family: Calibri;
		color: #039be5;
		font-size: 34px;
	}
	.sidekick:before {content: '\201e'}
	.sidekick:after {content: '\201c';}
	.sidekick cite {font-size: 50%; text-align:center; top:50%}
	.sidekick cite:before {content: ' \2015 '}

	/* End of all :P*/