@font-face {
    font-family: GreyCliff;
    font-weight: 800;
    src: url(../fonts/Greycliff-CF-Heavy.otf);
}

@font-face {
    font-family: GreyCliff;
    font-weight: 300;
    src: url(../fonts/Greycliff-CF-Light.otf);
}

@font-face {
    font-family: GreyCliff;
    font-weight: 500;
    src: url(../fonts/Greycliff-CF-Medium.otf);
}

@font-face {
    font-family: GreyCliff;
    font-weight: 400;
    src: url(../fonts/Greycliff-CF-Regular.otf);
}

@font-face {
    font-family: GreyCliff;
    font-weight: 600;
    src: url(../fonts/Greycliff-CF-Bold.otf);
}
html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Amulya, GreyCliff, sans-serif;
    font-weight: 400;
    background-size: cover;
    position: relative;
}
body.page-jogue-marque-ganhe{
    background-image: url(../img/v2/intro-page-background.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #071306;
    background-position: center center;
    color: #213456;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;

}
@keyframes pulse {
    50% {
        opacity: .5
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite
}

.alert {
    --bs-alert-padding-y: .5rem;
}

.split-container {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Each split section */
.split-section {
    display: flex;
    align-items: end;
    justify-content: center;
    color: white;
    position: relative;

}

/* Background colors for each section */
.top-section {
    flex: 6;
    background-image: url(../img/v2/ff-t.webp);
    background-repeat: no-repeat ;
    background-position: center bottom;
    background-size: cover;
}

.bottom-section {
    flex: 3;
    background-image: url(../img/v2/ff-b.webp);
    background-repeat: no-repeat ;
    background-position: center top;
    background-size: cover;
}

p.legal-text {
    margin: 2rem;
    max-width: 28rem;
    line-height: 1.2;
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.4)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.8));
    position: absolute;
    left: 0;
}


.amc-logo {
    max-width: 10rem;
    margin:0 auto;
}
@media (min-width: 1280px) {
    .top-section {
        background-image: url(../img/v2/ff-t.webp);
    }
    .bottom-section {
        background-image: url(../img/v2/ff-b.webp);
    }
}

.se-pre-con {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
    display: grid;
    place-items: center;
}
.se-pre-con .logo-icon{
    width: 4rem;
    height: 4rem;
    background: url(../../favicon.svg) center no-repeat #fff;
    background-size: 4rem;
}


.transition-fade {
    transition: 0.4s;
    /*transform: translateX(0);*/
    opacity: 1;
}

.bg-black  .transition-fade {
    transition: 1s;
    /*transform: translateX(0);*/
    opacity: 1;

}


html.is-animating .transition-fade {
    opacity: 0;
    /*transform: translateY(-50px);*/

}

html.is-animating .bg-black .transition-fade {
    opacity: 0;
    /* animation: 3.5s cubic-bezier(.25, 1, .30, 1) circle-in-center both;*/
    animation: 3.5s cubic-bezier(.25, 1, .30, 1) circle-in-hesitate both;

}

.custom-container {
    max-width: 1536px;
    max-width: 1920px;
    margin-bottom: 2rem;
}

.landing-page {
    display: grid;
    place-items: center;
    /*padding-top: 8rem;*/
}

.event-badge {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 150px;
}

.event-logo {
    width: 95%;
    position: relative;
    top: 6dvh;
}
.event-logo-play{
    width: 90%;
}

.event-steps-list {
    display: flex;
    gap: 0.75rem;
}

.event-step {
    width: 100%;
    max-width: 765px;
    max-height: 89px;
}


.event-arrow{
    display: none;
}

.event-guide{
    width: 100%;
    position: absolute;
    z-index: 1;
    max-width: 16rem;
    left: 50%;
    transform: translateX(-50%);
}

/* form-container */

.form-container {
    max-width: 440px;
    background: rgba(255, 255, 255, 1);
    padding: 2rem 1rem .25rem 1rem;
    margin: 0 auto;
    border-radius: .5rem;
}


.form-title {
    font-family: GreyCliff, sans-serif;
    font-size: clamp(1.2rem + 0.81vw, 0.31vw + 0.938rem, 1.8rem);
    font-weight: 600;
}

.form-subtitle {
    width: 100%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2;
}

