.topBanner {
    padding-left: 35%;
    aspect-ratio: 1903/350;
	background-size: cover;
    
}

h1 {
    text-align: center; 
    font-size: 3.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%;
    padding-left: 40px;
}

h2 {
    padding: 20px;
    font-weight: bold;
}


.modules {
    width: 100%;
    position: relative;
    margin: auto;
    margin-bottom: 2%;
    
    text-align:center;
    font-family: 'Montserrat', sans-serif;
    
        
}

.moduleCoteGauche {

    width:20%;
    color: white;
    display: inline-block;
    text-align: center;
    padding-bottom: 7.1%;
    padding-top: 7.2%;
    vertical-align: top;
    float: left;
    font-size: 1.5vw;
    

                 
}

.moduleCoteDroit {
    width: 80%;
    background-color: white;
    display: inline-block;
    padding-bottom: 18.2%;
    color: black;
    font-size: 2vw;

}

.moduleCoteDroit .text {
    position: absolute;
    width: 80%;
    height: 96%;
    
    display: flex; 
    flex-direction: column;
      justify-content: center;
} 


.moduleCoteDroit:before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    border-color: #e0e0e0 #e0e0e0 #c0c0c0 #e0e0e0;
    border-style: solid;
    border-width: 0px 30px 30px 0px;

}



@media screen and (max-width: 1000px) {
    article {
        flex-direction: column;
    }
    
    .leftPane {
        width: 100%;
    }
    
    .rightPane {
        width: 100%;
    }
    
}