@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto+Mono:wght@100;300&family=Ubuntu:wght@400;500;700&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}
.max-width{
	max-width: 1300px;
	padding: 0 80px;
	margin: auto;
}
/*
style navbar
*/
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background: #161b22;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .name a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.navbar .name a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
	margin-left: -74px;
}
.navbar .name a span{
    color: #58a6ff;
    transition: all 0.3s ease;
}
.navbar.sticky .name a span{
    color: #fff;
}
.navbar .navbar-menu li{
    list-style: none;
    display: inline-block;
}
.navbar .navbar-menu li a{
    display: block;
    color: darkgrey;
	color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .navbar-menu li a:hover{
    color: #58a6ff;
}
.navbar.sticky .navbar-menu li a:hover{
    color: #fff;
}
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
/*Social Media icons*/
.social-media{
	display: flex;
	justify-content: center;
	align-items:center;
    margin-top: 68px;
	border-radius: 50%;
}
.social-media a{
	height: 69px;
    width: 69px;
    background-color: #161b22;
    border-radius: 61px;
    text-align: center;
    margin: 10px;
    line-height: 83px;
}
.social-media a i{
	transition: all 0.3s linear
}
.social-media a:hover i{
	transform: scale(1.4)
}
.fa-github{
	color: black;
}
.fa-linkedin{
	color:#0074b1;
}
.fa-facebook{
	color:#1b75f9;
}
.fa-instagram{
	color:#644e3e;
}
/*
style home navbar
*/
.nav-home{
	display: flex;
	background: black;
	height: 100vh;
	color: #fff;
	min-height: 500px;
	background-size: cover;
    background-attachment: fixed;
	font-family: 'Ubuntu', sans-serif;
}
.nav-home .home-content .content-1{
	font-family: 'Roboto Mono', sans-serif;
    font-size: 20px;
	color: #58a6ff;
}
.nav-home .home-content .content-2{
	color: #fff;
	padding-right: 60px;
	font-size: 75px;
    font-weight: 600;
    margin-left: -3px;

}
.nav-home .home-content .content-3{
	font-family: Poppins;
	color: #fff;
	font-size: 40px;
    margin: 5px 0;
}
.nav-home .home-content .content-3 img{
	width:100%;
	max-width:80px;
	margin-bottom:27px;
	margin-left:-4px;
}
.nav-home .home-content .content-4 {
    font-size: 22px;
	font-family: Poppins;
    color: #fff;
	padding-top: 36px;
}
.nav-home .home-content .content-5 {
    font-size: 22px;
	font-family: Poppins;
}
.nav-home .home-content .content-5 span{
	color:#58a6ff;  
	font-size: 25px; 
}
/*
Animation for angular arrow slider
*/
.animation {
	width: 100%;
	bottom: 0;
	height: 50px;
	overflow: hidden;
	position: absolute;
	z-index: 999;
	text-align:center;
	text-decoration: none;
}

#header .fa-angle-down {
	text-align: center;
	font-size: 45px;
	color: #fff;
	
	-webkit-animation: leweb_fade_move_down 2s ease-in-out infinite;
	-moz-animation: leweb_fade_move_down 2s ease-in-out infinite;
	animation: leweb_fade_move_down 2s ease-in-out infinite;
   }

	/* Animated Arrow Down Header */
	
