/* Colors */


/* Fonts */


/* Background images */


/* General */

@font-face {
    font-family: 'heineken_bold';
    src: url('font/heinekenserif18-bold-webfont.woff2') format('woff2'), url('font/heinekenserif18-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'heineken_medium';
    src: url('font/heinekenserif18-medium-webfont.woff2') format('woff2'), url('font/heinekenserif18-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'heineken_regular';
    src: url('font/heinekenserif18-regular-webfont.woff2') format('woff2'), url('font/heinekenserif18-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hurme_geometric_sans_4light';
    src: url('font/hurmegeometricsans4_light-webfont.woff2') format('woff2'), url('font/hurmegeometricsans4_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hurme_geometric_sans_hairline';
    src: url('font/hurmegeometricsans4_hairline-webfont.woff2') format('woff2'), url('font/hurmegeometricsans4_hairline-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hurme_geometric_sanhairlineOb';
    src: url('font/hurmegeometricsans4_hairlineoblique-webfont.woff2') format('woff2'), url('font/hurmegeometricsans4_hairlineoblique-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hurme_geometric_sans_4black';
    src: url('font/hurmegeometricsans4_black-webfont.woff2') format('woff2'), url('font/hurmegeometricsans4_black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hurme_geometric_sans_4BlkOb';
    src: url('font/hurmegeometricsans4_blackoblique-webfont.woff2') format('woff2'), url('font/hurmegeometricsans4_blackoblique-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hurme_geometric_sans_4BdOb';
    src: url('font/hurmegeometricsans4_boldoblique-webfont.woff2') format('woff2'), url('font/hurmegeometricsans4_boldoblique-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('font/helveticaneue.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #FFFFEA;
    /* background-image: url("https://www.transparenttextures.com/patterns/inspiration-geometry.png"); */
    /*  font-family: "Abel", sans-serif; */
    color: #ffffff;
    margin: 0;
}


/* Main page */

.heading {
    font-size: 52px;
    font-family: "Lobster", cursive;
    color: #FFF;
    margin-bottom: 0;
}

p.desc {
    letter-spacing: 0.5px;
    margin-top: 0;
    margin-bottom: 60px;
}


/* Cards */

.cards-container {
    display: block;
    margin: 4px auto;
    width: 400px;
    height: 300px;
}

.flip-container {
    position: relative;
    display: inline-block;
    margin: 15px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-container .flipper {
    position: relative;
    -webkit-transform-style: preserve-3d;
    -webkit-transition: 0.5s;
    -moz-transform-style: preserve-3d;
    -moz-transition: 0.5s;
    -ms-transform-style: preserve-3d;
    -ms-transition: 0.5s;
    -o-transform-style: preserve-3d;
    -o-transition: 0.5s;
}

.flip-container.active .flipper {
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.flip-container,
.front,
.back {
    border-radius: 5px;
    color: #FFFFEA;
    width: 80px;
    height: 80px;
}

.front,
.back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.front {
    background-image: url("../images/bg1.png");
    background-size: cover;
    /* <------ */
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
    -moz-transform: rotateY(0);
    -o-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.front label {
    cursor: pointer;
    display: inline-block;
    font-size: 22px;
    padding-top: 15px;
}

.back {
    background-color: #00CECB;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.back label {
    display: block;
    width: 100%;
    font-size: 24px;
    margin-top: 10px;
}


/* Buttons */

.btn {
    display: inline-block;
    background-color: #FFED66;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-family: "Abel", sans-serif;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    /* color: #FF5E5B; */
    box-shadow: 0 3px 0 #FF5E5B;
    cursor: pointer;
    transition: all 100ms linear;
}

.btn:hover {
    -moz-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    box-shadow: 0 7px 0 #FF5E5B;
}

.btn:focus {
    outline: 0;
}


/* Github ribbon */

#github {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
}


/* Helpers */

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

.hide {
    display: none !important;
}

.cursor-default {
    cursor: default !important;
}


/* Reponsive Rules */

@media screen and (max-width: 1200px) {
    .flip-container,
    .front,
    .back {
        width: 50px;
        height: 50px;
    }
    .timer {
        padding: 10px;
        border-radius: 5px;
        background-color: #FFFFEA;
    }
}

@media screen and (max-width: 992px) {
    .flip-container,
    .front,
    .back {
        width: 50px;
        height: 50px;
    }
    .front label {
        display: inline-block;
        font-size: 16px;
        padding-top: 10px;
    }
    .cards-container {
        margin: 40px 10px;
    }
    .timer {
        top: 10px;
        left: 10px;
    }
}

@media screen and (max-width: 768px) {
    .flip-container,
    .front,
    .back {
        width: 50px;
        height: 50px;
    }
}


/* Animations */

@keyframes wobble {
    from {
        transform: none;
    }
    15% {
        transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        transform: translate3d(5%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        transform: none;
    }
}

.wobble {
    animation: wobble 600ms ease-in-out;
}


/* Style page home */

body.landing {
    max-width: 100%;
    width: 100%;
    display: block;
    min-height: 100vh;
    background: url(./../images/bkg.png) center center no-repeat;
    background-size: cover;
}

body.form,
body.reglement,
body.remerciement {
    background: url(../images/bkg_form.png) center center no-repeat;
    background-size: cover;
    /* height: 100vh */
    min-height: 100vh;
}


/* body.remerciement{} */

.container {
    max-width: 1920px;
    margin-right: auto;
    margin-left: auto;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.left-content {
    flex: 1 1 auto;
    flex-basis: 26%;
    max-width: 26%;
}
/* .landing .left-content{

} */
.main-content {
    flex: 1 1 auto;
    flex-basis: 44%;
    max-width: 44%;
    position: relative;
    background: url(../images/greenbkg-btnplay.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.block-main {
    height: 100%;
}

.landing .block-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.main-content h2 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
    padding: 0 60px;
    line-height: 29px;
    margin-top: 0;
}

.main-content a.button {
    display: block;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.landing .container-fluid {
    /* height: 100vh; */
}
.landing .container{
    height: 100vh;
}
.main-content a.button div {
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 6px;
    font-family: 'heineken_medium';
}

.main-content a.button img {
    align-self: center;
    max-width: 100%;
    height: 280px;
    width: 273px;
}

.main-content::before {
    content: "";
    background: url(../images/btl.png) no-repeat 100% 0;
    display: block;
    height: 96%;
    width: 380px;
    position: absolute;
    left: -310px;
    background-size: contain;
}

.main-content .rule_link {
    height: 30px;
    position: relative;
    z-index: 100;
    text-align: center;
    margin-bottom: 10px;
}

.main-content .rule_link a {
    color: #fff;
    font-family: 'HelveticaNeue';
    font-style: unset;
    padding: 0 20px;
    margin-bottom: 20px;
    font-weight: 300;
}

.right-content {
    flex: 1 1 auto;
    flex-basis: 30%;
    max-width: 30%;
    background: url(../images/bkg-lots.png) no-repeat 0 0;
    background-size: cover;
}

.block-right {
    background: url(../images/lots.png) no-repeat center 75%;
    display: block;
    height: 100%;
    padding-top: 58px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-size: 380px;
}

.landing .block-right {
    /* min-height: 981px; */
    padding: 0 25px;
    background: url(../images/lots.png) no-repeat center 85%;
    background-size: 65%;
}
.landing .logo img{
    max-width: 100%;
}

.block-right h2 {
    text-align: center;
    padding: 0 2em;
    max-width: 100%;
}

.block-right .button {
    width: 420px;
    height: 420px;
    display: block;
    background: url(../images/btn-play1.png) no-repeat center center;
    background-size: 100%;
    margin: 0 auto;
}

.block-right .titleR {
    /* font-size: 26px; */
    text-align: center;
    background-color: #2a7036;
    line-height: 44px;
    height: 40px;
    margin-bottom: 4px;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px;
    width: auto;
    font-family: 'heineken_medium';
    font-weight: 400;
    font-size: 1.8vw;
}

.block-right .title-top {
    width: auto;
    margin-top: 58px;
}

.block-right .title-bottom {
    margin-bottom: 38px;
}

.block-right .title-kit {
    /* font-size: 34px; */
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .2em;
    font-weight: 400;
    font-family: 'heineken_medium';
    font-size: 2.3vw;
}

.block-right a span,
.block-right img {
    text-align: center;
}

.block-right .bottom {
    position: absolute;
    bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    padding: 20px;
    font-weight: 300;
    font-family: 'heineken_regular';
}

.logo {
    padding: 0 60px;
    min-height: 300px;
    margin-bottom: 20px;
}

.logo50e.logo {
    margin-bottom: 10px;
    min-height: unset;
    padding: 0 60px;
}

.logo img {
    height: auto;
    margin: 10px auto 0 auto;
    display: block;
    width: auto;
    max-width: 680px;
}

.content-right {
    width: 32%;
    flex: 1 1 auto;
    flex-basis: 32%;
    max-width: 32%;
}

@media screen and (min-width: 1920px) {
    .container {
        max-width: 1920px;
        margin: 0 auto;
    }
    .block-right .titleR{
        font-size: 26px;
    }
    .block-right .title-kit{
        font-size: 34px;
    }
    .logo50e.logo{
        padding: 0 120px;
    }
    /* .remerciement .title h1 {
        font-size: 97px;
    } */
    
}


/* Page formulaire................ */

#inscription-form p {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px 0 15px;
    border: 1px solid #fff;
    margin: 0;
    min-height: 60px;
}

#inscription-form p label {
    flex: 0 0 auto;
    text-transform: uppercase;
    margin-right: 20px;
    font-size: 26px;
    font-family: 'heineken_regular';
}

#inscription-form p input[type="text"],
#inscription-form p input[type="email"],
#inscription-form p input[type="date"],
#inscription-form p input[type="tel"],
#inscription-form p input[type="file"] {
    width: calc(100% - 220px) !important;
    flex: 1 1 auto;
    flex-basis: calc(100% - 220px) !important;
    background-color: #000000 !important;
    border: none !important;
    height: 50px;
    /* min-height: 100%; */
    margin-bottom: 0 !important;
    color: #ffffff !important;
    font-family: 'heineken_regular';
    font-size: 18px;
}

#inscription-form p input[type="text"]:focus,
#inscription-form p input[type="email"]:focus,
#inscription-form p input[type="date"]:focus,
#inscription-form p input[type="tel"]:focus,
#inscription-form p input[type="file"]:focus {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
    -webkit-box-shadow: 0 0 0 30px black inset !important;
    transition: background-color 9999s ease-in-out 0s;
}

input,input:-webkit-autofill {
    -webkit-text-fill-color: #ffffff !important;
    color: #fff !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

#inscription-form p input[type="text"]:-internal-autofill-selected,
#inscription-form p input[type="email"]:-internal-autofill-selected,
#inscription-form p input[type="date"]:-internal-autofill-selected,
#inscription-form p input[type="tel"]:-internal-autofill-selected,
#inscription-form p input[type="file"]:-internal-autofill-selected {
    background-color: #000000 !important;
    color: #ffffff !important;
}

#inscription-form p input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: #ffffff;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
}

#inscription-form input[type="text"],
#inscription-form input[type="email"],
#inscription-form input[type="date"],
#inscription-form input[type="tel"],
#inscription-form input[type="file"],
#inscription-form input[type="checkbox"] {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 10px;
    /* border-radius: 5px; */
    font-size: 16px;
    font-family: Arial, sans-serif;
}

#inscription-form input[type="submit"] {
    font-family: "Abel", sans-serif;
    background-color: rgba(0, 0, 0, 0);
    color: #6ff46f;
    -webkit-text-fill-color: #6ff46f !important;
    border: none;
    padding: 60px 120px 60px 30px;
    font-size: 80px;
    cursor: pointer;
    text-align: center;
    position: relative;
    z-index: 10;
    color: rgba(55, 247, 19, .9);
    text-shadow: 0 0 4px #37f713, 0 0 8px #37f713, 0 0 8px rgb(55, 152, 19), 0 0 16px rgb(55, 106, 19), 0 0 0px rgb(55, 247, 19), 0 0 17px rgb(55, 247, 19), 0 0 66px rgb(55, 247, 19), 0 0 74px rgb(55, 247, 19);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    text-transform: uppercase;
}

#inscription-form input[type="checkbox"] {
    margin-top: 10px;
}

#inscription-form input[type="checkbox"]:checked,
#inscription-form input[type="checkbox"]:not(:checked) {
    position: absolute;
    opacity: 0;
    /* left: -9999px; */
}

#inscription-form input[type="checkbox"]:checked+label,
#inscription-form input[type="checkbox"]:not(:checked)+label {
    position: relative;
    padding-left: 0;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}

#inscription-form input[type="checkbox"]:checked+label:before,
#inscription-form input[type="checkbox"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    width: 18px;
    height: 14px;
    border: 2px solid #ddd;
    background: #000;
}

#inscription-form input[type="checkbox"]:checked+label:after,
#inscription-form input[type="checkbox"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 8px;
    background: #59f359;
    position: absolute;
    top: 5px;
    right: -25px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#inscription-form input[type="file"] {
    /* position: absolute;
    margin-top: 3px;
    margin-left: 3px;
    height: 1px;
    width: 1px;
    z-index: -5;
    left: 170px; */

    opacity: 0;
    filter: alpha(opacity=0);
}
.fileSubmit .file-selected{
    color: #ffffff !important;
    font-family: 'heineken_regular';
    font-size: 18px;
}
.fileSubmit .btn{
    display: none;
}

#inscription-form p.fileSubmit {
    padding: 0;
    position: relative;
}

#inscription-form p.fileSubmit input {
    height: auto;
}
#inscription-form p.fileSubmit input#photo{
    display: none;
}

