/* General */

body {
	font-family: "Bitter", sans-serif;
	color: #c9dff3;
	background-color: rgb(54, 54, 73);
}

a {
	color: #ff7b00;
	text-decoration: none;
}

a:hover {
	color: #ff9431;
	text-decoration: none;
}

@supports (font-variation-settings: normal) {
	h1, h2, h3, h4, h5, h6 {
		font-family: "Fira Code VF", monospace;
	}
}

p {
	color: #c9dff3;
}

.button {
	transition: all 0.4s ease-in-out;
}

.button:hover {
	transform: scale(1.2);
}

.vertical-center {
	min-height: 100vh;
	display: flex;
	align-items: center;
}


/* Back to top button */

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #ff7b00;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
	transition: all 0.4s;
}

.back-to-top:hover {
	background: #ff9431;
}

.back-to-top i:hover {
	color: rgb(54, 54, 73);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}


/* Preloader */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: rgb(54, 54, 73);
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ff7b00;
	border-top-color: #eef7ff;
	border-bottom-color: #eef7ff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/* Disable aos animation delay on mobile devices */

@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}


/* Header */

#header {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 9997;
	transition: all 0.5s;
	padding: 15px;
	overflow-y: auto;
}

@media (max-width: 992px) {
	#header {
		width: 300px;
		background: rgb(54, 54, 73);
		border-right: 1px solid rgb(86, 86, 117);
		left: -300px;
	}
}

@media (min-width: 992px) {
	#main {
		margin-left: 100px;
	}
}


/* Navigation Menu */

/* Desktop Navigation  */

.nav-menu {
	padding: 0;
	display: block;
}

.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
}

.nav-menu a, .nav-menu a:focus {
	display: flex;
	align-items: center;
	color: #c9dff3;
	padding: 10px 18px;
	margin-bottom: 8px;
	transition: 0.3s;
	font-size: 15px;
	border-radius: 50px;
	background: #cecece7a;
	height: 56px;
	width: 100%;
	overflow: hidden;
	transition: 0.3s;
}

.nav-menu a i, .nav-menu a:focus i {
	font-size: 20px;
}

.nav-menu a span, .nav-menu a:focus span {
	padding: 0 5px 0 7px;
	color: #c9dff3;
}

@media (min-width: 992px) {
	.nav-menu a, .nav-menu a:focus {
		width: 56px;
	}
	.nav-menu a span, .nav-menu a:focus span {
		display: none;
		color: #eef7ff;
	}
}

.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
	color: #eef7ff;
	background: #ff9431;
}

.nav-menu a:hover span, .nav-menu .active span, .nav-menu .active:focus span, .nav-menu li:hover > a span {
	color: #eef7ff;
}

.nav-menu a:hover, .nav-menu li:hover > a {
	width: 100%;
	color: #eef7ff;
}

.nav-menu a:hover span, .nav-menu li:hover > a span {
	display: block;
}

/* Mobile Navigation */

.mobile-nav-toggle {
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 28px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 0;
	cursor: pointer;
	border-radius: 50px;
	padding: 5px;
}

.mobile-nav-toggle i {
	color: #45505b;
}

.mobile-nav-active {
	overflow: hidden;
	background-color: rgb(54, 54, 73);
}

.mobile-nav-active #header {
	left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
	background-color: #ff7b00;
}


/* Hero Section */

#hero {
	width: 100%;
	height: 100vh;
	background: url("../img/hero-bg.jpg") top right no-repeat;
	background-size: cover;
	position: relative;
}

@media (min-width: 992px) {
	#hero {
		padding-left: 160px;
	}
}

#hero:before {
	content: "";
	background: rgba(54, 54, 73, 0.8);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#hero h1 {
	margin: 0;
	font-size: 64px;
	font-weight: 700;
	line-height: 56px;
	color: #eef7ff;
}

@supports (font-variation-settings: normal) {
	#hero p {
		color: #ebebeb;
		margin: 15px 0 0 0;
		font-size: 26px;
		font-family: "Fira Code VF", monospace;
	}
}


#hero p span {
	color: #ff7b00;
}

#hero .social-links {
	margin-top: 30px;
}

#hero .social-links a {
	font-size: 24px;
	display: inline-block;
	color: #98afc7;
	line-height: 1;
	margin-right: 20px;
	transition: 0.3s;
}

#hero .social-links a:hover {
	color: #ff7b00;
}

@media (max-width: 992px) {
	#hero {
		text-align: center;
	}
	#hero h1 {
		font-size: 32px;
		line-height: 36px;
	}
	#hero p {
		margin-top: 10px;
		font-size: 20px;
		line-height: 24px;
	}
}


/* Sections */

section {
	padding: 60px 0;
	overflow: hidden;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #eef7ff;
}

.section-title h2::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #ff7b00;
	bottom: 0;
	left: calc(50% - 20px);
}

.section-title p {
	margin-bottom: 0;
	color: #eef7ff;
}


/* About */

