﻿.p-headver {
}

.p-headver-container {
}

.p-headver-title {
    text-align: center;
    color: var(--color-3);
    font-family: 'pathB';
    font-size: 42px;
    line-height: 118%;
    margin: 0;
}

.p-headver-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
}

    .p-headver-filter .item {
        background-color: #F4F6F5;
        border-radius: 55px;
        padding: 18px 34px;
        margin: 0 8px;
        cursor: pointer;
        user-select: none;
        position: relative;
        text-transform: capitalize;
        transition: all .3s;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .p-headver-filter .item:hover::before,
        .p-headver-filter .item.active::before {
            top: 0;
            transition: .4s cubic-bezier(.3,1,0.9,1);
        }

        .p-headver-filter .item::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 100%;
            border-radius: 55px;
            top: 100%;
            background-color: var(--color-3);
            transition: all .3s;
        }

        .p-headver-filter .item span {
            color: #19191B;
            font-family: 'pathMe';
            font-size: 18px;
            line-height: 118%;
            position: relative;
        }

.p-headver-description {
    font-size: 16px;
    text-align: center;
    max-width: 965px;
    margin: 0 auto;
    color: #F4F6F5;
    font-weight: 100;
    line-height: 165%;
    margin-top: 33px;
}

/* Mobile & tablet */
@media (max-width: 1023px) {
}

/* Tablet */
@media (min-width: 740px) and (max-width: 1023px) {
}

/* Mobile */
@media (max-width: 739px) {
    .p-headver-title {
        font-size: 26px;
    }

    .p-headver-filter .item span {
        font-size: 13px;
    }

    .p-headver-filter .item {
        padding: 8px 14px;
        overflow: hidden;
        margin: 7px 0;
    }

    .p-headver-filter {
        margin-top: 14px;
        flex-direction: column;
    }
}
