@media (max-width:1024px) {
    #navcontainer {
        position: fixed;
        top: 0;
        right: -100vw;
        z-index: 500;
        background-color: var(--fade-bg-dark);
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        transition: right 0.3s ease-in-out;
        overflow-y: scroll;
    }

    #navcontainer.openMenu {
        right: 0;
    }

    #navcontainer nav {
        width: 70%;
        max-width: 350px;
        min-width: fit-content;
        height: fit-content !important;
        min-height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start !important;
        padding-top: 3.5rem;
        padding-bottom: 2rem;
        border: solid 1px var(--border-medium);
    }

    #navcontainer nav ul {
        width: 100%;
        margin: 0 !important;
        padding: 1rem 1.5rem !important;
        flex-direction: column;
        align-items: flex-start !important;
    }

    #navcontainer nav ul li {
        display: block !important;
        width: 100% !important;
    }

    #navcontainer nav ul li a {
        display: inline-block !important;
        width: 100% !important;
        font-size: 1.5rem;
    }

    .navbox li a i {
        display: unset;
    }

    #navcontainer nav ul .btn-close {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 30px;
    }

    .menubtnbox {
        display: block;
    }

}


@media (max-width:768px) {
    html {
        font-size: 15px;
    }
    
    .contact-p-card {
        flex-wrap: wrap;
    }

    .vr {
        border-bottom: solid 1px var(--border-gray-300);
        height: 1px !important;
        min-height: auto !important;
        width: 100% !important;
    }

    .message-box .row {
        flex-direction: column;
        text-align: center;
    }

    .footer-row {
        flex-wrap: wrap;
    }
}


/* mobile responsiiveness */
@media (max-width:565px) {
    html {
        font-size: 14px;
    }
    .carousel-inner{
        border-radius: 15px !important;
    }
    .features-card-wrapper .card{
        max-width: unset !important;
        width: 95% !important;
    }

    .mentor-wrapper .card{
        max-width: unset !important;
        min-width: fit-content;
    }
    .mentor-wrapper{
        justify-content: flex-start !important;
    }
}