body{ margin:0; padding: 0;}

.header {
  width: 100%;
  position:relative;
  z-index:2000;
}

.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;
  width:100%;
  background:#ffffff;
  top: -60px;
  left: 0;
  z-index:2000;
  animation: goDown 0.5s ease-in-out forwards;
}

.sticky .header__row img {}

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

@media (max-width: 700px) {
.sticky {position: relative;}
.header {width: auto;}
}