marquee {
  color: #ffffff;
}
.marquee-bg {
  background: rgb(53, 106, 160);
  background: -moz-linear-gradient(
    top,
    rgba(53, 106, 160, 1) 0%,
    rgba(53, 106, 160, 1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(53, 106, 160, 1) 0%,
    rgba(53, 106, 160, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(53, 106, 160, 1) 0%,
    rgba(53, 106, 160, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#356aa0', endColorstr='#356aa0',GradientType=0 );
}
.nav-bg {
  padding: 25px;
  background: rgb(73, 192, 240);
  background: -moz-linear-gradient(
    top,
    rgba(73, 192, 240, 1) 0%,
    rgba(44, 175, 227, 1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(73, 192, 240, 1) 0%,
    rgba(44, 175, 227, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(73, 192, 240, 1) 0%,
    rgb(33, 96, 121) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#49c0f0', endColorstr='#2cafe3',GradientType=0 );
}
.nav-text {
  cursor: pointer;
  margin-left: 10px;
  display: inline;
  margin-bottom: 0;
  padding: 7px 10px;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  /* background-color: #444444; */
  text-decoration: none;
  transition: all 0.3s ease-in;
  border-bottom: 3px solid transparent;
}
.nav-text:hover {
  background-color: #ffffff;
  color: #000000;
  border-bottom: 3px solid #0011ff;
}

.submenu-text {
  cursor: pointer;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  margin: 5px 0;
  padding: 3px 5px;
  border-radius: 5px;
  color: #000000;
  border-bottom: 3px solid transparent;
}

.submenu-text:hover {
  color: #424242;
}
.dropdown-container {
  position: relative;
}
.dropdown-content,
.dropdown-content2,
.dropdown-content3 {
  background-color: #ffffff;
  border-radius: 10px;
  width: 300px;
  margin-left: 10px;
  padding: 10px 5px;
  position: absolute;
  top: 33px;
  display: none;
  z-index: 1000;
  box-shadow: 0 0 5px #000000;
}
.dropdown-content2 {
  top: 15px;
  left: 295px;
  z-index: 1000;
}
.dropdown-content3 {
  top: 45px;
  left: 295px;
  z-index: 1000;
}
/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #3d7ce7;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(73, 192, 240);
  background: -moz-linear-gradient(
    top,
    rgba(73, 192, 240, 1) 0%,
    rgba(44, 175, 227, 1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(73, 192, 240, 1) 0%,
    rgba(44, 175, 227, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(73, 192, 240, 1) 0%,
    rgb(33, 96, 121) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#49c0f0', endColorstr='#2cafe3',GradientType=0 );
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(109, 109, 109);
}
@media (min-width: 992px) {
  .now-active {
    background-color: #ffffff;
    color: #000000;
  }
}
@media (max-width: 992px) {
  .dropdown-content,
  .dropdown-content2,
  .dropdown-content3 {
    width: max-content;
  }
  .dropdown-content2 {
    top: 15px;
    left: 160px;
    z-index: 1000;
  }
  .dropdown-content3 {
    top: 45px;
    left: 160px;
    z-index: 1000;
  }
}
