* {
    margin: 0;
    padding: 0;
    outline: none;
    scroll-behavior: smooth;
    box-sizing: border-box;
    /* font-family: "Inter", sans-serif; */
    font-family: "Open Sans", sans-serif;
}

/*  */
body {
    width: 100%;
    padding-top: 10vh;
    position: relative;
}

p a {
    text-decoration: none;
    color: black;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 10px;
    left: -120px;
    background: linear-gradient(145deg, #4e54c8, #8f94fb);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 230px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    flex-direction: column;
    animation: fadeIn 0.3s ease-in-out;
    overflow: hidden;
}

.dropdown-content a {
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dropdown-content a:hover {
    width: 95%;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.dropdown:hover .dropdown-content {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*  */

/*   */
nav {
    width: 100%;
    height: 10vh;
    background-color: #442670;
    box-shadow: 0 0 15px 5px rgb(70, 70, 70);
    position: fixed;
    top: 0;
    z-index: 10000;
    display: flex;
}

/*  */
/*  */
.logo {
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    color: white;
    flex-direction: row;
    /* background-color: rgb(0, 255, 26); */
}

.logo h2 {
    cursor: pointer;
}

/*  */
/*  */
.links {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    /* background-color: rgb(97, 97, 255);*/
}

.links a {
    padding: 10px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}


hr {
    margin-top: 80px;
    width: 100%;
    height: 0;
    box-shadow: 0 0 50px 2px black;
}

.links a:hover {
    color: #FF914C;
}

.links .active_link {
    color: #181824 !important;
}

body.dark-mode .active_link {
    color: #181824 !important;
}

.links ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.links ul .fa-chevron-down {
    font-size: 10px;
    transition: all 0.3s ease;
}

.links ul a:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.container .card {
    transition: .1s ease-in-out;
}

.container .card:hover {
    transform: scale(1.05);
    transition: .1s ease-in-out;
}

.btn-outline-primary {
    background: transparent !important;
    color: #0b5ed7 !important;
    width: 100% !important;
}

.btn-outline-primary:hover {
    background: #0b5ed7 !important;
    color: white !important;
}

/*  */
.fa-bars {
    font-size: 0;
    color: white;
    position: absolute;
    top: 22.5px;
    right: 30px;
    cursor: pointer;
}

/* .search,
.filter {
    padding: 5px;
    margin: 20px;
    position: absolute;
    top: 10vh;

}

.search {
    right: 30px;
}

.filter {
    right: 250px;
    width: 210px;
} */


.address {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.back-btn {
    display: inline-block;
    text-decoration: none;
    margin: 10px;
    padding: 5px 10px;
    border: 2px solid #105cd4;
    border-radius: 10px;
    background-color: transparent;
    color: #105cd4;
}

.wrapper-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.795);
    z-index: 1000;
}

@media screen and (max-width: 600px) {
    .fa-bars {
        font-size: 25px;
        color: white;
        position: absolute;
        top: 22.5px;
        right: 30px;
        cursor: pointer;
        z-index: 9999999;
    }

    .dropdown {
        padding: 10px 0;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 0;
        right: 100px;
    }

    .dropdown-content a {
        color: black !important;
        width: 100% !important;
    }



    .links {
        width: 0;
        height: 100vh !important;
        background-color: rgb(37, 37, 37);
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10000;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        flex-direction: column !important;
        transition: .2s ease-in-out;
        /* background-color: rgb(97, 97, 255); */
    }

    .links a {
        padding: 10px;
        width: 90%;
        color: white;
        text-decoration: none;
        cursor: pointer;
        transition: .1s ease-in-out;
    }

    .links a:hover {
        color: #FF914C;
        /* border-left: 10px solid grey; */
        transition: .1s ease-in-out;
    }

    .dropbtn:hover {
        border: 0px solid transparent;
    }

    .links ul {
        width: 100%;
        margin: 10px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .links ul .fa-chevron-down {
        font-size: 10px;
        transition: all 0.3s ease;
        transform: rotate(90deg);
    }

    .links ul a:hover .fa-chevron-down {
        transform: rotate(270deg);
    }

    #drop-links {
        position: absolute;
        right: 210px;
    }
}