/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
}


/* =========================================================
   CONTACT LINKS
========================================================= */

.contact-details a {
  font-weight: 800;
}


/* =========================================================
   ADDRESS
========================================================= */

.contact-details address {
  margin-top: 5px;
  font-style: normal;
  font-size: 10px;
  line-height: 1.45;
}


/* =========================================================
   PARENT COMPANY
========================================================= */

.parent-company {
  display: flex;
  align-items: center;
  gap: 8px;
}


/* Parent Company Label */

.parent-company span {
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 900;
  text-transform: uppercase;
}


/* Parent Company Logo */

.parent-company img {
  max-width: 125px;
  max-height: 28px;
  filter: brightness(0) invert(1);
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 750px) {

  .contact-details {
    order: 2;
  }

  .parent-company {
    order: 3;
  }

}
