.block-number {
    text-align: center;
    font-weight: bold;
    font-size: 0.8125em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #191919;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.block-number:hover {
    opacity: 1;
}

/* Creating a triangle. */
.block-number::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #191919;
}

.block-number a:hover,
.block-number a:focus {
    color: #191919;
}

.demo-section .main-content .section,
.main-content .topbar,
.main-content .navbar,
.main-content .header,
.main-content .footer {
    margin: 30px 20px 100px;
    border: 1px solid #f5f6f7;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.main-content .navbar {
    position: static;
    margin: 0;
}

/* Custom CSS */

.anchor {
    display: none;
}

.nav-level-1 {
    font-size: 13px;
}

.icon-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-sidebar li,
.left-sidebar li {
    list-style: none;
}

.right-sidebar p {
    margin: 0;
}

.left-sidebar p {
    margin: 5px 0;
}

/* CSS for the preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 9999;
}

#searchResults{
  position: absolute;
  top: calc(100% + 10px); /* move the element 10px down from the bottom of the form */
  left: 0; /* align the left edge of the element with the left edge of the form */
  width: 100%; /* make the element as wide as the form */
  list-style: none;
  margin: 0;
  padding: 0;
}

#searchResultsMobile{
  position: absolute;
  left: 0;
  width: 100%; 
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-li {
    text-decoration: none;
    color: #191919;
    cursor: pointer;
}

.search-li:hover {
    background-color: #f7f7f7;
}

.w25 {
    width: 25px;
}

.nav-navbar ul>li {
    position: relative;
    list-style: none;
}

.nav-navbar ul>li>a{
    line-height: 30px;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.87em;
    word-spacing: 2px;
    text-decoration: none;
    color: #757575;
}

.nav-navbar ul>li>a:hover{
    color: #50a1ff;
}