

body {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  background-color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  height: 60px;
}

.nav-items {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  font-size: 12px;
  padding-left: 0;
}

.nav-item {
  margin: 0 10px;
}

.nav-item:last-child {
  margin-right: 0;
}

.nav-item:first-child {
  margin-left: 0;
}

.nav-link {
  display: flex;
  text-decoration: none;
  color: #000;
  line-height: 60px;
}

.nav-link:hover {
  color: #00acdc;
}

.is-active {
  color: #00acdc;
  position: relative;
}

.is-active::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 8px;
  background: #00acdc;
}
