<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {

    --color-1: #0055b8; /*Blue*/
    --color-2: #424242; /*Grey*/
    --color-3: #003ADC; /* Bleu */
    --color-4: #00FF00;
    --color-facebook: #3872dd;
    --color-twitter: #4a99e7;
    --color-instagram: #F56040;
    --color-youtube: #ea3423;
    --color-tiktok: #00f2ea;

}

body {
    /*font-family: 'Roboto', sans-serif;*/
    /*font-family: 'Open sans', sans-serif;*/
    /*font-family: 'Roboto Mono', monospace;*/
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: var(--color-1);
    color: rgba(0, 0, 0, .65);
    margin: 0;
    padding: 0;
    font-size: 14px;
}

h1 {
    font-size: 1.6em;
    font-weight: 900;
    margin-bottom: .5rem;
}

h2 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: .5rem;
}

h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: .25rem;
}

h4 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--color-2);
}

a:hover, a:visited {
    text-decoration: none;
    color: var(--color-2);
}

.top {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    background-color: var(--color-1);
    gap: 30px;
    padding: 30px

}

.top a {
    color: white;
    text-transform: uppercase;
    font-size: 1.5rem;

}

.top a:hover {
    color: var(--color-2);
}

#menu {
    padding: 30px 0px;
    background-color: black;
    color: white;
    font-size: 1.5rem;
    display: none;

}

#menu div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    height: 100vh;
}


#menu div a {
    color: #FFF;
}

#menu div a:hover {
    color: var(--color-1);
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 100vw;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/img/clubdeskimgf/header.jpg?v={{Config::get('release.version')}}");

}

.header-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;

    gap: 30px;
    padding: 30px
}


.header-top a {
    color: white;
    text-transform: uppercase;
    font-size: 1.5rem;

}

.center {
    text-align: center;
}

.header-top a:hover {
    color: var(--color-1);
}


.header img {
    margin: 40px 0px 0px 40px;
    width: min(200px, 20%);
}

div.title {

}

div.title div {
    margin: auto;
    color: white;
}

.camera {
    height: 40vh;
}

