.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 {
    width: 100%;
    text-align: center;
}

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

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

.logoWrapper img {
  height: 40px;
}

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

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

@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;*/
  /*}*/

}