@-webkit-keyframes leweb_fade_move_down {
  0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { -webkit-transform:translate(0,20px); opacity: 0; }
}
@-moz-keyframes leweb_fade_move_down {
  0%   { -moz-transform:translate(0,-20px); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { -moz-transform:translate(0,20px); opacity: 0; }
}
@keyframes leweb_fade_move_down {
  0%   { transform:translate(0,-20px); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { transform:translate(0,20px); opacity: 0; }
}
/* Styling About section
*/
section{
	padding: 100px 0;
	background: black;
}
.nav-about{
	font-family: 'Poppins', sans-serif;
	color: #fff;
}
.nav-about .title{
	position: relative;
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 60px;
	padding-bottom: 20px;
	font-family: 'Ubuntu', sans-serif;
}
.nav-about .title::before{
	content: "";
	position: absolute;
	bottom: 0px;
	width: 180px;
	height:3px;
	background: #58a6ff;
	transform: translateX(-150);
}
.nav-about .about-content{
	display: flex;
	align-items:center;
	flex-wrap:wrap;
	justify-content: space-between;
}
.nav-about .about-content .left{
	width: 45%;
}
.nav-about .about-content .left img{
	height: 400px;
	width:400px;
	object-fit:cover;
}
.nav-about .about-content .right{
	width: 55%;
}
.nav-about .about-content .right span{
	color: #58a6ff;
}
.nav-about .about-content .right .text{
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 10px;
}
.nav-about .about-content .right p{
	text-align: justify;
}
.nav-about .about-content .right a{
	display: inline-block;
	background: #58a6ff;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	padding: 10px 30px;
	margin-top: 20px;
	border-radius: 6px;
	border: 2px solid #58a6ff;
	transition: all 0.3s ease;
}
.nav-about .about-content .right a:hover{
	color: #58a6ff;
	background: none;
}
.nav-exp .title{
	font-family: 'Poppins', sans-serif;
	color: #fff ;
	position: relative;
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 60px;
	padding-bottom: 20px;
	font-family: 'Ubuntu', sans-serif;
}
.nav-exp .title::before{
	content: "";
	position: absolute;
	bottom: 0px;
	width: 277px;
	height:3px;
	background: #58a6ff;
	transform: translateX(-150);
}
/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #58a6ff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}
.nav-exp a{
	font-family: 'Poppins', sans-serif;
	display: inline-block;
    background: #58a6ff;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #58a6ff;
    transition: all 0.3s ease;
}
.nav-exp a:hover{
	color: #58a6ff;
	background: none;
}
/* The actual content */
.exp-content {
	font-family: 'Poppins', sans-serif;
	color: #fff;
	padding: 20px 30px;
    background-color: black;
    position: relative;
    border-radius: 6px;
    color: #fff;
	border: 3px solid #58a6ff;
}
.exp-content h2{
	font-size: 17px;
}
.exp-content h3{
	font-size: 15px;
}
/* 
Skills Styling 
*/
.nav-skills{
	font-family: 'Poppins', sans-serif;
	color: #fff;
}
.nav-skills .title{
	position: relative;
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 60px;
	padding-bottom: 20px;
	font-family: 'Ubuntu', sans-serif;
}
.nav-skills .title::before{
	content: "";
	position: absolute;
	bottom: 0px;
	width: 180px;
	height:3px;
	background: #58a6ff;
	transform: translateX(-150);
}
.nav-skills .skills-content{
	display: flex;
	align-items:center;
	flex-wrap:wrap;
	justify-content: space-between;
}
.nav-skills .skills-content .left{
	width: 45%;
}
.nav-skills .skills-content .right{
	width: 55%;
}
.mh-professional-skill h3 {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 60px;
    color: white;
}
.mh-professional-skills{
	padding-left:10%;
	color: white;
	font-family: 'Poppins', sans-serif;
}
.mh-professional-skills h3{
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	font-weight: 400;
	margin-bottom: 60px;
	color: white;
}
.mh-professional-progress li{
	display: inline-block;
	margin: 0 auto;
	float: none;
	width: 48%;
	margin-bottom: 30px;
	text-align: center;
}
.mh-progress{
	margin-bottom:10px;
	font: 900 1.14285/1 Cinzerl, cursive;
	color: white;
}
.mh-progress .progressbar-text{
	color: inherit !important;
	font-family:'Popins', sans-serif;
}
.progress.progress-line{
	height: 10px;
	margin-right: 60px;
}
.progress.progress-line .progress-text{
	position: absolute;
	top: 50%;
	left: 100%;
	width: 60px;
	transform: translateY(-35%);
	text-align: center;
	font-family: 'Poppins',sans-serif;
}
.mh-progress.mh-progress-circle{
	display: inline-block;
	width: 100px;
	height: 100px;
}
.mh-progress path:nth-child(1){
	stroke: rgba(0,0,0,0.7);
}
.mh-progress path:nth-child(2){
	stroke: #58a6ff !important;
}
.candidatos{
	position: relative;
	margin-bottom: 15px;
	font-family: 'Poppins', sans-serif;
}
.candidatos .parcial{
	display: inline-block;
	width: 100%;
	vertical-align: middle;
}
.candidatos .parcial .info{
	position: relative;
	font-family: 'Poppins', sans-serif;
}
.candidatos .parcial .info .nome{
	position: absolute;
	top: 0;
	left: 0;
	font-size: 15px;
	font-weight: 400;
	opacity: 0.9;
	font-family: 'Poppins', sans-serif;
}
.candidatos .parcial .info .percentage-num1{
	position: relative;
    top: 25px;
    right: 0;
    font-size: 14px;
    font-weight: normal;
}
.candidatos .parcial .info .percentage-num2{
	position: relative;
    top: 25px;
    right: 0;
    font-size: 14px;
    font-weight: normal;
}
.candidatos .parcial .info .percentage-num3{
	position: relative;
    top: 25px;
    right: 0;
    font-size: 14px;
    font-weight: normal;
}
.candidatos .parcial .info .percentage-num4{
	position: relative;
    top: 25px;
    right: 0;
    font-size: 14px;
    font-weight: normal;
}
.candidatos .parcial .progressBar{
	position: relative;
	width: 100%;
	height: 7px;
	margin: 30px 0 2px;
	border-radius: 10px;
	background: #161b22;
}
.candidatos .parcial .percentagem{
	position: absolute;
	top: 0;
	left: 0;
	height: 7px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background: #58a6ff;
	-webkit-transition: 3s all;
	-webkit-animation-duration: 3s;
	-webkit-animation-name: animationProgress;
	font-family: 'Poppins', sans-serif;
}
@keyframes animationProgress{
	from{
		width: 0;
	}
}
/* 
Projects Styling 
*/
.nav-projects{
	font-family: 'Poppins', sans-serif;
	color: #fff;
}
.nav-projects .title{
	position: relative;
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 60px;
	padding-bottom: 20px;
	font-family: 'Ubuntu', sans-serif;
}
.nav-projects .title::before{
	content: "";
	position: absolute;
	bottom: 0px;
	width: 220px;
	height:3px;
	background: #58a6ff;
	transform: translateX(-150);
}
.nav-projects .projects-content{
	display: flex;
	align-items:center;
	flex-wrap:wrap;
	justify-content: space-between;
}
.nav-projects .projects-content .left{
	width: 45%;
}
.nav-projects .projects-content .right{
	width: 55%;
}
/* teams section styling */
.nav-projects .carousel .card{
    background: #161b22;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}
.nav-projects .carousel .card:hover{
    background: #58a6ff;
}
.nav-projects .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.nav-projects .carousel .card .box p{
    font-family: 'Poppins',sans-serif;
	color: #fff;
	font-size: 13px;
}
.nav-projects .carousel .card:hover .box{
    transform: scale(1.05);
}
.nav-projects .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
	font-family:'Poppins', sans-serif;
	color:#fff;
}
.nav-projects .carousel .card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #58a6ff;
    transition: all 0.3s ease;
}
.nav-projects .carousel .card:hover img{
    border-color: #fff;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #58a6ff!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #58a6ff!important;
}
/* 
Contact Styling 
*/
.nav-contact{
	font-family: 'Poppins', sans-serif;
	color: #fff;
}
.nav-contact .title{
	position: relative;
	text-align: center;
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 60px;
	padding-bottom: 20px;
	font-family: 'Ubuntu', sans-serif;
}
.nav-contact .title::before{
	content: "";
	position: absolute;
	bottom: 0px;
	width: 220px;
	height:3px;
	background: #58a6ff;
	transform: translateX(-150);
}
.contact-form{
	width: 85%;
	max-width: 600px;
	background: #161b22;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 30px 40px;
	box-sizing: border-box;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 0 20px #000000b3;
	font-family: "Montserrat",sans-serif;
	margin-top: 382px;
}
.contact-form h1{
	margin-top: 0;
	font-weight: 200;
}
.txtb{
	border: 1px solid gray;
	margin: 8px 0;
	padding: 12px 18px;
	border-radius: 8px;
}
.txtb label{
	display: block;
	text-align: left;
	color: #ff;
	text-transform: uppercase;
	font-size: 14px;
}
.txtb input, .txtb textarea{
	width: 100%;
	border: none;
	background: none;
	outline: none;
	font-size: 18px;
	margin-top: 6px;
	color: #fff;
}
.btn{
	display: inline-block;
	background: #58a6ff;
	padding: 14px 0;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
	margin-top: 8px;
	width: 100%;
}
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 57px;
	padding-right: 10px;
  }

