/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@200;300;400;600&display=swap');

@font-face {
    font-family: "Lobster";
    src: url(../font/Lobster\ 1.4.otf);
}
body{
    font-family: 'Roboto Condensed', sans-serif;
}
.lobster-font{
    font-family: "Lobster";
}


/* OUTIL */
iframe{
    padding: 0 !important;
    max-height: 350px;
    width: 100%;
}
.pointer-none{
    pointer-events: none;
}
.pointer-all{
    pointer-events: all;
}
.white-space-nowrap{
    white-space: nowrap;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
.ratio-5x4{
    --bs-aspect-ratio: 110%;
}
.fs-12{
    font-size: 12px;
}
.text-justify{
    text-align: justify;
}
.grid_container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: .5em;
    width: 100%;
}
textarea{
   resize: none;
}
textarea::-webkit-scrollbar{
    display: none;
 }
/* NAV */
#navbar{
    box-shadow: inset #DE904E 0px 0px 0px 0px;
    transition: box-shadow .4s ease-out;
}
#navbar.scroll{
    box-shadow: inset #DE904E 0px 70px 0px 0px
}
.nav_btn{
    transition: transform .4s ease-out;
}
.nav_btn.show{
    transform: scaleX(2) translateX(5px);
}
.nav_content{
    width: 0;
    transition: width .3s ease-in-out;
}
.nav_content.show{
    width: 250px !important;
}
.nav_content.bg-nav{
    box-shadow: rgba(0, 0, 0, .5) -13px 1px 20px 0px inset;
}
.nav_link.active{
    background: rgba(255, 255, 255, 0.104);
    pointer-events: none;
}
/* LOADING CONTAINER */
.loading-screen {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    width: 0%;
    height: 100%;
}
.load-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
}
/* CHARTE GRAPHIQUE */
.bg-body{
    background: #08090A !important;
}
.bg-orange-charte{
    background: #DE904E;
}
.bg-orange-charte{
    background: #DE904E;
}
.bg-blue-charte{
    background: #3D869B;
}
.bg-footer{
    background: #1D1D1B;
}
.bg-loader{
    background: #201F1E;
}
.bg-nav{
    background: #121211;
}
.text-orange-charte{
    color: #DE904E !important;
}
.text-blue-charte{
    color: #3D869B;
}
.custom-gradient{
    background: linear-gradient( #08090a17, #08090A);
}
/* BACKGROUND IMAGE */
.header_bg{
    background: url(../img/background.png); 
    background-size:cover
}
.categ_bg{
    background-size: cover !important;
    background-position: center !important;
}
.event_bg{
    background-size: cover !important;
    background-position: center !important;
}
.event_gradient{
    background: linear-gradient(126deg, black, transparent);
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);;
}
.backdrop-blur{
    backdrop-filter: blur(70px);
    -webkit-backdrop-filter: blur(70px);;
}
.bg-dark input::placeholder{
    color: #6c757d !important;
}
.bg-dark textarea::placeholder{
    color: #6c757d !important;
}
.custom-gradient input::placeholder{
    color: #6c757d !important;
}
select{
    transition: all .3s ease-out !important;
}
select:focus{
    color: white !important;
}
select option{
    background: black;
}
select option:checked{
    background: #3D869B !important;
    color: white !important;
}
.ratio-custom{
    --bs-aspect-ratio: 20%;
}
.ratio-custom-2{
    --bs-aspect-ratio: 15%;
}
#countdown, #expired{
    font-size: 50px;
}
.ratio-header{
    --bs-aspect-ratio: 25%;
}
.list_link{
    transition: color .4s ease-out;
}
.list_link.active{
    color: white !important;
    pointer-events: none;
}
.all_categ .bg-orange-charte{
    height: 300px;
}
.all_event .bg-blue-charte{
    height: 300px;
}
.event_image{
    height: 60%;
}
.event_desc{
    height: 40%;
}
.bg-apropos{
    background-size:cover !important; 
    background-position: center !important;
}
label .upload-icon{
    transition: opacity .4s ease-out;
    cursor: pointer;
    opacity: 0 !important;
}
label .upload-icon:hover{
    opacity: 1 !important;
}
@media(max-width: 1199px) {
    .ratio-header{
        --bs-aspect-ratio: 50%;
    }
}
@media(max-width: 991px) {
    .all_categ .bg-orange-charte{
        height: auto;
    }
    .all_event .bg-blue-charte{
        height: auto;
    }
    .flex-computer{
        flex-wrap: wrap !important;
        height: auto !important;
        gap: 0 !important;
    }
    .event_image{
        height: auto;
    }
    .event_desc{
        height: auto;
    }
}
@media(max-width: 767px) {
    iframe{
        max-height: 400px;
    }
    .ratio-header{
        --bs-aspect-ratio: 100%;
    }
    .ratio-custom{
        --bs-aspect-ratio: 100%;
    }
    #countdown{
        font-size: 40px !important;
    }
    #expired{
        font-size: 30px !important;
    }
    .bg-apropos{
        background: none; 
    }
}