/* SST Site Navigation */
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600&display=swap");

body.sst-has-nav {
  padding-top: 95px;
}

.sst-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  font-family: "Poppins", sans-serif;
}

.sst-nav-container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 75px;
}

.sst-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sst-nav-logo img {
  height: 75px;
  max-height: 75px;
  width: auto;
  display: block;
}

.sst-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(33, 33, 33, 0.25);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  align-self: center;
}

.sst-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #212121;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sst-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sst-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.sst-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sst-nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  align-self: center;
}

.sst-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sst-nav-link {
  color: #212121;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sst-nav-link:hover,
.sst-nav-link.active {
  color: #04c37f;
}

@media only screen and (max-width: 991px) {
  body.sst-has-nav {
    padding-top: 95px;
  }

  .sst-nav-container {
    flex-wrap: wrap;
    padding: 10px 16px;
    min-height: 75px;
  }

  .sst-nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .sst-nav-menu {
    width: 100%;
    margin-left: 0;
    align-self: stretch;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background-color: #ffffff;
  }

  .sst-nav-menu.is-open {
    max-height: 360px;
  }

  .sst-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
  }

  .sst-nav-list li {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .sst-nav-link {
    display: block;
    padding: 14px 4px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 575px) {
  body.sst-has-nav {
    padding-top: 91px;
  }

  .sst-nav-container {
    padding: 8px 16px;
    min-height: 68px;
  }

  .sst-nav-logo img {
    height: 68px;
    max-height: 68px;
  }
}
