body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* Header CSS */
#header{
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(img/backImage.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.user-box{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.user-box img{
    border-radius: 50%;
    width: 250px;
    border: 2px solid #6caed5
}

.user-box h1{
    color: #fff;
    font-weight: bold;
    margin: 10px;
}

.user-box p{
    color: #fff;
}

.scroll-btn{
    bottom: 30px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    border: 2px solid #fff;
    padding: 10px 10px 20px;
    border-radius: 30px;
}

.scroll-bar span{
    border: 2px solid #fff;
    font-size: 10px;
    border-radius: 30px;
}

.scroll-bar{
    animation: mover is infinite alternate;   
}

@keyframes mover{
    0%{transform: translateY(0);}
    100%{transform: translateY(10);}
}

/* ABOUT */
.about{
    padding: 50px 20px;
    margin-bottom: -150px;
}
.about .col-lg-5 {
    padding: 10px;
    margin: 2% 2% ;
}

.profile-img{
    height: 400px;
    margin-bottom: 30px;
    margin-left: 20px;
}

.skills-bar p{
    margin-bottom: 6px;
    font-weight: 600;
    text-align: left;
}
.progress{
    border-radius: 16px !important;
    margin-bottom: 10px;
}
.progress-bar{
    border-radius: 16px;
    background: rgb(35, 38, 192) !important;
}
.nav-bar{
    top: 0;
    position: sticky;
    z-index: 2;
}
.navbar{
    background-color: #000;
}

.navbar-brand img{
    height: 50px;
}

.nav-bar .fa-bars{
    font-size: 35px;
    color: #fff;
}

.navbar-toggler{
    outline: none !important;
}

.navbar-nav{
    float: right;
    text-align: right;
}

.nav-link{
    color: #fff !important;
}

/* ---------Project------------- */
.projects{
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 5%;
    background: #f9f9f9;
}

.projects h3{
    padding-bottom: 2% ;
}

.project-figure {
	margin: 0 auto 1rem auto;
	max-height: 512px;
	max-width: 452px;
}
.project-video {
	position:relative;
	padding-bottom:56.25%;
	padding-top:10px;
	height:0;
	overflow:hidden;
}

.project-video  iframe, .project-video  object, .project-video  embed {
	position:absolute;
	top:0;
	left: 10%;
	width: 80%;
	height:100%;
}
.project-text h4{
    margin-left: 10%;
    padding-bottom: 5%;
}

/* --------------Resume--------------- */
.resume{
    margin-top: -50px;
    padding-top: 50px;
    padding-bottom: 30px;
    background: #fff;
}

.project-resume {
	position:relative;
	padding-bottom: 56.25%;
	padding-top: 10px;
	height:0;
	overflow:hidden;
}

.project-resume  iframe, .project-resume  object, .project-resume  embed {
	position: absolute;
	top: 0;
	left: 5%;
	width: 90%;
	height: 100%;
}

/* ---------------Research----------------- */
.research{
    background: #f9f9f9;
    padding-bottom: 1%;
    margin-bottom: 2%;
}
.research h3{
    padding-top: 2% ;
}
.research li{
    margin: 2% 2% ;
}
/* -----------------Contact ----------------------*/
.contact{
    padding-top: 50px;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(img/back2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff
}

.contact .row{
    padding: 30px 30px;
    font-size: 22px;
    margin: 2% 2%;
}

.contact .col-md-4 .fa{
    padding: 10px;
    font-size: 40px;
}

.footer{
    background: #000;
    height: 50px;
    margin-top: 50px;
    color: #fff;
    padding-top: 10px;
}

.fa-heart-o{
    color: red;
}

/* social icons */
.social-icons{
    top: 50%;
    transform: translateY(-50%);
    position: sticky;
    z-index: 1;
    width: 80px;
}

.social-icons ul{
    padding: initial;
}

.social-icons ul li{
    height: 40px;
    width: 40px;
    list-style-type: none;
    padding-left: 12px;
    padding-top: 5px;
    color: #fff;
    background: rgb(35, 38, 192);
}

.social-icons ul li:hover{
    padding-left: 30px;
    width: 80px;
    transition: 1s;
}