.cf-container{
    width:70%;
    margin:8rem auto;

}

.cf-container .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    flex-wrap: wrap;
}

.cf-container .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 350px;
}

.cf-container .nav {
    background: transparent;
    height: 100%;
}

.cf-container .tab-content{
    height: 100%;
    color:#ccc;
    padding: 16px
}

.cf-container .nav>li>a{
    transition: all 0.5s ease;
    /*padding: 14px 15px;*/
    color:#fff;
    background: #005bb9;
    height: 72px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin:16px 0;

}

.cf-container .nav>li.active>a,
.cf-container .nav-link.active{
    /*padding: 14px 15px;*/
    color:#ccc;
    position: relative;
    /*padding-left: 36px;*/
    background: #005bb9;

}

.cf-container .nav>li>a:hover
{
    text-decoration: none;
    background-color:#142354;
    color:white;
}

.cf-container .nav>li.active>a::before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 13px solid #fff;
    position: absolute;
    /* margin-top: 9px; */
    /* margin-left: 1px; */
    left: 0px;
    top: 27px;
    z-index: 1;
}

.cf-item{
    display: flex;
    align-items: center;
    background: transparent;
    color: #142354;
    padding: 6px;
    margin:6px 0;
    border: 1px solid #222222;
}

.cf-item h3{
    margin: 0;
    font-size: 19px;
}

.cf-item a{
    transition: all 0.3s ease;
    padding: 6px;
    color: #ccc;
    height: 100%;
    display: block;
    /* align-self: stretch; */
    border: 1px solid #005bb9;
    margin-left: auto;
    background: #005bb9;
    background: -moz-linear-gradient(left, #142354 0%, #005bb9 100%);
    background: -webkit-linear-gradient(left, #142354 0%,#005bb9 100%);
    background: linear-gradient(to right, #142354 0%,#005bb9 100%);
}

.cf-item a:hover{
    color:#fff;
    background: linear-gradient(to left, #005bb9 0%,#303030 100%);
}


@media only screen and (max-width : 480px) {
    .cf-item a{
        text-align: center;
        font-size: 1.2rem;
    }
    .cf-container .fa-file-pdf-o:before{
        border: none;
    }
    .cf-container .tab-content{
        padding: 16px 0;
    }
    .cf-container{
        width: 88%;
        margin: 2rem auto;

    }
    .cf-container .row > [class*='col-'] {
        min-height: initial;
    }

    .cf-item h3 {
        margin: 0;
        font-size: 14px;
    }
    .cf-container .nav>li{
        border-bottom: 1px solid #333333;
    }
}

@media only screen and (max-width : 992px) {
    .cf-container{
        width: 82%;

    }
}



.cf-item:first-child {
    margin-top: 0;
}







.tab-content .tab-pane .cf-item h3{
    width:80% !important;
}


