:root {
  --site-foreground-color: #1b6a5c;
  --site-background-color: #fcfcfc;
  --site-accent-background-color: #e9f1f0;
  --site-text-color: #27524a !important;
  --site-text-muted: #6c757d;
  --site-table-background: #e9f1f0;
}

.dark-theme {
  --site-foreground-color: white;
  --site-background-color: #22403a;

  --site-accent-background-color: #121212;
  --site-text-color: #e3e8e7 !important;
  --site-text-muted: #e3e8e7;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

ul li {
  margin-bottom: 5px;
}

.sponsor-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.implementer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* welcome card styles */
.welcome-card {
  background-color: #1b6a5c;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.welcome-card-content {
  position: relative;
  z-index: 2;
}
.welcome-card-illustrations {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
}
.welcome-card-illustrations svg {
  position: absolute;
  width: 120px;
  height: 120px;
}

.welcome-card-illustrations .line-graph {
  bottom: 15%;
  right: 60%;
  width: 120px;
  height: 120px;
}
.welcome-card-illustrations .chart {
  top: 50%;
  right: 25%;
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  transform: rotate(-15deg);
}
.welcome-card-illustrations .pill {
  bottom: 15%;
  right: 10%;
  transform: rotate(30deg);
}
.welcome-card-illustrations .network {
  top: 40%;
  right: 40%;
  transform: rotate(15deg);
}

/* home navbar styles */
.navbar-menu.is-active {
  display: flex;
  max-height: 100%;
}

.navbar-side {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
}

.navbar-side.is-hidden {
  display: none;
}

.navbar-backdrop.is-hidden {
  display: none;
}

.profile-image {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 8px;
}

/* custom buttons */
.custom-button {
  background-color: #ffffff;
  color: #1b6a5c;
  border: 1px solid #1b6a5c;
  padding: 10px 16px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-button:hover {
  background-color: #1b6a5c;
  color: #ffffff;
}

.custom-button2 {
  background-color: #1b6a5c;
  color: #ffffff;
  border: 1px solid #1b6a5c;
  padding: 10px 16px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-button2:hover {
  background-color: #ffffff;
  color: #1b6a5c;
}

.columns.is-fullheight {
  min-height: 100vh;
  max-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: stretch;
}

.scrollable-content {
  flex-grow: 1;
  overflow-y: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .main-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
  }
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    position: absolute;
    width: 100%;
    top: 52px;
  }
  .navbar-menu.is-active {
    background-color: #1b6a5c;
  }
  .navbar-menu.is-active .navbar-item,
  .navbar-menu.is-active .navbar-link {
    color: white;
  }
  .navbar-menu.is-active .navbar-item:hover,
  .navbar-menu.is-active .navbar-link:hover {
    background-color: #15524a;
    color: white;
  }
  .navbar-menu.is-active .navbar-dropdown {
    background-color: #15524a;
  }
  .navbar-menu.is-active .navbar-dropdown .navbar-item {
    color: white;
  }
  .navbar-menu.is-active .navbar-dropdown .navbar-item:hover {
    background-color: #0f3e38;
  }
  .navbar-menu.is-active .buttons .button {
    border-color: white;
    color: white;
  }
  .navbar-menu.is-active .buttons .button.is-primary {
    background-color: white;
    color: #1b6a5c;
  }
  .navbar-menu.is-active .buttons .button.is-light {
    background-color: transparent;
    color: white;
  }
}

.dashboard-element {
  position: relative;
  padding: 10px; /* Add some padding to make space for the close button */
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 1000; /* Ensure the button stays on top */
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem; /* Adjust as needed */
}

.pagination .btn {
  margin: 0.5rem; /* Adjust as needed */
}

.custom-text-muted {
  color: var(--site-text-muted);
}

main.container-fluid a:not(.btn) {
  color: var(--site-text-color) !important;
}

body {
  /* background: #fafafa; */
  background: var(--site-background-color);
  color: var(--site-text-color);
  margin: 0;
  padding: 0;
  min-height: 100vh !;
}

.table,
.table td,
.table th {
  background-color: white !important;
  color: #1b6a5c !important;
  /* color: var(--bulma-table-color); */
}

.main-content {
  margin-left: 10px;
  padding-top: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

strong {
  color: var(--site-text-color) !important;
}

/* PivotTable styles */
.pvtAxisContainer,
.pvtVals,
.pvtRenderer,
.pvtAggregator,
.pvtAttrDropdown,
.pvtRowOrder,
.pvtColOrder {
  background-color: #15524a !important; /* Primary color */
  color: #22403a !important;
}

.pvtTable {
  border: 1px solid #15524a !important; /* Primary color */
}

.pvtTable th,
.pvtTable td {
  border: 1px solid #15524a !important; /* Primary color */
  background-color: white !important; /* Neutral white */
  color: #15524a !important; /* Primary color */
}

.pvtRendererArea {
  background-color: grey !important; /* Neutral grey */
  color: #15524a !important; /* Primary color */
  border: 1px solid #15524a !important; /* Primary color */
}

/* Custom text for row and column order areas */
.pvtRowOrder,
.pvtColOrder {
  position: absolute;
}

.container-fluid {
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--site-text-color) !important;
}

.custom-card {
  color: var(--site-text-color);
  flex-grow: 0;
  border-radius: 14px;
  /* border: solid 0 #979797; */
  border: none;
  box-shadow: 6px 6px 54px 0 rgba(0, 0, 0, 0.05),
    0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background-color: var(--site-background-color);
  margin-top: 2rem;
}

.custom-card-title {
  color: var(--site-foreground-color);
}

.custom-card2 {
  background-color: #1b6a5c;
  flex-grow: 10;
  border-radius: 8px;
  box-shadow: 6px 6px 54px 0 rgba(0, 0, 0, 0.05),
    0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border: solid 0 #979797;
  color: #fff;
}

.custom-card3 {
  background-color: var(--site-accent-background-color);
  flex-grow: 10;
  border-radius: 14px;
  border: solid 0 #979797;
  color: var(--site-text-color);
}

.custom-btn-info {
  margin-bottom: 4px;
  background-color: var(--site-foreground-color) !important;
  color: var(--site-background-color) !important;
  border: 1px solid var(--site-background-color) !important;
  margin-left: 1000px;
}

.custom-btn-info:hover {
  background-color: var(--site-background-color) !important;
  color: var(--site-foreground-color) !important;
  border: 1px solid var(--site-foreground-color);
}

.custom-btn-outline-info {
  margin-bottom: 4px;
  border: 1px solid var(--site-foreground-color) !important;
  background-color: var(--site-background-color) !important;
  color: var(--site-text-color) !important;
  margin-left: 1000px;
}

.custom-btn-outline-info:hover {
  border: 1px solid var(--site-background-color) !important;
  background-color: var(--site-foreground-color) !important;
  color: var(--site-background-color) !important;
}

.frame1 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 23px 26px;
  border-radius: 14px;
  border: solid 1px #d7d8d8;
  /* background-color: #e9f1f0; */
  background-color: var(--site-accent-background-color);
  color: var(--site-text-color);
}

