﻿/* Tablet Landscape */
@media screen and (max-width: 1024px){
    /* Navbar */
    .dt-nav{
        display: none;
    }
    .mob-nav{
        display: block;
    }
    .mob-nav-wrapper{
        display: block;
    }
    /* Fonts  */
    h1{
        font-size: 39px;
    }
    h2{
        font-size: 30px;
    }
    h3{
        font-size: 24px;
    }
    h4{
        font-size: 20px;
    }
    h5{
        font-size: 16px;
    }
    p{
        font-size: 15px;
    }
    /* Homepage */
    .page-breaker{
        height: 0px;
    }
    .project-box{
        width: 100%;
        height: 100px;
    }
}

/* Tablet portrait */
@media screen and (max-width: 768px){
    .m-hide{
        display: none !important;
    }
}