:root{
    --max-width: 1920px;
    --max-width-sub: 1600px;
    --primary: #000;
    --noir: #070707;
    --color1: #34404C;
    --color2: #445259;
    --color3: #34404C;
    --grey: #B5B5B5;
    --grey2: #F5F5F5;
    --grey3: #797979;
    --link: orange;
    --yellow: #D3BF2C;
    --textButton : #fbfbfb;
    --offreFond : #142C52;
    --footerColor : #33302E;
    --headerHeight : 58px;
    --headerHeightTop : 30px;
    --headerHeightTotal : 103px;
}

* {
    margin: 0;
    padding: 0;
    font-family: "NissanBrand-Regular";
}
.no-style{
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
li{
    list-style: none;
}
a,
a:hover{
    text-decoration: none;
}

.container{
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.menu-mobile{
    width: 250px;
    position: absolute;
    top: calc(var(--headerHeight) + var(--headerHeightTop) + 10px);
    right: 175px;
    padding: 20px;
    background-color: #fff;
    border-bottom: var(--offreFond);
    z-index: 2;
    display: none;
}

header{
    max-width: var(--max-width-sub);
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: calc(var(--headerHeight) + var(--headerHeightTop) + 10);
}
header .header-top{
    display: flex;
    justify-content: flex-end;
    max-width: var(--max-width-sub);
    margin: 0 auto;
    padding-top: 5px;
}
header .header-top .links{
    display: flex;
    height: 30px;
    margin: 0;
}
header .header-top .links li{
    margin-right: 20px;
}
header .header-top .links li:last-of-type{
    margin-right: 0;
}
header .header-top .links a{
    color: rgba(15, 15, 15, 0.6);
    height: 100%;
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 100%;
    padding: 0 15px;
}


header .header-top .links a:hover {
    color: var(--color1);
}
header .header-block{
    background-color: #fff;
    width: 100%;
    position: fixed;
}
header.mobile .menu-mobile{
    display: flex;
}
header .header-content .logo{
    padding-right: 15px;
    display: flex;
    align-content: center;
    align-items: center;
}

header .toggle-menu-reservez{
    display: flex;
    align-items: stretch;
    align-content: stretch;
    justify-content: space-between;
}

.menu-mobile ul{
    width: 100%;
    margin: 0;
}
.menu-mobile ul li{
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}
.menu-mobile ul li:last-of-type{
    margin-bottom: 0px;
}

.menu-mobile ul li.not-in-menu{
    display: none;
}

.menu-mobile ul li a{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    line-height: 100%;
    padding: 0px;
    font-family: "NissanBrand-Regular";
    font-size: 20px;
    color: #000;
}
.menu-mobile ul li:after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color:  var(--grey);
    margin-top: 10px;
}

.menu-mobile ul li:last-of-type:after{
    display: none;
}

header .links-top{
    display: flex;
    flex-direction: row;
    /*justify-content: flex-start;*/
    justify-content: space-between;
    align-content: center;
    align-items: center;
    max-width: 388px;
    width: 100%;
    height: var(--headerHeight);
}
header .links-top .links{
    display: flex;
    width: 100%;
    height: 50%;
    margin: 0;
    padding: 0;
}
header .links-top .marque-link{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 50%;
    border-left: 1px solid var(--color2);
    border-right: 1px solid var(--color2);
    border-bottom: 1px solid var(--color2);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    color: var(--color2);
}
header .links-top .links li{
    position: relative;
    width: 50%;
}

header .links-top .links a{
    color: rgba(15, 15, 15, 0.6);
    height: 90%;
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 100%;
}
header .links-top .links a:hover{
    background-color: var(--color1);
    color:  var(--textButton);
    border-radius: 5px;
}

header .links-top .link-reserver:hover,
header .links-top .link-reserver{
    height: 35px;
    width: 174px;
    display: flex;
    align-content: center;
    align-items: center;
    background-color: var(--color1);
    color:  var(--textButton);
    justify-content: center;
    border-radius: 5px;
    transition: all 0.2s;
    margin-left: auto;
}
header .links-top .link-reserver:hover{
    transform: scale(1.02);
}

header .header-content{
    display: flex;
    align-items: stretch;
    align-content: stretch;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--max-width-sub);
    padding-bottom: 10px;
}
header .header-content .header-content-right{
    display: flex;
    flex-direction: column;
    width: 100%;
}
header .header-content .logo h1{
    position: relative;
    margin: 0;
}
header .header-content .logo h1 span{
    position: absolute;
    top: -15000px;
    left: -15000px;
    z-index: -1;
}
header .header-content .logo a{
    display: block;
}
header .header-content .logo a img{
    height: auto;
}

