.progress {
    background: linear-gradient(to right, var(--light) var(--scroll) , transparent 0);
    background-repeat: no-repeat;
    position: fixed;
    border-radius: 25px;
    width: 100%;
    height: 5px;
    z-index: 9;
}

header {
  height: 70px;
  width: 100%;

  display: flex;
  align-items: center;

  padding: 15px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: absolute;  
  top: 0;
  left: 0;
  right: 0;
  
  z-index: 10;
}

.logoWrapper img {
    height: 110px !important;
    margin-top: 50px !important;;
}

.logoWrapper a {
  text-decoration: none;
  font-size: 24px;
  color: var(--whiteColor);
  font-weight: 500;
  transition: .3s ease-in-out;
  
  display: none;
}

.logoWrapper a:hover {
  font-size: 22px;
}

.logoWrapper img {
  height: 40px;
}

.socialWrapper a {
  margin: 0 10px; 
}

.headerIcon {
  font-size: 24px;
  color: #fff;
  transition: .3s ease-in-out;
}

.headerIcon:hover {
  transform: scale(1.1);
}

#facebook > i {
    color: #4267B2;
}

#instagram > i {
    color: #E1306C;
}

@media (max-width: 628px) {

  header {
    padding: 15px;
  }

  .logoWrapper a {
    font-size: 20px;
  }

  .socialWrapper img {
    margin: 0 5px;
  }

  .headerIcon {
    font-size: 18px;
  }

}

@media (max-width: 350px) {

  header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .socialWrapper {
    margin-top: 10px;
  }

}