html {
	margin:0;
	padding:0;
}

body {
	margin:0;
	padding:0;
	height:100vh;
	background-image:url('../images/Background.jpg');
	background-attachment:fixed;
	background-size:cover;
	background-repeat:no-repeat;
	background-color:#262626;
	overflow-x:hidden;
	-webkit-font-smoothing: antialiased;
}

@media only screen and (orientation: portrait) {
	body {
		background-image:url(../images/backgroundPortrait.jpg);
		background-size:cover;
		}
	}

body a {
	text-decoration:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	}

@font-face {
    font-family:'Bebas Neue'; /*a name to be used for linking in CSS file*/
    src: url('../Fonts/BebasNeue.otf'); /*URL to font*/
}

.sliderWrap {
	width:100%;
	overflow-x:hidden;
	}
	
.sliderBelt {
	width:200%;
	position:relative;
	}

.overlay {
	margin:0;
	padding:0;
	width:100%;
	height:100%;
	background-position:center;
	background-size:contain;
	background-image:url(../images/construction.jpg);
	background-repeat:no-repeat;
	background-color:#262626;
	position:fixed;
	z-index:10;
	text-align:center;
	color:#999;	
	}
	
h1, h2, h3, h4, h5 {
	margin:0;
	padding-top:0.5em;
	font-family:'Bebas Neue';
	font-weight:normal;
	font-size:3em;
	line-height:1;
}

h6 {
	margin:0;
	padding-bottom:0.5em;
	font-family:'Bebas Neue';
	font-weight:normal;
	font-size:1.25em;
}

p {
	color:#419944;
	line-height:1.5em;
	font-family:'Roboto', Arial, Helvitica, sans-serif;
	font-weight:300;
}


#imageSlider {
	margin:0;
	padding:0;
	position:relative;
	overflow:hidden;
	height:4em;
	background-image:url(../images/banner.jpg);
	background-position:center;
	background-size:cover;
	box-shadow:0 0.2em 0.1em rgba(0,0,0,1);
}

/* Menu styling */
#menu {
	margin:0;
	padding:0;
	padding-top:4em;
	width:50%;
	height:100vh;
	position:fixed;
	left:-25%;
	background:#222;
	overflow-y:auto;
	
	-webkit-transition:ease-in left 0.5s;
	transition:ease-in left 0.5s;
	}
	
input[type='checkbox']:checked~ #menu {
	left:0;
	}

.menuIconWrap {
	margin: 0;
	margin-right:1em;
	margin-top:1em;
	padding: 0;
	display:block;
	width: 2em;
	height: 2em;
	border-top-right-radius:0.5em;
	border-bottom-left-radius:0.5em;
	border-bottom-right-radius:0.5em;
	position: absolute;
	top:0;
	right:0;
	z-index:2;
	cursor:pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	
	transition: right ease;
	transition-delay:0.15s;
	}
	
.menuIconWrap svg {
	width:100%;
	height:100%;
	}

.menuIconWrap svg path {
	fill: rgb(58, 212, 61);
	}
	
.menuIconWrap:active {
	transform:scale3d(0.9, 0.9, 1);
	}
	
.backIconWrap {
	margin: 0;
	margin-right:1em;
	margin-top:1em;
	padding: 0;
	display:block;
	width: 2em;
	height: 2em;
	border-top-right-radius:0.5em;
	border-bottom-left-radius:0.5em;
	border-bottom-right-radius:0.5em;
	position: absolute;
	top:0;
	right:0;
	z-index:1;
	cursor:pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	}
	
.backIconWrap svg {
	width:100%;
	height:100%;
	}
	
.backIconWrap svg path {
	fill: rgb(58, 212, 61);
	}
	
.backIconWrap:active {
	transform:scale3d(0.9, 0.9, 1);
	}
	
/* menu icon animation styling */	

	
#iconCheck {
	display:none;
	}
	
