html {
    font-size: 1.0625rem;
}

@media screen and (max-width:1920px) {
    html {
        font-size: calc(0.8125rem + 0.20833333333333337vw);
    }
}

@media screen and (max-width:1440px) {
    html {
        font-size: calc(0.8126951092611863rem + 0.20811654526534862vw);
    }
}

@media screen and (max-width:479px) {
    html {
        font-size: calc(0.7494769874476988rem + 0.8368200836820083vw);
    }
}

.particle-wrapper {
    pointer-events: none;
}


#topNav {
    height: 4px;
    margin: 0;
    padding: 0;
    border-radius: 1%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;

}

#line {
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: #065f46;
    width: 0%;
    height: 100%;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    animation: loading 4 step-end 1s 1 forwards;
}

@keyframes loading {

    0% {
        width: 2%;
    }

    10% {
        width: 10%;
    }

    20% {
        width: 20%;
    }

    30% {
        width: 30%;
    }

    40% {
        width: 40%;
    }

    50% {
        width: 50%;
    }

    60% {
        width: 60%;
    }

    70% {
        width: 70%;
    }

    80% {
        width: 80%;
    }

    90% {
        width: 90%;
    }

    100% {
        width: 100%;
    }

}

.page:hover {
    cursor: pointer;
}

.icon {
    color: black !important;
    fill: black !important;
}

#a-btn {
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.w-form-fail {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 10px;
}


.user-profile {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 1.5vw;
}

.user-img {
    width: 60px;
    /* Adjust based on your design */
    height: 60px;
    /* Adjust based on your design */
    overflow: hidden;
    border-radius: 50%;
}

.user-img img {
    width: 100%;
    height: auto;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    /* Adjust based on your design */
    right: 0;
    background-color: #ffffff;
    /* Adjust based on your design */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Adjust based on your design */
    border-radius: 1vw !important;
    display: none;
    font-size: 1.2vw;
    padding: 1.3vw;
}

.profile-dropdown a {
    display: block;
    padding: 8px 16px;
    color: #333333;
    /* Adjust based on your design */
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 1vw !important;

}

.profile-dropdown a:hover {
    background-color: #f0f0f0;

}

.user-profile {
    position: relative;
    display: flex;
    align-items: center;
}

.user-img {
    width: 54px;
    /* Adjust based on your design */
    height: 54px;
    /* Adjust based on your design */
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    /* Add this */
    justify-content: center;
    /* Add this */
    align-items: center;
    /* Add this */
}

.user-img2 {
    width: 40px;
    /* Adjust based on your design */
    height: 40px;
    /* Adjust based on your design */
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    /* Add this */
    justify-content: center;
    /* Add this */
    align-items: center;
    /* Add this */
}


.user-img img {
    width: 100%;
    height: auto;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    /* Adjust based on your design */
    right: 0;
    background-color: #ffffff;
    /* Adjust based on your design */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Adjust based on your design */
    border-radius: 8px;
    padding: 10px;
    display: none;
}

.user-detail-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* Adjust based on your design */
}


.user-name {
    font-weight: bold;
    color: #333333;
    margin-bottom: 5px;

}

.user-email {
    color: #666666;
    /* Adjust based on your design */
}


/* Profile Page CSS */
.profile-section {
    display: flex;
    justify-content: center;
    width: 100%;
    /* 1.875rem  */
}

.profile-section-1 {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: flex-start;
    width: 25%;
}

.profile-image-wrapper {
    cursor: pointer;
    width: 13.5vw;
    height: 13.5vw;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 100%;
    height: auto;
}

.user-details {
    text-align: start;
    margin-top: 10px;
    margin-left: 10px;
}

.user-name {
    font-weight: bold;
}

.user-email {
    color: #666;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin: 6vh 0;
}

.navigation {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: start;
    width: 100%;
}

.navigation li {
    margin-bottom: 1vh;
    display: flex;
    align-items: center;
    height: 5vh;
    padding: 1vw;
    cursor: pointer;
    border-radius: 1vw;
}

.navigation li:hover {
    background-color: #065f461a;
}

.navigation a {
    text-decoration: none;
    color: #333;
}

.profile-section-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 75%;
}



@media only screen and (max-width: 990px) {

    .nav-container {
        overflow: unset !important;
    }

    .user-profile {
        margin-right: 0;
    }

    .user-img2 {
        width: 40px;
        height: 40px;
    }

    .profile-dropdown {
        top: calc(100% + 5px);
        padding: 3vw 1vw;
        font-size: 14px;
        border-radius: 3vw !important;
    }

    .profile-section {
        flex-direction: column;
        width: 100%;
    }

    .navigation {
        display: flex;
        justify-content: center;
    }

    .navigation li {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 2vw;
        margin: 0;
    }

    .profile-section-1,
    .profile-section-2 {
        width: 100%;
    }

    .navigation a {
        font-size: 2.5vw;
        margin: 0;
        padding: 0;
        width: fit-content !important;
        text-align: center;
    }

    .m-pad {
        padding-top: 1vw;
    }

    .profile-image-wrapper {
        width: 28vw;
        height: 28vw;
    }

    .divider {
        margin: 4vh 0;
    }
}