* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* NAVBAR */
.navbar {
    padding: 25px 0px;
    position: fixed;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 999;
    /* background-color: red; */
}

/* .max_width {
    max-width: 1300px;
    margin: auto;
    padding: 0px 80px;
} */

.navbar .max_width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.sticky {
    position: fixed;
    padding: 10px;
    background-image: linear-gradient(to left, #3264f5, #4a54e8, #5b42db, #682ccb, #7202bb);
}

.logo {
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 33px;
    /* line-height: 90px; */
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    object-position: center;
    margin-right: 10px;
}

.logo span {
    color: sandybrown;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.menu li {
    list-style: none;
    margin-right: 25px;
}

.menu li a {
    color: white;
    font-family: 'Ubuntu', sans-serif;
}

.menu_link_icon .fa {}

.menu_btn {
    color: white;
    display: none;
}

/* POP UP ========================================================= */
/* ================================================================ */
.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: fadein 0.25s ease-out;
}

.popup-content {
    /* width: 300px;
        height: 270px; */
    background: white;
    box-sizing: border-box;
    /* padding: 30px 25px; */
    /* padding: 5px solid rgb(253, 253, 253); */
    /* border-radius: 3mm; */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    font-family: poppins;
    position: relative;
    animation: scalein 0.25s ease-out;
}

.close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.close:hover {
    color: rgb(221, 44, 44);
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes scalein {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Design */

@media screen and (max-width: 999px) {

    .menu_btn {
        display: block;
        z-index: 999;
    }

    .menu_btn i.active::before {
        content: "\f00d";
    }

    .navbar .menu {
        position: fixed;
        background-color: #111;
        height: 100vh;
        width: 100%;
        top: 0px;
        left: -100%;
        /* padding-top: 80px; */
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .navbar .menu.active {
        left: 0px;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0px;
        font-size: 25px;
    }

}

@media screen and (max-width: 690px) {

    /* header nav a{
        font-size: 14px;
        margin-right: 0;
    } */
    .logo {
        font-size: 24px;
    }

    .logo img {
        width: 28px;
        height: 28px;
    }
}