
.Myexperiencetext { 	  
	position: absolute;
    top: 3%;
    left: 50%;
    font-size: 100px;
    font-family: 'Rochester', cursive;
    font-weight: 500;
    z-index: 3;
    transform: translateX(-50%);
}

/* --- Start progress bar --- */

.process-wrapper {
	margin:auto;
	max-width:1080px;
}
.ExperiencePictures{
    width: 50%;
}
#progress-bar-container {
	position:relative;
	width:90%;
	margin:auto;
	height:100px;
	margin-top:60px;
}

#progress-bar-container ul {
	padding:0;
	margin:0;
	padding-top:15px;
	z-index:5;
	position:absolute;
	width:100%;
	margin-top:-40px
}

#progress-bar-container li:before {
    box-sizing: inherit;
	content:" ";
	display:block;
	margin:auto;
	width:40px;
	height:40px;
	border-radius:50%;
	border:solid 2px #aaa;
	transition:all ease 0.3s;
     
}

#progress-bar-container li.active:before, #progress-bar-container li:hover:before {
	border:solid 2px #fff;
    background: #c1502e ; 
	/*background: linear-gradient(to right, #c1502e 20%,#d4ac6e 100%);*/
}

#progress-bar-container li {
	list-style:none;
	float:left;
	width:20%;
	text-align:center;
	color:#aaa;
	text-transform:uppercase;
	font-size:13px;
	cursor:pointer;
	font-weight:700;
	transition:all ease 0.2s;
	vertical-align:bottom;
	height:60px;
	position:relative;
}

#progress-bar-container li .step-inner {
	position:absolute;
	width:100%;
    font-size: 20px;
}

#progress-bar-container li.active, #progress-bar-container li:hover {
	color:#444;
}
/*For the bar and balls positioning change settings here*/
#progress-bar-container li:after {
    box-sizing: inherit;
	content:" ";
	display:block;
	width:20px;
	height:20px;
	background:#fff;
	margin:auto;
	border:solid 7px #fff;
	border-radius:50%;
	margin-top:51px;
	box-shadow:0 2px 13px -1px rgba(0,0,0,0.3);
	transition:all ease 0.2s;
     
}

#progress-bar-container li:hover:after {
	background:#fff;
}

#progress-bar-container li.active:after {
	background:#d4ac6e;
}

#progress-bar-container #line {
	width:80%;
	margin:auto;
	background: #eee;
	height:10px;
	position:absolute;
	left:10%;
	top:73px;
	z-index:1;
	border-radius:50px;
	transition: all ease 0.9s;
}

#progress-bar-container #line-progress {
	content:" ";
	width:0%;
	height:100%;
	background: #d4ac6e;	 
	/*background: linear-gradient(to right, #c1502e 0%,#d4ac6e 100%); */
	position:absolute;
	z-index:0;
	border-radius:50px;
	transition:all ease 0.9s;
}

#progress-content-section {
	width:90%;
	margin: auto;
	background: white;
	border-radius: 4px;
}

#progress-content-section .section-content {
	padding:30px 40px;
	text-align:center;
}

#progress-content-section .section-content h2 {
	font-size:45px;
    font-family: 'Rochester', cursive;
	color:#333;
    margin-top: -30px;
	
}

#progress-content-section .section-content p {
	font-size:19px;
	line-height:1.5em;
	color:#777;
}

#progress-content-section .section-content {
	display:none;
	animation: FadeInUp 700ms ease 1;
	animation-fill-mode:forwards;
	transform:translateY(15px);
	opacity:0;
}

#progress-content-section .section-content.active {
	display:block;
}

@keyframes FadeInUp {
	0% {
		transform:translateY(15px);
		opacity:0;
	}
	
	100% {
		transform:translateY(0px);
		opacity:1;
	}
}
@media (max-width: 1920px){
	#progress-bar-container{
		margin-top: 0px;
	}
}
@media (max-width: 1050px){
	.Myexperiencetext{
		font-size: 90px;
		top: 5%;
	  }
}
@media (max-width:900px){
	.Myexperiencetext{
		font-size: 80px;
	  }
}
@media (max-width: 768px){
    .Myexperiencetext{
        font-size: 70px;
        top: 5%;
      }
}
@media (max-width: 650px){
	.Myexperiencetext{
		font-size: clamp(4rem, 5vw, 3rem);
		width: 100%;
		display: grid;
		justify-content: center;
	  }
}
@media(max-width:360px){
	.ExperiencePictures {
		width: 100%;
	  }
}