html, body {
    background-color: black !important;
}

h3 {
    font-size: 60px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
    word-break: break-word;
    color: white;
}

p {
    margin-bottom: 2rem;
}

/* HEADER */
header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: black;
}

.nav_2 {
    position: relative;
    top: 7px;
}

body > header > div > div > nav:nth-child(2) a {
    color: white;
    margin: 0 15px;
}

body > header > div > div {
    justify-content: space-between;
}

.line {
    width: 90%;
    max-width: 600px;
    height: 2px;
    margin: 70px auto;
    background: #fdd35533;
}


/*MENU BURGER*/
.responsive {
    display: none;
}

#toggle {
  position: fixed;
  z-index: 3;
  width: 2.85714em;
  height: 2.85714em;
  top: 0;
  right: 0;
  margin: 15px 15px 0 15px;
  cursor: pointer;
}

#toggle span {
  display: block;
  position: absolute;
  width: 80%;
  height: 0.2em;
  margin: 1.25em 0 0 0;
  background: #fdd355;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#toggle span:before,
#toggle span:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 0.2em;
  background: #fdd355;
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#toggle span:before { margin: -12px 0 0 0; }

#toggle span:after { margin: 12px 0 0 0; }

#toggle.open span { background-color: transparent; }

#toggle.open span:before,
#toggle.open span:after {
    margin: 0;
    background: #fdd355;
}

#toggle.open span:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}

#toggle.open span:after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

#menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: #2c3e50f5;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#menu.opened {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 350ms ease all;
  -moz-transition: 350ms ease all;
  transition: 350ms ease all;
}

#title {
  display: block;
  line-height: 1em;
  margin: 50px auto;
  color: #fdd355;
}



#menu ul {
  list-style: none;
  margin: 0 auto;
}

#menu ul li {
    display: block;
    width: 90%;
    height: 50px;
    font-size: 20px;
    margin: 0 auto 0.5em auto;
    font-weight: bold;
}

#menu ul li:hover:after { width: 90%; }

#menu ul li a {
    text-align: center;
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    -webkit-transition: 350ms ease all;
    -moz-transition: 350ms ease all;
    transition: 350ms ease all;
}

#menu ul li a:hover {
  color: #cd6a0d;
  border-color: #cd6a0d;
}

#menu ul li a span { font-size: 1.66667em; }

#menu ul li a i {
  position: absolute;
  padding: 0 1.25em 0 0;
  font-size: 2em;
}

/*FAIRE APPARAITRE LE MENU BURGER*/
@media screen and (max-width: 1000px) {
	/*HEADER*/
    .desktop {
        display: none;
    }
    .responsive {
        display: block;
    }
    .nav_2 {
        display: none;
    }

}






/* Section 1 */
section {
    position: relative;
    color: white;
}

.section-1 {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.section-1 .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
}

.section-1 p {
    font-size: 18px;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 400px;
}

.cta-main {
    padding: .540rem 1.6rem;
    line-height: 1.5;
    border-radius: .1875rem;
    outline: 0!important;
    color: #000;
    background-color: #fdd355;
    font-weight: 700;
}

.video-container {
    width: 100%;
    margin: auto;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,.2), 0 25px 50px 0 rgba(0,0,0,.1);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2), 0 25px 50px 0 rgba(0,0,0,.1);
    padding: 1px;
    margin: 0;
}

.cta-btn {
    background: #fcd455;
    font-weight: 600;
    color: black !important;
    padding: 10px 20px;
    border-radius: 50px;
}

@media screen and (max-width:768px) {
    .section-1 {
        background-image: url(../../img/background.gif);
        height: 700px;
    }
    
    .section-1 video {
        display: none;
    }

    .section-1 .container {
        text-align: center;
    }

    .section-1 p {
        margin-left: auto;
        margin-right: auto;
    }
}

/*Section 2*/
.section-2 {

}

.section-2 img {
    width: 100%;
    max-width: 300px;
    margin: auto;
    display: block;
}

section.section-2 > div > div {
    flex-wrap: initial;
}

.section-2 .section-left, .section-2 .section-right {
    width: 50%;
}

.section-2 h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
    word-break: break-word;
}

.section-2 p {
    margin-bottom: 2rem;
}


/*Section 3*/ 
.section-3 {
    /*background-image: url(../../img/rent.png);
    padding: 100px 0;*/
}

.section-3 .card-columns {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.section-3  .card-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-count: initial!important;
    -moz-column-count: initial!important;
    column-count: initial!important;
    -webkit-column-gap: initial!important;
    -moz-column-gap: initial!important;
    column-gap: initial!important;
    orphans: 1;
    widows: 1;
}

@media (min-width: 576px) {
    .section-3 .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }    
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.section-3 .card-columns .card {
    position: relative;
    background-color: #fafafa;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 200px;
    border: 0!important;
    margin-bottom: 15px;
}

.section-3 .card-columns .card {
    border-radius: 5px!important;
    height: 125px!important;
}

.section-3 .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.section-3 .card-columns .card a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.section-3 .card-columns .card a {
    display: block;
    width: 100%;
    height: 100%;
}

.section-3 .card .caption {
    width: 100%;
    padding: 7px 10px;
    position: absolute;
    bottom: 0;
    background-color: rgba(17,17,17,.5);
}
.section-3 .card-columns .card .caption {
    width: 100%;
    height: 100%;
    font-weight: 700;
    padding: 7px 10px;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    border-radius: 5px;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section-3 .card .caption span {
    cursor: pointer;
    color: #fff!important;
    font-size: 15px;
}

.text-container {
    text-align: center;
}


/* Section 4 */
.section-4 {

}


/* width */
.row_last_concerts::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
.row_last_concerts::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.row_last_concerts::-webkit-scrollbar-thumb {
    background: #fbd260c9;
}

/* Handle on hover */
.row_last_concerts::-webkit-scrollbar-thumb:hover {
    background: #fbd260;
}


.section-4 .row_last_concerts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-flex-wrap: initial;
    -ms-flex-wrap: initial;
    flex-wrap: initial;
    margin-bottom: 30px;
    text-align: center;
}


.section-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-flex-wrap: initial;
    -ms-flex-wrap: initial;
    flex-wrap: initial;
    margin-bottom: 30px;
    text-align: center;
}

.section-4 .img-container {

}

.section-4 .img-container img {
    width: 100%;
}

.section-4 .info-container h4 {
    font-weight: 900;
    margin-top: 15px;
}

.section-4 .info-container span {
    display: block;
    font-style: italic;
    margin-bottom: 15px;
    text-decoration: underline;
}


footer {}

footer h3 {
    text-align: center;
    padding-bottom: 100px;
}

@media screen and (max-width: 576px) {
    h3 {
        font-size: 30px;
    }

    .section-1 {
        height: 600px;
    }

    .line {
        max-width: 250px;
        margin: 50px auto;
    }

    section.section-2 > div > div{
        flex-direction: column-reverse;
    }

    .section-2 .section-left, .section-2 .section-right {
        width: 90%;
        margin: auto;
        text-align: center;
    }

    .section-3 .card-columns .card {
        height: 65px!important;
    }
}






