body {
	margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.about{
  background-image: url("../images/meBg.jpg");
  background-attachment: fixed;
	min-height: 100vh;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.projects {
  background-image: url("../images/projectsBg.jpg");
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  color: wheat;
}
.project-layout {
  margin: 3%;
  font-size: 23px;
  text-align: center
}
.projectdiv {
  border-radius: 30px;
  max-width: 100%;
  border: 6px solid white;
}
img.projectdiv:hover {
  transform: scale(1.1);
  -webkit-transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out
}

.contact {
  background-image: url("../images/contactBg.jpg");
  background-size: cover;
}
.skillsLayout{
  background-image: url("../images/gridBg.gif");
  background-size: cover;
  min-height: 100vh;
}
.subskills {
  text-align: center;
  padding: 6%;
  font-size: 24px;
  color: darkslategrey;
}
h1{
  font-weight: 500;
}
hr{
      border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    border-top: 4px solid;
}
.about-content
{
  float: right;
  font-size: 20px;
  color: wheat;
  min-height: 100vh;
  background: rgba(0,0,0,.4);
  border-bottom-left-radius: 100px 50%;
  border-top-left-radius: 100px 50%;
  padding: 50px;
  box-shadow: 0 0 50px 50px rgba(0,0,0,.4);
  overflow: auto
}
.myFooter {
  position: relative;
  width: 100vw;
  padding: 10px;
  text-align: center;
  color: wheat;
  background-color: rgba(0, 0, 0, .7);
  font-size: 18px;
}
.myFooter .fa {
  color: wheat;
  font-size: 25px;
  padding-right: 15px;
}
/*  Loader */

#loader
{
  position: fixed;
  z-index: 100;
  height: 100vh;
  width: 100vw;
  background-color: darkslateblue;
}
#loadText
{
  text-align: center;
  margin: auto;
  top: 60%;
  position: relative
}
#loading
{
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: red;
  border-radius: 100%;
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  animation: round 2s linear infinite;
  z-index: 1000;
}
  /* animation */
  @keyframes round
  {
    from{transform: rotate(0deg)}
    to{transform: rotate(360deg)}
  }



.main-box {
	background-image: url("../images/LapBg.jpg");
	background-position: 50% 0;
	height: 100vh;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.banner {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	align-items: center;
	align-content: center;
  width: 400px;
	max-width: 70%;
}
.code3 {
	position: relative;
  
	transform: translate(-50px,0px);
  
}

.skills,.projects,.contact {
	min-height: 100vh;
  padding: 2%;
  overflow: auto
}




/* typed CSS*/

.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}





/* side bar css */

#wrapper {
  padding-left: 250px;
  transition: all 0.4s ease 0s;
}

#sidebar-wrapper {
  margin-left: -250px;
  left: 250px;
  width: 250px;
  background: #000;
  position: fixed;
  height: 100%;
  overflow-y: auto;
  z-index: 1000;
  transition: all 0.4s ease 0s;
}

#wrapper.active {
  padding-left: 0;
}

#wrapper.active #sidebar-wrapper {
  left: 0;
}

#page-content-wrapper {
  width: 100%;
}



.sidebar-nav {
  position: absolute;
  top: 0;
  width: 250px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li {
  line-height: 40px;
  text-indent: 20px;
}

.sidebar-nav li a {
  color: #999999;
  display: block;
  text-decoration: none;
  padding-left: 60px;
}

.sidebar-nav li a span:before {
  position: absolute;
  left: 0;
  color: #41484c;
  text-align: center;
  width: 20px;
  line-height: 18px;
}

.sidebar-nav li a:hover,
/*.sidebar-nav li.active {
  color: #fff;
  background: rgba(255,255,255,0.2);
  text-decoration: none;
}*/

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
  height: 65px;
  line-height: 60px;
  font-size: 18px;
}

.sidebar-nav > .sidebar-brand a {
  color: #999999;
}

.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none;
}



.content-header {
  height: 65px;
  line-height: 65px;
  position: fixed;
  padding-top: 20px;
  padding-left: 10px;
  z-index: 100
}

.content-header h1 {
  margin: 0;
  margin-left: 20px;
  line-height: 65px;
  display: inline-block;
}

#menu-toggle {
    text-decoration: none;
}

.btn-menu {
  color: #000;
} 

.inset {
  padding: 20px;
}

@media (max-width:767px) {

#wrapper {
  padding-left: 250px;
}

#sidebar-wrapper {
  left: 250px;
}

#wrapper.active {
  position: relative;
  left: 0px;
}

#wrapper.active #sidebar-wrapper {
  left: 0px;
  width: 250px;
  transition: all 0.4s ease 0s;
}

#menu-toggle {
  display: inline-block;
}

.inset {
  padding: 15px;
}
}
/*
 avatar progress bar

.avatar-container {
  position: relative;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  height: 230px;
  width: 230px;
  padding: 0;
  margin: 1rem auto;
  border: none;
  background: #efefef;
  }
  .avatar {
    display: block;
    margin: 5px;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    overflow: hidden;
    z-index: 100;}
  
.p-85 {
  background-image: linear-gradient(36deg, #0BF 50%, transparent 50%, transparent), linear-gradient(270deg, #0BF 50%, #efefef 50%, #efefef);
}
.p-90 {
  background-image: linear-gradient(60deg, #0BF 50%, transparent 50%, transparent), linear-gradient(270deg, #0BF 50%, #efefef 50%, #efefef);
}
.p-88 {
  background-image: linear-gradient(50deg, #0BF 50%, transparent 50%, transparent), linear-gradient(270deg, #0BF 50%, #efefef 50%, #efefef);
}
*/
/* instagram box*/

#instafeed{
  max-width: 525px;
  max-height: 450px;
  overflow: auto;
}

/* github-card */

#gitBox{
  padding-bottom: 10px;
}