#banner {
  background-image: url('/resource/main-bg-web.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 30px;
}

#banner h2 {
  background-color: rgba(255, 242, 230, 0.5);
  padding: 20px;
  display: inline-block;
  border-radius: 10px;
}

@media only screen and (max-width: 768px) {
  .dropdown-title {
    display: none;
  }
}

.text-block h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.text-block h3 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.circle {
  width: 50px;
  height: 50px;
  background-color: #E36917;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  z-index: 1000;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.form-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F2F2F2;
  border: 1px solid #999999;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.form-container h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #E36917;
  text-align: center;
  font-family: Magra, sans-serif;
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
}

.form-container select,
.form-container button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #999999;
}

.form-container button {
  background-color: #E36917;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-family: Magra, sans-serif;
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
}

.form-container button:hover {
  background-color: #D16015;
}

.search-container {
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #F2F2F2;
  border: 1px solid #999999;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-container h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #E36917;
  text-align: center;
  font-family: Magra, sans-serif;
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
}

.search-container select,
.search-container button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #999999;
}

.search-container button {
  background-color: #E36917;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-family: Magra, sans-serif;
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
}

.search-container button:hover {
  background-color: #D16015;
}