#inscription-form p.fileSubmit label {
    height: 60px;
    padding-left: 15px;
    padding-top: 5px;
    padding-right: 60px;
    background-color: #4b4b4b;
    position: relative;
    cursor: pointer;
}

#inscription-form p.fileSubmit label::before {
    content: "Ajouter une photo de votre HK";
    height: 20px;
    font-size: 11px;
    color: #fff;
    font-family: 'heineken_regular';
    position: absolute;
    text-transform: uppercase;
    width: calc(100% - 72px);
    bottom: 0;
    text-align: center;
}

#inscription-form p.fileSubmit label::after {
    content: "";
    height: 60px;
    width: 60px;
    display: block;
    position: absolute;
    background: url(../images/attache-file.png) no-repeat center center;
    right: 0;
    top: 0;
}

#inscription-form input[type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

#inscription-form input[type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* .valider {
     margin-top: 150px;
     display: inline-block;
     background-color: #4CAF50;
     color: white;
    padding: 10px 20px;
     text-align: center;
     text-decoration: none;
     font-size: 16px;
    border-radius: 5px;
     cursor: pointer;
     margin-left: 40%;
 }
 .valider:hover {
     background-color: #3e8e41;
 } */

.page-form h1,
.remerciement-pg h1,
.reglement-pg h1 {
    text-align: center;
    margin: 0;
    font-size: 36px;
    text-transform: none;
    padding-top: 80px;
    padding-bottom: 120px;
    padding-top: 60px;
    padding-bottom: 80px;
}