.about .content h3 {
	font-weight: 700;
	font-size: 26px;
	color: rgb(101, 101, 165);
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.about .content ul strong {
	margin-right: 10px;
}

.about .content ul i {
	font-size: 16px;
	margin-right: 5px;
	color: #ff7b00;
	line-height: 0;
}

.about .content p:last-child {
	margin-bottom: 0;
}


/* Facts */

.facts .count-box {
	padding: 30px 30px 25px 30px;
	margin-top: 30px;
	width: 100%;
	position: relative;
	border-radius: 15px;
	text-align: center;
	background: rgb(54, 54, 73);
}

.facts .count-box i {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 24px;
	background: #ff7b00;
	color: #ebebeb;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
}

.facts .count-box span {
	font-size: 36px;
	display: block;
	font-weight: 600;
	color: #ebebeb;
}

@supports (font-variation-settings: normal) {
	.facts .count-box p {
		padding: 0;
		margin: 0;
		font-family: "Fira Code VF", monospace;
		font-size: 14px;
	}
}


/* Skills */

.skills .progress {
	height: 60px;
	display: block;
	background: none;
	border-radius: 0;
}

@supports (font-variation-settings: normal) {
	.skills .progress .skill {
		padding: 10px 0;
		margin: 0;
		text-transform: uppercase;
		display: block;
		font-weight: 600;
		font-family: "Fira Code VF", monospace;
		color: #ebebeb;
	}
}

.skills .progress .skill .val {
	float: right;
	font-style: normal;
}

.skills .progress-bar-wrap {
	background: #ebebeb;
}

.skills .progress-bar {
	width: 1px;
	height: 10px;
	transition: 0.9s;
	background-color: #ff7b00;
}


/* Resume */

.resume .resume-title {
	font-size: 26px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 20px;
	color: rgb(101, 101, 165);
}

.resume .resume-item {
	padding: 0 0 20px 20px;
	margin-top: -2px;
	border-left: 2px solid #ff7b00;
	position: relative;
}

@supports (font-variation-settings: normal) {
	.resume .resume-item h4 {
		line-height: 18px;
		font-size: 18px;
		font-weight: 600;
		text-transform: uppercase;
		font-family: "Fira Code VF", monospace;
		color: #ff7b00;
		margin-bottom: 10px;
	}
}

.resume .resume-item h5 {
	font-size: 16px;
	background: rgb(101, 101, 165);
	border-radius: 10px;
	padding: 5px 15px;
	display: inline-block;
	font-weight: 600;
	margin-bottom: 10px;
}

.resume .resume-item ul {
	padding-left: 20px;
}

.resume .resume-item ul li {
	padding-bottom: 10px;
}

.resume .resume-item:last-child {
	padding-bottom: 0;
}

.resume .resume-item::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50px;
	left: -9px;
	top: 0;
	background: #fff;
	border: 2px solid #ff7b00;
}

.download-button {
	font-size: 17px;
	font-weight: 600;
	color: #f8f8f2;
	background: #ff7b00;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 50px;
	border-width: 0px;
	transition: 0.5s;
	margin-top: 20px;
}

.download-button:hover {
	background: #ebebeb;
	color: #ff7b00;
}


/* Projects */

.projects .section-header {
	margin-bottom: 40px;
}

.projects .projects-carousel, .projects .projects-slider {
	overflow: hidden;
}

.projects .project-item {
	text-align: center;
}

.projects .project-item .project-img {
	width: 120px;
	border-radius: 50%;
	border: 4px solid #fff;
	margin: 0 auto;
}

.projects .project-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #c9dff3;
}

.projects .project-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0 0 15px 0;
}

.projects .project-item .quote-icon-left, .projects .project-item .quote-icon-right {
	color: #90c8fc;
	font-size: 26px;
}

.projects .project-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.projects .project-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}

.projects .project-item p {
	font-style: italic;
	margin: 0 auto 15px auto;
	color: #eef7ff;
}

.projects .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.projects .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #ff7b00;
}

.projects .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #ff7b00;
}

@media (min-width: 992px) {
	.projects .project-item p {
		width: 80%;
	}
}


/* Contact */

.contact .info {
	width: 100%;
	background: rgb(54, 54, 73);
}

.contact .info i {
	font-size: 20px;
	color: #ff9431;
	float: left;
	width: 44px;
	height: 44px;
	background: #eef7ff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: rgb(101, 101, 165);
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #eef7ff;
}

.contact .info .email, .contact .info .phone {
	margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
	background: #ff7b00;
	color: #fff;
}

.contact .php-email-form {
	width: 100%;
	background: rgb(54, 54, 73);
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #c9dff3;
	background: #eb4f4f;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br + br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: rgb(54, 54, 73);
	background: #53ff5c;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: rgb(54, 54, 73);
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
	border-radius: 10px;
	box-shadow: none;
	font-size: 14px;
	color: #363649;
	background-color: #c9dff366;
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
	background: #ff7b00;
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
	background: #ff9431;
	color: rgb(54, 54, 73);
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.disabled-area {
	pointer-events: none;
}


/* Footer */

#footer {
	color: #eef7ff;
	font-size: 14px;
	text-align: center;
	padding: 30px 0;
}

@supports (font-variation-settings: normal) {
	#footer h3 {
		font-size: 36px;
		font-weight: 700;
		position: relative;
		font-family: "Fira Code VF", monospace;
		padding: 0;
		margin: 0 0 15px 0;
	}
}

#footer p {
	font-size: 15;
	font-style: italic;
	padding: 0;
	margin: 0 0 40px 0;
}

#footer .social-links {
	margin: 0 0 40px 0;
}

#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #ff9431;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .social-links a:hover {
	background: #ff7b00;
	color: rgb(54, 54, 73);
	text-decoration: none;
}
