a:hover,
a:focus{
    text-decoration: none;
    outline: none;
}

.vertical-tab{
    font-family: 'Montserrat', sans-serif;
    display: table;
	width:100%;
}

.vertical-tab .nav-tabs{
    width: 25%;
    min-width: 25%;
    border: none;
    vertical-align: top;
    display: table-cell;
	background-color:#fff;
	color:#000;
		box-shadow:2px 2px 8px 2px #333;

}

.vertical-tab .nav-tabs li{ float: none; }

.vertical-tab .nav-tabs li a{
    color: #000;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    /*text-align: center;
	*/
    text-transform: uppercase;
    padding: 12px 15px 11px;
    margin: 0 0 10px 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0.3s;
}

.vertical-tab .nav-tabs li a:hover,
.vertical-tab .nav-tabs li.active a{
    color: #000;
    background:#FF9900;
	
	
    border: none;
}
.vertical-tab .nav-tabs li.active a:hover,
.vertical-tab .nav-tabs li.active a{ color: #000; }

/*.vertical-tab .nav-tabs li a:before{
    content: "";
    background: #D5350D;
    height: 100%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: width 0.5s ease 0s,height 0.5s ease 0.15s;
}*/

.vertical-tab .nav-tabs li.active a:before,
.vertical-tab .nav-tabs li a:hover:before{
    width: 100%;
    height: 0;
	 transition: width 0.5s ease 0s,height 0.5s ease 0.15s;
}

.vertical-tab .tab-content{
    color: #444;
    background: #fff;
	box-shadow:2px 2px 8px 2px #333;
	
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 23px;
    padding: 20px;
    display: table-cell;
}

.vertical-tab .tab-content h3{
    color: #1e97bf;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 7px;
}

@media only screen and (max-width: 479px){
    .vertical-tab .nav-tabs{
        width: 100%;
        margin: 0 0 10px;
        display: block;
    }

    .vertical-tab .nav-tabs li a{
        padding: 15px 10px 14px;
        margin-bottom: 10px;
    }

    .vertical-tab .tab-content{
        font-size: 14px;
        border-radius: 0 0 20px 20px;
        display: block; 
    }
}