.form .title h1,
.remerciement .title h1,
.reglement .title h1 {
    font-family: 'heineken_bold';
    text-transform: uppercase;
    margin: 0 0 40px;
    letter-spacing: -1px;
    line-height: normal;
    margin-bottom: 0;
}
.remerciement .title h1,
.reglement .title h1 {
    font-size: 97px;
}

.form .title h1 {
    font-size: 84px;
    padding-top: 20px;
    padding-bottom: 100px;
}

.reglement .title h1 {
    text-transform: none !important;
}

.remerciement .title h1 {
    text-transform: none !important;
    padding-top: 20px;
    /* margin-bottom: 40px; */
    line-height: 130px;
    padding-bottom: 90px;
}

.reglement .title h1 {
    padding-top: 40px;
    padding-bottom: 20px;
}

.page-form .container {
    max-width: 930px;
    margin: 0 auto;
    display: block;
}

.remerciement-pg .container {
    height: calc(100vh - 252px);
    max-width: 1920px;
    position: relative;
}

.landing h2 {
    font-family: 'heineken_regular';
    font-weight: 300;
    margin-bottom: 0;
}

.reglement-pg .container {
    height: calc(100vh - 252px);
    max-width: 1920px;
    position: relative;
}

.reglement-pg p {
    /* font-size: 37px; */
    font-size: 2vw;
    font-weight: 400;
    font-family: 'heineken_medium';
}

