/*Create by Tony Scialo*/

body {
	margin: 0;
	padding: 0;
	font-family: 'Ubuntu', sans-serif;
}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

.parallax-container {
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
}

.title-container {
	height: 100vh;
	background-image: url("images/shoes_ocean-small.jpg");
	margin: 0 auto;
}

.title-overlay {
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, .5);
}

.name-container {
	width: 800px;
	margin: 0 auto;
	padding-top: 16%;
	text-align: center;
}

.name {
	color: #fff;
	font-size: 87px;
	text-transform: uppercase;
	font-weight: 300;
	padding: 10px 16px;
	display: inline-block;
	border-radius: 8px;
}

.my-name-is,
.what-i-do {
	color: #fff;
	font-size: 30px;
	font-weight: 100;
}

.what-i-do {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin-top: 10px;
	padding: 10px 0;
}

.name-letter {
	font-size: 60px;
	color: #fff;
	float: left;
	padding-right: 50px;
	width: 120px;
}

.what-i-do-change {
	color: #fc6454;
}

.hidden-title-word {
	display: none;
	position: absolute;
}

.first-letter-one {
	color: #BF55EC;
	border-bottom: 2px solid #BF55EC;
}

.first-letter-two {
	color: #1BBC9B;
	border-bottom: 2px solid #1BBC9B;
}

.name-row {
	float: left;
	margin-bottom: 30px;
}

.name-row :nth-child(3) {
	padding-right: 0;
}

.pulse-icon {
	border: 1px solid #fff;
	border-radius: 100%;
	width: 50px;
	height: 50px;
	animation: pulsate 1500ms ease-in-out;
	animation-iteration-count: infinite;
	position: absolute;
}

@keyframes pulsate {
	0% {
		transform: scale(0.9, 0.9);
		opacity: 0.0;
	}

	50% {
		opacity: 0.3;
	}

	90% {
		transform: scale(1.1, 1.1);
		opacity: 0.0;
	}

	100% {
		opacity: 0.0;
	}
}

.pulse-icon-arrow {
	margin: 14px 0 0 14px;
}

.menu-button {
	position: fixed;
	top: 0;
	right: 0;
	background-color: #fff;
	width: 74px;
	height: 48px;
	float: right;
	margin-right: 40px;
	padding-top: 12px;
	border-radius: 0 0 3px 3px;
	z-index: 5;
	border: 1px solid #c0c2c7;
	border-top-style: none;
}

.horizontal-line {
	background-color: #fc6454;
	width: 48%;
	/*display: block;*/
	height: 4px;
	/*margin: 0 auto 6px auto;*/
	position: absolute;
	margin-top: 10px;
	margin-left: 19px;
}

.horizontal-top-line {
	transform: translateY(-8px);
}

.horizontal-bottom-line {
	transform: translateY(8px);
}

.horizontal-top-line,
.horizontal-middle-line,
.horizontal-bottom-line {
	transition: all 277ms ease-in-out;
}

.menu-button:hover {
	cursor: pointer;
	cursor: hand;
}

.menu-button:hover .horizontal-top-line {
	transform: translateY(-10px);
	background-color: #fc6454;
}

.menu-button:hover .horizontal-middle-line {
	background-color: #fc6454;
}

.menu-button:hover .horizontal-bottom-line {
	transform: translateY(10px);
	background-color: #fc6454;
}

.menu-button.menu-button-open .horizontal-middle-line {
	visibility: hidden;
}

.menu-button.menu-button-open .horizontal-top-line {
	-webkit-animation: horizontal-move-down 500s forwards;
	animation: horizontal-move-down 500ms forwards;
}

.menu-button.menu-button-open .horizontal-bottom-line {
	-webkit-animation: horizontal-move-up 500s forwards;
	animation: horizontal-move-up 500ms forwards;
}

@-webkit-keyframes horizontal-move-down {
	0% {
		transform: translateY(-8px);
	}

	50% {
		transform: translateY(0px);
	}

	100% {
		transform: rotate(-45deg);
	}
}

@keyframes horizontal-move-down {
	0% {
		transform: translateY(-8px);
	}

	50% {
		transform: translateY(0px);
	}

	100% {
		transform: rotate(-45deg);
	}
}

@-webkit-keyframes horizontal-move-up {
	0% {
		transform: translateY(8px);
	}

	50% {
		transform: translateY(0px);
	}

	100% {
		transform: rotate(45deg);
	}
}

@keyframes horizontal-move-up {
	0% {
		transform: translateY(8px);
	}

	50% {
		transform: translateY(0px);
	}

	100% {
		transform: rotate(45deg);
	}
}

.menu {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	background-color: #fc6454;
	width: 400px;
	margin-right: -400px;
	z-index: 4;
}

.menu-open {
	box-shadow: 5px 0px 10px 5px rgba(0, 0, 0, 0.75);
}

.menu-options-container {
	margin-top: 186px;
	text-align: right;
	width: 100%;
	padding-right: 50px;
}

.menu-option {
	font-size: 27px;
	color: #fff;
	padding: 16px 0;
}