/* Make sure that all arrows are pointing leftwards 
  .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
*/
/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}
@media (max-width: 1300px) {
    .nav-home .max-width{
        margin-left: 0px;
    }
}

@media (max-width: 1104px) {
    .nav-about .nav-about-content .left img{
        height: 350px;
        width: 350px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
	.navbar .name a{
		margin-left: 0;
	}
    .navbar .navbar-menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .navbar-menu.active{
        left: 0;
    }
    .navbar .navbar-menu li{
        display: block;
    }
    .navbar .navbar-menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
	.nav-home .logo{
		margin: -157px;
	}
	.nav-home .logo ul{
		margin-top: 719px;
		margin-left: -604px;
	}
	.logo::before{
	margin: 70px;
    margin-left: -950px;
	width: 90px;
	}
	.logo::after{
	margin: -35px;
    margin-left: -220px;
	width: 90px;
	}
	.nav-home .home-content .content-1{
		font-size: 15px;
		padding-top: 10px;
	}
	.nav-home .home-content .content-2{
		font-size: 52px;
	}
	.nav-home .home-content .content-3{
		font-size: 25px;
	}
	.nav-home .home-content .content-3 img{
		width:100%;
		max-width:45px;
	}
	.nav-home .home-content .content-4 {
		font-size: 19px;
		margin-top: 33px;
	}
	.nav-home .home-content .content-5 {
		font-size: 19px;
		margin-top: 29px;
	}
	.nav-home .home-content .content-5 span{
		font-size: 19px;
	}
    .nav-home .nav-home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 800px;
    }
    .nav-about .about-content .column{
        width: 100%;
    }
    .nav-about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .nav-about .about-content .right{
        flex: 100%;
    }
	.nav-skills .skills-content .column{
        width: 100%;
    }
    .nav-skills .skills-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .nav-skills .skills-content .right{
        flex: 100%;
    }
}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .nav-home .home-content .content-1{
		font-size: 15px;
		padding-top: 10px;
	}
	.nav-home .home-content .content-2{
		font-size: 52px;
	}
	.nav-home .home-content .content-3{
		font-size: 25px;
	}
	.nav-home .home-content .content-3 img{
		width:100%;
		max-width:45px;
	}
	.nav-home .home-content .content-4 {
		font-size: 19px;
		margin-top: 33px;
	}
	.nav-home .home-content .content-5 {
		font-size: 19px;
		margin-top: 29px;
	}
	.nav-home .home-content .content-5 span{
		font-size: 19px;
	}
    .nav-home .nav-home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
	.social-media a {
    height: 54px;
    width: 54px;
    background-color: #161b22;
    border-radius: 54px;
    text-align: center;
    margin: 10px;
    line-height: 68px;
	}
}