.welcome-header {
  height: 45rem;
  background: linear-gradient(
    to bottom,
    var(--site-foreground-color),
    var(--site-background-color)
  );
  min-width: 100%;
  flex-grow: 0;
}

/* .header-content-section {
  background-color: var(--site-background-color);
  z-index: 1;
} */

.background-image {
  position: absolute;
  align-items: end;
  top: 10rem;
  right: 3rem;
  bottom: 0;
  z-index: 0;
  /* z-index: -1;  */
}

.user-content {
  display: flex;
  align-items: center;
  color: var(--site-text-color) !important;
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Custom table styles */
#custom-datatable_wrapper {
  margin: 20px 0;
}

/* Highlight selected rows */
#custom-datatable tbody tr.selected {
  background-color: hsl(168, 82%, 40%); /* Light blue background */
}

/* Highlight selected columns */
#custom-datatable tbody td.selected {
  background-color: #891f1f; /* Light gray background */
}

/* Style for editable cells */
#custom-datatable tbody td {
  cursor: pointer; /* Change cursor to pointer on hover */
}

#custom-datatable tbody td input[type="text"] {
  width: 100%; /* Full width input inside table cell */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
}

#custom-datatable {
  width: 100% !important;
  background-color: rgb(240, 240, 240);
  border-collapse: collapse;
  border: 1px solid black;
}

#custom-datatable th,
#custom-datatable td {
  border: 1px solid black;
  padding: 10px;
  color: black;
}

#custom-datatable th {
  background-color: white;
  font-weight: bold;
  color: black;
}

#custom-datatable td {
  background-color: white;
  color: black;
}

#custom-datatable tr:hover {
  background-color: #f1f1f1;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: black !important;
}

.dataTables_wrapper .dataTables_filter input {
  color: black;
}

.dataTables_wrapper .dataTables_length select {
  color: black;
}

/* centers object vertically */
.parent-container {
  position: relative;
}

