﻿a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

.tab {
    font-family: 'Raleway', sans-serif;
    padding: 15px;
}

    .tab .nav-tabs {
        padding: 0 10px;
        margin: 0;
        border: none;
    }

        .tab .nav-tabs li a {
            /*color: #fff;
            background: linear-gradient(#0042b2,#0042b2);*/
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            text-transform: capitalize;
            padding: 8px 20px 10px;
            margin: 0 10px 16px 0;
            border: none;
            border-radius: 10px 10px 0 0;
            overflow: hidden;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease 0.15s;
        }

            .tab .nav-tabs li.active a,
            .tab .nav-tabs li a:hover,
            .tab .nav-tabs li.active a:hover {
               /* color: white;
                background: linear-gradient(#0042b2,#0042b2);*/
                border: none;
                box-shadow: 0 -3px 7px rgba(0,0,0,0.15);
            }

            .tab .nav-tabs li a:before {
                content: "";
                height: 100%;
                width: 100%;
                border-radius: 8px 8px 0 0;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: -1;
                transition: all 0.3s ease-out 0s;
            }

            .tab .nav-tabs li.active a:before,
            .tab .nav-tabs li a:hover:before {
                top: 0;
            }

    .tab .tab-content {
        /*color: #fff;
        background: linear-gradient(#0042b2,#0042b2);*/
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 25px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2),0 0 0 15px #fff,0 0 30px rgba(0,0,0,0.9);
        position: relative;
    }

@media only screen and (max-width: 479px) {
    .tab .nav-tabs {
        padding: 0;
        margin: 0 0 15px;
    }

        .tab .nav-tabs li {
            width: 100%;
            text-align: center;
        }

            .tab .nav-tabs li a {
                margin: 0 0 15px;
                border-radius: 10px;
            }
}
