@keyframes popInHeaderLogo {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hearder-container {
  background-color: #fff !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  .hearder-container {
    height: 60px;
  }
}

.hearder-container .container {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.hearder-container .logo-img {
  height: 160px !important;
  width: auto !important;
  object-fit: contain;
  margin-bottom: -16px;
  margin-top: -10px;
  margin-left: -37px;
  position: relative;
  z-index: 1001;
  animation: popInHeaderLogo 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@media (max-width: 768px) {
  .hearder-container .logo-img {
    height: 90px !important;
    width: auto !important;
    margin-bottom: -8px;
    margin-top: -5px;
    margin-left: -5px;
  }
}
