.site-logo {
  width: 240px;
  height: 68px;
  overflow: hidden;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.header-awards {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  flex-shrink: 0;
}

.header-awards::before {
  content: "";
  width: 18px;
  height: 2px;
  margin-right: 3px;
  background: var(--blue);
}

.header-awards img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: cover;
  clip-path: circle(48%);
}

.footer-brand {
  color: #fff;
}

@media (max-width: 1250px) {
  .site-header nav {
    gap: 20px;
  }

  .header-awards {
    gap: 4px;
  }

  .header-awards::before {
    width: 10px;
  }

  .header-awards img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 900px) {
  .site-logo {
    width: 190px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .site-logo {
    width: 140px;
    height: 52px;
  }

  .header-awards {
    gap: 2px;
    margin-left: 4px;
  }

  .header-awards::before {
    width: 6px;
    margin-right: 1px;
  }

  .header-awards img {
    width: 22px;
    height: 22px;
  }
}
