.navbar-nav .nav-link {
  color: #fff;
}

.dropend .dropdown-toggle {
  color: black;
  margin-left: 1em;
}

.dropdown-item:hover {
  background-color: black;
  color: #fff;
}

.dropdown .dropdown-menu {
  display: none;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: .125em;
  margin-left: .125em;
}

@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }

  .dropend:hover .dropdown-toggle {
    color: black;
  }

  .dropend .dropdown-toggle {
    margin-left: .5em;
  }

  .c-item {
    height: 700px;
  }

  .c-img {
    height: 100%;
    object-fit: cover;
  }

  .container-online-doctors {
    display: inline-block;
    margin-left: 45px;
  }
}

/* Under Maintenance */

.news-container {
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  font-family: "Roboto", sans-serif;
  box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
  overflow: hidden; /* important to hide overflowing items */
}

.news-container .title {
  position: absolute;
  background: #df2020;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: white;
  font-weight: bold;
  z-index: 200;
}

.news-container ul {
  display: flex;
  list-style: none;
  margin: 0;
  animation: scroll 25s infinite linear;
}

.news-container ul li {
  white-space: nowrap;
  padding: 10px 24px;
  color: #494949;
  position: relative;
}

.news-container ul li::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #b8b8b8;
  position: absolute;
  top: 0;
  right: 0;
}

.news-container ul li:last-child::after {
  display: none;
}

@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-1083px);
  }
}
