/* 
// ===================================================================================================
// ## services css
// =================================================================================================== 
*/

/* specific containers */

#main-services {
    height: 100%; height: fit-content;
    position: relative;
    background-image: url(../images/bg/grad-02.webp);
    background-position: center;
    background-size: cover;
    display: flex;  justify-content: center; align-items: center;
    padding: 60px;
}

#main-services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(30, 20%, 98%, 0);
    opacity: 1;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
}

#main-services-explains {
    width: 100%; height: 100%; display: flex; justify-content: start; align-items: start;
}

.service-explains-view {
    background-image: radial-gradient(var(--white-2) 1px, transparent 1px);
    background-size: 15px 15px;
    display: flex; justify-content: center; align-items: center;
}

/* selectors ====================================================== */

.selector-list {
    width: 100%; height: fit-content;
    display: flex; justify-content: center; align-items: center;
}

.selector {
    padding: 12px 24px;
    text-transform: capitalize;
    color: var(--black);
    opacity: .8;
    font-weight: var(--normal);
    font-size: var(--h4); 
    font-family: var(--inter);
    border-left: 1px solid var(--white-2);
    transition: box-shadow 0.2s ease-in-out;
}

.selector-list > .selector:last-child{
    border-right: 1px solid var(--white-2);
}

.selector:hover {
    cursor: pointer;
    box-shadow: inset 0 -4px var(--black-2);
}
.selector.active {
    box-shadow: inset 0 -4px var(--horizon) !important;
}

/* services view ============================================================ */

.service-view {
    display: flex; justify-content: start; align-items: start; flex-direction: column;
    gap: 60px;
    box-sizing: border-box;
    border-radius: 4px;
    z-index: 99;
}
