/* Header and navigation styles */
.header {
  grid-area: header;
  height: 95px;
  display: flex;
  z-index: 9;
  align-items: center;
  background: #fff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
  justify-content: center;
  border-bottom: 1px solid rgba(4, 39, 51, 0.1);
}

.header__inner {
  position: relative;
  width: 65%;
  display: flex;
  align-items: center;
}

.logo {
  cursor: pointer;
}

.logo__title {
  font-size: 19px;
  font-weight: 600;
}

.logo__description {
  font-size: 13px;
}

nav {
  position: absolute;
  right: 0;
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
  margin-left: 100px;
}

.menu {
  display: none;
  border-radius: 8px;
  border: 1px solid #cbd0c8;
  padding: 10px;
  cursor: pointer;
}

.nav-responsive {
  display: none;
  position: absolute;
  width: 100%;
  top: 95px;
  text-align: center;
  background: #ffffff;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  z-index: 3;
  animation: fadeInFromTop 0.2s ease-in-out forwards;
  transform: translateY(-100px);
}

.nav-responsive a {
  margin-top: 20px;
  margin-bottom: 20px;
}

@keyframes fadeInFromTop {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
  }
}
