/* G Fonts */
body {
    font-family: "Inter";
}

table.table.dataTable {
    width: 100% !important;
}

.text-justify {
    text-align: justify;
}

/* Header Block */
.header-block {
    width: 100%;
    height: auto;
    padding: 1rem 0px;
    margin: 0px;
    position: sticky;
    top: 0px;
    background-color: rgb(255, 255, 255);
    z-index: 999;
    border-bottom: 1px solid #0001;
    box-shadow: 0px 0px 10px 5px #0001;
}

    .header-block .cs-btn-thin {
        padding: 0.25rem .85rem;
    }

    .header-block .navbar {
        padding: 0px 1rem;
    }

    .header-block .navbar-nav {
        gap: 1rem;
    }

        .header-block .navbar-nav.login-desktop-menu {
            gap: .5rem;
        }

    .header-block .nav-link {
        font-family: Inter;
        font-size: 1rem;
        font-weight: 500;
        color: rgb(51, 51, 51);
        position: relative;
        padding: 0px !important;
        white-space: nowrap;
        box-shadow: none !important;
    }

        .header-block .nav-link::after {
            content: "";
            width: 0px;
            height: 1px;
            padding: 0px;
            margin: 0px;
            position: absolute;
            left: 0px;
            bottom: 1px;
            background-color: rgb(51, 34, 125);
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
            border: none !important;
            transition: all 0.1s ease-in-out 0s;
        }

        .header-block .nav-link:hover::after,
        .header-block .nav-link.active::after {
            width: 100%;
        }

    .header-block .dropdown-menu {
        width: fit-content;
        height: auto;
        padding: 0;
        margin: 0 !important;
        border: none;
        border-radius: 0;
        top: calc(100% + .45rem) !important;
        left: 50% !important;
        transform: translate(-50%, 5%) !important;
        opacity: 0;
        transition: .5s ease all;
    }

        .header-block .dropdown-menu.show {
            opacity: 1;
        }

        .header-block .dropdown-menu .dropdown-item {
            padding: .5rem 1rem;
            font-family: Inter;
        }

            .header-block .dropdown-menu .dropdown-item:active {
                background-color: #33227d;
            }

        .header-block .dropdown-menu::before {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            border: 10px solid #33227d;
            border-top-color: #0000;
            border-left-color: #0000;
            border-right-color: #0000;
        }

        .header-block .dropdown-menu::after {
            content: "";
            width: 100%;
            height: 3px;
            position: absolute;
            top: 0;
            left: 0;
            background-image: linear-gradient(85.17deg, #33227D 36.06%, #441F6F 41.84%, #841540 60.82%, #B30E1D 77.32%, #D00A07 89.7%, #DB0900 97.13%);
        }

    .header-block .navbar-brand {
        padding: 0;
        margin: 0;
    }

        .header-block .navbar-brand img {
            width: 100%;
            max-width: 10rem;
            height: auto;
        }

/* Profile Dropdown */
.profile-dropdown .dropdown-toggle {
    width: 100%;
    height: auto;
    padding: 0.25rem .85rem !important;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    border-radius: 3rem;
    font-size: 1rem;
    font-weight: 600;
}

    .profile-dropdown .dropdown-toggle::after {
        display: none;
    }

.profile-dropdown .dropdown-menu {
    width: fit-content;
    padding: 0;
    margin: 0;
    top: calc(100% + 1rem) !important;
    left: -50% !important;
    transform: none !important;
    border: none;
    border-radius: .25rem;
    background-color: #fff;
    box-shadow: 0px 10px 10px -5px #0001;
}

    .profile-dropdown .dropdown-menu::before {
        content: "";
        width: 0px;
        height: 0px;
        position: absolute;
        top: -1rem;
        left: 50%;
        transform: translateX(calc(50% - 1rem / 2));
        border: .5rem solid #33227d;
        border-top-color: #0000;
        border-left-color: #0000;
        border-right-color: #0000;
    }

    .profile-dropdown .dropdown-menu .dropdown-item {
        padding: .5rem 1rem !important;
        color: #33227d;
        background-color: #fff;
        font-family: 'Inter';
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: .5rem;
    }

        .profile-dropdown .dropdown-menu .dropdown-item:hover {
            color: #fff;
            background-color: #33227d;
        }

    .profile-dropdown .dropdown-menu li:first-child .dropdown-item {
        border-top-left-radius: .5rem;
        border-top-right-radius: .5rem;
    }

    .profile-dropdown .dropdown-menu li:last-child .dropdown-item {
        border-bottom-left-radius: .5rem;
        border-bottom-right-radius: .5rem;
    }

    .profile-dropdown .dropdown-menu .dropdown-divider {
        margin: 0;
        border-color: #0001;
    }

    .profile-dropdown .dropdown-menu .dropdown-item i {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: .25rem;
    }

    .profile-dropdown .dropdown-menu .dropdown-item:hover i {
        color: #33227d;
        background-color: #fff;
    }

/* Footer Blog */
.footer-block {
    padding: 1.5rem 0px;
    position: relative;
    background-image: url("/homeassets/images/footer-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

    .footer-block::before {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        background-image: url("/homeassets/images/footer-bg-2.svg");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center top;
    }

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-widgets {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .footer-logo img {
        width: 100%;
        max-width: 15rem;
        height: auto;
    }

.footer-social-btns {
    width: auto;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.footer-social-btn {
    width: 2.25rem;
    height: 2.25rem;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(173, 167, 203);
    border-radius: 3rem;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 1.125rem;
}

    .footer-social-btn img {
        width: auto;
        height: 1rem;
    }

.footer-title {
    margin-bottom: 1rem;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.footer-nav {
    padding: 0px;
    margin: .5rem 0px;
}

.footer-navlist {
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
}

.footer-nav-item {
    line-height: normal;
}

/*.footer-nav-link {
    color: rgb(255, 255, 255);
    font-family: Inter;
    font-size: .85rem;
    font-weight: 400;
    text-decoration: none;
}*/


.footer-nav-link {
    color: rgb(255, 255, 255);
    font-family: Inter;
    font-size: .85rem;
    font-weight: 400;
    text-decoration: none;
    min-width: 44px;
    min-height: 44px;
    margin: 8px;
}


.footer-copyright {
    width: 100%;
    height: auto;
    padding: 1rem 0px;
    margin: 3rem auto 0px;
    border-top: 1px solid rgb(92, 78, 151);
    border-bottom: 1px solid rgb(92, 78, 151);
}

    .footer-copyright p {
        margin: 0px;
        color: rgb(255, 255, 255);
        font-family: Inter;
        font-size: 0.85rem;
        font-weight: 400;
        text-align: center;
    }

/* Custom Texts + Buttons For Onboaring Pages */
.cs-btn-onboard-group {
    width: fit-content;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.cs-btn-onboard {
    outline: none;
    padding: .5rem 1.25rem;
    width: 100%;
    border-radius: 0.5rem;
    background-clip: padding-box;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    white-space: nowrap;
    transition: .1s ease all;
}

    .cs-btn-onboard.-primary {
        background-color: #33227d;
        color: #fff;
    }

        .cs-btn-onboard.-primary:hover {
            box-shadow: 0 0 0 5px #33227d33;
        }

    .cs-btn-onboard.-secondary {
        background-color: #fd8d03;
        color: #fff;
    }

        .cs-btn-onboard.-secondary:hover {
            box-shadow: 0 0 0 5px #fd8d0333;
        }

/* Custom Texts + Buttons */
.cs-text-violet {
    color: rgb(51, 34, 125) !important;
}

.cs-bg-light-violet {
    background-color: #EBE9F2;
}

.cs-bg-gradient-light {
    background-image: linear-gradient(103.84deg, #EBE9F2 10%, #1F144B 10%, #EBE9F2 10%);
}

.btns {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cs-btn {
    width: fit-content;
    height: auto;
    padding: 0.75rem 1.75rem;
    margin: 0px;
    display: block;
    border-radius: 3rem;
    border: 1px solid rgb(51, 51, 51);
    color: rgb(51, 51, 51);
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    font-family: Inter;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out 0s;
}

.cs-btn-txt-lg {
    font-size: 1.155rem;
}

.cs-btn-yellow {
    color: rgb(51, 51, 51);
    background-color: rgb(253, 141, 3);
    border-color: rgb(253, 141, 3);
}

    .cs-btn-yellow:hover {
        color: rgb(255, 255, 255);
    }

.cs-btn-violet {
    color: rgb(255, 255, 255);
    background-color: rgb(51, 34, 125);
    border-color: rgb(51, 34, 125);
}

    .cs-btn-violet:hover {
        color: rgb(51, 34, 125);
        background-color: rgb(255, 255, 255);
    }

.cs-btn-transparent {
    color: rgb(255, 255, 255);
    border-color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
}

    .cs-btn-transparent:hover {
        background-color: rgb(253, 141, 3);
    }

.cs-btn-transparent-onhover:hover {
    background-color: #0000 !important;
}

.cs-btn-theme-gradient {
    color: rgb(255, 255, 255);
    border-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(126.94deg, rgb(51, 34, 125) 32.84%, rgb(68, 31, 111) 38.08%, rgb(132, 21, 64) 55.29%, rgb(179, 14, 29) 70.26%, rgb(208, 10, 7) 81.49%, rgb(219, 9, 0) 88.22%);
}

    .cs-btn-theme-gradient:hover {
        background-image: linear-gradient(-126.94deg, rgb(51, 34, 125) 32.84%, rgb(68, 31, 111) 38.08%, rgb(132, 21, 64) 55.29%, rgb(179, 14, 29) 70.26%, rgb(208, 10, 7) 81.49%, rgb(219, 9, 0) 88.22%);
    }

.cs-btn-transparent i {
    color: rgb(253, 141, 3);
    transition: all 0.3s ease-in-out 0s;
}

.cs-btn-transparent:hover i {
    color: rgb(255, 255, 255);
    transform: translateX(5px);
}

.cs-btn-light {
    color: #333333;
    background-color: #EBE9F2;
    border-color: #0000;
}

.cs-btn-icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.cs-btn-thin {
    padding: 0.5rem 1rem;
}

/* Custom Image Wrapper*/
.cs-img-wrapper {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

    .cs-img-wrapper img {
        min-width: 100%;
        min-height: 100%;
    }

/* Section Title */
.section-title-block {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

    .section-title-block h2 {
        margin: 0px;
        color: rgb(51 34 125);
        font-family: Noticia Text;
        font-size: 1.5rem;
        font-weight: 700;
        text-transform: capitalize;
    }

    .section-title-block h5 {
        margin: 0;
        font-family: "Noticia Text";
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        color: #1F144B;
    }

    .section-title-block p {
        margin: 0px;
    }

    .section-title-block.text-only {
        align-items: flex-start !important;
        flex-wrap: nowrap;
    }

        .section-title-block.text-only h2,
        .section-title-block.text-only p {
            flex: 1 1 0%;
        }

        .section-title-block.text-only p {
            font-family: Inter;
            font-size: 1rem;
            font-weight: 400;
        }

    .section-title-block.with-borders {
        padding-top: .5rem;
        padding-bottom: 1rem;
        position: relative;
    }

        .section-title-block.with-borders::before {
            content: "";
            width: 100%;
            height: 2px;
            position: absolute;
            top: 0;
            left: 0;
            background-color: rgb(51, 34, 125);
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        }

        .section-title-block.with-borders::after {
            content: "";
            width: 100%;
            height: 2px;
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: rgb(51, 34, 125);
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        }

    /* Section Title Block - Inline */
    .section-title-block.inline {
        align-items: flex-start !important;
        gap: 1rem;
    }

        .section-title-block.inline h2 {
            flex: 2;
        }

        .section-title-block.inline p {
            flex: 4;
        }

/* Compatibility Section */
.compatibility-row {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    margin: 1rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15%;
    position: relative;
    background-color: rgb(239, 239, 239);
    border-radius: 1rem;
}

    .compatibility-row::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border-radius: 1rem;
    }

    .compatibility-row::after {
        content: "";
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        position: absolute;
        top: 1px;
        left: 1px;
        z-index: 1;
        background-color: rgb(255, 255, 255);
        border-radius: 1rem;
    }

.compatibility-title {
    flex: 1;
    margin: 0px;
    font-family: "Noticia Text";
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(31, 20, 75);
    position: relative;
    z-index: 3;
}

.compatibility-list {
    flex: 3;
    width: auto;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.compatibility-item {
    display: block;
    font-family: Inter;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    text-transform: capitalize;
    color: rgb(51, 34, 125);
    position: relative;
}

    .compatibility-item::after {
        content: "";
        width: 0px;
        height: 1px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        bottom: 0px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        transition: all 0.1s ease-in-out 0s;
    }

    .compatibility-item:hover::after {
        width: 100%;
    }

/* Categories Sections */
.categories-block .section-title-block {
    margin-bottom: 1.5rem;
}

.categories-item {
    width: 100%;
    height: 15rem;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

    .categories-item figure {
        width: 100%;
        height: 100%;
        padding: 0px;
        margin: 0px;
        position: relative;
    }

        .categories-item figure img {
            width: auto;
            height: 100%;
            min-width: 100%;
            object-fit: cover;
            transition: all 0.3s ease-in-out 0s;
        }

    .categories-item h5 {
        position: absolute;
        bottom: 1rem;
        left: 1.5rem;
        z-index: 2;
        font-family: "Noticia Text";
        font-size: 1.75rem;
        font-weight: 700;
    }

        .categories-item h5 a {
            color: rgb(255, 255, 255);
            text-decoration: none;
        }

    .categories-item::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        background-image: linear-gradient(rgba(173, 167, 203, 0) 1.41%, rgb(92, 78, 151) 100%);
        transition: .3s ease all;
        transform: translateY(25%);
    }

    .categories-item:hover::before {
        transform: translateY(0%);
    }

    .categories-item:hover figure img {
        transform: scale(1.15);
    }

    .categories-item h5 a::after {
        content: "";
        width: 0px;
        height: 1px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        bottom: 0px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        transition: all 0.3s ease-in-out 0s;
    }

    .categories-item h5 a:hover::after {
        width: 100%;
    }

/* Hero Section */
.hero-block {
    width: 100%;
    height: auto;
    padding-top: 4rem;
    padding-bottom: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    isolation: isolate;
    background-image: url(/homeassets/images/hero-banners.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-container {
    padding-right: 22% !important;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    margin: 0px;
    color: rgb(255, 255, 255);
    font-family: Noticia Text;
    font-size: 2.75rem;
    font-weight: 700;
}

.hero-text {
    padding: 0px;
    margin: 0 0 1rem 0;
    font-family: Inter;
    font-size: 1.25rem;
    font-weight: 300;
    color: rgb(255, 255, 255);
}

    .hero-text b {
        font-weight: 700;
    }

    .hero-text:empty {
        display: none;
    }

/* Why Choose Us - Section */
.whychooseus-block {
    width: 100%;
    height: auto;
    background-image: url(/homeassets/images/bg-001.png);
    background-size: auto;
    background-position: right center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.whychooseus-container {
    max-width: calc(1296px);
    padding: 2.5rem !important;
    background-color: rgb(235, 233, 242);
    border-radius: 0.75rem;
    position: relative;
    top: -3rem;
}

.whychooseus-title {
    margin: 0;
    color: rgb(31, 20, 75);
    font-family: Noticia Text;
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
}

.whychooseus-text {
    margin: 0 0 1rem 0;
    font-family: Inter;
    font-size: 1.125rem;
    font-weight: 400;
    color: rgb(0, 0, 0);
}

/* Online Guides - Section */
.onlineguides-block {
    background-image: url("/homeassets/images/bg-001.png");
    background-size: auto;
    background-position: right center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Staff Cards Section */
.staff-card-block {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    position: relative;
    border: 1px solid rgb(173, 167, 203);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.staff-card-match {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: 1;
    background-image: url("/homeAssets/images/star-icon.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

    .staff-card-match .match-content-percent {
        color: #fff;
        line-height: 1;
        font-size: small;
    }

    .staff-card-match .match-content-label {
        color: #fff;
        line-height: 1;
        font-size: small;
    }

.staff-card-label {
    width: auto;
    height: auto;
    padding: 0.35rem 0.75rem;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 50%;
    border-radius: 3rem;
    transform: translateX(-50%) translateY(-50%);
    font-family: Inter;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgb(49, 168, 7);
    border: 1px solid rgb(49, 168, 7);
    background-color: rgb(235, 255, 228);
}

    .staff-card-label.online {
        color: rgb(49, 168, 7);
        border: 1px solid rgb(49, 168, 7);
        background-color: rgb(235, 255, 228);
    }

    .staff-card-label.offline {
        color: rgb(168 7 7);
        border: 1px solid rgb(168 7 7);
        background-color: rgb(255 242 242);
    }

    .staff-card-label.busy {
        color: rgb(157 168 7);
        border: 1px solid rgb(157 168 7);
        background-color: #fdffdf;
    }

.staff-card-img {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border-radius: 10rem;
}

    .staff-card-img img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.staff-card-details {
    width: 50%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.staff-card-body {
    width: 100%;
    height: auto;
    padding: 0px 1rem;
    margin: 1.25rem auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.staff-card-details h5 {
    width: 100%;
    padding: 0 1rem;
    margin: 0px;
    font-family: "Noticia Text";
    font-size: 1.85rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.staff-card-details .heartButton {
    position: absolute;
    top: 0rem;
    right: .5rem;
    font-size: 1.5rem;
}

.staff-card-rating {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

    .staff-card-rating i {
        font-size: 1rem;
    }

        .staff-card-rating i.fill,
        .staff-card-rating i.checked {
            color: rgb(253, 141, 3);
        }

.staff-card-details a {
    margin: 0px;
    font-family: Inter;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 2.5;
    text-align: center;
    color: rgb(31, 20, 75);
    text-decoration: none;
}

.staff-card-details hr {
    width: 100%;
    height: 1px;
    padding: 0px;
    margin: 0px;
    background-color: rgb(153 153 153);
    border: none;
}

.staff-card-details p {
    margin: 0px;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: rgb(173, 167, 203);
}

.staff-card-details h6 {
    margin: 0px;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: rgb(31, 20, 75);
}

.staff-card-footer {
    width: 100%;
    height: auto;
    padding: 1rem 1.5rem;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: rgb(255, 255, 255);
    background-color: rgb(31, 20, 75);
    border-radius: 0px 0px 0.95rem 0.95rem;
}

    .staff-card-footer span {
        color: rgb(173, 167, 203);
        font-family: Inter;
        font-size: 12px;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 2px;
    }

    .staff-card-footer a {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: left;
        color: rgb(255, 255, 255);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: .55rem;
        text-decoration: none;
    }

        .staff-card-footer a img {
            width: auto;
            height: 1.62500rem;
        }

/* Testimonials Section */
.testimonial-block {
    background-image: url(/homeAssets/images/bg-001.png);
    background-size: auto;
    background-position: right center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

    .testimonial-block::before {
        content: "";
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(103.84deg, #EBE9F2 24.96%, #1F144B 56.54%, #EBE9F2 84.51%);
        opacity: 10%;
    }

.testimonial-container {
    position: relative;
    z-index: 3;
}

.testimonial-item {
    width: 100%;
    height: 100%;
    padding: 1rem;
    margin: 0px auto;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    background-color: #fffffff0 !important;
    border-radius: .5rem;
    border: 1px solid #e8e8e8;
}

    .testimonial-item:hover {
        background-color: rgba(0, 0, 0, 0.067);
    }

    .testimonial-item.bg-none {
        background-color: #0000 !important;
    }

.testimonial-card-rating {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 1rem 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

    .testimonial-card-rating i {
        color: rgb(253, 141, 3);
        font-size: 1.25rem;
    }

.testimonial-title {
    margin: 0 0 1rem 0;
    font-family: "Noticia Text";
    font-size: 1.125rem;
    font-weight: 700;
    color: rgb(31, 20, 75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-text {
    font-family: Inter;
    font-size: 1rem;
    font-weight: 400;
    color: rgb(31, 20, 75);
}

.testimonial-author {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 1rem 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 400;
}

    .testimonial-author > span {
        width: 2rem;
        height: 2rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        border-radius: 2rem;
    }

    .testimonial-author span img {
        min-width: 100%;
        min-height: 100%;
    }

/* FAQ's Sectio */
.faq-container {
    max-width: 800px !important;
    margin: 0 auto;
}

.faq-block .accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-block .section-title-block {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container .accordion-item {
    border-color: #0000;
}

.faq-block .section-title-block p {
    font-size: 1.125rem;
    font-weight: 500;
}

.faq-block .section-title-block p {
    font-size: 1.125rem;
    font-weight: 500;
}

.faq-block .accordion-button {
    padding-top: .5rem;
    padding-bottom: .5rem;
    transition: .3s ease all;
}

    .faq-block .accordion-button.collapsed {
        padding-bottom: 1rem;
    }

.faq-block .accordion-item::after {
    content: "";
    width: 100%;
    height: 2px;
    padding: 0px;
    margin: 0px;
    position: absolute;
    bottom: 1px;
    left: 0px;
    background-color: rgb(51, 34, 125);
    background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
}

.faq-block .accordion-button {
    background-color: #0000 !important;
    font-family: Inter;
    font-size: 1.255rem;
    font-weight: 600;
    border: none !important;
    border-radius: 0px !important;
    box-shadow: none !important;
}

.faq-block .accordion-body {
    padding-top: 0;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 500;
}

/* Article Section */
.article-item {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    position: relative;
    border: 1px solid rgb(235, 233, 242);
    border-radius: 1rem;
    background-color: #fff !important;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

    .article-item:hover {
        background-color: rgb(235, 233, 242);
    }

    .article-item figure {
        width: 100%;
        height: 12rem;
        padding: 0px;
        margin: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        border-radius: 1rem;
    }

        .article-item figure img {
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            transition: all 0.3s ease-in-out 0s;
        }

    .article-item:hover figure img {
        transform: scale(1.155);
    }

.article-body {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .article-body time {
        margin: 0px;
        color: rgb(92, 78, 151);
        font-family: Inter;
        font-size: 12px;
        font-weight: 700;
        line-height: 12px;
        letter-spacing: 1px;
    }

    .article-body h3 {
        margin: 0px;
        color: rgb(92, 78, 151);
        font-family: "Noticia Text";
        font-size: 1.35rem;
        font-weight: 700;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

.article-item .link {
    font-family: Inter;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #33227D;
    position: relative;
}

    .article-item .link i {
        color: #FD8D03;
        transform: translateX(5px);
        transition: .3s ease all;
    }

    .article-item .link:hover i {
        transform: translateX(10px);
    }

    .article-item .link::after {
        content: "";
        width: 0px;
        height: 1px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        bottom: 1px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        transition: all 0.1s ease-in-out 0s;
    }

    .article-item .link:hover::after {
        width: calc(100% - 20px);
    }

/* Horoscope Hero Section */
.horoscope-hero-block {
    background-image: url(/homeAssets/images/horoscope-banner.png);
}

.horoscope-detail-hero-block {
    position: relative;
    background-image: none;
}

    .horoscope-detail-hero-block::before {
        content: "";
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        background-image: linear-gradient(119.02deg, #B30E1D 12.19%, #33227D 50.65%, rgba(102, 89, 158, 0.8) 83.41%);
    }

    .horoscope-detail-hero-block::after {
        content: "";
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background-size: contain;
        background-position: center right;
        background-repeat: no-repeat;
        opacity: 20%;
    }

    .horoscope-detail-hero-block .hero-container {
        z-index: 2;
    }

    .horoscope-detail-hero-block.Aquarius::after {
        background-image: url(/homeAssets/images/zodiac-signs/Aquarius.png);
    }

    .horoscope-detail-hero-block.Aries::after {
        background-image: url(/homeAssets/images/zodiac-signs/Aries.png);
    }

    .horoscope-detail-hero-block.Cancer::after {
        background-image: url(/homeAssets/images/zodiac-signs/Cancer.png);
    }

    .horoscope-detail-hero-block.Capricorn::after {
        background-image: url(/homeAssets/images/zodiac-signs/Capricorn.png);
    }

    .horoscope-detail-hero-block.Gemini::after {
        background-image: url(/homeAssets/images/zodiac-signs/Gemini.png);
    }

    .horoscope-detail-hero-block.Leo::after {
        background-image: url(/homeAssets/images/zodiac-signs/Leo.png);
    }

    .horoscope-detail-hero-block.Libra::after {
        background-image: url(/homeAssets/images/zodiac-signs/Libra.png);
    }

    .horoscope-detail-hero-block.Pisces::after {
        background-image: url(/homeAssets/images/zodiac-signs/Pisces.png);
    }

    .horoscope-detail-hero-block.Sagittarius::after {
        background-image: url(/homeAssets/images/zodiac-signs/Sagittarius.png);
    }

    .horoscope-detail-hero-block.Scorpio::after {
        background-image: url(/homeAssets/images/zodiac-signs/Scorpio.png);
    }

    .horoscope-detail-hero-block.Taurus::after {
        background-image: url(/homeAssets/images/zodiac-signs/Taurus.png);
    }

    .horoscope-detail-hero-block.Virgo::after {
        background-image: url(/homeAssets/images/zodiac-signs/Virgo.png);
    }

/* Become Guide Section */
.become-guide-block {
    height: 30rem;
    background-image: url(/homeAssets/images/become-guide-banner.png);
}

/* Zodiac Section */
.zodiac-block {
    width: 100%;
    height: auto;
    position: relative;
}

.zodiac-container {
    max-width: calc(1296px);
    padding: 1rem !important;
    background-color: rgb(235, 233, 242);
    border-radius: 0.75rem;
    position: relative;
    top: -3rem;
}

.zodiac-widget {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(153, 153, 153, 0);
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out 0s;
}

    .zodiac-widget:hover {
        background-color: rgba(255, 255, 255, 0.333);
        border-color: rgba(153, 153, 153, 0.2);
    }

.zodiac-figure {
    width: 6.25rem;
    height: 6.25rem;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(253, 141, 3);
    border-radius: 6.25rem;
}

    .zodiac-figure img {
        width: 80%;
        height: auto;
    }

    .zodiac-figure a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.zodiac-title {
    margin: 0px;
    font-family: "Noticia Text";
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
}

    .zodiac-title a {
        color: rgb(31, 20, 75);
        text-decoration: none;
        position: relative;
    }

        .zodiac-title a::after {
            content: "";
            width: 0px;
            height: 1px;
            padding: 0px;
            margin: 0px;
            position: absolute;
            left: 0px;
            bottom: 0px;
            background-color: rgb(51, 34, 125);
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
            transition: all 0.1s ease-in-out 0s;
        }

        .zodiac-title a:hover::after {
            width: 100%;
        }

.zodiac-timeline {
    padding: 0.25rem 1rem;
    margin: 0px;
    font-family: Inter;
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
    background-color: rgb(255, 255, 255);
    border-radius: 3rem;
}

/* How It Works*/
.hero-block.howitworks {
    padding-top: 3rem;
    padding-bottom: 4rem;
    background-image: url(/homeassets/images/guide-list-hero-block.png);
    background-size: cover;
    background-position: bottom right;
    background-attachment: initial;
}

/* Steps BLock */
.steps-block {
    width: 100%;
    height: auto;
    position: relative;
}

.steps-container {
    max-width: calc(1296px);
    padding: 1rem !important;
    background-color: rgb(235, 233, 242);
    border-radius: 0.75rem;
    position: relative;
    top: -3rem;
}

.step-item {
    width: 85%;
    height: auto;
    padding: 0px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-head {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    flex-direction: column;
}

    .step-head h5 {
        margin: 0px;
        font-family: "Noticia Text";
        font-size: 1.5rem;
        font-weight: 700;
        color: rgb(31, 20, 75);
        text-align: center;
    }

.step-icon {
    width: auto;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .step-icon img {
        width: 5rem;
        height: auto;
    }

.step-head p {
    margin: 0px;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 400;
    line-height: 19.36px;
    text-align: center;
}

/* Guides Hero Section */
.guides-hero-block {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: rgb(235, 233, 242);
}

.guides-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5rem;
}

.guides-hero-image {
    width: 30rem;
    height: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 30rem;
}

    .guides-hero-image img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.guides-hero-content {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
}

.guides-rating {
    width: 100%;
    height: auto;
    padding: 1rem 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-top: 1px solid rgb(173, 167, 203);
    border-bottom: 1px solid rgb(173, 167, 203);
}

    .guides-rating .right-block {
        padding: 0px 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .guides-rating .right-block p {
            margin: 0px;
            color: rgb(31, 20, 75);
        }

    .guides-rating .left-block a {
        font-family: Inter;
        font-size: 12px;
        font-weight: 500;
        color: rgb(31, 20, 75);
        text-decoration: none;
    }

.guides-action-block {
    width: 100%;
    height: auto;
    padding: 1rem 4.5rem;
    margin: 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5rem;
    color: rgb(255, 255, 255);
    background-color: rgb(31, 20, 75);
    border-radius: 1rem;
}

.guides-action-item {
    width: auto;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

    .guides-action-item img {
        width: auto;
        height: 25px;
    }

    .guides-action-item p {
        margin: 0px;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 700;
        line-height: 12.1px;
    }

    .guides-action-item span {
        font-family: Inter;
        font-size: 0.85rem;
        font-weight: 400;
    }

.guide-approach-container h2 {
    margin: 0px;
    font-family: "Noticia Text";
    font-size: 3rem;
    font-weight: 700;
    color: rgb(31, 20, 75);
}

.guide-approach-container .accordion-item {
    margin: 1rem auto;
    border: 0px;
    position: relative;
}

.guide-approach-container .accordion-collapse {
    color: rgb(255, 255, 255);
    background-color: rgb(31, 20, 75);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.guide-approach-container .accordion-body {
    padding-top: 0 !important;
}

.guide-approach-container .accordion-button {
    background-color: rgb(235, 233, 242);
    font-family: Inter;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    box-shadow: none !important;
}

    .guide-approach-container .accordion-button[aria-expanded="true"] {
        color: rgb(255, 255, 255);
        background-color: rgb(31, 20, 75);
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
    }

        .guide-approach-container .accordion-button[aria-expanded="true"]::after {
            filter: invert(1) brightness(1);
        }

.guide-approach-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .guide-approach-details p {
        margin: 0px;
    }

.guide-review-block {
    position: relative;
}

    .guide-review-block::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        background: linear-gradient(103.84deg, rgb(235, 233, 242) 24.96%, rgb(31, 20, 75) 56.54%, rgb(235, 233, 242) 84.51%);
        opacity: 0.1;
    }

.guide-review-container {
    position: relative;
    z-index: 1;
}

.guide-review-title {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 1rem 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
}

    .guide-review-title h2 {
        margin: 0px;
        font-family: "Noticia Text";
        font-size: 3rem;
        font-weight: 700;
        color: rgb(31, 20, 75);
    }

.guide-review-rating {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

    .guide-review-rating a {
        font-family: Inter;
        font-size: 16px;
        font-weight: 400;
        color: rgb(0, 0, 0);
        text-decoration: none;
    }

.guide-review-item {
    width: 100%;
    height: auto;
    padding: 2.5rem 0px;
    margin: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .guide-review-item::after {
        content: "";
        width: 100%;
        height: 1px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
    }

    .guide-review-item p {
        margin: 0px;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
        color: rgb(31, 20, 75);
    }

    .guide-review-item span {
        font-family: Inter;
        font-size: 12px;
        font-weight: 400;
        line-height: 14.52px;
        text-align: left;
    }

/* About Guide Section */
.about-guide-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

    .about-guide-container .left-block {
        padding: 0px 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
    }

    .about-guide-container .right-block {
        padding: 0px 1rem;
    }

    .about-guide-container .left-block h2 {
        margin: 0px;
        font-family: "Noticia Text";
        font-size: 3rem;
        font-weight: 700;
        color: rgb(31, 20, 75);
    }

    .about-guide-container .left-block p {
        margin: 0px;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
    }

    .about-guide-container .left-block::before {
        content: "";
        width: 2px;
        height: 100%;
        position: absolute;
        top: 0px;
        right: 0px;
        background-image: linear-gradient(179.97deg, rgb(219, 9, 0) 11.49%, rgb(51, 34, 125) 102.05%);
    }

    .about-guide-container .schedule-block {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .about-guide-container .right-block h4 {
        margin: 0px;
        font-family: "Noticia Text";
        font-size: 1.75rem;
        font-weight: 700;
        color: rgb(31, 20, 75);
    }

    .about-guide-container .right-block p {
        margin: 0px;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 700;
    }

/* Schedule Dropdown Section */
.schedule-dropdown {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
}

    .schedule-dropdown .dropdown-toggle {
        width: 100%;
        height: auto;
        padding: .5rem 1rem;
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
        line-height: 19.36px;
        text-align: left;
        color: #000;
        background-color: #EBE9F2;
        border-color: #0000;
    }

        .schedule-dropdown .dropdown-toggle::after {
            position: absolute;
            top: 1rem;
            right: 1rem;
        }

    .schedule-dropdown .dropdown-menu {
        padding: 0;
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(3%) !important;
        box-shadow: 0px 0px 10px 3px #0001;
    }

        .schedule-dropdown .dropdown-menu .dropdown-item {
            padding: 0.5rem;
            font-family: 'Inter';
        }

/* About Block */
.about-block {
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(/homeAssets/images/howitworks-about.jpg);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

    .about-block::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
        background-image: linear-gradient(91.04deg, rgb(255, 255, 255) 50.57%, rgba(255, 255, 255, 0.45) 99.43%);
    }

    .about-block::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0px;
        top: 0px;
    }

.about-container {
    position: relative;
    z-index: 4;
}

.about-block .section-title-block {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

    .about-block .section-title-block .cs-btn {
        position: absolute;
        bottom: 0;
        right: 0;
    }

.about-card {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    top: 5rem;
}

    .about-card::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border-radius: 0.25rem;
    }

    .about-card::after {
        content: "";
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        position: absolute;
        top: 1px;
        left: 1px;
        z-index: 1;
        background-color: rgb(255, 255, 255);
        border-radius: 0.25rem;
    }

    .about-card h3 {
        margin: 0 0 1rem 0;
        position: relative;
        z-index: 2;
        font-family: "Noticia Text";
        font-size: 1.75rem;
        font-weight: 700;
        color: #1F144B;
    }

    .about-card p {
        margin: 0px;
        position: relative;
        z-index: 2;
        font-size: 1rem;
        font-weight: 400;
    }

/* About CTA Block */
.about-cta--container {
    padding: 3.5rem !important;
    border-radius: .25rem;
    background-color: #EBE9F2;
    background-image: url(/homeAssets/images/stars.png);
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
}

    .about-cta--container .section-title-block {
        max-width: 66%;
    }

/* About Page Hero */
.about-hero {
    background-image: url(/homeAssets/images/about-page-hero.png);
    background-position: center left;
}

/* About Card Icon */
.about-card-icon {
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    margin: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .5rem;
}

    .about-card-icon::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 0;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border-radius: 0.25rem;
    }

    .about-card-icon::after {
        content: "";
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        position: absolute;
        top: 2px;
        left: 2px;
        z-index: 1;
        background-color: rgb(255, 255, 255);
        border-radius: 0.25rem;
    }

    .about-card-icon img,
    .about-card-icon h5,
    .about-card-icon p,
    .about-card-icon a {
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }

    .about-card-icon img {
        width: auto;
        height: 5rem;
    }

    .about-card-icon h5 {
        width: 100%;
        margin: 0;
        font-family: Noticia Text;
        font-size: 1.75rem;
        font-weight: 700;
        text-align: center;
        color: #33227d;
    }

    .about-card-icon p {
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
        text-align: center;
    }

/* About Card Ligh Blue */
.about-card-light-blue {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    margin: 0;
    background-color: #EBE9F2;
    border-radius: 4px;
}

    .about-card-light-blue h5 {
        margin: 0 0 1rem 0;
        font-family: "Noticia Text";
        font-size: 1.5rem;
        font-weight: 700;
        color: #1F144B;
    }

    .about-card-light-blue p {
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
    }

/* About Card Ligh Blue */
.about-card-light {
    width: 100%;
    height: auto;
    padding: 1.5rem 0;
    margin: 0;
    background-color: #0000;
    border-radius: 4px;
}

    .about-card-light h5 {
        margin: 0 0 1rem 0;
        font-family: "Noticia Text";
        font-size: 1.75rem;
        font-weight: 700;
        color: #1F144B;
    }

    .about-card-light p {
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
    }

/* Contact Page */
.contact-block {
    font-family: "Inter";
    background-color: #efefef55;
}

.contact-form-block h2 {
    margin: 0;
    font-size: 1.85rem;
}

.contact-info-block {
    width: 100%;
    height: auto;
    padding: 0 2rem;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem;
    border-radius: 1rem;
    font-family: 'Inter';
}

    .contact-info-block h2 {
        margin: 0;
        font-size: 1.85rem;
    }

    .contact-info-block .info h6 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: #33227d;
    }

    .contact-info-block .info {
        margin: .5rem 0;
        padding-left: 3rem;
        position: relative;
    }

        .contact-info-block .info a {
            font-size: 1rem;
            font-weight: 400;
            text-decoration: none;
            position: relative;
            color: #33227d;
            word-break: break-all;
        }

            .contact-info-block .info a::after {
                content: "";
                width: 0px;
                height: 1px;
                padding: 0px;
                margin: 0px;
                position: absolute;
                left: 0px;
                bottom: 1px;
                background-color: rgb(51, 34, 125);
                background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
                transition: all 0.1s ease-in-out 0s;
            }

            .contact-info-block .info a:hover::after {
                width: 100%;
            }

.contact-social-icons {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-social-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #33227d;
    text-decoration: none;
    border-radius: 1.5rem;
    transition: .3s ease all;
}

.contact-info-block .info p {
    margin: 0;
}

.contact-social-icon:hover {
    color: #33227d;
    background-color: #fff;
}

.contact-block .form-control {
    min-height: 3rem;
    border-color: #33227d33;
    border-radius: .75rem;
}

    .contact-block .form-control:focus {
        border-color: #33227d;
        box-shadow: 0px 0px 0px 5px #33227d11;
    }

.contact-block input[type="submit"] {
    padding: .45rem 3.5rem;
    margin: 0 auto;
    margin-right: 0;
}

.contact-block h2 {
    font-family: "Noticia Text";
    font-size: 1.65rem;
    font-weight: 700;
    color: #33227d;
}

    .contact-block h2.__btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .contact-block h2.__btn a {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            font-size: 1rem;
            font-weight: 400;
            white-space: nowrap;
        }

.contact-form-block {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.contact-info-block .info .icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background-color: #33227d;
    border-radius: 3rem;
}

.contact-block .dt-search .form-control {
    width: 12rem;
    height: 2.25rem;
    min-height: 2.25rem;
    margin: 0 .5rem;
    border-radius: .5rem;
}

.contact-block .dt-length select {
    height: 2.25rem;
    min-height: 2.25rem;
    margin: 0 .5rem !important;
    border-radius: .5rem;
}

.contact-block .dt-container .dataTable {
    width: calc(100% - 1rem) !important;
    margin: .5rem auto 0 auto;
}

.contact-block .dt-container .dt-column-title {
    white-space: nowrap;
}

.contact-block .table-responsive.py-3 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.contact-block .table-responsive .row:first-child {
    margin-top: 0 !important;
}

/* Expert Testimony Block */
.expert-testimony-block {
    background-color: rgb(255, 255, 255);
}

.expert-testimony-container {
    width: 50%;
    height: auto;
}

    .expert-testimony-container .section-title-block {
        max-width: 800px;
        justify-content: center;
        margin: 0 auto;
    }

        .expert-testimony-container .section-title-block p {
            margin: 0px;
            font-family: Inter;
            font-size: 1rem;
            font-weight: 400;
            line-height: 19.36px;
            text-align: center;
        }

.expert-testimony-video {
    width: 85%;
    height: auto;
    padding: 0px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1rem;
}

    .expert-testimony-video figure {
        width: 100%;
        height: auto;
        padding: 0px;
        margin: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgb(217, 217, 217);
        border-radius: 1rem;
        border: 1px solid rgb(31, 20, 75);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
        overflow: hidden;
    }

        .expert-testimony-video figure video {
            width: 100%;
            height: auto;
            margin: 0;
            padding: 0;
            display: block;
        }

.expert-testimony-video-btn {
    width: 5rem;
    height: 5rem;
    padding: 0px;
    margin: 0px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    background-image: url("/homeassets/images/play-button.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0px;
    transition: all 0.3s ease-in-out 0s;
}

    .expert-testimony-video-btn:hover {
        transform: scale(1.125);
    }

/* User Profile Page */
.balance-block {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0 auto 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background-color: #0001;
    border-radius: 1rem;
}

.balance-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #7a8599;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    gap: .5rem;
}

.balance-ammount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #33227d;
}

.recharge-block {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 1.5rem auto;
    background-color: #0001;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.recharge-title {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8rem;
    color: #5e5e5e;
    text-transform: capitalize;
}

.recharge-widget {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.recharge-widget-item {
    width: calc(25% - .75rem);
    height: auto;
    padding: 1rem 1.5rem;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 400;
    color: #33227d;
    border-radius: .8rem;
    background-color: #fff;
    border: .1rem solid #ddd;
    cursor: pointer;
}

.recharge-promo {
    width: 45%;
    height: auto;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
}

.recharge-promo-title {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8rem;
    color: #5e5e5e;
    text-transform: capitalize;
}

.recharge-promo-form-group {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 1rem;
}

    .recharge-promo-form-group [type="text"] {
        width: 100%;
        height: auto;
        padding: .5rem .5rem;
        margin: 0;
        border: 1px solid #000;
        border-radius: .8rem;
        background-color: #fff;
    }

    .recharge-promo-form-group [type="submit"] {
        width: 20%;
        height: auto;
        padding: 0 !important;
        margin: 0;
        border: 1px solid #33227d;
        border-radius: .8rem;
        color: #fff;
        background-color: #33227d;
    }

.topup-block {
    width: 45%;
    height: auto;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    border-radius: .8rem;
}

    .topup-block .title {
        font-size: 1.25rem;
        font-weight: 400;
        color: #7a8599;
    }

    .topup-block .sub-title {
        font-size: 1.5rem;
        line-height: 3.6rem;
        font-weight: 700;
        color: #7a8599;
    }

.card-details-form {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.card-tab {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    color: #999 !important;
    background-color: #fff;
    border-radius: 1rem !important;
}

    .card-tab.active {
        color: #000 !important;
        background-color: #fff;
    }

.account-tablist {
    width: 100% !important;
    height: auto;
    padding: 0;
    margin: 0;
}

    .account-tablist .nav-link {
        padding: .5rem 1rem;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.895rem;
        color: #33227d;
    }

        .account-tablist .nav-link i {
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #33227d;
            border-radius: .25rem !important;
            font-size: 1rem;
        }

        .account-tablist .nav-link.active {
            color: #33227d;
        }

            .account-tablist .nav-link.active i {
                color: #33227d;
                background-color: #fff;
            }

#completed-call-list .table thead,
#schedules-call-list .table thead {
    background-color: #efefef;
}

#completed-call-list .table th,
#schedules-call-list .table th {
    padding: 1rem 2rem 1rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: #33227d;
    background-color: #0000;
}

#completed-call-list .table td,
#schedules-call-list .table td {
    text-align: center;
    white-space: nowrap;
    padding: 1rem;
}

    #completed-call-list .table td a,
    #schedules-call-list .table td a {
        display: block;
        font-size: small;
        font-weight: 700;
        text-decoration: none;
    }

        #completed-call-list .table td a:hover,
        #schedules-call-list .table td a:hover {
            text-decoration: underline;
        }

.profile-image-form {
    width: 100%;
    height: auto;
    padding: 0;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.profile-image-display {
    width: 100%;
    height: 100%;
    max-width: 8rem;
    max-height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1rem;
    background-color: #efefef55;
}

    .profile-image-display img {
        width: 100%;
        height: auto;
    }

.profile-image-input {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-image-message {
    width: fit-content;
    height: auto;
    padding: 1rem;
    margin: 0;
    color: #33227d;
    background-color: #33227d11;
    border-radius: 1rem;
}

.verify-device-block {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0 auto;
    background-color: #eeeeee;
    border-radius: 1rem;
}

.verify-device-inner {
    width: 35%;
    height: auto;
    padding: 3rem 0;
    margin: 0 auto;
    background-color: #eeeeee;
    border-radius: 1rem;
    text-align: center;
}

.verify-device-block .message {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0 auto 1rem auto;
    color: #33227d;
    background-color: #33227d11;
    border-radius: 1rem;
}

.verify-device-inner a {
    text-decoration: none;
    color: #33227d;
}

.verify-device-inner p {
    margin: 0;
    font-weight: 600;
    color: #212529bf;
}

.verify-device-inner .form-control {
    text-align: center;
}

/* Custom Range For Rating */
.review-form {
    width: 100%;
    height: auto;
    padding: .5rem 1.5rem;
    margin: 0;
    background-color: #eeeeee;
    border-radius: 1rem;
}

.custom-range-for-rating {
    width: fit-content;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
}

    .custom-range-for-rating [range-rate-item] {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .custom-range-for-rating .fa-solid[range-rate-item] {
        color: rgb(253, 141, 3);
    }

.review-form .form-control {
    min-height: 10rem;
}

/* Compatibility Block */
.compatibility-block .section-title-block.inline h2 {
    flex: 2;
}

.compatibility-block .section-title-block.inline p {
    flex: 8;
}

/* review-listing css */
.review-listing-item {
    width: calc(100% - 2rem / 2);
    height: 100%;
    padding: 1rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    background-color: #efefef;
    border-radius: 1rem;
    border: 1px solid #33227d;
}

    .review-listing-item:hover,
    .review-listing-item.selected-staff {
        cursor: pointer;
        box-shadow: 0px 0px 0px 5px #33227d11;
        filter: brightness(101%);
    }

.review-listing-item-img {
    width: 10rem;
    height: 10rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    overflow: hidden;
}

    .review-listing-item-img img {
        min-width: 100%;
        min-height: 100%;
        height: auto;
    }

.review-listing-item-content {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: relative;
}

    .review-listing-item-content .author {
        width: 75%;
        height: auto;
        padding: 0;
        margin: 0;
        font-weight: 600;
    }

    .review-listing-item-content .message {
        width: 2rem;
        height: 2rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        color: #fff;
        background-color: rgb(253, 141, 3);
        border-radius: 3rem;
        position: absolute;
        top: 0;
        right: 0;
    }

    .review-listing-item-content .order-date {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
    }

        .review-listing-item-content .order-date .order {
            width: fit-content;
        }

        .review-listing-item-content .order-date .date {
            width: fit-content;
        }

            .review-listing-item-content .order-date .order p,
            .review-listing-item-content .order-date .date p {
                margin: 0;
                font-weight: 500;
            }

            .review-listing-item-content .order-date .order span,
            .review-listing-item-content .order-date .date span {
                margin: 0;
                font-size: .75rem;
                line-height: 0;
            }

    .review-listing-item-content .rating {
        color: rgb(253, 141, 3);
    }

.review-listing .owl-buttons {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-listing .owl-prev,
.review-listing .owl-next {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    margin: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* Payment Desclaimer Popup - Modal */
#paymentDiscliamerPopup {
    width: 100vw !important;
    height: 100vh !important;
    display: none !important;
    justify-content: center;
    align-items: center;
    font-family: "Inter";
}

    #paymentDiscliamerPopup.show {
        display: flex !important;
    }

/* Guide List Hero Block */
.guide-list-hero-block {
    background-image: url(/homeassets/images/guide-list-hero-block.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    top: 0;
}

/**/
.topics-detail-hero-block {
    background-image: url(/homeassets/images/guide-list-hero-block.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    top: 0;
}

    .topics-detail-hero-block .hero-container {
        padding-right: 0 !important;
    }

/* Guide List Search Filter */
.guide-list-search-filter {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    margin: 0;
    position: relative;
    background-color: #EBE9F240;
    border-radius: 0.5rem 0.5rem 0 0;
}

/* Pagination */
.cs-pagination {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 1.5rem auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .cs-pagination::before,
    .cs-pagination::after {
        content: "";
        width: 100%;
        height: 2px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
    }

    .cs-pagination::before {
        top: 0;
    }

    .cs-pagination::after {
        bottom: 0;
    }

.cs-pagination-item,
.cs-pagination-previous,
.cs-pagination-next {
    width: auto;
    height: auto;
    padding: .5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1f144b;
    background-color: #0000;
    cursor: pointer;
    transition: .3s ease all;
    font-family: 'Inter';
    font-weight: 400;
    text-transform: capitalize;
}

    .cs-pagination-item:hover,
    .cs-pagination-previous:hover,
    .cs-pagination-next:hover {
        color: #fff;
        background-color: #1f144b;
    }

    .cs-pagination-item.disabled,
    .cs-pagination-previous.disabled,
    .cs-pagination-next.disabled,
    .cs-pagination-item.disabled:hover,
    .cs-pagination-previous.disabled:hover,
    .cs-pagination-next.disabled:hover {
        opacity: .5;
        color: #1f144b;
        background-color: #0000;
    }

    .cs-pagination-item.active {
        color: #fff;
        background-color: #1f144b;
    }

/* Guide List Search Filter */
.guide-list-search-filter .accordion-button {
    padding: .75rem 1rem;
    background-color: #EBE9F2;
    border-radius: .5rem !important;
    font-family: 'Inter';
    border: 1px solid #0000;
    box-shadow: none !important;
}

    .guide-list-search-filter .accordion-button[aria-expanded="true"] {
        background-color: #fff;
        border-color: #ada7cb;
        box-shadow: none;
    }

.guide-list-search-filter .accordion-body {
    padding: 0;
    margin: 1rem 0;
    background-color: #fff;
    border: 1px solid #ADA7CB;
    border-radius: .5rem !important;
}

.guide-list-search-filter .accordion-item {
    background-color: #0000;
    border: none;
}

.guide-list-search-filter .form-wrapper {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .guide-list-search-filter .form-wrapper button[type=submit] {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: .5rem;
        border: none;
        background-color: #0000;
        font-size: 1.25rem;
    }

    .guide-list-search-filter .form-wrapper input[type=text] {
        width: 100%;
        height: auto;
        padding: .75rem 1rem;
        margin: 0;
        border: 1px solid #ADA7CB;
        border-radius: .5rem;
        outline: none;
        font-family: 'Inter';
        font-weight: 300;
    }

        .guide-list-search-filter .form-wrapper input[type=text]:focus {
            box-shadow: 0px 0px 0px 3px #ada7cb33;
        }

.guide-list-search-filter .accordion-body label {
    width: 100%;
    height: auto;
    padding: 0rem 1rem 0 2rem;
    margin: 1rem auto;
    position: relative;
}

    .guide-list-search-filter .accordion-body label input[type=checkbox] {
        position: absolute;
        left: 1rem;
    }

    .guide-list-search-filter .accordion-body label span {
        font-family: 'Inter';
        cursor: pointer;
    }

.guide-list-search-filter h5 {
    margin-bottom: 1rem;
    font-family: Noticia Text;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}

/* Chat Modal */
.chat-modal {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

    .chat-modal.show {
        display: flex !important;
    }

    .chat-modal .modal-dialog {
        width: 100%;
    }

    .chat-modal .modal-header {
        width: 100%;
        height: auto;
        padding: 1rem;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .chat-modal .modal-header .btn-grp {
            width: auto;
            height: auto;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

            .chat-modal .modal-header .btn-grp button {
                width: 1.5rem;
                height: 1.5rem;
                padding: 0;
                margin: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #7f7f7f;
                border: none;
                background-color: #0000;
                background-image: none;
                font-size: 1.5rem;
                opacity: 1;
            }

/* Chat Block */
.chat-block {
    width: 100%;
    max-height: 50vh;
    padding: 0;
    margin: 0;
    position: relative;
}

    .chat-block .message {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

        .chat-block .message.in-comming {
            flex-direction: row;
        }

        .chat-block .message .chat-content {
            width: calc(100% - 2.5rem);
            height: auto;
            padding: .5rem;
            margin: 0;
            border-radius: .5rem;
            position: relative;
        }

        .chat-block .message.in-comming .chat-content {
            background-color: #cfcfcf;
        }

            .chat-block .message.in-comming .chat-content::after {
                content: "";
                position: absolute;
                width: 0px;
                height: 0px;
                border-top: 5px solid transparent;
                border-right: 5px solid #cfcfcf;
                border-bottom: 5px solid transparent;
                left: -4px;
                top: 6px;
            }

            .chat-block .message.in-comming .chat-content span,
            .chat-block .message.out-going .chat-content span {
                display: inline-block;
                word-break: break-all;
            }

        .chat-block .message.out-going {
            flex-direction: row-reverse;
        }

            .chat-block .message.out-going .chat-content {
                background-color: #efefef;
            }

                .chat-block .message.out-going .chat-content::after {
                    content: "";
                    position: absolute;
                    width: 0px;
                    height: 0px;
                    border-top: 5px solid transparent;
                    border-right: 5px solid #efefef;
                    border-bottom: 5px solid transparent;
                    right: -4px;
                    top: 6px;
                    transform: rotate(180deg);
                }

        .chat-block .message .profile-pic {
            width: 2rem;
            height: 2rem;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 2.5rem;
        }

        .chat-block .message.in-comming .profile-pic {
            color: #fff;
            background-color: #33227D;
        }

        .chat-block .message.out-going .profile-pic {
            color: #fff;
            background-color: rgb(253, 141, 3);
        }

/* Horo Scope Detail Pgae */
.horoscope-detail-hero-block .filter-tabs {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

    .horoscope-detail-hero-block .filter-tabs li {
        padding-left: 1.5rem;
        position: relative;
    }

        .horoscope-detail-hero-block .filter-tabs li::before {
            content: "";
            width: 0.55rem;
            height: .55rem;
            padding: 0;
            margin: 0;
            position: absolute;
            top: calc(50%);
            left: 0;
            transform: translateY(-50%);
            background-color: #fff;
            border-radius: 1rem;
        }

        .horoscope-detail-hero-block .filter-tabs li a {
            font-family: Inter;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }

            .horoscope-detail-hero-block .filter-tabs li a.active {
                color: #fd8d03;
            }

.horoscope-detail-zodiac-block {
    position: relative;
}

    .horoscope-detail-zodiac-block .zodiac-figure {
        background-color: #ADA7CB;
    }

        .horoscope-detail-zodiac-block .zodiac-figure.active {
            background-color: rgb(253, 141, 3);
        }

    .horoscope-detail-zodiac-block .zodiac-container {
        padding: 1.5rem;
    }

    .horoscope-detail-zodiac-block .zodiac-figure img {
        width: 65%;
        height: auto;
    }

    .horoscope-detail-zodiac-block .zodiac-widget {
        padding: 0;
        background-color: #0000;
        border: none !important;
    }

    .horoscope-detail-zodiac-block .zodiac-figure {
        width: 5rem;
        height: 5rem;
    }

.horoscope-detail-compatibility-title {
    width: 20%;
    margin: 0;
    color: #1F144B;
    position: relative;
    z-index: 3;
    font-family: Noticia Text;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.horoscope-detail-compatibility-block .compatibility-list {
    width: 80%;
}

    .horoscope-detail-compatibility-block .compatibility-list p {
        margin: 0;
    }

.horoscope-detail-compatibility-block .compatibility-row {
    gap: 2.5%;
}

.horoscope-detail-about-facts {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 1rem 0;
    position: relative;
}

    .horoscope-detail-about-facts ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .horoscope-detail-about-facts ul li {
            margin-bottom: .5rem;
        }

            .horoscope-detail-about-facts ul li:last-child {
                margin-bottom: 0;
            }

.horoscope-detail-about-content {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 1rem 0;
    position: relative;
}

.horoscope-detail-onlineguides-block {
    background-color: #EBE9F2;
}

.horoscope-detail-article-block {
    background-color: #EBE9F2;
}

    .horoscope-detail-article-block .article-item {
        background-color: #fff;
    }

/* Calendar UI */
.fc-header-title h2 {
    color: #33227d;
}

.fc-state-default {
    border-color: #33227d !important;
    color: #33227d !important;
}

.fc-state-down,
.fc-state-active {
    color: #fff !important;
    background-color: #aaa !important;
}

.fc-state-disabled {
    background-color: #fff;
}

.fc-border-separate tr.fc-last th {
    color: #33227d;
    border-color: #33227d;
}

.fc-grid .fc-day-number {
    color: #33227d;
}

.fc-state-highlight {
    background: #f7f7f7 !important;
}

    .fc-state-highlight > div > div.fc-day-number {
        background-color: #33227d !important;
    }

.fc-event.success {
    color: #fff;
    background-color: #33227d !important;
    border-color: #33227d !important;
    border: none !important;
    display: block;
}

.fc-week .fc-day > div .fc-day-number {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc-event-inner {
    padding: 5px;
    border: none !important;
}

.fc-widget-header {
    color: #33227d !important;
}

.fc-state-disabled {
    background-color: #aaaaaa !important;
    opacity: .5;
}

.fc-ltr .fc-event-hori.fc-event-end,
.fc-rtl .fc-event-hori.fc-event-start {
    background-color: #33227d29 !important;
    border-radius: 2rem;
    color: #33227d !important;
}

.fc-state-hover {
    background-color: #aaaaaa33 !important;
}

/* Blog List Page */
.blog-list-hero-block {
    background-image: url(/homeAssets/images/blog-list-hero.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Blog Verticle */
.article-item.article-horizontal {
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

    .article-item.article-horizontal figure {
        width: 45%;
        height: 20rem;
    }

    .article-item.article-horizontal .article-body h3 {
        font-family: Noticia Text;
        font-size: 2.125rem;
        font-weight: 700;
        text-align: left;
        color: rgb(92, 78, 151);
    }

    .article-item.article-horizontal .article-body p {
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
    }

    .article-item.article-horizontal .article-body {
        width: 55%;
        padding: 3rem;
        justify-content: center;
    }

/* Blog Detail Hero Block */
.blog-detail-hero-block {
    background-color: #EBE9F2;
}

.blog-detail-hero-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

    .blog-detail-hero-container .content {
        width: 50%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .blog-detail-hero-container .content .category {
            width: fit-content;
            height: auto;
            padding: .5rem .85rem;
            margin: 0 0 1rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            background-image: linear-gradient(127.57deg, #33227D 41.24%, #441F6F 48.15%, #841540 70.87%, #B30E1D 90.62%, #D00A07 105.43%, #DB0900 114.32%);
            font-family: Inter;
            font-size: .85rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .blog-detail-hero-container .content h1 {
            margin: 0 0 1rem 0;
            font-family: Noticia Text;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .blog-detail-hero-container .content .date-auth {
            width: 100%;
            height: auto;
            padding: 0;
            margin: 0 0 1rem 0;
            display: flex;
            /* justify-content: flex-start;*/
            justify-content: center;
            align-items: center;
            position: relative;
        }

            .blog-detail-hero-container .content .date-auth .date {
            }

            .blog-detail-hero-container .content .date-auth::before,
            .blog-detail-hero-container .content .date-auth::after {
                content: "";
                width: 100%;
                height: 2px;
                padding: 0;
                margin: 0;
                position: absolute;
                top: 0;
                left: 0;
                background-image: linear-gradient(115.66deg, #33227D 10.25%, #441F6F 14%, #841540 26.34%, #B30E1D 37.07%, #D00A07 45.12%, #DB0900 49.94%);
            }

            .blog-detail-hero-container .content .date-auth .auth,
            .blog-detail-hero-container .content .date-auth .date {
                padding: 1rem;
                font-family: Inter;
                font-size: 1rem;
                font-weight: 500;
                color: #33227D;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
            }

            .blog-detail-hero-container .content .date-auth::after {
            }

            .blog-detail-hero-container .content .date-auth::after {
                top: 100%;
            }

            /*.blog-detail-hero-container .content .date-auth .date::before {
                content: "";
                width: .5rem;
                height: .5rem;
                position: absolute;
                right: -0.25rem;
                background-color: #33227d;
                border-radius: 1rem;
            }*/

/* Blog Content Block */
.blog-content-block h1,
.blog-content-block h2,
.blog-content-block h3,
.blog-content-block h4,
.blog-content-block h5,
.blog-content-block h6,
.blog-content-block h1,
.blog-content-block p {
    margin-bottom: 1rem;
}

.blog-content-block h2 {
    color: #33227d;
    font-family: Inter;
    font-size: 2rem;
    font-weight: 700;
}

.blog-content-block h3 {
    font-family: Inter;
    font-size: 1.62500rem;
    font-weight: 600;
}

.blog-content-block p {
    font-family: Inter;
    font-size: 1rem;
    font-weight: 400;
}

.blog-detail-hero-container .content nav .breadcrumb {
    margin-bottom: 0;
}

.blog-detail-hero-container .breadcrumb-item,
.blog-detail-hero-container .breadcrumb-item a {
    font-family: Inter;
    font-size: small;
    font-weight: 500;
    color: #33227D;
    text-transform: capitalize;
    text-decoration: none;
}

    .blog-detail-hero-container .breadcrumb-item.active {
        opacity: .5;
    }

    .blog-detail-hero-container .breadcrumb-item a:hover {
        text-decoration: underline;
    }

.blog-detail-image {
    width: 50%;
    height: auto;
    padding: 0;
    margin: 0;
}

    .blog-detail-image img {
        width: 100%;
        height: auto;
    }

#blogContent {
    width: 75%;
    height: auto;
    margin: 0 auto;
}

/* Topic */
.topic-list-hero-block {
    background-image: url(/homeAssets/images/guide-list-hero-block.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .topic-list-hero-block .hero-container {
        top: 0rem;
    }

/* Tarot */
.tarot-hero-block {
    background-image: url(/homeAssets/images/tarot-hero.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Mobile Menu */
.login-mobile-menu {
    display: none;
}

/* Site Review */
.site-review-hero-block {
    background-image: url(/homeAssets/images/guide-list-hero-block.png);
}

/* Tarot Main Page */
.tarot-main-hero {
    background-image: url(/homeAssets/images/tarot-hero.png);
}

.tarot-main-container {
    position: relative;
    top: -1.5rem;
}

/* Image Round */
.img-rounded {
    width: 20rem;
    height: 20rem;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 15rem;
}

    .img-rounded img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.matchmysearch-hero-block {
    background-image: url(/homeAssets/images/MatchMySearch-banner.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .matchmysearch-hero-block .hero-container {
        top: 0;
    }

.matchmysearch-form-filters {
    position: relative;
}

    .matchmysearch-form-filters label {
        width: 100%;
        height: 8rem;
        padding: 1rem;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        color: #333;
        background-color: #0000;
        border-radius: .5rem;
        cursor: pointer;
        font-size: 1.15rem;
        font-weight: 400;
        text-align: center;
        border: 1px solid #0000;
    }

        .matchmysearch-form-filters label::before {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0px;
            left: 0px;
            z-index: 0;
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
            border-radius: 0.25rem;
            transition: .3s ease all;
        }

        .matchmysearch-form-filters label:hover::before {
            background-image: linear-gradient(180deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        }

        .matchmysearch-form-filters label::after {
            content: "";
            width: calc(100% - 4px);
            height: calc(100% - 4px);
            position: absolute;
            top: 2px;
            left: 2px;
            z-index: 1;
            background-color: rgb(255, 255, 255);
            border-radius: 0.25rem;
        }

        .matchmysearch-form-filters label input[type="radio"] {
            position: absolute;
            top: .5rem;
            left: .5rem;
            opacity: 1;
            z-index: 111;
        }

        .matchmysearch-form-filters label span {
            font-family: Noticia Text;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            color: rgb(51 34 125);
            position: relative;
            z-index: 11;
        }

/* Card Recruitimg Process */
.card-recruiting-process {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    position: relative;
}

    .card-recruiting-process::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border-radius: 0.25rem;
    }

    .card-recruiting-process::after {
        content: "";
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        position: absolute;
        top: 1px;
        left: 1px;
        z-index: 1;
        background-color: rgb(255, 255, 255);
        border-radius: 0.25rem;
        background-size: 2.0625rem;
        background-position: .5rem 1.5rem;
        background-repeat: no-repeat;
    }

    .card-recruiting-process h5 {
        flex: 1;
        margin: 0px;
        position: relative;
        z-index: 2;
        font-family: "Noticia Text";
        font-size: 1.75rem;
        font-weight: 700;
        color: #1F144B;
    }

    .card-recruiting-process p {
        flex: 2;
        margin: 0px;
        position: relative;
        z-index: 2;
        font-family: "Inter";
        font-size: 1rem;
        font-weight: 400;
    }

    .card-recruiting-process[tabindex="1"]::after {
        background-image: url(/homeAssets/images/1.png);
    }

    .card-recruiting-process[tabindex="2"]::after {
        background-image: url(/homeAssets/images/2.png);
    }

    .card-recruiting-process[tabindex="3"]::after {
        background-image: url(/homeAssets/images/3.png);
    }

    .card-recruiting-process[tabindex="4"]::after {
        background-image: url(/homeAssets/images/4.png);
    }

    .card-recruiting-process[tabindex="5"]::after {
        background-image: url(/homeAssets/images/5.png);
    }

/* Pricing Block */
.pricing-block {
    color: #fff;
    background-color: #1F144B;
}

/* USP Block */
.usp-block .section-title-block {
    justify-content: flex-start;
    margin-bottom: 1.25rem;
}

/*.usp-block .section-title-block .cs-btn {
position: absolute;
top: 0;
right: 0;
}*/
/* About Community Block */
.about-community-block {
    background-color: #1F144B;
}

    .about-community-block .about-card-light-blue {
        height: 100%;
        background-color: rgb(255 255 255 / 40%);
    }

/* Here For You */
.hereforyou-block {
    position: relative;
}

    .hereforyou-block .cs-img-wrapper {
        width: 30%;
        height: auto;
        position: absolute;
        right: -5%;
    }

/* Our Mission Block */
.ourmission-block {
    position: relative;
    overflow: hidden;
}

    .ourmission-block::before {
        content: "";
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(103.84deg, #EBE9F2 24.96%, #1F144B 56.54%, #EBE9F2 84.51%);
        opacity: 10%;
    }

    .ourmission-block::after {
        content: "";
        width: 35%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 10%;
        left: -5%;
        background-image: url(/homeAssets/images/ourmission.svg);
        background-size: cover;
        background-position: top right;
        background-repeat: no-repeat;
    }

    .ourmission-block .container {
        position: relative;
        z-index: 1;
    }

/* Avatar - Page Title */
.page-title.with-avatar {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .page-title.with-avatar .avatar-wrapper {
        width: fit-content;
        height: auto;
        padding: .5rem;
        margin: 0;
        flex-direction: row;
        gap: .5rem;
        background-color: #fff;
        border-radius: 10px;
    }

        .page-title.with-avatar .avatar-wrapper .avatar {
            width: 2.5rem;
            height: 2.5rem;
        }

        .page-title.with-avatar .avatar-wrapper .avatar-label {
            font-size: 1rem;
            font-weight: 500;
        }

/* Avatar */
.avatar-wrapper {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    background-color: #e9ecef;
    border-radius: 1rem;
}

.avatar {
    width: 15rem;
    height: 15rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .avatar img {
        min-width: 100%;
        min-height: 100%;
    }

.avatar-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #33227d;
}

/* Help Center */
.helpcenter-nav-title {
    margin: 0 0 1rem 0;
    color: rgb(51, 34, 125);
    font-family: Noticia Text;
    font-size: 1.5rem;
    font-weight: 700;
}

.helpcenter-nav {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
}

.helpcenter-navlist {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
}

.helpcenter-nav-item {
    position: relative;
}

.helpcenter-nav-link {
    width: auto;
    height: 100%;
    padding: 1rem;
    margin: 0;
    position: relative;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    background-color: #33227d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    text-align: center;
    border-radius: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
}

    /*    .helpcenter-nav-link::before {
content: "\f061";
font-family: FontAwesome;
font-weight: 900;
color: #FD8D03;
transition: .3s ease all;
position: absolute;
right: -15px;
opacity: 0;
}
.helpcenter-nav-link:hover::before {
transform: translateX(5px);
opacity: 1;
}*/
    .helpcenter-nav-link::after {
        content: "";
        width: 0px;
        height: .25rem;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        bottom: 1px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border: none !important;
        transition: all 0.1s ease-in-out 0s;
    }

    .helpcenter-nav-link:hover::after {
        width: 100%;
    }

/* Common Style - Dashboard */
.dashboard-page-title {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto 1rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .dashboard-page-title h3 {
        margin: 0;
        padding: 0;
        position: relative;
        color: #33227d;
    }

    .dashboard-page-title .__btn-group {
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
    }

/* Staff Dashboard */
.staff-profile-avatar {
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 3rem;
}

    .staff-profile-avatar img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.staff-header .navbar {
    min-height: auto;
}

    .staff-header .navbar .nav-link {
        color: #fff;
    }

.staff-header .dropdown-item {
    font-size: 14px;
}

.staff-header .dropdown-menu[data-bs-popper] {
    top: -1rem;
    margin: 0;
}

/* Admin Dashboard */
.admin-profile-avatar {
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 3rem;
}

    .admin-profile-avatar img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.admin-header .navbar {
    min-height: auto;
}

    .admin-header .navbar .nav-link {
        color: #fff;
    }

.admin-header .dropdown-menu[data-bs-popper] {
    top: -1rem;
    margin: 0;
}

/* Add New Blog Popup */
.add-new-blog-popup input[type="file"].form-control {
    width: 100%;
    height: auto;
    padding: 1rem 1.5rem !important;
}

.add-new-blog-popup .avatar-wrapper {
    padding: 1.5rem;
    gap: .5rem;
}

.add-new-blog-popup .avatar-wrapper-inner {
    width: auto;
    height: 15rem;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1rem;
}

    .add-new-blog-popup .avatar-wrapper-inner img {
        width: auto;
        min-height: 100%;
        border-radius: 0;
    }

/* Review Popup Modal */
.review-popup hr {
    border-color: #dee2e6;
    opacity: 1;
}

.review-popup textarea.form-control {
    min-height: 10rem;
}

/* Dashboard Profile Card */
.dashboard-profile-card {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    background-color: #e9ecef;
    border-radius: 1rem;
}

    .dashboard-profile-card .__avatar {
        width: 10rem;
        height: 10rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        border-radius: 10rem;
        overflow: hidden;
    }

        .dashboard-profile-card .__avatar img {
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
        }

    .dashboard-profile-card .__label {
        width: fit-content;
        height: auto;
        padding: 0;
        margin: 0 auto;
        display: block;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1;
        color: #33227d;
    }

/* Dashboard Table, Block */
._dashboard_block {
    padding: 1rem;
    margin-left: 0;
    margin-right: 0;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #0001;
    box-shadow: 0px 10px 10px -5px #0001;
}

._dashboard_ .dt-length {
    margin-left: .25rem;
}

._dashboard_ .dt-search {
    margin-right: .25rem;
}

/* Dashboard Sidebar */
._dashboard_ .menu-item-inner {
    width: 100%;
    height: auto;
    min-height: 60px !important;
    padding: 0;
    margin: 0;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

._dashboard_sidebar.collapsed .menu-item-inner {
    justify-content: center !important;
}

._dashboard_ .menu-item-inner i {
    width: 2.5rem !important;
    height: 2.5rem !important;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem !important;
}

._dashboard_ .menu-item-title {
    padding: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.1s ease-in-out !important;
}

._dashboard_sidebar.collapsed .menu-item-title {
    display: none;
}

._dashboard_ ._dashboard_body_ .user-profile-dropdown {
    display: none;
}

/* Dashboard Custom Cards */
.cs_card {
    width: 100%;
    height: 100%;
    height: 100%;
    padding: 1.25rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #0001;
    border-left-width: 0.375rem;
    box-shadow: 0px 10px 10px -5px #0001;
}

    .cs_card ._content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .cs_card ._content p {
            margin: 0;
            font-size: 1.75rem;
            font-weight: 700;
        }

        .cs_card ._content span {
            margin: 0;
            font-size: 1.45rem;
            font-weight: 600;
            color: #212529bf;
        }

    .cs_card.-blue {
        border-left-color: #527bf1;
    }

        .cs_card.-blue ._content p {
            color: #527bf1;
        }

    .cs_card.-yellow {
        border-left-color: #f28f4f;
    }

        .cs_card.-yellow ._content p {
            color: #f28f4f;
        }

    .cs_card.-green {
        border-left-color: #66c20d;
    }

        .cs_card.-green ._content p {
            color: #66c20d;
        }

/* */
.personalized-dashboard .categories-container .section-title-block p {
    /*max-width: 59%;
text-align: justify !important;*/
}

/* Default Swal2 Modal - Styled */
.swal2-container {
    background-color: #0009 !important;
    backdrop-filter: blur(3px);
}

.swal2-popup {
    border-radius: .5rem;
}

    .swal2-popup .swal2-title {
        color: #33227d;
    }

    .swal2-popup .swal2-styled {
        border-radius: 0.5rem !important;
    }

        .swal2-popup .swal2-styled.swal2-confirm {
            background-color: #33227d !important;
        }

/* Dynmic Dropdown */
.dynamic-dropdown {
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    margin: 0;
    overflow-wrap: normal;
    border-radius: 6px;
    border: 1px solid rgb(223, 222, 222);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    -webkit-appearance: button;
    appearance: button;
}

    .dynamic-dropdown::after {
        content: "\f078";
        font-family: 'FontAwesome';
        position: absolute;
        right: 1rem;
        font-size: .68rem;
        font-weight: 900;
        transition: .125s ease all;
    }

    .dynamic-dropdown.showDropdown::after {
        transform: rotate(180deg);
    }

    .dynamic-dropdown > ul {
        width: calc(100% - 1rem);
        height: auto;
        max-height: 10rem;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 2.5rem;
        left: .5rem;
        z-index: 5;
        display: none;
        overflow-y: scroll;
        background-color: #fff;
        border-radius: 6px;
        border: 1px solid rgb(223, 222, 222);
        box-shadow: 0px 0px 3px 0px #0001;
    }

        .dynamic-dropdown > ul::-webkit-scrollbar {
            width: 5px !important;
        }

        .dynamic-dropdown > ul::-webkit-scrollbar-track {
            width: 5px !important;
            background-color: #efefef !important;
        }

        .dynamic-dropdown > ul::-webkit-scrollbar-thumb {
            width: 5px !important;
            background-color: #111 !important;
        }

    .dynamic-dropdown.showDropdown > ul {
        display: block;
    }

        .dynamic-dropdown.showDropdown > ul > li {
            list-style: none;
            padding: 0 .5rem;
            margin: .5rem auto;
        }

            .dynamic-dropdown.showDropdown > ul > li > label {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: .5rem;
                cursor: pointer;
            }

    .dynamic-dropdown > span {
        width: 90%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: .5rem;
        overflow: hidden;
    }

        .dynamic-dropdown > span > span
        /*.dynamic-dropdown span.capsule*/ {
            padding: .15rem .5rem;
            font-size: small;
            color: #000;
            background-color: #efefef;
        }

/**/
.signup-cta-block .section-title-block h2 {
    font-size: 1.75rem;
}

.signup-cta-block .section-title-block h5 {
    font-size: 1.65rem;
}

.signup-cta-block .zodiac-widget {
    background-color: #0000 !important;
    border: none !important;
}

    .signup-cta-block .zodiac-widget.active {
        background-color: #fff !important;
    }

.signup-cta-block .zodiac-figure {
    width: 5rem;
    height: 5rem;
}

    .signup-cta-block .zodiac-figure img {
        width: 65%;
        height: auto;
    }

.signup-cta-block .zodiac-widget .zodiac-title a {
    width: fit-content;
    display: block;
    font-size: 1rem;
    text-align: center;
}

.signup-cta-block .zodiac-widget.active .zodiac-title a {
    color: #fd8d03;
}

.signup-cta-block .zodiac-widget .zodiac-title a:hover {
    color: #000;
}

.signup-cta-block .zodiac-widget .zodiac-title a::after {
    display: none;
}

.signup-cta-block .zodiac-widget .zodiac-title a span {
    display: block;
    font-size: small;
    text-align: center;
}

.signup-cta-block .zodiac-widget.active .zodiac-title a span {
    color: #fd8d03;
}

#pills-tabContent h2 {
    margin: 0px;
    color: rgb(51 34 125);
    font-family: Noticia Text;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
}

#pills-tabContent .tab-pane {
    padding: 1rem;
    background-color: #fff;
    border-radius: .5rem;
    border: 1px solid #c7c8c9;
}

/*From: Monu Sarkar
Sent: 12 September 2024 01:38 AM
To: Bharti Gorai <bhartig@chetu.com >
Subject: Copy Paste*/
/* G Fonts */
table.table.dataTable {
    width: 100% !important;
}

/* Header Block */
.header-block {
    width: 100%;
    height: auto;
    padding: 1rem 0px;
    margin: 0px;
    position: sticky;
    top: 0px;
    background-color: rgb(255, 255, 255);
    z-index: 999;
    border-bottom: 1px solid #0001;
    box-shadow: 0px 0px 10px 5px #0001;
}

    .header-block .cs-btn-thin {
        padding: 0.25rem .85rem;
    }

    .header-block .navbar {
        padding: 0px 1rem;
    }

    .header-block .navbar-nav {
        gap: 1rem;
    }

        .header-block .navbar-nav.login-desktop-menu {
            gap: .5rem;
        }

    .header-block .nav-link {
        font-family: Inter;
        font-size: .95rem;
        font-weight: 500;
        color: rgb(51, 51, 51);
        position: relative;
        padding: 0px !important;
        white-space: nowrap;
        box-shadow: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }

        .header-block .nav-link::after {
            content: "";
            width: 0px;
            height: 1px;
            padding: 0px;
            margin: 0px;
            position: absolute;
            left: 0px;
            bottom: 1px;
            background-color: rgb(51, 34, 125);
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
            border: none !important;
            transition: all 0.1s ease-in-out 0s;
        }

        .header-block .nav-link.dropdown-toggle::after {
            content: "\f077";
            width: 1rem;
            height: 1rem;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000 !important;
            background-color: #0000 !important;
            background-image: none;
            border: none !important;
            font-family: "Font Awesome 6 Free";
            font-weight: bold;
            font-size: 12px;
            position: static;
            transform: rotate(180deg);
        }

    .header-block .dropdown-menu {
        width: fit-content;
        height: auto;
        padding: 0;
        margin: 0 !important;
        border: none;
        border-radius: 0;
        top: calc(100% + .45rem) !important;
        left: 50% !important;
        transform: translate(-50%, 5%) !important;
        opacity: 0;
        transition: .5s ease all;
    }

        .header-block .dropdown-menu.show {
            opacity: 1;
        }

        .header-block .dropdown-menu .dropdown-item {
            padding: .5rem 1rem;
            font-family: Inter;
        }

            .header-block .dropdown-menu .dropdown-item:active {
                background-color: #33227d;
            }

        .header-block .dropdown-menu::before {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            border: 10px solid #33227d;
            border-top-color: #0000;
            border-left-color: #0000;
            border-right-color: #0000;
        }

        .header-block .dropdown-menu::after {
            content: "";
            width: 100%;
            height: 3px;
            position: absolute;
            top: 0;
            left: 0;
            background-image: linear-gradient(85.17deg, #33227D 36.06%, #441F6F 41.84%, #841540 60.82%, #B30E1D 77.32%, #D00A07 89.7%, #DB0900 97.13%);
        }

    .header-block .navbar-brand {
        padding: 0;
        margin: 0;
    }

        .header-block .navbar-brand img {
            width: 100%;
            max-width: 10rem;
            height: auto;
        }

/* Profile Dropdown */
.profile-dropdown .dropdown-toggle {
    width: 100%;
    height: auto;
    padding: 0.25rem .85rem !important;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    border-radius: 3rem;
    font-size: 1rem;
    font-weight: 600;
}

    .profile-dropdown .dropdown-toggle::after {
        display: none;
    }

.profile-dropdown .dropdown-menu {
    width: fit-content;
    padding: 0;
    margin: 0;
    top: calc(100% + 1rem) !important;
    left: -50% !important;
    transform: none !important;
    border: none;
    border-radius: .25rem;
    background-color: #fff;
    box-shadow: 0px 10px 10px -5px #0001;
}

    .profile-dropdown .dropdown-menu::before {
        content: "";
        width: 0px;
        height: 0px;
        position: absolute;
        top: -1rem;
        left: 50%;
        transform: translateX(calc(50% - 1rem / 2));
        border: .5rem solid #33227d;
        border-top-color: #0000;
        border-left-color: #0000;
        border-right-color: #0000;
    }

    .profile-dropdown .dropdown-menu .dropdown-item {
        padding: .5rem 1rem !important;
        color: #33227d;
        background-color: #fff;
        font-family: 'Inter';
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: .5rem;
    }

        .profile-dropdown .dropdown-menu .dropdown-item:hover {
            color: #fff;
            background-color: #33227d;
        }

    .profile-dropdown .dropdown-menu li:first-child .dropdown-item {
        border-top-left-radius: .5rem;
        border-top-right-radius: .5rem;
    }

    .profile-dropdown .dropdown-menu li:last-child .dropdown-item {
        border-bottom-left-radius: .5rem;
        border-bottom-right-radius: .5rem;
    }

    .profile-dropdown .dropdown-menu .dropdown-divider {
        margin: 0;
        border-color: #0001;
    }

    .profile-dropdown .dropdown-menu .dropdown-item i {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: .25rem;
    }

    .profile-dropdown .dropdown-menu .dropdown-item:hover i {
        color: #33227d;
        background-color: #fff;
    }

/* Footer Blog */
.footer-block {
    padding: 1.5rem 0px;
    position: relative;
    background-image: url("/homeassets/images/footer-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

    .footer-block::before {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        background-image: url("/homeassets/images/footer-bg-2.svg");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center top;
    }

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-widgets {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .footer-logo img {
        width: 100%;
        max-width: 15rem;
        height: auto;
    }

.footer-social-btns {
    width: auto;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social-btn {
    width: 2.25rem;
    height: 2.25rem;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(173, 167, 203);
    border-radius: 3rem;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 1.125rem;
}

.footer-title {
    margin-bottom: 1rem;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.footer-nav {
    padding: 0px;
    margin: .5rem 0px;
}

.footer-navlist {
    padding: 0px;
    margin: 0px;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
}

.footer-nav-item {
    line-height: normal;
}

/*.footer-nav-link {
    color: rgb(255, 255, 255);
    font-family: Inter;
    font-size: .85rem;
    font-weight: 400;
    text-decoration: none;
}*/

.footer-nav-link {
    color: rgb(255, 255, 255);
    font-family: Inter;
    font-size: .85rem;
    font-weight: 400;
    text-decoration: none;
    min-width: 44px;
    min-height: 44px;
    margin: 8px;
}


.footer-copyright {
    width: 100%;
    height: auto;
    padding: 1rem 0px;
    margin: 3rem auto 0px;
    border-top: 1px solid rgb(92, 78, 151);
    border-bottom: 1px solid rgb(92, 78, 151);
}

    .footer-copyright p {
        margin: 0px;
        color: rgb(255, 255, 255);
        font-family: Inter;
        font-size: 0.85rem;
        font-weight: 400;
        text-align: center;
    }

/* Custom Texts + Buttons For Onboaring Pages */
.cs-btn-onboard-group {
    width: fit-content;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.cs-btn-onboard {
    outline: none;
    padding: .5rem 1.25rem;
    width: 100%;
    border-radius: 0.5rem;
    background-clip: padding-box;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid #0000;
    transition: .1s ease all;
}

    .cs-btn-onboard.-primary {
        background-color: #33227d;
        color: #fff;
        border-color: #33227d;
    }

        .cs-btn-onboard.-primary:hover {
            box-shadow: 0 0 0 5px #33227d33;
        }

    .cs-btn-onboard.-secondary {
        background-color: #fd8d03;
        color: #fff;
        border-color: #fd8d03;
    }

        .cs-btn-onboard.-secondary:hover {
            box-shadow: 0 0 0 5px #fd8d0333;
        }

    .cs-btn-onboard.-cancel {
        background-color: #fff;
        color: #333;
        border-color: #333;
    }

        .cs-btn-onboard.-cancel:hover {
            box-shadow: 0 0 0 5px #d7090333;
        }

/* Custom Texts + Buttons */
.cs-text-violet {
    color: rgb(51, 34, 125) !important;
}

.cs-bg-light-violet {
    background-color: #EBE9F2;
}

.cs-bg-gradient-light {
    background-image: linear-gradient(103.84deg, #EBE9F2 10%, #1F144B 10%, #EBE9F2 10%);
}

.btns {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cs-btn {
    width: fit-content;
    height: auto;
    padding: 0.5rem 1.75rem;
    margin: 1rem 0 1rem 0;
    display: block;
    border-radius: 3rem;
    border: 1px solid rgb(51, 51, 51);
    color: rgb(51, 51, 51);
    background-color: rgb(255, 255, 255);
    text-decoration: none;
    font-family: Inter;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease-in-out 0s;
}

.cs-btn-txt-lg {
    font-size: 1.155rem;
}

.cs-btn-yellow {
    color: rgb(51, 51, 51);
    background-color: rgb(253, 141, 3);
    border-color: rgb(253, 141, 3);
}

    .cs-btn-yellow:hover {
        color: rgb(255, 255, 255);
    }

.cs-btn-violet {
    color: rgb(255, 255, 255);
    background-color: rgb(51, 34, 125);
    border-color: rgb(51, 34, 125);
}

    .cs-btn-violet:hover {
        color: rgb(51, 34, 125);
        background-color: rgb(255, 255, 255);
    }

.cs-btn-transparent {
    color: rgb(255, 255, 255);
    border-color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
}

    .cs-btn-transparent:hover {
        background-color: rgb(253, 141, 3);
    }

.cs-btn-transparent-onhover:hover {
    background-color: #0000 !important;
}

.cs-btn-theme-gradient {
    color: rgb(255, 255, 255);
    border-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(126.94deg, rgb(51, 34, 125) 32.84%, rgb(68, 31, 111) 38.08%, rgb(132, 21, 64) 55.29%, rgb(179, 14, 29) 70.26%, rgb(208, 10, 7) 81.49%, rgb(219, 9, 0) 88.22%);
}

    .cs-btn-theme-gradient:hover {
        background-image: linear-gradient(-126.94deg, rgb(51, 34, 125) 32.84%, rgb(68, 31, 111) 38.08%, rgb(132, 21, 64) 55.29%, rgb(179, 14, 29) 70.26%, rgb(208, 10, 7) 81.49%, rgb(219, 9, 0) 88.22%);
    }

.cs-btn-transparent i {
    color: rgb(253, 141, 3);
    transition: all 0.3s ease-in-out 0s;
}

.cs-btn-transparent:hover i {
    color: rgb(255, 255, 255);
    transform: translateX(5px);
}

.cs-btn-light {
    color: #333333;
    background-color: #EBE9F2;
    border-color: #0000;
}

.cs-btn-icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.cs-btn-thin {
    padding: 0.25rem 1rem;
}

/* Custom Image Wrapper*/
.cs-img-wrapper {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

    .cs-img-wrapper img {
        min-width: 100%;
        min-height: 100%;
    }

/* Section Title */
.section-title-block {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

    .section-title-block h2 {
        margin: 0px;
        color: rgb(51 34 125);
        font-family: Noticia Text;
        font-size: 1.5rem;
        font-weight: 700;
        text-transform: capitalize;
    }

    .section-title-block h5 {
        margin: 0;
        font-family: "Noticia Text";
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        color: #1F144B;
    }

    .section-title-block p {
        margin: 0px;
    }

    .section-title-block.text-only {
        align-items: flex-end;
        flex-wrap: nowrap;
    }

        .section-title-block.text-only h2,
        .section-title-block.text-only p {
            flex: 1 1 0%;
        }

        .section-title-block.text-only p {
            font-family: Inter;
            font-size: 1rem;
            font-weight: 400;
        }

    .section-title-block.with-borders {
        padding-top: .5rem;
        padding-bottom: 1rem;
        position: relative;
    }

        .section-title-block.with-borders::before {
            content: "";
            width: 100%;
            height: 2px;
            position: absolute;
            top: 0;
            left: 0;
            background-color: rgb(51, 34, 125);
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        }

        .section-title-block.with-borders::after {
            content: "";
            width: 100%;
            height: 2px;
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: rgb(51, 34, 125);
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        }

    /* Section Title Block - Inline */
    .section-title-block.inline {
        align-items: flex-start;
        gap: 1rem;
    }

        .section-title-block.inline h2 {
            flex: 2;
        }

        .section-title-block.inline p {
            flex: 4;
        }

/* Compatibility Section */
.compatibility-row {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    margin: 1rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15%;
    position: relative;
    background-color: rgb(239, 239, 239);
    border-radius: 1rem;
}

    .compatibility-row::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border-radius: 1rem;
    }

    .compatibility-row::after {
        content: "";
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        position: absolute;
        top: 1px;
        left: 1px;
        z-index: 1;
        background-color: rgb(255, 255, 255);
        border-radius: 1rem;
    }

.compatibility-title {
    flex: 1;
    margin: 0px;
    font-family: "Noticia Text";
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(31, 20, 75);
    position: relative;
    z-index: 3;
}

.compatibility-list {
    flex: 3;
    width: auto;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.compatibility-item {
    display: block;
    font-family: Inter;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    text-transform: capitalize;
    color: rgb(51, 34, 125);
    position: relative;
}

    .compatibility-item::after {
        content: "";
        width: 0px;
        height: 1px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        bottom: 0px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        transition: all 0.1s ease-in-out 0s;
    }

    .compatibility-item:hover::after {
        width: 100%;
    }

/* Categories Sections */
.categories-block .section-title-block {
    margin-bottom: 1.5rem;
}

.categories-item {
    width: 100%;
    height: 15rem;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

    .categories-item figure {
        width: 100%;
        height: 100%;
        padding: 0px;
        margin: 0px;
        position: relative;
    }

        .categories-item figure img {
            width: auto;
            height: 100%;
            min-width: 100%;
            object-fit: cover;
            transition: all 0.3s ease-in-out 0s;
        }

    .categories-item h5 {
        position: absolute;
        bottom: 1rem;
        left: 1.5rem;
        z-index: 2;
        font-family: "Noticia Text";
        font-size: 1.75rem;
        font-weight: 700;
    }

        .categories-item h5 a {
            color: rgb(255, 255, 255);
            text-decoration: none;
        }

    .categories-item::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        background-image: linear-gradient(rgba(173, 167, 203, 0) 1.41%, rgb(92, 78, 151) 100%);
        transition: .3s ease all;
        transform: translateY(25%);
    }

    .categories-item:hover::before {
        transform: translateY(0%);
    }

    .categories-item:hover figure img {
        transform: scale(1.15);
    }

    .categories-item h5 a::after {
        content: "";
        width: 0px;
        height: 1px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        bottom: 0px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        transition: all 0.3s ease-in-out 0s;
    }

    .categories-item h5 a:hover::after {
        width: 100%;
    }

/* Hero Section */
.hero-block {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    isolation: isolate;
    background-image: url(/homeassets/images/hero-banners.webp);
    /*background-image: url(/homeassets/images/hero-banners.png);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-container {
    padding-right: 22% !important;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    margin: 1rem 0 1rem 0;
    color: rgb(255, 255, 255);
    font-family: Noticia Text;
    font-size: 2.75rem;
    font-weight: 700;
}

.hero-text {
    padding: 0px;
    margin: 1rem 0 1rem 0;
    font-family: Inter;
    font-size: 1.25rem;
    font-weight: 300;
    color: rgb(255, 255, 255);
}

    .hero-text b {
        font-weight: 700;
    }

/* Why Choose Us - Section */
.whychooseus-block {
    width: 100%;
    height: auto;
    background-image: url(/homeassets/images/bg-001.png);
    background-size: auto;
    background-position: right center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.whychooseus-container {
    max-width: calc(1296px);
    padding: 2.5rem !important;
    background-color: rgb(235, 233, 242);
    border-radius: 0.75rem;
    position: relative;
    top: -3rem;
}

.whychooseus-title {
    margin: 0;
    color: rgb(31, 20, 75);
    font-family: Noticia Text;
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
}

.whychooseus-text {
    margin: 0 0 1rem 0;
    font-family: Inter;
    font-size: 1.125rem;
    font-weight: 400;
    color: rgb(0, 0, 0);
}

/* Online Guides - Section */
.onlineguides-block {
    background-image: url("/homeassets/images/bg-001.png");
    background-size: auto;
    background-position: right center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Staff Cards Section */
.staff-card-block {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    position: relative;
    border: 1px solid rgb(173, 167, 203);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.staff-card-match {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: 1;
    background-image: url("/homeAssets/images/star-icon.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

    .staff-card-match .match-content-percent {
        color: #fff;
        line-height: 1;
        font-size: small;
    }

    .staff-card-match .match-content-label {
        color: #fff;
        line-height: 1;
        font-size: small;
    }

.staff-card-label {
    width: auto;
    height: auto;
    padding: 0.35rem 0.75rem;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 50%;
    border-radius: 3rem;
    transform: translateX(-50%) translateY(-50%);
    font-family: Inter;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    /*color: rgb(49, 168, 7);
    border: 1px solid rgb(49, 168, 7);*/
    color: rgb(28, 97, 0);
    border: 1px solid rgb(28, 97, 0);
    background-color: rgb(235, 255, 228);
}

    .staff-card-label.online {
        color: rgb(28, 97, 0);
        border: 1px solid rgb(28, 97, 0);
        background-color: rgb(235, 255, 228);
    }

    .staff-card-label.offline {
        color: rgb(168 7 7);
        border: 1px solid rgb(168 7 7);
        background-color: rgb(255 242 242);
    }

    .staff-card-label.busy {
        color: rgb(157 168 7);
        border: 1px solid rgb(157 168 7);
        background-color: #fdffdf;
    }

.staff-card-img {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border-radius: 10rem;
}

    .staff-card-img img {
        width: auto;
        min-height: 100%;
        object-fit: cover;
    }

.staff-card-details {
    width: 50%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.staff-card-body {
    width: 100%;
    height: auto;
    padding: 0px 1rem;
    margin: 1.25rem auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.staff-card-details h5 {
    width: 100%;
    padding: 0 1rem;
    margin: 0px;
    font-family: "Noticia Text";
    font-size: 1.85rem;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.staff-card-details .heartButton {
    position: absolute;
    top: 0rem;
    right: .5rem;
    font-size: 1.5rem;
}

.staff-card-rating {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

    .staff-card-rating i {
        font-size: 1rem;
    }

        .staff-card-rating i.fill,
        .staff-card-rating i.checked {
            color: rgb(253, 141, 3);
        }

.staff-card-details a {
    margin: 0px;
    font-family: Inter;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 2.5;
    text-align: center;
    color: rgb(31, 20, 75);
    text-decoration: none;
}

.staff-card-details hr {
    width: 100%;
    height: 1px;
    padding: 0px;
    margin: 0px;
    background-color: rgb(153 153 153);
    border: none;
}

.staff-card-details p {
    margin: 0px;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: rgb(173, 167, 203);
}

.staff-card-details h6 {
    margin: 0px;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: rgb(31, 20, 75);
}

.staff-card-footer {
    width: 100%;
    height: auto;
    padding: 1rem 1.5rem;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: rgb(255, 255, 255);
    background-color: rgb(31, 20, 75);
    border-radius: 0px 0px 0.95rem 0.95rem;
}

    .staff-card-footer span {
        color: rgb(173, 167, 203);
        font-family: Inter;
        font-size: 12px;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 2px;
    }

    .staff-card-footer a {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: left;
        color: rgb(255, 255, 255);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: .55rem;
        text-decoration: none;
    }

        .staff-card-footer a img {
            width: auto;
            height: 1.62500rem;
        }

/* Testimonials Section */
.testimonial-block {
    background-image: url(/homeAssets/images/bg-001.png);
    background-size: auto;
    background-position: right center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

    .testimonial-block::before {
        content: "";
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(103.84deg, #EBE9F2 24.96%, #1F144B 56.54%, #EBE9F2 84.51%);
        opacity: 10%;
    }

.testimonial-container {
    position: relative;
    z-index: 3;
}

.testimonial-item {
    width: 100%;
    height: 100%;
    padding: 1rem;
    margin: 0px auto;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    background-color: #fffffff0 !important;
    border-radius: .5rem;
    border: 1px solid #e8e8e8;
}

    .testimonial-item:hover {
        background-color: rgba(0, 0, 0, 0.067);
    }

    .testimonial-item.bg-none {
        background-color: #0000 !important;
    }

.testimonial-card-rating {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 1rem 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

    .testimonial-card-rating i {
        color: rgb(253, 141, 3);
        font-size: 1.25rem;
    }

.testimonial-title {
    margin: 0 0 1rem 0;
    font-family: "Noticia Text";
    font-size: 1.125rem;
    font-weight: 700;
    color: rgb(31, 20, 75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-text {
    font-family: Inter;
    font-size: 1rem;
    font-weight: 400;
    color: rgb(31, 20, 75);
}

.testimonial-author {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 1rem 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 400;
}

    .testimonial-author > span {
        width: 2rem;
        height: 2rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        border-radius: 2rem;
    }

    .testimonial-author span img {
        min-width: 100%;
        min-height: 100%;
    }

/* FAQ's Sectio */
.faq-container {
    max-width: 800px !important;
    margin: 0 auto;
}

.faq-block .accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-block .section-title-block {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container .accordion-item {
    border-color: #0000;
}

.faq-block .section-title-block p {
    font-size: 1.125rem;
    font-weight: 500;
}

.faq-block .section-title-block p {
    font-size: 1.125rem;
    font-weight: 500;
}

.faq-block .accordion-button {
    padding-top: .5rem;
    padding-bottom: .5rem;
    transition: .3s ease all;
}

    .faq-block .accordion-button.collapsed {
        padding-bottom: 1rem;
    }

.faq-block .accordion-item::after {
    content: "";
    width: 100%;
    height: 2px;
    padding: 0px;
    margin: 0px;
    position: absolute;
    bottom: 1px;
    left: 0px;
    background-color: rgb(51, 34, 125);
    background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
}

.faq-block .accordion-button {
    background-color: #0000 !important;
    font-family: Inter;
    font-size: 1.255rem;
    font-weight: 600;
    border: none !important;
    border-radius: 0px !important;
    box-shadow: none !important;
}

.faq-block .accordion-body {
    padding-top: 0;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 500;
}

/* Article Section */
.article-item {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    position: relative;
    border: 1px solid rgb(235, 233, 242);
    border-radius: 1rem;
    background-color: #fff !important;
    transition: all 0.3s ease 0s;
}

    .article-item:hover {
        background-color: rgb(235, 233, 242);
    }

    .article-item figure {
        width: 100%;
        height: 12rem;
        padding: 0px;
        margin: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        border-radius: 1rem;
    }

        .article-item figure img {
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            transition: all 0.3s ease-in-out 0s;
        }

    .article-item:hover figure img {
        transform: scale(1.155);
    }

.article-body {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .article-body time {
        margin: 0px;
        color: rgb(92, 78, 151);
        font-family: Inter;
        font-size: 12px;
        font-weight: 700;
        line-height: 12px;
        letter-spacing: 1px;
    }

    .article-body h3 {
        margin: 0px;
        color: rgb(92, 78, 151);
        font-family: "Noticia Text";
        font-size: 1.35rem;
        font-weight: 700;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

.article-item .link {
    font-family: Inter;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #33227D;
    position: relative;
}

    .article-item .link i {
        color: #FD8D03;
        transform: translateX(5px);
        transition: .3s ease all;
    }

    .article-item .link:hover i {
        transform: translateX(10px);
    }

    .article-item .link::after {
        content: "";
        width: 0px;
        height: 1px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        bottom: 1px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        transition: all 0.1s ease-in-out 0s;
    }

    .article-item .link:hover::after {
        width: calc(100% - 20px);
    }

/* Horoscope Hero Section */
.horoscope-hero-block {
    background-image: url(/homeAssets/images/horoscope-banner.png);
}

.horoscope-detail-hero-block {
    position: relative;
    background-image: none;
}

    .horoscope-detail-hero-block::before {
        content: "";
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        background-image: linear-gradient(119.02deg, #B30E1D 12.19%, #33227D 50.65%, rgba(102, 89, 158, 0.8) 83.41%);
    }

    .horoscope-detail-hero-block::after {
        content: "";
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background-size: 30%;
        background-position: center right;
        background-repeat: no-repeat;
        opacity: 30%;
    }

    .horoscope-detail-hero-block .hero-container {
        z-index: 2;
    }

    .horoscope-detail-hero-block.Aquarius::after {
        background-image: url(/homeAssets/images/zodiac-signs/Aquarius.png);
    }

    .horoscope-detail-hero-block.Aries::after {
        background-image: url(/homeAssets/images/zodiac-signs/Aries.png);
    }

    .horoscope-detail-hero-block.Cancer::after {
        background-image: url(/homeAssets/images/zodiac-signs/Cancer.png);
    }

    .horoscope-detail-hero-block.Capricorn::after {
        background-image: url(/homeAssets/images/zodiac-signs/Capricorn.png);
    }

    .horoscope-detail-hero-block.Gemini::after {
        background-image: url(/homeAssets/images/zodiac-signs/Gemini.png);
    }

    .horoscope-detail-hero-block.Leo::after {
        background-image: url(/homeAssets/images/zodiac-signs/Leo.png);
    }

    .horoscope-detail-hero-block.Libra::after {
        background-image: url(/homeAssets/images/zodiac-signs/Libra.png);
    }

    .horoscope-detail-hero-block.Pisces::after {
        background-image: url(/homeAssets/images/zodiac-signs/Pisces.png);
    }

    .horoscope-detail-hero-block.Sagittarius::after {
        background-image: url(/homeAssets/images/zodiac-signs/Sagittarius.png);
    }

    .horoscope-detail-hero-block.Scorpio::after {
        background-image: url(/homeAssets/images/zodiac-signs/Scorpio.png);
    }

    .horoscope-detail-hero-block.Taurus::after {
        background-image: url(/homeAssets/images/zodiac-signs/Taurus.png);
    }

    .horoscope-detail-hero-block.Virgo::after {
        background-image: url(/homeAssets/images/zodiac-signs/Virgo.png);
    }

/* Become Guide Section */
.become-guide-block {
    background-image: url(/homeAssets/images/become-guide-banner.png);
}

/* Zodiac Section */
.zodiac-block {
    width: 100%;
    height: auto;
    position: relative;
}

.zodiac-container {
    max-width: calc(1296px);
    padding: 1rem !important;
    background-color: rgb(235, 233, 242);
    border-radius: 0.75rem;
    position: relative;
    top: -3rem;
}

.zodiac-widget {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(153, 153, 153, 0);
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out 0s;
}

    .zodiac-widget:hover {
        background-color: rgba(255, 255, 255, 0.333);
        border-color: rgba(153, 153, 153, 0.2);
    }

.zodiac-figure {
    width: 6.25rem;
    height: 6.25rem;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(253, 141, 3);
    border-radius: 6.25rem;
}

    .zodiac-figure img {
        width: 80%;
        height: auto;
    }

    .zodiac-figure a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.zodiac-title {
    margin: 0px;
    font-family: "Noticia Text";
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
}

    .zodiac-title a {
        color: rgb(31, 20, 75);
        text-decoration: none;
        position: relative;
    }

        .zodiac-title a::after {
            content: "";
            width: 0px;
            height: 1px;
            padding: 0px;
            margin: 0px;
            position: absolute;
            left: 0px;
            bottom: 0px;
            background-color: rgb(51, 34, 125);
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
            transition: all 0.1s ease-in-out 0s;
        }

        .zodiac-title a:hover::after {
            width: 100%;
        }

.zodiac-timeline {
    padding: 0.25rem 1rem;
    margin: 0px;
    font-family: Inter;
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
    background-color: rgb(255, 255, 255);
    border-radius: 3rem;
}

/* How It Works*/
.hero-block.howitworks {
    background-image: url(/homeassets/images/guide-list-hero-block.png);
    background-size: cover;
    background-position: bottom right;
    background-attachment: initial;
}

/* Steps BLock */
.steps-block {
    width: 100%;
    height: auto;
    position: relative;
}

.steps-container {
    max-width: calc(1296px);
    padding: 1rem !important;
    background-color: rgb(235, 233, 242);
    border-radius: 0.75rem;
    position: relative;
    top: -3rem;
}

.step-item {
    width: 85%;
    height: auto;
    padding: 0px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-head {
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    flex-direction: column;
}

    .step-head h5 {
        margin: 0px;
        font-family: "Noticia Text";
        font-size: 1.5rem;
        font-weight: 700;
        color: rgb(31, 20, 75);
        text-align: center;
    }

.step-icon {
    width: auto;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .step-icon img {
        width: 5rem;
        height: auto;
    }

.step-head p {
    margin: 0px;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 400;
    line-height: 19.36px;
    text-align: center;
}

/* Guides Hero Section */
.guides-hero-block {
    padding-top: 2rem;
    padding-bottom: 2rem; 
    /*padding-top: 5rem;
    padding-bottom: 5rem;*/
    background-color: rgb(235, 233, 242);
}

.guides-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5rem;
}

.guides-hero-image {
    width: 20rem;
    height: 20rem;
    /*width: 30rem;
    height: 30rem;*/
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20rem;
   /* border-radius: 30rem;*/
}

    .guides-hero-image img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.guides-hero-content {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
}

    .guides-hero-content h1 {
        margin: 0px;
        padding: 0;
        padding-right: 2.5rem;
        font-family: "Noticia Text";
        font-size: 3.75rem;
        font-weight: 700;
        text-transform: capitalize;
        color: rgb(31, 20, 75);
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        gap: 1rem;
    }

        .guides-hero-content h1 .heartButton {
            width: 2.5rem;
            height: 2.5rem;
            padding: 0;
            margin: 0px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            top: 0;
            right: 0;
            font-size: 2rem;
        }

.guides-rating {
    width: 100%;
    height: auto;
    padding: 1rem 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-top: 1px solid rgb(173, 167, 203);
    border-bottom: 1px solid rgb(173, 167, 203);
}

    .guides-rating a {
        color: #33227d !important;
        font-size: 1rem !important;
    }

    .guides-rating .left-block {
        padding: 0px 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: .5rem;
        border-right: 1px solid rgb(173, 167, 203);
    }

    .guides-rating .right-block {
        padding: 0px 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-right: 1px solid rgb(173, 167, 203);
    }

        .guides-rating .right-block:last-child {
            border: none;
        }

        .guides-rating .right-block p {
            margin: 0px;
            color: rgb(31, 20, 75);
        }

    .guides-rating .left-block a {
        font-family: Inter;
        font-size: 12px;
        font-weight: 500;
        color: rgb(31, 20, 75);
        text-decoration: none;
    }

.guides-action-block {
    width: 100%;
    height: auto;
    padding: 1rem 4.5rem;
    margin: 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5rem;
    color: rgb(255, 255, 255);
    background-color: rgb(31, 20, 75);
    border-radius: 1rem;
}

.guides-action-item {
    width: auto;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

    .guides-action-item img {
        width: auto;
        height: 25px;
    }

    .guides-action-item p {
        margin: 0px;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 700;
        line-height: 12.1px;
    }

    .guides-action-item span {
        font-family: Inter;
        font-size: 0.85rem;
        font-weight: 400;
    }

.guide-approach-container h2 {
    margin: 0px;
    font-family: "Noticia Text";
    font-size: 3rem;
    font-weight: 700;
    color: rgb(31, 20, 75);
}

.guide-approach-container .accordion-item {
    margin: 1rem auto;
    border: 0px;
    position: relative;
}

.guide-approach-container .accordion-collapse {
    color: rgb(255, 255, 255);
    background-color: rgb(31, 20, 75);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.guide-approach-container .accordion-body {
    padding-top: 0 !important;
}

.guide-approach-container .accordion-button {
    background-color: rgb(235, 233, 242);
    font-family: Inter;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    box-shadow: none !important;
}

    .guide-approach-container .accordion-button[aria-expanded="true"] {
        color: rgb(255, 255, 255);
        background-color: rgb(31, 20, 75);
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
    }

        .guide-approach-container .accordion-button[aria-expanded="true"]::after {
            filter: invert(1) brightness(1);
        }

.guide-approach-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .guide-approach-details p {
        margin: 0px;
    }

.guide-review-block {
    position: relative;
}

    .guide-review-block::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        background: linear-gradient(103.84deg, rgb(235, 233, 242) 24.96%, rgb(31, 20, 75) 56.54%, rgb(235, 233, 242) 84.51%);
        opacity: 0.1;
    }

.guide-review-container {
    position: relative;
    z-index: 1;
}

.guide-review-title {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 1rem 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
}

    .guide-review-title h2 {
        margin: 0px;
        font-family: "Noticia Text";
        font-size: 3rem;
        font-weight: 700;
        color: rgb(31, 20, 75);
    }

.guide-review-rating {
    width: fit-content;
    height: auto;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

    .guide-review-rating a {
        font-family: Inter;
        font-size: 16px;
        font-weight: 400;
        color: rgb(0, 0, 0);
        text-decoration: none;
    }

.guide-review-item {
    width: 100%;
    height: auto;
    padding: 2.5rem 0px;
    margin: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .guide-review-item::after {
        content: "";
        width: 100%;
        height: 1px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
    }

    .guide-review-item p {
        margin: 0px;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
        color: rgb(31, 20, 75);
    }

    .guide-review-item span {
        font-family: Inter;
        font-size: 12px;
        font-weight: 400;
        line-height: 14.52px;
        text-align: left;
    }

/* About Guide Section */
.about-guide-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    flex-wrap: wrap;
}

    .about-guide-container .left-block {
        width: 75%;
        padding: 0px 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
    }

    .about-guide-container .right-block {
        width: 25%;
        padding: 0px 1.5rem;
    }

    .about-guide-container .left-block h2 {
        margin: 0px;
        font-family: "Noticia Text";
        font-size: 3rem;
        font-weight: 700;
        color: rgb(31, 20, 75);
        text-transform: capitalize;
    }

    .about-guide-container .left-block p {
        margin: 0px;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
    }

    .about-guide-container .left-block::before {
        content: "";
        width: 2px;
        height: 100%;
        position: absolute;
        top: 0px;
        right: 0px;
        background-image: linear-gradient(179.97deg, rgb(219, 9, 0) 11.49%, rgb(51, 34, 125) 102.05%);
    }

    .about-guide-container .schedule-block {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .about-guide-container .right-block h4 {
        margin: 0px;
        font-family: "Noticia Text";
        font-size: 1.75rem;
        font-weight: 700;
        color: rgb(31, 20, 75);
    }

    .about-guide-container .right-block p {
        margin: 0px;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 500;
        word-spacing: 5px;
    }

/* Schedule Dropdown Section */
.schedule-dropdown {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
}

    .schedule-dropdown .dropdown-toggle {
        width: 100%;
        height: auto;
        padding: .5rem 1rem;
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
        line-height: 19.36px;
        text-align: left;
        color: #000;
        background-color: #EBE9F2;
        border-color: #0000;
    }

        .schedule-dropdown .dropdown-toggle::after {
            position: absolute;
            top: 1rem;
            right: 1rem;
        }

    .schedule-dropdown .dropdown-menu {
        padding: 0;
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(3%) !important;
        box-shadow: 0px 0px 10px 3px #0001;
    }

        .schedule-dropdown .dropdown-menu .dropdown-item {
            padding: 0.5rem;
            font-family: 'Inter';
        }

/* About Block */
.about-block {
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(/homeAssets/images/howitworks-about.jpg);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

    .about-block::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
        background-image: linear-gradient(91.04deg, rgb(255, 255, 255) 50.57%, rgba(255, 255, 255, 0.45) 99.43%);
    }

    .about-block::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0px;
        top: 0px;
    }

.about-container {
    position: relative;
    z-index: 4;
}

.about-block .section-title-block {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

    .about-block .section-title-block .cs-btn {
        position: absolute;
        bottom: 0;
        right: 0;
    }

.about-card {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    top: 5rem;
}

    .about-card::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border-radius: 0.25rem;
    }

    .about-card::after {
        content: "";
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        position: absolute;
        top: 1px;
        left: 1px;
        z-index: 1;
        background-color: rgb(255, 255, 255);
        border-radius: 0.25rem;
    }

    .about-card h3 {
        margin: 0 0 1rem 0;
        position: relative;
        z-index: 2;
        font-family: "Noticia Text";
        font-size: 1.75rem;
        font-weight: 700;
        color: #1F144B;
    }

    .about-card p {
        margin: 0px;
        position: relative;
        z-index: 2;
        font-size: 1rem;
        font-weight: 400;
    }

/* About CTA Block */
.about-cta--container {
    padding: 3.5rem !important;
    border-radius: .25rem;
    background-color: #EBE9F2;
    background-image: url(/homeAssets/images/stars.png);
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
}

    .about-cta--container .section-title-block {
        max-width: 66%;
    }

/* About Page Hero */
.about-hero {
    background-image: url(/homeAssets/images/about-page-hero.png);
    background-position: center left;
}

/* About Card Icon */
.about-card-icon {
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    margin: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .5rem;
}

    .about-card-icon::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 0;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border-radius: 0.25rem;
    }

    .about-card-icon::after {
        content: "";
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        position: absolute;
        top: 2px;
        left: 2px;
        z-index: 1;
        background-color: rgb(255, 255, 255);
        border-radius: 0.25rem;
    }

    .about-card-icon img,
    .about-card-icon h5,
    .about-card-icon p,
    .about-card-icon a {
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
    }

    .about-card-icon img {
        width: auto;
        height: 5rem;
    }

    .about-card-icon h5 {
        width: 100%;
        margin: 0;
        font-family: Noticia Text;
        font-size: 1.75rem;
        font-weight: 700;
        text-align: center;
        color: #33227d;
    }

    .about-card-icon p {
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
        text-align: center;
    }

/* About Card Ligh Blue */
.about-card-light-blue {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    margin: 0;
    background-color: #EBE9F2;
    border-radius: 4px;
}

    .about-card-light-blue h5 {
        margin: 0 0 1rem 0;
        font-family: "Noticia Text";
        font-size: 1.5rem;
        font-weight: 700;
        color: #1F144B;
    }

    .about-card-light-blue p {
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
    }

/* About Card Ligh Blue */
.about-card-light {
    width: 100%;
    height: auto;
    padding: 1.5rem 0;
    margin: 0;
    background-color: #0000;
    border-radius: 4px;
}

    .about-card-light h5 {
        margin: 0 0 1rem 0;
        font-family: "Noticia Text";
        font-size: 1.5rem;
        font-weight: 700;
        color: #1F144B;
    }

    .about-card-light p {
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
    }

/* Contact Page */
.contact-block {
    font-family: "Inter";
    background-color: #efefef55;
}

.contact-form-block h2 {
    margin: 0;
    font-size: 1.85rem;
}

.contact-info-block {
    width: 100%;
    height: auto;
    padding: 0 2rem;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem;
    border-radius: 1rem;
    font-family: 'Inter';
}

    .contact-info-block h2 {
        margin: 0;
        font-size: 1.85rem;
    }

    .contact-info-block .info h6 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: #33227d;
    }

    .contact-info-block .info {
        margin: .5rem 0;
        padding-left: 3rem;
        position: relative;
    }

        .contact-info-block .info a {
            font-size: 1rem;
            font-weight: 400;
            text-decoration: none;
            position: relative;
            color: #33227d;
            word-break: break-all;
        }

            .contact-info-block .info a::after {
                content: "";
                width: 0px;
                height: 1px;
                padding: 0px;
                margin: 0px;
                position: absolute;
                left: 0px;
                bottom: 1px;
                background-color: rgb(51, 34, 125);
                background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
                transition: all 0.1s ease-in-out 0s;
            }

            .contact-info-block .info a:hover::after {
                width: 100%;
            }

.contact-social-icons {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-social-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #33227d;
    text-decoration: none;
    border-radius: 1.5rem;
    transition: .3s ease all;
}

.contact-info-block .info p {
    margin: 0;
}

.contact-social-icon:hover {
    color: #33227d;
    background-color: #fff;
}

.contact-block .form-control {
    min-height: 3rem;
    border-color: #33227d33;
    border-radius: .75rem;
}

    .contact-block .form-control:focus {
        border-color: #33227d;
        box-shadow: 0px 0px 0px 5px #33227d11;
    }

.contact-block input[type="submit"] {
    padding: .45rem 3.5rem;
    margin: 0 auto;
    margin-right: 0;
}

.contact-block h2 {
    font-family: "Noticia Text";
    font-size: 1.65rem;
    font-weight: 700;
    color: #33227d;
}

    .contact-block h2.__btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .contact-block h2.__btn a {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            font-size: 1rem;
            font-weight: 400;
            white-space: nowrap;
        }

.contact-form-block {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.contact-info-block .info .icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background-color: #33227d;
    border-radius: 3rem;
}

.contact-block .dt-search .form-control {
    width: 12rem;
    height: 2.25rem;
    min-height: 2.25rem;
    margin: 0 .5rem;
    border-radius: .5rem;
}

.contact-block .dt-length select {
    height: 2.25rem;
    min-height: 2.25rem;
    margin: 0 .5rem !important;
    border-radius: .5rem;
}

.contact-block .dt-container .dataTable {
    width: calc(100% - 1rem) !important;
    margin: .5rem auto 0 auto;
}

.contact-block .dt-container .dt-column-title {
    white-space: nowrap;
}

.contact-block .table-responsive.py-3 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.contact-block .table-responsive .row:first-child {
    margin-top: 0 !important;
}

/* Expert Testimony Block */
.expert-testimony-block {
    background-color: rgb(255, 255, 255);
}

.expert-testimony-container {
    width: 50%;
    height: auto;
}

    .expert-testimony-container .section-title-block {
        max-width: 800px;
        justify-content: center;
        margin: 0 auto;
    }

        .expert-testimony-container .section-title-block p {
            margin: 0px;
            font-family: Inter;
            font-size: 1rem;
            font-weight: 400;
            line-height: 19.36px;
            text-align: center;
        }

.expert-testimony-video {
    width: 85%;
    height: auto;
    padding: 0px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1rem;
}

    .expert-testimony-video figure {
        width: 100%;
        height: auto;
        padding: 0px;
        margin: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgb(217, 217, 217);
        border-radius: 1rem;
        border: 1px solid rgb(31, 20, 75);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
        overflow: hidden;
    }

        .expert-testimony-video figure video {
            width: 100%;
            height: auto;
            margin: 0;
            padding: 0;
            display: block;
        }

.expert-testimony-video-btn {
    width: 5rem;
    height: 5rem;
    padding: 0px;
    margin: 0px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    background-image: url("/homeassets/images/play-button.svg");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0px;
    transition: all 0.3s ease-in-out 0s;
}

    .expert-testimony-video-btn:hover {
        transform: scale(1.125);
    }

/* User Profile Page */
.balance-block {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0 auto 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background-color: #0001;
    border-radius: 1rem;
}

.balance-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #7a8599;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    gap: .5rem;
}

.balance-ammount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #33227d;
}

.recharge-block {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 1.5rem auto;
    background-color: #0001;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.recharge-title {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8rem;
    color: #5e5e5e;
    text-transform: capitalize;
}

.recharge-widget {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.recharge-widget-item {
    width: calc(25% - .75rem);
    height: auto;
    padding: 1rem 1.5rem;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 400;
    color: #33227d;
    border-radius: .8rem;
    background-color: #fff;
    border: .1rem solid #ddd;
    cursor: pointer;
}

.recharge-promo {
    width: 45%;
    height: auto;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
}

.recharge-promo-title {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8rem;
    color: #5e5e5e;
    text-transform: capitalize;
}

.recharge-promo-form-group {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 1rem;
}

    .recharge-promo-form-group [type="text"] {
        width: 100%;
        height: auto;
        padding: .5rem .5rem;
        margin: 0;
        border: 1px solid #000;
        border-radius: .8rem;
        background-color: #fff;
    }

    .recharge-promo-form-group [type="submit"] {
        width: 20%;
        height: auto;
        padding: 0 !important;
        margin: 0;
        border: 1px solid #33227d;
        border-radius: .8rem;
        color: #fff;
        background-color: #33227d;
    }

.topup-block {
    width: 45%;
    height: auto;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    border-radius: .8rem;
}

    .topup-block .title {
        font-size: 1.25rem;
        font-weight: 400;
        color: #7a8599;
    }

    .topup-block .sub-title {
        font-size: 1.5rem;
        line-height: 3.6rem;
        font-weight: 700;
        color: #7a8599;
    }

.card-details-form {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.card-tab {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    color: #999 !important;
    background-color: #fff;
    border-radius: 1rem !important;
}

    .card-tab.active {
        color: #000 !important;
        background-color: #fff;
    }

.account-tablist {
    width: 100% !important;
    height: auto;
    padding: 0;
    margin: 0;
}

    .account-tablist .nav-link {
        padding: .5rem 1rem;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.895rem;
        color: #33227d;
    }

        .account-tablist .nav-link i {
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #33227d;
            border-radius: .25rem !important;
            font-size: 1rem;
        }

        .account-tablist .nav-link.active {
            color: #33227d;
        }

            .account-tablist .nav-link.active i {
                color: #33227d;
                background-color: #fff;
            }

#completed-call-list .table thead,
#schedules-call-list .table thead {
    background-color: #efefef;
}

#completed-call-list .table th,
#schedules-call-list .table th {
    padding: .75rem 2rem .75rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: #33227d;
    background-color: #0000;
}

#completed-call-list .table td,
#schedules-call-list .table td {
    text-align: center;
    white-space: nowrap;
    padding: .75rem .5rem;
}

    #completed-call-list .table td a,
    #schedules-call-list .table td a {
        display: block;
        font-size: small;
        font-weight: 700;
        text-decoration: none;
    }

        #completed-call-list .table td a:hover,
        #schedules-call-list .table td a:hover {
            text-decoration: underline;
        }

.profile-image-form {
    width: 100%;
    height: auto;
    padding: 0;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.profile-image-display {
    width: 100%;
    height: 100%;
    max-width: 8rem;
    max-height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1rem;
    background-color: #efefef55;
}

    .profile-image-display img {
        width: 100%;
        height: auto;
    }

.profile-image-input {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-image-message {
    width: fit-content;
    height: auto;
    padding: 1rem;
    margin: 0;
    color: #33227d;
    background-color: #33227d11;
    border-radius: 1rem;
}

.verify-device-block {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0 auto;
    background-color: #eeeeee;
    border-radius: 1rem;
}

.verify-device-inner {
    width: 35%;
    height: auto;
    padding: 3rem 0;
    margin: 0 auto;
    background-color: #eeeeee;
    border-radius: 1rem;
    text-align: center;
}

.verify-device-block .message {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0 auto 1rem auto;
    color: #33227d;
    background-color: #33227d11;
    border-radius: 1rem;
}

.verify-device-inner a {
    text-decoration: none;
    color: #33227d;
}

.verify-device-inner p {
    margin: 0;
    font-weight: 600;
    color: #212529bf;
}

.verify-device-inner .form-control {
    text-align: center;
}

/* Custom Range For Rating */
.review-form {
    width: 100%;
    height: auto;
    padding: .5rem 1.5rem;
    margin: 0;
    background-color: #eeeeee;
    border-radius: 1rem;
}

.custom-range-for-rating {
    width: fit-content;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
}

    .custom-range-for-rating [range-rate-item] {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .custom-range-for-rating .fa-solid[range-rate-item] {
        color: rgb(253, 141, 3);
    }

.review-form .form-control {
    min-height: 10rem;
}

/* Compatibility Block */
.compatibility-block .section-title-block.inline h2 {
    flex: 2;
}

.compatibility-block .section-title-block.inline p {
    flex: 8;
}

/* review-listing css */
.review-listing-item {
    width: calc(100% - 2rem / 2);
    height: 100%;
    padding: 1rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    background-color: #efefef;
    border-radius: 1rem;
    border: 1px solid #33227d;
}

    .review-listing-item:hover,
    .review-listing-item.selected-staff {
        cursor: pointer;
        box-shadow: 0px 0px 0px 5px #33227d11;
        filter: brightness(101%);
    }

.review-listing-item-img {
    width: 10rem;
    height: 10rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    overflow: hidden;
}

    .review-listing-item-img img {
        min-width: 100%;
        min-height: 100%;
        height: auto;
    }

.review-listing-item-content {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: relative;
}

    .review-listing-item-content .author {
        width: 75%;
        height: auto;
        padding: 0;
        margin: 0;
        font-weight: 600;
    }

    .review-listing-item-content .message {
        width: 2rem;
        height: 2rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        color: #fff;
        background-color: rgb(253, 141, 3);
        border-radius: 3rem;
        position: absolute;
        top: 0;
        right: 0;
    }

    .review-listing-item-content .order-date {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
    }

        .review-listing-item-content .order-date .order {
            width: fit-content;
        }

        .review-listing-item-content .order-date .date {
            width: fit-content;
        }

            .review-listing-item-content .order-date .order p,
            .review-listing-item-content .order-date .date p {
                margin: 0;
                font-weight: 500;
            }

            .review-listing-item-content .order-date .order span,
            .review-listing-item-content .order-date .date span {
                margin: 0;
                font-size: .75rem;
                line-height: 0;
            }

    .review-listing-item-content .rating {
        color: rgb(253, 141, 3);
    }

.review-listing .owl-buttons {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-listing .owl-prev,
.review-listing .owl-next {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    margin: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* Payment Desclaimer Popup - Modal */
#paymentDiscliamerPopup {
    width: 100vw !important;
    height: 100vh !important;
    display: none !important;
    justify-content: center;
    align-items: center;
    font-family: "Inter";
}

    #paymentDiscliamerPopup.show {
        display: flex !important;
    }

/* Guide List Hero Block */
.guide-list-hero-block {
    background-image: url(/homeassets/images/guide-list-hero-block.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    top: 0;
}

/* Guide List Search Filter */
.guide-list-search-filter {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    margin: 0;
    position: relative;
    background-color: #EBE9F240;
    border-radius: 0.5rem 0.5rem 0 0;
}

/* Pagination */
.cs-pagination {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 1.5rem auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .cs-pagination::before,
    .cs-pagination::after {
        content: "";
        width: 100%;
        height: 2px;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
    }

    .cs-pagination::before {
        top: 0;
    }

    .cs-pagination::after {
        bottom: 0;
    }

.cs-pagination-item,
.cs-pagination-previous,
.cs-pagination-next {
    width: auto;
    height: auto;
    padding: .5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1f144b;
    background-color: #0000;
    cursor: pointer;
    transition: .3s ease all;
    font-family: 'Inter';
    font-weight: 400;
    text-transform: capitalize;
}

    .cs-pagination-item:hover,
    .cs-pagination-previous:hover,
    .cs-pagination-next:hover {
        color: #fff;
        background-color: #1f144b;
    }

    .cs-pagination-item.disabled,
    .cs-pagination-previous.disabled,
    .cs-pagination-next.disabled,
    .cs-pagination-item.disabled:hover,
    .cs-pagination-previous.disabled:hover,
    .cs-pagination-next.disabled:hover {
        opacity: .5;
        color: #1f144b;
        background-color: #0000;
    }

    .cs-pagination-item.active {
        color: #fff;
        background-color: #1f144b;
    }

/* Guide List Search Filter */
.guide-list-search-filter .accordion-button {
    padding: .75rem 1rem;
    background-color: #EBE9F2;
    border-radius: .5rem !important;
    font-family: 'Inter';
    border: 1px solid #0000;
    box-shadow: none !important;
}

    .guide-list-search-filter .accordion-button[aria-expanded="true"] {
        background-color: #fff;
        border-color: #ada7cb;
        box-shadow: none;
    }

.guide-list-search-filter .accordion-body {
    padding: 0;
    margin: 1rem 0;
    background-color: #fff;
    border: 1px solid #ADA7CB;
    border-radius: .5rem !important;
}

.guide-list-search-filter .accordion-item {
    background-color: #0000;
    border: none;
}

.guide-list-search-filter .form-wrapper {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .guide-list-search-filter .form-wrapper button[type=submit] {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 50%;
        right: .5rem;
        z-index: 5;
        transform: translateY(-50%);
        border: none;
        background-color: #0000;
        font-size: 1.25rem;
    }

    .guide-list-search-filter .form-wrapper input[type=text] {
        width: 100%;
        height: 45px;
        padding: .5rem 2.5rem .5rem 1rem;
        margin: 0;
        border: 1px solid #ADA7CB;
        border-radius: .5rem;
        outline: none;
        font-family: 'Inter';
        font-weight: 300;
        position: relative;
        z-index: 0;
    }

        .guide-list-search-filter .form-wrapper input[type=text]:focus {
            box-shadow: 0px 0px 0px 3px #ada7cb33;
        }

.guide-list-search-filter .accordion-body label {
    width: 100%;
    height: auto;
    padding: 0rem 1rem 0 2rem;
    margin: 1rem auto;
    position: relative;
}

    .guide-list-search-filter .accordion-body label input[type=checkbox] {
        position: absolute;
        left: 1rem;
    }

    .guide-list-search-filter .accordion-body label span {
        font-family: 'Inter';
        cursor: pointer;
    }

.guide-list-search-filter h5 {
    margin-bottom: 1rem;
    font-family: Noticia Text;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}

/* Chat Modal */
.chat-modal {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

    .chat-modal.show {
        display: flex !important;
    }

    .chat-modal .modal-dialog {
        width: 100%;
    }

    .chat-modal .modal-header {
        width: 100%;
        height: auto;
        padding: 1rem;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .chat-modal .modal-header .btn-grp {
            width: auto;
            height: auto;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

            .chat-modal .modal-header .btn-grp button {
                width: 1.5rem;
                height: 1.5rem;
                padding: 0;
                margin: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #7f7f7f;
                border: none;
                background-color: #0000;
                background-image: none;
                font-size: 1.5rem;
                opacity: 1;
            }

/* Chat Block */
.chat-block {
    width: 100%;
    max-height: 50vh;
    padding: 0;
    margin: 0;
    position: relative;
}

    .chat-block .message {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

        .chat-block .message.in-comming {
            flex-direction: row;
        }

        .chat-block .message .chat-content {
            width: calc(100% - 2.5rem);
            height: auto;
            padding: .5rem;
            margin: 0;
            border-radius: .5rem;
            position: relative;
        }

        .chat-block .message.in-comming .chat-content {
            background-color: #cfcfcf;
        }

            .chat-block .message.in-comming .chat-content::after {
                content: "";
                position: absolute;
                width: 0px;
                height: 0px;
                border-top: 5px solid transparent;
                border-right: 5px solid #cfcfcf;
                border-bottom: 5px solid transparent;
                left: -4px;
                top: 6px;
            }

            .chat-block .message.in-comming .chat-content span,
            .chat-block .message.out-going .chat-content span {
                display: inline-block;
                word-break: break-all;
            }

        .chat-block .message.out-going {
            flex-direction: row-reverse;
        }

            .chat-block .message.out-going .chat-content {
                background-color: #efefef;
            }

                .chat-block .message.out-going .chat-content::after {
                    content: "";
                    position: absolute;
                    width: 0px;
                    height: 0px;
                    border-top: 5px solid transparent;
                    border-right: 5px solid #efefef;
                    border-bottom: 5px solid transparent;
                    right: -4px;
                    top: 6px;
                    transform: rotate(180deg);
                }

        .chat-block .message .profile-pic {
            width: 2rem;
            height: 2rem;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 2.5rem;
        }

        .chat-block .message.in-comming .profile-pic {
            color: #fff;
            background-color: #33227D;
        }

        .chat-block .message.out-going .profile-pic {
            color: #fff;
            background-color: rgb(253, 141, 3);
        }

/* Horo Scope Detail Pgae */
.horoscope-detail-hero-block .filter-tabs {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

    .horoscope-detail-hero-block .filter-tabs li {
        padding-left: 1.5rem;
        position: relative;
    }

        .horoscope-detail-hero-block .filter-tabs li::before {
            content: "";
            width: 0.55rem;
            height: .55rem;
            padding: 0;
            margin: 0;
            position: absolute;
            top: calc(50%);
            left: 0;
            transform: translateY(-50%);
            background-color: #fff;
            border-radius: 1rem;
        }

        .horoscope-detail-hero-block .filter-tabs li a {
            font-family: Inter;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }

            .horoscope-detail-hero-block .filter-tabs li a.active {
                color: #fd8d03;
            }

.horoscope-detail-zodiac-block {
    position: relative;
}

    .horoscope-detail-zodiac-block .zodiac-figure {
        background-color: #ADA7CB;
    }

        .horoscope-detail-zodiac-block .zodiac-figure.active {
            background-color: rgb(253, 141, 3);
        }

    .horoscope-detail-zodiac-block .zodiac-container {
        padding: 1.5rem;
    }

    .horoscope-detail-zodiac-block .zodiac-figure img {
        width: 65%;
        height: auto;
    }

    .horoscope-detail-zodiac-block .zodiac-widget {
        padding: 0;
        background-color: #0000;
        border: none !important;
    }

    .horoscope-detail-zodiac-block .zodiac-figure {
        width: 5rem;
        height: 5rem;
    }

.horoscope-detail-compatibility-title {
    width: 20%;
    margin: 0;
    color: #1F144B;
    position: relative;
    z-index: 3;
    font-family: Noticia Text;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.horoscope-detail-compatibility-block .compatibility-list {
    width: 80%;
}

    .horoscope-detail-compatibility-block .compatibility-list p {
        margin: 0;
    }

.horoscope-detail-compatibility-block .compatibility-row {
    gap: 2.5%;
}

.horoscope-detail-about-facts {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 1rem 0;
    position: relative;
}

    .horoscope-detail-about-facts ul {
        padding: 0;
        , : 0;
        margin: 0;
        list-style: none;
    }

        .horoscope-detail-about-facts ul li {
            margin-bottom: .5rem;
        }

            .horoscope-detail-about-facts ul li:last-child {
                margin-bottom: 0;
            }

.horoscope-detail-about-content {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 1rem 0;
    position: relative;
}

.horoscope-detail-onlineguides-block {
    background-color: #EBE9F2;
}

.horoscope-detail-article-block {
    background-color: #EBE9F2;
}

    .horoscope-detail-article-block .article-item {
        background-color: #fff;
    }

/* Calendar UI */
.fc-header-title h2 {
    color: #33227d;
}

.fc-state-default {
    border-color: #33227d !important;
    color: #33227d !important;
}

.fc-state-down,
.fc-state-active {
    color: #fff !important;
    background-color: #aaa !important;
}

.fc-state-disabled {
    background-color: #fff;
}

.fc-border-separate tr.fc-last th {
    color: #33227d;
    border-color: #33227d;
}

.fc-grid .fc-day-number {
    color: #33227d;
}

.fc-state-highlight {
    background: #f7f7f7 !important;
}

    .fc-state-highlight > div > div.fc-day-number {
        background-color: #33227d !important;
    }

.fc-event.success {
    color: #fff;
    background-color: #33227d !important;
    border-color: #33227d !important;
    border: none !important;
    display: block;
}

.fc-week .fc-day > div .fc-day-number {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc-event-inner {
    padding: 5px;
    border: none !important;
}

.fc-widget-header {
    color: #33227d !important;
}

.fc-state-disabled {
    background-color: #aaaaaa !important;
    opacity: .5;
}

.fc-ltr .fc-event-hori.fc-event-end,
.fc-rtl .fc-event-hori.fc-event-start {
    background-color: #33227d29 !important;
    border-radius: 2rem;
    color: #33227d !important;
}

.fc-state-hover {
    background-color: #aaaaaa33 !important;
}

/* Blog List Page */
.blog-list-hero-block {
    background-image: url(/homeAssets/images/blog-list-hero.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Blog Verticle */
.article-item.article-horizontal {
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

    .article-item.article-horizontal figure {
        width: 45%;
        height: 20rem;
    }

    .article-item.article-horizontal .article-body h3 {
        font-family: Noticia Text;
        font-size: 2.125rem;
        font-weight: 700;
        text-align: left;
        color: rgb(92, 78, 151);
    }

    .article-item.article-horizontal .article-body p {
        margin: 0;
        font-family: Inter;
        font-size: 1rem;
        font-weight: 400;
    }

    .article-item.article-horizontal .article-body {
        width: 55%;
        padding: 3rem;
        justify-content: center;
    }

/* Blog Detail Hero Block */
.blog-detail-hero-block {
    background-color: #EBE9F2;
}

.blog-detail-hero-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

    .blog-detail-hero-container .content {
        width: 50%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .blog-detail-hero-container .content .category {
            width: fit-content;
            height: auto;
            padding: .5rem .85rem;
            margin: 0 0 1rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            background-image: linear-gradient(127.57deg, #33227D 41.24%, #441F6F 48.15%, #841540 70.87%, #B30E1D 90.62%, #D00A07 105.43%, #DB0900 114.32%);
            font-family: Inter;
            font-size: .85rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .blog-detail-hero-container .content h1 {
            margin: 0 0 1rem 0;
            font-family: Noticia Text;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .blog-detail-hero-container .content .date-auth {
            width: 100%;
            height: auto;
            padding: 0;
            margin: 0 0 1rem 0;
            display: flex;
            /*justify-content: flex-start;*/
            align-items: center;
            position: relative;
        }

            .blog-detail-hero-container .content .date-auth .date {
            }

            .blog-detail-hero-container .content .date-auth::before,
            .blog-detail-hero-container .content .date-auth::after {
                content: "";
                width: 100%;
                height: 2px;
                padding: 0;
                margin: 0;
                position: absolute;
                top: 0;
                left: 0;
                background-image: linear-gradient(115.66deg, #33227D 10.25%, #441F6F 14%, #841540 26.34%, #B30E1D 37.07%, #D00A07 45.12%, #DB0900 49.94%);
            }

            .blog-detail-hero-container .content .date-auth .auth,
            .blog-detail-hero-container .content .date-auth .date {
                padding: 1rem;
                font-family: Inter;
                font-size: 1rem;
                font-weight: 500;
                color: #33227D;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
            }

            .blog-detail-hero-container .content .date-auth::after {
            }

            .blog-detail-hero-container .content .date-auth::after {
                top: 100%;
            }

            /*.blog-detail-hero-container .content .date-auth .date::before {
                content: "";
                width: .5rem;
                height: .5rem;
                position: absolute;
                right: -0.25rem;
                background-color: #33227d;
                border-radius: 1rem;
            }*/

/* Blog Content Block */
.blog-content-block h1,
.blog-content-block h2,
.blog-content-block h3,
.blog-content-block h4,
.blog-content-block h5,
.blog-content-block h6,
.blog-content-block h1,
.blog-content-block p {
    margin-bottom: 1rem;
}

.blog-content-block h2 {
    color: #33227d;
    font-family: Inter;
    font-size: 2rem;
    font-weight: 600;
}

.blog-content-block h3 {
    font-family: Inter;
    font-size: 1.62500rem;
    font-weight: 500;
    color: rgb(229 84 71);
}

.blog-content-block h4 {
    font-family: Inter;
    font-weight: 400;
    color: rgb(229 84 71);
}

.blog-content-block p {
    font-family: Inter;
    font-size: 1rem;
    font-weight: 400;
}

.blog-detail-hero-container .content nav .breadcrumb {
    margin-bottom: 0;
}

.blog-detail-hero-container .breadcrumb-item,
.blog-detail-hero-container .breadcrumb-item a {
    font-family: Inter;
    font-size: small;
    font-weight: 500;
    color: #33227D;
    text-transform: capitalize;
    text-decoration: none;
}

    .blog-detail-hero-container .breadcrumb-item.active {
        opacity: .5;
    }

    .blog-detail-hero-container .breadcrumb-item a:hover {
        text-decoration: underline;
    }

.blog-detail-image {
    width: 50%;
    height: auto;
    padding: 0;
    margin: 0;
}

    .blog-detail-image img {
        width: 100%;
        height: auto;
    }

#blogContent {
    width: 75%;
    height: auto;
    margin: 0 auto;
}

/* Topic */
.topic-list-hero-block {
    background-image: url(/homeAssets/images/guide-list-hero-block.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .topic-list-hero-block .hero-container {
        top: 0rem;
    }

/* Tarot */
.tarot-hero-block {
    background-image: url(/homeAssets/images/tarot-hero.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Mobile Menu */
.login-mobile-menu {
    display: none;
}

/* Site Review */
.site-review-hero-block {
    padding-top: 0;
    padding-bottom: 0;
    background-image: url(/homeAssets/images/guide-list-hero-block.png);
}

/* Tarot Main Page */
.tarot-main-hero {
    background-image: url(/homeAssets/images/tarot-hero.png);
}

.tarot-main-container {
    position: relative;
    top: -1.5rem;
}

/* Image Round */
.img-rounded {
    width: 20rem;
    height: 20rem;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 15rem;
}

    .img-rounded img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.matchmysearch-hero-block {
    background-image: url(/homeAssets/images/MatchMySearch-banner.png);
    background-size: cover;
    background-position: center;
    background-attachment: initial;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.matchmysearch-form-filters {
    position: relative;
}

    .matchmysearch-form-filters label {
        width: 100%;
        height: 8rem;
        padding: 1rem;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        color: #333;
        background-color: #0000;
        border-radius: .5rem;
        cursor: pointer;
        font-size: 1.15rem;
        font-weight: 400;
        text-align: center;
        border: 1px solid #0000;
    }

        .matchmysearch-form-filters label::before {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0px;
            left: 0px;
            z-index: 0;
            background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
            border-radius: 0.25rem;
            transition: .3s ease all;
        }

        .matchmysearch-form-filters label:hover::before {
            background-image: linear-gradient(180deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        }

        .matchmysearch-form-filters label::after {
            content: "";
            width: calc(100% - 4px);
            height: calc(100% - 4px);
            position: absolute;
            top: 2px;
            left: 2px;
            z-index: 1;
            background-color: rgb(255, 255, 255);
            border-radius: 0.25rem;
        }

        .matchmysearch-form-filters label input[type="radio"] {
            position: absolute;
            top: .5rem;
            left: .5rem;
            opacity: 1;
            z-index: 111;
        }

        .matchmysearch-form-filters label span {
            font-family: Noticia Text;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            color: rgb(51 34 125);
            position: relative;
            z-index: 11;
        }

/* Card Recruitimg Process */
.card-recruiting-process {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    position: relative;
}

    .card-recruiting-process::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border-radius: 0.25rem;
    }

    .card-recruiting-process::after {
        content: "";
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        position: absolute;
        top: 1px;
        left: 1px;
        z-index: 1;
        background-color: rgb(255, 255, 255);
        border-radius: 0.25rem;
        background-size: 2.0625rem;
        background-position: .5rem 1.5rem;
        background-repeat: no-repeat;
    }

    .card-recruiting-process h5 {
        flex: 1;
        margin: 0px;
        position: relative;
        z-index: 2;
        font-family: "Noticia Text";
        font-size: 1.75rem;
        font-weight: 700;
        color: #1F144B;
    }

    .card-recruiting-process p {
        flex: 2;
        margin: 0px;
        position: relative;
        z-index: 2;
        font-family: "Inter";
        font-size: 1rem;
        font-weight: 400;
    }

    .card-recruiting-process[tabindex="1"]::after {
        background-image: url(/homeAssets/images/1.png);
    }

    .card-recruiting-process[tabindex="2"]::after {
        background-image: url(/homeAssets/images/2.png);
    }

    .card-recruiting-process[tabindex="3"]::after {
        background-image: url(/homeAssets/images/3.png);
    }

    .card-recruiting-process[tabindex="4"]::after {
        background-image: url(/homeAssets/images/4.png);
    }

    .card-recruiting-process[tabindex="5"]::after {
        background-image: url(/homeAssets/images/5.png);
    }

/* Pricing Block */
.pricing-block {
    color: #fff;
    background-color: #1F144B;
}

/* USP Block */
.usp-block .section-title-block {
    justify-content: flex-start;
    margin-bottom: 1.25rem;
}

/*.usp-block .section-title-block .cs-btn {
position: absolute;
top: 0;
right: 0;
}*/
/* About Community Block */
.about-community-block {
    background-color: #1F144B;
}

    .about-community-block .about-card-light-blue {
        height: 100%;
        background-color: rgb(255 255 255 / 40%);
    }

/* Here For You */
.hereforyou-block {
    position: relative;
}

    .hereforyou-block .cs-img-wrapper {
        width: 30%;
        height: auto;
        position: absolute;
        right: -5%;
    }

/* Our Mission Block */
.ourmission-block {
    position: relative;
    overflow: hidden;
}

    .ourmission-block::before {
        content: "";
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(103.84deg, #EBE9F2 24.96%, #1F144B 56.54%, #EBE9F2 84.51%);
        opacity: 10%;
    }

    .ourmission-block::after {
        content: "";
        width: 35%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 10%;
        left: -5%;
        background-image: url(/homeAssets/images/ourmission.svg);
        background-size: cover;
        background-position: top right;
        background-repeat: no-repeat;
    }

    .ourmission-block .container {
        position: relative;
        z-index: 1;
    }

/* Avatar - Page Title */
.page-title.with-avatar {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .page-title.with-avatar .avatar-wrapper {
        width: fit-content;
        height: auto;
        padding: .5rem;
        margin: 0;
        flex-direction: row;
        gap: .5rem;
        background-color: #fff;
        border-radius: 10px;
    }

        .page-title.with-avatar .avatar-wrapper .avatar {
            width: 2.5rem;
            height: 2.5rem;
        }

        .page-title.with-avatar .avatar-wrapper .avatar-label {
            font-size: 1rem;
            font-weight: 500;
        }

/* Avatar */
.avatar-wrapper {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    background-color: #e9ecef;
    border-radius: 1rem;
}

.avatar {
    width: 15rem;
    height: 15rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .avatar img {
        min-width: 100%;
        min-height: 100%;
    }

.avatar-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #33227d;
}

/* Help Center */
.helpcenter-nav-title {
    margin: 0 0 1rem 0;
    color: rgb(51, 34, 125);
    font-family: Noticia Text;
    font-size: 1.5rem;
    font-weight: 700;
}

.helpcenter-nav {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: relative;
}

.helpcenter-navlist {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
}

.helpcenter-nav-item {
    position: relative;
}

.helpcenter-nav-link {
    width: auto;
    height: 100%;
    padding: 1rem;
    margin: 0;
    position: relative;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    background-color: #33227d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    text-align: center;
    border-radius: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
}

    /*    .helpcenter-nav-link::before {
content: "\f061";
font-family: FontAwesome;
font-weight: 900;
color: #FD8D03;
transition: .3s ease all;
position: absolute;
right: -15px;
opacity: 0;
}
.helpcenter-nav-link:hover::before {
transform: translateX(5px);
opacity: 1;
}*/
    .helpcenter-nav-link::after {
        content: "";
        width: 0px;
        height: .25rem;
        padding: 0px;
        margin: 0px;
        position: absolute;
        left: 0px;
        bottom: 1px;
        background-color: rgb(51, 34, 125);
        background-image: linear-gradient(90deg, rgb(219, 9, 0) 0%, rgb(51, 34, 125) 100%);
        border: none !important;
        transition: all 0.1s ease-in-out 0s;
    }

    .helpcenter-nav-link:hover::after {
        width: 100%;
    }

/* Common Style - Dashboard */
.dashboard-page-title {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto 1rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .dashboard-page-title h3 {
        margin: 0;
        padding: 0;
        position: relative;
        color: #33227d;
    }

    .dashboard-page-title .__btn-group {
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
    }

/* Staff Dashboard */
.staff-profile-avatar {
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 3rem;
}

    .staff-profile-avatar img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.staff-header .navbar {
    min-height: auto;
}

    .staff-header .navbar .nav-link {
        color: #fff;
    }

.staff-header .dropdown-item {
    font-size: 14px;
}

.staff-header .dropdown-menu[data-bs-popper] {
    top: -1rem;
    margin: 0;
}

/* Admin Dashboard */
.admin-profile-avatar {
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 3rem;
}

    .admin-profile-avatar img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.admin-header .navbar {
    min-height: auto;
}

    .admin-header .navbar .nav-link {
        color: #fff;
    }

.admin-header .dropdown-menu[data-bs-popper] {
    top: -1rem;
    margin: 0;
}

/* Add New Blog Popup */
.add-new-blog-popup input[type="file"].form-control {
    width: 100%;
    height: auto;
    padding: 1rem 1.5rem !important;
}

.add-new-blog-popup .avatar-wrapper {
    padding: 1.5rem;
    gap: .5rem;
}

.add-new-blog-popup .avatar-wrapper-inner {
    width: auto;
    height: 15rem;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1rem;
}

    .add-new-blog-popup .avatar-wrapper-inner img {
        width: auto;
        min-height: 100%;
        border-radius: 0;
    }

/* Review Popup Modal */
.review-popup hr {
    border-color: #dee2e6;
    opacity: 1;
}

.review-popup textarea.form-control {
    min-height: 10rem;
}

/* Dashboard Profile Card */
.dashboard-profile-card {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    background-color: #e9ecef;
    border-radius: 1rem;
}

    .dashboard-profile-card .__avatar {
        width: 10rem;
        height: 10rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        border-radius: 10rem;
        overflow: hidden;
    }

        .dashboard-profile-card .__avatar img {
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
        }

    .dashboard-profile-card .__label {
        width: fit-content;
        height: auto;
        padding: 0;
        margin: 0 auto;
        display: block;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1;
        color: #33227d;
    }

/* Dashboard - New */
._dashboard_ {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

    ._dashboard_ ._dashboard_sidebar {
        width: 250px;
        height: 100vh;
        padding: 0;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        background-color: #33227d;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: .1s ease all;
    }

        ._dashboard_ ._dashboard_sidebar.collapsed {
            width: 85px;
            justify-content: center !important;
        }

            ._dashboard_ ._dashboard_sidebar.collapsed .sidebar-footer a {
                justify-content: center !important;
            }

    ._dashboard_ .sidebar-header .-brand {
        width: 100%;
        height: 80px;
        padding: 1rem;
        margin: 0;
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
    }

        ._dashboard_ .sidebar-header .-brand img.lg {
            width: 100%;
            height: auto;
            max-width: 146px;
            transform: translateX(0);
            transition: .1s ease all;
        }

        ._dashboard_ .sidebar-header .-brand img.sm {
            width: 0;
            height: 0;
            visibility: collapse;
            opacity: 0;
            transform: translateX(100%);
            max-height: 46px;
            transition: .1s ease all;
        }

._dashboard_sidebar.collapsed .-brand img.lg {
    width: 0px;
    height: 0px;
    opacity: 0;
    visibility: collapse;
    transform: translateX(-100%);
}

._dashboard_sidebar.collapsed .-brand img.sm {
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

._dashboard_ .sidebar-header .header-icon {
    display: none;
}

._dashboard_ ._dashboard_body_ .navbar .nav-link {
    color: #fff;
}

._dashboard_ .sidebar-footer {
    width: 100%;
    height: auto;
    padding: .5rem 1rem;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    ._dashboard_ .sidebar-footer a {
        width: 100%;
        height: auto;
        padding: .5rem 1rem;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        color: #fff;
        background-color: #ada7cb;
        border-radius: 0.95rem;
    }

        ._dashboard_ .sidebar-footer a:hover {
            color: #33227d;
        }

._dashboard_ ._dashboard_body_ {
    width: calc(100% - 250px);
    height: auto;
    padding: 0;
    margin: 0;
    margin-left: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: .1s ease all;
}

._current-meeting-dashboard ._dashboard_body_ {
    margin-left: 0;
}

._dashboard_ ._dashboard_body_.expanded {
    width: calc(100% - 85px);
    margin-left: 85px;
}

._dashboard_ ._dashboard_body_ .navbar,
._dashboard_ ._dashboard_body_ .dashboard-content,
._dashboard_ ._dashboard_body_ .dashboard-footer {
    width: 100%;
}

._dashboard_ ._dashboard_body_ .navbar {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

._dashboard_body_ .dashboard-content {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 80px - 55px);
    padding: 1.5rem;
    background-color: #efefef55;
}

.dashboard-content .page-title {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #33227d;
}

._dashboard_ .panel-centered {
    width: 100%;
    height: calc(100% - 3rem);
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Dashboard Table, Block */
._dashboard_block {
    padding: 1rem;
    margin-left: 0;
    margin-right: 0;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #0001;
    box-shadow: 0px 10px 10px -5px #0001;
}

._dashboard_ .dt-length {
    margin-left: .25rem;
}

._dashboard_ .dt-search {
    margin-right: .25rem;
}

/* Dashboard Sidebar */
._dashboard_ .menu-item-inner {
    width: 100%;
    height: auto;
    min-height: 60px !important;
    padding: 0;
    margin: 0;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

._dashboard_sidebar.collapsed .menu-item-inner {
    justify-content: center !important;
}

._dashboard_ .menu-item-inner i {
    width: 2.5rem !important;
    height: 2.5rem !important;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem !important;
}

._dashboard_ .menu-item-title {
    padding: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.1s ease-in-out !important;
}

._dashboard_sidebar.collapsed .menu-item-title {
    display: none;
}

._dashboard_ ._dashboard_body_ .user-profile-dropdown {
    display: none;
}

/* Dashboard Custom Cards */
.cs_card {
    width: 100%;
    height: 100%;
    height: 100%;
    padding: 1.25rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #0001;
    border-left-width: 0.375rem;
    box-shadow: 0px 10px 10px -5px #0001;
}

    .cs_card ._content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .cs_card ._content p {
            margin: 0;
            font-size: 1.75rem;
            font-weight: 700;
        }

        .cs_card ._content span {
            margin: 0;
            font-size: 1.45rem;
            font-weight: 600;
            color: #212529bf;
        }

    .cs_card.-blue {
        border-left-color: #527bf1;
    }

        .cs_card.-blue ._content p {
            color: #527bf1;
        }

    .cs_card.-yellow {
        border-left-color: #f28f4f;
    }

        .cs_card.-yellow ._content p {
            color: #f28f4f;
        }

    .cs_card.-green {
        border-left-color: #66c20d;
    }

        .cs_card.-green ._content p {
            color: #66c20d;
        }

/* */
.personalized-dashboard .categories-container .section-title-block p {
    /*max-width: 59%;
text-align: justify !important;*/
}

/* Default Modal - Styled */
.modal-backdrop {
    display: none;
}

.modal {
    background-color: #0009;
    backdrop-filter: blur(3px);
    width: 100vw;
    height: 100vh;
    padding: 1.5rem 0;
    margin: 0;
    display: none;
    justify-content: center;
    align-items: start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    overflow-y: scroll;
}

    .modal.show {
        display: flex !important;
    }

.modal-dialog {
    width: auto;
    max-width: 50vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-header {
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

    .modal-header .modal-title {
        padding-right: 2.5rem;
        text-align: left;
        line-height: normal;
        color: #33227d;
    }

    .modal-header .btn-close,
    .modal-header .close {
        width: 1.5rem;
        height: 1.5rem;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #33227d;
        background-color: #0000;
        border-radius: 2rem;
    }

.modal-body .star-rating {
    width: fit-content;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
}

/* Default Swal2 Modal - Styled */
.swal2-container {
    background-color: #0009 !important;
    backdrop-filter: blur(3px);
}

.swal2-popup {
    border-radius: .5rem;
}

    .swal2-popup .swal2-title {
        color: #33227d;
    }

    .swal2-popup .swal2-styled {
        border-radius: 0.5rem !important;
    }

        .swal2-popup .swal2-styled.swal2-confirm {
            background-color: #33227d !important;
        }

/* Dynmic Dropdown */
.dynamic-dropdown {
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    margin: 0;
    overflow-wrap: normal;
    border-radius: 6px;
    border: 1px solid rgb(223, 222, 222);
    display: flex;
    align-items: center;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    -webkit-appearance: button;
    appearance: button;
}

    .dynamic-dropdown::after {
        content: "\f078";
        font-family: 'FontAwesome';
        position: absolute;
        right: 1rem;
        font-size: .68rem;
        font-weight: 900;
        transition: .125s ease all;
    }

    .dynamic-dropdown.showDropdown::after {
        transform: rotate(180deg);
    }

    .dynamic-dropdown > ul {
        width: calc(100% - 1rem);
        height: auto;
        max-height: 10rem;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 2.5rem;
        left: .5rem;
        z-index: 5;
        display: none;
        overflow-y: scroll;
        background-color: #fff;
        border-radius: 6px;
        border: 1px solid rgb(223, 222, 222);
        box-shadow: 0px 0px 3px 0px #0001;
    }

        .dynamic-dropdown > ul::-webkit-scrollbar {
            width: 5px !important;
        }

        .dynamic-dropdown > ul::-webkit-scrollbar-track {
            width: 5px !important;
            background-color: #efefef !important;
        }

        .dynamic-dropdown > ul::-webkit-scrollbar-thumb {
            width: 5px !important;
            background-color: #111 !important;
        }

    .dynamic-dropdown.showDropdown > ul {
        display: block;
    }

        .dynamic-dropdown.showDropdown > ul > li {
            list-style: none;
            padding: 0 .5rem;
            margin: .5rem auto;
        }

            .dynamic-dropdown.showDropdown > ul > li > label {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: .5rem;
                cursor: pointer;
            }

    .dynamic-dropdown > span {
        width: 90%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: .5rem;
        overflow: hidden;
    }

        .dynamic-dropdown > span > span {
            padding: .15rem .5rem;
            font-size: small;
            color: #000;
            background-color: #efefef;
        }

/**/
.signup-cta-block .zodiac-widget {
    background-color: #0000 !important;
    border: none !important;
}

    .signup-cta-block .zodiac-widget.active {
        background-color: #fff !important;
    }

.signup-cta-block .zodiac-figure {
    width: 5rem;
    height: 5rem;
}

    .signup-cta-block .zodiac-figure img {
        width: 65%;
        height: auto;
    }

.signup-cta-block .zodiac-widget .zodiac-title a {
    width: fit-content;
    display: block;
    font-size: 1rem;
    text-align: center;
}

.signup-cta-block .zodiac-widget.active .zodiac-title a {
    color: #fd8d03;
}

.signup-cta-block .zodiac-widget .zodiac-title a:hover {
    color: #000;
}

.signup-cta-block .zodiac-widget .zodiac-title a::after {
    display: none;
}

.signup-cta-block .zodiac-widget .zodiac-title a span {
    display: block;
    font-size: small;
    text-align: center;
}

.signup-cta-block .zodiac-widget.active .zodiac-title a span {
    color: #fd8d03;
}

#pills-tabContent h2 {
    margin: 0px;
    color: rgb(51 34 125);
    font-family: Noticia Text;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
}

#pills-tabContent .tab-pane {
    padding: 1rem;
    background-color: #fff;
    border-radius: .5rem;
    border: 1px solid #c7c8c9;
}


/**/
#VideoFrame {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

    #VideoFrame iframe {
        width: 100%;
        height: auto !important;
        display: block;
    }

    #VideoFrame > video {
        width: 100%;
        max-width: 100%;
        height: auto;
    }


/* Payment Successful block */

.history-map-item-box {
    padding: 20px;
}

.aboutmysticsence {
    font-size: 2em;
    color: #28a745;
}

.success-message {
    font-size: 1.2em;
    color: #333;
    margin-top: 10px;
    margin-bottom: 30px;
}

.success-icon {
    max-width: 150px;
    margin: 20px 0;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

    .button:hover {
        background-color: #0056b3;
    }

/**/
#CustomerAccountTbl th, #CustomerAccountTbl td {
    width: 16.6666666667%;
    white-space: normal !important;
    vertical-align: middle;
}

/* Added to handle opacity in review reading*/
.review-listing.mb-3 {
    opacity: 5 !important;
}