@font-face {
    font-family: 'HeliosExtC';
    src: url('/fonts/HeliosExtC.eot');
    src: local('HeliosExtC'),
        url('/fonts/HeliosExtC.eot?#iefix') format('embedded-opentype'),
        url('/fonts/HeliosExtC.woff2') format('woff2'),
        url('/fonts/HeliosExtC.woff') format('woff'),
        url('/fonts/HeliosExtC.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bastionkontrastaltc';
    src: url('/fonts/Bastionkontrastaltc.otf');
    font-weight: normal;
    font-style: normal;
}

:root {
    --line-gradient: linear-gradient(177deg, rgba(233,101,18,1) 0%, rgba(228,54,44,1) 50%, rgba(189,24,38,1) 100%);
    --red-color: #e30613;
    --yellow-color: #f5e3c4;
    --orange-color: #f6a411;
    --black-color: #000000;
    --white-color: #ffffff;
    --grey-color: #e9ebea;
}

html {
    font-size: 16px;
}

body {
    font-family: 'HeliosExtC';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    color: var(--white-color);
    padding: 3% 0;
}

.container {
    width: 96%;
    max-width: 1400px;
}

.screen {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgb(233,101,18);
    background: linear-gradient(177deg, rgba(233,101,18,1) 0%, rgba(228,54,44,1) 50%, rgba(189,24,38,1) 100%);
    background-size: 100%;
    background-position: top center;
}

section.white {
    border-radius: 20px;
    color: var(--black-color);
    padding: 3rem;

    @media screen and (max-width: 800px) {
        padding: 10px;
    }
}

.justify {
    text-align: justify;
}

h1 {
    font-family: 'Bastionkontrastaltc';
    font-size: 3rem;
    color: var(--red-color);
    text-align: center;
    margin-top: 0;

    @media screen and (max-width: 800px) {
        font-size: 2.4rem;
    }
}

.button {
    display: inline-flex;
    font-size: 1rem;
    padding: 8px 24px;
    background-color: var(--grey-color);
    color: var(--black-color);
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid var(--red-color);
    transition: .5s;

    &:hover {
        border-color: var(--orange-color);
    }
}

.checkbox-container {
    border: 2px solid var(--grey-color);
    padding: 20px;
    border-radius: 10px;
    li {
        padding: 10px;
        border-bottom: 2px solid var(--grey-color);

        &:last-child {
            border: none;
        }
    }

    &:not(.browser-default) {
        padding-left: 20px;
    }
}

.image-cover-container {
    width: 100%;
    min-width: 300px;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: 2px solid var(--grey-color);
    border-radius: 12px;
    margin-top: 10px;

    .image-cover-container__blur {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(24px);
        border-radius: 12px;
        overflow: hidden;
    }

    .image-cover-container__contain {
        position: absolute;
        z-index: 10;
        left: 10%;
        top: 10%;
        width: 80%;
        height: 80%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        filter: sepia(1);
    }

    .pattern {
        position: absolute;
        z-index: 20;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(/img/pattern.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .georges_ribbon {
        position: absolute;
        z-index: 30;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(/img/georges_ribbon.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .logo80 {
        position: absolute;
        z-index: 40;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(/img/logo80.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-content-text {
        position: absolute;
        z-index: 40;
        left: 0;
        bottom: 0;
        width: 55%;
        height: 32%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-left: 20px;
        padding-bottom: 20px;
        color: var(--white-color);
        font-size: .8rem;
        font-size: clamp(0.8rem, 0.7vw, 1.1rem);
        text-transform: uppercase;
        font-weight: normal;
    }
}

input {
    background: transparent;
    color: var(--black-color);
    outline: none;
}

input[type="text"] {
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    padding-left: 20px;
    margin-top: 20px;
    border: solid var(--grey-color) 2px;
    font-size: 1.2rem;
    border-radius: 10px;
}

[type="checkbox"]:checked+span:not(.lever):before {
    border-right-color: var(--red-color);
    border-bottom-color: var(--red-color);
}

footer {
    font-size: .9rem;
    padding: 0 20px;
    margin-top: 20px;

    a {
        color: var(--white-color);
        opacity: .7;
        padding-bottom: 2px;
        border-bottom:  1px dashed transparent;
        transition: .5s;

        &:hover {
            border-color: var(--white-color);
        }
    }
}




.buttons-container {
    display:flex;
    gap: 10px;
    align-items: center;
}

.spinner-red, .spinner-red-only {
    border-color: var(--red-color);
}