@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@700&display=swap');
@charset "utf-8";
:root{
	--tTime: 0.5s;
	--themeColour: #1e8cff;
	--themeSecondryColour: #292929;
}

.colourText
{
	color: var(--themeColour);
	transition: color var(--tTime);
}
.colourBg
{
	background-color: var(--themeColour);
}

body::-webkit-scrollbar,
body *::-webkit-scrollbar{
	width: 7px;
	height: 7px;
/*	background-color: var(--themeColour);*/
}
body.dark::-webkit-scrollbar-track,
body.dark *::-webkit-scrollbar-track {
	background: #303030;        /* color of the tracking area */
}
body.light::-webkit-scrollbar-track,
body.light *::-webkit-scrollbar-track {
	background: #E0E0E0;        /* color of the tracking area */
}
body::-webkit-scrollbar-thumb,
body *::-webkit-scrollbar-thumb{
	border-radius: 10px;
	background-color: var(--themeColour);
}
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: 'Alata', sans-serif;
/*	font-family: "Comic sans ms";*/
	word-spacing: 2px;
	font-weight: normal;
	color: white;
	transition: background var(--tTime);
}
a
{
	text-decoration: none;
}
img
{
    pointer-events: none;
}

.mainpageContainer {
	width: 100%;
	display: flex;
	background-color: inherit;
}
.header {
	width: 22%;
	/*	max-width: 300px;*/
	top: 0;
	z-index: 10000;
	position: sticky;
	height: 100vh;
	min-width: 250px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	/*	justify-content: center;*/
	align-items: center;
/*	border-right: 2px solid rgba(55,55,55,1.00);*/
	box-shadow: inset -1px 0 10px rgba(255,255,255,0.01), inset 3px 0 2px rgba(0,0,0,0.01);
	transition: ease 0.5s;
	background-color:rgba(41,41,41,1.00);
	background-image: linear-gradient(90deg, black, transparent);
}
.headerAfter,.headerBefore{
	content: '';
	height: 100%;
	width: 100%;
	left: -100%;
	top: 0;
	opacity: 0.15;
	position: fixed;
	z-index: 1000;
	transition: ease 0.5s;
/*		background-color: inherit;*/
/*		filter: invert(100);*/
}
.menu
{
	display: none;
	width: 50px;
	height: 40px;
	background-color: inherit;
	top: 40px;
	left: 30px;
	position: fixed;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	cursor: pointer;
	box-shadow: 0 0 15px -3px rgba(0,0,0,0.2);
}
.headerNameContainer {
	width: 90%;
	padding: 10px 10px;
	user-select: none;
	position: relative;
	margin: 30px auto 0px;
}
.headerNameContainer img {
	width: 100%;
	display: block;
	transition: filter var(--tTime);
}



.headerNameContainer .shapes
{
	animation: shake 6s ease infinite;
}





