/* sub nav styling */
.sub-nav{
    background-color:#f2f2f2;
}
.sub-nav h1{
    font-size:48px;
    line-height:64px;
    color:#000;
    font-family:"Roboto", sans-serif;
    font-weight:400;
    margin-bottom:0;
    margin-left:15px;
}
.sub-nav .mob-subnav-btn{
    display:none;
    width:100%;
    background:#1E635F;
    color:#fff;
    font-size:12px;
    text-align:center;
    padding:5px 0;
    border:none;
}
.sub-nav .nav .nav-item{
    display:inline-block;
}
.sub-nav .nav .nav-item a{
    font-size:16px;
    color:#63656a;
    font-weight:500;
}
.sub-nav .nav .nav-item:hover > a, .sub-nav .nav .nav-item.active > a{
    color:#1E635F;
    font-weight:500;
    text-decoration:underline;
}
/* end sub nav styling */

@media only screen and (max-width:767px){
    .sub-nav h1{
        font-size:36px;
        line-height:36px;
        margin-left:15px;
        margin-bottom:10px;
    }
    .sub-nav .nav .nav-item{
        width:calc(25% - 4px);
    }
    .sub-nav .nav .nav-item a{
        font-size:15px;
        font-weight:400;
    }
    .sub-nav .nav .nav-item:hover a, .sub-nav .nav .nav-item.active a{
        font-weight:500;
    }
}
@media only screen and (max-width:425px){
    .sub-nav h1{
        font-size:20px;
        line-height:32px;
        margin-left:0;
    }
    .sub-nav .mob-subnav-btn{
        display:block;
        margin-bottom:15px;
    }
    .sub-nav .mob-subnav-btn img{
        -webkit-transition:all 0.5s;
        transition:all 0.5s;
        font-size: 20px;
        line-height: 13px;
        vertical-align: middle;
        margin-left: 5px;
        width:12px;

    }
    .sub-nav .mob-subnav-btn.active img{
        -webkit-transition:all 0.5s;
        transition:all 0.5s;
        -webkit-transform:rotate(180deg);
        transform:rotate(180deg);
    }
    .sub-nav .nav{
        display:none;
    }
    .sub-nav .nav .nav-item{
        display:block;
        border-bottom:1px solid #e0e0e0;
        width:100%;
    }
    .sub-nav .nav .nav-item:last-child{
        border-bottom:none;
    }
    .sub-nav .nav .nav-item a{
        font-size:14px;
        padding-left:0;
        padding-right:0;
    }
}

.sub-nav .nav>li>a {
    padding: 10px 13px;
}