.reglement-pg .main-content {
    width: 77%;
    max-width: 77%;
    padding-left: 65px;
    padding-right: 65px;
    background: -moz-linear-gradient(-165deg, rgba(0, 114, 46, 1) 45%, rgba(57, 110, 68, .3) 100%);
    background: -webkit-linear-gradient(-165deg, rgba(0, 114, 46, 1) 45%, rgba(57, 110, 68, .3) 100%);
    background: linear-gradient(-165deg, rgba(0, 114, 46, 1) 45%, rgba(57, 110, 68, .3) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00722e', endColorstr='#007db9e8', GradientType=1);
    justify-content: flex-start;
}

.reglement-pg .main-content::before {
    content: "";
    background: none;
}

#inscription-form p.accept {
    border: none;
    font-size: 15px;
    justify-content: center;
}

#inscription-form p.submit {
    border: none;
    font-size: 12px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

#inscription-form p.submit img {
    max-width: 135px;
    position: absolute;
    right: 270px;
    height: auto;
    z-index: 1;
}

#inscription-form p.accept label {
    border: none;
    font-size: 15px;
    justify-content: center;
}

#inscription-form p.accept input {
    max-width: 40px;
    margin: 0;
    height: 20px;
}

.remerciement-pg .left-content {
    background: none;
    flex-basis: 22%;
    max-width: 22%;
}

