:root{
    --back-color: #3D3D3D;
    --font-color: #D6D6D6;

    --primary-color: #DBC874; /*#43f5b0 #00ED60 4ee03b 306B34*/
    --secondary-color: #6B99B2; /*#0000F7 2121c4*/

    /*32936F    FFE882*/
}

@font-face {
    font-family: yourfont;
    src: url("font/Uni Sans Heavy Italic.otf");
}

select{
    display: block;
}

[type="checkbox"]:not(:checked), [type="checkbox"]:checked, [type="radio"]:not(:checked), [type="radio"]:checked{
    opacity: 1;
    position: relative;
    pointer-events: all;
}

body{
/*
    background-image: url("img/Abrait_background.png");
    background-size: 100vw;
    */
    background-color: var(--back-color);
    background-repeat: repeat;
}

.dot{
    z-index: -1;
    position: absolute;
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.cross, .cross>div{
    z-index: -1;
    position: absolute;
    background-color: var(--secondary-color);
    border-radius: 12px;
    width: 80px;
    height: 20px;
}

.cross>div{
    transform: rotate(90deg);
}

h1, h2, h3, h4, h5, h6{
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6, p, a{
    text-align: center;
    letter-spacing: -1px;
    z-index: 1;
    font-family: yourfont, sans-serif;
    color: var(--font-color);
}

p, i, a{
    font-size: 30px;
}

img, .parallax-container, .offre{
    position: relative;
    display: block !important;
    z-index: 1;
}

header{
    height: 100vh;
}

header>div{
    top: 20%;
    position: relative;
}


#content>*{
    margin: 100px 0;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 601px){
    #content>*{
        display: block;
    }
  }

.primary{
    background-color: var(--primary-color);
}

.secondary{
    background-color: var(--secondary-color);
}

#content>div>*{
    animation-duration: 1s;
    animation-iteration-count: 1;
}

.slide-animation>*:nth-child(odd){
    animation-name: slideLR;
}

.slide-animation>*:nth-child(even){
    animation-name: slideRL;
}

.box{
    border-radius: 15px;
    height: 160px;
}

.box>p{
    margin: 0;
    transition-delay: 1s;
    transition-duration: 1s;
}

.rotate-animation[LR] .box>p{
    transform: rotate(-4deg);
}

.rotate-animation[RL] .box>p{
    transform: rotate(4deg);
}

.rotate-animation[LR]{
    animation: rotateLR 1s;
    animation-iteration-count: 1;
    transform: rotate(4deg);
}

.rotate-animation[RL]{
    animation: rotateRL 1s;
    animation-iteration-count: 1;
    transform: rotate(-4deg);
}

.skouich-animation[LR]{
    animation: skouichLR 1s;
    animation-iteration-count: 1;
}

.skouich-animation[RL]{
    animation: skouichRL 1s;
    animation-iteration-count: 1;
}

