@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Outfit", sans-serif;
}

:root {
    --header-gradient: rgba(120, 120, 220, 0.25);
    --primary-color: #2E3A87;
    --secondry-color: #8C7BFF;
    --para-color: #2c2e43cf;
    --white-color: #F9FAFF;
    --grey-card: #E6E9FF;
    --body-bg-color-start: #E9F0FF;
    --body-bg-color-end: #d1d6ff66;
}

body {
    font-family: "Outfit", sans-serif;
    background: var(--body-bg-color-end);
    color: var(--para-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


html {
    font-size: 16px;
}

a {
    color: var(--secondry-color);
    transition: all .3s ease;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    color: var(--secondry-color);
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin-bottom: 0px;
    line-height: 1.4;
    color: var(--para-color);
}

header {
    position: sticky;
    top: 0;
    left: 0;
    background: var(--grey-card);
    z-index: 2;
    border-bottom: 1px solid #83766e0f;
}

.custom-table::-webkit-scrollbar {
    width: 12px;
    height: 8px;
}

.custom-table::-webkit-scrollbar-track {
    background: #c7c7c7;
}

.custom-table::-webkit-scrollbar-thumb {
    background-color: var(--secondry-color);
    border-radius: 20px;
    border: 3px solid var(--secondry-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

ul {
    padding-left: 0px;
    list-style-type: none;
    margin-bottom: 0px;
}

.header-content ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-content ul li a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
}

.header-content ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--secondry-color);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.header-content ul li a:hover::before {
    width: 100%;
    background-color: var(--secondry-color);
}

.hero-section {
    background: var(--header-gradient);
    padding-block: 8rem;
}

.video-container video,
.video-container iframe,
.video-container img {
    width: 100%;
    border-radius: .5rem;
    border: 1px solid var(--secondry-color);
    background: var(--header-gradient);
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    min-height: 450px;
    object-fit: cover;
}

.site-logo a {
    color: var(--secondry-color);
    font-weight: 700;
    font-size: 24px;
}

.hero-left-content {
    display: grid;
    gap: 1.2rem;
}

section {
    margin-block: 4rem;
}

.hero-left-content .badges {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--white-color);
    background: #ff9f43;
    padding: 8px 24px;
    border-radius: 50px;
    width: fit-content;
}

.hero-left-content .badges+span,
.subheading,
.key-heading {
    font-size: 3rem;
    line-height: 48px;
    font-weight: 700;

    color: var(--primary-color);
}

.subheading,
.key-heading {
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 3.12rem;
}

.key-heading {
    font-size: 1.5rem;
    line-height: 28px;
    font-weight: 700;
}

.hero-left-content p {
    color: var(--para-color);
    font-size: 18px;
    font-weight: 400;
}

.btn-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btns {
    border-radius: 6px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
}

.btns:hover,
.btns:focus,
.btns:active {
    color: var(--primary-color);
}

.hero-seperator,
.hero-seperator div {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-top: .5rem;
    flex-wrap: wrap;
}

.hero-seperator img {
    mix-blend-mode: luminosity;
}

.hero-seperator div {
    gap: .3rem;
    color: #4b5563;
}

.hero-seperator div+span,
.footer-bottom .seperator {
    height: 16px;
    background: #c0c3c7;
    width: 1px;
    margin-top: .5rem;
}

.hero-seperator div>span {
    font-size: 14px;
}

.primary-btn {
    background: var(--secondry-color);
    color: var(--white-color);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--secondry-color);
    color: var(--white-color);
    border: 2px solid transparent;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* .text-bg {
    position: relative;
}

.text-bg::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    background: #a17c8b60;
    height: 12px;
    width: 100%;
    z-index: -1;
} */

.secondry-btn {
    border: 2px solid var(--secondry-color);
}

.shadow-box {
    background: var(--white-color);
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #f3f4f6;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    height: 100%;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.shadow-box:hover {
    transform: translateY(-5px);
}

.shadow-box .head {
    font-size: 20px;
    font-weight: 600;

}

.shadow-box p {
    color: var(--para-color);
}

.date {
    color: #9ca3af;
    font-size: 14px;
}

