/* !------------------- Basics Start --------------- */
* {
	color: white;
	font-family: sans-serif;
}
body {
	background-color: #162637;
}
a {
	text-decoration: none;
}
.orange {
	color: #F27B20;
}
.blue {
	color: #1788A7;
}

h1, h1 span, h2, h2 span, nav a, .developer span {
	font-family: bebas-neue, sans-serif;
	font-weight: 400;
	font-style: normal;
}
p, p span {
	font-family: open-sans, sans-serif;
	font-weight: 600;
	font-style: normal;
}
nav, img, .button {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.button {
	font-family: open-sans, sans-serif;
	font-weight: 400;
	font-style: normal;
}
#main {
	margin: 0 auto;
	width: 100%;
	text-align: center;
}
img {
	width: 65%;
	max-width: 800px;
}
div > img, div > h1, div > h2, div > p, address, .developer {
	margin-bottom: 25px;
}
div#header h1 {
	margin-bottom: 0px;
}
.flex {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.reverse {
	flex-direction: row-reverse;
}
.full {
	width: 100%;
}
#header {
	padding-top: 80px;
}

/* !------------------- Grid Start --------------- */
.container, .grid {
	height: 100%;
	display: grid;
	position: relative;
	grid-template: repeat(8, 1fr) / repeat(12, 1fr);
}
.grid-section {
	grid-column: 1 / 13;
}

/* !------------------- Navigation Start --------------- */
.arrow {
	background: url("../images/arrow.svg") no-repeat;
	background-position: center;
	height: 15px;
}
nav {
	width: 100%;
    background-color: rgba(22, 38, 55, 0.9);
    position: fixed;
    z-index: 10;
}
.shadow {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}
nav ul {
	display: flex;
}
nav ul li {
	display: flex;
	width: 33.3%;
}
#one {
	order: 1;
}
#two {
	order: 2;
}
#three {
	order: 3;
}
nav ul li a {
	color: #1788A7;
	width: 100%;
	border-bottom: 2px solid #1788A7;
	padding-bottom: 18px;
	margin-top: 18px;
}
.none {
	border-bottom: none;
	padding-bottom: 0px;
}
.active {
	color: #F27B20;
	border-bottom: 2px solid #F27B20;
}
.active-contact {
	color: #F27B20;
}
.active-arrow {
	background: url("../images/arrow-orange.svg") no-repeat;
	background-position: center;
}
nav ul li a:hover {
	color: white;
	border-bottom: 2px solid white;
}
.none:hover {
	border-bottom: none;
}
.arrow:hover, .none:hover .arrow {
	background: url("../images/arrow-white.svg") no-repeat;
	background-position: center;
}

/* !------------------- Footer Start --------------- */
footer {
	background-color: #2B353E;
	padding: 10px 0;
}
footer span#year {
	color: #43A1D2;
}
h3, h4 {
	color: #43A1D2;
}
h3 a {
	color: #43A1D2;
	border-bottom: 1px solid #43A1D2;
}
h3 a:hover {
	color: white;
	border-bottom: 1px solid white;
}

/* !------------------- Contact Start --------------- */
#envelope-wrap {
	width: 102px;
	margin: 0 auto;
}
#envelope, #envelope:hover {
	height: 52px;
}
#envelope {
	background: url("../images/envelope.svg") no-repeat;
}
#envelope:hover {
	background: url("../images/envelope-orange.svg") no-repeat;
}

/* !------------------- Device Wheel Start --------------- */
.device-container {
	position: relative;
}
.mini, .display {
	position: absolute;
	margin-bottom: 0;
}
.hide {
	display: none;
}
.mini {
	z-index: 2;
	border-radius: 50%;
	cursor: pointer;
}
.mini:hover,
.mini.active-wheel {
	border: 2px solid #F27B20;
	border-radius: 50%;
	background-color: #1788A7;
}
.mini:active {
	transform: scale(0.95);
}
#minidesktop {
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0 auto;
}
.display {
	z-index: 1;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.display:hover {
	border-radius: 50%;
	cursor: pointer;
}

/* !------------------- Workpage --------------- */
.button {
	background-color: #F27B20; /* orange */
	border: none;
	color: white;
	padding: 16px 32px;
	text-align: center;
	text-decoration: none;
	font-size: 1em;
	-webkit-transition-duration: 0.4s; /* Safari */
	transition-duration: 0.4s;
	width: 50%;
	min-width: 200px;
	max-width: 300px;
	cursor: pointer;
	display: inline-block;
}
.center-list {
    display: flex;
    justify-content: center;
}
#skills h4 {
    margin-top: 15px;
}
.skill-lists {
    width: 50%;
    display: flex;
    justify-content: space-around;
}
.skill-list {
    text-align: left;
}
.skill {
    font-family: open-sans, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.25em;
    margin: 15px;
}
.list-img {
	height: 15px;
	width: 20px;
	transform: rotate(-90deg);
}
.button:hover, .button:focus {
	background-color: #1788A7;
	color: white;
}
.button:focus {
    outline: none;
}
.button:active {
    transform: scale(0.99);
}
.work-img {
	margin-bottom: 0px;
}
.work-example p {
	margin: 15px auto;
}

