.header {
 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;
  top: -60px;
  left: 0;
  right:0;
  z-index:2000;
  height: 80px;
  width:100%;
  margin:auto;
  animation: goDown 0.5s ease-in-out forwards;
}


.sticky .navbar-dark {
    border-bottom:solid 2px #ff3115;
}

.sticky .navbar-dark .navbar-nav .nav-link {
    color:#ffffff;
}


.sticky .header__row img {
  
}

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