.icon-box {
    background: var(--secondry-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50px;
    display: grid;
    place-content: center;
}

.theme-third-icons .icon-box img {
    mix-blend-mode: luminosity;
}

.icon-box i {
    font-size: 1.4rem;
    color: var(--white-color);
}

.key-cards {
    background: var(--grey-card);
    padding: 1rem;
    display: grid;
    place-content: center;
    gap: .5rem;
    text-align: center;
    border-radius: .5rem;
}

main section:first-child {
    margin-top: 0rem;
}

.key-cards span {
    font-weight: 600;
    font-size: 16px;

    color: var(--secondry-color);
}

.key-cards p {
    color: var(--para-color);
}

.user-img {
    background: #4A5568;
    height: 3rem;
    min-width: 3rem;
    border-radius: 50px;
}

.user-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.people-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: .25rem;
}

.user-starts-container {
    padding-top: 10px;
}

.verifed-badges {
    margin-left: auto;
    background: #f0fdf4;
    border-radius: .5rem;
    padding: .25rem .5rem;
    color: #2ECC71;
    font-size: 0.75rem;
}

.yellow-badges {
    border-radius: 50px;
    padding: 4px 12px;
    background: rgba(255, 159, 67, 0.1);
    color: #ff9f43;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
}

.user-starts-container span {
    display: flex;
    font-weight: 600;
    line-height: 16px;

}

.result-section {
    background: var(--grey-card);
    padding-block: 4rem;
    margin-bottom: 0px;
    margin: 0px;
}

/* .result-section .shadow-box {
    background: var(--header-gradient);
} */

.result-section .shadow-box p {
    color: #000000b2;
}

.result-section .btns {
    margin: 3rem auto 0rem;
}

.package-box {
    border: 1px solid #e5e7eb;
    gap: .5rem;
    height: 100%;
    position: relative;
}

.package-img {
    min-height: 165px;
    width: 165px;
    background: #F8F9FA;
    margin: 0 auto;
    margin-bottom: 1rem;
    border-radius: .8rem;
}

.package-img img {
    border-radius: .8rem;
    width: 100%;
    height: 100%;
}

.package-box .user-starts-container {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding-top: 0px;
}

.package-box .date {
    padding-top: 5px;
}

.package-box .price span:first-child,
.feature-right-cont .blog-inner-price span:first-child {
    color: #424750a4;
}