@keyframes slideRL {
    0% {
        opacity: 0;
        transform: translateX(50vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLR {
    0% {
        opacity: 0;
        transform: translateX(-50vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateRL {
    0% {
        transform: rotate(40deg);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-40deg);
    }
    100% {
        transform: rotate(-4deg);
    }
}

@keyframes rotateLR {
    0% {
        transform: rotate(-40deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(40deg);
    }
    100% {
        transform: rotate(4deg);
    }
}

@keyframes skouichRL {
    0% {
        transform: scaleX(1);
    }
    50%{
        transform: scaleX(0.5) translateY(20px);
    }
    80%{
        transform: scaleX(0.5) translateY(20px);
    }
    100% {
        transform: scaleX(1) translateY(0);
    }
}

@keyframes skouichLR {
    0% {
        transform: scaleX(1);
    }
    50%{
        transform: scaleX(0.5) translateY(20px);
    }
    80%{
        transform: scaleX(0.5) translateY(20px);
    }
    100% {
        transform: scaleX(1) translateY(0);
    }
}

.modal-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parallax-container{
    margin: 0 !important;
}

.parallax-text{
    margin: 0 !important;
    padding: 100px 0;
}



.video>div>div{
    width: 100%;
}

iframe {
    width: 100% !important;
}

video{
    height: auto;
    width: 100%;
}

.offre .box{
    display: block;
    height: max-content;
    padding: 20px 0;

    transition-duration: 200ms;
}

.offre .box:hover{
    transform: scale(1.1) rotate3d(0, 1, 0, 30deg);
    box-shadow: 15px 0 0 0 var(--secondary-color);
}

.fa-check{
    color: #51ff74;
}

.fa-xmark{
    color: #ff6051;
}




.video>div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video{
    margin-top: 0 !important;
    background-color: #BF4342;
    flex-direction: column;
}

blockquote{
    border: none;
    padding-left: 0;
}

.video-category{
    width: 75%;
    font-size: 30px;
    margin: 50px 0;

    background-color: var(--secondary-color);
    padding: 10px 20px;


    letter-spacing: .1em;
    text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 12px 0 #181818, 0 13px 0 #161616, 0 14px 0 #141414, 0 15px 0 #121212, 0 22px 30px rgba(0,0,0,0.9);

}

.video-box{
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.video-box>div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.video-box>div p{
    font-size: 20px;
    width: 150px;
    border-radius: 50px;
    background-color: var(--secondary-color);
}








.clap{
    position: absolute;
}

.clap>*:nth-child(1){
    background-color: black;
    width: 100px;
    height: 20px;
    border-radius: 25% 25% 0 0;
    transform: translate(-4px, -6px) rotate(-30deg);
    display: flex;
    justify-content: space-around;
}

.clap-animation{
    animation-name: clap-rot;
    animation-duration: 1s;
}

.shake-clap-animation{
    animation-name: shake-clap;
    animation-duration: 1s;
}

.clap>*:nth-child(2){
    position: relative;
    z-index: 5;
    background-color: black;
    width: 100px;
    height: 20px;
    display: flex;
    justify-content: space-around;
}

.clap>*:nth-child(3){
    position: relative;
    z-index: 5;
    background-color: black;
    width: 100px;
    height: 80px;
    border-radius: 0 0 25% 25%;
}

.clap>*:nth-child(1)>*{
    z-index: 2;
    background-color: white;
    width: 10px;
    height: 100%;
}

.clap>*:nth-child(2)>*{
    z-index: 10;
    background-color: white;
    width: 10px;
    height: 100%;
}

.clap>*:nth-child(3)>*{
    border-bottom: 2px solid white;
    height: 25%;
}

.clap>*:nth-child(3)>*:nth-child(3)>*{
    width: 50%;
    height: 100%;
    border-right: 2px solid white;
    border-bottom: none;
}



@keyframes clap-rot {
    0%{
        transform: translate(-4px, -6px) rotate(-30deg);
    }

    50%{
        transform: translate(0px, 0px) rotate(0deg);
    }

    100%{
        transform: translate(-4px, -6px) rotate(-30deg);
    }
}

@keyframes shake-clap {
    0%{
        transform: translate(0px, 0px) rotate(-25deg);
    }

    50%{
        transform: translate(0px, 15px) rotate(15deg);
    }

    100%{
        transform: translate(0px, 0px) rotate(-25deg);
    }
}


.rzo, footer{
    display: flex;
    justify-content: space-around;
}

.rzo a, footer a{
    width: 10%;
    color: var(--font-color);
}

.rzo a{
    transition-duration: 500ms;background-image: linear-gradient(var(--primary-color), var(--primary-color));
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
}

.rzo a:hover{
    transform: scale(1.5) rotate(359deg);
    color: var(--secondary-color);
    background-size: 100% 88%;
}

.rzo-box{
    display: block !important;
    margin: 100px 0 0 0 !important;
}

.rzo-box>*{
    padding: 50px 0;
    margin: 0;
}




/* ADMIN PAGE */

.video-display{
    display: flex;
    flex-wrap: wrap;
}

.video-display>div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-display>div>a{
    display: block;
    width: 50%;
    text-align: center;
    padding: 20px 0;
}