@media screen and (max-width:480px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        flex-direction: column;
        height: auto;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .navbar .left {
        width: 100%;
        height: 70px;
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        right: 0px;
        background: black;
        z-index: 1;
    }

    .navbar .left img {
        width: 40%;
    }

    .navbar .right {
        width: 100%;
        right: 0px;
        height: auto;
        background-color: black;
        position: absolute;
        z-index: 0;
        top: -100vh;
        transition: all 0.5s ease-in-out;
        padding-bottom: 20px;
    }

    .navbar .right .list {
        flex-direction: column;
        height: auto;
    }

    .navbar .right .list-Item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px
    }

    .navbar .right .list-Item p {
        color: white;
    }

    .navbar .right .list .donate-btn {
        width: 40%;
        margin: auto;
        border-radius: 20px;
        height: 40px;
    }

    .navbar p {
        font-size: 20px;
    }

    .navbar .right .list .donate-btn p {
        font-size: 20px;
    }

    .banner {
        height: 28vh;
    }

    .second-sec {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    .second-sec h1 {
        font-size: 32px;
    }
    .second-sec .row {
        padding-top: 20px;
        padding-bottom: 0px;
        flex-direction: column;
    }
    .event-item {
        width: 100%;
        padding: 20px;
        height: 50vh;
        margin-bottom: 20px;
        z-index: -1;
    }
    .time-loc {
        width: 100%;
    }


    .last-sec {
        padding: 10px;
        box-sizing: border-box;
        width: 100%;
        padding-bottom: 100px;
        padding-top: 100px;
    }
    .last-sec p {
        font-size: 23px;
        padding-bottom: 20px;
    }
    .last-sec h1 {
        font-size: 30px;
    }
    .search-bar {
        width: 100%;
    }
    .search-bar button p{
        padding-bottom: 0px;
    }

    .footer {
        flex-direction: column;
        height: 30vh;
        box-sizing: border-box;
        padding: 6px;
    }

    .footer .first,
    .second,
    .third {
        width: 100%;
    }
}