@media (max-width: 500px) {
    .max-width{
        padding: 0 23px;
    }
    .nav-home .home-content .content-1{
		font-size: 15px;
		padding-top: 10px;
	}
	.nav-home .home-content .content-2{
		font-size: 41px;
	}
	.nav-home .home-content .content-3{
		font-size: 18px;
	}
	.nav-home .home-content .content-3 img{
		width:100%;
		max-width:45px;
	}
	.nav-home .home-content .content-4 {
		font-size: 19px;
		margin-top: 33px;
	}
	.nav-home .home-content .content-5 {
		font-size: 18px;
		margin-top: 29px;
	}
	.nav-home .home-content .content-5 span{
		font-size: 18px;
	}
    .nav-home .nav-home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .nav-about .nav-about-content .right .text,
    .skills .skills-content .right .text{
        font-size: 19px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
	.exp-content {
	font-size: 13px;
	}
	.exp-content h2{
	font-size: 14px;
	}
	.exp-content h3{
	font-size: 14px;
	}
	.social-media a {
    height: 54px;
    width: 54px;
    background-color: #161b22;
    border-radius: 54px;
    text-align: center;
    margin: 10px;
    line-height: 68px;
	}
}
@media (max-width: 368px) {
    .max-width{
        padding: 0 20px;
    }
    .nav-home .home-content .content-1{
		font-size: 12px;
		padding-top: 10px;
	}
	.nav-home .home-content .content-2{
		font-size: 25px;
	}
	.nav-home .home-content .content-3{
		font-size: 15px;
	}
	.nav-home .home-content .content-3 img{
		width:100%;
		max-width:35px;
	}
	.nav-home .home-content .content-4 {
		font-size: 15px;
		margin-top: 33px;
	}
	.nav-home .home-content .content-5 {
		font-size: 15px;
		margin-top: 29px;
	}
	.nav-home .home-content .content-5 span{
		font-size: 15px;
	}
    .nav-home .nav-home-content a{
        font-size: 15px;
        padding: 10px 30px;
    }
	.exp-content {
	font-size: 13px;
	}
	.exp-content h2{
	font-size: 14px;
	}
	.exp-content h3{
	font-size: 14px;
	}
}