:root {
  --primary: #007389;
  --primary-light: #52afc1;
  --primary-dark: #005e70;
  --secondary: #6c6c6c;
  --secondary-dark: #4f4f4f;
  --background: #feefe5;
  --background-lite: #fffbf8;
}
.feather {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  color: black;
}
.nav-link.active {
  font-weight: bold !important;
  color: var(--primary-light) !important;
}
.nav-link:hover {
  color: var(--primary) !important;
}
.green {
  color: #00e8b2;
}
.red {
  color: #fc4908;
}
.blue {
  color: #007ccf;
}
a {
  text-decoration: none;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.text-light {
  color: var(--primary-light) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-tertiary {
  color: #009ef0;
}
.btn-primary {
  background-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
}
.btn-secondary {
  background-color: var(--secondary);
  color: white !important;
}
.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white !important;
}
.fs-7 {
  font-size: 0.8rem;
}
small {
  font-size: 0.8rem;
}
.slider-img {
  position: relative;
  display: flex;
  align-items: center;
}
.slider-img img {
  width: 100%;
  height: auto;
}

.app {
  transition: transform 0.3s;
}

.app:hover {
  transform: scale(1.1);
}
.feature-list {
  list-style-type: none;
  padding: 0;
  margin-left: 10px;
}

.feature-list li {
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-list li::before {
  content: "☑ ";
  margin-right: 10px;
  color: var(--primary);
}

.feature-list.downtime li {
  font-size: 16px;
  margin-bottom: 5px;
}
.feature-list.downtime li::before {
  content: "➤";
  font-size: 18px;
  margin-bottom: 5px;
}

.icon {
  filter: hue-rotate(330deg);
}
.icon2 {
  filter: saturate(4) hue-rotate(330deg);
}
.logo {
  width: 300px;
}

@media only screen and (max-width: 600px) {
  .logo {
    width: 230px;
  }
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary) !important;
}