header .header-content .toogle-menu{
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    color: #000;
    font-size: 27px;
}
header .header-content .toogle-menu i{
    margin-top: -4px;
    width: 27px;
}
header .header-content .toogle-menu i:last-of-type{
    display: none;
}
header.mobile .header-content .toogle-menu i:last-of-type{
    display: flex;
}
header.mobile .header-content .toogle-menu i:first-of-type{
    display: none;
}
header .header-content ul.menu{
    display: flex;
    margin: 0;
    width: 100%;
    padding-left: 20px;
    overflow: hidden;
    flex-wrap: wrap;
    height: var(--headerHeight);
}
header .header-content ul.menu li{
    position: relative;
    display: flex;
    align-items: center;
    height: var(--headerHeight);
    padding: 0px 26px;
}


header .header-content ul.menu li a{
    line-height: 100%;
    padding: 5px 5px;
    font-family: "NissanBrand-Regular";
    font-size: 20px;
    color: #000;
    display: flex;
    align-items: center;
    align-content: center;
    position: relative;
}

/* Fade in */
header .header-content ul.menu li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    opacity: 0;
    transition: opacity 300ms, transform 300ms;
}

/* Scale from center */
header .header-content ul.menu li a.active:after,
header .header-content ul.menu li a::after {
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
}

header .header-content ul.menu li a.active:after,
header .header-content ul.menu li a:hover::after,
header .header-content ul.menu li a:focus::after{
    transform: scale(1);
}


header .header-content ul.menu li:first-of-type a {
    margin-left: 0;
}
header .header-content ul.menu li:last-of-type a {
    margin-right: 0;
}



