/* Jules Grandvillemin - Yann Ferro - 12/10/2020 */

/* 
GLOBAL (TITLE)
*/
.heading-site {
    text-align: left;
    margin-top: 1.5%;
    margin-left: 20px;
    font-family: 'Montserrat', sans-serif;  
    color:#0a2842;

}

.heading-site_2 {
    text-align: left;
    margin-left: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;  
    color:#db9830;
}


/* 
HEADER 
*/
.header { 
	width: 100%;
	margin-left:0;
	margin-right: 0;
	height: 70px;
	line-height: 70px;
	background-color: #FFFFFF;
    position: fixed;
    top: 0;
    z-index: 999;
}

.header .header-menu {
    color: #0a2842;
    font-family: 'Montserrat', sans-serif;
    float: right;
    margin-right: 30px
}

.header .header-menu a {
    margin-right: 15px;
    color: #0a2842;
}

.header .header-menu a:hover {
    color: #db9830;
}

.header .header-image {
    margin-left: 30px;
    height: 60px;
}

/*
BANNER
*/
.banner {
    margin-top: -20px;
}

.banner .banner-image {
    position: relative;
}

.banner .banner-content {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 30%;
}

.banner .banner-content h1,
.banner .banner-content h2,
.banner .banner-content h3 {
    color:#FFFFFF;
    background-color:#181a0d60;

}

/*
PRÉSENTATION DU COURS
*/
.container_presentation .subtitle {
    color: #000000;
}

.presentation .columns {
    margin-left: 10%;
}

.presentation .short_text {
    font-size: 18px;
    text-align: justify;
}

.presentation .image {
    position: center;
    padding: 10%;
    height: 10%;
}

/*
OBJECTIF DU COURS
*/

.course_objective {
    margin-left : 20px;
    font-size: 18px;
}

.course_objective p {
    margin-bottom: 5px;
}


/*
tableau
*/


table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
th, td {
  padding: 15px;
  text-align: middle;
}
/*
EXEMPLE D'APPLICATION
*/

.block4-informations .columns { 
    margin-left: 12.5%;
    width: 75%;
}

.application_exemple {
    margin-top: 10px;
    margin-bottom: 25px;
    margin-left: 12%;
    margin-right:12%;
    text-align: justify;
    font-size:18px;
}

.application_exemple_2 {
    margin-top: 10px;
    margin-bottom: 25px;
    margin-left: 12%;
    margin-right:12%;
    text-align: justify;
    font-size:18px;
}
/* 
    boite flex
*/


#row{
    display: flex;
  justify-content: center;
   margin: 20px;
  
}

#single_pic{
    position: relative;
    overflow: hidden;
    
  justify-content: center;
     width: 300px;
  margin: 20px;
   
    
}
#image{
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}





#single_pic:hover #pic_text{
     -webkit-transform: translateY(0);
    -moz-transform:  translateY(0);
    -ms-transform:  translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    background: white;
}
#single_pic:hover #image{
    -webkit-transform: scale(1.15);
    -moz-transform:  scale(1.15);
    -ms-transform:  scale(1.15);
    -o-transform: scale(1.15);
    transform:scale(1.15);
    
}

/*
FOOTER
*/

.footer-informations {
    text-align : center;
}

/*
RESPONSIVE : faire disparaitre certains éléments de mon site lorsque la page est inférieure à 900px pour le rendre plus lisible
*/

@media screen and (max-width: 900px) {
    #open_modal,
    #header-menu,  
    #title_is_1,
    #title_is_2,
    #subtitle {
        display: none;
    }
}