/*
=================================================
AVAILABLE FONTS
font-family: 'Limelight', sans-serif;
font-family: 'Open Sans', sans-serif;
=================================================
COLOR PALETTE:
Almost Black: #1C333C
Dark green: #264653
Light green: #2A9D8F
Gold: #E9C46A
Light Orange: #F4A261
Dark Orange: #E76F51
=================================================
 */

body, html {
    padding: 0;
    margin: 0;
    background: #EEE;
    border-top: 1px solid #000;
}

body, html, * {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.clear {
    clear: both;
    margin: 0;
    padding: 0;
    height: 0;
}

/*
=================================================
SMALL vs LARGE Screens
=================================================
*/
.large-screen {
    display: inline !important;
}
.small-screen {
    display: none !important;
}
@media screen and (max-width: 770px) {
    .large-screen {
        display: none !important;
    }
    .small-screen {
        display: inline !important;
    }
    header, section, photos {
        margin-bottom: 20px !important;
    }
}



/*
=================================================
NAV
=================================================
*/
logo {
    display: block;
    background: #000;
    width: 100%;
    text-align: center;
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 3;
    height: 40px;
    opacity: 0.9;
}
logo a {
    display: inline !important;
    padding: 0 30px;
    font-size: 16px;
    line-height: 40px;
    font-family: 'Limelight', sans-serif;
    color: #FFF;
    text-decoration: none;
}
@media screen and (max-width: 540px) {
    logo a {
        font-size: 13px;
        padding: 0 10px;
    }
}
#top-nav {
    background: #111f24;
    width: 100%;
    text-align: center;
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 3;
    height: 53px;
    border-bottom: 8px solid #264653;
    opacity: 0.9;
}
#top-nav span {
    font-family: 'Limelight', sans-serif;
}
#top-nav nav-color-accent-1 {
    display: block;
    height: 59px;
    border-bottom: 6px solid #2A9D8F;
}
#top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#top-nav ul li {
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    border-top: 3px solid rgba(0,0,0,0);
    position: relative;
}
#top-nav span.lang {
    font-size: 16px;
}
#top-nav ul li.active {
    border-top: 3px solid #EEE;
}

#top-nav ul li a, #top-nav ul li button {
    font-family: 'Limelight', sans-serif;
    font-size: 16px;
    color: #EEE;
    text-decoration: none;
    padding: 0 12px;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    background: none;
    border: none;
    height: 40px;
    cursor: pointer;
}

#top-nav ul li button span.caret {
    font-size: 10px;
    position: relative;
    bottom: 3px;
}

#top-nav ul li.language-switcher {
    padding-bottom: 4px;
    line-height: 30px;
}
#top-nav ul li.language-switcher a {
    background: #E76F51;
    border-radius: 3px;
    color: #FFF;
    height: 28px;
}
@media screen and (max-width: 540px) {
    #top-nav ul li a, #top-nav ul li button {
        font-size: 11px;
        padding: 0 3px;
    }
    #top-nav ul li button span.caret {
        font-size: 9px;
        bottom: 1px;
    }
    #top-nav ul li.language-switcher a {
        padding: 0 5px;
    }
    #top-nav ul li.language-switcher a span {
        font-size: 12px;
    }
}
#top-nav ul li ul.submenu, #top-nav ul li div.submenu {
    display: none;
    position: absolute;
    top: 41px;
    left: -3px;
    text-align: left;
    z-index: 500;
    background: #FFF;
    border-radius: 5px;
    border: 3px solid #DDD;
    box-shadow: 0 0 7px rgba(0,0,0,0.7);
    cursor: pointer;
}
#top-nav ul li ul.submenu#more-submenu {
    width: 160px;
}
#top-nav ul li ul.submenu#locations-submenu {
    width: 280px;
}
#top-nav ul li ul.submenu#jeux-submenu {
    width: 270px;
}
#top-nav ul li ul.submenu#la-tour-submenu {
    width: 240px;
}
@media screen and (max-width: 540px) {
    #top-nav ul li ul.submenu, #top-nav ul li div.submenu {
        position: fixed;
        width: calc(100% - 20px) !important;
        text-align: center;
        left: 10px;
        top: 75px;
    }
}
#top-nav ul li.expanded ul.submenu, #top-nav ul li.expanded div.submenu {
    display: block;
}

#top-nav ul li ul.submenu li {
    display: block;
    width: auto;
    border-top: 1px solid #ddd;
}
#top-nav ul li ul.submenu li:first-child {
    border-top: none;
}
#top-nav ul li ul.submenu li a {
    color: #444;
    text-transform: none;
    display: block;
}
#top-nav ul li ul.submenu li a:hover {
    background: #eee;
}
#top-nav ul li ul.submenu li:first-child a:hover {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}
#top-nav ul li ul.submenu li:last-child a:hover {
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}
/*
=================================================
HEADINGS
=================================================
*/

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

header {
    position: relative;
    background-color: #EEE;
    background-position: center center;
    background-size: cover;
    padding: 160px 30px 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background-size: cover;
}