.package-box .price {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.package-box .head {
    font-weight: 700;
}

.package-box .price span:last-child:not(aside .price span) {
    font-size: 1.5rem;
    color: var(--secondry-color);
    font-weight: 700;
}

.package-box .btns {
    padding: 12px 24px;
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 16px;
}

.package-list li::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url(../images/check-icons.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.package-list li {
    line-height: 1.4;
    padding-bottom: 10px;
    position: relative;
}

.package-list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    height: 100%;

}

.key-head {
    font-weight: 600;

    color: #020817;
}

.active-box {
    border: 2px solid var(--secondry-color);
    position: relative;
}

.active-box .btns,
.yellow-btn {
    background: #ff9f43;
    color: var(--white-color);
    margin: 0 auto;
    border: 1px solid transparent;
}

.banner-section .yellow-btn {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Common Button Styles */
.btns {
    border-radius: 6px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

.primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--white-color), var(--secondry-color));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.primary-btn:hover::before {
    transform: translateX(0);
}

.primary-btn:hover {
    color: var(--primary-color);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.newsletter-content form button:hover {
    color: var(--white-color);
}

.secondry-btn {
    border: 2px solid var(--secondry-color);
    background: transparent;
    color: var(--secondry-color);
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.active-box .btns {
    white-space: nowrap;
}

.yellow-btn::before,
.active-box .btns::before {
    background: linear-gradient(120deg, var(--white-color), #ff9f43);
}

.secondry-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--secondry-color), var(--white-color));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.secondry-btn:hover::before {
    transform: translateX(0);
}

.secondry-btn:hover {
    color: var(--primary-color);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.btns i {
    transition: transform 0.3s ease;
    padding-top: 3px;
}

.btns:hover i {
    transform: translateX(5px);
}

.active-box .package-img {
    margin-top: 3.5rem;
}

/* .theme-third-ps .pros-cons-container {
    margin-block: 0px;
} */
.theme-third-ps {
    background: var(--header-gradient);
    padding: 2rem;
    border-radius: .5rem;
}

.before-after-container .blog-heading,
.theme-third-ps .blog-heading {
    text-align: center;
}

.review-ps,
.before-after-container {
    margin-block: 2.5rem !important;
}

.home-ps {
    margin-bottom: 0px;
}

.faq-section {
    padding-top: 0px;
}

.home-ps .subheading {
    margin-bottom: 1.2rem;
}

.active-box .active-head {
    content: "";
    background: var(--secondry-color);
    color: var(--white-color);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 8px;
    font-weight: 700;
    text-align: center;
}

.accordion-button,
.accordion-button:not(.collapsed),
.accordion-item {
    background-color: unset;
    box-shadow: unset;
    border: unset;
}

.accordion-button:focus {
    box-shadow: unset;
}

.accordion-button {
    color: var(--primary-color) !important;
    font-weight: 600;

    margin-bottom: 1rem;
}

.accordion-header {
    background: #735bdd17;
    border-radius: 4px;
    color: var(--white-color);
}

.accordion-body {
    padding-block: 0px;
    padding-inline: .5rem;
}

.accordion-item {
    margin-bottom: .8rem;
}

.accordion-item p {
    /* border-bottom: 1px solid #c7c7c7; */
    border-radius: unset;
    padding-bottom: 8px;
    color: #0000009e;
}

.grey:hover {
    background: var(--secondry-color);
    transition: all .3s ease-in-out;
    color: var(--white-color);
}

.accordion-item:last-of-type>.accordion-collapse,
.accordion-item:last-of-type {
    border-radius: unset;
}

.accordion-body p {
    line-height: 24px;
}

.banner-section {
    padding-block: 1.5rem;
    text-align: center;
    background: var(--header-gradient);
    color: var(--white-color);
    margin-block: 0px;
}

.banner-content {
    display: grid;
    gap: 1.5rem;
    padding-block: 2.5rem;
}


.banner-content .btn-container {
    justify-content: center;
}

.banner-section .subheading {
    margin-bottom: 0px;
}

.banner-section p {
    max-width: 52%;
    margin: 0 auto;
    color: var(--primary-color);
}

footer {
    background: var(--secondry-color);
    padding: 3rem 0 2rem 0;
}

.third-theme-banner,
.third-theme-banner p {
    color: var(--primary-color);
}

.footer-head {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: .5rem;
    display: block;


}

.footer-content ul li {
    padding-bottom: 10px;
    transition: all .3s ease-in;
}

.footer-content ul li a {
    color: var(--white-color);
}

.footer-bottom ul li a,
.footer-bottom span {
    color: var(--white-color);
}

.social-icons li:hover {
    transform: translateY(-3px);
}

.footer-content ul li a:hover:not(.social-icons li a) {
    padding-left: 5px;
}

.footer-content ul li a:hover,
.footer-bottom ul li a:hover {
    color: var(--white-color);
}

footer p {
    color: var(--grey-card);
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #c7c7c75e;
    text-align: center;
    padding-top: 20px;
    margin-top: 1rem;
}

.footer-bottom ul {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: .5rem;
    align-items: center;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.social-icons li a i {
    font-size: 1rem;
}

/* blog-page */
.fs-20 {
    font-size: 20px;
    font-weight: 700;
}

.blog-page .hero-section {
    padding-block: 6rem;
    margin-bottom: 1rem !important;
}

.blog-page .stars span:first-child {
    font-size: 20px;
    font-weight: 700;
}

.timeing {
    color: #6b7280;
}

.blog-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-hero-badges span {
    background: var(--white-color);
    border-radius: 6px;
    padding: 8px 16px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: .4rem;
    font-weight: 500;
}


.blog-content .subheading {
    margin-bottom: 0px;
}

.blog-content p {
    margin-bottom: .5rem;
}

.blog-page-hero,
.blog-hero-badges {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-page .hero-section [class*="col"]:not(.blog-page .hero-section-third [class*="col"]),
.compare-page .hero-section [class*="col"] {
    margin: auto;
}

.hero-section-third,
.hero-section-third .blog-content,
.hero-section-third .subheading {
    text-align: left;
    align-items: start;
}

.hero-section-third .blog-hero-badges {
    justify-content: start;
}

.hero-section-third .subheading {
    font-size: 32px;
    line-height: 40px;
}

.accordion-third-theme {
    padding: 2rem;
    border-radius: .5rem;
    margin-bottom: 2rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.newsletter-section{
    box-shadow:unset !important;
}
.accordion-third-theme .accordion {
    padding-inline: 0px;
}

.accordion-third-theme .subheading {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 1rem;
}

.accordion-third-theme .accordion-item {
    margin-bottom: 0px;
}

.blog-page p:not(.banner-content p, .limited p) {
    /* color: #020817; */
    padding-bottom: 1rem;
    line-height: 1.6;
}

.blog-heading,
.rating-box span {
    font-size: 24px;
    padding-bottom: .5rem;
    font-weight: 700;
}


.before-after-container {
    background: var(--header-gradient);
    padding: 2rem;
    border-radius: .5rem
}

.rating-box p,
.shadow-box p,
.key-cards p {
    font-size: 15px;
}

.blog-img,
.before-img,
.after-img {
    aspect-ratio: 16/9;
    background: var(--grey-card);
    border-radius: .5rem;
    margin-block: 1.5rem;
}

.comp-card span {
    color: var(--secondry-color);
    font-weight: 600;
    font-size: 20px;
    display: flex;
    margin-bottom: .25rem !important;
}

.blog-img {
    margin-bottom: 2.5rem;
}

.before-after p {
    text-align: center;
}

.before-img,
.after-img {
    margin-bottom: .6rem !important;
}

.rating-box {
    background: var(--grey-card);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: .5rem;
    min-height: 150px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.rating-box-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: .5rem;
}

.rating-box-header .rating {
    background: var(--secondry-color);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.rating-box span {
    font-size: 18px;
    margin-bottom: .5rem;
    padding-bottom: 0px;
}

.rating-box .rating {
    font-size: 14px;
}

.comp-box span:not(.comp-card span) {
    font-size: 20px;
    margin-bottom: 1.3rem;
}

.comp-box {
    padding: 2rem;
}



.progress-bar-container {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 8px;
    margin: 10px 0;
}

.small-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.small-rating span:first-child {
    font-weight: 600;
}

.small-rating span:nth-child(2) {
    color: var(--secondry-color);
    font-weight: 700;

    font-size: 24px;
}

.progress-bar {
    height: 100%;
    background-color: var(--secondry-color);
    width: 0%;
    transition: width 0.4s ease;
}

.pros-cons-container {
    background: #f0fdf4;
    padding: 1.3rem;
    border-radius: .5rem;
    margin-block: 1rem;
}

.cons-container span {
    color: #EA3A4D !important;
}

.pros-cons-container>span {
    color: #2ECC71;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: .5rem;
    display: flex;
}

.pros-cons-container ul li,
.blog-page ul li {
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}

.blog-page ul:not(.pros-cons-container ul, aside .package-list) {
    list-style-type: disc;
    padding-left: 1rem;
}

aside .package-list li::before {
    background: url(../images/blog-check.svg) no-repeat center;
    left: -26px;
}

aside .package-list li {
    margin-bottom: 0px;
}

.pros-cons-container ul li::before,
.cons-container ul li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -27px;
    width: 20px;
    height: 20px;
    background-image: url('../images/blog-check.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pros-cons-container ul {
    padding-left: 1.5rem;
}

.pros-cons-container ul li::marker {
    padding-top: 1rem;
}

.cons-container {
    background: #fef2f2;
}

.cons-container ul li::before {
    background-color: red;
    background-image: unset;
    height: 5px;
    width: 5px;
    border-radius: 50px;
    top: 9px;
    left: -20px;
}

.rating-round {
    width: 65px;
    height: 65px;
    background-color: var(--secondry-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
}

.final-verdict {
    background: rgba(46, 204, 113, 0.1);
    padding: 1.8rem;
    border-radius: .5rem;
    margin-bottom: 1.8rem;
}

.blog-margin-head {
    padding-bottom: 1.5rem;
}

.landing-key .subheading {
    margin-bottom: 1rem;
}

.landing-key .blog-content-wrap {
    margin-bottom: 3rem;
}

.landing-key {
    text-align: center;
}

.blog-content-wrap {
    margin-block: 1rem;
}

.blog-page .shadow-box {
    margin-bottom: 1.5rem;
}

.blog-page .banner-content .yellow-btn {
    margin: unset;
    justify-content: center;
    gap: .5rem;
}

.blog-active .active-head {
    display: flex;
    flex-direction: column;
    font-size: 20px;
}

.blog-active .btn-container {
    margin-bottom: .8rem !important;
}

.blog-active .active-head small {
    font-weight: 400;
    font-size: 16px;
}

.blog-active .package-img {
    margin-top: 4.5rem;
    width: 215px;
    height: 215px;
}

aside .blog-active .user-starts-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
}

aside .package-img {
    margin-bottom: .5rem;
}

aside .price {
    gap: .5rem !important;
    margin-bottom: .8rem;
    justify-content: space-between;
}

aside .package-list {
    margin-bottom: .5rem;
}

aside .yellow-btn,
.feature-right-cont .primary-btn {
    width: fit-content !important;
    margin: unset !important;
}

aside small:not(.active-head small) {
    text-align: center;
    color: var(--para-color);
    line-height: 16px;
}

.rating-break {
    padding: 1.3rem;
    background: var(--grey-card);
    border-radius: .5rem;
    margin-bottom: 1.5rem;
}

.feature-right-cont .primary-btn {
    padding: 12px 24px;
}

.limited {
    background: rgba(255, 159, 67, 0.1);
    border-radius: .5rem;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.625rem;
}

.rating-break-inn {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 1rem;
    padding-bottom: .5rem;
}

.limited span:not(.rating-add span) {
    font-weight: 700;
    color: #ff7e02;
}

.rating-break span {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: .5rem;
    display: flex;
}

.theme-third-rates .rating-break span {
    padding-bottom: 0px !important;
}

.image-sections {
    margin-bottom: 2.5rem;
}

.rating-add span {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: .24rem;
}

.blog-page .package-box {
    height: auto;
}

.blog-page .banner-content .btns:not(.primary-btn) {
    color: var(--white-color);
}

.fianl-v-head {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-bottom: .8rem;
}

.fianl-v-head span {
    font-weight: 700;
    font-size: 20px;
}

.blog-inner-price {
    display: flex;
    flex-direction: column;
}

aside .price span:first-child,
.feature-right-cont .blog-inner-price span:first-child,
.package-box .price span:first-child {
    text-decoration: line-through;
}

aside .price span:nth-child(2),
.detail-heading,
.feature-right-cont .blog-inner-price span:nth-child(2) {
    color: var(--secondry-color);
    font-weight: 700;
    font-size: 24px;

}

aside .price span:nth-child(3),
.feature-right-cont .blog-inner-price span:nth-child(3) {
    color: #6b7280;
    font-weight: 400;
    font-size: 12px;
}

.custom-table {
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 0rem;
    border-radius: .5rem;
    border: 1px solid #e5e7eb;
}

.user-starts-container .yellow-btn {
    font-size: 14px;
}

.custom-table table {
    margin-bottom: 0rem;
}

.custom-table tr th {
    padding: 1.3rem;
}

.custom-table tr {
    vertical-align: middle;
}

.custom-table tr th:first-child {
    color: #4b5563;
    font-weight: 600;
}

.thead-head img:not(.stars img) {
    margin-block: 1rem;
}

.thead-head span:not(.date) {
    font-weight: 700;
    font-size: 18px;
    /* white-space: nowrap; */
}

.third-theme-table .thead-head img+div {
    text-align: left;
}

.thead-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: .25rem; */
    padding: 1.3rem;
}

.custom-table tr td {
    text-align: center;
}

.thead-head .user-starts-container {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-top: 0px;
}

.custom-table tr:nth-child(2) td {
    color: var(--secondry-color);
    font-size: 20px;
    font-weight: 700;
}

tr .fa-check {
    color: #2ECC71;
}

tr .fa-xmark {
    color: #EA3A4D;
}

.custom-table tbody tr:first-child td:not(.custom-table tbody tr .active),
.custom-table tbody tr:first-child th {
    background: var(--grey-card);
}

.custom-table .btns {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 16px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-block: .5rem;
    white-space: nowrap;
}

/* .custom-table .active tr th+td {
    background: rgba(46, 204, 113, 0.1);
} */
.custom-table .active {
    background: rgba(46, 204, 113, 0.1);
    border-bottom: 1px solid #c7c7c7;
}

.theme-third-rates .col-lg-6:nth-last-child(-n+2) .rating-box {
    margin-bottom: 0px;
}

.custom-table .detaild-box .blog-img {
    margin-block: 0px;
}


.detail-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.detail-heading {
    margin-bottom: 1rem;
    display: flex;
}

.detaild-white-box {
    padding: 2rem;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: .5rem;
    margin-bottom: 2rem;
    height: 100%;
}

.detailed-section .detaild-white-box:last-child {
    margin-bottom: 0px;
}
.col-md-6:has(.detaild-white-box){
    margin-bottom:2rem;
}
.detail-box .blog-img {
    margin-block: 0px;
    margin-bottom: 1rem;
    border-radius: .5rem;
}

.detail-box .blog-img img {
    border-radius: .5rem;
}

.detailed-section {
    background: var(--grey-card);
    padding: 4rem;

}

.blockquotes {
    padding: 1.3rem;
    background: rgba(46, 204, 113, 0.05);
    border-left: 4px solid var(--secondry-color);
}


.custumer-box {
    background: var(--grey-card);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-radius: .5rem;
    gap: .5rem;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.custumer-box p {
    font-style: italic;
    color: #020817;
    padding-bottom: .5rem;
}

.custumer-box span {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 20px;
}

.custumer-box small {
    color: #6b7280;
    padding-top: -10px;
}

.custumer-box .stars {
    padding-bottom: .5rem;
}

.custom-table tr:last-child td,
.custom-table tr:last-child th {
    border-bottom: unset;
}

.acivte-item {
    position: relative;
}

.acivte-item::before {
    position: absolute;
    content: "RECOMMENDED";
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    background: var(--secondry-color);
    color: var(--white-color);
    padding-top: .5rem;
    border-radius: 4px 4px 0px 0px;
    font-size: 12px;
    font-weight: 600;
}

.search-form {
    border-radius: 50px;
    border: 1px solid #d1d5db;
    padding: 12px 16px;
    background: var(--white-color);
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 8px;
    transition: all .25s ease-in;
}

.blog-page .blog-content p {
    margin-bottom: 0px;
    padding-bottom: 0px !important;
}

.compare-page .hero-section,
.blog-page .hero-section {
    padding: 5rem;
}

.search-form:focus-within {
    border-color: var(--secondry-color);
    box-shadow: 0 0 5px var(--secondry-color);
    transition: all .25s ease-in;
}


.search-form input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
}

.search-form button {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-nav {
    border-bottom: none;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.my-nav .nav-link:hover {
    background: var(--secondry-color);
    color: var(--white-color);
}

.my-nav .nav-link {
    border: none;
    border-radius: 50px;
    background-color: #f3f4f6;
    margin-right: 8px;
    color: var(--para-color);
    padding: 8px 20px;
}

.my-nav .nav-link.active {
    background-color: var(--secondry-color);
    color: var(--white-color);
}

.my-nav .nav-link:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.site-card {
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 12px;
    margin-bottom: 1.8rem;
    cursor: pointer;
}

.site-card-img {
    border-radius: 12px;
    background: #F8F9FA;

}

.site-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0px 0px;
    aspect-ratio: 16/9;
}

.site-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card-date {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: 14px;
}

.card-heading {
    font-size: 18px;
    font-weight: 700;

    color: var(--primary-color);
}

.site-card-content p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 20px !important;
    font-size: 14px;
    padding-bottom: .5rem;
}

.site-card-img {
    position: relative;
}

.blog-page section:nth-child(2) {
    margin-block: 3rem;
}

.site-card-img span {
    position: absolute;
    left: 12px;
    top: 12px;
    background: var(--secondry-color);
    color: var(--white-color);
    border-radius: .25rem;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 12px;
}

.site-card-content .read-more {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.grey {
    background: #f3f4f6;
    box-shadow: unset;
    color: var(--para-color);
    font-weight: 500;
    display: flex;
    font-size: 1rem;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    margin: 1rem auto -2rem auto;
    transition: all .3s ease-in-out;
}

.news-head {
    font-size: 30px !important;
    font-weight: 700;

    margin-bottom: 0px !important;
}

.newsletter-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
    text-align: center;
    padding: 2rem;
}

.newsletter-content small {
    color: var(--para-color);
}

.newsletter-content form {
    border-radius: 6px;
    padding: unset;
    padding-left: 1rem;
}

.feature-card-container,
.theme-third-rates {
    background: var(--header-gradient);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 2rem;
}

.theme-third-rates {
    margin-bottom: 2rem;
    padding: 1.6rem;
}

.theme-third-rates .overall-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
    padding-bottom: 0px;
}

.theme-third-rates .overall-score p {
    padding-bottom: 0px;
}

.theme-third-rates .rating-add {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.theme-third-rates .rating-box .rating-add:first-child span:last-child {
    text-decoration: line-through;
    color: var(--para-color);
}

.third-theme-table .thead-head {
    flex-direction: row;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.third-theme-table .acivte-item::before {
    right: 0;
    bottom: 0;
    left: unset;
    top: unset;
    width: 50%;
    height: 32px;
}

.theme-third-rates .rating-box .rating-add:last-child span:last-child {
    color: var(--secondry-color);
    font-weight: 600;
}

.detail-content strong {
    color: var(--primary-color);
}

.limited.theme-third-rates .rating-box {
    margin-bottom: .8rem;
    min-height: unset;
}

.theme-third-rates .rating-box {
    width: 100%;
    text-align: left;
}

.theme-third-rates .btns {
    font-size: 1rem;
    padding: 12px 24px;
}

.theme-third-rates .overall-score span:last-child {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondry-color);
    padding-bottom: 0px !important;
}

.feature-card {
    background: var(--white-color);
    padding: 1rem 2rem;
    border-radius: .5rem;
}

.newsletter-content form button {
    padding: 12px 24px;
    background: var(--secondry-color) !important;
    color: var(--white-color);
    border-radius: 0px 6px 6px 0px;
}

.feature-right-cont .user-starts-container {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .8rem;
}

.feature-right-cont>span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.feature-right-cont .blog-inner-price {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.newsletter-section [class*="col"] {
    margin: 0 auto;
}

.feature-right-cont .yellow-btn {
    margin: unset;
    font-size: 14px;
    padding: 4px 12px;
}

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin: auto;
    display: none;
    position: absolute;
    right: 32px;
    top: 18px;
}

.toggles {
    display: none;
}

.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 1.5px;
    background: var(--secondry-color);
    color: inherit;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5, -0.35, .35, 1.5) 0s;
}

.bar--top {
    bottom: calc(50% + 7.5px);
    transition-property: bottom, transform;
    transition-delay: calc(0s + 0.05s), 0s;
}

.bar--middle {
    top: 50%;
    transform: translateY(-1.5px);
    transition-property: opacity;
    transition-delay: calc(0s + 0.05s);
}

.bar--bottom {
    top: calc(50% + 7.5px);
    transition-property: top, transform;
    transition-delay: calc(0s + 0.05s), 0s;
}

#checkbox:checked+.toggle .bar--top {
    bottom: 50%;
    transform: rotate(135deg);
    transition-delay: 0s, calc(0s + 0.05s);
}

#checkbox:checked+.toggle .bar--middle {
    opacity: 0;
    transition-duration: 0s;
    transition-delay: calc(0s + 0.05s);
}

#checkbox:checked+.toggle .bar--bottom {
    top: 50%;
    transform: rotate(225deg);
    transition-delay: 0s, calc(0s + 0.05s);
}

#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondry-color), var(--secondry-color));
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--secondry-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 28px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
}