.reglement-pg .right-content {
    background: none;
    flex-basis: 23%;
    max-width: 23%;
    position: relative;
}

.remerciement-pg .right-content {
    background: none;
    flex-basis: 22%;
    max-width: 22%;
    display: block;
}

.remerciement-pg .right-content img,
.reglement-pg .right-content img {
    bottom: 20px;
    position: absolute;
    right: 20px;
    max-width: 16%;
}

.reglement-pg .right-content img {
    /* max-width: 280px; */
    max-width: 80%;
    bottom: 20px;
    position: absolute;
    right: 20px;
}

.remerciement .main-content {
    flex: 1 1 auto;
    flex-basis: 56%;
    max-width: 56%;
    justify-content: flex-start;
    background: -moz-linear-gradient(-165deg, rgba(0, 114, 46, 1) 45%, rgba(57, 110, 68, .3) 100%);
    background: -webkit-linear-gradient(-165deg, rgba(0, 114, 46, 1) 45%, rgba(57, 110, 68, .3) 100%);
    background: linear-gradient(-165deg, rgba(0, 114, 46, 1) 45%, rgba(57, 110, 68, .3) 100%);

}
.remerciement .main-content .imgContent{
    background: url(../images/nkg_remerciement.png) no-repeat center -70px;
    background-size: cover;
    width: 60%;
    height: 70%;
    display: block;
    margin:0 auto;
    max-width: 600px;
}

.remerciement-pg .main-content h2 {
    font-weight: 700;
    text-transform: none;
    font-size: 50px;
    text-align: left;
    letter-spacing: 1.2px;
    padding: 0 30px 0 80px;
    line-height: 50px;
    margin-top: 14px;
    font-family: 'heineken_bold';
    margin-bottom: 0;
}

