html, body{
    font-family: Georgia;
}

body {
    font-family: Georgia;
    font-size: medium;
    background-color: #f0dcfa;
    color: #260138;
}

p {
    font-size: 1.1em;
    line-height: 1.7em;
    color: #260138;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 5px 5px;
    background: #660099;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.contentTitle {
    background: #660099;
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    border-radius: 0;
}

.sitetitle {
    display: flex;
    justify-content: center;
    color:#f1e4f8;
}

.sitecopyright {
    font-size: 0.8em;
    margin-top: 30px;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    PAGE BACKGROUND IMAGES
----------------------------------------------------- */

.indexpagecontent {
    background-image: url('../images/backgrounds/jamie1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: auto;
    background-color: #f0dcfa;
}

.abouttkdpagecontent {
    background-image: url('../images/backgrounds/teamfemale1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: auto;
    background-color: #f0dcfa;
}


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #660099;
    color: #f1bb74;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -200px;
}

#sidebar .sidebar-header {
    padding: 26px 20px 25px 20px;
    background: #660099;
}

#sidebar ul.components {
    padding: 20px 0;
    border-top: 1px solid #793e97;
    border-bottom: 1px solid #793e97;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #660099;
    background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #660099;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #660099;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #660099;
}

a.article,
a.article:hover {
    background: #660099 !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 200px);
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}

.btn-menu {
    background: #660099 !important;
    color: #f1bb74 !important;
    border-width: 0px;
}

.contentheader {
    margin-top: 20px;
}

.contentbody {
    margin-top: 20px;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -200px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 200px);
    }
    #sidebarCollapse span {
        display: none;
    }
}