.category-banner-section::before {
    background-color: var(--first);
    opacity: 0.68;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.category-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 22px;
}

.category-description {
    font-size: 20px;
    color: var(--grey);
}

.category-banner-section::marker {
    display: none;
}

.single-content-wrapper>* {
    width: 100%;
}

.category-content-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.category-content-description {
    font-size: 20px;
    color: var(--grey);
}

.category-listing {
    gap: 40px;
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: auto;
}

.category-data {
    background: var(--white);
    padding: 30px;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    position: relative;
    width: calc(50% - 20px);
}

.category-data::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--first);
    border-radius: 50%;
    top: -5px;
    left: 50%;
}

.category-data-title {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--first);
}

.category-data-description {
    font-size: 16px;
    color: var(--grey);
}

.alternet-darkbg {
    background: var(--first1);
    background-image: repeating-linear-gradient(45deg,
            #1e73be54,
            #1e73be54 1px,
            transparent 1px,
            transparent 14px);
}

.category-data::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--first1);
    border-radius: 50%;
    top: -3px;
    left: calc(50% - 7px);
    border: 1px solid var(--first);
}

.alternet-bg {
    background: var(--second);
}

.button-content-section {
    position: relative;
    overflow: hidden;
}

.button-content-section::before,
.button-content-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: .25;
}

.button-content-section::before {
    width: 140px;
    height: 140px;
    background: var(--first);
    bottom: 0;
    left: 0px;
}

.button-content-section::after {
    width: 160px;
    height: 160px;
    background: var(--first);
    left: 0;
    bottom: 0;
}

.button-content-section .button-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.button-content-section .category-content-description {
    margin-bottom: 30px;
}

.schedule-btn-v2:hover::before {
    background: linear-gradient(120deg, transparent, var(--first1), transparent);
}

.category-darkbg,
.schedule-btn-v2 {
    background: var(--first);
}

.category-subtitle {
    width: 100%;
    font-size: 25px;
    border-bottom: 1px solid var(--second);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.expert-content-section .category-content-description {
    color: inherit;
}

.content-listing {
    margin: 20px auto 0;
    text-align: right;
    max-width: 350px;
    width: 100%;
}

.content-listing .content-inner-li {
    font-size: 18px;
    padding: 15px 20px;
    background: var(--first1);
    border-radius: 10px;
    margin: 0 0 10px 0;
    color: var(--first);
    width: 100%;
}

.content-listing .content-inner-li::before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background: var(--firsta);
    margin: 0 0 0 10px;
    border-radius: 50px;
    border: 2px solid var(--first);
}

#appointment-content-section {
    background-image: url(./assets/images/category-appointment-bg.png);
    box-shadow: inset 0 0px 10px 0px var(--first);
    background-position: top;
}

@media (max-width: 768px) {
    .category-banner-wrapper {
        padding: 30px;
    }

    .category-title {
        font-size: 28px;
    }

    .category-description {
        font-size: 16px;
    }

    .category-content-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .category-content-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .category-listing {
        gap: 25px;
    }

    .category-data {
        width: calc(50% - 13px);
        border-radius: 20px;
    }

    .button-content-section .category-content-description {
        margin-bottom: 10px;
    }

    .category-subtitle {
        margin-bottom: 15px;
        font-size: 20px;
    }
    
    .button-content-section::before {
        width: 90px;
        height: 90px;
    }

    .button-content-section::after {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 575px) {
    .category-data {
        width: 100%;
    }

    .appointment-title {
        font-size: 22px;
    }
}