@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primaryHeadingFront: 14px;
    --footerFontSize: 15px;
}

.header {
    background-color: black;
}

.navbar li a.nav-link {
    color: white !important;
    font-weight: bold;
    font-size: var(--primaryHeadingFront);
}

label {
    font-weight: bold;
    font-size: var(--primaryHeadingFront);
}

.login_card {
    background-color: #000 !important;
    border-radius: 1rem !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    color: #fff;
}

input {
    border-color: gray !important;
    /* height: 3rem !important; */
}

.h5 {
    color: #f3ba2f;
}

.p {
    color: #3e6d93;
    font-size: 20px;
}

.footer {
    background-color: #000;
}

#fade-carousel .carousel-inner .carousel-item {
    opacity: 0;
    transition: opacity 0.5s;
}

#fade-carousel .carousel-inner .carousel-item.active {
    opacity: 1;
}

#fade-carousel .carousel-item {
    animation: fade 5s infinite;
}

.logo {
    width: 50%;
    padding: 0 2rem;
}

@keyframes fade {

    0%,
    100% {
        opacity: 0;
    }

    25%,
    75% {
        opacity: 1;
    }
}

.side-img {
    width: 60px;
}

.user {
    padding: 10px;
    border: 3px solid #f3ba2f;
    border-radius: 50%;
}

.user i {
    color: #f3ba2f;
    font-size: 25px;
}

.start {
    background-color: #f3ba2f;
    color: white;
    border-radius: 23px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 1rem;
    font-weight: bold;

}

.footer-p {
    font-size: var(--footerFontSize);
    color: white;
}

.copyright {
    font-size: var(--footerFontSize);
    color: white;
}

.footer-links {
    font-size: var(--footerFontSize);
}

.login_content {
    background-image: linear-gradient(to right, #f3ba2f, black);
}

.login {
    background-color: #f3ba2f;
    color: white;
    border-radius: 23px;
    font-size: var(--footerFontSize);
    font-weight: bold;
}

.toggle-btn {
    background-color: #f3ba2f !important;
    color: #000 !important;
}

/* Responsiveness */
/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .logo {
        width: 100%;
        padding: 0 2rem;
    }

    .globe-items {
        display: none !important;
    }

    .footer-logo {
        margin-top: 3rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .copyright {
        margin-top: 2rem;
    }

    .navbar-ul {
        margin-top: 0.2rem;
    }

    .navbar-ul li {
        background-image: linear-gradient(to right, #f3ba2f, black);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0.2rem;
        border-radius: 5px;
        background-color: transparent !important;
        border-radius: 1rem !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 0 0.5rem 0 0.5rem
    }

}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .logo {
        width: 100%;
        padding: 0 2rem;
    }

    .globe-items {
        display: none !important;
    }

    .footer-logo {
        margin-top: 3rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .copyright {
        margin-top: 2rem;
    }

    .navbar-ul {
        margin-top: 0.2rem;
    }

    .navbar-ul li {
        background-image: linear-gradient(to right, #f3ba2f, black);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0.2rem;
        border-radius: 5px;
        background-color: transparent !important;
        border-radius: 1rem !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 0 0.5rem 0 0.5rem
    }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .logo {
        width: 80%;
        padding: 0 2rem;
    }

    .globe-items {
        display: none !important;
    }

    .footer-logo {
        margin-top: 3rem;
    }

    .copyright {
        margin-top: 2rem;
    }

    .navbar-ul {
        margin-top: 0.2rem;
    }

    .navbar-ul li {
        background-image: linear-gradient(to right, #f3ba2f, black);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 0.2rem;
        border-radius: 5px;
        background-color: transparent !important;
        border-radius: 1rem !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 0 0.5rem 0 0.5rem
    }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .logo {
        width: 80%;
        padding: 0 2rem;
    }

    .globe-items {
        display: none !important;
    }
}