#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    background: linear-gradient(135deg, var(--secondry-color), var(--secondry-color));
    box-shadow: 0 8px 25px var(--secondry-color);
}

#scrollToTopBtn:hover svg {
    transform: translateY(-4px) rotate(20deg);
    transition: transform 0.3s ease;
}

#scrollToTopBtn svg {
    transition: transform 0.3s ease;
}

@media screen and (max-width:1199.98px) {

    .hero-left-content .badges+span,
    .subheading,
    .key-heading {
        font-size: 1.8rem;
        line-height: 32px;
    }

    .people-box-header {
        flex-wrap: wrap;
    }

    .verifed-badges {
        margin: unset;
    }

}

@media screen and (max-width:991.98px) {
    html {
        font-size: 14px;
    }
    .compare-page .hero-section, .blog-page .hero-section{
    padding:3.5rem;
}
    .blog-content {
        margin-bottom: 2rem;
    }

    .theme-third-rates .col-lg-6:nth-last-child(-n+2) .rating-box {
        margin-bottom: 1.4rem;
    }

    .my-nav {
        gap: 1.2rem;
    }

    header {
        border-bottom: 1px solid #c7c7c752;
    }

    .detail-heading {
        justify-content: center;
    }

    .detail-box {
        margin-bottom: 1.3rem;
    }

    .btns {
        font-size: 16px;
        font-weight: 500;
        padding: 12px 24px;
    }

    .header-content ul {
        background: var(--secondry-color);
        flex-direction: column;
        min-width: 16rem;
        height: 100vh;
        position: fixed;
        left: 0;
        color: var(--white-color);
        top: 0;
        padding: 3rem;
        transform: translateX(-102%);
        transition: transform 0.3s ease;
    }

    .menu-toggle:checked~.container .header-content ul {
        transform: translateX(0%);
    }

    .menu-toggle {
        display: block;
    }

    .header-content ul li a {
        color: var(--white-color);
        font-size: 1.2rem;
    }

    .toggle {
        display: block;
    }

    header .container {
        max-width: 100%;
        padding-inline: 1.5rem;
    }

    .feature-card {
        margin-bottom: 1rem;
    }

    .header-content ul li a:hover {
        color: var(--white-color);
        opacity: .8;
    }

    .thead-head .user-starts-container {
        flex-wrap: wrap;
        gap: .25rem;
    }

    .hero-section {
        padding-block: 3rem;
    }

    .hero-left-content {
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .key-heading,
    .subheading {
        font-size: 1.8rem;
    }

    .shadow-box .head {
        font-size: 1.2rem;
    }

    .col-md-4:has(.shadow-box),
    .col-lg-4:has(.shadow-box),
    .col-lg-3:has(.key-cards),
    .col-md-4:has(.custumer-box) {
        margin-bottom: 1.5rem;
    }

    .hero-left-content p {
        font-size: 16px;
    }

    .custom-table .btns {
        white-space: nowrap;
    }

    .custom-table {
        overflow-x: scroll;
    }

    .feature-right-cont .yellow-btn {
        width: fit-content;
    }
}

@media screen and (max-width:767.98px) {
    .third-theme-table .thead-head {
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .feature-right-cont {
        margin-bottom: 1.5rem;
    }

    .third-theme-table .acivte-item::before {
        width: 100%;
    }

}

@media screen and (max-width:575.98px) {
    .banner-section {
        padding-block: 1rem;
    }

    .fianl-v-head,
    .people-box-header {
        flex-wrap: wrap;
    }
.detailed-section {
    padding: 1rem 2rem;
}
    .thead-head span:not(.date) {
        font-size: 1rem;
        line-height: 20px;
    }

    .verifed-badges {
        margin: unset;
    }

    .btns {
        padding: 12px;
        font-size: 16px;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .blog-page section:nth-child(2) {
        margin-block: 1.8rem;
    }

    .blog-left-content:not(.image-sections .blog-left-content) {
        padding-inline: 1rem;
    }

    .before-after {
        margin-bottom: 2rem;
    }

    .pros-cons-container {
        margin-block: 1rem;
    }

    .hero-left-content {
        padding-inline: 1.5rem;
    }

    .compare-page .hero-section,
    .blog-page .hero-section {
        padding: 1.5rem 1rem;
    }

    .rating-box-header {
        flex-wrap: wrap;
        gap: .25rem;
    }

    .blog-heading {
        font-size: 20px;
    }

    .rating-box span {
        font-size: 16px;
    }

    .hero-left-content .badges+span,
    .subheading,
    .key-heading {
        font-size: 1.7rem;
        line-height: 30px;
    }

    .feature-right-cont>span {
        font-size: 20px;
    }

    .fs-20 {
        font-size: 16px;
    }

    .banner-section p {
        max-width: 100%;
    }

    .footer-content {
        margin-bottom: 1rem;
    }

    aside .price span:nth-child(2),
    .detail-heading,
    .feature-right-cont .blog-inner-price span:nth-child(2) {
        font-size: 18px;
    }

    .newsletter-content {
        padding: 1rem;
    }

    .news-head {
        font-size: 20px !important;
    }

    .hero-seperator div+span {
        display: none;
    }

    .hero-seperator {
        gap: .25rem;
    }

    .result-section {
        padding-block: 3rem;
    }

    section {
        margin-block: 1.8rem;
    }

    .subheading,
    .key-heading {
        margin-block: 1.4rem;
    }
}