/* STYLE */

body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #353535;
}
body > .wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.font-alt {
    font-family: 'Montserrat', sans-serif !important;
}
.font-weight-medium {
    font-weight: 500 !important;
}
.font-weight-semibold {
    font-weight: 600 !important;
}

#access .bg-wave {
    height: 30px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.navbar-brand {
    letter-spacing: -1px;
    font-weight: 400;
    position: relative;
}
.navbar-brand small {
    font-size: 0.6em;
    letter-spacing: 0.5px;
    opacity: 0.75;
}
.navbar-brand .d-inline-flex {
    line-height: 1;
}
.navbar-brand .logo {
    height: 50px;
    width: auto;
    margin-top: -5px;
    margin-bottom: -5px;
}
@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.1rem;
        line-height: 0.9;
    }
    .navbar-brand small {
        letter-spacing: 0;
    }
    .navbar-brand .logo {
        height: 40px;
    }
}
@media (max-width: 479px) {
    .navbar-brand {
        max-width: 270px;
        margin-right: 10px;
    }
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.75);
}

.copyright {
    font-size: 0.85rem;
}

/*text separrator*/
.divider {
    display: flex;
  }
  .divider:before, .divider:after {
    content: "";
    flex: 1;
  }
  
  .line {
    align-items: center;
    margin: 1em -1em;
  }
  .line:before, .line:after {
    height: 1px;
    margin: 0 1em;
  }
  
  .one-line:before, .one-line:after {
    background: black;
  }