.topBanner {
    padding-left: 35%;
    aspect-ratio: 1903/350;
	background-size: cover;
}

h1 {
    text-align: center; 
    font-size: 2.5vw;	
	font-weight: bolder;
	text-decoration: none;
    color: white;
    text-shadow: 1px 1px gray;
}


#aiPathway {
	background-image: url("/images/banner/deeplearning.png");
}

#pythonPathway {
	background-image: url("/images/banner/python.png");
}

#javaPathway {
	background-image: url("/images/banner/java.png");
}

#dotNetPathway {
	background-image: url("/images/banner/csharp.png");
}

#devWebPathway {
	background-image: url("/images/banner/devweb.png");
}

#cppPathway {
	background-image: url("/images/banner/cpp.png");
}

#otherPathway {
    background-image: url("/images/banner/other.png");
}

.navBar div, .navBar a {
    margin: 20px 0px;
    font-weight: bold;
    text-decoration: none;
    font-size: 12pt;
}

.navBar a:hover {
    text-decoration: underline;
}

.navBar .separator {
    width: 50px;
    text-align: center;
    color: black;
}

.navBar, article {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0px 10%;
    background: #e0e0e0;
}

.leftPane {
    width: 40%;
}

.rightPane {
    width: 60%;
}

h2 {
    padding: 20px;
    font-weight: bold;
}

.block {
    display: flex;
    flex-wrap: wrap;
    -flex-direction: row;
    margin: 0px 20px 20px 40px; 
    padding: 20px;
    background: white;
}

.blockLeft {
    width: 25%;
    font-size: 14pt;
    font-weight: bold;
    text-align: left;
}

.blockRight {
    width: 75%;
    font-size: 12pt;
    text-align: justify;
}

article ul {
    list-style-type: square;
}

article ul li::marker {
    font-size: 1.5em;     /* Agrandit la puce */
}

article a {
    color: black;
    font-weight: bold;
}


#txtDevis {
	
	width: 50%;
	display: inline-block;
}

#frmDevis {
    width: 25%; 
    margin: 0px;
}

#btnDevis {
	width: 20%;
	display: inline-block;
	margin: 0px 0px 0px 30%;
	font-size: 5vw;
	height: 80px;
    line-height: 80px;
    border: 0px;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

.chapter {
    background-color: white;
    margin: 0px 0px 20px 0px; 
    padding: 20px;
}

.chapterTitle {
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
    margin: 0px 0px 20px 0px;
}




@media screen and (max-width: 1580px) {
    .block {
        flex-direction: column;
    }

    .blockLeft, .blockRight {
        width: 100%;
    }

    .blockLeft {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 1000px) {
    article {
        flex-direction: column;
    }
    
    .leftPane {
        width: 100%;
    }
    
    .rightPane {
        width: 100%;
    }
    
}