
@media screen and (min-width : 320px) {
    .wrapper{
        flex-direction: column;
    }
    .left-panel{
        width: 100%;
        position: fixed;
        height: 60vh;
        top: 0;
        left: 0;
    }

    .menu{
        top: 20px;
        left: 23px;
    }

    .nav-logo{
        margin-bottom: 30px;
    }

    .nav-link{
        font-size: 18px;
        font-weight: 500;
    }

    .right-panel{
        position: relative;
        top: 60vh;
        width: 100%;
        padding: 30px;
    }

    .hero-heading{
        font-size: 20vw;
    }

    .hero-paragraph{
        font-size: 18px;
    }

    .hero-btn{
        padding: 18px 30px;
        font-size: 15px;
        outline: none;
        border: 0;
    }

    footer{
        flex-direction: column;
        margin-top: 80px;
        gap: 40px;
    }

    .info{
        width: 100%;
    }

    .info-right{
        width: 100%;
    }
}

@media screen and (min-width:768px) {
    footer{
        flex-direction: row;
    }
}

@media screen and (min-width:1024px) {
    .wrapper{
        flex-direction: row;
        /* height: 100vh; */
    }
    .left-panel{
        width: 50%;
        height: 100%;
    }

    .menu{
        top: 50px;
        left: 60px;
    }

    .nav-link{
        font-size: 20px;
    }

    .right-panel{
        width: 50%;
        top: 0;
        padding: 40px 60px 45px;
    }

    .hero-heading{
        font-size: 11vw;
    }

    .hero-paragraph{
        font-size: 20px;
    }

    .hero-btn{
        padding: 20px 36px;
        font-size: 17px;
    }

    footer{
        margin-top: 25px;
        gap: 10px;
    }
}