@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*, *::after,*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    margin: 0;
    font-family: "Nunito", sans-serif;
    /*background-color: #a5a6a3;*/

}
/******************************************************/
:root {
    --color-gradient: linear-gradient(36deg, rgba(32,1,173,1) 0%, rgba(111,3,238,1) 69%, rgba(187,14,255,1) 100%);
}

/***********************/
/* navbar */
.navbar{
    display: flex;
    width: 100%;
    height: 90px;
    top: 0;
    position: fixed;
    margin: 0 auto;
    align-items: center;
    background-color: transparent;
    /*position: relative;*/
    justify-content: space-between;
    z-index: 2;
    position: fixed;
    transition: background-color 0.5s ease;
}
.navbar-scrolled{
    background-color: rgba(0, 0, 0, 0.66);
}

.navbar .logo{
    position: relative;
    left: 62px;
}
.logo>img{
    width: 100px;
    border-radius: 30px;
    margin-top: 5px;
}
.navbar a{
    font-size: 1.5em;
    font-weight: bold;

}
.navbar .links{
    display: flex;
    gap: 2rem;
    position: relative;
    right: 65px;

}
li{
    list-style-type: none;

}
a{
    text-decoration: none!important;
    color: white;
}

.submenu {
    display: none;
    position: absolute;
    background-color: black;
    padding: 3px;
    width: max-content;
    text-align: start;
    box-shadow: 5px 5px 20px #353535;
}

.navbar .links li {
    position: relative;
    padding-right: 10px;
}

.navbar .links li:hover .submenu {
    display: block;
}

.submenu li {
    margin-top: 5px;
}


.navbar .toggle_btn{
    color: #fff;
    font-size: 3.5rem;
    cursor: pointer;
    display: none;
    position: relative;
    right: 40px;
}

.action_btn{
    position: relative;
    top: 30px;
    font-weight: normal;
    font-size: 1.3rem !important;
    background-color: #14aef1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 59px;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    /* border-radius: 47px; */
    cursor: pointer;
    transition: box-shadow 2s ease-in-out;
    z-index: 3;
    text-shadow: -3px -1px 2px #151f1d, -19px 0px 25px #222f2e, -5px -1px 5px #2b2b2b;
}
.action_btn:hover{
    box-shadow: 0px 0px 12px 0px #f7fffe;
}
.links a:hover {
    font-weight: bolder;
    text-shadow: 1px 1px 2px #c4fff2, 0 0 25px #a8ece6, 0 0 5px #767e7d;
}
.active{
    color: #fdb836!important;

}
.active:hover{
    text-shadow: 1px 1px 2px #ffeec4, 0 0 25px #ecdea8, 0 0 5px #fdb836!important;
}

/* DROPDOWN MENU */
.dropdown_menu{
    display: none;
    position: absolute;
    right: 2rem;
    top: 150px;
    width: 300px;
    height: 0;
    background: rgb(0 0 0 / 90%);
    backdrop-filter: blur(10px)!important;
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown_menu.open{
    height: max-content;
    left: 2rem;
    width: unset;
    z-index: 7;
}
.dropdown_menu li{
    display: flex;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.dropdown_menu li a{
    font-size: 2.199rem;
}
.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
    position: initial;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px){
    .navbar{
        /*height: 170px;*/
    }

    .navbar > .links,
    .navbar > .action_btn{
        display: none;
    }

    .navbar .toggle_btn{
        display: block;
    }
    .navbar .logo{
        left: 20px;
    }
    .dropdown_menu{
        display: block;
    }
    .toggle_btn{
        font-size: 70px;
    }
}

/********************************************/
/* COPYRIGHT */

.copyright{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: antiquewhite;
    background: rgb(0 0 0 / 45%);
}


/********************************************/
/* suppression de la scrollbar */
::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

@media screen and (max-width: 830px){

    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
    footer{
        display: none;
    }
    .header h4{
        font-size: initial!important;
    }
}

header{
    display: flex;
    width: 100%;
    position: fixed;
    height: 100vh;
    align-items: center;
    background: transparent;
    justify-content: center;
}


#background-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}


