body {
	font-family: 'Open Sans', sans-serif;
}

form {
	max-width: 500px;
	margin: 0 auto;
}

button {
  color: #777;
	background: #fff;
  padding: 4px 12px 4px 12px;
  border: solid #777 2px;
	transition: all 0.3s ease-in-out;
  text-decoration: none;
}

button:hover {
	color: #000;
	border: solid #000 2px;
  text-decoration: none;
}

input, textarea {
	font-size: 0.8rem;
  border: 1px solid #ddd;
  background: #fff;
  padding: 0.5rem 0.7rem;
	margin: 5px 0;
  transition: all 0.3s ease-in-out;
  width: 100%;

}

input:focus, textarea:focus {
  border-color: #777;
  outline: none;
}

.portfolio-content {
	line-height: 2;
	color: #555;
}

.portfolio-content a {
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #f39200;
  color: #f39200;
  transition: background-color 0.3s linear, color 0.3s linear;
}

.portfolio-content a:hover {
	text-decoration: none;
	border-bottom: none;
  background: #f39200;
  color: #fff;
  transition: background-color 0.3s linear, color 0.3s linear;
}

h1, h2, h3 {
	font-family: 'Crimson Text', sans-serif;
	letter-spacing: 1px;
	font-weight: 400;
	margin-bottom: 20px;
}

.navbar-brand {
	font-weight: 700;
	font-size: 40px;
	letter-spacing: 0.5px;
}

.navbar-subtitle {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.5px;
  text-transform: none;
}

.navbar-subtitle:hover {
	text-decoration: none;
}

.navbar {
	text-transform: uppercase;
  border-bottom: 1px solid #f39200;
}

.nav-item {
	font-size: 0.85rem;
	/* font-weight: 300; */
	letter-spacing: 1px;
}

.nav-link:hover {
  color: #f39200 !important;
}

.navbar-toggler {
	border: 0;
}

.navbar-toggler-right {
	right: 0rem;
}

.portfolio-img {
	width: 100%;
	max-height: 250px;
	display: block;
	object-fit: cover;
}

.project-img {
	width: 100%;
	display: block;
	object-fit: cover;
}

/* Image Hover Effect */

.hovereffect {
	width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.hovereffect .overlay {
	width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.hovereffect .overlay-text {
	font-size: 1.3rem;
	font-family: 'Crimson Text', sans-serif;
	font-weight: 300;
	color: #000;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 100%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.hovereffect:hover .overlay-text {
	opacity: 1;
  filter: alpha(opacity=100);
}

.hovereffect img {
  display: block;
  position: relative;
  max-width: none;
	width: 100%;
	height: 100%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hovereffect:hover img {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* .hovereffect .overlay-text {
	font-size: 1.3rem;
	font-family: 'Crimson Text', sans-serif;
	font-weight: 300;
	color: #fff;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 100%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, color 0.35s;
}

.hovereffect:hover .overlay-text {
	color: #000;
  filter: alpha(opacity=50);
  transition: opacity 0.35s, transform 0.35s, color 0.35s;
}

.hovereffect img {
  display: block;
  position: relative;
  max-width: none;
	width: 100%;
	height: 100%;
  transition: opacity 0.35s, filter 0.35s;
}

.hovereffect:hover img {
  filter: blur(15px);
  opacity: 0.7;
} */

.page-nav {
	width: 50%;
	margin: 0 auto;
	text-align: center;
}
.page-nav a,span {
	font-size: 1.3rem;
	font-family: 'Crimson Text', sans-serif;
	font-weight: 300;
	margin: 0 10px;
	color: #000;
}

.presentation {
  width: 100%;
  text-align: center;
  margin: 20px auto 20px auto;
  /* margin-bottom: 100px; */
  width: 800px;
  max-width: calc(100% - 10px);
}

.presentation-title {
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid rgb(2, 117, 216);
  /* border-bottom: 1px solid #f39200; */
  justify-content: center;
}

.presentation-title h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 74px;
}

.presentation-title .subtitle {
  padding-top: 5px;
  padding-left: 15px;
  font-size: 24px;
  font-weight: 300;
  color: rgb(2, 117, 216);
  text-align: left;
}

.presentation p {
  font-weight: 300;
  font-size: 1.4em;
  padding-top: 20px;
}

section {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

section .row {
  margin: 0;
}

.post-title {
  border-bottom: 2px solid #f39200;
  padding-bottom: 10px;
}

.portfolio-content img {
	max-width: 100%;
}

.portfolio-content iframe {
	width: 100%;
}

.navbar-logos {
  position: absolute;
  top: calc(10px - 3rem);
  right: calc(10px - 3rem);
  display: flex;
  flex-direction: row;
}

.navbar-logos a {
  margin-left: 8px;
}

@media (max-width: 575px) {
  .navbar-logos {
    top: 0;
    right: 0;
  }
  .navbar {
    padding-top: 50px !important;
  }
  .navbar-light .navbar-toggler {
    margin-top: 10px;
  }
}

@media (max-width: 400px) {
  .presentation-title h1 {
    font-size: 56px;
  }
  .presentation-title .subtitle {
    font-size: 17px;
  }
  .presentation p {
    font-size: 1.2em;
  }
}

footer {
  width: 100%;
  margin: 0 auto;
  padding: 12px;
  border-top: 1px solid #dedede;
  text-align: center;
  font-size: 0.8em;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

footer address {
  padding-right: 20px;
  text-align: right;
  border-right: 1px solid #dedede;
}

footer .copyright {
  padding-left: 20px;
  text-align: left;
}

footer .copyright p {
  margin-top: 8px;
}

blockquote {
  margin-left: 40px;
  max-width: 800px;
  color: #757575;
  font-style: italic;
}
