@font-face {
    font-family: 'Poppins Black';
    src: url('../fonts/Poppins-Black.ttf');
}

@font-face {
    font-family: 'Poppins Black Italic';
    src: url('../fonts/Poppins-BlackItalic.ttf');
}

@font-face {
    font-family: 'Poppins Bold';
    src: url('../fonts/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'Poppins Bold Italic';
    src: url('../fonts/Poppins-BoldItalic.ttf');
}

@font-face {
    font-family: 'Poppins ExtraBold';
    src: url('../fonts/Poppins-ExtraBold.ttf');
}

@font-face {
    font-family: 'Poppins ExtraBold Italic';
    src: url('../fonts/Poppins-ExtraBoldItalic.ttf');
}

@font-face {
    font-family: 'Poppins ExtraLight';
    src: url('../fonts/Poppins-ExtraLight.ttf');
}

@font-face {
    font-family: 'Poppins Italic';
    src: url('../fonts/Poppins-Italic.ttf');
}

@font-face {
    font-family: 'Poppins Light';
    src: url('../fonts/Poppins-Light.ttf');
}

@font-face {
    font-family: 'Poppins Light Italic';
    src: url('../fonts/Poppins-LightItalic.ttf');
}

@font-face {
    font-family: 'Poppins Medium';
    src: url('../fonts/Poppins-Medium.ttf');
}

@font-face {
    font-family: 'Poppins Medium Italic';
    src: url('../fonts/Poppins-MediumItalic.ttf');
}

@font-face {
    font-family: 'Poppins Regular';
    src: url('../fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Poppins Semibold';
    src: url('../fonts/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: 'Poppins Semibold Italic';
    src: url('../fonts/Poppins-SemiBoldItalic.ttf');
}

@font-face {
    font-family: 'Poppins Thin';
    src: url('../fonts/Poppins-Thin.ttf');
}

@font-face {
    font-family: 'Poppins Thin Italic';
    src: url('../fonts/Poppins-ThinItalic.ttf');
}

:root {
    --orange: #FF7F00;
    --black: #1D1D1D;
    --white: #FFFFFF;
    --grey: #7c7c7c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins Regular;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background-color: var(--orange);
    border-radius: 5px;
}

body {
    max-width: 100vw;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

button{
    cursor: pointer;
}

.disable{
    display: none !important;
}

/*------- 404 et banned et no acces  --------*/

.btn-back-home{
    background-color: var(--white);
    color: var(--black);
}

.btn-contact{
    background-color: var(--orange);
    color: var(--white);
}

.btn-contact, .btn-back-home{
    border: 2px solid var(--orange);
    border-radius: 10px;
    height: 50px;
    padding: 25px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 16px;
    font-family: Poppins Medium;
    transition: .3s all;
    margin: auto 3vw;
    text-decoration: none;
}

.block-btn-banned, .block-btn-access{
    margin: 5vh auto;
    display: flex;
    flex-direction: row;
}

.btn-back-home:hover {
    background: var(--orange);
    color: var(--white) !important;
}

.section404, .sectionBanned, .sectionAccess{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    min-height: 93vh;
}

.section404 h1, .sectionBanned h1, .sectionAccess h1{
    font-size: 1.5rem;
    font-family: Poppins Medium;
    color: var(--black);
}

.img-404{
    width: 20vw;
    margin: auto;
}

.img-banned{
    width: 10vw;
    margin: 0 auto 5vh auto;
}

.img-access{
    width: 10vw;
    margin: 0 auto 5vh auto;
}

.wrapper404 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.btn404 {
    margin-top: 35px;
}

/*------- --------*/

.nav-website {
    height: 10vh;
    width: 100%;
    position: fixed;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    transition: 0.3s all;
}

.nav-website.nav-shadow {
    box-shadow: 1px 12px 9px -3px rgb(161 161 161 / 10%);
    transition: 0.3s all;
}

.logo {
    color: var(--orange);
    font-size: 35px;
    padding: 0 160px 0 100px;
    font-family: Poppins Bold;
    text-decoration: none;
}

.nav-website ul.bloc {
    margin-right: 100px;
}

.nav-website ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 10px;
}

.nav-website ul li a {
    color: var(--black);
    font-size: 17px;
    padding: 7px 18px;
    font-family: Poppins Medium;
    text-decoration: none;
    transition: 0.3s all;
}

.nav-website ul li a:hover {
    color: var(--orange);
    transition: 0.3s all;
}

.fill-progress{
    cursor: pointer;
}

.checkbtn {
    font-size: 30px;
    color: var(--orange);
    float: right;
    line-height: 80px;
    margin-left: 40px;
    cursor: pointer;
    display: none;
    margin-bottom: 0;
}

#check {
    display: none;
}

.log-in {
    border: 2px solid var(--orange);
    border-radius: 10px;
    color: var(--white) !important;
    background: var(--orange);
}

.sign-in {
    border: 2px solid var(--orange);
    border-radius: 10px;
}

.sign-in:hover {
    background: var(--orange);
    color: var(--white) !important;
}

.errorMessage {
    margin: 20px 0 0 0;
    color: red;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    width: 100%;
    height: 7vh;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

footer p {
    color: var(--white);
    font-family: Poppins Medium;
}

footer p a {
    color: var(--white);
    font-family: Poppins Medium;
    text-decoration: none;
}

.hide-1 {
    display: block;
}

.hide-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hide-2 .img-disco {
    width: 25px;
    height: 25px;
}

.a-disco {
    line-height: 0;
}

.account-data {
    margin-right: 25px;
}

.account-data a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.account-data span {
    font-size: 13px;
    font-style: italic;
    color: var(--black);
}

.avatar {
    margin: 0 20px;
    object-fit: cover;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.account-name p {
    color: var(--orange);
    font-family: Poppins Semibold;
    margin-bottom: -5px;
}

@media (max-width: 1300px) {
    .logo {
        display: block;
        padding: 0 50px;
    }

    .nav-website ul li a {
        font-size: 16px;
    }

    .checkbtn {
        display: block;
    }

    ul {
        position: fixed;
        width: 100%;
        flex-direction: column;
        display: flex;
        height: 70vh;
        background: var(--white);
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    ul.bloc {
        position: fixed;
        width: 100%;
        flex-direction: column;
        display: flex;
        height: 30vh;
        background: var(--white);
        top: 70vh;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    .nav-website ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    .nav-website ul li a {
        font-size: 20px;
    }

    #check:checked~ul {
        left: 0;
    }
    .hide-2 {
        justify-content: center;
    }
}

@media screen and (max-width: 400px) {
    footer {
        font-size: 16px;
    }
}

@media screen and (max-height: 835px) {
    .nav-website {
        height: 13vh;
    }
}