/*menu*/
.top-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2px 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.containers {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR FIXED */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  z-index: 9999;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  display: block;
}

/* LEFT: LOGO */
.top-bar-left img {
  height: 40px;
}

/* RIGHT: TEXT */
.top-bar-right {
  text-align: right;
}

.top-bar-right a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.top-bar-right a:hover {
  opacity: 1;
}

/*FOOTER*/

.site-footer {
  background: #111;
  color: #ddd;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* CONTACT */
.contact-info {
  margin-top: 15px;
}

/* DISCLAIMER */
.disclaimer {
  margin-top: 15px;
  font-size: 12px;
  color: #777;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/*pop-up */
.modal {
  position: fixed; /* THIS is what makes it a popup */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 80%;
  overflow-y: auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.hidden {
  display: none;
}