@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;
    }

    .first-sec {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 10px;
        padding-top: 100px;
    }

    .first-sec .left {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .first-sec .right {
        width: 100%;
    }

    .first-sec .right p {
        font: menu;
        font-size: 18px;
    }

    .second-sec {
        box-sizing: border-box;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .second-sec .item {
        width: 100%;
        height: 25vh;
        margin-top: 20px;
        border: 0.5px solid rgb(194, 193, 193);
    }

    .second-sec .item .icon {
        padding: 15px;
    }

    .second-sec .item .icon i {
        font-size: 45px;
    }
    .second-sec .item p {
        font-size: 20px;
    }
    .third-sec {
        width: 100%;
        flex-direction: column;
        box-sizing: border-box;
        padding: 10px;
        padding-top: 100px;
        height: auto;
        padding-bottom: 100px;
    }
    .third-sec .left {
        width: 100%;
        margin-right: 0px; 
         margin-top: 0px;
         height: 50vh;
    }
    .third-sec .right{
        width: 95%;
        border-radius: 0px;
        height: 50vh;
    }
    .fourth-sec h1 {
        color: white;
        width: 100%;
        text-align: center;
        font-size: 30px;
    }
    .fourth-sec .btn {
        margin-top: 50px;
    }
    .footer {
        flex-direction: column;
        height: 30vh;
        box-sizing: border-box;
        padding: 6px;
    }

    .footer .first,
    .second,
    .third {
        width: 100%;
    }
}