@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body
{
	background: lightblue;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container
{
	position: relative;
	width: 100%;
	max-width: 1500px;
	min-height: 1000px;
	background: #fff;
	margin: 10px;
	display: grid;
	grid-template-columns: 2fr 5fr;
	box-shadow: 0 35px 55px rgba(0, 0, 0, 0.1);
}
.container .left_side
{
	position: relative;
	background: #2b3743;
	padding: 40px;
}
.profile_text
{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.profile_text .imgBox
{
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	overflow: hidden;
}
.profile_text .imgBox img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.profile_text h2
{
	color: #fff;
	font-size: 2.0em;
	margin-top: 20px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	line-height: 1.4em;
}
.profile_text h2 span
{
	font-size: 0.8em;
	font-weight: 300;
}
.contact_info
{
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.title
{
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
.contact_info ul
{
	position: relative;
}
.contact_info ul li
{
	position: relative;
	list-style: none;
	margin: 10px 0;
	cursor: pointer;
}
.contact_info ul li .icon
{
	display: inline-block;
	width: 30px;
	font-size: 18px;
	color: #03b9f4;
}
.contact_info ul li .text
{
	color: #fff;
	font-weight: 300;
}
.contact_info.languages
{
	margin-top: 10px;
}

.contact_info.languages li
{
	margin-bottom: 15px;
}

.contact_info.languages h5
{
	color: #fff;
	font-weight: 500;
}

.container .right_side
{
	position: relative;
	background: #FDFFF2;
	padding: 40px;
}
.about
{
	margin-top: 50px;
}
.about:last-child
{
	margin-bottom: 0;
}
.summary
{
	margin-bottom: 50px;
	color: #2b3743;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.about .box
{
	margin: 25px 0;
}
.about .box h4
{
	font-weight: 500;
}
.about .box .role
{
	font-weight: 900;
	margin-bottom: 5px;
}
.about.education .box
{
	position: relative;
	width: 100%;
	margin-top: 5px;
	display: grid;
	grid-template-columns: 2fr 2fr;
}
.about.skills .box
{
	position: relative;
	width: 100%;
	margin-top: 5px;
	display: grid;
	grid-template-columns: 2fr 2fr 2fr;
}
.about.skills .box h3
{
	font-weight: 400;
}
.about.soft_skills h4
{
	font-weight: 400;
}
.about.awards h4
{
	font-weight: 400;
}