

.header {
  width: 100%;
  position: absolute;
  z-index:10;
}

.header .header__row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
}

.header img {
  max-height: 110px;
  transition: all 0.3s ease-in-out;
}

.sticky {
  position: fixed;
  top: -60px;
  left: 0;
  background:rgba(255,255,255,1);
  z-index:1000;
  height: 80px;
  animation: goDown 0.5s ease-in-out forwards;
}

.sticky .header__row img {
  
}

@keyframes goDown {
  0%{
    top:-60px;
  }
  100% {
    transform: translateY(60px);
  }
}


@media (max-width: 800px) {
.header {
  width: 100%;
  position: relative;
}
}