@import url(//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,cyrillic-ext,greek-ext,vietnamese);

html, body {
  font-family: 'Open Sans', sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Nav hover */
.navbar-nav .nav-link:hover {
  color: #fff;
}
/* header */
.search-form {
  width: 100%;
  max-width: 250px;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.8px) {
  .navbar-collapse {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #198754;
  }

  .navbar-nav {
    margin-bottom: 1rem;
  }

  .navbar-nav button {
    margin-bottom: 10px;
  }

  .navbar-collapse a {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Breadcrumb */
/* Change background and padding of breadcrumb container */
.breadcrumb {
  background-color: #e3ebf3; /* light gray background */
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Change link color */
.breadcrumb a {
  color: #007bff; /* Bootstrap primary blue */
  text-decoration: none;
}

/* Change divider between items */
.breadcrumb-item + .breadcrumb-item::before {
  content: "›"; /* custom divider instead of '/' */
  color: #6c757d;
  padding: 0 5px;
}

.entry-meta {
  color: #757575;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: .08em;
}

/* card */
main .card-body li:hover {
  color: blue;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* footer */
footer {
  border: 1px solid #011735;
  position: absolute;
  width: 100%;
  padding-top: 30px;
  background-color: #011735;
  border-top: 1px solid #ddd;
  color: #e2e2e2;
  font-size: 12px;
}
footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}
footer a {
  color: #ccc;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}

footer h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}