/* !------------------- Media Queries Start--------------- */

/* !------------------- @Media 399 or less --------------- */
@media only screen and (max-width: 399px) {
	h1, .developer span {
		font-size: 2em;
	}
	h2 {
		font-size: 1.25em;
	}
	p {
		font-size: 0.875em;
	}
	p.small-p {
		font-size: 0.75em;
	}
	nav a {
		font-size: 1em;
	}
	h3 {
		font-size: 0.75em;
	}
	div#comparison > img, div#ability > img {
		width: 90%;
	}
	div#header {
		margin-bottom: 35px;
	}
	.column {
		flex-direction: column;
	}
	img#head-portrait {
		max-width: 200px;
	}
	#contact-portrait {
		width: 50%;
		max-width: 300px;
	}
	.reverse {
		flex-direction: column-reverse;
	}
	#laptop, #grad {
		max-width: 300px;
	}
	#laptop, .section-margin {
		margin-bottom: 150px;
	}
	.full > p {
		width: 90%;
		margin: auto;
	}
	.h1-margin {
		margin-bottom: 50px;
	}
	#header > h2, #contact div.full {
		margin-bottom: 0px;
	}
	.code-sample {
		min-width: 275px;
	}
	div.full {
		margin-bottom: 50px;
	}
	.ers-sample-wrap.full {
		margin-bottom: 0;
	}
	/* !------------------- Devicewheel W65 @ 399 or less --------------- */
	#devicewheel {
		min-width: 300px;
		margin-bottom: 0px;
	}
	.mini {
		width: 18%;
		min-width: 55px;
		max-width: 65px;
	}
	.display {
		width: 45%;
		min-width: 175px;
		max-width: 180px;
	}
	#minidesktop {
		padding-top: 0;
	}
	#minitablet {
		bottom: 5%;
		left: 14%;
	}
	#minicellphone {
		bottom: 5%;
		right: 14%;
	}
	.display {
		padding-top: 8%;
	}
	/* !------------------- Workpage @ 399 or less --------------- */
	.workpage div#header {
		margin-bottom: 150px;
	}
	.workpage #header > h2 {
		margin-bottom: 25px;
	}
	h4 {
		font-size: 1.25em;
	}
	.workpage #header p {
		font-size: 1.125em;
	}
	.workpage p {
		font-size: 0.875em;
	}
	#workscreen {
		width: 75%;
		min-width: 250px;
	}
	.skill-lists {
        width: 100%;
    }
    .skill {
        font-size: 1em;
    }
	.work-img, .work-example p {
		width: 75%;
		min-width: 250px;
	}
	.work-example p.description {
		font-size: 0.75em;
	}
}
/* !------------------- @Media 400-767 --------------- */
@media only screen and (min-width: 400px) and (max-width: 767px) {
	h1, .developer span {
		font-size: 3em;
	}
	h2 {
		font-size: 1.875em;
	}
	p {
		font-size: 1.5em;
	}
	p.small-p {
		font-size: 1.25em;
	}
	nav a {
		font-size: 1.125em;
	}
	h3 {
		font-size: 0.875em;
	}
	div#comparison > img, div#ability > img {
		width: 90%;
	}
	div#header {
		margin-bottom: 35px;
	}
	.column {
		flex-direction: column;
	}
	img#head-portrait {
		max-width: 200px;
	}
	#contact-portrait {
		width: 55%;
		max-width: 300px;
	}
	.reverse {
		flex-direction: column-reverse;
	}
	#laptop, #grad {
		max-width: 300px;
	}
	#laptop, .section-margin {
		margin-bottom: 150px;
	}
	.full > p {
		width: 90%;
		min-width: 395px;
		margin: auto;
	}
	.h1-margin {
		margin-bottom: 50px;
	}
	#header > h2, #contact div.full {
		margin-bottom: 0px;
	} 
	.code-sample {
		min-width: 350px;
	}
	div.full {
		margin-bottom: 50px;
	}
	.ers-sample-wrap.full {
		margin-bottom: 0;
	}
	/* !------------------- Devicewheel W65 @ 400-767 --------------- */
	#devicewheel {
		min-width: 350px;
		margin-bottom: 0px;
	}
	.mini {
		width: 15%;
		min-width: 70px;
		max-width: 105px;
	}
	.display {
		width: 40%;
		min-width: 200px;
		max-width: 300px;
	}
	#minidesktop {
		padding-top: 0;
	}
	#minitablet {
		bottom: 6%;
		left: 18%;
	}
	#minicellphone {
		bottom: 6%;
		right: 18%;
	}
	.display {
		padding-top: 5.75%;
	}
	/* !------------------- Workpage @ 400-767 --------------- */
	.workpage div#header {
		margin-bottom: 150px;
	}
	.workpage #header > h2 {
		margin-bottom: 25px;
	}
	h4 {
		font-size: 1.5em;
	}
	.workpage #header p {
		font-size: 1.25em;
	}
	.workpage p {
		font-size: 1em;
	}
	.skill-lists {
        width: 100%;
    }
    .skill {
        font-size: 1em;
    }
	#workscreen {
		width: 75%;
		min-width: 350px;
	}
	.work-img, .work-example p {
		width: 75%;
		min-width: 350px;
	}
	.work-example p.description {
		font-size: 0.75em;
	}
}
/* !------------------- @Media 768-991 --------------- */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	h1, .developer span {
		font-size: 3em;
	}
	h2 {
		font-size: 1.875em;
	}
	p {
		font-size: 1.5em;
	}
	p.small-p {
		font-size: 1.25em;
	}
	nav a {
		font-size: 1.5em;
	}
	h3 {
		font-size: 0.875em;
	}
	#header {
		padding-top: 90px;
		margin-bottom: 25px;
	}
	#envelope-wrap {
		width: 153px;
		margin: 0 auto;
	}
	#envelope, #envelope:hover {
		height: 78px;
	}
	.column {
		flex-direction: column;
	}
	img#head-portrait {
		max-width: 200px;
	}
	#contact-portrait {
		max-width: 300px;
	}
	.reverse {
		flex-direction: column-reverse;
	}
	#laptop, #grad {
		width: 40%;
		max-width: 300px;
	}
	#laptop, .section-margin {
		margin-bottom: 150px;
	}
	.full > p {
		width: 70%;
		margin: auto;
	}
	.h1-margin {
		margin-bottom: 50px;
	}
	#header > h2, #contact div.full {
		margin-bottom: 0px;
	}
	div.full {
		margin-bottom: 50px;
	}
	.ers-sample-wrap.full {
		margin-bottom: 0;
	}
	/* !------------------- Devicewheel @ 768-991 --------------- */
	#devicewheel {
		width: 50%;
		min-width: 450px;
	}
	.mini {
		width: 10%;
		min-width: 85px;
		max-width: 100px;
	}
	.display {
		width: 30%;
		min-width: 270px;
		max-width: 300px;
	}
	#minidesktop {
		padding-top: 0;
	}
	#minitablet {
		bottom: 10%;
		left: 28%;
	}
	#minicellphone {
		bottom: 10%;
		right: 28%;
	}
	.display {
		padding-top: 1%;
	}
	/* !------------------- Workpage @ 768-991 --------------- */
	.workpage div#header {
		margin-bottom: 150px;
	}
	.workpage #header > h2 {
		margin-bottom: 25px;
	}
	h4 {
		font-size: 2em;
	}
	.workpage #header p {
		font-size: 1.5em;
	}
	.workpage p {
		font-size: 1.25em;
	}
	.skill-lists {
        width: 75%;
    }
	#workscreen {
		width: 60%;
		min-width: 575px;
	}
	.work-img, .work-example p {
		width: 60%;
		min-width: 700px;
	}
	.work-example p.description {
		font-size: 1em;
	}
}
/* !------------------- @Media 992-1199 --------------- */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	h1, .developer span {
		font-size: 4.5em;
	}
	h2 {
		font-size: 2.25em;
	}
	p {
		font-size: 1.875em;
	}
	p.small-p {
		font-size: 1.5em;
	}
	nav a {
		font-size: 2.25em;
	}
	h3 {
		font-size: 1.375em;
	}
	#header {
		padding-top: 120px;
		margin-bottom: 80px;
	}
	#envelope-wrap {
		width: 153px;
		margin: 0 auto;
	}
	#envelope, #envelope:hover {
		height: 78px;
	}
	img#head-portrait {
		width: 30%;
	}
	.row {
		flex-direction: row;
	}
	.reverse {
		flex-direction: row-reverse;
	}
	#laptop {
		width: 95%;
	}
	.half {
		width: 50%;
	}
	.half > p {
		width: 100%;
	}
	#hello {
		padding-top: 75px;
	}
	#contact-portrait {
		width: 70%;
	}
	.section-margin {
		margin-bottom: 200px;
	}
	.h1-margin {
		margin-bottom: 150px;
	}
	#grad {
		width: 75%;
	}
	.code-sample {
		width: 90%;
	}
	.leftmarg {
		margin-left: 15px;
	}
	#ability h1.h1-margin {
		margin-bottom: 50px;
	}
	/* !------------------- Devicewheel @ 992-1199 --------------- */
	#devicewheel {
		width: 85%;
	}
	.mini {
		width: 18%;
		min-width: 85px;
		max-width: 105px;
	}
	.display {
		width: 50%;
		min-width: 250px;
		max-width: 300px;
	}
	#minidesktop {
		padding-top: 1%;
	}
	#minitablet {
		bottom: 10%;
		left: 15%;
	}
	#minicellphone {
		bottom: 10%;
		right: 15%;
	}
	.display {
		padding-top: 1%;
	}
	/* !------------------- Workpage @ 992-1199 --------------- */
	.workpage div#header {
		margin-bottom: 150px;
	}
	h4 {
		font-size: 2em;
	}
	.workpage #header p {
		font-size: 1.5em;
	}
	.workpage p {
		font-size: 1.25em;
	}
	.workpage #header {
		padding-top: 100px;
	}
	#workscreen {
		width: 45%;
		min-width: 525px;
	}
	.work-img, .work-example p {
		width: 60%;
		min-width: 700px;
	}
	.work-example p.description {
		font-size: 1em;
	}
}
/* !------------------- @Media 1200+ --------------- */
@media only screen and (min-width: 1200px) {
	h1, .developer span {
		font-size: 4.5em;
	}
	h2 {
		font-size: 2.25em;
	}
	p {
		font-size: 1.875em;
	}
	p.small-p {
		font-size: 1.5em;
	}
	nav a {
		font-size: 2.25em;
	}
	h3 {
		font-size: 1.375em;
	}
	#header {
		padding-top: 120px;
		margin-bottom: 80px;
	}
	#envelope-wrap {
		width: 153px;
		margin: 0 auto;
	}
	#envelope, #envelope:hover {
		height: 78px;
	}
	img#head-portrait {
		width: 25%;
	}
	.row {
		flex-direction: row;
	}
	.reverse {
		flex-direction: row-reverse;
	}
	#laptop {
		width: 95%;
		margin-left: 50px;
	}
	.half {
		width: 50%;
	}
	.half > p {
		width: 70%;
		margin: 0 auto;
	}
	#hello {
		padding-top: 75px;
	}
	#contact-portrait {
		width: 58%;
	}
	.section-margin {
		margin-bottom: 150px;
	}
	.h1-margin {
		margin-bottom: 50px;
	}
	#grad {
		width: 75%;
	}
	.code-sample {
		width: 90%;
	}
	.shift-left {
		margin-right: 50px;
	}
	.shift-right {
		margin-left: 50px;
	}
	p.wide74 {
		width: 74%;
	}
	p.wide100 {
		width: 100%;
	}
	/* !------------------- Devicewheel @ 1200+ --------------- */
	#devicewheel {
		width: 70%;
	}
	.mini {
		width: 15%;
		min-width: 90px;
		max-width: 105px;
	}
	.display {
		width: 44%;
		min-width: 265px;
		max-width: 315px;
	}
	#minidesktop {
		padding-top: 0;
	}
	#minitablet {
		bottom: 10%;
		left: 20%;
	}
	#minicellphone {
		bottom: 10%;
		right: 20%;
	}
	.display {
		padding-top: 1.5%;
	}
	/* !------------------- Workpage @ 1200+ --------------- */
	h4 {
		font-size: 2em;
	}
	.workpage #header p {
		font-size: 1.5em;
	}
	.workpage p {
		font-size: 1.25em;
	}
	.workpage #header {
		padding-top: 100px;
	}
	#workscreen {
		width: 38%;
		min-width: 525px;
	}
	.work-img, .work-example p {
		width: 50%;
		min-width: 700px;
	}
	.work-example p.description {
		font-size: 1em;
	}
}
@media only screen and (min-width: 400px) and (max-width: 500px) {
	.degree-complete p {
		font-size: 1.25em;
	}
}