.application-section {
    background-image: url(../img/applications/main.webp);
    color: #fff;
    background-size: cover;
    background-position: top center;
    padding: 10px;
}

.main-application-parent {
    background-color: #000000b0;

}

.main-application {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: auto;
    align-items: center;
    background-color: #0000007d;
}


/* width */
.main-application::-webkit-scrollbar {
    height: 5px !important;
}

/* Track */
.main-application::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.main-application::-webkit-scrollbar-thumb {
    background: var(--blue);
}

/* Handle on hover */
.main-application::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}

.main-application li {
    border: 1px solid #333;
}

.main-application-tab {
    cursor: pointer;
    padding: 20px 10px;
    text-shadow: 0 0 0.5px currentColor;
    letter-spacing: 1px;
    transition: 0.2s;
    font-size: 16px;
    color: #ffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}


.main-application .ui-tabs-active {
    background-color: var(--blue) !important;
    border-bottom: 3px solid #eee;

}

.main-application-inner {
    padding: 40px;
    min-height: 100vh;

}

.inner-content ul {
    list-style: none;
}

.inner-content ul li {
    line-height: 40px;
    position: relative;
    padding-left: 20px;
    text-transform: uppercase;
}

.inner-content ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'fontAwesome';
    content: "\f196";
}


.appplication-inner h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.inner-tabs ul {
    list-style: none;
}

.inner-tabs ul li {
    border-bottom: 1px solid #333;
    transition: all ease 0.3s;
}

.inner-tabs ul li a {
    padding: 15px 25px;
    display: block;
}

.inner-tabs ul .ui-tabs-active {
    background-color: #eee;
}

.inner-tabs ul .ui-tabs-active a {
    color: var(--blue);
    font-weight: 600;
}

.inner-tabs ul li:first-child {
    border-radius: 10px 10px 0 0;
}

.inner-tabs ul li:last-child {
    border-radius: 0 0 10px 10px;
}