* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


::-webkit-scrollbar {
    width: .625rem;
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background: #fff;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: green;
}


.bg-style {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent !important;
    z-index: 999;
}

.text_nav {
    color: #fff !important;
}

.home_img {
    background-image: url("../imgs/Banner.jpg");
    background-size: cover;
    padding: 16.875rem 0 9.375rem;
}

.border_hover:hover {
    border-radius: 6px;
    border: 100px line yellow;
    transition: 0.2s;
}


.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 18px;
    object-fit: cover;
    position: absolute;
    top: 40%;
    right: 45%;
}

@media (max-width:576px) {
    .avatar {
        right: 32%;
    }
}

.carousel-item {
    display: flex;
    justify-content: center;
    height: 50vh;
}

.carousel-item.active {
    display: flex;
}

.carousel-item:not(.active) {
    display: none;
}

.carousel-indicators [data-bs-target] {
    background-color: #fff;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}



@media (max-width:576px) {
    .navbar-collapse {
        position: relative;
    }


    .links {
        display: flex !important;
        flex-direction: column-reverse !important;
        background-color: #05a555 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
    }

    #menu-btn:checked~.links {
        max-height: 400px !important;
        padding: 20px;
        font-weight: 600;
    }


    .open-icon {
        display: inline-block;
    }

    .close-icon {
        display: none !important;
    }

    #menu-btn:checked~label .open-icon {
        display: none;
    }

    #menu-btn:checked~label .close-icon {
        display: inline-block !important;
        background-color: #ffc107;
        padding: 5px;
        border-radius: 50%;
    }
    .list-btn{
        position: absolute;
        z-index: 9999;
        right: 0;
    }
}