/*nav_menu*/

.container{
    padding: 0;
    margin: 0;
}

.navbar-nav{
    padding: 0% 7%;
}

.nav-item{
    font-size: 1.2rem;
}

/*Title*/
body, html {
    height: 100%;
}

/*Parallax feature*/

.parallax {
/* background-image: url('https://cdn.aerotelegraph.com/production/uploads/2020/07/boeing-747-briotish-airways-landung.jpg'); */
background-image: url('../images/background_img.jpg');

height: 75%; 
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;

padding-bottom: 0%;
}

@media only screen and (max-device-width: 1000px) {
    .parallax {
        background-attachment: scroll;
    }
}

.display-4{
    padding: 7% 15% 0% 15%;
    font-size: 4rem;
}

.lead{
    padding: 0% 15%;
    font-size: x-large;
}

/*Skills Section*/

#skills{
    background-color: white;
    display: block;
}

#icon{
    width: 96px;
    margin: 3%;
    text-align: center;
    font-family: monospace;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
}

/* Works */
.container-fluid { max-width: 1200px; }

header {
	background: #563d7c;
	padding: 2em 1em;
	color: #fff;
	margin-bottom: 2em;
	h1 {
		font-weight: 200;
	}
}

.card {
	background: #fff;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	img {
		width: 100%;
	}
}

[class*="row"] {
	margin-bottom: 1em;
  justify-content: center;
}

[class*="col-"] {
	background: #efefef;
	border: 1px solid #ddd;
	padding-top: .75rem;
	padding-bottom: .75rem;
	width: 100%;
}
 
/*About*/
ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}