.menuIcon {
	margin:auto;
	margin-bottom:0.25em;
	padding:0;
	width:2em;
	height:0.3em;
	position:relative;
	top:0.7em;
	background:#444;
	border-top-right-radius:0.3em;
	box-shadow: 0 0.1em 0.1em #222;
	}
	
.menuIcon:nth-child(3) {
	margin-bottom:0;
	}
	
input[type='checkbox']:checked + label .menuIcon {
	border-top-right-radius:0;
	border-bottom-right-radius:0.3em;
	box-shadow:0 0 0.2em #111 inset;
	}
	
#homeButton {
	margin:0;
	padding:0;
	height:2em;
	width:2em;
	position:absolute;
	top:1em;
	left:0.8em;
	background-image:url(../images/homeButton.png);
	background-position:center;
	background-repeat:no-repeat;
	background-size:contain;
	}
	
#homeButton:active {
	transform:scale3d(0.9, 0.9, 1);
	}
	
hr { /* change this to #menu hr if ever need a different hr in body content */
	margin-top:0;
	margin-bottom:0.5em;
	width:95%;
	height:0.25em;
	border:none;
	
	background:-webkit-gradient(linear, 0% 0%, 100% 0%, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)), color-stop(.4,#666),color-stop(.6,#666));
	background:-moz-linear-gradient(0% 0% 0deg,rgba(0, 0, 0, 0), #666666, rgba(0, 0, 0, 0) 100%);
	background:linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #666666 40%, #666666 60%, rgba(0, 0, 0, 0) 100%);
	}
	
/* END - Menu Styling*/

	
#bodyContent {
	margin:0;
	padding:0;
	padding-top:4em;
	padding-bottom:4em;
	box-sizing:border-box;
	width:50%;
	min-height:100vh;
	position:relative;
	left:0;
	text-align:center;
	background-image:url('../images/Background.jpg');
	background-size:contain;
	box-shadow:0 0 1em rgba(0,0,0,0.8);
	
	-webkit-transition:ease-in left 0.5s;
	transition:ease-in left 0.5s;
}

input[type='checkbox']:checked~ #bodyContent { /* Moving of content on menu open */
	left:25%;
}

/*input[type='checkbox']:checked~ #titleWrap { /* Moving of content on menu open
	left:25%;
}*/

@media only screen and (orientation: portrait) {
	#bodyContent {
		background-image:url(../images/backgroundPortrait.jpg);
		}
	}


/*Logo Bar styling*/
#titleWrap { 
	margin:0;
	margin-bottom:1em;
	padding:0;
	position:fixed;
	left:0;
	width:100%;
	height:4em;
	z-index:1;
	background-image:url(../images/BeukesDesign.png);
	background-position:center;
	background-size:50%;
	background-repeat:no-repeat;
	background-color:rgba(32, 32, 32, 1);
	overflow:hidden;
	box-shadow:0 0.25em 0.1em rgba(0,0,0,0.7);
	
	-webkit-transition:ease-in left 0.5s;
	transition:ease-in left 0.5s;
}

input[type='checkbox']:checked~ #titleWrap {
	left:50%;
	}
/* END Logo Bar */


.profile-pic {
	margin:auto;
	margin-top:2em;
	width:5em;
	height:5em;
	border-radius:2.5em;
	overflow:hidden;
	}
	
.profile-pic img {
	max-width:110%;
	}

.content {
	margin:auto;
	padding:0;
	width:100%;
	font-family:'Bebas Neue';
	text-align:center;
	color:#707070;
	/*clear:both;*/
	overflow:hidden;
	position:relative;
}

.content p {
	padding-left:1em;
	padding-right:1em;
	margin:0;
	}
	

#footer {
	width:100%;
	height:4em;
	position:absolute;
	bottom:0%;
	background-color:#202020;
	box-shadow:0 -5px 4px #101010;
}


