nav {
  position: fixed;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px 0;
  top: 0;
  left: 0;
  z-index: 99;
  font-weight: 700;
}

nav .logo {
  float: left;
  margin-right: 20px;
  width: 380px;
  height: auto;
  transition: 200ms;
}

nav .logo img {
  width: 100%;
  height: auto;
  transition: 200ms;
}

nav ul {
  position: relative;
  display: block;
  float: left;
}

nav ul li {
  display: inline-block;
  vertical-align: middle;
  border-left: 1px solid white;
  list-style: none;
}

nav ul li:first-child {
  border: none;
}

nav ul li a {
  float: left;
  padding: 5px 5px 6px;
  margin-left: 2px;
  margin-left: 5px;
  border-radius: 24px;
  color: white;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}

nav ul li a:hover,
nav ul .active a {
  color: #e57165;
}

.white_nav {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.9);
}

.white_nav .logo {
  width: 160px;
}

.white_nav ul li {
  border-color: white;
}

.white_nav ul li a {
  color: white;
}

.white_nav ul li a:hover,
.white_nav ul .active a {
  background-color: #000000;
  color: white;
}

.btn_dikey_form {
  position: fixed;
  display: none;
  width: 40px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 100;
}

.btn_dikey_form img {
  width: 100%;
  height: auto;
}

.basa_don {
  position: fixed;
  display: none;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
  text-align: center;
  font-weight: 300;
  padding-top: 20px;
  font-size: 10px;
  color: #fff;
  width: 60px;
  height: 60px;
  z-index: 999;
  background: #000000 url(../img/icon-yukari.svg) top 7px center no-repeat;
  background-size: 20px auto;
  cursor: pointer;
}

.mobil_btn {
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  right: 0;
  background-color: white;
  background-image: url(../img/menu-mobil.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px auto;
}

@media screen and (max-width: 480px) {
  nav {
    padding: 20px 0 0;
    justify-content: space-evenly;
  }

  nav .logo {
    width: 240px;
  }
}