.btn-club-light {
    display: inline-block;
    background: linear-gradient(to bottom, #f9f9f9, #eaeaea);
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    margin: 10px 0;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-club-light:hover {
    background: linear-gradient(to bottom, #ffffff, #c7c7c7);
}

.btn-club {
    display: inline-block;
    background: linear-gradient(to bottom, #1a6dd9, #0055b8);
    border: 1px solid #004a9f;
    border-radius: 6px;
    margin: 10px 0;
    padding: 10px 20px;
    font-size: 16px;
    color: #FFF;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-club:hover {
    background: linear-gradient(to bottom, #267ee5, #0066cc);
}

.section {
    background-color: var(--color-1);
    display: grid;
    grid-template-columns: minmax(200px, 50vw) auto;


}

.section &gt; .container {
    display: grid;
    grid-template-columns: auto minmax(90%, 400px) auto;
    color: rgba(255, 255, 255, .9);
}

.section &gt; .container &gt; .body {
    margin: 50px 0;
    min-height: min(50vh, 50vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section .title {
    color: white;
    font-size: min(3vw, 30px);
    margin: 10px 0;
    font-weight: 600;
}

.section .hero {

    font-size: min(3vw, 30px);
    margin: 10px 0;

}

.section &gt; div.image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;

}

.grid4 {
    display: grid;
    padding-top: 30px;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, 200px);
    grid-template-rows: 1fr 1fr;
    /*height: min(100vh, 50vh);*/
    align-items: center;
    justify-content: center;
}

.grid4 {
    font-size: min(4vw, 25px);
}

.grid4 &gt; div {
    text-align: center;
    align-self: start;
}

.fade-move-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-move-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-move-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-move-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.hidden {
    visibility: hidden;
}

.timeline {
    overflow-x: auto;
    padding: 20px;
}

.timeline .title {
    font-weight: bold;
    padding: 30px 0px 0px 30px;
    font-size: min(3vw, 30px);
}

.timeline-grid {
    padding: 30px;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}

.histoire {
    flex: 0 0 496px;
    min-height: 200px;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap:10px;
}

.histoire .date {
    font-size: min(3vw, 30px);
    color: var(--color-1);
    border-bottom: 1px solid black;
}

.histoire &gt; .title {
    font-size: min(3vw, 20px);
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: var(--color-2);
}

.histoire &gt; .description {
    font-size: min(3vw, 20px);
    margin: 0;
    padding: 0;
    color: var(--color-1);
}

.pastille-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.pastille {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: white;
    color: black;
    border-radius: 30px;
    width: 60px;
    height: 60px;
}

.pastille * {
    color: var(--color-1);
    font-weight: bold;
}

.jobs {
    display: grid;
    grid-template-columns: repeat(auto-fit, 400px);
    gap: 50px;
    background-color: black;
    color: white;
    padding: 50px;
    justify-content: space-evenly;
}

.job {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid white;
}

.job .title {
    font-weight: bold;
}

.job &gt; .location {
    color: rgba(255, 255, 255, .6);
}

.map {
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/img/competitionlareserve/map.png');
    height: 50vh;
}

.header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-1);
    border-bottom: var(--color-2) solid 4px;
    padding: 0px 20px;
}

.header-mobile .logo {
    display: block;
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30Vmax;
    height: 10Vmax;
    margin: 10px 20px;

}


.sponsors {
    background-color: white;
    padding: 20px 0px;
}

.sponsorsbar {
    background-color: white;
    padding: 10px 0px;
}

.box-shadow {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

.poster {
    display: block;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: white;
}

.page {
    padding: 50px 0px;
    min-height: 90vh;
    background-color: white;
}


.pagination &gt; li &gt; a,
.pagination &gt; li &gt; span {
    color: rgb(110 117 124) !important;
    border-color: rgb(110 117 124) !important;
}

.pagination &gt; .active &gt; a,
.pagination &gt; .active &gt; a:focus,
.pagination &gt; .active &gt; a:hover,
.pagination &gt; .active &gt; span,
.pagination &gt; .active &gt; span:focus,
.pagination &gt; .active &gt; span:hover {
    background-color: rgb(110 117 124) !important;
    border-color: grey !important;
    color: white !important;
}

.btn-xs, .btn-group-xs &gt; .btn {
    padding: 0.10rem 0.25rem;
    font-size: 0.65rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-xs + .dropdown-toggle-split, .btn-group-xs &gt; .btn + .dropdown-toggle-split {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}

.btn-xs {
    padding: 0px 5px;
}


.socialmedia_btn {
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socialmedia_btn:hover {
    background-color: white !important;
}

#facebook {
    background-color: var(--color-facebook);
    border: 1px solid var(--color-facebook);
}

#twitter {
    background-color: var(--color-twitter);
    border: 1px solid var(--color-twitter);
}

#instagram {
    background-color: var(--color-instagram);
    border: 1px solid var(--color-instagram);

}

#tiktok {
    background-color: var(--color-tiktok);
    border: 1px solid var(--color-tiktok);

}

#youtube {
    background-color: var(--color-youtube);
    border: 1px solid var(--color-youtube);

}


.footer-menu {
    background-color: var(--color-1);
    padding: min(30px, 2%);
    color: white;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    border-color: black;
}

.footer-menu a:hover {
    color: var(--color-2);
    text-decoration: none;
    border-color: black;
}

.btn-footer-menu {
    color: black !important;
    background-color: white !important;
}

.btn-footer-menu:hover {
    background-color: var(--color-1) !important;
    color: white !important;
    border-color: white !important;

}


footer {
    background-color: var(--color-1);
}

footer, footer a {
    color: white !important;
}

footer a:hover {
    color: var(--color-2) !important;
}

.footer-logo &gt; svg {
    fill: white !important;
}

.footer-logo svg:hover {
    fill: var(--color-2) !important;
}


folder {
    display: inline-block;
    padding-left: 20px;
}
</pre></body></html>