a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}
.btn_scroll{
	background: white !important;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    align-items: stretch;
	position: fixed;
	height: 100vh;
	z-index: 2;
}


#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #1d1d1b;
    color: #fff;
	transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
	transform: rotateY(0deg);
}

#sidebar.active {
    margin-left: -250px;
    transform: rotateY(180deg);
    transform-origin: bottom left;
}

#sidebar .sidebar-header {
    padding: 20px;
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
	text-transform: uppercase;
    line-height: 30px;
    padding-top: 0;
}
#sidebar ul li a:hover {
    color: #1d1d1b;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #1d1d1b;
    background: #fff;
	font-weight: 700;
}


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: #FFF;color: #1d1d1b;
}

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: #7386D5;
}

a.article, a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}



/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#sidebarCollapse {
    width: 40px;
    height: 70px;
    background-image: url(images/bg_menu.png);
    cursor: pointer;
    background-size: contain;
    background-position-y: 20px;
    background-repeat: no-repeat;
	background-color: transparent;
}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: black;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375), background 0s;
}

#sidebarCollapse span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
    opacity: 0;
}
#sidebarCollapse span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
}


#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 5px auto;
}
.logo_menu{
	margin: auto;
	width: 50%;
	display: block;
	height: auto;
}

#menu-item-42 > .dropdown-menu {
	width: 100%;
	transform: none !important;
	position: initial !important;
	padding: 0;
	border-radius: 0;
	margin: 0;
	border: none;
	background-color: #222;
}
#menu-item-42 > .dropdown-menu a{
	color: white;
	width: 100%;
	font-size: 0.9em !important;
	padding-left: 30px;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: white;
	color: black !important;
	font-weight: bold;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    #sidebar {
        margin-left: 0;
        transform: none;
    }
    #sidebar.active {
        margin-left: -250px;
        transform: rotateY(90deg);
    }

}