/* Design (c) Cinéma Informel */

/** Poppins from Google Fonts */
/* poppins-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('poppins-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('poppins-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ---------------
 Main Site Style
 ----------------- */

/* Compatible Scroll Snapping --> */
html, body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    min-height: 100vh;
    background: white;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, b, strong {
    font-weight: 600;
}

button {
    text-transform: uppercase;
}

h1 {
    font-size: 2rem;
}
h2 {
    font-size: 3rem;
}

h1, h2, h3 {
    color: #30BF39;
}

header {
    height: 5rem;
    padding: 1.5rem 3rem;
    text-align: center;
    display: flex;
}

.logo {
    height: 100%;
    aspect-ratio: 1.84;
    float:left;
    display: inline-block;
}

header h1 {
    flex-grow: 1;
    flex-basis: 60%;
}
header .fill {
    flex-grow: 0;
    flex-basis: 20%;
}

.wrapper {
    display: block;
    background: #161b3f;
    color: white;
}
main {
    text-align: center;
    display: block;
    min-height: calc(100vh - 30rem);
    padding: 5rem 10rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.big {
    font-size: 1.5rem;
    margin: 1rem 0;
}
.fluff {
    margin: 3rem 0;
}

.arrow-sep {
    width: 100%;
    height: 5rem;
}

footer {
    min-height: 3rem;
    padding: 3rem 1rem 1rem;
    text-align: center;
    display: block;
}

a, a:active, a:visited, a:link, a:hover {
    text-decoration: underline;
    border: none;
    color: #30BF39;
}

footer * {
    color: black !important;
}

.orange {
    color: #F7A000;
}

main > p {
    padding-bottom: 0.8rem;
}

@media screen and (max-width: 1400px) {
    html {
        font-size: 14px;
    }
}

@media all and (max-width: 940px) {
    html {
        font-size: 12px;
    }
    main {
        padding: 5rem 8rem 2.5rem;
        min-height: calc(100vh - 32rem);
    }
}

@media all and (max-width: 630px) {
    html {
        font-size: 10px;
    }
    main {
        padding: 4rem 2rem 2rem;
    }
}

nav {
    display: block;
}

label {
    display: block;
    margin-top: 0.75rem;
}

input, button, select, textarea {
    box-sizing: border-box;
    line-height: 1.3;
    margin: 0.75rem 0;
    border-radius: 0;
    display: block;
    font-size: 1rem;
    -webkit-appearance: none;
    width: 100%;
    border: solid 2px white;
    color: white;
    background: #161b3f;
    padding: 0.5rem 1.25rem;
}

button {
    font-size: 1.25rem;
    font-weight: 700;
}

form {
    margin: 0 0 1rem;
    display: inline-block;
}

.w-33 {
    max-width: 20rem;
}
.limit-input-size .w-33 {
    margin-left: auto;
    margin-right: auto;
}

.danger {
    color: #d72d21;
    font-weight: bold;
}
.success {
    color: #30BF39;
    font-weight: bold;
}

.secret {
    background-color: white;
    color: white;
    font-family: 'Courier New', 'Consolas', monospace;
    padding: 3px 16px;
    font-weight: bold;
}
.secret:hover {
    background-color: #666666;
}

/* RWD */
@keyframes progress_marquee {
    0% { background-position-x: 3rem; }
    100% { background-position-x: 0; }
}

.progress_marquee {
    display: block;
    width: 100%;
    height: 1.5rem;
    border: 2px solid white;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #161b3f 0%, #161b3f 30%, #30BF39 30%, #30BF39 65%, #161b3f 65%, #161b3f 100%) repeat-x;
    background-size: 3rem;
    animation: progress_marquee linear 1750ms infinite;
}

.progress_bar {
    display: block;
    line-height: 1.5rem;
    overflow: hidden;
    text-align: center;
    color: #161b3f;
    padding: 0;
    margin: 0;
    background: white;
    font-size: 0.75rem;
    font-weight: bold;
    height: 1.5rem;
}

.email-template, .email-template *, .email-template a:visited, .email-template a:active, .email-template a:link, .email-template a:hover {
    color: black !important;
    background: white !important;
}
.email-template {
    padding: 1rem;
    /* max-width: 600px; */
    margin: 0 auto 2rem;
}

ul {
    text-align: left;
    display: inline-block;
    min-width: 20rem;
}

button {
    transition-property: background-color, color;
    transition: 0.1s ease-out;
}

button:active {
    background: #eee;
    color: #161b3f;
}
