@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Poppins:200,400,500,600,700");
/*----------------------------------
* Base CSS
----------------------------------*/

html {
    font-size: 14px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #555;
}

a {
    color: #5a4fdc;
}

a, a:hover, a:focus {
    text-decoration: none;
    outline: 0;
    color: #770b14;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, strong {
    margin: 0px;
    font-family: 'Roboto';
    color: #000;
}

h1, h2 {
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-weight: 500;
}

code {
    font-size: 100%;
}

.box-shadow {
    box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.08);
}

.table th, .table td {
    vertical-align: middle;
}

.thead-dark th {
    font-weight: 400;
}

.page-content {
    margin-top: 40px;
}

.no-bullet, .no-bullet li {
    list-style: none;
}

.link {
    padding-bottom: 10px;
    position: relative;
}

.link:after {
    content: '';
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    border-bottom: 2px solid #5a4fdc;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
}

.link:hover:after {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.text-over-bg {
    position: relative;
    z-index: 3;
}

/*----------------------------------
* Spacing CSS
----------------------------------*/

.mb-15 {
    margin-bottom: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

/*----------------------------------
* Section CSS
----------------------------------*/

.section-header {
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.section-body {
    padding: 30px;
    background: #fff;
}

/*----------------------------------
* Banner CSS
----------------------------------*/
.navbar-header {
    text-align: center;
}

.navbar-brand {
    padding: 0;
    font-size: 3rem;
    color: #fff;
    text-align: center;
    margin-right: 0;
}

.navbar-brand .dot {
    width: 5px;
    height: 5px;
    margin-left: -3px;
    border-radius: 100%;
    background: #5a4fdc;
    display: inline-block;
}

.banner {
    height: 285px;
    position: relative;
}

.banner .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner:after {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
}


/*----------------------------------
* Aside CSS
----------------------------------*/

.navbar .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    color: #333;
}

.navbar.sticky {
    position: fixed;
    top: 30px;
    background: #fff;
}

.navbar .navbar-nav .nav-link.active {
    background: #5a4fdc;
    color: #fff;
    border-radius: 4px;
}

.navbar-toggler {
    width: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0;
}

.navbar-toggler span {
    width: 24px;
    margin-bottom: 3px;
    height: 2px;
    background: #222;
}

.navbar-toggler span:last-child {
    margin-bottom: 0;
}

/*----------------------------------
* Section CSS
----------------------------------*/

.nav-section {
    margin-bottom: 50px;
    box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.08);
}

@media(max-width:767px) {
    .table {
        min-width: 400px;
    }
    .navbar.sticky {
        position: static;
    }
}