.before-footer{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.before-footer .before-footer-content{
    padding: 20px 30px;
    color: #000;
}

footer{
    padding-top: 39px;
    padding-bottom: 20px;
    background-color: var(--footerColor);
}
footer .footer-top{
    padding-bottom: 54px;
}
footer .footer-content{
    max-width: var(--max-width-sub);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
footer .footer-content .footer-bottom{
    border-top: 1px solid var(--textButton);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    padding-top: 13px;
}
footer .footer-content .footer-bottom .copyright{
    color: #fff;
    font-family: "NissanBrand-Bold";
    font-size: 12px;
}

footer .footer-content .footer-links{
    display: flex;
    justify-content: flex-end;
}
footer .footer-content .footer-links a{
    margin-right: 15px;
    font-family: "NissanBrand-Bold";
    font-size: 12px;
    text-align: center;
    color: #fff;

}
footer .footer-content .footer-links a:last-of-type {
    margin-right: 0;
}
.btn{
    transition: all 0.2s;
    font-family: "NissanBrand-Regular";
    font-weight: bold;
    font-size: 20px;
    padding: 9px 10px;
    text-align: center;
}
.btn:hover{
    transform: scale(1.02) !important;
}

.btn-primary{
    background-color: var(--color1);
    border-color: var(--color2);
    padding-left: 15px;
    padding-right: 15px;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover{
    font-family: "NissanBrand-Regular" !important;
    font-size: 20px !important;
    color: var(--color2) !important;
    background-color: #fff;
    border-color: var(--color2) !important;
}

.btn-secondary{
    font-family: "NissanBrand-Regular" !important;
    font-size: 20px !important;
    background-color: #fff !important;
    border-color: var(--offreFond) !important;
    color: var(--offreFond);
}
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover{
    font-family: "NissanBrand-Regular" !important;
    font-size: 20px !important;
    background-color: var(--offreFond) !important;
    border-color: var(--offreFond) !important;
    color: #fff;
}

.btn-1{
    background-color: #fff;
    color: #000;
}
.btn-2{
    background-color: var(--yellow) !important;
    border-color: var(--yellow)  !important;
    color: var(--color1)  !important;
}

.btn:hover{
    transform: scale(1.01);
}

.btn-2:hover{
    background-color: transparent !important;
    border-color: var(--yellow) !important;
    color: var(--yellow) !important;
}

h3{
    font-size: 50px;
    line-height: 100%;
    font-weight: bold;
}

.link:hover,
.link{
    padding: 5px 0px;
    width: 100%;
    font-family: "NissanBrand-Bold";
    font-size: 20px;
    text-align: left;
    color: var(--noir);

}
.link:hover{
    justify-content: space-between;
}
.link i{
    margin-left: 34px;
    transition: all 0.2s;
}
.link span{
    display: flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    width: 80%;
    font-family: "NissanBrand-Bold";
    font-size: 20px;
}
.link:hover span{
    width: 90%;
}

.link-secondary:hover,
.link-secondary{
    color: var(--link);
}

.help-block.form-error{
    color: red;
}
.form-group.has-success select,
.form-group.has-success textarea,
.form-group.has-success input[type="email"],
.form-group.has-success input[type="text"]{
    border-color: green;
}

h2{
    font-family: "NissanBrand-Bold";
    font-size: 60px;
    line-height: 65px;
    text-align: left;
    color: #000;
    margin-bottom: 30px;
}

h2 strong{
    font-family: "NissanBrand-Bold";
}

h3{
    font-family: "NissanBrand-Bold";
    font-size: 60px;
    text-align: left;
    color: #000;
    margin-bottom: 48px;
}

h4{
    font-family: "NissanBrand-Bold";
    font-size: 40px;
    line-height: 65px;
    text-align: left;
    color: #000;
    margin-bottom: 10px;
}

form #mentions,
form select.form-control,
form input.form-control,
form textarea.form-control{
    background: #ededef;
    border: 1px solid var(--offreFond);
    box-shadow: inset 1px 2px 0px 0px rgba(0, 0, 0, 0.47);
}

form select.form-control,
form input.form-control{
    height: 55px;
}

form .form-group label{
    font-size: 16px;
    line-height: 100%;
}

form .form-group .form-check label{
    margin-top: 2px;
}

.modal-footer,
.modal-header{
    background-color: var(--offreFond);
    color: #fff;
}

.modal-header .close{
    color: #fff;
}

#main-container{
    margin-top: var(--headerHeightTotal);
}

.btgrid img{
    max-width: 100% !important;
    height: auto !important;
}

body .height-inherit{
    height: inherit !important;
}

.btgrid h4{
    font-size: 25px;
    line-height: 25px;
}

.panel-heading .collapsible-item-title-link-icon .fa-plus{
    display: none !important;
}
.panel-heading .collapsible-item-title-link-icon .fa-minus{
    display: flex !important;
}
.panel-heading .collapsed.collapsible-item-title-link-icon .fa-plus{
    display: block !important;
}
.panel-heading .collapsed.collapsible-item-title-link-icon .fa-minus{
    display: none !important;
}

@media (max-width: 1919px) {

    #main-container::before {
        display: none !important;
    }
}
@media (max-width: 1600px) {
    .btgrid a {
        word-break: break-all;
    }
    .btgrid .row-1 .col:first-of-type {
        padding: 0 0 0 15px;
    }
    header .header-top{
        padding-left: 15px;
        padding-right: 15px;
    }
    header .header-content{
        padding-left: 15px;
        padding-right: 15px;
    }
    h3{
        padding-left: 15px;
        padding-right: 15px;
    }
    h2{
        padding-left: 15px;
        padding-right: 15px;
    }
    h4{
        padding-left: 15px;
        padding-right: 15px;
    }
    footer .footer-content{
        padding-left: 15px;
        padding-right: 15px;
    }
    .toogle-menu{
        display: flex !important;
    }

}


@media (max-width: 950px) {
    .menu-mobile{
        right: 0;
        width: 100%;
    }
}

@media (max-width: 810px) {
    :root{
        --headerHeight : 54px;
    }
    header .header-content{
        justify-content: space-between;
    }
    .menu-mobile ul li.not-in-menu{
        display: block;
    }
    header .links-top .links{
        display: none;
    }
    header .links-top{
        justify-content: center;
        width: auto;
        height: auto;

    }
    header .links-top .link-reserver:hover,
    header .links-top .link-reserver{
        width: 150px;
        height: 28px;
        margin-top: -2px;
    }
    header .toggle-menu-reservez{
        justify-content: flex-end;
    }
    header .header-content{
        padding-bottom: 10px;
    }


}
@media (max-width: 544px) {
    header .header-content ul.menu{
        display: none;
    }

    :root{
        --headerHeight : 78px;
        --headerHeightTotal : 78px;
    }

}
@media (max-width: 480px) {
    :root{
        --headerHeight : 38px;
    }
    .before-footer .before-footer-content{
        padding-left: 15px;
        padding-right: 15px;
    }
    .btgrid{
        padding-left: 15px;
        padding-right: 15px;
    }
    .menu-mobile{
        padding: 15px;
    }
    header .header-top{
        display: none;
    }
    header .header-content{
        padding-top: 10px;
    }
    footer .footer-content .footer-bottom{
        flex-direction: column;
    }
    footer .footer-content .footer-links{
        flex-direction: column;
    }
    h2{
        font-size: 40px !important;
        line-height: 100% !important;
    }
    h3{
        font-size: 30px !important;
        line-height: 100% !important;
        margin-bottom: 28px !important;
    }
    h4{
        font-size: 20px !important;
        line-height: 100% !important;
    }

    .link span{
        font-size: 18px;
    }

    footer .footer-top{
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        padding-bottom: 15px;
    }
    footer .footer-top img{
        max-width: 80px;
        height: auto;
    }
    footer{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    footer .footer-content{
        padding-left: 0;
        padding-right: 0;
    }

    .btgrid.grille-5 .row-1 {
        flex-direction: column-reverse;
    }

    .btgrid.grille-5 .row-2 .col,
    .btgrid.grille-5 .row-1 .col{
        padding-left: 15px;
        padding-right: 15px;
    }
    .btgrid.grille-5 .row-2 {
        flex-direction: column;
    }



    .btgrid.grille-4 .row-1 {
        flex-direction: column;
    }

    .btgrid.grille-4 .row-2 .col,
    .btgrid.grille-4 .row-1 .col{
        padding-left: 15px;
        padding-right: 15px;
    }
    .btgrid.grille-4 .row-2 {
        flex-direction: column-reverse;
    }


    .btgrid.grille-3 .row-1 {
        flex-direction: column-reverse;
    }

    .btgrid.grille-3 .row-2 .col,
    .btgrid.grille-3 .row-1 .col{
        padding-left: 15px;
        padding-right: 15px;
    }

    .btgrid.grille-2 .row-1 {
        flex-direction: column;
    }

    .btgrid.grille-2 .row-2 .col,
    .btgrid.grille-2 .row-1 .col{
        padding-left: 15px;
        padding-right: 15px;
    }

    .btgrid.grille-1 .row .col:first-of-type{
        padding-right: 7px;
    }
    .btgrid.grille-1 .row .col:last-of-type{
        padding-left: 7px;
    }
}
