@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700&display=swap');

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}



::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Bebas Neue', serif;
}

h1 {
    font-size: 2em;
    line-height: 2.5em;
    margin-bottom: 1em;
}

h3{
	font-size: 1.5em;
    line-height: 1em;
    margin-bottom: 2em;
}

h4{
	font-size: 1.5em;
    line-height: 1.5em;
	margin-top:3.5em;
    margin-bottom: 3.5em;
    color: #ab2537fa;
    text-transform: uppercase;
}

h5{
	margin-top:3.5em;
    margin-bottom: 3.5em;	
}


hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

p{
	font-size: 1.25em;
    line-height: 1.5em;
    margin-bottom: 1.5em;
	font-family: 'Montserrat', sans-serif;
}

@media(min-width: 768px){
	p{
		font-size: 1.5em;
		line-height: 2em;
	}
	.inner-container, .outer-container {
		padding-left: 2em;
		padding-right: 2em;
	}	
	h1 {
		font-size: 3em;
		margin-bottom: 2em;
	}	
	h3{
		font-size: 2em;
	}	
}



audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}



fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button{
	font-family: 'Montserrat', sans-serif;
	padding: 0.5em 2em;
}


textarea {
  resize: vertical;
}



.hidden,
[hidden] {
  display: none !important;
}


.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}



.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}



.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.inner-container, .outer-container {
    padding-left: 1em;
    padding-right: 1em;
}

.mb {
    margin-bottom: 4em;
}

.mt {
    margin-top: 4em;
}

.text-center{
	text-align: center;
}



.outer-container {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.nav-container {
    padding-top: 4em;
    padding-bottom: 4em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    width: 50px;
    height: 50px;
    display: block;
    overflow: visible;
    border: 4px solid #000;
    position: relative;
    transform: rotate(0deg);
    transition: transform .4s ease-in-out;
    flex-shrink: 0;
}

.site-logo img{
		width: 100%;
		height: 100%;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
	font-family: 'Bebas Neue', serif;
}

.nav-right li {
    margin-bottom: 0;
}

h5, li.list-item {
    font-size: 1.5em;
    line-height: 1em;
	margin: 0 0.5em;
}

li.list-item:hover{
	text-decoration: underline;
}

.list-item {
    padding: 0;
    list-style: none;
}

.list-item a {
    font-size: 1em;
    color: #000;
    text-decoration: none;
	cursor: pointer;
}

.hero {
    padding-top: 2em;
    padding-bottom: 2em;
}

.email-btn{
	background-color: unset;
    border: 2px solid black;
    border-radius: 20px;
    font-size: 1.25em;
	cursor: pointer;
	transition: 0.5s all;
}
.email-btn:hover{
	font-size: 1.35em;
}

.project-container{
	display: flex;
	flex-direction: column;
}

.project-nav{
	flex: 2;
	order: 2;
	min-height: 60vh;
}

.project-content{
	flex: 5;
	order: 1;
	min-height: 60vh;
}

@media(min-width: 768px){
	.project-container{
		display: flex;
		flex-direction: row;
	}
	.project-nav{
		order: 1;
	}
	.project-content{
		order: 2;
	}
	.hero {
		padding-top: 4em;
		padding-bottom: 4em;
	}	
}

.project-nav h3{
	padding-left: 1em;
	margin-bottom: 1em;
}

.project-nav ul{
	list-style: none;
	font-size: 1em;
	font-family: 'Montserrat', sans-serif;
}

.project-nav ul a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.project-nav ul a:hover{
	text-decoration: underline;
}

.project .header-img, .project .additional-media{
	width: 100%;
	max-width: 725px;
}

.project h5{
	margin-left: 0;
}

.project a{
	text-decoration: none;
}

.project a:hover{
	text-decoration: underline;
}

.project h4{
	font-size: 2em;
    line-height: 1em;	
	color: #4a4444fa;
	text-align: center;
}

.link-icon{
	width: 15px;
    position: relative;
    top: -5px;
}

@media (min-width: 600px){
	.site-logo {
		width: 64px;
		height: 64px;
		border: 5px solid #000;
	}
}

@media only screen and (min-width: 35em) {

}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
	  
}



@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

