﻿
*{
    padding:0px;
    margin:0px;
    box-sizing:border-box; 
}
/* =====================navbar-for-mobile-view============= */
navbar-toggler {
    border: none !important;
    outline: 0px !important;
}


/*============universal-css==============================*/
.btn {
    font-size: 14px !important;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

    .sidenav a {
        z-index: 2;
    }

        .sidenav a:hover {
            color: #000000;
        }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 5px;
        font-size: 36px;
        margin-left: 50px;
        color: #000000;
        text-decoration: none;
    }

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}
/* ========list color==================== */
.list-group-item.active {
    background: #c1c3c5;
    color: black;
}

.list-group-item:hover {
    background: #c1c3c5;
    font-weight: 500;
    transition: all .3s linear;
}

.list-group-item {
    padding: 0px;
    border-radius: 10px !important;
}

    .list-group-item p {
        font-size: .875rem;
    }

/* =====================nav-togger-btn================ */
.animated-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

    .animated-icon3 span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
        background: hsl(0, 1%, 43%);
    }

        .animated-icon3 span:nth-child(1) {
            top: 0px;
            transform-origin: left center;
        }

        .animated-icon3 span:nth-child(2) {
            top: 10px;
            transform-origin: left center;
        }

        .animated-icon3 span:nth-child(3) {
            top: 20px;
            transform-origin: left center;
        }

    .animated-icon3.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 0px;
        left: 8px;
    }

    .animated-icon3.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    .animated-icon3.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 21px;
        left: 8px;
    }
/* =============artical col===================== */
.article-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    text-align: center;
}

/* .article-container:hover {
    transform: scale(1);
} */

.article-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

    .article-image:hover {
        transform: scale(1.02);
    }

.article-content {
    padding: 16px;
    background-color: #fff;
    color: #333;
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.article-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

.article-link, .article-link1 {
    color: #007bff;
    text-decoration: none !important;
    font-weight: bold;
    cursor: pointer;
}

    .article-link:hover {
        text-decoration: underline;
    }
#postion-div {
    position: sticky;
    height: fit-content;
    top: 0px ;
}
/* ===================text-show and hide============ */
@media (max-width: 600px) {
    #postion-div {
        position: fixed !important;
    }

    .second-div {
        position: sticky !important;
    }

    .heading {
        font-size: large !important;
    }
}

