/* ===== GLOBAL ===== */

.raleway-body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* ===== HEADER ===== */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 80px;

  background: #fff;
  z-index: 1000;

  padding: 0 30px;

  opacity: 0.9;
  transition: opacity 0.3s;
}

.topbar:hover {
  opacity: 1;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-image {
  width: 220px;
  height: 60px;
  object-fit: contain;
}

.logo span {
  font-size: 14px;
}

.sections {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sections a,
.sections .head {
  text-decoration: none;
  color: black;
  position: relative;
  padding: 10px;
}

.sections a::before,
.sections a::after,
.sections .head::before,
.sections .head::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: black;
  left: 0;
  transition: 0.3s;
}

.sections a::before,
.sections .head::before {
  top: 0;
}

.sections a::after,
.sections .head::after {
  bottom: 0;
}

.sections a:hover::before,
.sections a:hover::after,
.sections .head:hover::before,
.sections .head:hover::after {
  width: 100%;
}

.active {
  font-weight: 600;
}

.highlight {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 4px;
}

/* ===== FOOTER ===== */

.footbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  width: 100%;
  min-height: 180px;

  background-color: #000000ca;

  padding: 20px 30px;
}

.address {
  display: flex;
  flex-direction: column;
  color: white;
  font-size: 14px;
}

.copyright {
  color: white;
  font-size: 14px;
}

.bizsafe {
  display: flex;
  align-items: center;
}

.bizsafe-size {
  width: 140px;
  height: auto;
}

.email {
  color: gold;
  text-decoration: underline;
}

.email:hover {
  color: rgba(255,217,0,0.85);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.small-logo-image {
  width: 75px;
  height: 60px;
}

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

@media (max-width: 768px) {

  .topbar {
    height: 60px;
    padding: 0 10px;
  }

  .logo-image {
    width: 120px;
    height: 32px;
  }

  .logo span {
    display: none;
  }

  .sections {
    gap: 8px;
  }

  .sections a,
  .sections .head,
  .active {
    font-size: 10px;
    padding: 4px;
  }

  .footbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .address,
  .copyright {
    font-size: 12px;
  }

  .bizsafe-size {
    width: 100px;
  }
}