/*skills.html specific*/
.skills-section {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
	
.skills-heading {
	position:relative;
	width:100%;
	}
	
.skillsBar {
	margin:auto;
	margin-top:1em;
	padding:0;
	width:90%;
	height:2em;
	position:relative;
	overflow:hidden;
	
	background:-webkit-gradient(linear, 0% 100%, 100% 100%, from(#419944), to(#66F06B));
	background:-moz-linear-gradient(0% 0% 0deg,#419944, #66F06B);
	background:linear-gradient(to right, #419944 0%, #66F06B 100%);
	/*box-shadow:0.2em -0.1em 0.5em rgba(32, 32, 32, 0.6) inset;*/
	}
	
.skillsText {
	margin:0;
	margin-top: 0.1em;
	margin-left: 0.5em;
	padding:0;
	height:auto;
	position:absolute;
	font-size:1.5em;
	color:#AEAEAE;
	text-shadow:0 0 0.1em #111;
	z-index:1;
	}
	
/*skills.html animation effects*/
#skillsHTML5 {
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	height:100%;
	left:70%;
	background:rgba(32, 32, 32, 1);
	
	animation:skillHTML5Fill 1.8s ease-out;
	-webkit-animation:skillHTML5Fill 1.8s ease-out;
	}
	
@keyframes skillHTML5Fill {
	0% {left:0%;}
	100% {left:70%;}
	}
	
@-webkit-keyframes skillHTML5Fill {
	0% {left:0%;}
	100% {left:70%;}
	}

#skillsLearning {
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	height:100%;
	left:85%;
	background:rgba(32, 32, 32, 1);
	
	animation:skillLearnFill 1.9s ease-out;
	-webkit-animation:skillLearnFill 1.9s ease-out;
	}
	
@keyframes skillLearnFill {
	0% {left:0%;}
	100% {left:85%;}
	}

@-webkit-keyframes skillLearnFill {
	0% {left:0%;}
	100% {left:85%;}
	}
	
#skillsNerd {
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	height:100%;
	left:95%;
	background:rgba(32, 32, 32, 1);
	
	animation:skillNerdFill 1s ease-out;
	-webkit-animation:skillNerdFill 1s ease-out;
	}

@keyframes skillNerdFill {
	0% {left:0%;}
	100% {left:95%;}
	}
	
@-webkit-keyframes skillNerdFill {
	0% {left:0%;}
	100% {left:95%;}
	}
	
#skills3D {
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	height:100%;
	left:60%;
	background:rgba(32, 32, 32, 1);
	
	animation:skill3DFill 1.2s ease-out;
	-webkit-animation:skill3DFill 1.2s ease-out;
	}

@keyframes skill3DFill {
	0% {left:0%;}
	100% {left:60%;}
	}
	
@-webkit-keyframes skill3DFill {
	0% {left:0%;}
	100% {left:60%;}
	}
	
#skillsArtDesign {
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	height:100%;
	left:75%;
	background:rgba(32, 32, 32, 1);
	
	animation:skillAnimationFill 0.8s ease-out;
	-webkit-animation:skillArtDesignFill 0.8s ease-out;
	}
	
@keyframes skillArtDesignFill {
	0% {left:0%;}
	100% {left:75%;}
	}
	
@-webkit-keyframes skillArtDesignFill {
	0% {left:0%;}
	100% {left:75%;}
	}
	
#skillsUI {
	margin:0;
	padding:0;
	position:relative;
	width:100%;
	height:100%;
	left:65%;
	background:rgba(32, 32, 32, 1);
	
	animation:skillUIFill 1.5s ease-out;
	-webkit-animation:skillUIFill 1.5s ease-out;
	}
	
@keyframes skillUIFill {
	0% {left:0%;}
	100% {left:65%;}
	}
	
@-webkit-keyframes skillUIFill {
	0% {left:0%;}
	100% {left:65%;}
	}
/* END skills.html specific*/

	
/* rates.html collapsing paragraphs */
#information, #smallSite, #mediumSite, #largeSite, #hosting, #info3d, #print3d, #art {
	display:none;
	}
	
