/* Style générale */

* {
    box-sizing: border-box;
  }
  
body {
    color: white;
    background-color: rgb(205, 18, 37);
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
  }

  .exemplemonospace {
    font-family: "Lucida Console", Courier, monospace;
  }

  .exemplecursive {
    font-family: cursive;
  }

  .exemplefantasy {
    font-family: fantasy;
  }

  .exempleemoji {
    font-family: emoji;
  }

  .exemplemath {
    font-family: math;
  }

  .exemplefangsong {
    font-family: fangsong;
  }

  .color-pms186 {
    color: rgb(205, 18, 37);
  }

  .color-brand {
    color: rgb(100, 22, 22);
  }

  .btn-brand {
    color: white;
    background-color: rgb(100, 22, 22);
  }

  .btn-brand-2 {
    color: rgb(100, 22, 22);;
  }
  .responsive {
    width: 100%;
    height: auto;
  }
  
  .cl-mt-05 {
    margin-top: 5px;
  }
  
  .cl-mt-media {
    margin-top: 15px;
  }
  
  .cl-mr-05 {
    margin-right: 5px;
  }

  .sousligne {
    text-decoration: underline;
  }  

/* Section Navbar */

.jma-navbar {
  background-color: black;
}


/* Section Header page index pour la vidéo */

header {
    position: relative;
    /*background-color: black;*/
    background-color: black;
    height: 75vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
  }
  
  header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
  
  header .container {
    position: relative;
    z-index: 2;
  }
  
  header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
  }
  
  @media (pointer: coarse) and (hover: none) {
    header {
      background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
    }
    header video {
      display: block;
    }
  }

  /* Fin de la Section Header page index */

  /* Début de la Section 2 page index */

  .cl-index-2 {
    background-color: white;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
  }

  .container-index-2 {
    padding-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  /* Centered text */
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Fin de la Section 2 page index */


  /************************************************
                    modal photo
  *************************************************/
.row > .column {
    padding: 0 8px;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .column {
    float: left;
    width: 25%;
  }
  
  /* The Modal (background) */
  .modal-photo {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }
  
  /* Modal Content */
  .modal-content-photo {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
  }
  
  /* The Close Button */
  .close {
    color: rgb(100, 22, 22);
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .mySlides {
    display: none;
  }
  
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  img {
    margin-bottom: -4px;
  }
  
  .caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
  }
  
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  /************************************************
                  Fin modal photo
  *************************************************/


/* Section page evenement */
.cl-evenement-1 {
    background-color: white;
    padding-top: 25px;
    padding-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
  }

  .container-index-2 {
    padding-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  

  /*******************Tab de la page événement***************/
/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    background-color: rgb(247, 218, 165); /*#f1f1f1 rgb(100, 22, 22)*/
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    /*color: white;  ajouter */
    background-color: inherit;
    float: center;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px 16px; /* padding: 14px 16px; */
    transition: 0.3s;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    /*background-color: #ddd;*/
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    color: white;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 16px 12px;
    /*border: 1px solid #ccc; #ccc*/
    border-top: none;
  }
  
  
  /******************Timeline******************/
  /* The actual timeline (the vertical ruler) */
  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: rgb(205, 18, 37);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  /* Container around content */
  .container-timeline {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }
  
  /* The circles on the timeline */
  .container-timeline::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: rgb(205, 18, 37);
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the container to the left */
  .left {
    left: 0;
  }
  
  /* Place the container to the right */
  .right {
    left: 50%;
  }
  
  /* Add arrows to the left container (pointing right) */
  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid rgb(205, 18, 37);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgb(205, 18, 37);
  }
  
  /* Add arrows to the right container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid rgb(205, 18, 37);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgb(205, 18, 37) transparent transparent;
  }
  
  /* Fix the circle for containers on the right side */
  .right::after {
    left: -16px;
  }
  
  /* The actual content */
  .content {
    padding: 20px 30px;
    background-color: rgb(205, 18, 37);
    position: relative;
    border-radius: 6px;
  }
  
  /* Media queries - Responsive timeline on screens less than 600px wide */
  @media screen and (max-width: 600px) {
  /* Place the timelime to the left */
    .timeline::after {
      left: 31px;
    }
  
  /* Full-width containers */
    .container-timeline {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
  
  /* Make sure that all arrows are pointing leftwards */
    .container-timeline::before {
      left: 60px;
      border: medium solid rgb(205, 18, 37);
      border-width: 10px 10px 10px 0;
      border-color: transparent rgb(205, 18, 37) transparent transparent;
    }
  
  /* Make sure all circles are at the same spot */
    .left::after, .right::after {
      left: 15px;
    }
  
  /* Make all right containers behave like the left ones */
    .right {
      left: 0%;
    }
  }

  /********************************************************
                Fin page Évenement
**********************************************************/

/********************* Page Contact **************/

.container-contact {
    position: relative;
    width: 100%;
  }
  
  .image-contact {
    display: block;
    width: 100%;
    height: auto;
  }
  

/*********************Début Page Partenaire **************/

.container-partenaire {
    position: relative;
    width: 100%;
  }
  
  .btn-partenaire {
    position: relative;
    width: 100%;
  }

/*********************Début Page Dimanche **************/

.dimanche-section {
    background-color: #f2f2f2;
    color: rgb(205, 18, 37);
    margin-top: 15px;
    margin-bottom: 45px;
    padding: 10px;
  }
  
  
  
  