*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'qsregular', sans-serif !important;
    width: 100%;
    height: 100%;
}

h1,h2,h3,h4,h5,h6,p{
    font-family: 'qsregular', sans-serif !important;
    text-size-adjust: inherit;
    font-size-adjust: inherit;
}

.wrapcontent{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.mobile_nav{
    display: block;
    background: #FF7A00;
}

.mobile_nav h3{
    font-family: 'qsbold' !important;
}

.txt{
    transition: .4s ease-in-out !important;
    font-family: 'qsmedium';
}

.txt:hover{
    color: rgb(39, 39, 39) !important;
}

.active{
    color: rgb(39, 39, 39) !important;
}

.main_nav{
    position: fixed;
    top:0;left:0;
    height: 100vh;
    box-shadow: 2px 0px 4px .7px rgba(0,0,0,.3);
    background: #FF7A00;
    display: none;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

.main_nav h3{font-family: 'qsbold' !important;}

.com_name{
    font-size: 1.6em !important;
}

.nav_container{
    height: 90vh;
    position: relative;
    display: none;
}

.zuri{
    font-family: 'qsbold';
}

.header_nav h3{
    font-family: 'qsbold';
}

.footer_nav p{
    font-size: .75em;
}

footer{
    display: block;
}

/* TABLET AND OTHER BIG SCREENS RESPONSIVENESS */
@media only screen and (min-width: 768px){
    .mobile_nav{
        display: none;
    }

    .main_nav{
        display: flex;
        width: 33%;
    }

    .nav_container{
        display: block;
    }

    footer{
        display: none;
    }
}

@media only screen and (min-width: 992px){
    .main_nav{
        width: 25%;
    }
}

@media only screen and (min-width: 1024px){
    .main_nav{
        width: 25%;
    }
}

@media only screen and (min-width: 1100px){
    .main_nav{
        width: 25%;
    }
}