.shapes{
	transition: border var(--tTime);
	width: 25px;
	height: 25px;
	position: absolute;
	border-color: var(--themeColour);
	border-style: solid;
	border-width: 4px;
}
.shape1
{
	top: -10px;
	right: -10px;
	border-bottom: none;
	border-left: none;
}
.shape2
{
	bottom: -10px;
	left: -10px;
	border-top: none;
	border-right: none;
/*	transform: rotate(180deg);*/
}
.links {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.link
{
	font-size: 20px;
	padding: 7px 15px;
	color: inherit;
	font-weight: bold;
/*	text-align: center;*/
	text-decoration: none;
	transition: color var(--tTime);
}
.link i
{
	font-size: 15px;
	margin-right: 4px;
}
.link:not(:last-child)
{
	margin-bottom: 2px;
	border-bottom: 1.5px solid rgba(255,255,255,0.08);
}
.link.active
{
	color: var(--themeColour);
}
.color{
	color: var(--themeColour);
}



/*

right side work

*/
.mainContainer{
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	transition: background 2s;
	background-image: url("../img/background.png");
}











/*

colour settings


*/
.colourSettings
{
	top: 40px;
	right: 30px;
	position: fixed;
}
.colourSettings > div
{
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 10px rgba(255,255,255,0.05);
	border-radius: 50px;
	font-size: 15px;
	background-color: #292929;
	cursor: pointer;
}
.colourSettings > div i
{
	pointer-events: none;
}
.day_night
{
	margin-top: 15px;
}
.colourSelect{
	position: relative;
}
.coloursBox
{
	width: max-content;
	max-width: 214px;
	border-radius: 4px;
	padding: 7px;
	justify-content: center;
	align-items: center;
	display: none;
/*	top: 50%;*/
	right: 130%;
	position: absolute;
	transform:  scaleX(0);
	background-color: #2B2B2B;
	flex-wrap: wrap;
	cursor: auto;
	transform-origin: right;
}
.coloursBox.open
{
	display: flex;
	animation: animateTo 0.3s linear 1;
	animation-fill-mode: forwards;
}

.coloursBox::before
{
	z-index: -1;
	content: '';
	top: 50%;
	right: -3px;
	height: 7px;
	width: 7px;
	background-color: inherit;
	transform: translate(0,-50%) rotate(45deg);
	position: absolute;
}
.colourCircle
{
	display: flex;
	height: 30px;
	min-width: 30px;
	margin:5px;
	background-color: #ff0;
	border-radius: 30px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}


/*


Slides work


Home slide


*/
.mainWebsite{
	display: flex;
	width: 100%;
	position: relative;
}
.slides
{
	width: 100%;
	overflow-x: hidden;
	position: relative;
}
.slide{
	transform: translateX(100%);
	width: 100%;
	transition: ease 0.5s;
	display: none;
}
.slide.active{
	display: block;
	animation: animateSlide 0.5s ease 1;
	animation-fill-mode: forwards;
	animation-delay: 0.4s;
}
.homeSlide{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 60px;
	position: relative;
}
.homeSlideLeft{
	flex: 3;
	padding-right: 30px;
}
.smallHeadingText{
	line-height: normal;
	font-size: 26px;
	font-weight: bold;
	margin: 0 0 20px;
}
.typingJob{
	margin-left: 10px;
	width: max-content;
	position: relative;
}
.typingJob::after{
	content: '';
	height: 42px;
	width: 5px;
	left: 100%;
	bottom: 0;
	background-color: black;
	position: absolute;
	animation: blink 0.5s ease infinite;
}
.homePara{
	font-size: 18px;
	margin-bottom: 60px;
}
.button
{
	padding: 12px 25px 15px;
	width: max-content;
	display: block;
	color: white;
	font-size: 16px;
	font-weight: bold;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: background var(--tTime);
	background-color: var(--themeColour);
}
.button:hover
{
    color: white;
    background-color: black;
}



.homeSlideRight{
	flex: 2;
	user-select: none;
	padding: 0 30px;
}
.profileImgBox{
	margin: auto;
	width: 80%;
	max-width: 350px;
	position: relative;
}
.homeSlideRight img{
	width: 100%;
	margin: auto;
	min-width: 150px;
	display: block;
	border-radius: 7px;
	z-index: 500;
	position: relative;
}
.profileShape{
	z-index: 2;
	transition: border var(--tTime);
	width: 22%;
	height: 20%;
	position: absolute;
	border-color: var(--themeColour);
	border-style: solid;
	border-width: 10px;
}
.profileShape1
{
	top: -20px;
	left: -20px;
	border-bottom: none;
	border-right: none;
}
.profileShape2
{
	bottom: -20px;
	right: -20px;
	border-top: none;
	border-left: none;
/*	transform: rotate(180deg);*/
}
.profileShape
{
	animation: shake 20s ease infinite;
	animation-direction: reverse;
}

















.headerNameContainer::after,
.profileImgBox::after
{
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 600;
	background-color: rgba(0,0,0,0);
	position: absolute;
}


/*


About Slide work



*/

.aboutSlide,
.skillsSlide,
.contactSlide,
.portfolioSlide
{
	justify-content: center;
	min-height: 100vh;
	align-items: center;
	display: flex;
	width: 100%;
}


.aboutSlideContainerBox,
.skillsSlideContainer,
.portfolioSlideContainer,
.contactSlideContainer
{
	width: 100%;
	padding: 80px 30px;
	min-height: 100vh;
}
.titleHeadingBox{
	font-weight: bold;
	font-size: 40px;
	margin-bottom: 30px;
}
.lines{
	width: 40px;
	height: 4px;
	margin-top: 6px;
	display: block;
	transform-origin: left;
	border-radius: 4px;
	transition: var(--tTime);
}
.line1
{
	animation: stretchWidth 5s ease-in infinite;
	animation-delay: 0s;
}
.line2
{
	animation: stretchWidth 5s ease-in infinite;
	animation-direction: reverse;
	animation-delay: 2s;
}
.headingText{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 15px;
}
.aboutInfoContainer
{
	padding: 30px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.aboutInfo
{
	margin: 10px 0;
	padding: 10px 10px 12px;
	width: 49%;
	position: relative;
	border-radius: 5px;
/*	box-shadow: 0px 0px 5px -2px;*/
	box-shadow: 0px 0px 4px -2px;
}
.aboutInfo:hover{
}
.aboutInfo a{
	color: inherit;
	transition: var(--tTime);
}
.aboutInfo div{
	display: inline;
}
.aboutHeading{
	font-weight: bold;
}
.aboutText{
	font-size: 14px;
}
.aboutButton{
	margin-bottom: 50px;
}
.aboutTimelineContainer{
	padding: 30px 0;
	width: 100%;
	margin-top: 60px;
	border-radius: 10px;
	box-shadow: 0 0 4px -2px;
	position: relative;
}
.aboutTimeline{
	position: relative;
	padding-left: 60px;
}
.timelineEntry{
	padding: 10px 0 0;
	margin-bottom: 20px;
	position: relative;
}
.aboutTimeline::before{
	content: '';
	top: 0;
	left: 30px;
	height: 100%;
	width: 6px;
	border-radius: 3px;
	background-color: var(--themeColour);
	position: absolute;
	transform: translate(-50%,0);
}
.timelineEntry::after{
	content: '';
	top: 28px;
	left: -30px;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background-color: var(--themeColour);
	position: absolute;
	box-shadow: 0 0 5px -2px;
	transform: translate(-50%,-50%);
}
.bold
{
	font-weight: bold;
}
.timelineHeading{
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 7px;	
}
.timelineDesignation{
	font-size: 20px;
	margin-bottom: 7px;
}
.timelineDetails{
	display: flex;
	flex-wrap: wrap;
}
.timelineDetailsColumn{
	font-size: 14px;
	margin-bottom: 7px;
	margin-right: 20px;
}
.timelineFrom{
	font-size: 1rem;
	font-weight: bold;
}


/*.aboutInfo, .aboutTimelineContainer*/
.changeBackground
{
	background-color: #282828;
	transition: var(--tTime);
}



/*

Skills Slide work

*/


.skillBars
{
	max-width: 1200px;
	padding-top: 30px;
	width: 100%;
	position: relative;
}
.skill
{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	margin-bottom: 25px;
}
.skillHeading
{
	width: 150px;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	text-transform: uppercase;
}
.skillHeading::after
{
	content: ":";
	top: 40%;
/*	top: 50%;*/
	right: 20px;
	transform: translate(0, -50%);
	position: absolute;
}
.skillbarContainer
{
	height: 20px;
	margin-bottom: 5px;
	width: calc(100% - 150px);
	position: relative;
	border-radius: 3px;
	transition: var(--tTime);
	background-color: #333333;
	box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
.skillbar
{
	height: 100%;
	position: absolute;
	border-radius: inherit;
	overflow: hidden;
	transition: var(--tTime);
	width: var(--dataPercentage);
	background-color: var(--themeColour);
}
.skillbar::after
{
	content: "";
	width: 140%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 50%;
	background-image: repeating-linear-gradient(45deg, white 0 20px, transparent 20px 40px);
	border-radius: inherit;
	position: absolute;
	background-position: -57px;
	animation: animateBackground 5s linear infinite;
}





/*

Portfolio Work

*/

.portfolioBoxContainer
{
	width: 100%;
	position: relative;
}
.portfolioBox
{
	padding: 20px 0;
	width: 100%;
	display: flex;
/*	justify-content: space-evenly;*/
	flex-wrap: wrap;
}
.projectColumn
{
	width: 33.3%;
/*	min-width: 200px;*/
	padding: 15px 10px;
	position: relative;
}
.projectColumn.hide
{
	display: none;
}
.project
{
/*	border-radius: 10px 10px 0 0;*/
	width: 100%;
	position: relative;
}
.project a
{
	width: 100%;
	padding-bottom: 65%;
	display: block;
	overflow: hidden;
	color: inherit;
	position: relative;
	border-radius: inherit;
}
.project img
{
	width: 100%;
	display: block;
	top: 50%;
	left: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(1.25);
	position: absolute;
}

.protfolioTitleRow {
	padding: 0px 12px 55px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.filterBtn{
	width: max-content;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	position: relative;
	box-shadow: 0 0 6px rgba(0,0,0,0.1);
	background-color: var(--themeSecondryColour);
}

.filterMenu
{
	top: 0%;
	right: calc(100% + 20px);
	border-radius: 4px;
	width: max-content;
	position: absolute;
	z-index: 100;
	display: none;
	transform-origin: right;
	transform: scaleX(0);
	box-shadow: 0 0 6px rgba(0,0,0,0.1);
	background-color: var(--themeSecondryColour);
}
.filterBtn.open .filterMenu
{
	display: block;
	animation: animateTo 0.3s linear 1;
	animation-fill-mode: forwards;
}
.filterMenu::before
{
	content: "";
	top: 15px;
	right: -5px;
	height: 15px;
	width: 15px;
	z-index: -1;
	transform: rotate(45deg);
	background-color: var(--themeSecondryColour);
	position: absolute;
}
.filterOption
{
	padding: 10px 18px;
	border-radius: inherit;
}
.filterOption:hover
{
	background-color: #474747;
}


body.light .filterOption:hover
{
	background-color: #f5f5f5;
}


.projectName
{
	width: 100%;
	font-weight: bold;
	bottom: 0%;
	left: 0%;
	letter-spacing: 1px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	transition: var(--tTime);
	position: absolute;
}
.project:hover .projectName
{
	height: 100%;
}
.overlayBox
{
	width: 100%;
	height: 40px;
	bottom: 0px;
	left: 0px;
	z-index: 100;
	backdrop-filter: blur(15px);
/*	transform: scale(0);*/
	position: absolute;
	transition: var(--tTime);
}
.project:hover .overlayBox
{
	height: 100%;
}


body.dark .overlayBox
{
	background-color: rgba(0,0,0,0.8);
}
body.light .overlayBox
{
	background-color: rgba(255,255,255,0.8);
}


/*

Contact slide work

*/

.contactDetails
{
	text-align: center;
	line-height: 1;
}
.contactHeading
{
	font-size: 35px;
	padding: 0 0 10px;
}
.contactPara
{
	margin: 10px 0 20px;
	font-size: 20px;
	text-transform: uppercase;
}
.contactBoxesContainer
{
	padding: 10px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.contactBox
{
	padding: 10px 15px;
	width: 45%;
	display: flex;
	min-width: 250px;
/*	max-width: 250px;*/
	justify-content: center;
/*	max-width: 280px;*/
}
.cBox
{
/*	padding: 10px;*/
	width: 100%;
/*	height: 200px;*/
	padding: 40px 20px;
/*	min-width: 280px;*/
/*	font-size: 22px;*/
	border-radius: 10px;
}
.cBox i
{
	font-size: 30px;
}
.boxTitle{
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0;
}
.boxDetail{
	height: 20px;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.contactForm
{
	padding: 80px 0 0;
	width: calc(90% - 30px);
	margin: auto;
	position: relative;
}
.contactFormRow
{
	display: flex;
	justify-content: center;
}
.contactFormCol
{
	width: 100%;
	padding: 10px;
	text-align: left;
}
.contactFormCol label
{
	margin-bottom: 10px;
	display: block;
	font-size: 15px;
	font-weight: bold;
}
.contactFormCol input,
.contactFormCol textarea
{
	border: none;
	outline: none;
	transition: var(--tTime);
	font-family: inherit;
}
.contactFormCol input:not([type="submit"]), .contactFormCol textarea
{
	width: 100%;
	color: inherit;
	font-size: 18px;
	padding: 10px 15px;
	border-radius: 10px;
	box-shadow: 0 0 2px rgba(255,255,255,0.1);
	background-color: var(--themeSecondryColour);
}
.contactFormCol textarea
{
	resize: vertical;
	min-height: 130px;
}
.contactFormCol input[type="submit"]
{
	margin: auto;
	margin-top: 20px;
}
.contactForm .contactHeading
{
	margin-bottom: 30px;
}

body.light .contactFormCol input,
body.light .contactFormCol textarea
{
	box-shadow: 0 0 6px rgba(0,0,0,0.3);
}






















/*



Image Pop Up Menu



*/
.popUpImageContainer
{
	height: 100vh;
	width: 100%;
	top: 0;
	left: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 40px;
	display: none;
	z-index: 100000;
	position: fixed;
	align-items: flex-start;
	justify-content: center;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	backdrop-filter: blur(15px);
	background-color: rgba(0,0,0,0.35);
}
.popUpContainer
{
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.popUpImageContainer.open
{
	display: flex;
}
.popUpImageBox
{
	width: 100%;
	max-width: 580px;
	transform: scale(0);
	position: relative;
}
.popUpImageBox::after
{
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 200;
	background-color: transparent;
	position: absolute;
}
.popUpImageBox img
{
	width: 100%;
	display: block;
	pointer-events: none;
}
.popUpImageContainer.open .popUpImageBox
{
	animation: animateTo 0.3s linear 1;
	animation-fill-mode: forwards;
}
.popUpCloseBtn
{
	z-index: -1;
	top: 0;
	right: -10px;
	font-size: 18px;
	height: 35px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	transition: right ease 0.3s;
	background-color: #f00;
	color: white;
	cursor: pointer;
}
.popUpImageBox:hover .popUpCloseBtn
{
	right: -35px;
}







/*

Message to show

*/

.messageToShow
{
	user-select: none;
	min-height: 100vh;
	top: 0%;
	left: 0%;
	width: 100%;
	text-align: center;
	z-index: 10001;
	box-shadow: 0 0 5px black;
	position: fixed;
	display: none;
	align-items: center;
	font-size: 24px;
	justify-content: center;
	backdrop-filter: blur(20px);
	background-color: rgba(0,0,0,0.6);
}
.messageToShow.open
{
	display: flex;
}
body.light .messageToShow
{
	background-color: rgba(255,255,255,0.6);
}









/*


Loading work


*/








.loadingAnimation
{
	padding: 10px 0;
	background-color: #1A1A1A;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	position: fixed;
	z-index: 100000;
	transition: var(--tTime);
}
.dots{
	height: 100px;
	padding: 10px;
	display: flex;
	align-items: center;
	position: relative;
}
.dot{
	width: 7px;
	height: 7px;
	margin: 3px;
	border-radius: 100px;
	animation: stretchHeight 1s ease-in-out infinite;
	animation-delay: calc(0.9 * var(--transitionDelay) / 15);
	transition: var(--tTime);
}
.nameLogo
{
	height: 80px;
	width: 80px;
	padding: 15px;
	margin-bottom: 20px;
/*	top: -100%;*/
/*	left: 50%;*/
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 40px;
	background-color: #fff;
	user-select: none;
/*	transform: translate(-50%, 0);*/
	position: relative;
/*	filter: invert(100%);*/
}
.nameLogoAfter,
.nameLogoBefore{
	content: '';
	height: 100%;
	width: 100%;
	z-index: -1;
	border-radius:inherit;
	position: absolute;
	opacity: 0.5;
	transition: var(--tTime);
	animation: scaleAll 2s linear infinite;
}
.nameLogoAfter{
	animation-delay: 1s;
}
.nameLogo img
{
	width: 100%;
	pointer-events: none;
	display: block;
}








body.dark {
	--themeSecondryColour: #292929;
	color: white !important;
/*	background-color: #1A1A1A !important;*/
/*	background-image: linear-gradient(180deg, #292929, black);*/
/*	background-image: linear-gradient(180deg, #000000, #1e1e1e);*/
	background-image: linear-gradient(180deg, #070707, #1e1e1e);
}
body.dark .headerNameContainer img {
	filter: invert(100%) !important;
}
body.dark .typingJob::after{
	background-color: white;
}
body.dark .aboutInfo a,
body.dark .linkColour
{
	color: #ffffff;
}
body.dark .textShadow
{
    text-shadow: 1px 1px 2px black;
}






body.light {
	color: #171717 !important;
	--themeSecondryColour: #ffffff;
/*	background-color: #fafafa !important;*/
/*	background-color: #fffefa !important;*/
/*	background-color: #fcfcfc !important;*/
/*	background-color: #fff !important;*/
/*	background-image: linear-gradient(to bottom, #ffffff, #f0f0f0);*/
/*	background-image: linear-gradient(to top, #ffffff, #f0f0f0);*/
/*	background-image: linear-gradient(to top, #fafafa, #f0f0f0);*/
	background-image: linear-gradient(to top, #f0f0f0, #fff, #f0f0f0);
/*	background-image: linear-gradient(to bottom, #f0f0f0, #afafaf);*/
}

body.light .mainContainer
{
	transition: background 2s;
	background-image: url("../img/background_white.png");
}

body.light .header{
	border: none;
	background-color: white;
	box-shadow: 5px 0 10px rgba(0,0,0,0.1);
	background-image: linear-gradient(90deg, #e3e3e3, transparent);
}
body.light .link:not(:last-child)
{
	border-bottom: 1.5px solid rgba(0,0,0,0.08);
}
body.light .colourSettings > div
{
	background-color: white;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
body.light .coloursBox
{
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
body.light .loadingAnimation{
	background-color: #fafafa;
}
body.light .aboutInfo a,
body.light .linkColour{
	color: #171717;
}
body.light .skillbarContainer{
	background-color: #FAFAFA;
}
/*body.light .aboutInfo, body.light .aboutTimelineContainer*/
body.light .changeBackground
{
	background-color: #FFFFFF;
	box-shadow: 0 0 6px rgba(0,0,0,0.1) !important;
}
body.light .textShadow
{
    text-shadow: none;
}



/*

animations

*/

@keyframes shake{
	0%,100%
	{
		transform: translate(-10%,-10%);
	}
	25%
	{
		transform: translate(-10%, 10%);
	}
	50%
	{
		transform: translate(10%, 10%);
	}
	75%
	{
		transform: translate(10%, -10%);
	}
}
@keyframes animateTo{
	
	to{
		transform: scale(1);
	}
} 
@keyframes blink{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
@keyframes stretchHeight
{
	50%
	{
		height: 100%;
	}
}
@keyframes scaleAll{
	to{
		opacity: 0;
		transform: scale(150%);
	}
}
@keyframes toRight{
	to{
		left: 0;
	}
}
@keyframes toleft{
	to{
		left: -100%;
	}
}
@keyframes animateSlide{
	to{
		transform: translate(0);
	}
}
@keyframes stretchWidth{
	50%{
		width: 80px;
/*		transform: scaleX(200%);*/
	}
}
@keyframes animateBackground{
	100%{
		background-position: 0;
	}
}

/*

header responsive

*/
@media only screen and (max-width: 985px)
{
	.header
	{
		position: fixed;
		width: 100%;
		overflow-y: auto;
		overflow-x: inherit;
		left: -100%;
		min-width: unset;
		padding-top: 60px;
		z-index: 10000;
		transition: ease 0.5s;
	}
	.headerAfter,.headerBefore{
		content: '';
		height: 100%;
		width: 100%;
		left: -100%;
		top: 0;
		display: block;
		opacity: 0.15;
		position: fixed;
		z-index: 1000;
		transition: ease 0.5s;
/*		background-color: inherit;*/
/*		filter: invert(100);*/
	}
	.header.open{
/*
		animation: toRight 0.5s ease 1;
		animation-fill-mode: forwards;
		animation-delay: 0.2s;
*/
		left: 0;
		transition-delay: 0.2s;
	}
	.header.open ~ .headerAfter{
/*
		animation: toRight 0.5s ease 1;
		animation-fill-mode: forwards;
		animation-delay: 0s;
*/
		left: 0;
		transition-delay: 0s;
	}
	.header.open ~ .headerBefore{
/*
		animation: toRight 0.5s ease 1;
		animation-fill-mode: forwards;
		animation-delay: 0.1s;
*/
		left: 0;
		transition-delay: 0.1s;
	}
	.header.close{
		transition-delay: 0s;
	}
	.header.close ~ .headerAfter{
		transition-delay: 0.1s;
	}
	.header.close ~ .headerBefore{
		transition-delay: 0.2s;
	}
	.header div
	{
		max-width: 300px;
	}
	.menu
	{
		display: flex;
	}
	.aboutSlideContainerBox,
	.skillsSlideContainer,
	.portfolioSlideContainer,
	.contactSlideContainer
	{
		padding: 100px 30px;
	}
}
@media only screen and (max-width: 735px){
	.homeSlide{
		flex-wrap: wrap;
		padding: 20px 30px;
	}
	.homeSlide > div{
		padding: 80px 0 20px;
		flex: auto;
	}
	.skillbarContainer
	{
		width: 100%;
	}
	.skillHeading::after
	{
		display: none;
	}
	.aboutInfo
	{
		width: 100%;
	}
	.projectColumn
	{
		width: 50%;
	}
	.contactFormRow
	{
		flex-wrap: wrap;
	}
	.contactForm
	{
		width: calc(100% - 25px);
	}
}
@media only screen and (max-width: 600px){
	.projectColumn
	{
		padding: 10px 0;
		width: 100%;
/*		min-width: 100%;*/
	}
	.contactBox
	{
		min-width: 100%;
		padding: 10px 0;
	}
	.contactForm
	{
		width: 100%;
	}
}




