body {

	margin: 0px;
	font-size: 30px;
	font-family: sans-serif;

}

:root {
	--section-color-blue: #739bdc;
}

/*Body Header*/

#body-header {
	height: 65vh;
	opacity: 0.8;
	background-image: url(image/macbook_mouse.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	padding-top: 1.2rem;

}


/*horizontal lists*/

.horizontal-list {
	list-style: none;
	padding-left: 0px;
	margin: 0px;

}

.horizontal-list li {
	display: inline-block;
	margin: 0px 8px 8px 0px;
	font-weight: 100;
	font-size: 0.9rem;
}

.horizontal-list li a {
	color: white;
	text-decoration: none;

}

.nav-menu li a {

	transition: color 0.5s, border-bottom 4s;
}

.nav-menu li a:hover {
	color: lightgrey;
	border-bottom: 1px black solid;

}



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

/*Name and Social Icons*/

#name-social-container {
	margin-top: 20vh;
}

#my-name {
	font-size: 3rem;
	letter-spacing: 0.1rem;
	margin-bottom: 0.5rem;
	color: white;
	font-weight: 700;

}

.social-icons li a i {
	/* 	color: red;*/
	padding: 10px;
	font-size: 1rem;
	border-radius: 50%;

}


.social-icons li a i:hover {
	box-shadow: 0px 0px 6px 4px rgba(230, 196, 196, 0.3);
}

/* Section*/

section {
	padding-bottom: 20px;

	display: flex;
	flex-direction: column;
	align-items: center;
	/*	height: 75vh;    only for checking odd even*/
}



section:nth-child(2n) {
	background-color: #9e9b9b29;
}

section:nth-child(2n + 1) {
	background-color: white;
}

/*only checking pseudo target class*/

/*section:target{
	background-color: cyan;
}*/


.section-heading {
	width: auto;
	/*	margin: 10px auto;  there is no need because align-items: center;*/
	padding: 20px 10px 10px;
	font-weight: 400;
}

.section-heading span {
	display: inline-block;
	color: var(--section-color-blue);
	font-size: 40px;
	padding-top: 10px;
	margin-right: .5rem;
}

/* About*/

#about {
	height: auto;
	width: 100vw;
	position: relative;
}


/*MyImage  */
#my-image {
	height: 12rem;
	width: 12rem;
	margin: auto;
	margin-top: -17vh;

}

#my-image img {
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	box-shadow: 1px 1px 10px 2px lightgrey;
}


/*  About Paragraph*/
#about-para {
	padding: 10px;
	font-size: 1.1rem;
	line-height: 28px;

	width: 70%;

	margin: auto;
	text-align: justify;
	color: grey;
	font-family: Arial, Helvetica, sans-serif;
}


/*  Skill Display*/


#skills-display {
	width: 75%;
	padding: 10px;
	margin-bottom: 30px;
	/*   	border: 2px red solid;   yeh v not need */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;


}

.skill-progress {
	width: 11rem;
	height: 2.2rem;
	background-color: lightgrey;
	border-radius: 1rem;
	box-shadow: 1px 1px 2px 1px #b9b9b9 inset;
	margin: 25px;
	overflow: hidden;

	/*  	border: 2px solid black  ;  only for understanding */

}

.skill-progress>div {
	/*  	pseudo class because if use simple div it is apply whole div here only want to apply direct child of skill progress*/
	border-radius: 20px 0px 0px 20px;
	box-shadow: 1px 1px 5px 2px #989882;
}

.skill-name span {
	color: white;
	font-size: 1rem;
	margin-left: 10px;
	vertical-align: middle;

}

/*   Work Experience*/

.timeline {
	width: 75%;
	position: relative;
}

.timeline-box {
	width: 40%;
	padding: 5px;
	min-height: 150px;
	/* 	border: 2px solid black;*/
	position: relative;
	left: 5%;
	text-align: right;
}

