.header-logo h3{line-height: .7em;}
	.mico{display: block;font-size: 34%;}
	 .header-logo a h3:hover{
    text-decoration: none!important;
}
	.header-logo a:hover{
    text-decoration: none!important;
		color:#BCBCBC!important;
		
}
			
.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.step-name{display: none;}
.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
}

.stepper-item.active {
  font-weight: bold;
	/*background-color:#d50707;	*/
}

.stepper-item.active .step-counter{
  /*font-weight: bold;*/
	background-color:#d50707;
	color:#ffffff;
}			
			
.stepper-item.completed .step-counter {
  background-color: #002d75;
	color:#ffffff;
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #002d75;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
	color:#ffffff;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}	