@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin:0;
	padding:0;
	border: 0;
	font-size: 100%;
	list-style: none;
	box-sizing: border-box;
	font-family:'Poppins', sans-serif;
}

/* common resources*/

img
{
width: 100%;
}

.Title
{
color: #fff;
font-size: 1.5em;
margin-top: 20px;
text-transform: uppercase;
text-align: center;
font-weight: 600;
line-height: 1.4em;
}

.title2
{
color: #003147;
font-size: 1.5em;
margin-top: -30px;
margin-bottom: 10px ;
text-transform: uppercase;
text-align: left;
font-weight: 600;
line-height: 1.4em;
}

body
{
  background:lightblue;
  display:flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

header
{
  position:absolute;
	width:100%;
	top:0;
  left:0;
  padding: 30px 100px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:100;
}

.navigation a
{
color:#003147;
text-decoration: none;
pointer-events:none;
padding: 6px 15px;
border-radius:20px;
margin:0 10px;
font-weight:600;
}

.navigation .active, .navigation a:hover
{
  background:#003147;
  color:#fff;
}

.container
{
	position:relative;
	width:100%;
	max-width: 1000px;
	min-height: 1000px;
	background:#fff;
	margin: 100px ;
	display: grid;
	grid-template-columns: 1fr 2fr;
	box-shadow: 0 35px 55px rgba(0, 0, 0, 0.1);
}
.container .left_side
{
	position:relative;
	background:#003147;
	padding:40px;
}

.profile_text
{
position: relative;
display: flex;
flex-direction: column;
align-items: center;
padding-bottom: 11px;
border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.profile_text .imgBox
{
	position: relative;
	max-width: 200px;
	min-height: 200px;
	border-radius: 50%;
	overflow: hidden;
}

.profile_text h2 span
{
font-size: 0.8em;
font-weight: 300;
}

.contactinfo .Title
{
	margin-bottom:20px;
}

.contactinfo ul li
{
position: relative;
list-style: none;
margin: 10px 0;
cursor: pointer;

}

.contactinfo ul li .icon
{
display: inline-block;
width: 30px;
font-size: 18px;
color:lightblue;

}

.contactinfo ul li span
{
	color: #fff;
	font-weight: 300;
}

.education li
{
list-style-type: none;
margin-top: 15px;
margin-bottom: 15px;
}

.education h5
{
color: skyblue;
font-weight: 500;
}

.education h4:nth-child(2)
{
color: #fff;
font-weight: 500;
}

.education h4
{
color: #fff;
font-weight: 300;
}

.language li
{
list-style-type: none;
margin-top: 15px;
margin-bottom: 15px;
color: #fff;
font-weight: 300;
}

.language .percent
{
position:relative;
width: 100%;
height:6px;
background: #081921;
display: block;
margin-top: 5px;
margin-bottom: 5px;
}


.language .percent div
{
position:absolute;
top: 0;
left: 0;
height:100%;
background: #03a9f4;
}




.container .right_side
{
	position:relative;
	background:#fff;
	padding:40px;
}

.about
{
margin-bottom: 50px;
}

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

.about .box
{
	display: flex;
	flex-direction: row;
	margin: 20px 0;
}

.about .box .year_company
{
	min-width:150px;
}

.about .box .year_company h5
{
	text-transform: uppercase;
	color: #848c90;
	font-weight: 600;
}

.Visitor_Counter h4
{
	margin-top: 30px;
	display: flex;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Times New Roman', Times, serif;
	color: #003147;
	text-align: center;
}

.about .box .text h4
{
	text-transform: uppercase;
	color: #2a7da2;
	font-size: 16px;
}

.skills .row .column
{
	float: left;
	width: 25%;
	color: #2a7da2;
}

.row:after
{
	content: "";
	display: table;
	clear: both;
}

footer .cp
{
  position:absolute;
  padding: 0px 0px;
  display:inline;
  text-decoration: none;
  align-items:center;
  color:#003147;
}

footer .cp a
{
color:#003147;
text-align: center;
text-decoration: none;
pointer-events:cursor;
font-weight:600;
}



@media (max-width:1000px)
{
	.container
	{
		margin: 10px;
    top:70px;
		grid-template-columns: repeat(1, 1fr);
	}
  
  	header
	{
	flex-direction: column;
	position:absolute;
  left:0;
  padding: 10px 10px;
  display:flex;
	}
	
	.navigation a
{
padding: 5px 5px;
border-radius:10px;
margin:0 10px;
color:#003147;
}
}

@media (max-width:600px)
{
	.about .box
	{
		flex-direction: column;
	}
	.about .box .year_company
	{
		min-width: 150px;
		margin-bottom: 5px;
	}

	.skills .row .column
	{
   width: 100%;
	}
}