.timeline-box::after {
	content: "";
	height: .5rem;
	width: .5rem;
	border-radius: 50%;
	position: absolute;
	background-color: lightgrey;
	top: 25%;
	z-index: 1;
}

.timeline-box:nth-child(2n) {
	left: 53%;
}

.timeline-box:nth-child(2n)::after {
	left: -9%;
}

.timeline-box:nth-child(2n+1)::after {
	right: -8.8%;
}

.timeline-container {
	padding: 8px;
}

.timeline-logo {
	position: absolute;
	width: 50px;
	overflow: hidden;
}

.timeline-logo>img {
	width: 100%;

}

#timeline-divider {
	position: absolute;
	top: 5%;
	left: 50%;
	height: 80%;
	border: 1px dashed #0096fa6b;
	width: 0%;


}

@media screen and (max-width:600px) {
	#timeline-divider {
		left: 5%;
	}

	.timeline-box {
		left: 12% !important;
		width: 80%;
	}

	.timeline-box::after {
		left: -10% !important;
	}

	html {
		font-size: 15px;
	}

	/* here we use !important in place of this code*/
	/*	.timeline-box:nth-child(2n)::after{
 	  left:-10% ;
 }


 	.timeline-box:nth-child(2n+1)::after{
 	  left:-10% ;
 }
*/
	/*.timeline-box:nth-child(2n){
     left:12%;
 	}*/
}

.timeline-traveller i {
	transform: rotateZ(90deg);
	margin-top: -35px;
	display: block;
	color: var(section-color-blue);
}

#timeline-divider .timeline-traveller {
	position: sticky;
	top: 135px;
	z-index: 2;
}

.experience-designation {
	font-size: 1.4rem;
}

.experience-company-name {
	margin: 5px 0 0;
	color: #eb822d;
	font-weight: 400;
	font-size: 1.2rem;
}

.experience-duration {
	color: #9e9b9b;
	font-weight: 100;
	color: grey;
	font-size: 1rem;
}

.experience-description {
	font-size: 14px;
	padding: 2px;
	color: grey;
	line-height: 20px;
}


/*portfolio section*/

#portfolio-container {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	padding: 0 50px;
	margin-bottom: 20px;
	justify-content: space-around;
}

.portfolio-image-container {
	max-width: 300px;
	overflow: hidden;
	margin: 30px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.portfolio-image-container img {
	width: 100%;
	height: 100%;
}

.portfolio-details {
	transition: all 0.5s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	color: transparent;
	text-align: center;
	padding: 10px;
}

.portfolio-image-container:hover {
	box-shadow: 0 0 20px #74ADC8;
}

.portfolio-image-container:hover .portfolio-details {
	background-color: #80808078;
	color: white;
}

.text-align-justify {
	text-align: justify;
}




/*   common Margin class*/

.mb75px {
	margin-bottom: 75px;
}

.m0 {
	margin: 0;
}

/*    common color class*/

.text-highlighted {
	color: #2857a4;
	font-weight: 600;
}


.m-blue {
	color: #2857a4;
}

.mb-blue {
	background-color: #2857a4;
}

.mb-red {
	background-color: red;
}

/*  percentage class*/

.eighty-five-percent {
	width: 85%;
	height: inherit;

}

.sixty-percent {
	width: 60%;
	height: inherit;
}



/* Contact Form */

#contact {
	background-color: #0abcf9;
	background-image: linear-gradient(50deg, #2857a4 0%, #403066 74%);
	color: white;
	padding-bottom: 40px;
}

#contact h1,
#contact h1 span {
	color: white;
}

#contact-form {
	margin-left: 20%;
}

#contact-container {
	display: flex;
}

#my-details-container {
	width: 35%;
	margin-left: 6%;
}

#my-details-container h3 {
	color: white;
	font-weight: 550;
	font-size: 1.2rem;
}

#contact-form-container {
	width: 50%;
}

#my-details-container p {
	color: #d9dcdd;
	font-size: 0.9rem;
}

