/* GENERAL */

body {
  overflow-x: hidden;
  color: #333;
  font-family: "Roboto", sans-serif;
}

a {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

header .menu nav ul li {
  position: relative;
}
header .menu nav ul li a {
  white-space: nowrap;
}
header .menu nav ul li a:hover,
header .menu nav ul li:hover > a {
  color: #193e9e;
}
header .menu nav ul li ul {
  display: none;
  left: 0;
  top: 100%;
  min-width: 200px;
  border-top: 4px solid #193e9e;
}
header .menu nav ul li:hover > ul {
  display: block;
}

.banner {
  background: url("../images/banner.jpg") no-repeat center / cover;
  min-height: 620px;
  padding: 60px 0;
}

#search-result {
  display: none;
}

.modal-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
}

@media screen and (min-width: 0px) and (max-width: 1279px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  } 
}

@media screen and (min-width: 0px) and (max-width: 1023px) {
  header .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
  }

  .banner {
    min-height: 420px;
  }
}