.form-legal {
    font-size: 0.875rem;
}

.btn-submit {
    --bs-btn-color: #fff;
    --bs-btn-bg: #213456;
    --bs-btn-border-color: #213456;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #2a4b7e;
    --bs-btn-hover-border-color: #2a4b7e;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #2a4b7e;
    --bs-btn-active-border-color: #2a4b7e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #213456;
    --bs-btn-disabled-border-color: #213456;
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 1rem;
    font-weight: 600;
}
.form-control {
    --bs-border-color: #cbcbcb;
}
.form-control:focus {
    border-color: #213456;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(33, 52, 86, .25);
}


span.is-invalid {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
    color: #dc2626;
}

.form-check label, .legal_text_label {
    font-size: .8rem;
    line-height: 16px;
    color: #213456;
}

.form-check-inline {
    margin-right: 0.9rem;
}

.form-check-input.rgpd_acc {
    margin-top: 0
}

.form-legal {
    font-size:  .9rem;
    line-height: 16px;
}

.fs-legal {
    font-size: 13px;
}

.fs-legal-radio {
    font-style: normal;
    font-size: 15px;
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #213456;
}

.legal_text {
    font-size: .8rem;
}
.form-check-input{
    --bs-border-color: #cbcbcb;
}
.form-check-input:checked {
    background-color: #213456;
    border-color: #213456;
}
.form-check-input:focus {
    border-color: rgba(33, 52, 86, .25);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(33, 52, 86, .25);
}


@media (min-width: 576px) {

    .event-badge {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        max-width: 200px;
    }

    .event-steps-list {
        display: flex;
        align-items: center;
        gap: 35px;
        max-width: 760px;
    }
    .landing-page {
        min-height: 100%;
        /* padding-top: 4rem; */
        height: 100%;
        overflow: hidden;
    }
    .event-arrow{
        position: absolute;
        width: 100%;
        max-width:580px;
        top: 1rem;
        right: 0;
    }

    .form-title {
        font-size: 1.6rem;
        font-weight: 600;
    }

    .form-subtitle {
        width: 100%;
    }
    .form-container {
        padding: 2rem 1.5rem .25rem 1.5rem;
    }
}


@media (min-width: 768px) {
    .form-container {
        max-width: 75%;
    }
    .amc-logo {
        max-width: 12rem;
    }
}


@media (min-width: 992px) {
    .kick-container{
        width: 26rem;
        height: 20rem;
    }
}


@media (min-width: 1200px) {
    body.page-jogue-marque-ganhe{
        /* background-position-y:0rem; */
    }
    .custom-container {
        max-width: 1140px;
    }
    .form-container{
        max-width: 440px;
        margin: unset;
        position: relative;
        z-index: 1;
    }

    .event-logo {
        width: 100%;
        position: relative;
        top: 8rem;
    }
}

@media (min-width: 1400px) {
    .custom-container {
        max-width: 1320px;
        margin-bottom: 0;
    }
    .event-car-range {

    }
}
@media (min-width: 1536px) {
    .custom-container {
        max-width: 1440px;
    }
}
@media (min-width: 1200px) and (max-width: 1700px) {
    body.page-jogue-marque-ganhe{
        /*background-position-x:-29rem;*/
    }
    .event-car-range {
        position: relative;
        bottom: -12dvh;
        left: 0;
    }

    .event-logo {
        max-width: 40rem;
        position: relative;
        left: 6rem;
        top: 12dvh
    }
}
@media (min-width: 1700px) {
    .event-car-range {
        /* margin-top: 10rem; */
        position: relative;
        /* inset: 0; */
        bottom: -12dvh;
        left: 0;
    }

    .event-logo {
        max-width: 40rem;
        position: relative;
        left: 6rem;
        top: 12dvh
    }
}

@media (min-width: 1921px) {
    .event-car-range {
        position: relative;
        bottom: -15rem;
        left: 0;
    }
}

@media (min-width: 320px) and (max-width: 600px) {
    body.page-jogue-marque-ganhe {
        min-height: 100dvh;
        height: auto;
    }
}

@media (min-width: 1536px) and (max-width: 1700px) {
    .landing-page {
        zoom: 0.95;
    }
    .event-logo {
        max-width: 33rem;
        position: relative;
        left: 8rem;
        top: 12dvh;
    }
}