<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header-contact-container {
  display: flex;
  gap: 50px;
  align-items: center;
  padding-left: 25px;
}

.header-contact-container-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-contact-container-item-icon {
  font-size: 15px;
}

.header-contact-container-item-icon-mail {
  font-size: 18px;
}

.header-contact-container-item-text {
  font-size: 15px;
  text-decoration: none;
}

.site-header.sticky-header {
  animation: header-enter 0.5s ease-in-out;
}

@keyframes header-enter {
  0% {
    top: 0px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
</pre></body></html>