/* ================= FOOTER BASE ================= */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--brand-orange);
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* hidden initially */
  z-index: 9999;
  opacity: 0;
  transition:
    opacity 0.4s,
    transform 0.3s;
}

#scrollTopBtn.show {
  display: block;
  opacity: 1;
}

.site-footer {
  color: #fff;
  width: 100%;
  background: #0c1f3e;
  padding: 0;
  border: none;
  font-family: "Roboto", sans-serif;
}
.site-footer__top .region {
  width: 100%;
  padding: 0;
}
.site-footer .block {
  margin: 0px;
  border: none;
  border-color: none;
  padding: 0px;
  width: 100%;
}
.site-footer__top .content li a {
  border-bottom: none;
  font-size: 18px;
  font-weight: bold;
}
.site-footer__top .content li .footer-title1 {
  color: #9aa3b2;
}
.site-footer__top .content li a:hover,
.site-footer__top .content li a:focus {
  text-decoration: none;
  color: #fff;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}

/* ================= TOP FOOTER ================= */
.site-footer .footer-top {
  background: #0c1f3e;
  padding: 80px 0 60px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* ================= COLUMNS ================= */
.site-footer .footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.site-footer .footer-col p {
  line-height: 1.7;
  opacity: 0.9;
  font-size: 17px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 14px;
}

.site-footer .footer-title {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 700;
}

.site-footer .footer-title1 {
  color: #9aa3b2;
}

/* ================= LINK LIST ================= */
.site-footer .link-list a {
  font-weight: 600;
}

/* ================= SOCIAL ================= */
.site-footer .social {
  display: flex;
  gap: 15px;
  margin-bottom: 80px;
}

/* ================= SUBSCRIBE ================= */
.site-footer .subscribe input {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
}

.site-footer .subscribe button {
  background: #f58220;
  color: #fff;
  border: none;
  padding: 12px 34px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
}

/* ================= LOGO ================= */
.site-footer .footer-logo {
  margin-top: 70px;
}

/* ================= BOTTOM BAR ================= */
.site-footer .footer-bottom {
  background: #17428c;
  padding: 20px 0;
  font-size: 13px;
  /* width: 100vw; */
  position: relative;
  /* left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw; */
}
.site-footer__top .region {
  margin: unset;
}
.site-footer .footer-bottom:before,
.site-footer .footer-bottom:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #17428c;
  z-index: 0;
}
.site-footer .footer-bottom:before {
  left: -100%;
}
.site-footer .footer-bottom:after {
  right: -100%;
}
.site-footer .footer-bottom .container {
  position: relative;
  z-index: 1;
}

.site-footer .bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.site-footer .bottom-links span {
  opacity: 0.6;
  margin: 0 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer .social {
    margin-bottom: 30px;
  }

  .site-footer .footer-top {
    padding: 40px 0;
  }
}

@media (max-width: 600px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer .footer-bottom .container {
    padding: 0;
  }
  .site-footer .bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}
#footer-newsletter {
  display: none;
}
