header {
  background-color: var(--totalwhite-color);
  position: relative;
  z-index: 2;
}
header .content .main {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .content .main .logo {
  width: 208px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header .content .main .logo.mobile {
  display: none;
}
header .content .main .contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header .content .main .contact a {
  width: 100%;
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  color: var(--base-color);
  text-align: right;
}
header .content .main .contact .item {
  display: flex;
  gap: 10px;
}
header .content .main .contact .item img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .content .main .contact .item p {
  color: var(--secondary-color);
}
header .address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header .address .item {
  display: flex;
  gap: 10px;
}
header .address .item img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .address .item img.circle {
  animation: blink 1300ms infinite both;
}
@keyframes blink {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 30%;
  }
  100% {
    opacity: 100%;
  }
}
header .address.mobile {
  display: none;
  padding: 10px 0;
  background-color: var(--silver-color);
  justify-content: space-between;
  gap: 10px;
  flex-direction: row;
  padding: 10px;
}

@media (max-width: 800px) {
  header .content {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin: auto;
  }
  header .content .main {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .content .main .logo {
    display: none;
  }
  header .content .main .logo.mobile {
    display: block;
    width: 47px;
  }
  header .content .main .contact {
    gap: 5px;
    align-items: flex-start;
  }
  header .content .main .contact a {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
  }
  header .content .main .contact .item {
    display: flex;
    gap: 10px;
  }
  header .address {
    display: none;
  }
  header .address .item {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  header .address .item img {
    width: 16px;
    height: 16px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .address .item p {
    font-size: 11px;
    line-height: 16px;
  }
  header .address .item:nth-child(1) p {
    line-height: 20px;
  }
  header .address.mobile {
    display: flex;
  }
}/*# sourceMappingURL=header.css.map */