* {
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', Arial, sans-serif;
}

p {
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 20px;
	line-height: 30px;
	color: #6c757d;
	/* 150% of font-size */
}

.g-text-primary {
	color: #618264 !important;
}

.g-btn {
	padding: 5px 20px;
	background-color: #618264 !important;
	color: #fff !important;
}

.g-btn:hover {
	background-color: #465f48 !important;
}

::selection {
	background-color: #618264;
	color: #fff;
	/* text-shadow: 4px 2px 2px #FFFD3A; */
}

/* general top and bottom padding */
.g-padding {
	padding-top: 80px;
	padding-bottom: 80px;
}
.content-mg {
	margin: 10px 0;
}
.content-box * + * {
	margin: 20px 0;
}
/* general background color */
.bg-sec {
	background: #f8f9fa;
}
.title-box {
	max-width: 600px;
	text-align: center;
}

.heading-big {
	position: absolute;
	top: 0px;
	left: 0;
	right: 0;
	font-size: 7vw;
	color: rgba(255, 255, 255, 0.1);
	font-weight: 900;
}

.heading-title {
	font-size: 50px;
	font-weight: bold;
}

.g-divider {
	height: 2px;
	width: 100px;
	margin: 15px auto;
	background: #618264;
	transition: 0.5s all;
}

/* Preloader -----------------------------------------------------------------*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 99998;
}

/* bottom part start */
.preloader:before {
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 50%;
	background-color: #000;
	transition: 1s;
}
/* top part start */
.preloader:after {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 50%;
	background-color: #000;
	transition: 1s;
}
/* bottom part end */
.preloader.complete:before {
	bottom: -50%;
}
/* top part end */
.preloader.complete:after {
	top: -50%;
}

.preloader.complete {
	visibility: hidden;
}

.circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 10px solid rgba(255, 255, 255, 0.1);
	border-top: 10px solid #618264;
	animation: animate 1.5s infinite linear;
	z-index: 99999;
}

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

/* Navigation----------------------------------------------------------------------------*/
nav .navbar-brand {
	font-size: 30px;
	color: #fff;
	transition: 0.5s all;
}
nav .navbar-nav li {
	margin-left: 15px;
}
nav .navbar-nav li a {
	color: rgba(255, 255, 255, 0.8) !important;
	font-size: 16px;
	letter-spacing: 0.05em;
	font-weight: 600;
	font-family: 'Nunito', sans-serif;
}
nav.g-nav {
	background: transparent;
	padding: 20px 0px;
	transition: 0.5s all;
}

nav.g-nav.stickyadd {
	background: #fff !important;
	padding: 15px 0;
	box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.05);
	transition: 0.5s all ease-in-out;
}
nav.stickyadd .navbar-brand {
	color: #000;
	font-size: 40px;
	transition: 0.5s all;
}
nav.stickyadd .navbar-nav .nav-link {
	color: #000 !important;
}
.navbar .hamburger {
	color: #fff;
}
nav.stickyadd .hamburger {
	color: #000;
}

nav *,
header * {
	animation-delay: 0.5s;
}

/* ---------- */

/* Header -----------------------------------------------------------------------*/

header {
	height: 100vh;
	width: 100%;
	background-color: #001524;
}
.header-content {
	height: calc(100vh - 100px);
	display: flex;
	flex-direction: column;
	/* center content */
	align-items: center;
	justify-content: center;
}
.content-box {
	/* define a max width for the content box */
	max-width: 700px;
	color: #fff;
}
.content-box h4 {
	font-size: 30px;
}
.content-box h1 {
	font-size: 52px;
}
.content-box p {
	color: #fff;
}
/* DOWNLOAD BUTTON */
.download-btn {
	color: #fff;
	text-decoration: none;
	border: 2px solid #fff;
	border-radius: 20px;
	padding: 5px 25px;
}
.download-btn:hover {
	color: #000;
	background: #fff;
	transition: 0.5s all;
	text-decoration: none;
}
/* LINKEDIN & GITHUB BUTTONS */
header .g-icon {
	display: inline-block;
	/* font-size: 20px; */
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
	line-height: 28px;
	height: 32px;
	width: 32px;
}

header .g-icon:hover {
	color: #000;
	background: #fff;
	transition: 0.5s all;
}

/* Skills -----------------------------------------------------------------------*/

.skills {
	color: #fff;
	background-color: #001524;
}
.skills li {
	color: #618264;
	font-size: 20px;
	font-weight: bold;
	margin: 15px;
}
.skills .g-divider {
	background-color: #fff;
}

/* Projects ---------------------------------------------------------------------*/

.projects {
	background-color: #001524;
}
.projects h2 {
	color: #fff;
}
.card,
.card-header {
	background: #f8f9fa !important;
}
.card p {
	font-size: 16px;
}
.card-text {
	text-align: start;
}
.card-header {
	border: none !important;
}

.projects .card-wrapper {
	padding-top: 15px;
	padding-bottom: 15px;
}
.projects .card img {
	height: 400px;
	object-fit: contain;
}

/* Contact ------------------------------------------------------------------*/

.contact {
	color: #fff;
	background-color: #001524;
}
.contact .g-icon {
	font-size: 50px;
	text-align: center;
}

/* footer -------------------------------------------------------------------*/

footer {
	height: 200px;
	background-color: #001524;
}

/* Media-------------------------------------------------------------------- */

@media (min-width: 200px) and (max-width: 768px) {
	.g-nav {
		background: #fff !important;
	}
	.g-nav .container {
		width: 85%;
	}
	nav .navbar-brand {
		font-size: 30px;
		color: #000;
	}
	.navbar .hamburger {
		color: #000;
	}
	nav .navbar-nav .nav-link {
		color: #000 !important;
	}

	.content-box h1 {
		font-size: 30px;
	}
	.content-box p {
		font-size: 16px;
	}
	header {
		height: 100vh;
		width: 100%;
		background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
			url('../images/background.jpg');
		background-repeat: repeat;
		background-size: cover;
		background-position: -700px 0;
	}
}
