header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header_content {
  width: 94%;
  height: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem 2rem;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.header_logo img {
  height: 1.7rem;
  vertical-align: middle;
}

.header_menu {
  display: flex;
  justify-content: space-between;
}

.menu_active {
  color: #00aeef;
  cursor: default;
}

.footer {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 1rem 0;
  gap: 2rem 2rem;
  align-items: center;
}

.footer_media {
  display: inline-flex;
  justify-content: flex-start;
  gap: 0.8rem;
  
}

.footer_info {
  display: inline-flex;
  justify-content: space-between;
}

ul li:hover .dropdown > li {
  top: 0;

  display: block;
}

.dropdown li {
  display: none;

  position: relative;
  padding-top: 15px;
  padding-left: 20px;
}

.dropdown li:last-child {
  padding-bottom: 20px;
}
.dropdown li:first-child {
  padding-top: 20px;
}
.dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer_info  {
  font-weight: 700;
}

@media only screen and (max-width: 800px) {
  .footer {
    row-gap: 1rem;
    font-size: 1rem;
  }

  .footer_media {
    margin-inline-start: -2px;
  }

  .footer_info {
    padding-top: 1rem;
    flex-direction: column;
    row-gap: 1rem;
  }
}

@media screen and (min-width: 1276.6px) {
  .header_content {
    grid-template-columns: 1fr calc(50% + 4.8rem);
  }
}
