/* MASTER WRAPPER */
.custom-header {
  width: 100%;
  padding: 10px 20px 0;
  background: transparent;
}

/* === TOP ROW === */
.header-top {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

/* LEFT BLOCK — SARA, ICONS, PHONES */
.header-contact {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.header-contact .contact-name {
  font-size: 22px;
/*  font-weight: 700;*/
  margin-bottom: 6px;
}

.header-contact .contact-icons img {
  height: 18px;
  margin-right: 6px;
}

.header-contact .contact-icons {
  margin-bottom: 6px;
}

.header-contact .contact-company {
  font-size: 16px;
  margin-bottom: 4px;
}

.header-contact .contact-phones {
  font-size: 16px;
}

/* CENTER LOGO */
.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.header-logo img {
  max-height: 85px;   /* SMALLER SIZE */
  width: auto;
}


/* MENU BELOW */
.header-nav {
  margin-top: 20px;
  text-align: center;
}

.header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 30px;
}

.header-nav a {
  text-decoration: none;
  font-size: 16px;
 /* font-weight: 600; */
  color: #000;
}

.header-nav a:hover {
  opacity: 0.75;
}

/* MOBILE */
@media (max-width: 900px) {

  .header-top {
    flex-direction: column;
    align-items: center;
  }

  .header-contact {
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .header-logo {
    position: static;
    transform: none;
    margin-bottom: 15px;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 15px;
  }

}
