﻿


/*--------------------------------------------------------------
        # Features Section
        --------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 25px 20px;
    color: #485664;
    box-shadow: 5px 5px 25px rgba(72, 86, 100,0.15) /*rgba(72, 86, 100, 0.15)*/;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0s;
    cursor: pointer;
    height: 100%;
}

    .features .nav-link i {
        font-size: 26px /*32px*/;
        line-height: 1 /*0*/;
    }

    .features .nav-link h4 {
        font-size: 20px;
        font-weight: 600;
        margin: 10px 0 0 0;
        color: #485664;
    }

    .features .nav-link:hover {
        color: #0a8abb;
    }

    .features .nav-link.active {
        transition: 0.3s;
        color: #fff !important;
        /*background: linear-gradient(180deg, #0a8abb, #8bcde6) /*#0a8abb*/ /*#485664 linear-gradient(rgba(14, 162, 189, 0.95), rgba(14, 162, 189, 0.6));*/
        background: linear-gradient(338deg, #2e8deb, #9cb1ce);
        border-color: #0a8abb /*#0a8abb*/;
        border-radius: unset;
    }

        .features .nav-link.active h4 {
            color: #ffffff;
        }

        .features .nav-link.active i {
            color: #ffffff !important;
        }

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane.active {
    -webkit-animation: fadeIn 0.5s ease-out;
    animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 36px;
    color: #0a8abb /*#485664*/;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

    .features .tab-pane ul li {
        padding-bottom: 10px;
    }

    .features .tab-pane ul i {
        font-size: 24px;
        margin-right: 4px;
        color: #0a8abb /*#0a8abb*/;
    }

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