.content 
#information+ label + h1 + h6 + p,
#mediumSite+ label + h1 + h6 + p,
#largeSite+ label + h1 + h6 + p,
#hosting+ label + h1 + h6 + p,
#info3d+ label + h1 + h6 + p,
#print3d+ label + h1 + h6 + p,
#art+ label + h1 + h6 + p {
	margin:auto;
	width:calc(100% - 4em);
	max-height:0vh;
	overflow:hidden;
	border:1px solid #707070;
	border-radius:0.5em;
	padding-top:2em;
	
	transition: ease 0.5s;
	}
	
.content #smallSite+ label + h1 + h6 + p {
	margin:auto;
	width:calc(100% - 4em);
	max-height:0vh;
	overflow:hidden;
	border:1px solid #707070;
	border-radius:0.5em;
	padding-top:2em;
	
	transition: ease 0.5s;
	}

html:lang(en)>body  .content label {
	display:none;
	}  


.content	
#information:checked+ label + h1+ h6+ p,
#smallSite:checked+ label+ h1+ h6+ p,
#mediumSite:checked+ label+ h1+ h6+ p,
#largeSite:checked+ label+ h1+ h6+ p,
#hosting:checked+ label+ h1+ h6+ p,
#info3d:checked+ label+ h1+ h6+ p,
#print3d:checked+ label+ h1+ h6+ p,
#art:checked+ label+ h1+ h6+ p {
	max-height:60vh;
	overflow-y:auto;
	}

.content
#information:checked + label,
#smallSite:checked + label, 
#mediumSite:checked + label,
#largeSite:checked + label,
#hosting:checked + label,
#info3d:checked + label,
#print3d:checked + label,
#art:checked + label {
	background-image:url(../images/collapse.png);
	}
	
.collapseButton {
	margin: 0;
	padding: 0;
	width: 1em;
	height: 1em;
	border:1px solid;
	border-radius:1em;
	position: absolute;
	right:0.4em;
	top:7.2em;
	background:#222;
	cursor:pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	background-image:url(../images/expand.png);
	background-position:center;
	background-size:50%;
	background-repeat:no-repeat;
	}


.collapseButton:active {
	transform:scale3d(0.9, 0.9, 1);
	}
/* END of rates.html styling*/
	
	
.linkWrap {
	padding:0;
	margin:0;
	clear:both;
}

.link {
	padding:0;
	margin-left:5%;
	width:95%;
	height:auto;
	color:#419944;
	font-size:3em;
	font-family:'Bebas Neue';
	cursor:pointer;
	position:relative;
	overflow-x:hidden;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

/*Contact form styling*/
.errors {
	margin:auto;
	margin-bottom:1em;
	padding:0.5em;
	width:calc(95% - 1em);
	background:#D35555;
	border-radius:0.5em;
	}
	
.errors p {
	color:#262626;
	font-weight:Bold;
	}
	
.thanks {
	margin:auto;
	margin-bottom:1em;
	padding:0.5em;
	width:calc(95% - 1em);
	background:#262626;
	border-radius:0.5em;
	border:0.1em solid #419944;
	}
	
#contactForm {
	margin:1em 0 0 0;
	}

#contactForm input {
	margin:0;
	margin-bottom:1em;
	padding:0;
	width:95%;
	height:4em;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	background:#262626;
	color:#b8ff34;
	border-radius:0.5em;
	border:0.1em solid #666;
}

#contactForm input:nth-child(1) { /*titlewrap margin was cutting of box-shadow*/
	margin-top:0.2em;
	}

#contactForm input:focus {
	border-radius:0.5em;
	border:0.1em solid #419944;
	outline:none;
}

#contactForm textarea {
	margin:0;
	margin-bottom:2em;
	padding:0.5em;
	width:calc(95% - 1em);
	height:7em;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	background:#262626;
	color:#b8ff34;
	border-radius:0.5em;
	border:0.1em solid #666;
	
	resize:none;
}

#contactForm textarea:focus {
	border-radius:0.5em;
	border:0.1em solid #419944;
	outline:none;
}

#contactForm #contactFormButton {
	margin:0;
	padding:0;
	width:50%;
	font-family:'Bebas Neue';
	color:#262626;
	background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#66F06B), to(#419944));;
	cursor:pointer;
	border:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

