body {
    font-family: Arial, sans-serif;
    background-color: #fff7dd;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

a {
    color: #584014;
    text-decoration: none;
}
a:hover {
    color: #584014;
    text-decoration: underline;
}

.wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.top-band {
    width: 100%;
    height: 40px;
    background-image: url('../img/top-band.png');
    background-repeat: repeat-x;
    background-position: top center;
    background-size: auto 40px;
}

.top-banner {
    width: 100%;
    height: 650px;
    max-width: 1366px;
    background-image: url('../img/top-banner.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.top-menu {
    height: 40px;
    width: 100%;
    background-color: #7d9141;
    display: flex;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

.navbar {
    height: 60px;
    margin-top: -60px;
}

.navbar .container {
    background: #7d9141;
    padding-bottom: 15px;
}

.navbar a {
    color: #fff;
}

.navbar .active {
    background-color: #a9b48a;
}

.container {
    max-width: 1320px;
}

.container-box {
    background-color: #fff3cf;
    padding: 20px;
}

.top-menu li {
    display: inline-block;
    padding: 0 16px;
    position: relative;
}

.top-menu li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1.2em;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

h3 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #584014;
}

h4.icon-title {
    display: flex;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #584014;
}

h4.icon-title::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

h4.icon-map::before {
    background-image: url('../img/icon-map.png');
}

h4.icon-login::before {
    background-image: url('../img/icon-login.png');
}

h4.icon-evel::before {
    background-image: url('../img/icon-evel.png');
}

h4.icon-news::before {
    background-image: url('../img/icon-news.png');
}

h5 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #584014;
}

.btn-submit {
    background-color: #7d9141;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}
.site-footer {
  background: #7d9141;
  color: #fff;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-container .row {
  width: 100%;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  font-size: 0.7rem;
}

.bottom-band {
    width: 100%;
    height: 40px;
    background-image: url('../img/bottom-band.png');
    background-repeat: repeat-x;
    background-position: top center;
    background-size: auto 40px;
}

.tabs {
  display: flex;
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: bold;
}
.tabs div {
  padding: 10px 20px;
  background: #f2f7e6;
  margin-right: 5px;
}
.tabs .active {
  background: #7d9141;
  color: white;
}
.tab-main-content {
  display: none;
}
.tab-main-content.active {
  display: grid;;
}
.tab-content {
  /* display: none; */
  padding: 10px;
  border: 1px solid #ccc;
}
.tab-content.active {
  display: block;
}
.bg-selected {
  background-color: #7d9141;
}
.bg-disabled {
  background-color: #837e7a;
  color: #fff;
}
.navbar-brand:hover ,.nav-link:hover {
  color: #ffff30 !important;
  text-decoration: none;
}
.container-fluid {
  max-width: 1320px;
}

@media (max-width: 1024px) {
    .top-banner {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .top-banner {
        height: 300px;
    }
}