@charset "utf-8";
/* CSS Document */

html, body {
	width: 100%;
	padding: 0px;
	margin: 0px;
}

h1, h2 {
	font-family: 'Karla', sans-serif;
	font-weight: 400;
}

#header-wrapper {
	display: flex;
	justify-content: space-between;
} 

#header, footer {
	background-color: #464646;
	/*background-color: #b2d9f6;*/
	padding: 20px 0px;
}

#header > div {
	box-sizing: border-box;
}

#header > div:first-child {
	padding: 0px 20px;
}

#header-xtras {
	display: flex;
}

#header-xtras a {
	align-self: flex-end;
	font-size: 0.8rem;
	text-decoration: none;
}

#header-xtras a:hover {
	color: white;
}

footer {
	display: flex;
}

#header-wrapper, footer > div {
	width: 100%;
	box-sizing: border-box;
	max-width: 900px;
	margin: auto;
	padding: 0px 20px;
}


#header-xtras svg {
	width: 16px;
	height: 16px;
	fill: #fff;
	position: relative;
	top: 2px;
}

@media only screen and (max-width: 750px) {
	#header-wrapper {
		flex-direction: column;
	}
	
	#header-xtras a {
		padding-top: 20px;
	}
}

.pagetitle {
	padding-bottom: 0px;
	margin-bottom: 0px;
	font-size: 3rem;
	color: #1f4f72;
	margin-top: 0px;
}

.subtitle {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	font-size: 2rem;
	color: #1f4f72;
}

.welcome {
	text-align: center;
	max-width: 800px;
	margin: auto;
	padding: 10px 60px 10px 20px;
	/*background-color: #f2f2f2;*/
	border-radius: 500px;
	margin-bottom: 20px;
	margin-top: 20px;
	display: flex;
}

.welcome > h1 {
	font-size: 0.8rem;
	line-height: 1.2rem;
	letter-spacing: 0.1rem;
	color: #464646;
}

.welcome > img {
	width: 100%;
	max-width: 140px;
	border-radius: 120px;
	align-self: center;
	margin-right: 10px;
}


@media only screen and (max-width: 520px) {
	.welcome {
		flex-direction: column;
		padding: 20px 60px 60px 60px;
	}
}

/*#wrapper {
	width: 100%;
	max-width: 900px;
	margin: auto;
}*/

#welcome-block {
	padding-top: 120px;
	margin-bottom: 150px;
	display: grid;
	grid-template-columns: 2fr 1fr;
}

#welcome-block h1 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: #3c4247;
}

#welcome-block > div {
	display: flex;
	align-items: center;
}

#welcome-block img {
	width: 100%;
	max-width: 200px;
	border-radius: 120px;
}

@media only screen and (max-width: 700px) {
	#welcome-block {
		padding-top: 30px;
		grid-template-columns: 1fr;
	}
}

.impact-bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 800px;
	margin: auto;
	margin-bottom: 80px;
}

.impact-bar p {
	display: flex;
	row-gap: 10px;
	color: #37593a;
	background-color: #e0fce3;
	border-radius: 500px;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 0px;
	margin-bottom: 5px;
	padding-left: 12px;
	padding-right: 12px;
	font-size: 0.9rem;
}

.impact-bar svg {
	margin-right: 8px;
	width: 22px;
}

.impact-bar svg path {
	fill: #37593a;
}

p, .accomplishments > div {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 1rem;
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 1.5rem;
	letter-spacing: 0.05rem;
}

img {
	width: 100%;
}

.cardlist {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media only screen and (max-width: 900px) {
	.cardlist {
		grid-template-columns: 1fr 1fr;
	}
}

.casecard {
	border: 1px solid #cecece;
	border-radius: 10px;
	padding: 40px;
	max-width: 300px;
	margin: 20px;
	display: flex;
	align-items: center;
}

@media only screen and (max-width: 600px) {
	.cardlist {
		grid-template-columns: 1fr;
	}
	
	.casecard {
		max-width: none;
	}
}

a {
	color: #969696;
}

#wrapper {
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr auto;
	grid-template-areas: 
		'header'
		'main'
		'footer';
}

main {
	margin: 20px auto;
	max-width: 900px;
}

#wrapper > #header {
  grid-area: header;
}

#wrapper > main {
  grid-area: main;
  padding: 0px 20px;
}

#wrapper > footer {
  grid-area: footer;
}

#wrapper > footer > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.footer-icon svg {
	width: 32px;
	margin: 0px 10px;
}

#project-list {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-row-gap: 60px;
	grid-column-gap: 40px;
}

.accomplishments {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 5px;
	margin: auto;

}

.accomplishments > div {
	width: 300px;
	height: 300px;
	background-color: #f2f2f2;
	align-items: center;
 	justify-content: center;
	display: flex;
	padding: 30px;
	box-sizing: border-box;
	text-align: center;
	margin:auto;
}

@media only screen and (max-width: 1255px) {
	.accomplishments {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5px;
		margin: auto;
	}
	
	.accomplishments > div {
		width: 100%;
		height: 300px;
	}
}

@media only screen and (max-width: 865px) {
	.accomplishments {
		display: grid;
		grid-template-columns: 1fr;
		gap: 5px;
		margin: auto;
	}
	
	.accomplishments > div {
		width: 100%;
		height: 200px;
	}
}

@media only screen and (max-width: 700px) {
	#project-list {
		grid-template-columns: 1fr;
	}
}

#project-list > a > img {
	width: 100%;
	max-width: 475px;
}


.illustration {
	max-width: 900px;
	display: block;
	margin: auto;
	width: 100%;
	padding: 10px;
	border: 1px solid black;
	border-radius: 5px;
}

.navback {
	margin: 0px;
}

.mail-icon:hover .svg0 {
	fill: #bcbcbc;
}

.linked-in-icon .svg1, .linked-in-icon .svg2 {
	transition: fill 0.5s;
}

.linked-in-icon:hover .svg1 {
	fill: #bcbcbc;
}

.linked-in-icon:hover .svg2 {
	fill: white;
}

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 40%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*.clients-list {
	width: 100%;
	display: flex;
	justify-content:space-between;
	padding-top: 20px;
	padding-bottom: 100px;
	flex-wrap: wrap;
}

.clients-list img {
	width: 100px;
	align-self: center;
	display: block;
	margin: 10px;
}*/

.clients-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 100px;
  box-sizing: border-box;
}

.clients-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  white-space: nowrap;
}

.clients-list {
  display: flex;
  gap: 40px;
}

.clients-list img {
  width: 80px;
  flex: 0 0 auto; /* Prevents shrinking or growing */
  align-self: center;
  height: auto;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

