/* contact page */
.location{
    width: 80%;
    margin: auto;
    padding: 0;
}

.location iframe {
    width: 100%;  /* la carte sera responsive*/
}

.contact-us {
    width:80%;
    margin:auto;
}

.contact-col{
    flex-basis:48%;
    margin-bottom: 10px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom:5px;
}



.contact-col .fa, .contact-col .fab{
    font-size:20px;
    color:#F44336;
    margin: 5px;
    margin-right: 30px;
}

.contact-col div p {
    padding: 0;
}

.contact-col div h5{
    font-size: 12px;
    margin-bottom:5px;
    color:#555;
    font-weight:400;
}

.contact-col input, .contact-col textarea{
width:100%;
padding:2px;
margin-bottom: 5px;
outline: none;
border: 1px solid #CCC;
box-sizing:border-box;
}


/* About Us page --*/
.sub-header {
    height:50vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(../img/outdoor.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color:#FFF;
}

.sub-header h1 {
    margin-top:100px;
}

.about-us {
    width:80%;
    margin: auto;
    padding-top:80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding:30px 2px;
}

.about-col img {
    width :100%;
}

.about-col h1 {
    padding-top: 0;
}

.about-col p {
    padding:15px 0 25px;
}

.red-btn{
    border: 1px solid #F44336;
    background: transparent;
    color: #F44336;
}

.red-btn:hover{
    color:white;
}

/* section cours */
.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 36px;
    font-weight:600;
}

p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;   /*les textes apparaissent en colonnes ald de en lignes*/
    justify-content: space-between;
}

.course-col {
    flex-basis: 31%;
    background: #FFF3F3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0,5s;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column; /* les 3 textes appraissent en colonne dans les petits écrans*/
    }
}

/* table page calendar --*/

#t01 {
    width: 100%;
    background-color: #f1f1c1;
  }

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
  }
  th, td {
    padding: 15px;
    text-align: left;
  }
  #t01 tr:nth-child(even) {
    background-color: #eee;
  }
  #t01 tr:nth-child(odd) {
   background-color: #fff;
  }
  #t01 th {
    background-color: black;
    color: white;
  }


/* Menu */

  .navbar-collapse{
    flex: 1;
    text-align:right;
}

.navbar-collapse ul li{
    list-style:none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-link{
    color:white;
    text-decoration:none;
    font-size: 14px;
}

/* animation du menu: petits traits rouges d'abord cachés ->width à 0% */ 
.navbar-collapse ul li::after {
    content:'';
    width: 0%;
    height: 2px;
    background: #F44336;
    display:block;
    margin:auto;
}

/* les traits rouges apparaissent avec une tempo*/
.navbar-collapse ul li:hover::after{
    width:100%;
    transition:0.5s;
}
