*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

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

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

.container .left-side {
	position: relative;
	background: #003247;
	padding: 40px;
	
}

.profile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255,255,0.2);
}

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

.profile .imgDiv {
	position: relative;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;	
}

.profile .imgDiv img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact {
	padding-top: 40px;
}

.title {
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.contact ul{
	position: relative;
}

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

.contact ul li .icon {
	display: inline-block;
	width: 30px;
	font-size:18px;
	color: #fff; /*#03a9fa;*/
}

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

.contact.education li{
	margin-bottom: 15px;
}

.contact.education h5{
	color: #fff; /* #03a9f4*/
	font-weight: 500;
}

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

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



.container .right-side {
	position: relative;
	background: #fff;
	padding: 40px;
	
}

.objective {
	margin-bottom: 50px;
}

.objective:last-child 
{
 	margin-bottom: 0;
 }
 
 .title2 {
 	color: #003147;
 	letter-spacing: 1px;
 	margin-bottom:10px;
 }
 
 p {
 	color: #333;
 }
 
 .objective .box {
 	display: flex;
	flex-direction: row;
	margin: 20px 0; 
 }
 
 .objective .box .workingyear {
 	min-width: 150px;
 }
 
 .objective .box .workingyear h5 {
 	color: #333;
 	font-weight: 600;
 	
 }
 
 .objective .box .text h4 {
 	color: #2a7da2;
 	font-size: 16px;
 }

.objective ul{
	position: relative;
}

.objective ul li{
	position: relative;
	list-style: square;
	margin: 10px 0;
	cursor: pointer;
}

.objective ul li .icon {
	display: inline-block;
	width: 30px;
	font-size:18px;
	color: #333; /*#03a9fa;*/
}

.objective ul li span{
	color: #333;
	font-weight: 300;
}

.hobby ul {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

.hobby ul li {
	list-style: none;
	color: #333;
	font-weight: 500;
	margin: 10px;
}

.hobby ul li .fa{
	color: #03a9fa;
	font-size:18px;
	width: 20px;
}

a:link {
	text-decoration: none;
  color: #2a7da2;
}

/* visited link */
a:visited {
  color: #2a7da2;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}


@media (max-width: 1000px)
{
 .container
 {
   margin: 10px;
   grid-template-columns: repeat(1,1fr);
 }
 .hobby ul
 {
 }
}

@media (max-width: 600px)
{
  .objective .box
  {
    flex-direction: column;
  }
  .objective .box .workingyear
  {
    margin-bottom: 5px;
  }
  .hobby ul
  {
    grid-template-columns: repeat(1,1fr);
  }
  
}


