/* Common Style starts */
:root {
    --page-primary-bg: #111a0f;
    --page-theme: #d7ff83;
    --page-current: #F8D2FA33;
    --page-gradient: linear-gradient(153.27deg,#f9f3ff 6.86%,#fff1f7 69.82%);
    --text-theme: #1A1A1A;
    --tick-icon: url(../images/adult-images/check-icon.svg);
    --yellow-tick-icon: url(../images/adult-images/yellow-tick.webp);
}

.page-primary-bg {
    background-color: var(--page-primary-bg);
}

.sections-wrapper .w-normal {
    font-weight: 400 !important;
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-theme {
    background-color: var(--page-theme);
}

.page-current {
    background-color: var(--page-current);
}

.page-gradient {
    background: var(--page-gradient);
}

.text-theme {
    color: var(--text-theme);
}

.link-white {
    text-decoration: underline !important;
    color: var(--white-color) !important;
}

.sections-wrapper .light-text,
.sections-wrapper h3.light-text {
    color: #f8d2fa !important;
}

.sections-wrapper h1,.sections-wrapper .h1,
.sections-wrapper h2,.sections-wrapper .h2,
.sections-wrapper h3,.sections-wrapper .h3,
.sections-wrapper h4,.sections-wrapper .h4,
.sections-wrapper h5,.sections-wrapper .h5,
.sections-wrapper h6,.sections-wrapper .h6 {
    color: var(--text-theme) !important;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.button-primary {
    color: var(--white-color);
    background-color: var(--page-theme) !important;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--page-primary-bg) !important;
}

.button-secondary {
    color: var(--white-color);
    background-color: var(--page-theme) !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.z-1 {
    position: relative;
    z-index: 1;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.listing-block h4 {
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
}

/* Benefit Block */

.home-intro {
    background-color: #1e321a;
    background-image: url("../images/adult-images/benefit-intro.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-block: 240px 90px;
    position: relative;
    z-index: 1;
}

.single-post .home-intro:before {
    background: #000000a1;
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.listing-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    border-radius: 10px;
    transition: all .3s;
    background: rgba(255, 255, 255, .4);
    border: 1px solid var(--white-color);
    backdrop-filter: blur(12px);
}

.listing-block ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.listing-block a img {
    width: 20px;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 5px 2px 0;
}

.listing-block ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s;
}

.listing-block:hover {
    transform: translateY(-4px);
}

.listing-block ul li a:hover {
    color: var(--white-color);
    text-decoration: underline !important;
}

/* Inner Page Css */

.table--listing {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.table--content h4 {
    padding-bottom: 16px;
    border-bottom: 1px solid #EBEDEF;
}

.table--content {
    background: var(--page-current);
    padding: 30px 30px;
    border-radius: 10px;
}

.table--listing li::before {
    content: '';
    position: absolute;
    inset: 12px auto auto 0;
    margin: auto;
    background-color: var(--page-theme);
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50px;
    transition: all 0.3s;
}

.table--listing li {
    position: relative;
    padding: 0 0 0 20px;
    transition: all 0.3s;
}

.table--listing li:hover {
    padding: 0 0 0 25px;
}

.table--listing li:hover a,
.table--listing li a  {
    color: var(--white-color);
}

.table--listing li:hover:before {
    background-color: var(--page-theme);
}

/* Recent Blog */

.recent--blog-wrapper {
    padding: 0 0 0;
}

.recent--blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.recent--blog-list li {
    padding: 0 0 15px;
    border-bottom: 1px solid var(--page-current);
    transition: all 0.3s;
    cursor: pointer;
}

.recent--blog-list ul li:last-child {
    border: none !important;
}

.recent--blog-list li a {
    color: var(--white-color);
    transition: all 0.3s;
}

.recent--blog-list li:hover {
    border-bottom: 1px dashed var(--page-current);
    transform: translateY(-2px);
}

.recent--blog-list li:hover a,
.recent--blog-list li a:hover {
    color: var(--white-color);
}

/* Listing Block */

.agency-list-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    counter-reset: section;
    list-style: none;
    padding-left: 40px;
    padding-bottom: 40px;
}

.agency-list-grid li {
    background-color: rgb(254 255 255 / 12%);
    padding: 20px 20px;
    position: relative;
    border-radius: 10px;
    border: 1px dashed #ffffff5e;
}

.agency-list-grid li::before {
    counter-increment: section;
    content: counter(section);
    width: 100%;
    max-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: 600;
    position: absolute;
    inset: 1px auto 0 -40px;
    font-size: 24px;
}

.agency-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.agency_disc {
    margin: 20px 0;
}

.subText {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color) !important;
}

.title {
    color: var(--page-theme) !important;
    font-weight: 500;
    font-size: 16px;
    display: block;
}

.site-link h3 {
    font-size: 22px;
}

.rating-box .rating-stars {
    font-size: 22px;
}

[data-star] {
    text-align: left;
    font-style: normal;
    display: inline-block;
    position: relative;
    unicode-bidi: bidi-override;
}

[data-star]::before {
    display: block;
    content: "★★★★★";
    color: #eee;
}

[data-star]::after {
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    content: "★★★★★";
    width: 0;
    color: #ff8c00;
    overflow: hidden;
    height: 100%;
}

[data-star^="0.1"]::after {
    width: 2%;
}

[data-star^="0.2"]::after {
    width: 4%;
}

[data-star^="0.3"]::after {
    width: 6%;
}

[data-star^="0.4"]::after {
    width: 8%;
}

[data-star^="0.5"]::after {
    width: 10%;
}

[data-star^="0.6"]::after {
    width: 12%;
}

[data-star^="0.7"]::after {
    width: 14%;
}

[data-star^="0.8"]::after {
    width: 16%;
}

[data-star^="0.9"]::after {
    width: 18%;
}

[data-star^="1"]::after {
    width: 20%;
}

[data-star^="1.1"]::after {
    width: 22%;
}

[data-star^="1.2"]::after {
    width: 24%;
}

[data-star^="1.3"]::after {
    width: 26%;
}

[data-star^="1.4"]::after {
    width: 28%;
}

[data-star^="1.5"]::after {
    width: 30%;
}

[data-star^="1.6"]::after {
    width: 32%;
}

[data-star^="1.7"]::after {
    width: 34%;
}

[data-star^="1.8"]::after {
    width: 36%;
}

[data-star^="1.9"]::after {
    width: 38%;
}

[data-star^="2"]::after {
    width: 40%;
}

[data-star^="2.1"]::after {
    width: 42%;
}

[data-star^="2.2"]::after {
    width: 44%;
}

[data-star^="2.3"]::after {
    width: 46%;
}

[data-star^="2.4"]::after {
    width: 48%;
}

[data-star^="2.5"]::after {
    width: 50%;
}

[data-star^="2.6"]::after {
    width: 52%;
}

[data-star^="2.7"]::after {
    width: 54%;
}

[data-star^="2.8"]::after {
    width: 56%;
}

[data-star^="2.9"]::after {
    width: 58%;
}

[data-star^="3"]::after {
    width: 60%;
}

[data-star^="3.1"]::after {
    width: 62%;
}

[data-star^="3.2"]::after {
    width: 64%;
}

[data-star^="3.3"]::after {
    width: 66%;
}

[data-star^="3.4"]::after {
    width: 68%;
}

[data-star^="3.5"]::after {
    width: 70%;
}

[data-star^="3.6"]::after {
    width: 72%;
}

[data-star^="3.7"]::after {
    width: 74%;
}

[data-star^="3.8"]::after {
    width: 76%;
}

[data-star^="3.9"]::after {
    width: 78%;
}

[data-star^="4"]::after {
    width: 80%;
}

[data-star^="4.1"]::after {
    width: 82%;
}

[data-star^="4.2"]::after {
    width: 84%;
}

[data-star^="4.3"]::after {
    width: 86%;
}

[data-star^="4.4"]::after {
    width: 88%;
}

[data-star^="4.5"]::after {
    width: 90%;
}

[data-star^="4.6"]::after {
    width: 92%;
}

[data-star^="4.7"]::after {
    width: 94%;
}

[data-star^="4.8"]::after {
    width: 96%;
}

[data-star^="4.9"]::after {
    width: 98%;
}

[data-star^="5"]::after {
    width: 100%;
}

.button-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    justify-content: center;
    padding: 20px 20px;
    border: 1px solid rgb(255 255 255 / 42%);
    border-radius: 10px;
}

.button-block .button {
    padding: 16px 22px;
    border-radius: 10px !important;
    text-align: center;
    justify-content: center;
}

.button-secondary {
    color: var(--white-color);
    background-color: #ffffff26 !important;
    border: 1px solid #ffffff66;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

@media (min-width: 1200px) and (max-width: 1599px) {
    
    .container {
        max-width: 1200px !important;
        width: 100%;
    }

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media screen and (max-width: 1399px) {

}

@media screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .spacer-xl {
        padding: 70px 0 !important;
    }
    
    .pt-0 {
        padding-top: 0px !important;
    }

    .pb-0 {
        padding-bottom: 0px !important;
    }
    
    .py-1 {
        padding: 10px 0 !important;
    }

    .mb-50 {
        margin-bottom: 28px;
    }

    .new-faq .accordion-button::after {
        background-size: 28px !important;
        width: 28px !important;
        height: 28px !important;
    }
    
}

@media screen and (max-width: 767px) {

    .sections-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 18px !important;
        gap: 10px;
    }

    .agency-list-grid {
        padding:0;
    }

    .agency-list-grid li {
        padding: 50px 20px 20px;
    }

    .agency-list-grid li::before {
        background: var(--page-theme);
        color: var(--page-primary-bg);
        inset: 0;
        border-radius: 10px 0 8px 0;
        font-size: 16px;
    }

    .agency-header {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
}