.custom-centered-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-btn-primary {
  border: none;
  border-radius: 2rem; /* Adjust the border-radius to make it more oval */
  background-color: var(--site-foreground-color) !important;
  color: var(--site-background-color) !important; /* Text color */
  padding: 10px 20px; /* Adjust padding as needed */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.custom-btn-primary:hover {
  background-color: var(--site-background-color) !important;
  color: var(--site-foreground-color) !important;
  border: 1px solid var(--site-foreground-color) !important;
}

.custom-btn-outline-primary {
  border: 1px solid var(--site-foreground-color) !important;
  border-radius: 2rem;
  background-color: var(--site-background-color) !important;
  color: var(--site-foreground-color) !important;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.custom-btn-outline-primary:hover {
  background-color: var(--site-foreground-color) !important;
  color: var(--site-background-color) !important;
}

.client {
  width: 100%;
  height: auto;
  /*background-color: var(--site-accent-background-color);*/
}
.client ul {
  padding: 0;
  margin: 0;
}
.client li {
  display: inline-block;
  position: center;
  align-items: center;
  padding: 10;
  margin: 5;
}
.client ul li img {
  width: 50%;
  height: 50%;
  padding: 5px;
  align-items: center;
}

.reachout {
  width: 428px;
  height: 509px;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 26px 13px;
  padding: 32px 40px;
  border-radius: 8px;
  box-shadow: 4px 4px 12px 0 rgba(137, 137, 162, 0.12);
  background-color: var(--site-accent-background-color);
}

.select-wrapper {
  min-width: 150px;
}

/* CSS to identify disabled events */
a.disabled {
  pointer-events: none; /* Disables mouse events on the element */
  opacity: 0.7; /* Sets the opacity to make it appear disabled */
}

.formContainer {
  top: 3rem;
  right: 0;
  height: 70vh;
  background-color: var(--site-background-color);
  border: 1px solid lightgrey; /* Changed border color to light grey */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Added box shadow with a subtle effect */
  overflow-y: auto;
  flex-grow: 0;
  border-radius: 14px;
  transition: right 0.5s ease;
}

#plotContainer {
  border: 2px solid #8c9492;
  height: 100%;
  overflow-y: auto;
  overflow-x: auto;
}

.draggable-item {
  cursor: pointer;
}

/* Ensure the button appears above the form */
.btn-side-form {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  /* z-index: 1001; */
}

.custom-btn {
  background-color: var(--site-foreground-color);
  color: var(--site-background-color);
}

.big-number {
  font-size: 2rem; /* Adjust the font size to your preference */
  font-weight: bold; /* Optionally make the number bold */
  font-family: Verdana, Geneva, Tahoma, sans-serif; /* Use a clean and modern sans-serif font */
  color: #f5f5f5;
  /* Add any other styling you desire */
}

/* Style the button label when the form is open */
.btn-side-form[aria-expanded="true"]::after {
  content: "Close Form";
}

.custom-delete-button {
  /* Size */
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  /* Color */
  color: #15524a;
  /* Underline */
  text-decoration: underline;
  /* Remove Bootstrap styling */
  background-color: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}

.custom-nav-item {
  background-color: var(--site-foreground-color);
  color: var(--site-text-color);
}

#dashboardCanvas {
  min-height: 100vh;
  border: solid 1px #10342e;
  position: relative;
  overflow: hidden; /* Prevent scrolling */
  width: 100%; /* Ensure it takes full width of its container */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  background-color: var(
    --site-background-color
  ); /* Background color is var(--site-background-color) */
  color: var(--site-foreground-color);
  resize: both; /* Enable resizing */
  flex-grow: 1; /* Make the canvas grow to fill available space */
  flex-shrink: 1; /* Allow the canvas to shrink if needed */
}

#dashboardElements {
  cursor: grab;
}

.placeholder-container {
  display: flex; /* Use Flexbox layout */
  flex-wrap: wrap; /* Allow wrapping to the next line */
}

.placeholder-row {
  display: flex;
  flex-wrap: nowrap; /* Ensure items do not wrap within rows */
}

.dashboard-element {
  max-width: 100%; /* Ensure elements don't exceed canvas width */
  max-height: 100%; /* Ensure elements don't exceed canvas height */
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
}

.big-number-placeholder {
  border: 1px dashed #ccc;
  height: 300px;
  width: 31%;
  /* padding: 2rem; */
}

.info-placeholder {
  background-color: white;
  border: 1px dashed #ccc;
  /* min-width: 98%; */
}

.title-placeholder {
  width: calc(
    100% - 20px
  ) !important; /* Subtracting 40px to account for left and right padding */
  height: auto !important;
  min-height: 80px;
  margin-bottom: 20px;
  padding: 10px 20px; /* Adding padding: 10px top/bottom, 20px left/right */
  resize: none !important;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  box-sizing: border-box; /* Ensures padding is included in the width calculation */
  margin-left: auto; /* Center the title box */
  margin-right: auto; /* Center the title box */
}

/* .chart-placeholder {
    border: 2px dashed #ccc;
    height: 400px;
    width: 47%;
    color: gray;
} */

.chart-placeholder .dashboard-element-header {
  height: 3rem;
  background-color: #d3d3d3;
  border: 1px dashed gray;
  font-style: italic;
}