.menu-option:hover {
	color: #000;
	cursor: pointer;
	cursor: hand;
}

.title-bottom-section {
	color: #fff;
	font-size: 22px;
	width: 100%;
	position: absolute;
	bottom: 0;
	padding-bottom: 30px;
}

.pulse-icon-wrapper {
	margin: 0 auto;
	width: 54px;
	position: relative;
}

.pulse-icon-wrapper:hover {
	color: #fc6454;
	cursor: pointer;
	cursor: hand;
}

.about-me-container {
	background-color: #fff;
	height: 100vh;
	width: 100%;
	min-height: 745px;
	box-shadow: inset 0px -4px 5px 0px rgba(0, 0, 0, 0.3);

}

.about-me-container-inner {
	width: 70%;
	margin: 0 auto;
	font-family: 'dosis', sans-serif;
}

.about-me-section {
	width: 400px;
	margin: 90px 0 0 100px;
	float: left;
}

.about-me-title {
	font-weight: bold;
	margin-bottom: 4px;
}

.about-me-description {
	letter-spacing: 2px;
	line-height: 225%;
	font-size: 20px;
}

.valhalla {
	font-style: italic;
	color: #CF000F;
}

.about-me-pictures {
	float: left;
	margin-left: 76px;
	margin-top: 28px;
}

.about-me-picture-1 img {
	width: 577px;
}

.adele {
	font-size: 76px;
	text-align: center;
	padding: 40px 0;
	font-weight: 100;
}

.skills-container {
	margin: 120px 0;
	overflow: hidden;
}

.skills-block-container {
	width: 186px;
	margin: 0 auto;
}

.skills-block-circle {
	text-align: center;
	border: 1px solid #000;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	font-size: 24px;
	position: absolute;
	margin-left: 163px;
	margin-top: -15px;
	background-color: #000;
	z-index: 2;
	padding-top: 3px;
	font-family: 'Dosis', sans-serif;
}

.skills-block {
	width: 100%;
	border: 1px solid #000;
	border-radius: 7px;
	font-size: 54px;
	font-weight: 200;
	text-align: center;
	height: 92px;
	line-height: 88px;
	font-family: 'Dosis', sans-serif;
}

.skills-container .skills-block-container:nth-child(4n),
.hidden-skills-section .skills-block-container:nth-child(4n) {
	margin-right: 0px;
}

.hidden-skills-section {
	display: none;
	height: 200px;
}

.skills-block-center {
	float: left;
	width: 25%;
}

/*All of the differnt skills blck colors*/

.skills-block {
	border-color: #6C7A89;
	color: #fc6454;
}

.skills-block-circle {
	background-color: #fc6454;
	border-color: #fc6454;
	color: #fff;
}

#jsSkillsBlock .skills-block,
#pfSkillsBlock .skills-block {
	font-size: 44px;
}

.see-more-skills-line {
	height: 1px;
	border-top: 2px solid #c0c2c7;
}

.see-more-skills-label {
	width: 90px;
	height: 45px;
	border-bottom-left-radius: 47px;
	border-bottom-right-radius: 47px;
	border: 2px solid #c0c2c7;
	border-top: 2px solid #fff;
	margin: -2px auto 0px auto;
	text-align: center;
	padding-top: 6px;
	font-size: 14px;
	color: #fc6454;
	box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.2);
}

.see-more-skills-label:hover {
	text-decoration: underline;
	cursor: pointer;
	cursor: hand;
}

#quoteSection {
	height: 100vh;
	background-image: url('images/nyc-1.jpg');
	min-height: 715px;
	background-color: #545864;
}

.headshot img {
	width: 620px;
	height: 100%;
	position: absolute;
	right: 0;
}

.quote-contianer {
	width: 600px;
	padding-top: 130px;
	margin-left: 5%;
}

.quote-line {
	display: block;
	font-size: 36px;
	color: #fff;
	font-family: 'PT Mono', sans-serif;
	text-align: right;
	padding: 10px 0;
}

.color-quote {
	color: #fc6454;
}

.leonard-cohen {
	font-size: 30px;
	margin-top: 15px;
}

.meet-me-section {
	height: 170px;
	background-color: #fc6454;
}

.meet-me-section-title {
	color: #fff;
	font-size: 63px;
	font-weight: 100;
	padding-top: 44px;
	letter-spacing: 16px;
	text-align: center;
}

.down-triangle-section {
	height: 50px;
	background-color: #fff;
}

.down-triangle {
	width: 0;
	height: 0;
	border-top: 50px solid #fc6454;
	border-left: 70px solid transparent;
	border-right: 70px solid transparent;
	margin: 0 auto;
}

.my-bio-section {
	height: 600px;
}

.contact-me-section {
	height: 500px;
}

.cool-project {
	letter-spacing: 2px;
	margin: 60px auto 0 auto;
	font-size: 22px;
	font-weight: 100;
	text-align: center;
	padding: 0 20px;
}

.email-container {
	margin-top: 120px;
	text-align: center;
	font-size: 30px;
}

