body {
    background: #fff;
    /* font-family: "Open Sans", sans-serif; */
    /* font-family: 'Lato', sans-serif; */
    font-family: 'Roboto', sans-serif;
  }
  
  a {
    color: #8f9397;
    transition: 0.5s;
  }
  
  a:hover, a:active, a:focus, a.profile-active {
    color: #4cbd89!important;
    outline: none;
    text-decoration: none;
  }
  
  .page-nav-clr {
  	color: #4cbd89;
  }
  
  p {
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
  }
  
  /* Back to top button */
  .back-to-top {
    position: fixed;
    display: none;
    background: #18d26e;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
  }
  
  .back-to-top i {
    padding-top: 12px;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .back-to-top {
      bottom: 15px;
    }
  }
  
  