.close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #15524a;
  padding: 0;
  margin: 0;
}

#originalText {
  display: none; /* Initially hide the original text */
}

.bg-steel {
  background-color: #5f788a;
}

.navbar {
  background-color: #1b6a5c !important;
  color: white;
}

.cta {
  background-color: #1b6a5c !important;
  color: white;
}

.custom-navbar {
  background-color: var(--site-background-color);
  color: var(--site-text-color);
}

.site-header .navbar-nav .nav-link {
  color: #fbfbfb;
}

.site-header .custom-navbar-nav .custom-nav-link {
  color: var(--site-foreground-color);
}

.site-header .navbar-nav .nav-link:hover {
  color: var(--site-background-color);
}

.site-header .custom-navbar-nav .custom-nav-link:hover .custom-nav-link.active {
  color: var(--site-background-color);
  height: 36px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  border-radius: 100px;
  background-color: var(--site-foreground-color);
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  padding: 10px 20px;
  margin-bottom: 20px;
  color: #15524a;
  flex-grow: 0;
  border-radius: 14px;
  box-shadow: 6px 6px 54px 0 rgba(0, 0, 0, 0.05),
    0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border: solid 0 #979797;
  background-color: #f5f4f4;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

.big-icon {
  font-size: 2.5rem;
  border: 5px solid whitesmoke;
  border-radius: 10px;
  background-color: whitesmoke;
  color: #1b6a5c;
}
#aside {
  position: sticky;
  display: inline-block;

  overflow-y: auto;
}
.sidebar {
  top: 4rem;
  left: 0;
  height: 100%;
  background: #1b6a5c;
  background-color: #1b6a5c !important;
  /* z-index: 100; */
  transition: all 0.5s ease;
}

.sidebar.close {
  width: 5rem;
}

/* Base style for menu items */
.menu-list .menu-item,
.menu-list a,
.menu-list button {
  background-color: #1b6a5c !important;
  transition: background-color 0.3s; /* Smooth transition for background color changes */
}

/* Hover effect */
.menu-list .menu-item:hover,
.menu-list button:hover {
  background-color: #22403a !important;
}

/* Active link style */
.menu-list .menu-item.active,
.menu-list button.active {
  background-color: #22403a !important; /* Same color as hover */
}

.logo {
  color: #fff;
  height: 40px;
  width: 100px;
  text-align: center;
  margin-top: 0.5rem;
}

.sidebar .nav-links {
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: auto;
  /* margin-top: 5rem; */
}

.sidebar.close {
  background-color: rgba(27, 106, 92, 1) !important;
  /* z-index: 2; */
}

.sidebar.close .nav-links {
  overflow: visible;
}

.sidebar .nav-links::-webkit-scrollbar {
  display: none;
}
.sidebar .nav-links li {
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}

.sidebar .nav-links li i:active {
  background: #91e1d3;
  color: black;
}

.sidebar .nav-links li .iocn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link {
  display: block;
}
.sidebar .nav-links li i {
  height: 50px;
  min-width: 5rem;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow {
  display: none;
}
.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name {
  opacity: 1;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu {
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: #10342e;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}
.sidebar .nav-links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover {
  color: #ffb301;
}
.sidebar.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  display: none;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu {
  top: 0;
  pointer-events: none;
  opacity: 1;
  transition: 0s;
}
.sidebar .nav-links li .sub-menu .link_name {
  display: block;
}
.sidebar.close .nav-links li .sub-menu .link_name {
  display: none;
}
.sidebar .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);
}

.sidebar .profile-details {
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1b31;
  padding: 12px 0;
  transition: all 0.5s ease;
}

.sidebar.close .profile-details {
  background: none;
}
.sidebar.close .profile-details {
  width: 78px;
}
.sidebar .profile-details .profile-content {
  display: flex;
  align-items: center;
}
.sidebar .profile-details img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img {
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job {
  display: none;
}

.sidebar .profile-details .job {
  font-size: 12px;
}

.home-section .home-content {
  height: 60px;
  display: flex;
  align-items: right;
}
.home-section .home-content .bx-menu,
.home-section .home-content .text {
  color: white;
  font-size: 35px;
}
.home-section .home-content .bx-menu {
  margin-left: 0rem;
  cursor: pointer;
  margin-top: 2rem;
}
.home-section .home-content .text {
  font-size: 26px;
  font-weight: 600;
}
.home-section2 .home-content2 {
  margin-left: 0rem;
  cursor: pointer;
  margin-top: 2rem;
  font-size: 26px;
  font-weight: 600;
}

@media (max-width: 10rem) {
  .sidebar.close .nav-links li .sub-menu {
    display: none;
  }
}

.footer {
  background-color: #1b6a5c;
  color: #fff;
  align-content: center;
}
