html {
	min-height: 100%;
}

body {
	background-color: #056d85;
	color: white;
	font-family: roboto, helvetica, arial, sans-serif;
	/*background-image: url("images/background_option.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: fill;*/
	font-size: 20px;
}


.navbar {
	background-color: white;
	transition: background-color 0.2s;
	color: #4D4D4D;
	width: 100%;
	font-weight: bold;
	font-size: 20px;
}

.navbar-nav .nav-link { 
	padding-left: 30px;
	padding-right: 30px; 
	font-size: 24px;
	padding-top: 2em;
	padding-bottom: 2em;
	margin-left: 30px;
	margin-right: 30px;
}

.link {
	text-align: center;
}

.link:hover {
	background-image: url("images/hoverhexagon1.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 130px;
}

.main {
	font-size: 9vw;
	font-weight: bold;
	margin-top: 100px;
	text-align: right;
	margin-right: 5%;
	margin-bottom: 150px;
}

.secondary {
	font-size: 9vw;
	text-align: right;
	margin-right: 5%;
	overflow: hidden;
	opacity: 0;
}

.main2 {
	font-size: 6vw;
	font-weight: bold;
	margin-top: 50px;
	text-align: center;
	margin-bottom: 20px;
}

.secondary2 {
	font-size: 5vw;
	text-align: center;
	overflow: hidden;
	opacity: 0;
}

@keyframes slidein {
	0%   { transform: translate(101%); opacity: 1; }
	100% { transform: translate(0%); opacity: 1;}
}

@keyframes slideup {
	0% { transform: translate3d(0, 300%, 0); opacity: 1;}
	100% { transform: translate3d(0, 0, 0); opacity: 1;}
}

.slide-left-one {
	animation-delay: 0.3s;
	animation-name: slidein;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

.slide-left-two {
	animation-delay: 1.3s;
	animation-name: slidein;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

.slide-left-three {
	animation-delay: 2.3s;
	animation-name: slidein;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

.slide-left-four {
	animation-delay: 0.3s;
	animation-name: slideup;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

.responsive{
	max-width: 100%;
	height: auto;
}

.about {
	display: flex;
	justify-content: center;
}

.headshot {
	display: inline-block;
	margin: 1.5em;
	border-radius: 0.5em;
}	

.headshot2 {
	display: inline-block;
	margin: 3.5em;

	border-radius: 0.5em;
	max-width: 256px;	
}	

.about-intro {
	box-shadow: 0 16px 30px 0 rgba(24, 24, 24, 0.7);
	border-radius: 0.5em;
	width: 80%;
	margin: auto;
}

.about-intro2 {
	box-shadow: 0 16px 30px 0 rgba(24, 24, 24, 0.7);
	border-radius: 0.5em;
	width: 80%;
	margin: auto;
}

.about-details {
	color: #4D4D4D;
	border-radius: 0.5em;
	box-shadow: 0 16px 30px 0 rgba(24, 24, 24, 0.7);
	text-align: center;
	width: 80%;
}

.line {
	border-bottom: 1vmin solid #056d85;
	margin-top: 1em;
}

.sectionhead {
	font-weight: bold;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:700');

@keyframes showTopText {
	0% { transform: translate3d(0, 100%, 0); }
	40%, 60% { transform: translate3d(0, 50%, 0); }
	100% { transform: translate3d(0, 0, 0); }
}

@keyframes showBottomText {
	0% { transform: translate3d(0, -100%, 0); }
	100% { transform: translate3d(0, 0, 0); }
}

.animated-title > div.text-top div {
	animation: showTopText 1s;
	animation-delay: 0.5s;
	animation-fill-mode: forwards;
	bottom: 0;
	transform: translate(0, 100%);
}

.animated-title {
	color: #4D4D4D;
	font-family: Roboto, Arial, sans-serif;
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
}

.animated-title > div {
	height: 50%;
	overflow: hidden;
	position: absolute;
	width: 100%;
}

.animated-title > div div {
	font-size: 4vw;
	padding: 0.5em 0;
	position: absolute;
}

.smallabout {
	font-size: 3vw;
}

.animated-title > div div span {
	display: block;
}

.animated-title > div.text-top {
	border-bottom: 1vmin solid #056d85;
	top: 0;
}

.animated-title > div.text-top div {
	animation: showTopText 1s;
	animation-delay: 0.5s;
	animation-fill-mode: forwards;
	bottom: 0;
	transform: translate(0, 100%);
}

.animated-title > div.text-bottom {
	bottom: 0;
}

.animated-title > div.text-bottom div {
	animation: showBottomText 0.5s;
	animation-delay: 1.75s;
	animation-fill-mode: forwards;
	top: 0;
	transform: translate(0, -100%);
}


.portfolio-item {
	padding: 1em;
	color: #4D4D4D;
	font-weight: bold;
	text-align: center;
	box-shadow: 0 6px 8px 0 rgba(24, 24, 28, 0.5);
	border-radius: 10px;
	margin-top: 2em;
}

.portfolio-item:hover {
	transform: scale(1.1);
}

a.portfolio-item,
a.portfolio-item:hover {
	color: #4D4D4D;
	text-decoration: none;
}

#contact-form {
    display:block;
}

.contact-body {
    margin: 0;
    font-family: helvetica,arial,courier;
    font-weight: bold;
    line-height: 1.5;
    color: white;
    text-align: left;
    background-color: #4D4D4D;
    padding: 30px;
    padding-bottom: 10px;
    max-width: 100%;
	border-radius: 20px;
}

.contact-intro {
	text-align: center;
	font-weight: bold;
}

.contact-form-group {
    margin-bottom: 1em;
}

.contact-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.contact-form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 0.375em 0.75em;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.5em;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

textarea.contact-form-control {
    font-family: helvetica,arial,courier;
    height: auto;
}

label.contact-label {
    display: inline-block;
    margin-bottom: 0.5em;
}

.contact-btn {
    display: inline-block;
    font-weight: bold;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375em 0.75em;
    font-size: 1em;
    line-height: 1.5;
    border-radius: 0.5em;
}

.contact-btn:hover {
    color: #212529;
    text-decoration: none;
}

.contact-btn-primary {
    color: #fff;
    background-color: #848381;
    border-color: #4a4948;
}

.contact-btn-primary:hover {
    color: #fff;
    background-color: #c98e00;
    border-color: #848381;
}

.contact-btn-lg, .contact-btn-group-lg>.contact-btn {
    padding: 0.5em 1em;
    font-size: 1.25em;
    line-height: 1.5;
    border-radius: 0.5em;
}

.contact-btn-block {
    display: block;
    width: 100%;
}

input[type="submit"].contact-btn-block, input[type="reset"].contact-btn-block, input[type="button"].contact-btn-block {
    width: 100%;
}

@media screen and (max-width: 700px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: center;
  }

}
