*{
	margin : 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}

.header {
	min-height: 100vh;
	width: 100%;
	background: #1d2a42;
}

nav {
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}

nav .fa {
	display: none;
}
.nav-links {
	flex: 1;
	text-align: right;
}

.nav-links ul li {
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}

.nav-links ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}

.nav-links ul li::after {
	content: '';
	width: 0%;
	height: 2px;
	background: #fc0;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after{
	width: 100%;
} 

.profile {
	width: 80%;
	margin: auto;
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.profile-col {
	flex-basis: 48%;
	padding: 30px 2px;
	text-align: center;
	color: #fc0;
}

.profile-col img {
	height: 300px;
	border-radius: 50%;
	border: 0.5em solid #fc0;
}

.profile-col h1 {
	text-align: right;
	font-size: 62px;
}
.profile-col p {
	text-align: right;
	font-size: 20px;
	color: #fff;
}

.profile-lan {
	text-align: center;
}

.profile-lan ul li {
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
	color: #fff;
	font-weight: 600;
	font-size: 1em;
	cursor: pointer;
}

.profile-lan ul li::after{
	content: '';
	width: 0%;
	height: 4px;
	background: #fc0;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.profile-lan ul li:hover::after {
	width: 100%
}

.contact {
	width: 100%;
	display: flex;
	margin: auto;
	color: #fff;
	text-align: center;
	top: 85%;
	position: absolute;
}
.contact .contact-row {
	margin: auto;
}

.contact .contact-row .fa {
	color: #fc0;
}

.contact-row a {
	color: #fff;
	text-decoration: none;
}

@media (max-width: 1000px) {

	.profile {
		top: 40vh;
		flex-direction: column;
	}
	.profile-col {
		padding-top: 0em;
	}
	.profile-col img {
		height: min(50vw, 25vh);
		border: 1em solid #fc0;
	}

	.profile-col h1 {
		text-align: center;
		font-size: 5vh;
	}

	.profile-col p {
		text-align: center;
		font-size: 2em;
	}

	nav .fa {
		/*position: absolute;*/
		display: block;
		color: #1d2a42;
		margin: 0.5em;
		font-size: 6rem;
		cursor: pointer;
	}
	nav .fa-bars{
		color: #fc0;
		margin-left: 75vw;
	}
	
	.nav-links {
		position: absolute;
		background: #fc0;
		height: 100vh;
		width: 0;
		top: 0;
		right: 0%;
		z-index: 2;
		transition: 1s;
		overflow: hidden;

	}
	.nav-links ul {
		padding: 4em;
	}
	.nav-links ul li {
		display: block;
		padding: 2em 3em;
	}

	.nav-links ul li a {
		color: #1d2a42;
		font-size: 2em;
	}
	.contact {
		flex-direction: column;
		top: 80vh;
		width: 24em;
		margin-left: calc(50% - 12em);
	}
	.contact .contact-row {
		font-size: 2em;
		padding: 0.1em;
		display: flex;
		flex-direction: row;
		margin: 0; 
	}
	.contact .contact-row i {
		padding-left: 1em;
		padding-right: 1em;
	}
	.profile-lan ul li {
		font-size: 1.7em;
		padding-top: 1em;
		padding-bottom: 0.5em;
		padding-left: 2em;
		padding-right: 2em;
	}
}

/*Education history*/
.education_section {
	width: 80%;
	margin: auto;
	padding-top: 100px;
	padding-bottom: 150px;
}

.section_title {
	width: 100%;
	margin-left: -10%;
	position: absolute;
	background-color: #fc0;
}

.section_title h1 {
	margin-left: 10%;
	text-align: left;
	font-size: 36px;
	font-weight: 600;
	background-color: #fc0;
}


.section_subtitle {
	color: #9f8415;
	font-weight: 300;
}
.section_subtitle a {
	color: #9f8415;
	text-decoration: none;
}

.rows {
	margin: 5%;
	display: flex;
	justify-content: space-between; 
	padding-top: 100px;
	flex-wrap: wrap;
}
.rows > * {
	margin: 5% 1em;
}
.rows .ed_col {
	flex-basis: calc(700px - 31%);
	flex-grow: 1;
}
.rows .project_col {
	flex-basis: calc(700px - 31%);
	flex-grow: 1;
}

.rows .we_col {
	flex-basis: calc(700px - 31%);
	flex-grow: 1;
}

.rows .misc_col {
	flex-grow: 1;
	flex-basis: calc(700px - 31%);
}

.ed_col {
	background: #1d2a42;
	border-radius: 10px;
	padding: 2em;
	box-sizing: border-box;
}

.rows ul {
	margin-left: 25px;
	color: #eee;
}

@media (max-width: 1000px) {
	.section_title h1 {
		font-size: 3.7em;
	}
	.rows h3 {
		font-size: 2em;
	}
	.section_subtitle {
		font-size: 2.5em;
	}

	.rows ul li {
		font-size: 1.7em;
	}
	.rows p {
		font-size: 1.7em;
	}
	.rows2_elements {
		font-size: 1.7em;
	}
}

/*Work experience*/
.experience_section {
	width: 80%;
	margin: auto;
	padding-top: 100px;
	padding-bottom: 150px;

}

.we_col {
	flex-basis: 31%;
	border-radius: 10px;
	margin-bottom: 5px;
	padding: 20px 12px;
	box-sizing: border-box;
}

.we_col ul{
	color: #111;
}
.we_col ul li a {
	color: #111;
	text-decoration: none;
}

a {
	position: relative;
	text-decoration: none;
}

a[href*="http"]::before {
	font-family: FontAwesome;
	content: '\f08e';
	position: absolute;
	left: 101%;
	top: 0.3em;
	color: #9f8415;
}

a[href*=".pdf?0"]::before {
	font-family: FontAwesome;
	content: '\f1c1';
}

a[href*="github"]::before {
	font-family: FontAwesome;
	content: '\f09b';
}

a[href*="_CV_"]::before {
	content: '';
}

a[id^="photography_id"]::before,
a[id^="baking_id"]::before 
{
	left: 87%;
	color: #1d2a42;
}


.we_col ul li::after{
	content: '';
	height: 2px;
	width: 0%;
	display: block;
	background: #1d2a42; 
	margin: auto;
	transition: 0.5s;
}

.we_col ul li:hover::after{
	width: 100%;
}

/*Project section*/
.project_section {
	width: 80%;
	margin: auto;
	padding-top: 100px;
}
.project_col {
	flex-basis: 31%;
	border-radius: 10px;
	margin-bottom: 5px;
	padding: 20px 12px;
	box-sizing: border-box;
}

.project_col ul{
	color: #111;
}
.project_col ul li a {
	color: #111;

}

.project_col a::after{
	content: '';
	height: 2px;
	width: 0%;
	display: block;
	background: #1d2a42; 
	margin: auto;
	transition: 0.5s;
}

.project_col a:hover::after{
	width: 100%;
}

/*mis section*/
.misc_section {
	width: 80%;
	margin: auto;
	padding-top: 100px;
}

.misc_col {
	flex-basis: 48%; 
	background: #1d2a42;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 1.5em;
	box-sizing: border-box;
}
.misc_col a {
	color: #eee;

}

.misc_col a::after{
	content: '';
	height: 2px;
	width: 0%;
	display: block;
	background: #fc0; 
	margin: auto;
	transition: 0.5s;
}

.misc_col a:hover::after{
	width: 100%;
}

.misc_col ul {
	margin: 1em;
}

.rows2{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.rows2 > * {
	flex-grow: 1;
}
.rows2_elements {
	color: #fff;
	text-decoration: none;
	border-radius: 10px;
	background: #fc0;
	color: #1d2a42;
	padding: 1% 2%;
	margin:2%; 
	text-align: center;
}

.hobbies_class a {
	color: #1d2a42;
}

.footer {
	width: 100%;
	text-align: center;
	padding: 4em 0;
	background: #fc0;
	color: #1d2a42;
	position: relative;
}
.icons {
	width: 60%;
	display: flex;
	flex-wrap: wrap;
	margin: auto;
	padding-top: 1em;
}
.icons > * {
	flex-grow: 1;
	margin: 0 13px;
	cursor: pointer;
	padding-top: 18px 0px;
}

.icons a{
	color: #1d2a42;
	text-decoration: none;
}
.footer h4{
	margin-bottom: 25px;
	margin-top: 20px;
	font-weight: 600;
}

/* FOOTER LOGO, footer logo */
.footer > a[href*="ckevar"] {
	position: absolute;
	color: #555;
	top: 1em;
	left: 1em;
	font-size: 1.5em;
}

.footer > a[href*="ckevar"]::before {
	content: 'created by';
	position: absolute;
	top: -20%;
	left: 0%;
	font-family: 'Poppins', sans-serif;
	font-size: 0.5em;
	position: absolute;
	color: #555;

}

.footer > a[href*="ckevar"]::after {
	content: '';
	position: absolute;
	height: 0.15em;
	width: 100%;
	top: 90%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #555;
}

@media (max-width: 1000px) {
	.footer {
		padding-block: 7em;
	}
	.footer h4 {
		font-size: 3em;
		padding-top: 2em;
	}

	.icons {
		width: 80%
	}
	.icons > i {
		font-size: 2.5em;
		margin-top: 2em;
	}
	.footer > a[href*="ckevar"] {
		font-size: 3em;
	}
	a[id^="photography_id"]::before,
	a[id^="baking_id"]::before 
	{
		font-size: 0.7em;	
	}

}