header-content {
    width: 1040px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header h1 {
    font-size: 60px;
    line-height: 60px;
    margin: 0 0 25px 0;
    padding: 0;
    font-family: 'Limelight', sans-serif;
    color: #FFF;
    text-shadow: 0 0 20px rgba(0,0,0,1);
}
header h1.reversed {
    font-family: 'Limelight', sans-serif;
    font-size: 24px;
    color: #FFF;
    font-weight: normal;
    margin: 0 0 5px 0;
    line-height: 28px;
    text-shadow: 0 0 12px rgba(0,0,0,0.9);
}
header h6{
    font-family: 'Limelight', sans-serif;
    font-size: 24px;
    color: #FFF;
    font-weight: normal;
    margin: 0 0 5px 0;
    line-height: 28px;
    text-shadow: 0 0 12px rgba(0,0,0,0.9);
}
header h6.reversed {
    font-size: 60px;
    line-height: 60px;
    margin: 0 0 25px 0;
    padding: 0;
    font-family: 'Limelight', sans-serif;
    color: #FFF;
    text-shadow: 0 0 12px rgba(0,0,0,0.9);
}

header h2 {
    text-align: center;
    font-family: 'Limelight', serif;
    margin: 0 ;
    padding: 0 0 15px 0;
    font-size: 26px;
    line-height: 30px;
    color: #FFF;
    font-weight: normal;
    text-shadow: 0 0 12px rgba(0,0,0,0.9);
    max-width: 100%;
}

header a {
    font-family: 'Limelight', serif;
    display: inline-block;
    background: #E76F51;
    /*border: 3px solid #E76F51;*/
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    color: #FFF;
    padding: 10px 10px 9px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 18px;
    line-height: 28px;
    min-width: 340px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
@media screen and (max-width: 540px) {
    header {
        padding: 80px 10px 0px;
        margin-bottom: 0 !important;
    }
    header h1 {
        font-size: 38px;
        line-height: 44px;
    }
    header h2 {
        font-size: 16px;
        line-height: 26px;
    }
    header a {
        font-size: 13px;
        min-width: auto;
        width: 100%;
    }
}

/*
=================================================
CONTENT SECTIONS
=================================================
*/
section {
    background: #EEE;
    padding: 0px 20px 0px;
    margin-bottom: 30px;
}

section-content {
    display: block;
    background: #FFF;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 27px 35px 30px;
}

section-content h3 {
    font-family: 'Limelight', sans-serif;
    font-size: 24px;
    margin: 0 0 10px;
}
section p, section p a {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 10px;
    color: #000;
}
section p a {
    text-decoration: none;
    border-bottom: 2px solid #a1e0de;
    box-shadow: inset 0 -5px 0 #a1e0de;
}
section p a:hover {
    text-decoration: none;
    border-bottom: 2px solid #2A9D8F;
    box-shadow: inset 0 -5px 0 #2A9D8F;
}
section p:last-child {
    margin: 0;
}
section p a.call-to-action {
    font-family: 'Limelight', serif;
    display: block;
    width: 100%;
    background: #264653;
    color: #FFF;
    padding: 12px 20px 11px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    /*text-transform: uppercase;*/
    text-align: left;
    border: none;
    box-shadow: none;
}
section p a.call-to-action:hover {
    background: #2A9D8F;

}

photos {
    display: block;
    padding: 0 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}
/*section photos h3 {*/
/*    font-family: 'Limelight', sans-serif;*/
/*    font-size: 24px;*/
/*    margin: 0 0 15px;*/
/*}*/
photos img {
    border-radius: 3px;
    width: 100%;
}

/*
=================================================
CONTENT SECTIONS
=================================================
*/
section {
    background: #EEE;
    padding: 0px 20px 0px;
    margin-bottom: 30px;
}
section-content {
    display: block;
    background: #FFF;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 27px 35px 30px;
}
@media screen and (max-width: 540px) {
    section {
        padding: 0;
    }
    section-content {
        padding: 15px 20px;
    }
}
section-content h3 {
    font-family: 'Limelight', sans-serif;
    font-size: 24px;
    margin: 0 0 10px;
}
section p, section p a {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 10px;
    color: #000;
}
section p a {
    text-decoration: none;
    border-bottom: 2px solid #a1e0de;
    box-shadow: inset 0 -5px 0 #a1e0de;
}
section p a:hover {
    text-decoration: none;
    border-bottom: 2px solid #2A9D8F;
    box-shadow: inset 0 -5px 0 #2A9D8F;
}
section p:last-child {
    margin: 0;
}
section p a.call-to-action {
    font-family: 'Limelight', serif;
    display: block;
    width: 100%;
    background: #264653;
    color: #FFF;
    padding: 12px 20px 11px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    /*text-transform: uppercase;*/
    text-align: left;
    border: none;
    box-shadow: none;
}
section p a.call-to-action:hover {
    background: #2A9D8F;

}

photos {
    display: block;
    padding: 0 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}
/*section photos h3 {*/
/*    font-family: 'Limelight', sans-serif;*/
/*    font-size: 24px;*/
/*    margin: 0 0 15px;*/
/*}*/
photos img {
    border-radius: 3px;
    width: 100%;
}

/*
=================================================
FOOTER
=================================================
*/

footer {
    /*background: #EEE;*/
    padding: 20px 20px 20px;
    text-align: center;
    position: relative;
    border-top: 3px solid #DDD;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

footer ul {
    max-width: 600px;
    list-style: none;
    margin: 0 auto;
}

footer ul.links {
    padding: 0px 20px 0px;
}



footer ul li {
    display: inline-block;
    padding: 2px 5px;
    font-size: 12px;
    line-height: 16px;

}

footer ul li a, footer p {
    color: #AAA;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 14px;
}

footer ul.social-media {
    padding: 0px 20px 0px;
}

footer ul.social-media li {
    font-size: 12px;
    line-height: 16px;
}

footer ul.social-media li a.instagram:hover {
    color: #c32aa3;
}