#contactForm #contactFormButton:focus {
	border-radius:0.5em;
	border:none;
	outline:none;
}

#contactForm #contactFormButton:active {
	transform:scale3d(0.9, 0.9, 1);
	border-color:#262626;
}

.button:hover {
	box-shadow:0 0 4px #34e338; 	
}
/*END of contact form styling*/


/*Portfolio styling*/
#innerBox {
	margin:0;
	padding:0;
	position:relative;
	width:90%;
	height:90%;
	left:5%;
	top:5%;
	}
	
#left {
	margin:0;
	padding:0;
	position:relative;
	float:left;
	width:50%;
	height:100%;
	-webkit-perspective:1500;
	-webkit-transform:scale(0.95);
	
	-webkit-transition: all ease 0.4s;
	}
	
#left:hover  {
	-webkit-transform:scale(1);
	}
	
#right {
	margin:0;
	padding:0;
	position:relative;
	float:right;
	width:50%;
	height:100%;
	-webkit-perspective:1500;
	-webkit-transform:scale(0.95);
	
	-webkit-transition: all ease 0.4s;
	}
	
#right:hover  {
	-webkit-transform:scale(1);
	}
	
	
#img1 {
	margin:0;
	padding:0;
	position:absolute;
	top:2%;
	left:2%;
	width:97%;
	height:47%;
	background:#666;
	box-shadow:0 0 0.4em #090;
	overflow:hidden;
	
	-webkit-transition: all ease 0.2s;
	
	}

#img1:hover {
	top:0%;
	left:0%;
	width:99%;
	height:49%;
	border:0.1em solid #b8ff34;
	box-shadow:0 0 0.5em #b8ff34;
	background:#888;
	-webkit-transform:rotateY(10deg);
	}
	
#img1 img {
	position:relative;
	display:block;
	width:100%;
	height:100%;
	}
	
#img2 {
	margin:0;
	padding:0;
	position:absolute;
	bottom:2%;
	left:2%;
	width:97%;
	height:47%;
	background:#666;
	box-shadow:0 0 0.4em #090;
	
	-webkit-transition: all ease 0.2s;
	
	}

#img2:hover {
	bottom:0%;
	left:0%;
	width:99%;
	height:49%;
	border:0.1em solid #b8ff34;
	box-shadow:0 0 0.5em #b8ff34;
	background:#888;
	-webkit-transform:rotateY(10deg);}
	
#img3 {
	margin:0;
	padding:0;
	position:absolute;
	top:2%;
	right:2%;
	width:97%;
	height:47%;
	background:#666;
	box-shadow:0 0 0.4em #090;
	
	-webkit-transition: all ease 0.2s;
	
	}

#img3:hover {
	top:0%;
	right:0%;
	width:99%;
	height:49%;
	border:0.1em solid #b8ff34;
	box-shadow:0 0 0.5em #b8ff34;
	background:#888;
	-webkit-transform:rotateY(-10deg);}
	
#img4 {
	margin:0;
	padding:0;
	position:absolute;
	bottom:2%;
	right:2%;
	width:97%;
	height:47%;
	background:#666;
	box-shadow:0 0 0.4em #090;
	
	-webkit-transition: all ease 0.2s;
	
	}

#img4:hover {
	bottom:0%;
	right:0%;
	width:99%;
	height:49%;
	border:0.1em solid #b8ff34;
	box-shadow:0 0 0.5em #b8ff34;
	background:#888;
	-webkit-transform:rotateY(-10deg);}
/*end of portfolio styling*/


/* footer style */
#footerContent {
	margin:auto;
	padding:0;
	width:900px;
}

#profiles {
	margin:auto;
	margin-top:0.5em;
	padding:0;
	width:450px;
	text-align:left;
	float:left;
}

#profiles img {
	width:1.8em;
}

#sharing {
	margin:auto;
	margin-top:0.7em;
	padding:0;
	width:450px;
	text-align:right;
	float:right;
}
