@import url('https://fonts.googleapis.com/css2?family=Quicksand&family=Ubuntu&display=swap');

body {
    font-family: 'ubuntu', sans-serif;
    font-weight:400;
}

/*p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}*/

a, a:hover, a:focus {
    color: inherit;
    transition: all 0.3s;
}


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

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0px;
    height: 100vh;
    z-index: 999;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.hiddenSB {
    left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    padding-bottom:0px;
    /*background: red;*/
}

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

#sidebar ul li a:hover {
	color: #ecf0f1;
	font-weight:600;
}

.nav-item{
	font-size: 1.2em;
}

.sub-link{
	padding-left: 1.5rem;
}

#sidebar ul li.hiddenSB>a,
a[aria-expanded="true"] {
    /*color: blue;*/
    /*background: #6d7fcc;*/
	font-weight:800;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);

}
/* ---------------------------------------------------
    Bouton toggle
----------------------------------------------------- */


.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 30px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

/* ---------------------------------------------------
    ACCUEIL STYLE
----------------------------------------------------- */
#acc-title{
}

#acc-subtitle{
}

.vignette{
	padding-left : 0.5rem;
	padding-right : 0.5rem;	
}

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

#content {
    width: calc(100% - 250px);
    padding: 3vw;
    /*min-height: 100vh;*/
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
    background:ghostwhite;
}

#content.hiddenSB {
    width: 100%;
}
.row{
	margin-right: -1vw;
	margin-left: -1vw;
}

/*.col{
	padding-right: 1vw;
	padding-left: 1vW;
}
*/


section {
	/*padding-top : 1rem;
	padding-bottom : 3rem;*/
	margin-top : 1rem;
	margin-bottom : 2rem;
}

h1 {
	font-size : 2.7em;
	text-align: center;
}

h2 {
	font-size : 2em;
	margin-bottom : 1rem;
}

hr{
	border-top: 2px solid #999999;
	margin-left : 1rem;
	margin-right : 1rem;
}

.date{
	text-align:right ;
	padding-top : 1rem;
}
#content a{
	text-decoration: underline;
}

.licence{
	font-size : 0.7em;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
#sidebar {
    left: -250px;
	}	
#sidebar.hiddenSB {
    left: 0px;
	}	
#content {
    width: 100%;
    }
}

@media (max-width: 576px) {
h2 {
	font-size:1.6em;
}

}

