/*Akhil Gupta website CSS file*/
body{
	font-family: 'Lato', sans-serif;
}

.hero{
	background: url('../otherFileFolder/images/social1.jpg') no-repeat center fixed;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: left top;
	padding:2rem 0 19rem;
	color: #fff;
}

#highlight {
    background: #fff200;
		opacity: .4;
    padding: 3px 5px;
    margin: -3px -5px;
    line-height: 1.7;
    border-radius: 5px;
    display:inline;
}

#highlight:hover {
    background: #fff200;
    color:#444745;
    padding: 3px 5px;
    margin: -3px -5px;
    line-height: 1.7;
    border-radius: 5px;
    display:inline;
}



.hero h4{
	font-size: 35px;
}
.hero p{
	font-size: 20px;
}

.section{
	padding:5rem 0 10rem;
}
.section-header{
	/*text-align: center;*/
	font-size: 40px;
	margin-bottom: 30px;
}.header{
	display: none;
}
#nav {
  /*width: 40%;*/
	float: right;
	margin: 0px 20px 0px 0px ;
	list-style: none;
	position: absolute;
    top: 50px;
    right: 0px;
}
#nav li {		/*this is making it become horizontal*/
	float: left;
}
#nav li a { /*spacing and coloring of navbar*/
	display: block;
	padding: 8px 15px;
	text-decoration: none;
	font-weight: bold;
	margin:0;
	font-size:25px;
	color: #fff200;
}
#nav li a:hover {
	background-color: #fff200;
	color:#444745;
	font-size:25px;
	border-radius: 3px;
}
/*.navbar{
	visibility: hidden;
}*/

.hero h4{
	font-size: 50px;
}
.hero p{
	font-size: 30px;
}



/*........................Projects......................*/
.projects{
  background-image: url("../otherFileFolder/images/Subtle.jpg");
}

.section{
	padding:5rem 0 10rem;
}
.section-header{
	/*text-align: center;*/
	font-size: 40px;
	margin-bottom: 30px;
}
.project-tile{
	border: 1px solid rgb(226, 226, 226);;
	border-radius: 4px;
	width: 100%;
	height: 350px;
	margin-top: 30px;
	font-size: 30px;
/*-webkit-box-shadow: 0px 0px 30px 0px rgba(50, 50, 50, 0.15);
-moz-box-shadow:    0px 0px 30px 0px rgba(50, 50, 50, 0.15);
box-shadow:         0px 0px 30px 0px rgba(50, 50, 50, 0.15);*/
-webkit-box-shadow: inset 0px 0px 30px 0px rgba(50, 50, 50, 0.10);
-moz-box-shadow:    inset 0px 0px 30px 0px rgba(50, 50, 50, 0.10);
box-shadow:         inset 0px 0px 30px 0px rgba(50, 50, 50, 0.10);
}

@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'feathericons';
	src:url('../fonts/feathericons/feathericons.eot?-8is7zf');
	src:url('../fonts/feathericons/feathericons.eot?#iefix-8is7zf') format('embedded-opentype'),
		url('../fonts/feathericons/feathericons.woff?-8is7zf') format('woff'),
		url('../fonts/feathericons/feathericons.ttf?-8is7zf') format('truetype'),
		url('../fonts/feathericons/feathericons.svg?-8is7zf#feathericons') format('svg');
}

.grid {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 4em;
	width:100%;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	/*margin: 10px 1%;*/
	/*min-width: 320px;*/
	/*max-width: 480px;*/
	max-height: 256px;
	width: 100%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

/*---------------*/
/***** Sadie *****/
/*---------------*/

figure.effect-sadie figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(top, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
	background: linear-gradient(to bottom, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(0,50%,0);
	transform: translate3d(0,50%,0);
}

figure.effect-sadie h2 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	color: white;
	text-shadow: 0px 0px 18px rgba(0, 0, 0, 0.45);
	-webkit-transition: -webkit-transform 0.35s, color 0.35s;
	transition: transform 0.35s, color 0.35s;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
}

figure.effect-sadie figcaption::before,
figure.effect-sadie p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-sadie p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	opacity: 0;
	-webkit-transform: translate3d(0,10px,0);
	transform: translate3d(0,10px,0);
	color: white;
}


figure.effect-sadie a {
	font-weight: 800;
}

figure.effect-sadie:hover h2 {
	color: #fff;
	-webkit-transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
	transform: translate3d(0,-50%,0) translate3d(0,-40px,0);
}

figure.effect-sadie:hover figcaption::before ,
figure.effect-sadie:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-sadie:hover a {
	color:rgb(129, 179, 255);
}

/*...................Vlogging........................*/



/*...................Skills........................*/
.skills .project-tile{
	padding: 30px;
}

.skills .project-tile p{
	text-align: center;
	font-size: 20px;
	border-bottom: 1px solid black;
}

/*.skills{
	background-image: url("../otherFileFolder/images/skills12.jpg");
}*/

.front-end:hover{
    background-image: url("../otherFileFolder/images/skills12.jpg");
     text-decoration-color: :#FF5756;
    text-decoration:
}

.back-end:hover{

    background-image: url("../otherFileFolder/images/skills12.jpg");
     text-decoration-color: :#FF5756;
    text-decoration:
}

.misc:hover{

    background-image: url("../otherFileFolder/images/skills12.jpg");
    text-decoration-color: :#FF5756;
    text-decoration:

}
/*..............opensource............................*/
.opensource{
	background-color: #1f2933;
	color:#00b2ff;
	font-size: 2em;
	font-family: 'coda';
}

.link {
	outline: none;
	text-decoration: none;
	position: relative;
	font-size: 2em;
	line-height: 1;
	color: #00b2ff;
	display: inline-block;

}
.link--kukuri {
	text-transform: uppercase;
	font-weight: 900;
	overflow: hidden;
	line-height: 0.75;
	color: #00b2ff;
}

.link--kukuri:hover {
	color: #b2ff00;

}

.link--kukuri::after {
	content: '';
	position: absolute;
	height: 16px;
	width: 100%;
	top: 50%;
	/*margin-top: -8px;*/
	margin-top: -8px;
	right: 0;
	background: #1f2933;
	transform: translate3d(-100%,0,0);
	transition: transform 0.4s;
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.link--kukuri:hover::after {
	transform: translate3d(100%,0,0);
}

.link--kukuri::before {
	content: attr(data-letters);
	position: absolute;
	z-index: 2;
	overflow: hidden;
	color: #f75151;
	white-space: nowrap;
	width: 0%;
	transition: width 0.4s 0.3s;
}

.link--kukuri:hover::before {
	width: 100%;
}
/*................Contact..........................*/

.contact{
  /* background: url('./images/contact_back.jpg') ;*/
    /*background-color: #4d4d3f;*/
    background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
	color:white;
	font-size: 20px;
}

#foot{
    padding: 15px;
    background-color: #bbbbbb;
    color: #000000;
}


/**********************************************/
