.nav-container {
  width: 100%;
  height: 260px;
  background: #9E264B;
}

.nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 59px;
}
.nav-content img {
  width: 191px;
  height: 37px;
}
.nav-content-search {
  background: #ffffff;
  border-radius: 100px;
  box-sizing: border-box;

  width: 625px;
  height: 40px;
  margin: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-input-text {
  padding-left: 12px;
  width: 476px;

  border: none;
  background-color: transparent;
  font-size: 12px;
}

.nav-bnt-search {
  width: 137px;
  height: 40px;

  border: none;
  border-radius: 100px;

  font-size: 14px;
  font-weight: bold;
  background: #8a9595;
  color: #ffffff;
  cursor: pointer;
}

@media screen and (max-width: 720px) {
  .nav-content-search {
    width: 87vw;
  }

  .nav-input-text {
    width: 65vw;
  }

  .nav-bnt-search {
    width: 27vw;
    max-width: 137px;
  }
}