.email-icon-container {
	display: inline-block;
	margin-bottom: 12px;
}

.em-add {
	letter-spacing: 4px;
	margin: 0 auto;
	font-size: 20px;
	width: 400px;
	text-transform: uppercase;
}

.share-me {
	width: 312px;
	margin: 120px auto 0 auto;
	overflow: hidden;
}

.share-me-title {
	letter-spacing: 2px;
	font-size: 16px;
	margin: 0 auto;
	padding-bottom: 7px;
	text-align: center
}

.share-me span {
	display: block;
	float: left;
	padding: 20px 20px;
	margin: 0 25px;
	border-radius: 5px;
}

.share-me span:hover {
	cursor: pointer;
	cursor: hand;
	color: #fff;
}

.share-me-link {
	color: #000;
}

#shareMeTwitter:hover {
	background-color: #00aced;
}

#shareMeFacebook:hover {
	background-color: #3b5998;
}

#shareMeGit:hover {
	background-color: #66B849;
}

.copyright {
	padding-bottom: 5px;
	font-weight: 100;
	width: 95px;
	margin: 0 auto;
}


.split-block-effect {
	display: block;
	text-decoration: none;
	position: relative;
	letter-spacing: 4px;
	text-transform: uppercase;
	transition: .3s;
	margin: 0 auto;
	font-weight: 100;
}

.split-block-effect:before,
.split-block-effect:after {
	bottom: 12%;
	content: '';
	width: 59%;
	position: absolute;
	top: 12%;
	z-index: -1;
	transition: .3s;
	/*background-color: #fc6454;*/
}

.split-block-effect:before {
	transform: translateY(14px);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.split-block-effect:after {
	left: 40%;
	transform: translateY(-13px);
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.split-block-effect:hover:before,
.split-block-effect:hover:after {
	transform: translateY(0px);
}

@media only screen and (max-width: 1200px) {
	.about-me-container-inner {
		width: 90%;
	}
}

@media only screen and (max-width: 1000px) {

	.skills-container {
		margin: 80px 0 0 0;
	}

	.skills-block-center {
		width: 50%;
	}

	.skills-block-container {
		width: 280px;
		margin-bottom: 80px;
	}

	.skills-block-circle {
		margin-left: 258px;
	}

	.about-me-container {
		height: auto;
	}

	.hidden-skills-section {
		height: 340px;
	}

	.quote-contianer {
		width: 350px;
	}

	.quote-line {
		font-size: 26px;
	}

	.headshot {
		display: none;
	}
}

@media only screen and (max-width: 850px) {
	.name-container {
		text-align: left;
		width: 80%;
		padding-left: 10%;
		margin: 0;
	}

	.my-name-is,
	.what-i-do {
		font-size: 28px;
	}

	.name {
		padding: 10px 0;
		font-size: 56px;
	}

	.title-overlay {
		background-color: rgba(0, 0, 0, 0.6);
	}
}

@media only screen and (max-width: 700px) {
	.menu-button {
		margin-right: 4px;
	}

	.name {
		font-size: 44px;
	}

	.my-name-is,
	.what-i-do {
		font-size: 24px;
	}

	.email-container {
		font-size: 20px;
	}

	.cool-project {
		font-size: 18px;
	}

	.meet-me-section {
		height: 150px;
	}

	.meet-me-section-title {
		font-size: 46px;
		padding-top: 44px;
	}

	.skills-block-center {
		width: 100%;
	}

	.skills-block-container {
		width: 468px;
	}

	.skills-block-circle {
		margin-left: 446px;
	}

	.hidden-skills-section {
		height: 686px;
	}

	.quote-contianer {
		padding-top: 12%;
	}

}

@media only screen and (max-width: 550px) {
	.name-container {
		width: 90%;
	}

	.my-name-is,
	.what-i-do {
		font-size: 20px;
	}

	.name {
		font-size: 30px;
	}

	.adele {
		font-size: 50px;
	}

	.about-me-description {
		font-size: 14px;
	}

	.skills-block-container {
		width: 274px;
	}

	.skills-block-circle {
		margin-left: 252px;
	}

	.skills-block {
		height: 84px;
		line-height: 84px;
		font-size: 40px;
	}

	.hidden-skills-section {
		height: 652px;
	}

	.name-container {
		padding-top: 30%;
	}

}

@media only screen and (max-width: 450px) {
	.contact-me-section {
		height: 350px;
	}

	.email-container,
	.share-me {
		margin-top: 80px;
	}

	.split-block-effect {
		font-size: 14px;
	}

	.cool-project-hide-mobile {
		display: none;
	}

	.share-me-title {
		font-size: 12px;
	}

	.meet-me-section {
		height: 120px;
	}

	.meet-me-section-title {
		font-size: 26px;
	}

	.quote-contianer {
		width: 255px;
	}

	.quote-line {
		font-size: 18px;
	}
}

@media only screen and (max-width: 350px) {
	.meet-me-section-title {
		font-size: 22px;
		padding-top: 36px;
	}

	.meet-me-section {
		height: 100px;
	}
}