#menu {
  display: none;
}

.mobile-menu {
  display: none;
  color: #2681d0;
  transition: all 0.5s;
}

.shrink .mobile-menu {
  margin-top: 45px;
}

.mobile-menu-button {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  position: relative;
}
.mobile-menu-button:hover {
  cursor: pointer;
}
.mobile-menu-button:before {
  content: "";
  position: absolute;
  left: -29px;
  top: -1px;
  background: url(icons/icon-menu.svg) no-repeat;
  padding: 13px;
}

.pc-menu {
  display: block;
}

.arrow-down {
  position: relative;
}
.arrow-down:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 8px;
  background: url(icons/icon-arrow-down.svg) no-repeat;
  padding: 7px;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 777;
  transition: all 0.4s ease-in-out;
  background: rgba(255, 253, 253, 0.9);
}

nav.nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0rem 1rem;
}

.logo {
  width: 270px;
  display: inline-block;
  transition: all 0.4s ease;
}

.shrink {
  margin-top: -45px;
  box-shadow: 0px 2px 6px -3px rgba(0, 0, 0, 0.5);
}
.shrink .logo {
  width: 180px;
  margin-top: 40px;
}

.menu-up {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  color: #fff;
  font-size: 13px;
  margin-bottom: 0.5rem;
}
.menu-up li {
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.menu-up li a {
  color: #323D3D;
  text-transform: uppercase;
  position: relative;
}
.menu-up li a:before {
  content: "";
}
.menu-up li a:hover {
  color: #2681d0;
}
.menu-up li.inquiry {
  position: relative;
}
.menu-up li.inquiry a:before {
  position: absolute;
  top: 0px;
  left: -20px;
  background: url(icons/icon-inquiry.svg) no-repeat;
  padding: 7px;
}
.menu-up li.inquiry .inquiry-number {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background: #2681d0;
  font-size: 12px;
  color: #ffffff;
  top: -8px;
  right: -8px;
  border-radius: 100%;
}
.menu-up li.search {
  position: relative;
  padding-right: 25px;
}
.menu-up li.search a:before {
  position: absolute;
  left: -20px;
  top: 0px;
  background: url(icons/icon-search.svg) no-repeat;
  padding: 7px;
}
.menu-up li.search input {
  width: 0px;
  border: none;
  border-radius: 50px;
  padding: 0px;
  background: #e7e7e7;
  color: #04caf7;
  transition: all 0.2s;
}
.menu-up li.search:hover input {
  width: 115px;
  margin-left: 6px;
  padding: 3px 8px;
}
.menu-up li.lang {
  position: relative;
}

/* Language =====================================================================*/
.btn-lang {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  padding: 4px 25px 4px 10px;
  color: #323D3D;
  line-height: 12px;
  text-transform: uppercase;
  transition: all 0.2s;
  width: 103px;
  text-align: center;
}
.btn-lang:before {
  position: absolute;
  content: "";
  right: 5px;
  width: 15px;
  height: 12px;
  background: #323D3D;
}
.btn-lang:after {
  position: absolute;
  left: 86px;
  top: 8px;
  content: "";
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  color: #fff;
  transition: all 0.2s;
}
.btn-lang.open:after {
  transform: rotate(180deg);
}
.btn-lang:hover {
  background-color: #2A2723;
  color: #fff;
}

.lang-options {
  display: none;
  position: absolute;
  z-index: 7;
  top: 21px;
  left: 5px;
  width: 103px;
  text-align: center;
}
.lang-options a {
  width: 100%;
  display: block;
  padding: 5px 10px;
  color: #fff !important;
  background: #2A2723;
  transition: all 0.2s;
}
.lang-options a:hover {
  background: #2681d0;
  opacity: 1 !important;
}

/* Mobile =====================================================================*/
.inquiry-mobile {
  position: relative;
  margin-left: 30px;
}
.inquiry-mobile .inquiry-number {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  color: #0f385c;
  top: -1px;
  left: 18px;
  border-radius: 100%;
}

.search-mobile input {
  border: none;
  border-radius: 20px;
  padding: 5px 10px;
  margin-left: 10px;
  color: #0f385c;
}
.search-mobile input::placeholder {
  color: #ccc;
}

/* Responsive =====================================================================*/
@media only screen and (max-width: 1080px) {
  .pc-menu {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .logo {
    width: 189px;
    height: 50px;
    background-size: auto 50px;
  }

  nav.nav-bar {
    padding: 1rem 1rem 1rem 1rem;
  }
}
@media only screen and (max-width: 992px) {
  .lang-options {
    position: static;
  }
  .lang-options a {
    width: 100%;
    padding-left: 15px;
  }
}