* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.content {
  flex: 1 0 auto;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.content > * {
  max-width: 100%;
}
.custom-footer {
  flex-shrink: 0;
  position: relative;
  padding: 20px 0;
  background-color: var(--bg-color);
  background: var(--bg-gradient);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--secondary-color);
  display: none;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .custom-footer {
    display: block;
  }
}
.custom-footer .container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575.98px) {
  .custom-footer .container {
    max-width: 100%;
  }
}
.custom-footer .row {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 575.98px) {
  .custom-footer .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.custom-footer [class^="col-"] {
  margin-bottom: 1rem;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .custom-footer [class^="col-"] {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .custom-footer [class^="col-"] {
    width: 100%;
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .custom-footer .row > [class^="col-"]:last-child {
    padding-right: 190px;
  }
}
.custom-footer h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
}
.custom-footer h6 i {
  margin-right: 0.5rem;
}
.custom-footer p {
  margin-bottom: 0;
  word-wrap: break-word;
}
.custom-footer .custom-footer-legal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 76px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  text-align: right;
  font-size: 0.68rem;
  line-height: 1.5;
  opacity: 0.85;
}
.custom-footer .custom-footer-legal .custom-footer-legal-link {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.custom-footer .custom-footer-legal .custom-footer-legal-link:hover, .custom-footer .custom-footer-legal .custom-footer-legal-link:focus {
  text-decoration: underline;
  opacity: 1;
}
@media (max-width: 575.98px) {
  .content {
    margin-bottom: 0;
  }
}