.my-details-info-container {
	margin-bottom: 20px;
	color: #d9dcdd;
	font-size: 1rem;
}

.my-details-info-container span {
	margin-left: 0.4rem;
}

.my-details-info-container i {
	color: white;
}

.my-details-icon {
	width: 1rem;
	height: 1rem;
	vertical-align: bottom;
	margin-right: 0.5rem;
}

#contact-form input,
textarea {
	max-width: 90%;
	margin: 15px;
	padding: 4px 10px;
	border: 0px solid transparent;
	border-bottom: 2px solid white;
	color: #d9dcdd;
	background: transparent;
	width: 90%;
	line-height: 1.6;
	font-size: 1.05rem;
}

#contact-form button[type="submit"] {
	background: transparent;
	font-size: 0.95rem;
	border: 2px solid white;
	margin-top: 5%;
	margin-left: 35%;
	border-radius: 2px;
	color: white;
	font-family: sans-serif;
	font-weight: 700;
	letter-spacing: 0.046875em;
	line-height: 1;
	padding: 0.8em 0.8em 0.78em;
	text-transform: uppercase;
}

#contact-form button:hover {
	background: white;
	color: #13386fe0;
}

#contact .social-icons li a i {
	font-size: 1.2rem;
	margin: 40px 10px 10px;
	padding: 10px 14px 20px 10px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

/* Common Text Align Classes */

.text-right {
	text-align: right;
}

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

.text-justify {
	text-align: justify;
}

/* Common Margin Classes */

.m0 {
	margin: 0;
}

.mb75px {
	margin-bottom: 75px;
}

.mb50px {
	margin-bottom: 50px;
}

/*common color classes */

.text-highlight {
	color: #2857a4;
	font-weight: 600;
}

/* setting background-color */

.m-blue {
	color: #2857a4;
}

.mb-blue {
	background-color: #2857a4;
}

.mb-orange {
	background-color: #ec4d1c;
}

.mb-teal {
	background-color: #0b8176;
}

.mb-light-purple {
	background-color: #93738c;
}

/*Percentage Classes */

.eighty-five-percent {
	height: inherit;
	width: 85%;
}

.eighty-percent {
	height: inherit;
	width: 80%;
}

.fifty-percent {
	height: inherit;
	width: 50%;
}

/* Scroll Progress */
.scroll-progress {
	height: 10px;
	width: 100%;
	background-color: #000;
	z-index: 50;
	position: fixed;
	top: 0%;
	left: 0%;
}

.scroll-progress-bar {
	transition: width 0.15s linear;
	background: #03c4a1;
	height: 100%;
	width: 0%;
}

/* Scroll Progress Count */
#scroll-progress-count {
	position: fixed;
	top: 13%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1rem;
	height: 30px;
	width: 8rem;
	background-color: transparent;
	text-align: center;
	color: #000;
	border: 2px solid #000;
	border-radius: 14px;
	box-shadow: 0px 0px 7px 0px rgba(230, 196, 196, 1);
	z-index: 50;
	word-wrap: break-word;
	word-break: break-all;
	padding: 0.3rem 0.7rem;
}

#scroll-progress-count span {
	line-height: 30px;
}

#scrolled {
	font-size: 1.3rem;
}

/* Responsive Media Queries */
@media only screen and (max-width: 768px) {
	.timeline-box {
		width: 90%;
		left: 10% !important;
	}

	.timeline-box::after {
		left: -9.3% !important;
	}

	#timeline-divider {
		top: 10%;
		left: 2%;
	}

	#contact-form {
		margin-left: 0%;
	}

	#contact-container {
		flex-wrap: wrap;
	}

	#my-details-container {
		width: 80%;
		margin: 10%;
	}

	#contact-form-container {
		width: 80%;
		margin: 10%;
	}
}

@media only screen and (max-width: 572px) {
	.timeline-box {
		width: 100%;
		left: 10% !important;
	}

	.bars {
		display: block;
	}

	.nav-menu {
		display: none;
	}
}