#fw-section-header {

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  box-sizing: border-box;
}

.header img {
  width: 80px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  font-size: 25px;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .header {
    height: 70px;
    padding: 0 15px;
  }
  .header img {
    width: 60px;
  }
  nav a {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 60px;
    padding: 0 10px;
  }
  .header img {
    width: 50px;
  }
  nav a {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .header {
    height: 50px;
    padding: 0 5px;
  }
  .header img {
    width: 40px;
  }
  nav a {
    font-size: 14px;
  }
}

}