.remerciement-pg .main-content p {
    padding: 0 60px 0 100px;
    font-family: 'heineken_medium';
    font-weight: 400;
    font-size: 24px;
}

.remerciement-pg .main-content img {
    max-width: 400px;
    margin: 0 auto;
}

.remerciement-pg .main-content::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/btl_mini.png) no-repeat 0 0;
    height: 100%;
    width: 400px;
    left: -112px;
    top: -77px;
    background-size: 200px;    
}

.remerciement .title .h1 {
    text-transform: none !important;
}

.btback {
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-family: 'HelveticaNeue';
    font-weight: 300;
    padding: 30px 120px 30px 10px;
    position: relative;
}

.btback::after {
    content: "";
    width: 57px;
    height: 57px;
    display: block;
    background: url(../images/btn_back.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 50px;
    top: 8px;
}

#email-error {
    font-family: "Abel", sans-serif;
}
.hiddenDsktop{
    display: none;
}
.remerciement .title{
    padding-left: 25px;
    padding-right: 25px;
}
.hiddenMobile {
    display: block;
}

/* Responsive */
@media screen and (max-width:1700px) {
    .landing .block-right {
        background: url(../images/lots.png) no-repeat center 70%;
        background-size: 65%;
    }
    .remerciement .title h1,
    .reglement .title h1,
    .form .title h1 {
        font-size: 5vw;
    }
    .remerciement-pg .main-content h2{
        font-size: 3vw;
    }
    .remerciement-pg .main-content::before{
        content: "";
        height: 120%;
        width: 300px;
        left: -112px;
        top: -77px;
        background-size: 174px;
    }

}
@media screen and (max-width:1400px) {
    .form .title h1 {
        padding-bottom: 60px;
    }
    #inscription-form input[type="submit"]{
        padding: 30px 120px 30px 30px;
    }
    .landing .logo img {
        max-height: 200px;
    }
}
@media screen and (max-width:1300px){
    .block-right .titleR{
        /* font-size: 20px; */
        font-size: 1.4vw;
    }
    .block-right .title-kit{
        /* font-size: 28px; */
        font-size: 2.2vw;
    }
    .main-content a.button div{
        font-size: 3vw;
    }
    .landing .block-right {
        background: url(../images/lots.png) no-repeat center 430px;
        background-size: 70%;
    }
}
@media screen and (max-width:991px) {
    .block-right .titleR{
        /* font-size: 1.4vw; */
    }
    .block-right .title-kit{
        /* font-size: 2.2vw; */
    }
    body.landing{
        background: url(../images/bg_mobile.png) no-repeat top right;
        background-size: 200%;
    }
    .landing .main-content{
        flex-basis: calc(100% - 60px);
        max-width: calc(100% - 60px);
        margin: 0 auto;
    }
    .landing .main-content::before{
        display: none;
    }
    .landing .right-content,.landing .left-content{
        display: none;
    }
    .logo50e.logo{
        flex: 1;
        max-height: unset;
        margin-bottom: 0;
        min-height: unset;
        padding: 0 20px;
        /* margin-bottom: 30px; */
    }
    .landing .logo img{
        max-width: 400px;
        /* margin-top: 30px */
    }
    .main-content a.button img{
        order:2;
        max-height: 200px;
        width: auto;
        height: auto;
    }
    .landing .imgContent img{
        width: 100%;
        height: auto;
        max-height: 320px;
        margin: -80px auto 0 auto;
        object-fit: contain;
    }
    .landing .main-content .title-kit{
        font-size: 28px;
        font-family: 'heineken_medium';
        font-weight: 400;
        text-align: center;
        text-transform: uppercase;
        padding: 20px 0;
    }
    .landing .main-content .bottom{
        text-transform: uppercase;
        font-size: 14px;
        padding: 20px;
        font-weight: 300;
        font-family: 'heineken_regular';
    }
    .landing h2{
        padding: 0 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .main-content a.button div{
        order:0;
        font-size: 26px;

    }
    .remerciement .main-content, .reglement-pg .main-content{
        flex-basis: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    .remerciement-pg .main-content::before{
        background: none;
        display: none;
    }
    .remerciement-pg .left-content{
        display: none;
    }
    .remerciement-pg .container, .reglement-pg .container{
        width: calc(100% - 60px);
    }
    .remerciement-pg .right-content,
    .reglement-pg .right-content    {
        display: none;
    }
    .hiddenDsktop {
        display: block;
    }
    .hiddenMobile{
        display: none;
    }

    .remerciement .title h1 , .reglement .title h1{
        padding-top: 30px;
        margin-bottom: 0px;
        line-height: 30px;
        font-size: 28px;
        padding-bottom: 0;
    }
    .reglement .title h1{
        padding-bottom: 30px;   
    }
    .remerciement .title, .reglement .title{
        padding-left: 25px;
        padding-right: 25px;
    }
    h2.hiddenDsktop{
        display: block;
        text-align: center;
        font-weight: 300;
        font-family: 'heineken_regular';
        font-size: 20px;
    }
    .hiddenDsktop.miniLogo img{
        max-width: 240px;
        margin: 0 auto 30px auto;
        display: block;
    }
    .remerciement-pg .main-content h2{
        padding:0;   
    }
    .remerciement-pg .main-content p{
        padding: 0;
    }
    .remerciement .main-content .imgContent{
        background-position-y: -43px;
        width: calc(100% - 20px);
        background-size: contain;
        margin: 0 auto;
        min-height: 240px;
    }
    .remerciement .container-fluid{
        min-height: 100vh;
    }
    .reglement-pg p{
        font-size: 16px;
        font-weight: 300;
        font-family: 'heineken_regular';
        text-align: center;
    }
    /* Form Mobile */
    .form .title h1{
        padding-top: 30px;
        margin-bottom: 0px;
        line-height: 30px;
        font-size: 28px;
    }
    .form .title h1 span{
        display: block;
    }
    #inscription-form p{
        min-height: 37px;
        padding-left: 6px;
        padding-right: 6px;
    }
    .page-form .container{
        padding-right: 25px;
        padding-left: 25px;
    }
    #inscription-form p input[type="text"],
    #inscription-form p input[type="email"],
    #inscription-form p input[type="date"],
    #inscription-form p input[type="tel"],
    #inscription-form p input[type="file"]{
        height: 37px;
        font-size: 14px;
        padding-left: 4px;
    }
    #inscription-form p input[type="date"]{
        padding-right: 0;
    }
    #inscription-form p label{
        font-size: 18px;
        margin-right: 4px;
    }
    #inscription-form p.fileSubmit{
        flex-flow: row wrap;        
    }
    #inscription-form div.fileSubmit{
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #inscription-form p.fileSubmit label::before{
        font-size: 8px;
        line-height: 20px;
    }
    #inscription-form p.fileSubmit label::after{
        background-size: 20px;
        height: 38px;
        width: 38px;
    }
    #inscription-form p.fileSubmit label{
        height: 37px;
        padding-top: 0;
        padding-left: 6px;
        padding-right: 32px;
    }
    #inscription-form input[type="submit"]{
        font-size: 66px;
    }
    #inscription-form input[type="checkbox"]:not(:checked)+label, #inscription-form p.accept label{
        font-size: 13px;
    }
    #inscription-form p.submit img{
        right: calc(50% - 140px);
        max-width: 100px;
    }
    #email-error {
        font-size: 12px;
        line-height: 12px;
    }
    .btback{
        padding: 30px 80px 30px 10px;
    }
    .btback::after{
        right: 10px;
    }
    .fileSubmit .file-selected{
        font-size: 14px;
        line-height: 17px;
    }
}
@media screen and (max-width:768px){
    .landing .logo img{
        max-width: 80%;
        margin-top: 0;
        margin-bottom: 10px;
    }
}
@media screen and (max-width:500px) {
    body.landing {
        background: url(../images/bg_mobile.png) no-repeat top right;
        background-size: unset;
    }
}



/* Responsive index */


