@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Bricolage Grotesque", sans-serif;

}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    transition: background-color 0.3s, color 0.3s;

}

body.light-mode {
    background-color: #f2f6f9;
    color: rgba(0, 0, 0, 0.77);
}

body.dark-mode {
    background-color: #121212;
    color: white;
}

body.dark-mode .greetings{
    color: #121212;
}

#darkModeToggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    color: #000;

}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bricolage Grotesque", sans-serif;

}

.logo {
    background-image: url(../images/logo.png);
    background-position: center;
    background-size: cover;
    background-color: transparent;
}

.sidebar_all {
    position: fixed;
    top: 0;
    left: 0;
    width: 20%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding-block: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: none;
    z-index: 68;
    overflow-y: scroll;
}

.logo {
    height: 150px;
    width: 150px;
    margin-block: 30px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.ll {
    border-top: 2px solid #534f4f2a;
}

.links a {
    border-bottom: 2px solid #534f4f2a;
    width: 100%;
    padding: 0 10%;
    text-decoration: none;
    padding-block: 10px;
    color: #000;
    background-color: #f2f2f2;
}

.links h3 {
    padding: 0 10%;
    padding-block: 10px;
    background-color: #6e3fb1;
    /* background-color: #5daa80; */
    text-transform: uppercase;
    color: #fff;
    /* color: #000; */
    font-size: 18px !important;
    font-weight: 500;
    margin: 0;
}

.links a:hover {
    background-color: #6e3fb1;
    background-color: #fff;
    color: #000;
}



#toggleButton {
    padding: 10px;
    border: none;
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: absolute;
    z-index: 332;
    position: fixed;
    background-color: #6e3fb1;
    top: 0;
}

.log {
    background-color: #6e3fb1;
    color: #fff !important;
}

.log:hover {
    background-color: #f2f2f2 !important;
}

#toggleButton i {
    font-size: 20px;
    color: #fff !important;
}

.all {
    padding: 0 7%;
    margin-block: 50px;
}

.welcome_base {
    background-color: #fff;
    padding: 0 2%;
    padding-block: 10px;
    border-radius: 30px;
    border: 1px dashed #6e3fb1;
}

.profile {
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}


@media only screen and (max-width: 1110px) {
    .sidebar_all {
        width: 70%;
    }
    .logo {
        height: 150px;
        width: 150px;
        margin-block: 30px;
        margin-left: auto;
        margin-right: auto;
        background-image: url(../images/logo.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 50%;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .welcome_base {
        display: flex;
        flex-direction: column-reverse;
    }

    .card_all {
        display: flex;
        flex-direction: column-reverse;
    }

    .page_swiper {
        display: none;
    }

    .page_all {
        display: grid;
        grid-template-columns: 1fr;
    }
}