* {
  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;
  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;
  }
}
.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;
}

@media (max-width: 575.98px) {
  .content {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=FOOTER.css.map */