html {
    font-size: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fafafa;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7rem;
    /* color: #999; */
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar__toggle {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 3px solid black;
    margin: 40px 0;
}

.btn-info,
.btn-info:hover  {
    color: #fff;
    background-color: #09509c;
    border-color: #09509c;
}

.btn-info:focus {
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(9, 80, 156,.5);
}

.btn-info:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #09509c;
    border-color: #09509c;
}

.link {
    color: #3490dc !important;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #DF0C36;
    color: #fff;
    transition: all 0.3s;
}

.sidebar.active {
    margin-left: -250px;
}

.sidebar .sidebar__header {
    padding: 20px;
    background: #09509c;
}

.sidebar ul li a {
    padding: 10px;
    font-size: 1.1rem;
    display: block;
}

.sidebar ul li a:hover {
    color: #DF0C36;
    background: #fff;
}

.sidebar ul li.active>a {
    color: #fff;
    background: #DF0C36;
}

.sidebar--item-active {
    color: #DF0C36 !important;
    background: #fff !important;
}

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.9rem !important;
    padding-left: 30px !important;
    background: #DF0C36;
}

.image-model {
    position: absolute;
    top: 0;
    right: -48%;
}

h3 {
    font-size: 2.575rem !important;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

.content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    utilities
----------------------------------------------------- */

.margin-bottom--medium {
    margin-bottom: 3rem;
}

.margin-bottom--small{
    margin-bottom: 1rem;
}

.margin-top--medium {
    margin-top: 3rem;
}

.margin-top--small{
    margin-top: 1rem;
}

.text--bold {
    font-weight: 700;
}

.color--red {
    color: #ff3500;
}

.color--powerpoint {
    color: #c54831;
}

.color--excel {
    color: #1d6f42
}

.font-1rem {
    font-size: 1.5rem;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    .sidebar {
        margin-left: -250px;
    }
    .sidebar.active {
        margin-left: 0;
    }
    .sidebarCollapse span {
        display: none;
    }
}