html {
    overflow-x: hidden;
}

body {
    font-family: Poppins, sans-serif;
}

ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}

@media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

section.banner.home-banner {
    background-color: rgb(112, 96, 247);
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}

header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}

header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: rgb(25, 0, 81);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(25, 0, 81);
}

header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}

a.navbar-brand {
    margin-right: 0px;
}

a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}

a.navbar-brand img {
    width: 150px;
    filter: invert(1) brightness(10);
}

.btn-white:hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img img {
    width: 90%;
}

.banner-content h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content h1 span {
    font-weight: bold;
}

.section-heading h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.section-heading p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}

ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}

ul.list-items {
    margin-top: 40px;
}

section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(112, 96, 247);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}

section.cta {
    background-color: rgb(25, 0, 81);
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:hover {
    color: white;
    background-color: rgb(25, 0, 81);
}

.number-box:hover * {
    color: white;
}

section.type ul {
    display: flex;
    align-items: center;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}

section.type ul li {
    text-align: center;
}

section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}

section.type .section-heading {
    background-color: rgb(25, 0, 81);
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}

section.type .section-heading h2 {
    color: white;
}

.success-upper span {
    background-color: rgb(112, 96, 247);
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}

section.cta-launch {
    position: relative;
    padding-top: 83px;
}

section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: rgb(25, 0, 81);
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img img {
    width: 100%;
}

ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}

ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}

ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}

ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
}

.author-box {
    text-align: center;
}

.author-box .stars i {
    color: rgb(255, 204, 0);
}

.author-box p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box img {
    width: 100%;
}

section.author {
    padding: ;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box img {
    width: 100%;
    border-radius: 30px;
}

.blog-box h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

section.blog .section-heading {
    margin-bottom: 40px;
}

section.blog {
    padding-bottom: 120px;
}

footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: rgb(112, 96, 247);
    z-index: 0;
}

.menu-list h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list a:hover {
    color: rgb(25, 0, 81);
}

.menu-list a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right a {
    color: white;
}

.copy-right p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}

section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}

section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: rgb(25, 0, 81);
    position: absolute;
    z-index: -17;
    top: -200px;
}

section.stories .section-heading h2 {
}

section.stories .section-heading.text-center p {
}

.stories-img img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}

@media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}

section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}

ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img img {
    width: 100%;
    object-fit: cover;
}

.team-box h5 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}

section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
}

.contact-form h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: rgb(239, 239, 239);
    border-radius: 50px;
    height: 44px;
    border-color: rgb(239, 239, 239);
}

.contact-form label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form button {
    display: block;
    width: 100%;
}

.contact-form p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form p span {
    text-decoration: underline;
}

.inner-banner::before, .home-banner::before {
    content: "";
    position: absolute;
    /* background-image: url("../img/banner-shape-before.webp"); */
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box img {
    margin-bottom: 15px;
}

.contact-info-box h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}

section.contact-info {
    padding-bottom: 20px;
}

section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}

footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
        left: -12%;
        bottom: -23%;
    }
}

.banner-content h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content ul li img {
    position: relative;
    top: 2px;
}

.banner-content ul {
    margin-top: 25px;
    margin-bottom: 0px;
}

section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner img {
    width: 220px;
}

.cta-wrapper-inner .section-heading h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

section.stories.service-stories::before {
    display: none;
}

section.count {
    padding: 100px 0px;
}

section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}

section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box i {
    color: rgb(255, 204, 0);
}

.reviewed-right h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}

section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.brand-logo ul li {
    flex: 0 0 15%;
}

section.brand-logo ul li img {
    width: 100%;
}

section.brand-logo {
    padding: 39px 0px 80px;
}

ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}

ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}

section.podcast.expertise {
    background-image: none;
}

section.service-expertise {
}

section.service-expertise * {
    color: white;
}

section.service-expertise .section-heading h2 span {
    color: white;
}

section.counter {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid rgb(112, 96, 247);
    border-right: 8px solid rgb(112, 96, 247);
}

.counter-box p {
    margin: 0px;
}

.counter-box h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(25, 0, 81);
    color: white;
}

div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}

section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: rgb(112, 96, 247);
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}

div#accordionExample {
    margin-top: 40px;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid rgb(112, 96, 247) !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs button.active {
    background-color: rgb(112, 96, 247);
    color: white;
}

.nav.nav-tabs button.active span {
    color: white;
}

.nav.nav-tabs button i {
    position: absolute;
    top: -25px;
    background-color: rgb(112, 96, 247);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
}

.process-heading p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right ul li:last-child {
    margin-bottom: 0px;
}

.process-right ul {
    margin: 0px;
}

.process-right ul li i {
    color: rgb(112, 96, 247);
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}

section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tab-difference.tab-content {
    margin-top: 80px;
}

ul.difference-list {
    margin: 40px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

ul.difference-list i {
    color: rgb(112, 96, 247);
}

.difference-box h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}

section.genre {
    padding-bottom: 50px;
}

.counter-box span {
    font-size: 12px;
}

.counter-box span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading h2 {
    color: white !important;
}

.counter.counter-number .section-heading h2 span {
    color: white;
}

.counter.counter-number .section-heading h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: rgb(112, 96, 247);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
}

section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}

section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide img {
    height: 450px;
}

.btn-wrapper a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list ul {
    margin: 0px !important;
}

.template-list ul li:last-child p {
    margin-bottom: 0px;
}

.template-list ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active span {
    border-color: white;
}

h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left > span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box > span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}

section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}

section.custom-book-illustration {
    padding-bottom: 100px;
}

ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}

ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}

section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}

section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img img.first-book {
    position: relative;
    z-index: 4;
}

section.author-identity {
    padding-bottom: 120px;
}

section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

.protection .number-box h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}

section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}

section.understand * {
    color: white;
}

ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}

section.understand .design-starts-left p {
    color: black;
}

section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper ul {
    margin-bottom: 0px;
}

section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper ul li i {
    color: rgb(112, 96, 247);
}

.security-full > p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box h6 {
    margin-bottom: 15px;
}

.number-box audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}

input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}

input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:focus {
    border-color: var(--orange);
}

.genre-select option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: rgb(161 37 103);    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: rgb(112, 96, 247);
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}

@keyframes countUp {
    0% {
        opacity: 0.4;
        transform: translateY(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}

section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head h6 {
    font-size: 23px;
}

.manuscript-success-head span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: rgb(161 37 103);    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left > p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots li {
    width: 30px;
    height: 10px;
}

.slick-dots li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}

ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}

section.manuscript-success {
    padding-bottom: 20px;
}

section.launch-strategy {
    /* background-image: url("../img/number-bg.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}

section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}

section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right ul {
    margin-top: 35px;
}

section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:hover {
    background: rgb(161 37 103);    color: white;
}

.option-box input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box span {
    display: block;
    font-size: 13px;
}

div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}

section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box a {
    display: block;
}

.cta-box a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table thead tr th {
    width: 10%;
}

.direct-table thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table tr {
    text-align: center;
}

.direct-table tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table tbody tr td {
    padding: 13px;
}

section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    /* background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%); */
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
        padding: 30px;
    }

    .metric-value {
        font-size: 2.8rem;
    }

    .flip-card-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
        font-size: 0.95rem;
    }

    .flip-card-wrapper {
        height: 320px;
    }

    .flip-card-front, .flip-card-back {
        padding: 25px;
    }

    .metric-value {
        font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
        font-size: 0.9rem;
    }
}

section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right p {
    width: 100%;
}

section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}

section.type .tab-pane {
    padding: 0px !important;
}

section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    /* background: url("../img/podcast-bg.png"); */
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs button i {
    display: none;
}

.platform-tabs .nav.nav-tabs button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}

li.plat-rank-item strong {
    background: rgb(161 37 103);}

li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}

section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading h2 {
    color: white;
}

.counter-content.section-heading p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}

section.expertise.terms-conditions h2 {
    font-weight: 500;
}

img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer p {
    color: white;
    margin-top: 1rem;
}

p.model-header {
    font-size: 35px;
    font-weight: 600;
}

p.serv-header {
    font-size: 20px;
    font-weight: 500;
}

p.manu-h3 {
    font-size: 2rem;
    color: white;
}

section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}

p.cta-p {
    font-size: 35px;
    line-height: 40px;
}

p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}

p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

p.review-name {
    font-size: 2rem;
    color: rgb(112, 96, 247);
    font-weight: 700;
}

div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}

div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}

section.banner.home-banner .banner-content {
    margin-top: 5rem;
}

p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}

p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}

section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}

p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}

p.launch-h5 + p {
    margin: 5px 0px 20px;
}

section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}

p.sub-title-span {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}

p.steps {
    color: rgb(112, 96, 247);
    font-weight: 600;
}

h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}

h3.h3-proccess span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

p.fic-para {
    color: white;
    padding: 1rem;
    background: rgb(111, 95, 245);
    border-radius: 30px;
    margin-top: 1rem;
}

section.cta-no-index {
    z-index: 1 !important;
}

p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(112, 96, 247);
}

p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card p {
    font-size: 26px;
}

p.manu-title-sm {
    font-size: 20px;
    color: white;
}

p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

p.manu-title-sm {
    font-size: 20px;
    color: white;
}

p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}

p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}

p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}


p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}

p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}

h3.our-process {
    font-size: 18px;
    font-weight: 500;
}

section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}

h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}

h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}

p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}

p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}

header.sticky img {
    filter: none;
    width: 90px;
}

header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}

header.sticky .btn-header {
    background: black;
    color: white;
}

section.experience-image-box {
    position: relative;
    z-index: 2;
}

div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}

section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}

section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}

section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}

div#quoteModal .contact-form {
    background: transparent;
}

div#quoteModal .form-group * {
    border: 1px solid rgb(155, 110, 255);
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}

section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box h3 {
    font-size: 22px;
}

section.protection.inner-protection .number-box {
    min-height: 234px;
}

section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}

form.form_submission .success {
    padding: 0px;
}

label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail a img {
    border-radius: 10px;
}

.content-block .post-thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded img {
    border-radius: 100%;
}

.post-meta .post-author-avatar img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}

ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}

ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}

ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}

ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}

ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded img {
    border-radius: 100%;
}

.post-meta .post-author-avatar img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail a {
    border-radius: 100%;
}

.content-block .post-thumbnail a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}

ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}

ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}

ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}

div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}

div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}

p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details figure img {
    border-radius: 10px;
}

.axil-post-details p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}

ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

ul.social-icon li {
    margin: 5px;
}

ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}

ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}

p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}

newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}

p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit button.axil-button {
    width: auto;
}

a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}

ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text ul li p {
    margin: 0px;
}

.content-block-text ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}

p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::after {
    border-radius: 0px;
}

.post-thumbnail::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge i {
    color: rgb(255, 204, 0);
}

.illus-hero h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading h2 .muted {
}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card ul {
    margin: 0px 0px 28px;
}

.pricing-card ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}

@media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .illus-hero-shape {
        display: none;
    }

    .illus-stats {
        padding: 50px 0px;
    }

    .illus-stats .stat-item {
        margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
        font-size: 36px;
    }

    .get-started {
        padding: 50px 0px;
    }

    .quote-form-card {
        padding: 24px;
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
        font-size: 38px;
    }
}

.post-author-avatar.border-rounded img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:hover {
}

.works-card:hover * {
    color: white;
}

.works-card:hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}

p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
p.mb-4.model-header.text-left {}

div#quoteModal {}

div#quoteModal p {font-size: 25px;}

span.top-modal {
}

p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service img {border-radius: 25px;width: 100%;}
figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}

figure.resource-img {
    margin: 0;
}

.resource-content h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content p {
    font-size: 15px;
    margin-bottom: 1rem;
}
tml {
    overflow-x: hidden;
}

body {
    font-family: Poppins, sans-serif;
}

ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}

@media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

section.banner.home-banner {
    background-color: rgb(112, 96, 247);
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}

header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}

header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: rgb(25, 0, 81);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(25, 0, 81);
}

header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}

a.navbar-brand {
    margin-right: 0px;
}

a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}

a.navbar-brand img {
    width: 150px;
    filter: invert(1) brightness(10);
}

.btn-white:hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img img {
    width: 90%;
}

.banner-content h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content h1 span {
    font-weight: bold;
}

.section-heading h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.section-heading p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}

ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}

ul.list-items {
    margin-top: 40px;
}

section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(112, 96, 247);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}

section.cta {
    background-color: rgb(25, 0, 81);
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:hover {
    color: white;
    background-color: rgb(25, 0, 81);
}

.number-box:hover * {
    color: white;
}

section.type ul {
    display: flex;
    align-items: center;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}

section.type ul li {
    text-align: center;
}

section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}

section.type .section-heading {
    background-color: rgb(25, 0, 81);
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}

section.type .section-heading h2 {
    color: white;
}

.success-upper span {
    background-color: rgb(112, 96, 247);
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}

section.cta-launch {
    position: relative;
    padding-top: 83px;
}

section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: rgb(25, 0, 81);
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img img {
    width: 100%;
}

ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}

ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}

ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}

ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
}

.author-box {
    text-align: center;
}

.author-box .stars i {
    color: rgb(255, 204, 0);
}

.author-box p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box img {
    width: 100%;
}

section.author {
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box img {
    width: 100%;
    border-radius: 30px;
}

.blog-box h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

section.blog .section-heading {
    margin-bottom: 40px;
}

section.blog {
    padding-bottom: 120px;
}

footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: rgb(112, 96, 247);
    z-index: 0;
}

.menu-list h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list a:hover {
    color: rgb(25, 0, 81);
}

.menu-list a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right a {
    color: white;
}

.copy-right p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}

section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}

section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: rgb(25, 0, 81);
    position: absolute;
    z-index: -17;
    top: -200px;
}

section.stories .section-heading h2 {
}

section.stories .section-heading.text-center p {
}

.stories-img img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}

@media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}

section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}

ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img img {
    width: 100%;
    object-fit: cover;
}

.team-box h5 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}

section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
}

.contact-form h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: rgb(239, 239, 239);
    border-radius: 50px;
    height: 44px;
    border-color: rgb(239, 239, 239);
}

.contact-form label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form button {
    display: block;
    width: 100%;
}

.contact-form p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form p span {
    text-decoration: underline;
}

.inner-banner::before, .home-banner::before {
    content: "";
    position: absolute;
    /* background-image: url("../img/banner-shape-before.webp"); */
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box img {
    margin-bottom: 15px;
}

.contact-info-box h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}

section.contact-info {
    padding-bottom: 20px;
}

section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}

footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
        left: -12%;
        bottom: -23%;
    }
}

.banner-content h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content ul li img {
    position: relative;
    top: 2px;
}

.banner-content ul {
    margin-top: 25px;
    margin-bottom: 0px;
}

section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner img {
    width: 220px;
}

.cta-wrapper-inner .section-heading h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

section.stories.service-stories::before {
    display: none;
}

section.count {
    padding: 100px 0px;
}

section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}

section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box i {
    color: rgb(255, 204, 0);
}

.reviewed-right h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}

section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.brand-logo ul li {
    flex: 0 0 15%;
}

section.brand-logo ul li img {
    width: 100%;
}

section.brand-logo {
    padding: 39px 0px 80px;
}

ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}

ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}

section.podcast.expertise {
    background-image: none;
}

section.service-expertise {
}

section.service-expertise * {
    color: white;
}

section.service-expertise .section-heading h2 span {
    color: white;
}

section.counter {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid rgb(112, 96, 247);
    border-right: 8px solid rgb(112, 96, 247);
}

.counter-box p {
    margin: 0px;
}

.counter-box h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(25, 0, 81);
    color: white;
}

div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}

section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: rgb(112, 96, 247);
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}

div#accordionExample {
    margin-top: 40px;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid rgb(112, 96, 247) !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs button.active {
    background-color: rgb(112, 96, 247);
    color: white;
}

.nav.nav-tabs button.active span {
    color: white;
}

.nav.nav-tabs button i {
    position: absolute;
    top: -25px;
    background-color: rgb(112, 96, 247);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
}

.process-heading p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right ul li:last-child {
    margin-bottom: 0px;
}

.process-right ul {
    margin: 0px;
}

.process-right ul li i {
    color: rgb(112, 96, 247);
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}

section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tab-difference.tab-content {
    margin-top: 80px;
}

ul.difference-list {
    margin: 40px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

ul.difference-list i {
    color: rgb(112, 96, 247);
}

.difference-box h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}

section.genre {
    padding-bottom: 50px;
}

.counter-box span {
    font-size: 12px;
}

.counter-box span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading h2 {
    color: white !important;
}

.counter.counter-number .section-heading h2 span {
    color: white;
}

.counter.counter-number .section-heading h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: rgb(112, 96, 247);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
}

section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}

section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide img {
    height: 450px;
}

.btn-wrapper a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list ul {
    margin: 0px !important;
}

.template-list ul li:last-child p {
    margin-bottom: 0px;
}

.template-list ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active span {
    border-color: white;
}

h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left > span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box > span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}

section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}

section.custom-book-illustration {
    padding-bottom: 100px;
}

ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}

ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}

section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}

section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img img.first-book {
    position: relative;
    z-index: 4;
}

section.author-identity {
    padding-bottom: 120px;
}

section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

.protection .number-box h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}

section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}

section.understand * {
    color: white;
}

ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}

section.understand .design-starts-left p {
    color: black;
}

section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper ul {
    margin-bottom: 0px;
}

section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper ul li i {
    color: rgb(112, 96, 247);
}

.security-full > p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box h6 {
    margin-bottom: 15px;
}

.number-box audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}

input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}

input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:focus {
    border-color: var(--orange);
}

.genre-select option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: rgb(161 37 103);    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: rgb(112, 96, 247);
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}

@keyframes countUp {
    0% {
        opacity: 0.4;
        transform: translateY(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}

section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head h6 {
    font-size: 23px;
}

.manuscript-success-head span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: rgb(161 37 103);    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left > p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots li {
    width: 30px;
    height: 10px;
}

.slick-dots li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}

ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}

section.manuscript-success {
    padding-bottom: 20px;
}

section.launch-strategy {
    /* background-image: url("../img/number-bg.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}

section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}

section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right ul {
    margin-top: 35px;
}

section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:hover {
    background: rgb(161 37 103);    color: white;
}

.option-box input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box span {
    display: block;
    font-size: 13px;
}

div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}

section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box a {
    display: block;
}

.cta-box a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table thead tr th {
    width: 10%;
}

.direct-table thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table tr {
    text-align: center;
}

.direct-table tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table tbody tr td {
    padding: 13px;
}

section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    /* background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%); */
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
    background-color: rgba(161, 37, 103, 0.10);
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
        padding: 30px;
    }

    .metric-value {
        font-size: 2.8rem;
    }

    .flip-card-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
        font-size: 0.95rem;
    }

    .flip-card-wrapper {
        height: 320px;
    }

    .flip-card-front, .flip-card-back {
        padding: 25px;
    }

    .metric-value {
        font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
        font-size: 0.9rem;
    }
}

section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right p {
    width: 100%;
}

section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}

section.type .tab-pane {
    padding: 0px !important;
}

section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    /* background: url("../img/podcast-bg.png"); */
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs button i {
    display: none;
}

.platform-tabs .nav.nav-tabs button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}

li.plat-rank-item strong {
    background: rgb(161 37 103);}

li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}

section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading h2 {
    color: white;
}

.counter-content.section-heading p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}

section.expertise.terms-conditions h2 {
    font-weight: 500;
}

img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer p {
    color: white;
    margin-top: 1rem;
}

p.model-header {
    font-size: 35px;
    font-weight: 600;
}

p.serv-header {
    font-size: 20px;
    font-weight: 500;
}

p.manu-h3 {
    font-size: 2rem;
    color: white;
}

section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}

p.cta-p {
    font-size: 35px;
    line-height: 40px;
}

p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}

p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

p.review-name {
    font-size: 2rem;
    color: rgb(112, 96, 247);
    font-weight: 700;
}

div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}

div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}

section.banner.home-banner .banner-content {
    margin-top: 5rem;
}

p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}

p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}

section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}

p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}

p.launch-h5 + p {
    margin: 5px 0px 20px;
}

section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}

p.sub-title-span {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}

p.steps {
    color: rgb(112, 96, 247);
    font-weight: 600;
}

h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}

h3.h3-proccess span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

p.fic-para {
    color: white;
    padding: 1rem;
    background: rgb(111, 95, 245);
    border-radius: 30px;
    margin-top: 1rem;
}

section.cta-no-index {
    z-index: 1 !important;
}

p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(112, 96, 247);
}

p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card p {
    font-size: 26px;
}

p.manu-title-sm {
    font-size: 20px;
    color: white;
}

p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

p.manu-title-sm {
    font-size: 20px;
    color: white;
}

p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}

p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}

p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}


p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}

p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}

h3.our-process {
    font-size: 18px;
    font-weight: 500;
}

section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}

h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}

h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}

p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}

p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}

header.sticky img {
    filter: none;
    width: 90px;
}

header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}

header.sticky .btn-header {
    background: black;
    color: white;
}

section.experience-image-box {
    position: relative;
    z-index: 2;
}

div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}

section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}

section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}

section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}

div#quoteModal .contact-form {
    background: transparent;
}

div#quoteModal .form-group * {
    border: 1px solid rgb(155, 110, 255);
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}

section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box h3 {
    font-size: 22px;
}

section.protection.inner-protection .number-box {
    min-height: 234px;
}

section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}

form.form_submission .success {
    padding: 0px;
}

label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail a img {
    border-radius: 10px;
}

.content-block .post-thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded img {
    border-radius: 100%;
}

.post-meta .post-author-avatar img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}

ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}

ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}

ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}

ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}

ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded img {
    border-radius: 100%;
}

.post-meta .post-author-avatar img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail a {
    border-radius: 100%;
}

.content-block .post-thumbnail a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}

ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}

ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}

ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}

div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}

div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}

p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details figure img {
    border-radius: 10px;
}

.axil-post-details p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}

ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

ul.social-icon li {
    margin: 5px;
}

ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}

ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}

p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}

newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}

p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit button.axil-button {
    width: auto;
}

a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}

ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text ul li p {
    margin: 0px;
}

.content-block-text ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}

p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::after {
    border-radius: 0px;
}

.post-thumbnail::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge i {
    color: rgb(255, 204, 0);
}

.illus-hero h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading h2 .muted {
}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card ul {
    margin: 0px 0px 28px;
}

.pricing-card ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}

@media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .illus-hero-shape {
        display: none;
    }

    .illus-stats {
        padding: 50px 0px;
    }

    .illus-stats .stat-item {
        margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
        font-size: 36px;
    }

    .get-started {
        padding: 50px 0px;
    }

    .quote-form-card {
        padding: 24px;
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
        font-size: 38px;
    }
}

.post-author-avatar.border-rounded img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:hover {
}

.works-card:hover * {
    color: white;
}

.works-card:hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}

p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
p.mb-4.model-header.text-left {}

div#quoteModal {}

div#quoteModal p {font-size: 25px;}

span.top-modal {
}

p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service img {border-radius: 25px;width: 100%;}
figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}

figure.resource-img {
    margin: 0;
}

.resource-content h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content p {
    font-size: 15px;
    margin-bottom: 1rem;
}html {
    overflow-x: hidden;
}

body {
    font-family: Poppins, sans-serif;
}

ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}

@media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

section.banner.home-banner {
    background-color: #a12567;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}

header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}

header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: #194773;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid #194773;
}

header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}

a.navbar-brand {
    margin-right: 0px;
}

a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}

a.navbar-brand img {
    width: 270px;
    filter: invert(1) brightness(10);
}

.btn-white:hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img img {
    width: 90%;
}

.banner-content h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content h1 span {
    font-weight: bold;
}

.section-heading h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading h2 span {
    color: #a12567;
    font-weight: bold;
}

.section-heading p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}

ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}

ul.list-items {
    margin-top: 40px;
}

section.expertise {
    padding: 80px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: #a12567;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid #a12567;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}

section.cta {
    background-color: #194773;
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 100px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:hover {
    color: white;
    background-color: rgb(25 71 115);
}

.number-box:hover * {
    color: white;
}

section.type ul {
    display: flex;
    align-items: center;
    background-color: #a12567;
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}

section.type ul li {
    text-align: center;
}

section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}

section.type .section-heading {
    background-color: #194773;
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}

section.type .section-heading h2 {
    color: white;
}

.success-upper span {
    background-color: #a12567;
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 100px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}

section.cta-launch {
    position: relative;
    padding-top: 83px;
}

section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #194773;
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img img {
    width: 100%;
}

ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}

ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}

ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}

ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 70px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}

.author-box {
    text-align: center;
}

.author-box .stars i {
    color: rgb(255, 204, 0);
}

.author-box p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box img {
    width: 100%;
}

section.author {
    overflow: hidden;
    padding: 0px 0px 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box img {
    width: 100%;
    border-radius: 30px;
}

.blog-box h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

section.blog .section-heading {
    margin-bottom: 40px;
}

section.blog {
    padding-bottom: 120px;
}

footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: #a12567;
    z-index: 0;
}

.menu-list h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list a:hover {
    color: rgb(25, 0, 81);
}

.menu-list a i {
    color: rgb(25 71 115);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right a {
    color: white;
}

.copy-right p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}

section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}

section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: #194773;
    position: absolute;
    z-index: -17;
    top: -200px;
}

section.stories .section-heading h2 {
}

section.stories .section-heading.text-center p {
}

.stories-img img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}

@media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}

section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}

ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img img {
    width: 100%;
    object-fit: cover;
}

.team-box h5 {
    color: #a12567;
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}

section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 5px 0px;
}

.contact-form h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: #f5e9f0;
    border-radius: 50px;
    height: 44px;
    border-color: rgb(245 233 240);
}

.contact-form label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form button {
    display: block;
    width: 100%;
}

.contact-form p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form p span {
    text-decoration: underline;
}

.inner-banner::before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(#a12567 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box img {
    margin-bottom: 15px;
}

.contact-info-box h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}

section.contact-info {
    padding-bottom: 20px;
}

section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}

footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
        left: -12%;
        bottom: -23%;
    }
}

.banner-content h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content ul li img {
    position: relative;
    top: 2px;
}

.banner-content ul {
    margin-top: 25px;
    margin-bottom: 0px;
}

section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner img {
    width: 220px;
}

.cta-wrapper-inner .section-heading h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:hover {
    background-color: white;
    color: rgb(161 37 103);
}

.banner-content h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

section.stories.service-stories::before {
    display: none;
}

section.count {
    padding: 100px 0px;
}

section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}

section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
    background-color: rgba(161, 37, 103, 0.10);
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box i {
    color: rgb(255, 204, 0);
}

.reviewed-right h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}

section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.brand-logo ul li {
    flex: 0 0 15%;
}

section.brand-logo ul li img {
    width: 100%;
}

section.brand-logo {
    padding: 39px 0px 80px;
}

ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}

ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}

section.podcast.expertise {
    background-image: none;
}

section.service-expertise {
    background-color: #194773;
    padding: 80px 0px 100px;
    margin-bottom: 80px;
}

section.service-expertise * {
    color: white;
}

section.service-expertise .section-heading h2 span {
    color: white;
}

section.counter {
    background-color: #194773;
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid #a12567;
    border-right: 8px solid #a12567;
}

.counter-box p {
    margin: 0px;
}

.counter-box h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: #194773;
    color: white;
}

div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}

section.faq-wrapper {
    padding-bottom: 80px;
    padding-top: 80px;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: #a12567;
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}

div#accordionExample {
    margin-top: 40px;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
    background-color: rgba(161, 37, 103, 0.10);
}

.section-heading h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid #a12567 !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs button.active {
    background-color: #a12567;
    color: white;
}

.nav.nav-tabs button.active span {
    color: white;
}

.nav.nav-tabs button i {
    position: absolute;
    top: -25px;
    background-color: #a12567;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
    background-color: rgba(161, 37, 103, 0.10);
}

.process-heading p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right ul li:last-child {
    margin-bottom: 0px;
}

.process-right ul {
    margin: 0px;
}

.process-right ul li i {
    color: #a12567;
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}

section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #a12567;
    color: #fff;
}

.tab-difference.tab-content {
    margin-top: 80px;
}

ul.difference-list {
    margin: 40px 0px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: rgba(161, 37, 103, 0.10);
}

ul.difference-list i {
    color: #a12567;
}

.difference-box h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}

section.genre {
    padding-bottom: 50px;
}

.counter-box span {
    font-size: 12px;
}

.counter-box span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading h2 {
    color: white !important;
}

.counter.counter-number .section-heading h2 span {
    color: white;
}

.counter.counter-number .section-heading h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: #a12567;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}

section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}

section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide img {
    height: 450px;
}

.btn-wrapper a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box i {
    width: 50px;
    height: 50px;
    background-color: rgb(161 37 103);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(161 37 103);
    position: relative;
}

.template-list span {
    position: absolute;
    top: -17px;
    background-color: rgb(161 37 103);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list ul {
    margin: 0px !important;
}

.template-list ul li:last-child p {
    margin-bottom: 0px;
}

.template-list ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(161 37 103);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active span {
    border-color: white;
}

h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left i {
    width: 60px;
    height: 50px;
    background-color: #a12567;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left > span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box > span {
    font-weight: bold;
    font-size: 44px;
    color: #a12567;
    line-height: 40px;
}

.design-starts-left h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}

section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower ul li {
    background-color: #a125674f;
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}

section.custom-book-illustration {
    padding-bottom: 100px;
}

ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}

ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon i {
    width: 50px;
    height: 50px;
    background-color: rgb(161 37 103);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}

section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(161 37 103);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}

section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img img.first-book {
    position: relative;
    z-index: 4;
}

section.author-identity {
    padding-bottom: 120px;
}

section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
    background-color: rgba(161, 37, 103, 0.10);
}

.protection .number-box h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}

section.understand {
    background-color: rgb(25 71 115);
    padding: 60px 0px;
    margin-bottom: 100px;
}

section.understand * {
    color: white;
}

ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}

section.understand .design-starts-left p {
    color: black;
}

section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(161 37 103);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper ul {
    margin-bottom: 0px;
}

section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper ul li i {
    color: rgb(161 37 103);
}

.security-full > p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box h6 {
    margin-bottom: 15px;
}

.number-box audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}

input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}

input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:focus {
    border-color: var(--orange);
}

.genre-select option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: #a12567;
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: #a12567;
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}

@keyframes countUp {
    0% {
        opacity: 0.4;
        transform: translateY(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}

section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head h6 {
    font-size: 23px;
}

.manuscript-success-head span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: #a12567;
    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left > p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots li {
    width: 30px;
    height: 10px;
}

.slick-dots li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}

ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    border-radius: 16px;
    padding: 30px;
    background-color: rgba(161, 37, 103, 0.10);
    
    
    html {
    overflow-x: hidden;
}
    body {
    font-family: Poppins, sans-serif;
}
    ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}
    section.banner.home-banner {
    background-color: rgb(112, 96, 247);
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}
    header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}
    header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: rgb(25, 0, 81);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(25, 0, 81);
}
    header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}
    a.navbar-brand {
    margin-right: 0px;
}
    a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}
    a.navbar-brand img {
    width: 150px;
    filter: invert(1) brightness(10);
}

.btn-white:
    hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:
    hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img
    img {
    width: 90%;
}

.banner-content
    h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content
    p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content
    h1 span {
    font-weight: bold;
}

.section-heading
    h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.section-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}
    ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}
    ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}
    ul.list-items {
    margin-top: 40px;
}
    section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(112, 96, 247);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}
    section.cta {
    background-color: rgb(25, 0, 81);
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading
    h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box
    h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:
    hover {
    color: white;
    background-color: rgb(25, 0, 81);
}

.number-box:
    hover * {
    color: white;
}
    section.type ul {
    display: flex;
    align-items: center;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}
    section.type ul li {
    text-align: center;
}
    section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}
    section.type .section-heading {
    background-color: rgb(25, 0, 81);
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}
    section.type .section-heading h2 {
    color: white;
}

.success-upper
    span {
    background-color: rgb(112, 96, 247);
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper
    h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}
    section.cta-launch {
    position: relative;
    padding-top: 83px;
}
    section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: rgb(25, 0, 81);
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box
    h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box
    p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img
    img {
    width: 100%;
}
    ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
    ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}
    ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}
    ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}
    ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
}

.author-box {
    text-align: center;
}

.author-box .stars
    i {
    color: rgb(255, 204, 0);
}

.author-box
    p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box
    img {
    width: 100%;
}
    section.author {
    overflow: hidden;
    padding: 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box
    img {
    width: 100%;
    border-radius: 30px;
}

.blog-box
    h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box
    p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}
    section.blog .section-heading {
    margin-bottom: 40px;
}
    section.blog {
    padding-bottom: 120px;
}
    footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: rgb(112, 96, 247);
    z-index: 0;
}

.menu-list
    h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list
    a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list
    a:hover {
    color: rgb(25, 0, 81);
}

.menu-list
    a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right
    a {
    color: white;
}

.copy-right
    p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content
    h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner
    h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}
    section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}
    section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: rgb(25, 0, 81);
    position: absolute;
    z-index: -17;
    top: -200px;
}
    section.stories .section-heading h2 {}
    section.stories .section-heading.text-center p {}

.stories-img
    img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading
    h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading
    p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box
    h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box
    p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}
    section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading
    h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading
    h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img
    img {
    width: 100%;
    object-fit: cover;
}

.team-box
    h5 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box
    p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}
    section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper
    h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box
    i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box
    span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box
    p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 25px 30px;
    margin-left: 40px;
}

.contact-form
    h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: rgb(239, 239, 239);
    border-radius: 50px;
    height: 44px;
    border-color: rgb(239, 239, 239);
}

.contact-form
    label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form
    textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form
    button {
    display: block;
    width: 100%;
}

.contact-form
    p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form
    p span {
    text-decoration: underline;
}

.inner-banner::
    before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box
    img {
    margin-bottom: 15px;
}

.contact-info-box
    h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box
    p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}
    section.contact-info {
    padding-bottom: 20px;
}
    section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}
    footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
    left: -12%;
    bottom: -23%;
    }
}

.banner-content
    h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content
    h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content
    ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content
    ul li img {
    position: relative;
    top: 2px;
}

.banner-content
    ul {
    margin-top: 25px;
    margin-bottom: 0px;
}
    section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form
    h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce
    img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner
    img {
    width: 220px;
}

.cta-wrapper-inner .section-heading
    h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:
    hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content
    h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
    section.stories.service-stories::before {
    display: none;
}
    section.count {
    padding: 100px 0px;
}
    section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}
    section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box
    i {
    color: rgb(255, 204, 0);
}

.reviewed-right
    h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right
    p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right
    h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
    section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    section.brand-logo ul li {
    flex: 0 0 15%;
}
    section.brand-logo ul li img {
    width: 100%;
}
    section.brand-logo {
    padding: 39px 0px 80px;
}
    ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}
    ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}
    @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box
    p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading
    p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}
    section.podcast.expertise {
    background-image: none;
}
    section.service-expertise {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px 100px;
    margin-top: 100px;
    margin-bottom: 80px;
}
    section.service-expertise * {
    color: white;
}
    section.service-expertise .section-heading h2 span {
    color: white;
}
    section.counter {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid rgb(112, 96, 247);
    border-right: 8px solid rgb(112, 96, 247);
}

.counter-box
    p {
    margin: 0px;
}

.counter-box
    h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(25, 0, 81);
    color: white;
}
    div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}
    section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::
    after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: rgb(112, 96, 247);
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}
    div#accordionExample {
    margin-top: 40px;
}

.accordion-button::
    after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs
    button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs
    button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid rgb(112, 96, 247) !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs
    button.active {
    background-color: rgb(112, 96, 247);
    color: white;
}

.nav.nav-tabs
    button.active span {
    color: white;
}

.nav.nav-tabs
    button i {
    position: absolute;
    top: -25px;
    background-color: rgb(112, 96, 247);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs
    button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
}

.process-heading
    p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading
    h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading
    h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right
    h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right
    ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right
    ul li:last-child {
    margin-bottom: 0px;
}

.process-right
    ul {
    margin: 0px;
}

.process-right
    ul li i {
    color: rgb(112, 96, 247);
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}
    section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box
    span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tab-difference.tab-content {
    margin-top: 80px;
}
    ul.difference-list {
    margin: 40px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
    ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}
    ul.difference-list i {
    color: rgb(112, 96, 247);
}

.difference-box
    h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}
    section.genre {
    padding-bottom: 50px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading
    h2 {
    color: white !important;
}

.counter.counter-number .section-heading
    h2 span {
    color: white;
}

.counter.counter-number .section-heading
    h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: rgb(112, 96, 247);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right
    h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
}
    section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}
    section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content
    h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:
    first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide
    img {
    height: 450px;
}

.btn-wrapper
    a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box
    p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list
    span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list
    ul {
    margin: 0px !important;
}

.template-list
    ul li:last-child p {
    margin-bottom: 0px;
}

.template-list
    ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active
    span {
    border-color: white;
}
    h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:
    hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper
    div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left
    i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left >
    span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box >
    span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left
    h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left
    p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box
    img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box
    h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box
    h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box
    img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower
    ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}
    section.custom-book-illustration {
    padding-bottom: 100px;
}
    ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}
    ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image
    img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon
    p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}
    section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left
    h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper
    img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap
    img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}
    section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}
    section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img
    img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img
    img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img
    img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img
    img.first-book {
    position: relative;
    z-index: 4;
}
    section.author-identity {
    padding-bottom: 120px;
}
    section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

.protection .number-box
    h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}
    section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}
    section.understand * {
    color: white;
}
    ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
    ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}
    section.understand .design-starts-left p {
    color: black;
}
    section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box
    ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box
    ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box
    ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full
    audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper
    ul {
    margin-bottom: 0px;
}
    section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper
    h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper
    ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper
    ul li i {
    color: rgb(112, 96, 247);
}

.security-full >
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box
    h6 {
    margin-bottom: 15px;
}

.number-box
    audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card
    h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}
    input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}
    input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}
    input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:focus {
    border-color: var(--orange);
}

.genre-select
    option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: rgb(161 37 103);    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label
    svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: rgb(112, 96, 247);
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon
    svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}
    @keyframes countUp {
    0% {
        opacity: 0.4;
    transform: translateY(4px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}
    section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box
    h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head
    p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head
    h6 {
    font-size: 23px;
}

.manuscript-success-head
    span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head
    span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: rgb(161 37 103);    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user
    img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user
    p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user
    h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left >
    p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left
    ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left
    ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left
    ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left
    ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left
    ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots
    li {
    width: 30px;
    height: 10px;
}

.slick-dots
    li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots
    li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots
    li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}
    ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box
    ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box
    ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}
    section.manuscript-success {
    padding-bottom: 20px;
}
    section.launch-strategy {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}
    section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}
    section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}
    section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip
    h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip
    p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right
    ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right
    ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right
    ul {
    margin-top: 35px;
}
    section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs
    button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:
    hover {
    background: rgb(161 37 103);    color: white;
}

.option-box
    input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(
    input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box
    span {
    display: block;
    font-size: 13px;
}
    div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}
    section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box
    a {
    display: block;
}

.cta-box
    a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table
    thead tr th {
    width: 10%;
}

.direct-table
    thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table
    tr {
    text-align: center;
}

.direct-table
    tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table
    tbody tr td {
    padding: 13px;
}
    section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:
    hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    transform: translateY(-30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}
    @keyframes fadeInUp {
    0% {
        opacity: 0;
    transform: translateY(30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}
    @media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
    padding: 30px;
    }

    .metric-value {
    font-size: 2.8rem;
    }

    .flip-card-wrapper {
    height: 350px;
    }
}
    @media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
    font-size: 0.95rem;
    }

    .flip-card-wrapper {
    height: 320px;
    }

    .flip-card-front, .flip-card-back {
    padding: 25px;
    }

    .metric-value {
    font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
    font-size: 0.9rem;
    }
}
    section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right
    p {
    width: 100%;
}
    section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}
    section.type .tab-pane {
    padding: 0px !important;
}
    section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa
    th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa
    th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa
    th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa
    th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    background: url("../img/podcast-bg.png");
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label
    span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs
    button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs
    button i {
    display: none;
}

.platform-tabs .nav.nav-tabs
    button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs
    button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs
    button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header
    h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header
    p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item
    strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}
    li.plat-rank-item strong {
    background: rgb(161 37 103);}
    li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}
    section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading
    h2 {
    color: white;
}

.counter-content.section-heading
    p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}
    section.expertise.terms-conditions h2 {
    font-weight: 500;
}
    img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer
    p {
    color: white;
    margin-top: 1rem;
}
    p.model-header {
    font-size: 35px;
    font-weight: 600;
}
    p.serv-header {
    font-size: 20px;
    font-weight: 500;
}
    p.manu-h3 {
    font-size: 2rem;
    color: white;
}
    section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}
    p.cta-p {
    font-size: 35px;
    line-height: 40px;
}
    p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}
    p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}
    p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}
    p.review-name {
    font-size: 2rem;
    color: rgb(112, 96, 247);
    font-weight: 700;
}
    div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}
    div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}
    section.banner.home-banner .banner-content {
    margin-top: 5rem;
}
    p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}
    p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta
    p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}
    section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}
    p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}
    p.launch-h5 + p {
    margin: 5px 0px 20px;
}
    section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}
    p.sub-title-span {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}
    p.steps {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}
    h3.h3-proccess span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}
    p.fic-para {
    color: white;
    padding: 1rem;
    background: rgb(111, 95, 245);
    border-radius: 30px;
    margin-top: 1rem;
}
    section.cta-no-index {
    z-index: 1 !important;
}
    p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(112, 96, 247);
}
    p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card
    p {
    font-size: 26px;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}
    p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}
    p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
    p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}
    p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}
    h3.our-process {
    font-size: 18px;
    font-weight: 500;
}
    section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}
    h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}
    h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}
    p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
    p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}
    p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
    p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    header.sticky img {
    filter: none;
    width: 90px;
}
    header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}
    header.sticky .btn-header {
    background: black;
    color: white;
}
    section.experience-image-box {
    position: relative;
    z-index: 2;
}
    div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}
    section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}
    section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}
    section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}
    div#quoteModal .contact-form {
    background: transparent;
}
    div#quoteModal .form-group * {
    border: 1px solid rgb(155, 110, 255);
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}
    section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box
    h3 {
    font-size: 22px;
}
    section.protection.inner-protection .number-box {
    min-height: 234px;
}
    section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
    img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}
    form.form_submission .success {
    padding: 0px;
}
    label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow
    i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a img {
    border-radius: 10px;
}

.content-block .post-thumbnail
    a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item
    span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item
    span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}
    ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
    ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}
    ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}
    ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}
    ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:
    hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:
    hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail
    a {
    border-radius: 100%;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:
    hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail
    a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail
    a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}
    ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}
    ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}
    ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}
    div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}
    div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail
    img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper
    span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content
    ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content
    ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details
    figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details
    p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details
    figure img {
    border-radius: 10px;
}

.axil-post-details
    p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud
    a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like
    a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like
    a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like
    a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}
    ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-icon li {
    margin: 5px;
}
    ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}
    ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details
    h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail
    a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}
    p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories
    ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories
    ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group
    input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}
    newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}
    p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget
    input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit
    button.axil-button {
    width: auto;
}
    a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}
    ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}
    section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs
    button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs
    button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs
    button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::
    before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text
    ul li p {
    margin: 0px;
}

.content-block-text
    ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text
    ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text
    ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}
    p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::
    after {
    border-radius: 0px;
}

.post-thumbnail::
    after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge
    i {
    color: rgb(255, 204, 0);
}

.illus-hero
    h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero
    h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero
    p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars
    img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars
    img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars
    i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags
    span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active
    h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags
    span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag
    p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:
    hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete
    i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading
    h2 .muted {}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item
    h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item
    p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials
    h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars
    i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author
    img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author
    h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author
    p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card
    ul {
    margin: 0px 0px 28px;
}

.pricing-card
    ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card
    ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row
    span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row
    p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box
    h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box
    h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card
    h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}
    @media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    }

    .illus-hero-shape {
    display: none;
    }

    .illus-stats {
    padding: 50px 0px;
    }

    .illus-stats .stat-item {
    margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
    font-size: 36px;
    }

    .get-started {
    padding: 50px 0px;
    }

    .quote-form-card {
    padding: 24px;
    margin-top: 30px;
    }
}
    @media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
    font-size: 38px;
    }
}

.post-author-avatar.border-rounded
    img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:
    hover {}

.works-card:
    hover * {
    color: white;
}

.works-card:
    hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}
    p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
    p.mb-4.model-header.text-left {}
    div#quoteModal {}
    div#quoteModal p {font-size: 25px;}
    span.top-modal {}
    p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service
    img {border-radius: 25px;
    width: 100%;}
    figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}
    figure.resource-img {
    margin: 0;
}

.resource-content
    h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content
    p {
    font-size: 15px;
    margin-bottom: 1rem;
}
    tml {
    overflow-x: hidden;
}
    body {
    font-family: Poppins, sans-serif;
}
    ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}
    section.banner.home-banner {
    background-color: rgb(112, 96, 247);
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}
    header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}
    header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: rgb(25, 0, 81);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(25, 0, 81);
}
    header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}
    a.navbar-brand {
    margin-right: 0px;
}
    a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}
    a.navbar-brand img {
    width: 150px;
    filter: invert(1) brightness(10);
}

.btn-white:
    hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:
    hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img
    img {
    width: 90%;
}

.banner-content
    h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content
    p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content
    h1 span {
    font-weight: bold;
}

.section-heading
    h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.section-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}
    ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}
    ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}
    ul.list-items {
    margin-top: 40px;
}
    section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(112, 96, 247);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}
    section.cta {
    background-color: rgb(25, 0, 81);
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading
    h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box
    h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:
    hover {
    color: white;
    background-color: rgb(25, 0, 81);
}

.number-box:
    hover * {
    color: white;
}
    section.type ul {
    display: flex;
    align-items: center;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}
    section.type ul li {
    text-align: center;
}
    section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}
    section.type .section-heading {
    background-color: rgb(25, 0, 81);
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}
    section.type .section-heading h2 {
    color: white;
}

.success-upper
    span {
    background-color: rgb(112, 96, 247);
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper
    h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}
    section.cta-launch {
    position: relative;
    padding-top: 83px;
}
    section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: rgb(25, 0, 81);
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box
    h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box
    p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img
    img {
    width: 100%;
}
    ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
    ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}
    ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}
    ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}
    ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
}

.author-box {
    text-align: center;
}

.author-box .stars
    i {
    color: rgb(255, 204, 0);
}

.author-box
    p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box
    img {
    width: 100%;
}
    section.author {
    overflow: hidden;
    padding: 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box
    img {
    width: 100%;
    border-radius: 30px;
}

.blog-box
    h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box
    p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}
    section.blog .section-heading {
    margin-bottom: 40px;
}
    section.blog {
    padding-bottom: 120px;
}
    footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: rgb(112, 96, 247);
    z-index: 0;
}

.menu-list
    h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list
    a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list
    a:hover {
    color: rgb(25, 0, 81);
}

.menu-list
    a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right
    a {
    color: white;
}

.copy-right
    p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content
    h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner
    h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}
    section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}
    section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: rgb(25, 0, 81);
    position: absolute;
    z-index: -17;
    top: -200px;
}
    section.stories .section-heading h2 {}
    section.stories .section-heading.text-center p {}

.stories-img
    img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading
    h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading
    p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box
    h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box
    p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}
    section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading
    h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading
    h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img
    img {
    width: 100%;
    object-fit: cover;
}

.team-box
    h5 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box
    p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}
    section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper
    h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box
    i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box
    span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box
    p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 25px 30px;
    margin-left: 40px;
}

.contact-form
    h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: rgb(239, 239, 239);
    border-radius: 50px;
    height: 44px;
    border-color: rgb(239, 239, 239);
}

.contact-form
    label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form
    textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form
    button {
    display: block;
    width: 100%;
}

.contact-form
    p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form
    p span {
    text-decoration: underline;
}

.inner-banner::
    before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box
    img {
    margin-bottom: 15px;
}

.contact-info-box
    h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box
    p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}
    section.contact-info {
    padding-bottom: 20px;
}
    section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}
    footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
    left: -12%;
    bottom: -23%;
    }
}

.banner-content
    h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content
    h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content
    ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content
    ul li img {
    position: relative;
    top: 2px;
}

.banner-content
    ul {
    margin-top: 25px;
    margin-bottom: 0px;
}
    section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form
    h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce
    img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner
    img {
    width: 220px;
}

.cta-wrapper-inner .section-heading
    h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:
    hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content
    h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
    section.stories.service-stories::before {
    display: none;
}
    section.count {
    padding: 100px 0px;
}
    section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}
    section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box
    i {
    color: rgb(255, 204, 0);
}

.reviewed-right
    h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right
    p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right
    h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
    section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    section.brand-logo ul li {
    flex: 0 0 15%;
}
    section.brand-logo ul li img {
    width: 100%;
}
    section.brand-logo {
    padding: 39px 0px 80px;
}
    ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}
    ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}
    @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box
    p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading
    p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}
    section.podcast.expertise {
    background-image: none;
}
    section.service-expertise {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px 100px;
    margin-top: 100px;
    margin-bottom: 80px;
}
    section.service-expertise * {
    color: white;
}
    section.service-expertise .section-heading h2 span {
    color: white;
}
    section.counter {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid rgb(112, 96, 247);
    border-right: 8px solid rgb(112, 96, 247);
}

.counter-box
    p {
    margin: 0px;
}

.counter-box
    h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(25, 0, 81);
    color: white;
}
    div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}
    section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::
    after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: rgb(112, 96, 247);
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}
    div#accordionExample {
    margin-top: 40px;
}

.accordion-button::
    after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs
    button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs
    button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid rgb(112, 96, 247) !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs
    button.active {
    background-color: rgb(112, 96, 247);
    color: white;
}

.nav.nav-tabs
    button.active span {
    color: white;
}

.nav.nav-tabs
    button i {
    position: absolute;
    top: -25px;
    background-color: rgb(112, 96, 247);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs
    button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
}

.process-heading
    p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading
    h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading
    h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right
    h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right
    ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right
    ul li:last-child {
    margin-bottom: 0px;
}

.process-right
    ul {
    margin: 0px;
}

.process-right
    ul li i {
    color: rgb(112, 96, 247);
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}
    section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box
    span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tab-difference.tab-content {
    margin-top: 80px;
}
    ul.difference-list {
    margin: 40px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
    ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}
    ul.difference-list i {
    color: rgb(112, 96, 247);
}

.difference-box
    h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}
    section.genre {
    padding-bottom: 50px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading
    h2 {
    color: white !important;
}

.counter.counter-number .section-heading
    h2 span {
    color: white;
}

.counter.counter-number .section-heading
    h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: rgb(112, 96, 247);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right
    h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
}
    section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}
    section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content
    h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:
    first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide
    img {
    height: 450px;
}

.btn-wrapper
    a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box
    p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list
    span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list
    ul {
    margin: 0px !important;
}

.template-list
    ul li:last-child p {
    margin-bottom: 0px;
}

.template-list
    ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active
    span {
    border-color: white;
}
    h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:
    hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper
    div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left
    i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left >
    span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box >
    span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left
    h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left
    p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box
    img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box
    h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box
    h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box
    img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower
    ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}
    section.custom-book-illustration {
    padding-bottom: 100px;
}
    ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}
    ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image
    img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon
    p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}
    section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left
    h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper
    img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap
    img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}
    section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}
    section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img
    img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img
    img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img
    img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img
    img.first-book {
    position: relative;
    z-index: 4;
}
    section.author-identity {
    padding-bottom: 120px;
}
    section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

.protection .number-box
    h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}
    section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}
    section.understand * {
    color: white;
}
    ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
    ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}
    section.understand .design-starts-left p {
    color: black;
}
    section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box
    ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box
    ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box
    ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full
    audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper
    ul {
    margin-bottom: 0px;
}
    section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper
    h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper
    ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper
    ul li i {
    color: rgb(112, 96, 247);
}

.security-full >
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box
    h6 {
    margin-bottom: 15px;
}

.number-box
    audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card
    h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}
    input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}
    input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}
    input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:
    focus {
    border-color: var(--orange);
}

.genre-select
    option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: rgb(161 37 103);    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::
    before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::
    after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label
    svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:
    hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: rgb(112, 96, 247);
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon
    svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}
    @keyframes countUp {
    0% {
        opacity: 0.4;
    transform: translateY(4px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}
    section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box
    h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head
    p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head
    h6 {
    font-size: 23px;
}

.manuscript-success-head
    span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head
    span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: rgb(161 37 103);    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user
    img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user
    p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user
    h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left >
    p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left
    ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left
    ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left
    ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left
    ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left
    ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots
    li {
    width: 30px;
    height: 10px;
}

.slick-dots
    li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots
    li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots
    li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}
    ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box
    ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box
    ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}
    section.manuscript-success {
    padding-bottom: 20px;
}
    section.launch-strategy {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}
    section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}
    section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}
    section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip
    h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip
    p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right
    ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right
    ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right
    ul {
    margin-top: 35px;
}
    section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs
    button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:
    hover {
    background: rgb(161 37 103);    color: white;
}

.option-box
    input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(
    input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box
    span {
    display: block;
    font-size: 13px;
}
    div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}
    section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box
    a {
    display: block;
}

.cta-box
    a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table
    thead tr th {
    width: 10%;
}

.direct-table
    thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table
    tr {
    text-align: center;
}

.direct-table
    tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table
    tbody tr td {
    padding: 13px;
}
    section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:
    hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    transform: translateY(-30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}
    @keyframes fadeInUp {
    0% {
        opacity: 0;
    transform: translateY(30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}
    @media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
    padding: 30px;
    }

    .metric-value {
    font-size: 2.8rem;
    }

    .flip-card-wrapper {
    height: 350px;
    }
}
    @media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
    font-size: 0.95rem;
    }

    .flip-card-wrapper {
    height: 320px;
    }

    .flip-card-front, .flip-card-back {
    padding: 25px;
    }

    .metric-value {
    font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
    font-size: 0.9rem;
    }
}
    section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right
    p {
    width: 100%;
}
    section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}
    section.type .tab-pane {
    padding: 0px !important;
}
    section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa
    th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa
    th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa
    th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa
    th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    background: url("../img/podcast-bg.png");
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label
    span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs
    button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs
    button i {
    display: none;
}

.platform-tabs .nav.nav-tabs
    button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs
    button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs
    button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header
    h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header
    p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item
    strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}
    li.plat-rank-item strong {
    background: rgb(161 37 103);}
    li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}
    section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading
    h2 {
    color: white;
}

.counter-content.section-heading
    p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}
    section.expertise.terms-conditions h2 {
    font-weight: 500;
}
    img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer
    p {
    color: white;
    margin-top: 1rem;
}
    p.model-header {
    font-size: 35px;
    font-weight: 600;
}
    p.serv-header {
    font-size: 20px;
    font-weight: 500;
}
    p.manu-h3 {
    font-size: 2rem;
    color: white;
}
    section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}
    p.cta-p {
    font-size: 35px;
    line-height: 40px;
}
    p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}
    p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}
    p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}
    p.review-name {
    font-size: 2rem;
    color: rgb(112, 96, 247);
    font-weight: 700;
}
    div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}
    div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}
    section.banner.home-banner .banner-content {
    margin-top: 5rem;
}
    p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}
    p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta
    p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}
    section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}
    p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}
    p.launch-h5 + p {
    margin: 5px 0px 20px;
}
    section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}
    p.sub-title-span {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}
    p.steps {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}
    h3.h3-proccess span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}
    p.fic-para {
    color: white;
    padding: 1rem;
    background: rgb(111, 95, 245);
    border-radius: 30px;
    margin-top: 1rem;
}
    section.cta-no-index {
    z-index: 1 !important;
}
    p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(112, 96, 247);
}
    p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card
    p {
    font-size: 26px;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}
    p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}
    p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
    p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}
    p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}
    h3.our-process {
    font-size: 18px;
    font-weight: 500;
}
    section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}
    h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}
    h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}
    p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
    p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}
    p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
    p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    header.sticky img {
    filter: none;
    width: 90px;
}
    header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}
    header.sticky .btn-header {
    background: black;
    color: white;
}
    section.experience-image-box {
    position: relative;
    z-index: 2;
}
    div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}
    section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}
    section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}
    section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}
    div#quoteModal .contact-form {
    background: transparent;
}
    div#quoteModal .form-group * {
    border: 1px solid rgb(155, 110, 255);
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}
    section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box
    h3 {
    font-size: 22px;
}
    section.protection.inner-protection .number-box {
    min-height: 234px;
}
    section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
    img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}
    form.form_submission .success {
    padding: 0px;
}
    label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow
    i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a img {
    border-radius: 10px;
}

.content-block .post-thumbnail
    a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item
    span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item
    span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}
    ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
    ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}
    ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}
    ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}
    ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:
    hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:
    hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail
    a {
    border-radius: 100%;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:
    hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail
    a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail
    a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}
    ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}
    ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}
    ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}
    div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}
    div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail
    img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper
    span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content
    ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content
    ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details
    figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details
    p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details
    figure img {
    border-radius: 10px;
}

.axil-post-details
    p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud
    a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like
    a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like
    a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like
    a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}
    ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-icon li {
    margin: 5px;
}
    ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}
    ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details
    h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail
    a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}
    p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories
    ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories
    ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group
    input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}
    newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}
    p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget
    input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit
    button.axil-button {
    width: auto;
}
    a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}
    ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}
    section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs
    button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs
    button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs
    button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::
    before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text
    ul li p {
    margin: 0px;
}

.content-block-text
    ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text
    ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text
    ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}
    p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::
    after {
    border-radius: 0px;
}

.post-thumbnail::
    after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge
    i {
    color: rgb(255, 204, 0);
}

.illus-hero
    h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero
    h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero
    p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars
    img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars
    img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars
    i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags
    span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active
    h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags
    span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag
    p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:
    hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete
    i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading
    h2 .muted {}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item
    h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item
    p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials
    h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars
    i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author
    img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author
    h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author
    p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card
    ul {
    margin: 0px 0px 28px;
}

.pricing-card
    ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card
    ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row
    span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row
    p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box
    h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box
    h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card
    h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}
    @media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    }

    .illus-hero-shape {
    display: none;
    }

    .illus-stats {
    padding: 50px 0px;
    }

    .illus-stats .stat-item {
    margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
    font-size: 36px;
    }

    .get-started {
    padding: 50px 0px;
    }

    .quote-form-card {
    padding: 24px;
    margin-top: 30px;
    }
}
    @media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
    font-size: 38px;
    }
}

.post-author-avatar.border-rounded
    img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:
    hover {}

.works-card:
    hover * {
    color: white;
}

.works-card:
    hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}
    p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
    p.mb-4.model-header.text-left {}
    div#quoteModal {}
    div#quoteModal p {font-size: 25px;}
    span.top-modal {}
    p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service
    img {border-radius: 25px;
    width: 100%;}
    figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}
    figure.resource-img {
    margin: 0;
}

.resource-content
    h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content
    p {
    font-size: 15px;
    margin-bottom: 1rem;
}
    html {
    overflow-x: hidden;
}
    body {
    font-family: Poppins, sans-serif;
}
    ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}
    section.banner.home-banner {
    background-color: #a12567;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}
    header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}
    header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: #194773;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid #194773;
}
    header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}
    a.navbar-brand {
    margin-right: 0px;
}
    a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}
    a.navbar-brand img {
    width: 270px;
    filter: invert(1) brightness(10);
}

.btn-white:
    hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:
    hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img
    img {
    width: 90%;
}

.banner-content
    h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content
    p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content
    h1 span {
    font-weight: bold;
}

.section-heading
    h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h2 span {
    color: #a12567;
    font-weight: bold;
}

.section-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}
    ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}
    ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}
    ul.list-items {
    margin-top: 40px;
}
    section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: #a12567;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid #a12567;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}
    section.cta {
    background-color: #194773;
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading
    h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box
    h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:
    hover {
    color: white;
    background-color: rgb(25 71 115);
}

.number-box:
    hover * {
    color: white;
}
    section.type ul {
    display: flex;
    align-items: center;
    background-color: #a12567;
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}
    section.type ul li {
    text-align: center;
}
    section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}
    section.type .section-heading {
    background-color: #194773;
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}
    section.type .section-heading h2 {
    color: white;
}

.success-upper
    span {
    background-color: #a12567;
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper
    h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}
    section.cta-launch {
    position: relative;
    padding-top: 83px;
}
    section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #194773;
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box
    h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box
    p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img
    img {
    width: 100%;
}
    ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
    ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}
    ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}
    ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}
    ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}

.author-box {
    text-align: center;
}

.author-box .stars
    i {
    color: rgb(255, 204, 0);
}

.author-box
    p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box
    img {
    width: 100%;
}
    section.author {
    overflow: hidden;
    padding: 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box
    img {
    width: 100%;
    border-radius: 30px;
}

.blog-box
    h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box
    p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}
    section.blog .section-heading {
    margin-bottom: 40px;
}
    section.blog {
    padding-bottom: 120px;
}
    footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: #a12567;
    z-index: 0;
}

.menu-list
    h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list
    a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list
    a:hover {
    color: rgb(25, 0, 81);
}

.menu-list
    a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right
    a {
    color: white;
}

.copy-right
    p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content
    h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner
    h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}
    section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}
    section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: #194773;
    position: absolute;
    z-index: -17;
    top: -200px;
}
    section.stories .section-heading h2 {}
    section.stories .section-heading.text-center p {}

.stories-img
    img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading
    h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading
    p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box
    h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box
    p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}
    section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading
    h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading
    h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img
    img {
    width: 100%;
    object-fit: cover;
}

.team-box
    h5 {
    color: #a12567;
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box
    p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}
    section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper
    h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box
    i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box
    span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box
    p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 25px 30px;
    margin-left: 40px;
}

.contact-form
    h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: #f5e9f0;
    border-radius: 50px;
    height: 44px;
    border-color: rgb(245 233 240);
}

.contact-form
    label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form
    textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form
    button {
    display: block;
    width: 100%;
}

.contact-form
    p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form
    p span {
    text-decoration: underline;
}

.inner-banner::before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(#a12567 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box
    img {
    margin-bottom: 15px;
}

.contact-info-box
    h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box
    p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}
    section.contact-info {
    padding-bottom: 20px;
}
    section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}
    footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
    left: -12%;
    bottom: -23%;
    }
}

.banner-content
    h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content
    h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content
    ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content
    ul li img {
    position: relative;
    top: 2px;
}

.banner-content
    ul {
    margin-top: 25px;
    margin-bottom: 0px;
}
    section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form
    h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce
    img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner
    img {
    width: 220px;
}

.cta-wrapper-inner .section-heading
    h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content
    h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
    section.stories.service-stories::before {
    display: none;
}
    section.count {
    padding: 100px 0px;
}
    section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}
    section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
    background-color: rgba(161, 37, 103, 0.10);
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box
    i {
    color: rgb(255, 204, 0);
}

.reviewed-right
    h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right
    p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right
    h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
    section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    section.brand-logo ul li {
    flex: 0 0 15%;
}
    section.brand-logo ul li img {
    width: 100%;
}
    section.brand-logo {
    padding: 39px 0px 80px;
}
    ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}
    ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}
    @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box
    p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading
    p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}
    section.podcast.expertise {
    background-image: none;
}
    section.service-expertise {
    background-color: #194773;
    padding: 80px 0px 100px;
    margin-top: 100px;
    margin-bottom: 80px;
}
    section.service-expertise * {
    color: white;
}
    section.service-expertise .section-heading h2 span {
    color: white;
}
    section.counter {
    background-color: #194773;
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid #a12567;
    border-right: 8px solid #a12567;
}

.counter-box
    p {
    margin: 0px;
}

.counter-box
    h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: #194773;
    color: white;
}
    div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}
    section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: #a12567;
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}
    div#accordionExample {
    margin-top: 40px;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs
    button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs
    button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid #a12567 !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs
    button.active {
    background-color: #a12567;
    color: white;
}

.nav.nav-tabs
    button.active span {
    color: white;
}

.nav.nav-tabs
    button i {
    position: absolute;
    top: -25px;
    background-color: #a12567;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs
    button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
    background-color: rgba(161, 37, 103, 0.10);
}

.process-heading
    p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading
    h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading
    h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right
    h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right
    ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right
    ul li:last-child {
    margin-bottom: 0px;
}

.process-right
    ul {
    margin: 0px;
}

.process-right
    ul li i {
    color: #a12567;
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}
    section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box
    span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #a12567;
    color: #fff;
}

.tab-difference.tab-content {
    margin-top: 80px;
}
    ul.difference-list {
    margin: 40px 0px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
    ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: rgba(161, 37, 103, 0.10);
}
    ul.difference-list i {
    color: #a12567;
}

.difference-box
    h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}
    section.genre {
    padding-bottom: 50px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading
    h2 {
    color: white !important;
}

.counter.counter-number .section-heading
    h2 span {
    color: white;
}

.counter.counter-number .section-heading
    h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: #a12567;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right
    h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}
    section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}
    section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content
    h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide
    img {
    height: 450px;
}

.btn-wrapper
    a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box
    p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list
    span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list
    ul {
    margin: 0px !important;
}

.template-list
    ul li:last-child p {
    margin-bottom: 0px;
}

.template-list
    ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active
    span {
    border-color: white;
}
    h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:
    hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper
    div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left
    i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left >
    span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box >
    span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left
    h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left
    p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box
    img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box
    h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box
    h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box
    img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower
    ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}
    section.custom-book-illustration {
    padding-bottom: 100px;
}
    ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}
    ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image
    img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon
    p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}
    section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left
    h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper
    img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap
    img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}
    section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}
    section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img
    img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img
    img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img
    img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img
    img.first-book {
    position: relative;
    z-index: 4;
}
    section.author-identity {
    padding-bottom: 120px;
}
    section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
    background-color: rgba(161, 37, 103, 0.10);
}

.protection .number-box
    h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}
    section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}
    section.understand * {
    color: white;
}
    ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
    ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}
    section.understand .design-starts-left p {
    color: black;
}
    section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box
    ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box
    ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(161 37 103);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box
    ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full
    audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper
    ul {
    margin-bottom: 0px;
}
    section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper
    h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper
    ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper
    ul li i {
    color: rgb(161 37 103);
}

.security-full >
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box
    h6 {
    margin-bottom: 15px;
}

.number-box
    audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card
    h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}
    input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}
    input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}
    input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:
    focus {
    border-color: var(--orange);
}

.genre-select
    option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: #a12567;
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::
    before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::
    after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label
    svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:
    hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: #a12567;
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon
    svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}
    @keyframes countUp {
    0% {
        opacity: 0.4;
    transform: translateY(4px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}
    section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box
    h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head
    p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head
    h6 {
    font-size: 23px;
}

.manuscript-success-head
    span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head
    span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: #a12567;
    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user
    img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user
    p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user
    h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left >
    p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left
    ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left
    ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left
    ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left
    ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left
    ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots
    li {
    width: 30px;
    height: 10px;
}

.slick-dots
    li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots
    li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots
    li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}
    ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box
    ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box
    ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}
    section.manuscript-success {
    padding-bottom: 20px;
}
    section.launch-strategy {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}
    section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}
    section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}
    section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip
    h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip
    p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right
    ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right
    ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right
    ul {
    margin-top: 35px;
}
    section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs
    button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:
    hover {
    background: rgb(161 37 103);    color: white;
}

.option-box
    input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(
    input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box
    span {
    display: block;
    font-size: 13px;
}
    div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}
    section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box
    a {
    display: block;
}

.cta-box
    a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table
    thead tr th {
    width: 10%;
}

.direct-table
    thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table
    tr {
    text-align: center;
}

.direct-table
    tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table
    tbody tr td {
    padding: 13px;
}
    section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:
    hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    transform: translateY(-30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}
    @keyframes fadeInUp {
    0% {
        opacity: 0;
    transform: translateY(30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}
    @media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
    padding: 30px;
    }

    .metric-value {
    font-size: 2.8rem;
    }

    .flip-card-wrapper {
    height: 350px;
    }
}
    @media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
    font-size: 0.95rem;
    }

    .flip-card-wrapper {
    height: 320px;
    }

    .flip-card-front, .flip-card-back {
    padding: 25px;
    }

    .metric-value {
    font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
    font-size: 0.9rem;
    }
}
    section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right
    p {
    width: 100%;
}
    section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}
    section.type .tab-pane {
    padding: 0px !important;
}
    section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa
    th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa
    th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa
    th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa
    th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    background: url("../img/podcast-bg.png");
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label
    span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs
    button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs
    button i {
    display: none;
}

.platform-tabs .nav.nav-tabs
    button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs
    button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs
    button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header
    h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header
    p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item
    strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}
    li.plat-rank-item strong {
    background: rgb(161 37 103);}
    li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}
    section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading
    h2 {
    color: white;
}

.counter-content.section-heading
    p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}
    section.expertise.terms-conditions h2 {
    font-weight: 500;
}
    img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer
    p {
    color: white;
    margin-top: 1rem;
}
    p.model-header {
    font-size: 35px;
    font-weight: 600;
}
    p.serv-header {
    font-size: 20px;
    font-weight: 500;
}
    p.manu-h3 {
    font-size: 2rem;
    color: white;
}
    section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}
    p.cta-p {
    font-size: 35px;
    line-height: 40px;
}
    p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}
    p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}
    p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}
    p.review-name {
    font-size: 2rem;
    color: #a12567;
    font-weight: 700;
}
    div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}
    div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}
    section.banner.home-banner .banner-content {
    margin-top: 5rem;
}
    p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}
    p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta
    p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}
    section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}
    p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}
    p.launch-h5 + p {
    margin: 5px 0px 20px;
}
    section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}
    p.sub-title-span {
    background-color: #a12567;
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}
    p.steps {
    color: #a12567;
    font-weight: 600;
}
    h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}
    h3.h3-proccess span {
    color: #a12567;
    font-weight: bold;
}
    p.fic-para {
    color: white;
    padding: 1rem;
    background: #a12567;
    border-radius: 30px;
    margin-top: 1rem;
}
    section.cta-no-index {
    z-index: 1 !important;
}
    p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(161 37 103);
}
    p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card
    p {
    font-size: 26px;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}
    p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}
    p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
    p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}
    p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}
    h3.our-process {
    font-size: 18px;
    font-weight: 500;
}
    section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}
    h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}
    h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}
    p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
    p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}
    p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
    p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    header.sticky img {
    filter: none;
    width: 220px;
}
    header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}
    header.sticky .btn-header {
    background: black;
    color: white;
}
    section.experience-image-box {
    position: relative;
    z-index: 2;
}
    div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
    background-color: #a12567;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}
    section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}
    section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}
    section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}
    div#quoteModal .contact-form {
    background: transparent;
}
    div#quoteModal .form-group * {
    border: 1px solid #a12567;
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}
    section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box
    h3 {
    font-size: 22px;
}
    section.protection.inner-protection .number-box {
    min-height: 234px;
}
    section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
    img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}
    form.form_submission .success {
    padding: 0px;
}
    label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow
    i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a img {
    border-radius: 10px;
}

.content-block .post-thumbnail
    a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item
    span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item
    span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}
    ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
    ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}
    ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}
    ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}
    ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:
    hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:
    hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail
    a {
    border-radius: 100%;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:
    hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail
    a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail
    a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}
    ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}
    ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}
    ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}
    div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}
    div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail
    img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper
    span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content
    ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content
    ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details
    figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details
    p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details
    figure img {
    border-radius: 10px;
}

.axil-post-details
    p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud
    a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like
    a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like
    a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like
    a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}
    ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-icon li {
    margin: 5px;
}
    ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}
    ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details
    h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail
    a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}
    p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories
    ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories
    ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group
    input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}
    newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}
    p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget
    input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit
    button.axil-button {
    width: auto;
}
    a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}
    ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}
    section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs
    button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs
    button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs
    button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::
    before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text
    ul li p {
    margin: 0px;
}

.content-block-text
    ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text
    ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text
    ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}
    p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::
    after {
    border-radius: 0px;
}

.post-thumbnail::
    after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge
    i {
    color: rgb(255, 204, 0);
}

.illus-hero
    h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero
    h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero
    p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars
    img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars
    img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars
    i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags
    span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active
    h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags
    span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag
    p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:
    hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete
    i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading
    h2 .muted {}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item
    h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item
    p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials
    h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars
    i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author
    img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author
    h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author
    p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card
    ul {
    margin: 0px 0px 28px;
}

.pricing-card
    ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card
    ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row
    span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row
    p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box
    h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box
    h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card
    h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}
    @media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    }

    .illus-hero-shape {
    display: none;
    }

    .illus-stats {
    padding: 50px 0px;
    }

    .illus-stats .stat-item {
    margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
    font-size: 36px;
    }

    .get-started {
    padding: 50px 0px;
    }

    .quote-form-card {
    padding: 24px;
    margin-top: 30px;
    }
}
    @media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
    font-size: 38px;
    }
}

.post-author-avatar.border-rounded
    img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:
    hover {}

.works-card:
    hover * {
    color: white;
}

.works-card:
    hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}
    p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
    p.mb-4.model-header.text-left {}
    div#quoteModal {}
    div#quoteModal p {font-size: 25px;
    color: #fff;}
    span.top-modal {}
    p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service
    img {border-radius: 25px;
    width: 100%;}
    figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}
    figure.resource-img {
    margin: 0;
}

.resource-content
    h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content
    p {
    font-size: 15px;
    margin-bottom: 1rem;
}.makes-left .section-heading
    p.sub-title-span {
    color: white !important;
}
    section.ready-section {
    padding: 5rem 0;
    background: rgb(25, 0, 81);
}
.support-writer {}

.support-writer {
    padding: 5rem 0 !important;
}
.ny-bg-sec::
    after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a9c;
}
.ny-case-step {
    border-bottom: 1px solid;
};
}

.pre-box ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid #a12567;
    background-color: rgba(161, 37, 103, 0.10);
}

section.manuscript-success {
    padding-bottom: 20px;
}

section.launch-strategy {
    /* background-image: url("../img/number-bg.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
    background-color: rgba(161, 37, 103, 0.10);
}

section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}

section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}

section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #a12567;
    margin-top: 30px;
    background-color: rgba(161, 37, 103, 0.10);
}

.pro-tip h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right ul li strong {
    background-color: #a12567;
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right ul {
    margin-top: 35px;
}

section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid #a12567;
    font-size: 15px;
}

.nav.nav-tabs button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:hover {
    background: rgb(161 37 103);    color: white;
}

.option-box input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box span {
    display: block;
    font-size: 13px;
}

div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}

section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box a {
    display: block;
}

.cta-box a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table thead tr th {
    width: 10%;
}

.direct-table thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table tr {
    text-align: center;
}

.direct-table tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table tbody tr td {
    padding: 13px;
}

section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: #a12567;
    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
    background-color: rgba(161, 37, 103, 0.10) !important;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgb(161 37 103);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(161 37 103);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgb(0, 0, 0);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: rgb(161 37 103 / 43%);
    border-left: 3px solid rgb(161 37 103);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(255 255 255);
    font-weight: 500;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
        padding: 30px;
    }

    .metric-value {
        font-size: 2.8rem;
    }

    .flip-card-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
        font-size: 0.95rem;
    }

    .flip-card-wrapper {
        height: 320px;
    }

    .flip-card-front, .flip-card-back {
        padding: 25px;
    }

    .metric-value {
        font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
        font-size: 0.9rem;
    }
}

section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right p {
    width: 100%;
}

section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}

section.type .tab-pane {
    padding: 0px !important;
}

section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa th {
    background: #a12567;
    color: white;
    padding: 1rem 0px;
}

.table-style-usa th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, #a12567 0%, #a12567 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: #a12567;
}

.flip-card.b-hover .flip-card-back {
    /* background: url("../img/podcast-bg.png"); */
    background-color: rgba(161, 37, 103, 0.10);
    
    
    html {
    overflow-x: hidden;
}
    body {
    font-family: Poppins, sans-serif;
}
    ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}
    section.banner.home-banner {
    background-color: rgb(112, 96, 247);
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}
    header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}
    header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: rgb(25, 0, 81);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(25, 0, 81);
}
    header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}
    a.navbar-brand {
    margin-right: 0px;
}
    a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}
    a.navbar-brand img {
    width: 150px;
    filter: invert(1) brightness(10);
}

.btn-white:
    hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:
    hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img
    img {
    width: 90%;
}

.banner-content
    h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content
    p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content
    h1 span {
    font-weight: bold;
}

.section-heading
    h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.section-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}
    ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}
    ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}
    ul.list-items {
    margin-top: 40px;
}
    section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(112, 96, 247);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}
    section.cta {
    background-color: rgb(25, 0, 81);
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading
    h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box
    h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:
    hover {
    color: white;
    background-color: rgb(25, 0, 81);
}

.number-box:
    hover * {
    color: white;
}
    section.type ul {
    display: flex;
    align-items: center;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}
    section.type ul li {
    text-align: center;
}
    section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}
    section.type .section-heading {
    background-color: rgb(25, 0, 81);
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}
    section.type .section-heading h2 {
    color: white;
}

.success-upper
    span {
    background-color: rgb(112, 96, 247);
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper
    h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}
    section.cta-launch {
    position: relative;
    padding-top: 83px;
}
    section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: rgb(25, 0, 81);
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box
    h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box
    p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img
    img {
    width: 100%;
}
    ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
    ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}
    ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}
    ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}
    ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
}

.author-box {
    text-align: center;
}

.author-box .stars
    i {
    color: rgb(255, 204, 0);
}

.author-box
    p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box
    img {
    width: 100%;
}
    section.author {
    overflow: hidden;
    padding: 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box
    img {
    width: 100%;
    border-radius: 30px;
}

.blog-box
    h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box
    p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}
    section.blog .section-heading {
    margin-bottom: 40px;
}
    section.blog {
    padding-bottom: 120px;
}
    footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: rgb(112, 96, 247);
    z-index: 0;
}

.menu-list
    h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list
    a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list
    a:hover {
    color: rgb(25, 0, 81);
}

.menu-list
    a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right
    a {
    color: white;
}

.copy-right
    p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content
    h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner
    h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}
    section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}
    section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: rgb(25, 0, 81);
    position: absolute;
    z-index: -17;
    top: -200px;
}
    section.stories .section-heading h2 {}
    section.stories .section-heading.text-center p {}

.stories-img
    img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading
    h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading
    p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box
    h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box
    p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}
    section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading
    h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading
    h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img
    img {
    width: 100%;
    object-fit: cover;
}

.team-box
    h5 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box
    p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}
    section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper
    h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box
    i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box
    span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box
    p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 25px 30px;
    margin-left: 40px;
}

.contact-form
    h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: rgb(239, 239, 239);
    border-radius: 50px;
    height: 44px;
    border-color: rgb(239, 239, 239);
}

.contact-form
    label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form
    textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form
    button {
    display: block;
    width: 100%;
}

.contact-form
    p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form
    p span {
    text-decoration: underline;
}

.inner-banner::
    before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box
    img {
    margin-bottom: 15px;
}

.contact-info-box
    h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box
    p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}
    section.contact-info {
    padding-bottom: 20px;
}
    section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}
    footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
    left: -12%;
    bottom: -23%;
    }
}

.banner-content
    h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content
    h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content
    ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content
    ul li img {
    position: relative;
    top: 2px;
}

.banner-content
    ul {
    margin-top: 25px;
    margin-bottom: 0px;
}
    section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form
    h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce
    img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner
    img {
    width: 220px;
}

.cta-wrapper-inner .section-heading
    h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:
    hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content
    h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
    section.stories.service-stories::before {
    display: none;
}
    section.count {
    padding: 100px 0px;
}
    section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}
    section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box
    i {
    color: rgb(255, 204, 0);
}

.reviewed-right
    h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right
    p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right
    h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
    section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    section.brand-logo ul li {
    flex: 0 0 15%;
}
    section.brand-logo ul li img {
    width: 100%;
}
    section.brand-logo {
    padding: 39px 0px 80px;
}
    ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}
    ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}
    @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box
    p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading
    p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}
    section.podcast.expertise {
    background-image: none;
}
    section.service-expertise {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px 100px;
    margin-top: 100px;
    margin-bottom: 80px;
}
    section.service-expertise * {
    color: white;
}
    section.service-expertise .section-heading h2 span {
    color: white;
}
    section.counter {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid rgb(112, 96, 247);
    border-right: 8px solid rgb(112, 96, 247);
}

.counter-box
    p {
    margin: 0px;
}

.counter-box
    h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(25, 0, 81);
    color: white;
}
    div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}
    section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::
    after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: rgb(112, 96, 247);
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}
    div#accordionExample {
    margin-top: 40px;
}

.accordion-button::
    after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs
    button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs
    button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid rgb(112, 96, 247) !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs
    button.active {
    background-color: rgb(112, 96, 247);
    color: white;
}

.nav.nav-tabs
    button.active span {
    color: white;
}

.nav.nav-tabs
    button i {
    position: absolute;
    top: -25px;
    background-color: rgb(112, 96, 247);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs
    button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
}

.process-heading
    p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading
    h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading
    h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right
    h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right
    ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right
    ul li:last-child {
    margin-bottom: 0px;
}

.process-right
    ul {
    margin: 0px;
}

.process-right
    ul li i {
    color: rgb(112, 96, 247);
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}
    section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box
    span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tab-difference.tab-content {
    margin-top: 80px;
}
    ul.difference-list {
    margin: 40px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
    ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}
    ul.difference-list i {
    color: rgb(112, 96, 247);
}

.difference-box
    h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}
    section.genre {
    padding-bottom: 50px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading
    h2 {
    color: white !important;
}

.counter.counter-number .section-heading
    h2 span {
    color: white;
}

.counter.counter-number .section-heading
    h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: rgb(112, 96, 247);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right
    h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
}
    section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}
    section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content
    h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:
    first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide
    img {
    height: 450px;
}

.btn-wrapper
    a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box
    p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list
    span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list
    ul {
    margin: 0px !important;
}

.template-list
    ul li:last-child p {
    margin-bottom: 0px;
}

.template-list
    ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active
    span {
    border-color: white;
}
    h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:
    hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper
    div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left
    i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left >
    span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box >
    span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left
    h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left
    p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box
    img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box
    h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box
    h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box
    img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower
    ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}
    section.custom-book-illustration {
    padding-bottom: 100px;
}
    ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}
    ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image
    img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon
    p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}
    section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left
    h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper
    img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap
    img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}
    section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}
    section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img
    img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img
    img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img
    img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img
    img.first-book {
    position: relative;
    z-index: 4;
}
    section.author-identity {
    padding-bottom: 120px;
}
    section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

.protection .number-box
    h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}
    section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}
    section.understand * {
    color: white;
}
    ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
    ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}
    section.understand .design-starts-left p {
    color: black;
}
    section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box
    ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box
    ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box
    ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full
    audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper
    ul {
    margin-bottom: 0px;
}
    section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper
    h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper
    ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper
    ul li i {
    color: rgb(112, 96, 247);
}

.security-full >
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box
    h6 {
    margin-bottom: 15px;
}

.number-box
    audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card
    h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}
    input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}
    input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}
    input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:
    focus {
    border-color: var(--orange);
}

.genre-select
    option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: rgb(161 37 103);    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::
    before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::
    after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label
    svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:
    hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: rgb(112, 96, 247);
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon
    svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}
    @keyframes countUp {
    0% {
        opacity: 0.4;
    transform: translateY(4px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}
    section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box
    h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head
    p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head
    h6 {
    font-size: 23px;
}

.manuscript-success-head
    span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head
    span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: rgb(161 37 103);    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user
    img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user
    p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user
    h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left >
    p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left
    ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left
    ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left
    ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left
    ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left
    ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots
    li {
    width: 30px;
    height: 10px;
}

.slick-dots
    li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots
    li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots
    li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}
    ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box
    ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box
    ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}
    section.manuscript-success {
    padding-bottom: 20px;
}
    section.launch-strategy {
    /* background-image: url("../img/number-bg.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}
    section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}
    section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}
    section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip
    h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip
    p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right
    ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right
    ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right
    ul {
    margin-top: 35px;
}
    section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs
    button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:
    hover {
    background: rgb(161 37 103);    color: white;
}

.option-box
    input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(
    input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box
    span {
    display: block;
    font-size: 13px;
}
    div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}
    section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box
    a {
    display: block;
}

.cta-box
    a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table
    thead tr th {
    width: 10%;
}

.direct-table
    thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table
    tr {
    text-align: center;
}

.direct-table
    tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table
    tbody tr td {
    padding: 13px;
}
    section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:
    hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    transform: translateY(-30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}
    @keyframes fadeInUp {
    0% {
        opacity: 0;
    transform: translateY(30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}
    @media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
    padding: 30px;
    }

    .metric-value {
    font-size: 2.8rem;
    }

    .flip-card-wrapper {
    height: 350px;
    }
}
    @media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
    font-size: 0.95rem;
    }

    .flip-card-wrapper {
    height: 320px;
    }

    .flip-card-front, .flip-card-back {
    padding: 25px;
    }

    .metric-value {
    font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
    font-size: 0.9rem;
    }
}
    section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right
    p {
    width: 100%;
}
    section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}
    section.type .tab-pane {
    padding: 0px !important;
}
    section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa
    th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa
    th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa
    th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa
    th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    background: url("../img/podcast-bg.png");
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label
    span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs
    button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs
    button i {
    display: none;
}

.platform-tabs .nav.nav-tabs
    button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs
    button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs
    button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header
    h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header
    p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item
    strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}
    li.plat-rank-item strong {
    background: rgb(161 37 103);}
    li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}
    section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading
    h2 {
    color: white;
}

.counter-content.section-heading
    p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}
    section.expertise.terms-conditions h2 {
    font-weight: 500;
}
    img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer
    p {
    color: white;
    margin-top: 1rem;
}
    p.model-header {
    font-size: 35px;
    font-weight: 600;
}
    p.serv-header {
    font-size: 20px;
    font-weight: 500;
}
    p.manu-h3 {
    font-size: 2rem;
    color: white;
}
    section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}
    p.cta-p {
    font-size: 35px;
    line-height: 40px;
}
    p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}
    p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}
    p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}
    p.review-name {
    font-size: 2rem;
    color: rgb(112, 96, 247);
    font-weight: 700;
}
    div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}
    div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}
    section.banner.home-banner .banner-content {
    margin-top: 5rem;
}
    p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}
    p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta
    p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}
    section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}
    p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}
    p.launch-h5 + p {
    margin: 5px 0px 20px;
}
    section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}
    p.sub-title-span {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}
    p.steps {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}
    h3.h3-proccess span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}
    p.fic-para {
    color: white;
    padding: 1rem;
    background: rgb(111, 95, 245);
    border-radius: 30px;
    margin-top: 1rem;
}
    section.cta-no-index {
    z-index: 1 !important;
}
    p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(112, 96, 247);
}
    p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card
    p {
    font-size: 26px;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}
    p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}
    p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
    p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}
    p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}
    h3.our-process {
    font-size: 18px;
    font-weight: 500;
}
    section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}
    h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}
    h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}
    p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
    p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}
    p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
    p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    header.sticky img {
    filter: none;
    width: 90px;
}
    header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}
    header.sticky .btn-header {
    background: black;
    color: white;
}
    section.experience-image-box {
    position: relative;
    z-index: 2;
}
    div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}
    section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}
    section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}
    section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}
    div#quoteModal .contact-form {
    background: transparent;
}
    div#quoteModal .form-group * {
    border: 1px solid rgb(155, 110, 255);
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}
    section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box
    h3 {
    font-size: 22px;
}
    section.protection.inner-protection .number-box {
    min-height: 234px;
}
    section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
    img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}
    form.form_submission .success {
    padding: 0px;
}
    label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow
    i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a img {
    border-radius: 10px;
}

.content-block .post-thumbnail
    a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item
    span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item
    span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}
    ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
    ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}
    ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}
    ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}
    ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:
    hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:
    hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail
    a {
    border-radius: 100%;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:
    hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail
    a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail
    a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}
    ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}
    ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}
    ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}
    div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}
    div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail
    img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper
    span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content
    ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content
    ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details
    figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details
    p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details
    figure img {
    border-radius: 10px;
}

.axil-post-details
    p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud
    a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like
    a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like
    a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like
    a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}
    ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-icon li {
    margin: 5px;
}
    ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}
    ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details
    h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail
    a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}
    p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories
    ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories
    ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group
    input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}
    newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}
    p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget
    input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit
    button.axil-button {
    width: auto;
}
    a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}
    ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}
    section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs
    button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs
    button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs
    button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::
    before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text
    ul li p {
    margin: 0px;
}

.content-block-text
    ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text
    ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text
    ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}
    p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::
    after {
    border-radius: 0px;
}

.post-thumbnail::
    after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge
    i {
    color: rgb(255, 204, 0);
}

.illus-hero
    h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero
    h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero
    p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars
    img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars
    img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars
    i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags
    span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active
    h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags
    span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag
    p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:
    hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete
    i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading
    h2 .muted {}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item
    h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item
    p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials
    h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars
    i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author
    img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author
    h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author
    p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card
    ul {
    margin: 0px 0px 28px;
}

.pricing-card
    ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card
    ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row
    span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row
    p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box
    h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box
    h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card
    h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}
    @media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    }

    .illus-hero-shape {
    display: none;
    }

    .illus-stats {
    padding: 50px 0px;
    }

    .illus-stats .stat-item {
    margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
    font-size: 36px;
    }

    .get-started {
    padding: 50px 0px;
    }

    .quote-form-card {
    padding: 24px;
    margin-top: 30px;
    }
}
    @media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
    font-size: 38px;
    }
}

.post-author-avatar.border-rounded
    img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:
    hover {}

.works-card:
    hover * {
    color: white;
}

.works-card:
    hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}
    p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
    p.mb-4.model-header.text-left {}
    div#quoteModal {}
    div#quoteModal p {font-size: 25px;}
    span.top-modal {}
    p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service
    img {border-radius: 25px;
    width: 100%;}
    figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}
    figure.resource-img {
    margin: 0;
}

.resource-content
    h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content
    p {
    font-size: 15px;
    margin-bottom: 1rem;
}
    tml {
    overflow-x: hidden;
}
    body {
    font-family: Poppins, sans-serif;
}
    ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}
    section.banner.home-banner {
    background-color: rgb(112, 96, 247);
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}
    header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}
    header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: rgb(25, 0, 81);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(25, 0, 81);
}
    header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}
    a.navbar-brand {
    margin-right: 0px;
}
    a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}
    a.navbar-brand img {
    width: 150px;
    filter: invert(1) brightness(10);
}

.btn-white:
    hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:
    hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img
    img {
    width: 90%;
}

.banner-content
    h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content
    p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content
    h1 span {
    font-weight: bold;
}

.section-heading
    h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.section-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}
    ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}
    ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}
    ul.list-items {
    margin-top: 40px;
}
    section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(112, 96, 247);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}
    section.cta {
    background-color: rgb(25, 0, 81);
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading
    h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box
    h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:
    hover {
    color: white;
    background-color: rgb(25, 0, 81);
}

.number-box:
    hover * {
    color: white;
}
    section.type ul {
    display: flex;
    align-items: center;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}
    section.type ul li {
    text-align: center;
}
    section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}
    section.type .section-heading {
    background-color: rgb(25, 0, 81);
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}
    section.type .section-heading h2 {
    color: white;
}

.success-upper
    span {
    background-color: rgb(112, 96, 247);
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper
    h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}
    section.cta-launch {
    position: relative;
    padding-top: 83px;
}
    section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: rgb(25, 0, 81);
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box
    h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box
    p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img
    img {
    width: 100%;
}
    ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
    ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}
    ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}
    ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}
    ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
}

.author-box {
    text-align: center;
}

.author-box .stars
    i {
    color: rgb(255, 204, 0);
}

.author-box
    p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box
    img {
    width: 100%;
}
    section.author {
    overflow: hidden;
    padding: 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box
    img {
    width: 100%;
    border-radius: 30px;
}

.blog-box
    h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box
    p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}
    section.blog .section-heading {
    margin-bottom: 40px;
}
    section.blog {
    padding-bottom: 120px;
}
    footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: rgb(112, 96, 247);
    z-index: 0;
}

.menu-list
    h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list
    a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list
    a:hover {
    color: rgb(25, 0, 81);
}

.menu-list
    a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right
    a {
    color: white;
}

.copy-right
    p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content
    h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner
    h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}
    section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}
    section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: rgb(25, 0, 81);
    position: absolute;
    z-index: -17;
    top: -200px;
}
    section.stories .section-heading h2 {}
    section.stories .section-heading.text-center p {}

.stories-img
    img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading
    h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading
    p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box
    h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box
    p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}
    section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading
    h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading
    h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img
    img {
    width: 100%;
    object-fit: cover;
}

.team-box
    h5 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box
    p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}
    section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper
    h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box
    i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box
    span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box
    p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 25px 30px;
    margin-left: 40px;
}

.contact-form
    h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: rgb(239, 239, 239);
    border-radius: 50px;
    height: 44px;
    border-color: rgb(239, 239, 239);
}

.contact-form
    label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form
    textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form
    button {
    display: block;
    width: 100%;
}

.contact-form
    p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form
    p span {
    text-decoration: underline;
}

.inner-banner::
    before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box
    img {
    margin-bottom: 15px;
}

.contact-info-box
    h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box
    p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}
    section.contact-info {
    padding-bottom: 20px;
}
    section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}
    footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
    left: -12%;
    bottom: -23%;
    }
}

.banner-content
    h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content
    h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content
    ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content
    ul li img {
    position: relative;
    top: 2px;
}

.banner-content
    ul {
    margin-top: 25px;
    margin-bottom: 0px;
}
    section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form
    h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce
    img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner
    img {
    width: 220px;
}

.cta-wrapper-inner .section-heading
    h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:
    hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content
    h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
    section.stories.service-stories::before {
    display: none;
}
    section.count {
    padding: 100px 0px;
}
    section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}
    section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box
    i {
    color: rgb(255, 204, 0);
}

.reviewed-right
    h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right
    p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right
    h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
    section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    section.brand-logo ul li {
    flex: 0 0 15%;
}
    section.brand-logo ul li img {
    width: 100%;
}
    section.brand-logo {
    padding: 39px 0px 80px;
}
    ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}
    ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}
    @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box
    p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading
    p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}
    section.podcast.expertise {
    background-image: none;
}
    section.service-expertise {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px 100px;
    margin-top: 100px;
    margin-bottom: 80px;
}
    section.service-expertise * {
    color: white;
}
    section.service-expertise .section-heading h2 span {
    color: white;
}
    section.counter {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid rgb(112, 96, 247);
    border-right: 8px solid rgb(112, 96, 247);
}

.counter-box
    p {
    margin: 0px;
}

.counter-box
    h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(25, 0, 81);
    color: white;
}
    div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}
    section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::
    after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: rgb(112, 96, 247);
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}
    div#accordionExample {
    margin-top: 40px;
}

.accordion-button::
    after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs
    button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs
    button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid rgb(112, 96, 247) !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs
    button.active {
    background-color: rgb(112, 96, 247);
    color: white;
}

.nav.nav-tabs
    button.active span {
    color: white;
}

.nav.nav-tabs
    button i {
    position: absolute;
    top: -25px;
    background-color: rgb(112, 96, 247);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs
    button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
}

.process-heading
    p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading
    h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading
    h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right
    h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right
    ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right
    ul li:last-child {
    margin-bottom: 0px;
}

.process-right
    ul {
    margin: 0px;
}

.process-right
    ul li i {
    color: rgb(112, 96, 247);
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}
    section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box
    span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tab-difference.tab-content {
    margin-top: 80px;
}
    ul.difference-list {
    margin: 40px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
    ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}
    ul.difference-list i {
    color: rgb(112, 96, 247);
}

.difference-box
    h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}
    section.genre {
    padding-bottom: 50px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading
    h2 {
    color: white !important;
}

.counter.counter-number .section-heading
    h2 span {
    color: white;
}

.counter.counter-number .section-heading
    h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: rgb(112, 96, 247);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right
    h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
}
    section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}
    section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content
    h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:
    first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide
    img {
    height: 450px;
}

.btn-wrapper
    a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box
    p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list
    span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list
    ul {
    margin: 0px !important;
}

.template-list
    ul li:last-child p {
    margin-bottom: 0px;
}

.template-list
    ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active
    span {
    border-color: white;
}
    h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:
    hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper
    div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left
    i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left >
    span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box >
    span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left
    h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left
    p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box
    img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box
    h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box
    h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box
    img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower
    ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}
    section.custom-book-illustration {
    padding-bottom: 100px;
}
    ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}
    ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image
    img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon
    p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}
    section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left
    h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper
    img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap
    img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}
    section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}
    section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img
    img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img
    img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img
    img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img
    img.first-book {
    position: relative;
    z-index: 4;
}
    section.author-identity {
    padding-bottom: 120px;
}
    section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

.protection .number-box
    h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}
    section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}
    section.understand * {
    color: white;
}
    ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
    ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}
    section.understand .design-starts-left p {
    color: black;
}
    section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box
    ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box
    ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box
    ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full
    audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper
    ul {
    margin-bottom: 0px;
}
    section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper
    h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper
    ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper
    ul li i {
    color: rgb(112, 96, 247);
}

.security-full >
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box
    h6 {
    margin-bottom: 15px;
}

.number-box
    audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card
    h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}
    input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}
    input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}
    input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:
    focus {
    border-color: var(--orange);
}

.genre-select
    option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: rgb(161 37 103);    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::
    before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::
    after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label
    svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:
    hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: rgb(112, 96, 247);
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon
    svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}
    @keyframes countUp {
    0% {
        opacity: 0.4;
    transform: translateY(4px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}
    section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box
    h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head
    p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head
    h6 {
    font-size: 23px;
}

.manuscript-success-head
    span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head
    span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: rgb(161 37 103);    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user
    img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user
    p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user
    h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left >
    p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left
    ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left
    ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left
    ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left
    ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left
    ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots
    li {
    width: 30px;
    height: 10px;
}

.slick-dots
    li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots
    li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots
    li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}
    ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box
    ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box
    ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}
    section.manuscript-success {
    padding-bottom: 20px;
}
    section.launch-strategy {
    /* background-image: url("../img/number-bg.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}
    section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}
    section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}
    section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip
    h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip
    p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right
    ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right
    ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right
    ul {
    margin-top: 35px;
}
    section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs
    button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:
    hover {
    background: rgb(161 37 103);    color: white;
}

.option-box
    input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(
    input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box
    span {
    display: block;
    font-size: 13px;
}
    div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}
    section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box
    a {
    display: block;
}

.cta-box
    a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table
    thead tr th {
    width: 10%;
}

.direct-table
    thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table
    tr {
    text-align: center;
}

.direct-table
    tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table
    tbody tr td {
    padding: 13px;
}
    section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:
    hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    transform: translateY(-30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}
    @keyframes fadeInUp {
    0% {
        opacity: 0;
    transform: translateY(30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}
    @media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
    padding: 30px;
    }

    .metric-value {
    font-size: 2.8rem;
    }

    .flip-card-wrapper {
    height: 350px;
    }
}
    @media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
    font-size: 0.95rem;
    }

    .flip-card-wrapper {
    height: 320px;
    }

    .flip-card-front, .flip-card-back {
    padding: 25px;
    }

    .metric-value {
    font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
    font-size: 0.9rem;
    }
}
    section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right
    p {
    width: 100%;
}
    section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}
    section.type .tab-pane {
    padding: 0px !important;
}
    section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa
    th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa
    th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa
    th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa
    th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    background: url("../img/podcast-bg.png");
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label
    span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs
    button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs
    button i {
    display: none;
}

.platform-tabs .nav.nav-tabs
    button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs
    button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs
    button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header
    h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header
    p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item
    strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}
    li.plat-rank-item strong {
    background: rgb(161 37 103);}
    li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}
    section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading
    h2 {
    color: white;
}

.counter-content.section-heading
    p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}
    section.expertise.terms-conditions h2 {
    font-weight: 500;
}
    img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer
    p {
    color: white;
    margin-top: 1rem;
}
    p.model-header {
    font-size: 35px;
    font-weight: 600;
}
    p.serv-header {
    font-size: 20px;
    font-weight: 500;
}
    p.manu-h3 {
    font-size: 2rem;
    color: white;
}
    section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}
    p.cta-p {
    font-size: 35px;
    line-height: 40px;
}
    p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}
    p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}
    p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}
    p.review-name {
    font-size: 2rem;
    color: rgb(112, 96, 247);
    font-weight: 700;
}
    div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}
    div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}
    section.banner.home-banner .banner-content {
    margin-top: 5rem;
}
    p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}
    p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta
    p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}
    section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}
    p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}
    p.launch-h5 + p {
    margin: 5px 0px 20px;
}
    section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}
    p.sub-title-span {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}
    p.steps {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}
    h3.h3-proccess span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}
    p.fic-para {
    color: white;
    padding: 1rem;
    background: rgb(111, 95, 245);
    border-radius: 30px;
    margin-top: 1rem;
}
    section.cta-no-index {
    z-index: 1 !important;
}
    p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(112, 96, 247);
}
    p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card
    p {
    font-size: 26px;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}
    p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}
    p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
    p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}
    p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}
    h3.our-process {
    font-size: 18px;
    font-weight: 500;
}
    section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}
    h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}
    h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}
    p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
    p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}
    p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
    p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    header.sticky img {
    filter: none;
    width: 90px;
}
    header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}
    header.sticky .btn-header {
    background: black;
    color: white;
}
    section.experience-image-box {
    position: relative;
    z-index: 2;
}
    div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}
    section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}
    section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}
    section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}
    div#quoteModal .contact-form {
    background: transparent;
}
    div#quoteModal .form-group * {
    border: 1px solid rgb(155, 110, 255);
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}
    section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box
    h3 {
    font-size: 22px;
}
    section.protection.inner-protection .number-box {
    min-height: 234px;
}
    section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
    img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}
    form.form_submission .success {
    padding: 0px;
}
    label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow
    i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a img {
    border-radius: 10px;
}

.content-block .post-thumbnail
    a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item
    span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item
    span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}
    ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
    ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}
    ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}
    ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}
    ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:
    hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:
    hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail
    a {
    border-radius: 100%;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:
    hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail
    a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail
    a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}
    ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}
    ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}
    ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}
    div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}
    div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail
    img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper
    span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content
    ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content
    ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details
    figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details
    p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details
    figure img {
    border-radius: 10px;
}

.axil-post-details
    p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud
    a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like
    a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like
    a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like
    a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}
    ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-icon li {
    margin: 5px;
}
    ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}
    ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details
    h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail
    a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}
    p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories
    ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories
    ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group
    input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}
    newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}
    p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget
    input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit
    button.axil-button {
    width: auto;
}
    a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}
    ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}
    section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs
    button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs
    button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs
    button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::
    before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text
    ul li p {
    margin: 0px;
}

.content-block-text
    ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text
    ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text
    ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}
    p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::
    after {
    border-radius: 0px;
}

.post-thumbnail::
    after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge
    i {
    color: rgb(255, 204, 0);
}

.illus-hero
    h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero
    h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero
    p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars
    img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars
    img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars
    i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags
    span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active
    h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags
    span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag
    p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:
    hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete
    i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading
    h2 .muted {}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item
    h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item
    p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials
    h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars
    i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author
    img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author
    h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author
    p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card
    ul {
    margin: 0px 0px 28px;
}

.pricing-card
    ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card
    ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row
    span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row
    p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box
    h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box
    h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card
    h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}
    @media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    }

    .illus-hero-shape {
    display: none;
    }

    .illus-stats {
    padding: 50px 0px;
    }

    .illus-stats .stat-item {
    margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
    font-size: 36px;
    }

    .get-started {
    padding: 50px 0px;
    }

    .quote-form-card {
    padding: 24px;
    margin-top: 30px;
    }
}
    @media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
    font-size: 38px;
    }
}

.post-author-avatar.border-rounded
    img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:
    hover {}

.works-card:
    hover * {
    color: white;
}

.works-card:
    hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}
    p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
    p.mb-4.model-header.text-left {}
    div#quoteModal {}
    div#quoteModal p {font-size: 25px;}
    span.top-modal {}
    p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service
    img {border-radius: 25px;
    width: 100%;}
    figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}
    figure.resource-img {
    margin: 0;
}

.resource-content
    h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content
    p {
    font-size: 15px;
    margin-bottom: 1rem;
}
    html {
    overflow-x: hidden;
}
    body {
    font-family: Poppins, sans-serif;
}
    ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}
    section.banner.home-banner {
    background-color: #a12567;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}
    header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}
    header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: #194773;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid #194773;
}
    header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}
    a.navbar-brand {
    margin-right: 0px;
}
    a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}
    a.navbar-brand img {
    width: 270px;
    filter: invert(1) brightness(10);
}

.btn-white:
    hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:
    hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img
    img {
    width: 90%;
}

.banner-content
    h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content
    p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content
    h1 span {
    font-weight: bold;
}

.section-heading
    h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h2 span {
    color: #a12567;
    font-weight: bold;
}

.section-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}
    ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}
    ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}
    ul.list-items {
    margin-top: 40px;
}
    section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: #a12567;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid #a12567;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}
    section.cta {
    background-color: #194773;
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading
    h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box
    h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:
    hover {
    color: white;
    background-color: rgb(25 71 115);
}

.number-box:
    hover * {
    color: white;
}
    section.type ul {
    display: flex;
    align-items: center;
    background-color: #a12567;
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}
    section.type ul li {
    text-align: center;
}
    section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}
    section.type .section-heading {
    background-color: #194773;
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}
    section.type .section-heading h2 {
    color: white;
}

.success-upper
    span {
    background-color: #a12567;
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper
    h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}
    section.cta-launch {
    position: relative;
    padding-top: 83px;
}
    section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #194773;
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box
    h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box
    p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img
    img {
    width: 100%;
}
    ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
    ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}
    ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}
    ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}
    ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}

.author-box {
    text-align: center;
}

.author-box .stars
    i {
    color: rgb(255, 204, 0);
}

.author-box
    p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box
    img {
    width: 100%;
}
    section.author {
    overflow: hidden;
    padding: 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box
    img {
    width: 100%;
    border-radius: 30px;
}

.blog-box
    h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box
    p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}
    section.blog .section-heading {
    margin-bottom: 40px;
}
    section.blog {
    padding-bottom: 120px;
}
    footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: #a12567;
    z-index: 0;
}

.menu-list
    h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list
    a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list
    a:hover {
    color: rgb(25, 0, 81);
}

.menu-list
    a i {
    color: rgb(25 71 115);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right
    a {
    color: white;
}

.copy-right
    p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content
    h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner
    h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}
    section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}
    section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: #194773;
    position: absolute;
    z-index: -17;
    top: -200px;
}
    section.stories .section-heading h2 {}
    section.stories .section-heading.text-center p {}

.stories-img
    img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading
    h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading
    p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box
    h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box
    p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}
    section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading
    h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading
    h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img
    img {
    width: 100%;
    object-fit: cover;
}

.team-box
    h5 {
    color: #a12567;
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box
    p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}
    section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper
    h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box
    i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box
    span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box
    p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 25px 30px;
    margin-left: 40px;
}

.contact-form
    h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: #f5e9f0;
    border-radius: 50px;
    height: 44px;
    border-color: rgb(245 233 240);
}

.contact-form
    label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form
    textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form
    button {
    display: block;
    width: 100%;
}

.contact-form
    p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form
    p span {
    text-decoration: underline;
}

.inner-banner::
    before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(#a12567 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box
    img {
    margin-bottom: 15px;
}

.contact-info-box
    h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box
    p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}
    section.contact-info {
    padding-bottom: 20px;
}
    section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}
    footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
    left: -12%;
    bottom: -23%;
    }
}

.banner-content
    h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content
    h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content
    ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content
    ul li img {
    position: relative;
    top: 2px;
}

.banner-content
    ul {
    margin-top: 25px;
    margin-bottom: 0px;
}
    section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form
    h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce
    img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner
    img {
    width: 220px;
}

.cta-wrapper-inner .section-heading
    h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:
    hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content
    h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
    section.stories.service-stories::before {
    display: none;
}
    section.count {
    padding: 100px 0px;
}
    section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}
    section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
    background-color: rgba(161, 37, 103, 0.10);
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box
    i {
    color: rgb(255, 204, 0);
}

.reviewed-right
    h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right
    p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right
    h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
    section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    section.brand-logo ul li {
    flex: 0 0 15%;
}
    section.brand-logo ul li img {
    width: 100%;
}
    section.brand-logo {
    padding: 39px 0px 80px;
}
    ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}
    ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}
    @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box
    p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading
    p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}
    section.podcast.expertise {
    background-image: none;
}
    section.service-expertise {
    background-color: #194773;
    padding: 80px 0px 100px;
    margin-top: 100px;
    margin-bottom: 80px;
}
    section.service-expertise * {
    color: white;
}
    section.service-expertise .section-heading h2 span {
    color: white;
}
    section.counter {
    background-color: #194773;
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid #a12567;
    border-right: 8px solid #a12567;
}

.counter-box
    p {
    margin: 0px;
}

.counter-box
    h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: #194773;
    color: white;
}
    div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}
    section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::
    after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: #a12567;
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}
    div#accordionExample {
    margin-top: 40px;
}

.accordion-button::
    after {
    filter: invert(1);
}

.accordion-body {
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
    background-color: rgba(161, 37, 103, 0.10);
}

.section-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs
    button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs
    button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid #a12567 !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs
    button.active {
    background-color: #a12567;
    color: white;
}

.nav.nav-tabs
    button.active span {
    color: white;
}

.nav.nav-tabs
    button i {
    position: absolute;
    top: -25px;
    background-color: #a12567;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs
    button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
    background-color: rgba(161, 37, 103, 0.10);
}

.process-heading
    p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading
    h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading
    h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right
    h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right
    ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right
    ul li:last-child {
    margin-bottom: 0px;
}

.process-right
    ul {
    margin: 0px;
}

.process-right
    ul li i {
    color: #a12567;
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}
    section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box
    span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #a12567;
    color: #fff;
}

.tab-difference.tab-content {
    margin-top: 80px;
}
    ul.difference-list {
    margin: 40px 0px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
    ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: rgba(161, 37, 103, 0.10);
}
    ul.difference-list i {
    color: #a12567;
}

.difference-box
    h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}
    section.genre {
    padding-bottom: 50px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading
    h2 {
    color: white !important;
}

.counter.counter-number .section-heading
    h2 span {
    color: white;
}

.counter.counter-number .section-heading
    h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: #a12567;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right
    h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}
    section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}
    section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content
    h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:
    first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide
    img {
    height: 450px;
}

.btn-wrapper
    a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box
    p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list
    span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list
    ul {
    margin: 0px !important;
}

.template-list
    ul li:last-child p {
    margin-bottom: 0px;
}

.template-list
    ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active
    span {
    border-color: white;
}
    h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:
    hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper
    div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left
    i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left >
    span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box >
    span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left
    h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left
    p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box
    img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box
    h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box
    h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box
    img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower
    ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}
    section.custom-book-illustration {
    padding-bottom: 100px;
}
    ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}
    ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image
    img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon
    p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}
    section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left
    h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper
    img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap
    img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}
    section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}
    section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img
    img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img
    img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img
    img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img
    img.first-book {
    position: relative;
    z-index: 4;
}
    section.author-identity {
    padding-bottom: 120px;
}
    section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
    background-color: rgba(161, 37, 103, 0.10);
}

.protection .number-box
    h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}
    section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}
    section.understand * {
    color: white;
}
    ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
    ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}
    section.understand .design-starts-left p {
    color: black;
}
    section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box
    ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box
    ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(161 37 103);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box
    ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full
    audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper
    ul {
    margin-bottom: 0px;
}
    section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper
    h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper
    ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper
    ul li i {
    color: rgb(161 37 103);
}

.security-full >
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box
    h6 {
    margin-bottom: 15px;
}

.number-box
    audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card
    h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}
    input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}
    input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}
    input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:
    focus {
    border-color: var(--orange);
}

.genre-select
    option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: #a12567;
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::
    before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::
    after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label
    svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:
    hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: #a12567;
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon
    svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}
    @keyframes countUp {
    0% {
        opacity: 0.4;
    transform: translateY(4px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}
    section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box
    h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head
    p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head
    h6 {
    font-size: 23px;
}

.manuscript-success-head
    span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head
    span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: #a12567;
    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user
    img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user
    p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user
    h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left >
    p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left
    ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left
    ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left
    ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left
    ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left
    ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots
    li {
    width: 30px;
    height: 10px;
}

.slick-dots
    li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots
    li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots
    li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}
    ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    border-radius: 16px;
    padding: 30px;
    background-color: rgba(161, 37, 103, 0.10);
    html {
    overflow-x: hidden;
}
    body {
    font-family: Poppins, sans-serif;
}
    ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}
    section.banner.home-banner {
    background-color: rgb(112, 96, 247);
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}
    header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}
    header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: rgb(25, 0, 81);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(25, 0, 81);
}
    header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}
    a.navbar-brand {
    margin-right: 0px;
}
    a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}
    a.navbar-brand img {
    width: 150px;
    filter: invert(1) brightness(10);
}

.btn-white:
    hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:
    hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img
    img {
    width: 90%;
}

.banner-content
    h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content
    p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content
    h1 span {
    font-weight: bold;
}

.section-heading
    h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.section-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}
    ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}
    ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}
    ul.list-items {
    margin-top: 40px;
}
    section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(112, 96, 247);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}
    section.cta {
    background-color: rgb(25, 0, 81);
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading
    h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box
    h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:
    hover {
    color: white;
    background-color: rgb(25, 0, 81);
}

.number-box:
    hover * {
    color: white;
}
    section.type ul {
    display: flex;
    align-items: center;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}
    section.type ul li {
    text-align: center;
}
    section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}
    section.type .section-heading {
    background-color: rgb(25, 0, 81);
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}
    section.type .section-heading h2 {
    color: white;
}

.success-upper
    span {
    background-color: rgb(112, 96, 247);
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper
    h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}
    section.cta-launch {
    position: relative;
    padding-top: 83px;
}
    section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: rgb(25, 0, 81);
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box
    h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box
    p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img
    img {
    width: 100%;
}
    ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
    ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}
    ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}
    ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}
    ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
}

.author-box {
    text-align: center;
}

.author-box .stars
    i {
    color: rgb(255, 204, 0);
}

.author-box
    p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box
    img {
    width: 100%;
}
    section.author {
    overflow: hidden;
    padding: 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box
    img {
    width: 100%;
    border-radius: 30px;
}

.blog-box
    h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box
    p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}
    section.blog .section-heading {
    margin-bottom: 40px;
}
    section.blog {
    padding-bottom: 120px;
}
    footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: rgb(112, 96, 247);
    z-index: 0;
}

.menu-list
    h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list
    a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list
    a:hover {
    color: rgb(25, 0, 81);
}

.menu-list
    a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right
    a {
    color: white;
}

.copy-right
    p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content
    h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner
    h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}
    section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}
    section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: rgb(25, 0, 81);
    position: absolute;
    z-index: -17;
    top: -200px;
}
    section.stories .section-heading h2 {}
    section.stories .section-heading.text-center p {}

.stories-img
    img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading
    h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading
    p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box
    h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box
    p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}
    section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading
    h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading
    h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img
    img {
    width: 100%;
    object-fit: cover;
}

.team-box
    h5 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box
    p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}
    section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper
    h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box
    i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box
    span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box
    p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 25px 30px;
    margin-left: 40px;
}

.contact-form
    h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: rgb(239, 239, 239);
    border-radius: 50px;
    height: 44px;
    border-color: rgb(239, 239, 239);
}

.contact-form
    label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form
    textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form
    button {
    display: block;
    width: 100%;
}

.contact-form
    p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form
    p span {
    text-decoration: underline;
}

.inner-banner::
    before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box
    img {
    margin-bottom: 15px;
}

.contact-info-box
    h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box
    p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}
    section.contact-info {
    padding-bottom: 20px;
}
    section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}
    footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
    left: -12%;
    bottom: -23%;
    }
}

.banner-content
    h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content
    h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content
    ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content
    ul li img {
    position: relative;
    top: 2px;
}

.banner-content
    ul {
    margin-top: 25px;
    margin-bottom: 0px;
}
    section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form
    h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce
    img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner
    img {
    width: 220px;
}

.cta-wrapper-inner .section-heading
    h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:
    hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content
    h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
    section.stories.service-stories::before {
    display: none;
}
    section.count {
    padding: 100px 0px;
}
    section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}
    section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box
    i {
    color: rgb(255, 204, 0);
}

.reviewed-right
    h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right
    p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right
    h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
    section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    section.brand-logo ul li {
    flex: 0 0 15%;
}
    section.brand-logo ul li img {
    width: 100%;
}
    section.brand-logo {
    padding: 39px 0px 80px;
}
    ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}
    ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}
    @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box
    p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading
    p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}
    section.podcast.expertise {
    background-image: none;
}
    section.service-expertise {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px 100px;
    margin-top: 100px;
    margin-bottom: 80px;
}
    section.service-expertise * {
    color: white;
}
    section.service-expertise .section-heading h2 span {
    color: white;
}
    section.counter {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid rgb(112, 96, 247);
    border-right: 8px solid rgb(112, 96, 247);
}

.counter-box
    p {
    margin: 0px;
}

.counter-box
    h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(25, 0, 81);
    color: white;
}
    div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}
    section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::
    after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: rgb(112, 96, 247);
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}
    div#accordionExample {
    margin-top: 40px;
}

.accordion-button::
    after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs
    button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs
    button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid rgb(112, 96, 247) !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs
    button.active {
    background-color: rgb(112, 96, 247);
    color: white;
}

.nav.nav-tabs
    button.active span {
    color: white;
}

.nav.nav-tabs
    button i {
    position: absolute;
    top: -25px;
    background-color: rgb(112, 96, 247);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs
    button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
}

.process-heading
    p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading
    h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading
    h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right
    h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right
    ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right
    ul li:last-child {
    margin-bottom: 0px;
}

.process-right
    ul {
    margin: 0px;
}

.process-right
    ul li i {
    color: rgb(112, 96, 247);
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}
    section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box
    span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tab-difference.tab-content {
    margin-top: 80px;
}
    ul.difference-list {
    margin: 40px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
    ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}
    ul.difference-list i {
    color: rgb(112, 96, 247);
}

.difference-box
    h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}
    section.genre {
    padding-bottom: 50px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading
    h2 {
    color: white !important;
}

.counter.counter-number .section-heading
    h2 span {
    color: white;
}

.counter.counter-number .section-heading
    h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: rgb(112, 96, 247);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right
    h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
}
    section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}
    section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content
    h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:
    first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide
    img {
    height: 450px;
}

.btn-wrapper
    a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box
    p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list
    span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list
    ul {
    margin: 0px !important;
}

.template-list
    ul li:last-child p {
    margin-bottom: 0px;
}

.template-list
    ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active
    span {
    border-color: white;
}
    h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:
    hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper
    div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left
    i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left >
    span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box >
    span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left
    h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left
    p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box
    img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box
    h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box
    h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box
    img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower
    ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}
    section.custom-book-illustration {
    padding-bottom: 100px;
}
    ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}
    ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image
    img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon
    p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}
    section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left
    h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper
    img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap
    img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}
    section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}
    section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img
    img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img
    img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img
    img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img
    img.first-book {
    position: relative;
    z-index: 4;
}
    section.author-identity {
    padding-bottom: 120px;
}
    section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

.protection .number-box
    h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}
    section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}
    section.understand * {
    color: white;
}
    ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
    ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}
    section.understand .design-starts-left p {
    color: black;
}
    section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box
    ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box
    ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box
    ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full
    audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper
    ul {
    margin-bottom: 0px;
}
    section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper
    h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper
    ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper
    ul li i {
    color: rgb(112, 96, 247);
}

.security-full >
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box
    h6 {
    margin-bottom: 15px;
}

.number-box
    audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card
    h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}
    input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}
    input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}
    input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:
    focus {
    border-color: var(--orange);
}

.genre-select
    option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: rgb(161 37 103);    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::
    before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::
    after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label
    svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:
    hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: rgb(112, 96, 247);
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon
    svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}
    @keyframes countUp {
    0% {
        opacity: 0.4;
    transform: translateY(4px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}
    section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box
    h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head
    p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head
    h6 {
    font-size: 23px;
}

.manuscript-success-head
    span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head
    span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: rgb(161 37 103);    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user
    img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user
    p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user
    h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left >
    p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left
    ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left
    ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left
    ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left
    ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left
    ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots
    li {
    width: 30px;
    height: 10px;
}

.slick-dots
    li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots
    li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots
    li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}
    ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box
    ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box
    ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}
    section.manuscript-success {
    padding-bottom: 20px;
}
    section.launch-strategy {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}
    section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}
    section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}
    section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip
    h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip
    p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right
    ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right
    ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right
    ul {
    margin-top: 35px;
}
    section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs
    button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:
    hover {
    background: rgb(161 37 103);    color: white;
}

.option-box
    input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(
    input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box
    span {
    display: block;
    font-size: 13px;
}
    div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}
    section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box
    a {
    display: block;
}

.cta-box
    a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table
    thead tr th {
    width: 10%;
}

.direct-table
    thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table
    tr {
    text-align: center;
}

.direct-table
    tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table
    tbody tr td {
    padding: 13px;
}
    section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:
    hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    transform: translateY(-30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}
    @keyframes fadeInUp {
    0% {
        opacity: 0;
    transform: translateY(30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}
    @media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
    padding: 30px;
    }

    .metric-value {
    font-size: 2.8rem;
    }

    .flip-card-wrapper {
    height: 350px;
    }
}
    @media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
    font-size: 0.95rem;
    }

    .flip-card-wrapper {
    height: 320px;
    }

    .flip-card-front, .flip-card-back {
    padding: 25px;
    }

    .metric-value {
    font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
    font-size: 0.9rem;
    }
}
    section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right
    p {
    width: 100%;
}
    section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}
    section.type .tab-pane {
    padding: 0px !important;
}
    section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa
    th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa
    th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa
    th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa
    th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    background: url("../img/podcast-bg.png");
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label
    span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs
    button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs
    button i {
    display: none;
}

.platform-tabs .nav.nav-tabs
    button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs
    button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs
    button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header
    h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header
    p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item
    strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}
    li.plat-rank-item strong {
    background: rgb(161 37 103);}
    li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}
    section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading
    h2 {
    color: white;
}

.counter-content.section-heading
    p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}
    section.expertise.terms-conditions h2 {
    font-weight: 500;
}
    img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer
    p {
    color: white;
    margin-top: 1rem;
}
    p.model-header {
    font-size: 35px;
    font-weight: 600;
}
    p.serv-header {
    font-size: 20px;
    font-weight: 500;
}
    p.manu-h3 {
    font-size: 2rem;
    color: white;
}
    section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}
    p.cta-p {
    font-size: 35px;
    line-height: 40px;
}
    p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}
    p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}
    p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}
    p.review-name {
    font-size: 2rem;
    color: rgb(112, 96, 247);
    font-weight: 700;
}
    div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}
    div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}
    section.banner.home-banner .banner-content {
    margin-top: 5rem;
}
    p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}
    p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta
    p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}
    section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}
    p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}
    p.launch-h5 + p {
    margin: 5px 0px 20px;
}
    section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}
    p.sub-title-span {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}
    p.steps {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}
    h3.h3-proccess span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}
    p.fic-para {
    color: white;
    padding: 1rem;
    background: rgb(111, 95, 245);
    border-radius: 30px;
    margin-top: 1rem;
}
    section.cta-no-index {
    z-index: 1 !important;
}
    p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(112, 96, 247);
}
    p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card
    p {
    font-size: 26px;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}
    p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}
    p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
    p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}
    p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}
    h3.our-process {
    font-size: 18px;
    font-weight: 500;
}
    section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}
    h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}
    h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}
    p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
    p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}
    p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
    p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    header.sticky img {
    filter: none;
    width: 90px;
}
    header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}
    header.sticky .btn-header {
    background: black;
    color: white;
}
    section.experience-image-box {
    position: relative;
    z-index: 2;
}
    div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}
    section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}
    section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}
    section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}
    div#quoteModal .contact-form {
    background: transparent;
}
    div#quoteModal .form-group * {
    border: 1px solid rgb(155, 110, 255);
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}
    section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box
    h3 {
    font-size: 22px;
}
    section.protection.inner-protection .number-box {
    min-height: 234px;
}
    section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
    img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}
    form.form_submission .success {
    padding: 0px;
}
    label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow
    i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a img {
    border-radius: 10px;
}

.content-block .post-thumbnail
    a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item
    span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item
    span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}
    ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
    ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}
    ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}
    ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}
    ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:
    hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:
    hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail
    a {
    border-radius: 100%;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:
    hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail
    a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail
    a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}
    ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}
    ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}
    ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}
    div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}
    div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail
    img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper
    span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content
    ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content
    ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details
    figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details
    p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details
    figure img {
    border-radius: 10px;
}

.axil-post-details
    p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud
    a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like
    a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like
    a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like
    a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}
    ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-icon li {
    margin: 5px;
}
    ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}
    ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details
    h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail
    a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}
    p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories
    ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories
    ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group
    input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}
    newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}
    p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget
    input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit
    button.axil-button {
    width: auto;
}
    a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}
    ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}
    section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs
    button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs
    button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs
    button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::
    before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text
    ul li p {
    margin: 0px;
}

.content-block-text
    ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text
    ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text
    ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}
    p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::
    after {
    border-radius: 0px;
}

.post-thumbnail::
    after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge
    i {
    color: rgb(255, 204, 0);
}

.illus-hero
    h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero
    h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero
    p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars
    img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars
    img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars
    i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags
    span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active
    h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags
    span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag
    p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:
    hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete
    i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading
    h2 .muted {}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item
    h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item
    p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials
    h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars
    i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author
    img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author
    h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author
    p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card
    ul {
    margin: 0px 0px 28px;
}

.pricing-card
    ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card
    ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row
    span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row
    p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box
    h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box
    h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card
    h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}
    @media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    }

    .illus-hero-shape {
    display: none;
    }

    .illus-stats {
    padding: 50px 0px;
    }

    .illus-stats .stat-item {
    margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
    font-size: 36px;
    }

    .get-started {
    padding: 50px 0px;
    }

    .quote-form-card {
    padding: 24px;
    margin-top: 30px;
    }
}
    @media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
    font-size: 38px;
    }
}

.post-author-avatar.border-rounded
    img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:
    hover {}

.works-card:
    hover * {
    color: white;
}

.works-card:
    hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}
    p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
    p.mb-4.model-header.text-left {}
    div#quoteModal {}
    div#quoteModal p {font-size: 25px;}
    span.top-modal {}
    p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service
    img {border-radius: 25px;
    width: 100%;}
    figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}
    figure.resource-img {
    margin: 0;
}

.resource-content
    h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content
    p {
    font-size: 15px;
    margin-bottom: 1rem;
}
    tml {
    overflow-x: hidden;
}
    body {
    font-family: Poppins, sans-serif;
}
    ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}
    section.banner.home-banner {
    background-color: rgb(112, 96, 247);
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}
    header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}
    header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: rgb(25, 0, 81);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(25, 0, 81);
}
    header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}
    a.navbar-brand {
    margin-right: 0px;
}
    a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}
    a.navbar-brand img {
    width: 150px;
    filter: invert(1) brightness(10);
}

.btn-white:
    hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:
    hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img
    img {
    width: 90%;
}

.banner-content
    h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content
    p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content
    h1 span {
    font-weight: bold;
}

.section-heading
    h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.section-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}
    ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}
    ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}
    ul.list-items {
    margin-top: 40px;
}
    section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid rgb(112, 96, 247);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}
    section.cta {
    background-color: rgb(25, 0, 81);
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading
    h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box
    h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:
    hover {
    color: white;
    background-color: rgb(25, 0, 81);
}

.number-box:
    hover * {
    color: white;
}
    section.type ul {
    display: flex;
    align-items: center;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}
    section.type ul li {
    text-align: center;
}
    section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}
    section.type .section-heading {
    background-color: rgb(25, 0, 81);
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}
    section.type .section-heading h2 {
    color: white;
}

.success-upper
    span {
    background-color: rgb(112, 96, 247);
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper
    h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}
    section.cta-launch {
    position: relative;
    padding-top: 83px;
}
    section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: rgb(25, 0, 81);
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box
    h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box
    p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img
    img {
    width: 100%;
}
    ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
    ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}
    ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}
    ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}
    ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
}

.author-box {
    text-align: center;
}

.author-box .stars
    i {
    color: rgb(255, 204, 0);
}

.author-box
    p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box
    img {
    width: 100%;
}
    section.author {
    overflow: hidden;
    padding: 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box
    img {
    width: 100%;
    border-radius: 30px;
}

.blog-box
    h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box
    p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}
    section.blog .section-heading {
    margin-bottom: 40px;
}
    section.blog {
    padding-bottom: 120px;
}
    footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: rgb(112, 96, 247);
    z-index: 0;
}

.menu-list
    h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list
    a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list
    a:hover {
    color: rgb(25, 0, 81);
}

.menu-list
    a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right
    a {
    color: white;
}

.copy-right
    p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content
    h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner
    h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}
    section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}
    section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: rgb(25, 0, 81);
    position: absolute;
    z-index: -17;
    top: -200px;
}
    section.stories .section-heading h2 {}
    section.stories .section-heading.text-center p {}

.stories-img
    img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading
    h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading
    p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box
    h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box
    p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}
    section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading
    h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading
    h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img
    img {
    width: 100%;
    object-fit: cover;
}

.team-box
    h5 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box
    p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}
    section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper
    h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box
    i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box
    span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box
    p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 25px 30px;
    margin-left: 40px;
}

.contact-form
    h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: rgb(239, 239, 239);
    border-radius: 50px;
    height: 44px;
    border-color: rgb(239, 239, 239);
}

.contact-form
    label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form
    textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form
    button {
    display: block;
    width: 100%;
}

.contact-form
    p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form
    p span {
    text-decoration: underline;
}

.inner-banner::
    before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box
    img {
    margin-bottom: 15px;
}

.contact-info-box
    h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box
    p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}
    section.contact-info {
    padding-bottom: 20px;
}
    section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}
    footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
    left: -12%;
    bottom: -23%;
    }
}

.banner-content
    h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content
    h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content
    ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content
    ul li img {
    position: relative;
    top: 2px;
}

.banner-content
    ul {
    margin-top: 25px;
    margin-bottom: 0px;
}
    section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form
    h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce
    img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner
    img {
    width: 220px;
}

.cta-wrapper-inner .section-heading
    h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:
    hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content
    h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
    section.stories.service-stories::before {
    display: none;
}
    section.count {
    padding: 100px 0px;
}
    section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}
    section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box
    i {
    color: rgb(255, 204, 0);
}

.reviewed-right
    h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right
    p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right
    h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
    section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    section.brand-logo ul li {
    flex: 0 0 15%;
}
    section.brand-logo ul li img {
    width: 100%;
}
    section.brand-logo {
    padding: 39px 0px 80px;
}
    ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}
    ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}
    @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box
    p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading
    p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}
    section.podcast.expertise {
    background-image: none;
}
    section.service-expertise {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px 100px;
    margin-top: 100px;
    margin-bottom: 80px;
}
    section.service-expertise * {
    color: white;
}
    section.service-expertise .section-heading h2 span {
    color: white;
}
    section.counter {
    background-color: rgb(25, 0, 81);
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid rgb(112, 96, 247);
    border-right: 8px solid rgb(112, 96, 247);
}

.counter-box
    p {
    margin: 0px;
}

.counter-box
    h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(25, 0, 81);
    color: white;
}
    div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}
    section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::
    after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: rgb(112, 96, 247);
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}
    div#accordionExample {
    margin-top: 40px;
}

.accordion-button::
    after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs
    button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs
    button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid rgb(112, 96, 247) !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs
    button.active {
    background-color: rgb(112, 96, 247);
    color: white;
}

.nav.nav-tabs
    button.active span {
    color: white;
}

.nav.nav-tabs
    button i {
    position: absolute;
    top: -25px;
    background-color: rgb(112, 96, 247);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs
    button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
}

.process-heading
    p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading
    h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading
    h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right
    h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right
    ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right
    ul li:last-child {
    margin-bottom: 0px;
}

.process-right
    ul {
    margin: 0px;
}

.process-right
    ul li i {
    color: rgb(112, 96, 247);
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}
    section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box
    span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.tab-difference.tab-content {
    margin-top: 80px;
}
    ul.difference-list {
    margin: 40px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
    ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}
    ul.difference-list i {
    color: rgb(112, 96, 247);
}

.difference-box
    h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}
    section.genre {
    padding-bottom: 50px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading
    h2 {
    color: white !important;
}

.counter.counter-number .section-heading
    h2 span {
    color: white;
}

.counter.counter-number .section-heading
    h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: rgb(112, 96, 247);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right
    h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
}
    section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}
    section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content
    h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:
    first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide
    img {
    height: 450px;
}

.btn-wrapper
    a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box
    p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list
    span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list
    ul {
    margin: 0px !important;
}

.template-list
    ul li:last-child p {
    margin-bottom: 0px;
}

.template-list
    ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active
    span {
    border-color: white;
}
    h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:
    hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper
    div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left
    i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left >
    span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box >
    span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left
    h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left
    p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box
    img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box
    h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box
    h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box
    img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower
    ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}
    section.custom-book-illustration {
    padding-bottom: 100px;
}
    ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}
    ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image
    img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon
    p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}
    section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left
    h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper
    img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap
    img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}
    section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}
    section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img
    img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img
    img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img
    img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img
    img.first-book {
    position: relative;
    z-index: 4;
}
    section.author-identity {
    padding-bottom: 120px;
}
    section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}

.protection .number-box
    h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}
    section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}
    section.understand * {
    color: white;
}
    ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
    ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}
    section.understand .design-starts-left p {
    color: black;
}
    section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box
    ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box
    ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box
    ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full
    audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper
    ul {
    margin-bottom: 0px;
}
    section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper
    h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper
    ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper
    ul li i {
    color: rgb(112, 96, 247);
}

.security-full >
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box
    h6 {
    margin-bottom: 15px;
}

.number-box
    audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card
    h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}
    input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}
    input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}
    input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:
    focus {
    border-color: var(--orange);
}

.genre-select
    option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: rgb(161 37 103);    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::
    before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::
    after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label
    svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:
    hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: rgb(112, 96, 247);
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon
    svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}
    @keyframes countUp {
    0% {
        opacity: 0.4;
    transform: translateY(4px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}
    section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box
    h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head
    p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head
    h6 {
    font-size: 23px;
}

.manuscript-success-head
    span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head
    span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: rgb(161 37 103);    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user
    img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user
    p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user
    h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left >
    p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left
    ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left
    ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left
    ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left
    ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left
    ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots
    li {
    width: 30px;
    height: 10px;
}

.slick-dots
    li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots
    li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots
    li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}
    ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box
    ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box
    ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}
    section.manuscript-success {
    padding-bottom: 20px;
}
    section.launch-strategy {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}
    section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}
    section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}
    section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip
    h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip
    p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right
    ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right
    ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right
    ul {
    margin-top: 35px;
}
    section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs
    button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:
    hover {
    background: rgb(161 37 103);    color: white;
}

.option-box
    input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(
    input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box
    span {
    display: block;
    font-size: 13px;
}
    div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}
    section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box
    a {
    display: block;
}

.cta-box
    a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table
    thead tr th {
    width: 10%;
}

.direct-table
    thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table
    tr {
    text-align: center;
}

.direct-table
    tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table
    tbody tr td {
    padding: 13px;
}
    section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:
    hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    transform: translateY(-30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}
    @keyframes fadeInUp {
    0% {
        opacity: 0;
    transform: translateY(30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}
    @media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
    padding: 30px;
    }

    .metric-value {
    font-size: 2.8rem;
    }

    .flip-card-wrapper {
    height: 350px;
    }
}
    @media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
    font-size: 0.95rem;
    }

    .flip-card-wrapper {
    height: 320px;
    }

    .flip-card-front, .flip-card-back {
    padding: 25px;
    }

    .metric-value {
    font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
    font-size: 0.9rem;
    }
}
    section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right
    p {
    width: 100%;
}
    section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}
    section.type .tab-pane {
    padding: 0px !important;
}
    section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa
    th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa
    th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa
    th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa
    th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    background: url("../img/podcast-bg.png");
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label
    span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs
    button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs
    button i {
    display: none;
}

.platform-tabs .nav.nav-tabs
    button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs
    button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs
    button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header
    h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header
    p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item
    strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}
    li.plat-rank-item strong {
    background: rgb(161 37 103);}
    li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}
    section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading
    h2 {
    color: white;
}

.counter-content.section-heading
    p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}
    section.expertise.terms-conditions h2 {
    font-weight: 500;
}
    img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer
    p {
    color: white;
    margin-top: 1rem;
}
    p.model-header {
    font-size: 35px;
    font-weight: 600;
}
    p.serv-header {
    font-size: 20px;
    font-weight: 500;
}
    p.manu-h3 {
    font-size: 2rem;
    color: white;
}
    section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}
    p.cta-p {
    font-size: 35px;
    line-height: 40px;
}
    p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}
    p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}
    p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}
    p.review-name {
    font-size: 2rem;
    color: rgb(112, 96, 247);
    font-weight: 700;
}
    div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}
    div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}
    section.banner.home-banner .banner-content {
    margin-top: 5rem;
}
    p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}
    p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta
    p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}
    section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}
    p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}
    p.launch-h5 + p {
    margin: 5px 0px 20px;
}
    section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}
    p.sub-title-span {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}
    p.steps {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}
    h3.h3-proccess span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}
    p.fic-para {
    color: white;
    padding: 1rem;
    background: rgb(111, 95, 245);
    border-radius: 30px;
    margin-top: 1rem;
}
    section.cta-no-index {
    z-index: 1 !important;
}
    p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(112, 96, 247);
}
    p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card
    p {
    font-size: 26px;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}
    p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}
    p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
    p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}
    p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}
    h3.our-process {
    font-size: 18px;
    font-weight: 500;
}
    section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}
    h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}
    h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}
    p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
    p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}
    p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
    p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    header.sticky img {
    filter: none;
    width: 90px;
}
    header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}
    header.sticky .btn-header {
    background: black;
    color: white;
}
    section.experience-image-box {
    position: relative;
    z-index: 2;
}
    div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}
    section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}
    section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}
    section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}
    div#quoteModal .contact-form {
    background: transparent;
}
    div#quoteModal .form-group * {
    border: 1px solid rgb(155, 110, 255);
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}
    section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box
    h3 {
    font-size: 22px;
}
    section.protection.inner-protection .number-box {
    min-height: 234px;
}
    section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
    img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}
    form.form_submission .success {
    padding: 0px;
}
    label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow
    i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a img {
    border-radius: 10px;
}

.content-block .post-thumbnail
    a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item
    span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item
    span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}
    ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
    ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}
    ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}
    ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}
    ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:
    hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:
    hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail
    a {
    border-radius: 100%;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:
    hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail
    a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail
    a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}
    ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}
    ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}
    ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}
    div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}
    div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail
    img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper
    span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content
    ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content
    ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details
    figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details
    p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details
    figure img {
    border-radius: 10px;
}

.axil-post-details
    p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud
    a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like
    a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like
    a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like
    a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}
    ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-icon li {
    margin: 5px;
}
    ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}
    ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details
    h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail
    a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}
    p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories
    ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories
    ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group
    input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}
    newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}
    p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget
    input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit
    button.axil-button {
    width: auto;
}
    a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}
    ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}
    section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs
    button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs
    button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs
    button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::
    before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text
    ul li p {
    margin: 0px;
}

.content-block-text
    ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text
    ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text
    ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}
    p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::
    after {
    border-radius: 0px;
}

.post-thumbnail::
    after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge
    i {
    color: rgb(255, 204, 0);
}

.illus-hero
    h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero
    h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero
    p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars
    img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars
    img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars
    i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags
    span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active
    h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags
    span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag
    p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:
    hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete
    i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading
    h2 .muted {}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item
    h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item
    p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials
    h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars
    i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author
    img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author
    h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author
    p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card
    ul {
    margin: 0px 0px 28px;
}

.pricing-card
    ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card
    ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row
    span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row
    p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box
    h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box
    h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card
    h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}
    @media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    }

    .illus-hero-shape {
    display: none;
    }

    .illus-stats {
    padding: 50px 0px;
    }

    .illus-stats .stat-item {
    margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
    font-size: 36px;
    }

    .get-started {
    padding: 50px 0px;
    }

    .quote-form-card {
    padding: 24px;
    margin-top: 30px;
    }
}
    @media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
    font-size: 38px;
    }
}

.post-author-avatar.border-rounded
    img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:
    hover {}

.works-card:
    hover * {
    color: white;
}

.works-card:
    hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}
    p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
    p.mb-4.model-header.text-left {}
    div#quoteModal {}
    div#quoteModal p {font-size: 25px;}
    span.top-modal {}
    p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service
    img {border-radius: 25px;
    width: 100%;}
    figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}
    figure.resource-img {
    margin: 0;
}

.resource-content
    h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content
    p {
    font-size: 15px;
    margin-bottom: 1rem;
}
    html {
    overflow-x: hidden;
}
    body {
    font-family: Poppins, sans-serif;
}
    ul {
    list-style: none;
    padding: 0px;
}

.sticky-box {
    position: sticky;
    top: 100px;
    z-index: 9;
    display: block;
    height: fit-content;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}
    section.banner.home-banner {
    background-color: #a12567;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 1;
    padding: 150px 0px 60px;
}
    header {
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    z-index: 10;
    transition: 0.3s;
}
    header.sticky {
    position: fixed;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.btn-white {
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(255, 255, 255);
}

.btn-purple {
    background-color: #194773;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid #194773;
}
    header .form-inline ul {
    display: flex;
    gap: 15px;
    margin: 0px;
}
    a.navbar-brand {
    margin-right: 0px;
}
    a.nav-link {
    color: rgb(255, 255, 255) !important;
    font-family: Inter, sans-serif;
}

.navbar-nav {
    gap: 15px;
}
    a.navbar-brand img {
    width: 270px;
    filter: invert(1) brightness(10);
}

.btn-white:
    hover {
    background-color: rgb(30, 30, 30);
    color: white;
    border-color: rgb(30, 30, 30);
}

.btn-purple:
    hover, .btn-black:hover {
    background-color: white;
    color: black;
}

.btn-black {
    background-color: rgb(30, 30, 30);
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(30, 30, 30);
    color: white;
}

.banner-img {
    position: absolute;
    right: -4px;
    width: 42%;
    bottom: 0px;
}

.banner-img
    img {
    width: 90%;
}

.banner-content
    h1 {
    color: rgb(255, 255, 255);
    font-size: 44px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 15px;
}

.banner-content
    p {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.banner-content
    h1 span {
    font-weight: bold;
}

.section-heading
    h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h2 span {
    color: #a12567;
    font-weight: bold;
}

.section-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}
    ul.list-items li {
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}
    ul.list-items li i {
    color: white;
    font-size: 14px;
    margin-right: 1px;
    position: relative;
    top: 6px;
    width: 30px;
    height: 30px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    flex: 0 0 30px;
}
    ul.list-items {
    margin-top: 40px;
}
    section.expertise {
    padding: 80px 0px 0px;
}

.expertise-img {
    margin-top: 30px;
}

.btn-purple-light {
    background-color: #a12567;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    color: white;
    border: 1px solid #a12567;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    gap: 30px;
}
    section.cta {
    background-color: #194773;
    padding: 200px 0px 50px;
    margin-top: -135px;
}

.cta-wrapper-inner .section-heading
    h3 {
    font-weight: 500;
    font-size: 30px;
    margin: 0px;
    line-height: 30px;
}

.numbers {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 160px;
    background-position: center bottom;
}

.number-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 30px;
    padding: 20px;
    min-height: 377px;
    margin: 12px 0px;
    transition: 0.4s;
}

.number-box
    h3 {
    font-size: 35px;
    color: black;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin: 15px 0px 12px;
    letter-spacing: -2px;
}

.number-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 0px;
    line-height: 22px;
}

.numbers .section-heading {
    margin-bottom: 40px;
}

.number-box:
    hover {
    color: white;
    background-color: rgb(25 71 115);
}

.number-box:
    hover * {
    color: white;
}
    section.type ul {
    display: flex;
    align-items: center;
    background-color: #a12567;
    border-radius: 50px;
    margin: -50px 0px 0px;
    padding: 20px 50px;
    z-index: 1;
    position: relative;
    justify-content: space-between !important;
    gap: 0px !important;
}
    section.type ul li {
    text-align: center;
}
    section.type ul li p {
    color: white;
    font-size: 20px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 0px;
}
    section.type .section-heading {
    background-color: #194773;
    border-radius: 50px 50px 0px 0px;
    padding: 80px 0px 110px;
}
    section.type .section-heading h2 {
    color: white;
}

.success-upper
    span {
    background-color: #a12567;
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 12px 0px;
    min-height: 322px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.success-upper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-upper
    h6, .success-upper h3 {
    color: rgb(0, 0, 0);
    font-size: 38px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.success-box
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 15px 0px 0px;
    line-height: 22px;
}

.success {
    padding: 120px 0px 100px;
}

.success .section-heading {
    margin-bottom: 50px;
}
    section.cta-launch {
    position: relative;
    padding-top: 83px;
}
    section.cta-launch::before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #194773;
    height: 210px;
    z-index: -1;
    bottom: 0px;
}

.cta-launch-box {
    align-items: center;
    color: white;
    width: calc(100% - 500px);
    margin-left: auto;
    padding: 40px 0px;
    gap: 10px;
}

.cta-launch-img {
    position: absolute;
    bottom: 0px;
}

.cta-launch-box
    h5 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

.cta-launch-box
    p {
    margin: 0px;
    flex: 0 0 45%;
}

.podcast-img
    img {
    width: 100%;
}
    ul.podcast-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
    ul.podcast-list span {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 20px;
    margin: 0px;
}
    ul.podcast-list h4 {
    color: rgb(30, 30, 30);
    font-size: 20px;
    margin: 0px;
    line-height: 27px;
    font-weight: 500;
}
    ul.podcast-list a {
    background-color: rgba(112, 96, 247, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    flex: 0 0 55px;
    color: rgb(40, 36, 36);
}
    ul.podcast-list {
    margin-top: 20px;
}

.podcast-left {
    width: 89%;
}

.podcast {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 120px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}

.author-box {
    text-align: center;
}

.author-box .stars
    i {
    color: rgb(255, 204, 0);
}

.author-box
    p {
    margin: 10px 0px 0px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

.author-box
    img {
    width: 100%;
}
    section.author {
    overflow: hidden;
    padding: 80px 0px;
}

.author-slider {
    margin-top: 30px;
}

.author-btn {
    text-align: center;
    margin-top: 50px;
}

.blog-box
    img {
    width: 100%;
    border-radius: 30px;
}

.blog-box
    h4 {
    text-decoration: underline;
    font-size: 22px;
    line-height: 32px;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
}

.blog-box
    p {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}
    section.blog .section-heading {
    margin-bottom: 40px;
}
    section.blog {
    padding-bottom: 120px;
}
    footer {
    background-size: cover;
    padding: 65px 0px 30px;
    position: relative;
    background-color: #a12567;
    z-index: 0;
}

.menu-list
    h4 {
    color: white;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.menu-list
    a {
    color: white;
    text-decoration: none;
    margin: 6px 0px;
    display: flex;
    gap: 10px;
}

.menu-list
    a:hover {
    color: rgb(25, 0, 81);
}

.menu-list
    a i {
    color: rgb(255, 204, 0);
    position: relative;
    top: 3px;
}

.copy-right {
    text-align: center;
    color: white;
    margin-top: 30px;
}

.copy-right
    a {
    color: white;
}

.copy-right
    p {
    margin: 0px;
}

.about-banner {
    padding-top: 160px;
    text-align: center;
    background-size: cover;
    z-index: 1;
}

.banner-content
    h2 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 80px;
    text-align: center;
}

.about-banner
    h3 {
    color: rgb(40, 36, 36);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-banner
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    width: 80%;
    margin: 0px auto 40px;
}
    section.stories {
    position: relative;
    padding-top: 20px;
    padding-bottom: 4rem;
}
    section.stories::before {
    content: "";
    width: 100%;
    height: 650px;
    background-color: #194773;
    position: absolute;
    z-index: -17;
    top: -200px;
}
    section.stories .section-heading h2 {}
    section.stories .section-heading.text-center p {}

.stories-img
    img {
    width: 100%;
    border-radius: 25px;
}

.stories-img {
    margin: 40px 0px 80px;
}

.makes-left {
    color: black;
}
    @media (max-width: 991px) {
    .sticky-box {
        position: static;
    }
}

.makes-left .section-heading
    h2 {
    color: rgb(40, 36, 36) !important;
    font-weight: 400 !important;
}

.makes-left .section-heading
    p {
    color: rgb(94, 89, 89);
    margin-bottom: 30px;
}

.makes-box
    h6, .makes-box h3 {
    color: rgb(40, 36, 36);
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.makes-box
    p {
    color: rgb(94, 89, 89);
}

.makes-box {
    margin-bottom: 40px;
}
    section.art-cta {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 80px 0px;
}

.section-heading
    h4 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.section-heading
    h4 span {
    color: rgb(112, 96, 247);
    font-weight: 600;
}
    ul.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.section-heading
    h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
}

.team-img {
    width: 250px;
    height: 250px;
    margin: 0px auto;
    border-radius: 100%;
}

.team-img
    img {
    width: 100%;
    object-fit: cover;
}

.team-box
    h5 {
    color: #a12567;
    font-weight: bold;
    margin-top: 20px;
    font-size: 25px;
}

.team-box
    p {
    margin: 0px;
    color: rgb(94, 89, 89);
    font-size: 15px;
}
    section.team {
    padding: 100px 0px;
}

.contact-banner {
    padding-top: 160px;
    padding-bottom: 180px;
}

.contact-box-wrapper
    h6 {
    color: rgb(40, 36, 36);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 10px 0px;
}

.contact-box
    i {
    color: rgb(255, 217, 0);
    font-size: 24px;
    position: relative;
    top: 5px;
    flex: 0 0 30px;
}

.contact-box
    span {
    color: rgb(40, 36, 36);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-box
    p {
    color: rgb(40, 36, 36);
    font-weight: bold;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    border-radius: 33px;
    padding: 25px 30px;
    margin-left: 40px;
}

.contact-form
    h2 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.contact-form .form-control {
    background-color: #f5e9f0;
    border-radius: 50px;
    height: 44px;
    border-color: rgb(245 233 240);
}

.contact-form
    label {
    color: rgb(40, 36, 36);
    font-weight: 400;
    margin-bottom: 7px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form
    textarea.form-control {
    height: 90px;
    border-radius: 20px;
}

.contact-form
    button {
    display: block;
    width: 100%;
}

.contact-form
    p {
    text-align: center;
    margin: 12px 0px 0px;
}

.contact-form
    p span {
    text-decoration: underline;
}

.inner-banner::
    before, .home-banner::before {
    content: "";
    position: absolute;
    background-image: url("../img/banner-shape-before.webp");
    width: 227px;
    height: 197px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    left: -1px;
}

.inner-banner {
    position: relative;
    background-image: linear-gradient(#a12567 0%, rgba(112, 96, 247, 0) 100%);
}

.book-before-img {
    position: absolute;
    bottom: 0%;
    left: -6%;
}

.contact-info-box
    img {
    margin-bottom: 15px;
}

.contact-info-box
    h6 {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 9px;
}

.contact-info-box
    p {
    color: rgb(94, 89, 89);
}

.contact-info-box {
    width: 90%;
}
    section.contact-info {
    padding-bottom: 20px;
}
    section.contact-img {
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
}
    footer::after {
    content: "";
    position: absolute;
    width: 274px;
    height: 200px;
    right: 0px;
    bottom: 0px;
    background-image: url("../img/footer-cirlce-after.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px;
    left: 0px;
    top: 0px;
    background-image: url("../img/footer-cirlce-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
    section.banner.home-banner .book-before-img {
    z-index: -1;
    left: -12%;
    bottom: -23%;
    & .book-before-img {
    left: -12%;
    bottom: -23%;
    }
}

.banner-content
    h3 {
    color: rgb(255, 255, 255);
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.banner-content
    h4 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -2px;
    font-weight: 400;
}

.banner-content
    ul li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.banner-content
    ul li img {
    position: relative;
    top: 2px;
}

.banner-content
    ul {
    margin-top: 25px;
    margin-bottom: 0px;
}
    section.banner.home-banner.service-banner {
    height: auto;
    padding: 250px 0px 80px !important;
}

.contact-form
    h3 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 28px;
}

.service-cirlce {
    position: absolute;
    right: 2%;
    bottom: 0px;
    z-index: -1;
    height: 330px;
}

.service-cirlce
    img {
    width: 100%;
    height: 100%;
}

.cta-wrapper-inner {
    gap: 30px;
}

.cta-wrapper-inner
    img {
    width: 220px;
}

.cta-wrapper-inner .section-heading
    h3 {
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 600;
    width: 90%;
}

.btn-purple-light:
    hover {
    background-color: white;
    color: rgb(112, 96, 247);
}

.banner-content
    h5 {
    color: rgb(40, 36, 36);
    font-size: 60px;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
    section.stories.service-stories::before {
    display: none;
}
    section.count {
    padding: 100px 0px;
}
    section.count ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: rgb(94, 89, 89);
    margin: 20px 0px;
    line-height: 26px;
}
    section.count ul {
    width: 90%;
    margin-top: 50px;
}

.reviewed {
    /* background-image: url("../img/reviewed-bg.png"); */
    overflow: hidden;
    padding: 80px 0px;
    background-size: cover;
    background-color: rgba(161, 37, 103, 0.10);
}

.reviewed-box {
    display: flex;
    align-items: center;
}

.star-box
    i {
    color: rgb(255, 204, 0);
}

.reviewed-right
    h3 {
    color: rgb(0, 0, 0);
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

.reviewed-right
    p {
    color: rgb(94, 89, 89);
    font-size: 17px;
    font-weight: 500;
    margin: 20px 0px 40px;
}

.reviewed-right
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.reviewed-right
    h6 {
    color: rgb(94, 89, 89);
    margin: 0px;
    font-weight: 500;
}

.reviewed-right {
    margin-left: 20px;
    flex: 0 0 50%;
    width: 80% !important;
}

.reviewed-slider {
    margin-top: 40px;
    margin-bottom: 40px;
}
    section.brand-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
    section.brand-logo ul li {
    flex: 0 0 15%;
}
    section.brand-logo ul li img {
    width: 100%;
}
    section.brand-logo {
    padding: 39px 0px 80px;
}
    ul.dropdown-menu {
    background-color: rgb(25, 0, 81);
    border-radius: 20px;
    overflow: hidden;
}
    ul.dropdown-menu a {
    color: white;
    font-size: 15px !important;
}
    @media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    margin-top: 0px;
    }
}

.cta-box {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 30px;
    text-align: center;
    border-top: 10px solid rgb(236, 228, 254);
    margin-top: 60px;
    min-height: 315px;
}

.cta-box
    p {
    margin: 0px;
    font-size: 15px;
    line-height: 25px;
    color: black !important;
}

.type .section-heading
    p {
    color: white;
    padding: 0px 100px;
    margin-bottom: 0px;
}
    section.podcast.expertise {
    background-image: none;
}
    section.service-expertise {
    background-color: #194773;
    padding: 80px 0px 100px;
    margin-top: 100px;
    margin-bottom: 80px;
}
    section.service-expertise * {
    color: white;
}
    section.service-expertise .section-heading h2 span {
    color: white;
}
    section.counter {
    background-color: #194773;
    padding: 80px 0px;
}

.counter-box {
    background-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 35px 0px;
    border-left: 8px solid #a12567;
    border-right: 8px solid #a12567;
}

.counter-box
    p {
    margin: 0px;
}

.counter-box
    h6 {
    font-weight: bold;
    font-size: 40px;
}

.accordion-button:not(.collapsed) {
    background-color: #194773;
    color: white;
}
    div#accordionExample .accordion-item {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0px;
    border-radius: 0px;
}
    section.faq-wrapper {
    padding-bottom: 80px;
}

.accordion-button:not(.collapsed)::
    after {
    filter: invert(1) brightness(12);
}

.accordion-button {
    background-color: #a12567;
    color: white;
    padding: 25px 40px;
    border-radius: 50px !important;
}
    div#accordionExample {
    margin-top: 40px;
}

.accordion-button::
    after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(198, 198, 198, 0.24);
    margin-top: 16px;
    border-radius: 28px;
    padding: 25px 30px;
}

.section-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.nav-tabs {
    border: 0px;
}

.nav.nav-tabs
    button span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    color: black;
}

.nav.nav-tabs
    button {
    padding: 15px 0px;
    position: relative;
    border: 2px solid #a12567 !important;
    border-radius: 30px !important;
}

.nav.nav-tabs {
    align-items: center;
    gap: 0px;
    border: 0px;
    margin-top: 40px;
}

.nav.nav-tabs
    button.active {
    background-color: #a12567;
    color: white;
}

.nav.nav-tabs
    button.active span {
    color: white;
}

.nav.nav-tabs
    button i {
    position: absolute;
    top: -25px;
    background-color: #a12567;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    left: 36%;
    border: 1px solid white;
    padding: 10px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    color: white;
}

.nav.nav-tabs
    button.active i {
    color: white;
}

.tab-content > .tab-pane {
    padding: 40px 60px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    /* background-image: url("../img/podcast-bg.png"); */
    background-position: left center;
    background-color: rgba(161, 37, 103, 0.10);
}

.process-heading
    p {
    margin: 0px;
}

.tab-content {
    margin-top: 50px;
}

.process-heading
    h5 {
    color: rgb(112, 96, 247);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.process-heading
    h2 {
    font-size: 55px;
    font-weight: 400;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
}

.process-heading
    h2 span {
    color: rgb(112, 96, 247);
    font-weight: bold;
}

.process-heading
    h6 {
    color: rgb(119, 119, 119);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 25px;
}

.process-heading
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.process-right
    h5 {
    color: rgb(40, 36, 36);
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.process-right
    ul li {
    margin-bottom: 11px;
    color: rgb(94, 89, 89);
}

.process-right
    ul li:last-child {
    margin-bottom: 0px;
}

.process-right
    ul {
    margin: 0px;
}

.process-right
    ul li i {
    color: #a12567;
}

.process-heading {
    width: 100%;
    text-align: center;
}

.tab-content.tab-difference > .tab-pane {
    background-image: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
}
    section.difference {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 100px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}

.difference-box {
    padding: 40px 50px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    border-radius: 50px;
    height: 100%;
    position: relative;
}

.difference-box
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin: 0px;
}

.difference-box
    span, .difference-box p.diff-header {
    position: absolute;
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #a12567;
    color: #fff;
}

.tab-difference.tab-content {
    margin-top: 80px;
}
    ul.difference-list {
    margin: 40px 0px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
    ul.difference-list li {
    background-color: rgb(234, 224, 254);
    border-radius: 50px;
    top: -23px;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: rgba(161, 37, 103, 0.10);
}
    ul.difference-list i {
    color: #a12567;
}

.difference-box
    h4 {
    background-color: rgb(250, 243, 255);
    font-size: 17px;
    font-weight: 300;
    padding: 15px 30px;
    border-radius: 15px;
    line-height: 30px;
    margin: 15px 0px 0px;
}
    section.genre {
    padding-bottom: 50px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter-box
    span {
    font-size: 12px;
}

.counter.counter-number .section-heading {
    margin-bottom: 50px;
}

.counter.counter-number .section-heading
    h2 {
    color: white !important;
}

.counter.counter-number .section-heading
    h2 span {
    color: white;
}

.counter.counter-number .section-heading
    h5, .counter.counter-number .section-heading p {
    color: white;
}

.security-box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(202, 202, 202);
    padding: 30px 20px;
    border-radius: 30px;
    margin: 15px 0px;
    display: flex;
    gap: 30px;
}

.security-icon {
    width: 80px;
    flex: 0 0 80px;
    background-color: #a12567;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border-radius: 20px;
}

.security-right
    h5, .security-right h3 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    letter-spacing: -2px;
    line-height: 38px;
    margin: 0px;
    font-weight: 400;
}

.security-right
    p {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 6px 0px 0px;
    line-height: 22px;
    width: 80%;
}

.security {
    padding-bottom: 100px;
    padding-top: 0px;
}

.security .section-heading {
    margin-bottom: 50px;
}

.contact-bottom {
    /* background-image: url("../img/podcast-bg.png"); */
    background-size: cover;
    padding: 80px 0px;
    background-color: rgba(161, 37, 103, 0.10);
}
    section.contact-bottom .contact-form {
    margin-left: 0px;
    margin-top: 20px;
}
    section.contact-bottom .contact-form button {
    margin-top: 15px;
}

.new-cta {
    padding-top: 50px !important;
}

.type-inner {
    margin-top: 100px;
    margin-bottom: 100px;
}

.btn-wrapper {
    margin-top: 32px;
}

.banner-content
    h3 span {
    font-weight: 600;
}

.images-slide {
    position: relative;
    height: 450px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    width: 420px;
}

.images-slide .img-slide {
    position: absolute;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
}

.images-slide .img-slide:
    first-child {
    transform: rotate(-6deg);
    top: 2rem;
    left: -40px;
}

.images-slide .img-slide:nth-child(2) {
    transform: rotate(2deg);
    left: 65px;
}

.images-slide .img-slide:nth-child(3) {
    transform: rotate(6deg);
    right: -40px;
    top: 64px;
}

.images-slide .img-slide
    img {
    height: 450px;
}

.btn-wrapper
    a:first-child {
    margin-right: 15px;
}

.makes-box.genre-box
    p {
    color: rgb(40, 36, 36);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 0px;
    text-transform: uppercase;
}

.makes-box.genre-box {
    width: 44%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    text-align: center;
    display: block;
    border-radius: 8px;
    padding: 25px 0px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.makes-left.genre-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0px;
    width: 80%;
    margin-left: auto;
}

.makes-box.genre-box
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.template-list {
    padding: 30px 1.5rem 25px;
    border-radius: 1rem;
    border: 1px solid rgb(112, 96, 247);
    position: relative;
}

.template-list
    span {
    position: absolute;
    top: -17px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 13px;
    color: white;
    font-weight: 500;
    border: 1px solid white;
}

.template-list
    ul {
    margin: 0px !important;
}

.template-list
    ul li:last-child p {
    margin-bottom: 0px;
}

.template-list
    ul li p {
    margin-bottom: 10px;
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
}

.template-list.template-list-active {
    background-color: rgb(112, 96, 247);
}

.template-list.template-list-active * {
    color: white;
}

.template-list.template-list-active
    span {
    border-color: white;
}
    h6.sub-title {
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.makes-box.genre-box:
    hover {
    transform: scale(1.1);
}

.author-slider-wrapper .tab-content > .tab-pane {
    background: no-repeat;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.author-slider-wrapper .nav.nav-tabs {
    gap: 20px;
}

.author-slider-wrapper
    div#myTabContent {
    margin-top: 0px;
}

.design-starts-box {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 23px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.design-starts-left {
    display: flex;
}

.design-starts-left
    i {
    width: 60px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 0px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
    flex: 0 0 60px;
}

.design-starts-left >
    span {
    font-size: 32px;
    display: inline-block;
}

.design-starts-box >
    span {
    font-weight: bold;
    font-size: 44px;
    color: rgba(112, 96, 247, 0.6);
    line-height: 40px;
}

.design-starts-left
    h6 {
    font-size: 18px;
    margin-bottom: 4px;
}

.design-starts-left
    p {
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px !important;
}

.genre-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.genre-box
    img {
    width: 100%;
}

.genre-lower {
    padding: 25px;
}

.genre-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.genre-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
}

.genre-box
    h6 {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.genre-box
    h6 span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    section.genre-expertise {
    padding-bottom: 80px;
    padding-top: 80px;
}

.custom-book-illustration-box {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgb(202, 202, 202);
    position: relative;
    margin: 15px 0px;
}

.custom-book-illustration-box
    img {
    width: 100%;
}

.custom-book-illustration-lower {
    padding: 25px;
    min-height: 354px;
}

.custom-book-illustration-lower
    p {
    color: rgb(94, 89, 89);
    margin: 0px;
}

.custom-book-illustration-lower
    h4 {
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.custom-book-illustration-lower
    ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-top: 15px;
}

.custom-book-illustration-lower
    ul li {
    background-color: rgba(112, 96, 247, 0.6);
    border-radius: 50px;
    font-size: 12px;
    padding: 7px 15px;
    font-weight: 500;
    color: black;
}
    section.custom-book-illustration {
    padding-bottom: 100px;
}
    ul.content-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: space-between;
}
    ul.content-list li {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
}

.platform-optimization-image {
    background-color: rgb(238, 242, 247);
    text-align: center;
    padding: 60px;
    border-radius: 50px;
}

.platform-optimization-image
    img {
    width: 100%;
    margin: 0px auto;
}

.platform-lower {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}

.platform-lower-icon
    i {
    width: 50px;
    height: 50px;
    background-color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 10px;
    font-size: 23px;
    color: white;
    border-radius: 8px;
}

.platform-lower-icon
    p {
    margin: 0px;
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 15px;
    color: rgb(40, 36, 36) !important;
}
    section.platform-optimization {
    padding: 0px 0px 100px;
}

.transformation-left
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 25px;
}

.transformation-left
    h4 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 0px;
}

.before-after {
    position: relative;
    max-width: 450px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.image-wrapper
    img {
    display: block;
    width: 100%;
}

.before-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
    pointer-events: none;
}

.compare-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(26, 22, 18, 0.18) 0px 24px 64px, rgba(26, 22, 18, 0.08) 0px 4px 12px;
    user-select: none;
    aspect-ratio: 2 / 3;
    background: rgb(17, 17, 17);
}

.compare-wrap
    img {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: inset(0px 50% 0px 0px);
}

.label {
    position: absolute;
    top: 14px;
    z-index: 5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.label-before {
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgb(26, 22, 18);
}

.label-after {
    right: 14px;
    background: rgb(107, 79, 187);
    color: rgb(255, 255, 255);
}

.divider {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 2px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 8px;
}

.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 44px;
    height: 44px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-input {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 7;
    appearance: none;
}

.transformation-left
    h2 {
    color: rgb(112, 96, 247);
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -2px;
    margin-bottom: 30px;
}
    section.transformation {
    padding-bottom: 80px;
    padding-top: 80px;
}
    section.author-identity .design-starts-left i {
    height: 74px;
}

.author-identity-img {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author-identity-img
    img {
    width: 46%;
    height: 308px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-radius: 8px;
    border: 2px solid rgba(147, 147, 147, 0.2);
}

.author-identity-img
    img.second-book {
    margin-left: -30px;
    position: relative;
    z-index: 3;
    width: 40%;
    height: 308px;
}

.author-identity-img
    img.third-book {
    margin-left: -106px;
    position: relative;
    z-index: 2;
    height: 308px;
    object-fit: cover;
    object-position: center top;
}

.author-identity-img
    img.first-book {
    position: relative;
    z-index: 4;
}
    section.author-identity {
    padding-bottom: 120px;
}
    section.protection {
    /* background-image: url("../img/number-bg.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
    background-color: rgba(161, 37, 103, 0.10);
}

.protection .number-box
    h3 {
    font-size: 30px;
    line-height: 35px;
}

.protection .number-box {
    min-height: 290px;
}
    section.understand {
    background-color: rgb(25, 0, 81);
    padding: 60px 0px;
    margin-bottom: 100px;
}
    section.understand * {
    color: white;
}
    ul.list-point {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
    ul.list-point li {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #a93874;
}
    section.understand .design-starts-left p {
    color: black;
}
    section.understand h6 {
    color: black;
    font-weight: 500;
    letter-spacing: -2px;
    font-size: 25px;
    line-height: 25px;
}

.number-box
    ul li {
    color: rgb(94, 89, 89);
    font-size: 16px;
    margin: 10px 0px;
    line-height: 22px;
    position: relative;
    padding-left: 20px;
}

.number-box
    ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: rgb(161 37 103);
    border-radius: 50px;
    left: 0px;
    top: 5px;
}

.number-box
    ul {
    margin-top: 15px;
    margin-bottom: 0px;
}

.security-box.security-box-new {
    flex-wrap: wrap;
    margin-top: 40px;
}

.security-right {
    display: flex;
    flex-flow: column wrap;
    contain: content;
    justify-content: center;
}

.security-full
    audio {
    width: 100%;
    margin-bottom: 15px;
}

.list-wrapper {
    display: flex;
    margin-top: 15px;
}

.list-left {
    flex: 0 0 50%;
}

.list-right {
    flex: 0 0 50%;
}

.list-wrapper
    ul {
    margin-bottom: 0px;
}
    section.voice_options {
    background-color: rgba(25, 0, 81, 0.1);
    padding: 100px 0px;
    margin-top: 120px;
}

.list-wrapper
    h6 {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(112, 96, 247);
    margin-bottom: 15px;
}

.list-wrapper
    ul li {
    color: rgb(94, 89, 89);
    font-size: 15px;
    font-weight: 400;
    margin-top: 9px;
}

.list-wrapper
    ul li i {
    color: rgb(161 37 103);
}

.security-full >
    p {
    color: rgb(94, 89, 89);
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 20px;
}

.no-background {
    background-image: none !important;
}

.number-box
    h6 {
    margin-bottom: 15px;
}

.number-box
    audio {
    width: 100%;
    margin-bottom: 0px;
    margin-top: 15px;
}

.input-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    border-radius: 16px;
    margin-top: 50px;
}

.input-card
    h2 {
    font-size: 1.35rem;
    font-weight: 700;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.field-label {
    font-size: 16px;
    font-weight: 500;
}

.field-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--orange);
}
    input[type="range"] {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgb(42, 50, 80);
    outline: none;
    cursor: pointer;
}
    input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 3px solid var(--orange);
    box-shadow: rgba(112, 96, 247, 0.2) 0px 0px 0px 4px;
    cursor: pointer;
    transition: box-shadow 0.15s;
}
    input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: rgba(112, 96, 247, 0.3) 0px 0px 0px 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: black;
    margin-top: 8px;
}

.genre-select {
    padding: 12px 18px;
}

.genre-select:
    focus {
    border-color: var(--orange);
}

.genre-select
    option {
    background: rgb(28, 35, 56);
}

.results-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 50px;
}

.revenue-card {
    background: #a12567;
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.revenue-card::
    before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.revenue-card::
    after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.rev-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.rev-label
    svg {
    width: 16px;
    height: 16px;
}

.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.rev-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid rgb(202, 202, 202);
    padding: 1.19rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.2s;
    border-radius: 16px;
}

.stat-card:
    hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-icon {
    font-size: 25px;
    align-items: center;
    background-color: #a12567;
    display: inline-block;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 6px;
    color: white !important;
}

.stat-icon
    svg {
    width: 18px;
    height: 18px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    transition: 0.3s;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    padding: 0px 0.5rem;
}
    @keyframes countUp {
    0% {
        opacity: 0.4;
    transform: translateY(4px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.animating {
    animation: 0.3s ease 0s 1 normal forwards running countUp;
}
    section.calc-wrapper {
    margin-bottom: 100px;
}

.manuscript-success-right .number-box {
    min-height: auto;
    padding: 30px;
}

.manuscript-success-right .number-box
    h3 {
    font-size: 40px;
}

.manuscript-success-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manuscript-success-right {
    border: 1px solid rgb(202, 202, 202);
    border-radius: 0px 24px 24px 0px;
    padding: 30px;
}

.manuscript-success-head
    p {
    font-size: 22px;
    font-weight: 400;
}

.manuscript-success-head
    h6 {
    font-size: 23px;
}

.manuscript-success-head
    span {
    background-color: rgb(255, 251, 239);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(180, 83, 9);
}

.manuscript-success-head
    span i {
    color: rgb(245, 158, 11);
}

.manuscript-success-left {
    background: #a12567;
    border-radius: 24px 0px 0px 24px;
    overflow: hidden;
    padding: 41px 30px;
    color: white;
}

.manuscript-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.manuscript-user
    img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 16px;
}

.manuscript-user
    p {
    margin: 0px;
    font-size: 16px;
    color: rgb(229, 229, 229);
}

.manuscript-user
    h6 {
    margin-bottom: 5px;
    font-size: 20px;
}

.manuscript-success-left >
    p {
    font-size: 16px;
    margin-bottom: 35px;
}

.process-right.production-included {
    margin-bottom: 25px;
}

.manuscript-success-left
    ul {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 25px 30px;
    border-radius: 24px;
    margin-top: 29px;
    margin-bottom: 0px;
}

.manuscript-success-left
    ul li {
    border-bottom: 1px solid rgb(229, 229, 229);
    margin-bottom: 20px;
}

.manuscript-success-left
    ul li:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.manuscript-success-left
    ul li h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.manuscript-success-left
    ul li:last-child p {
    margin: 0px;
}

.manuscript-success-box {
    margin-top: 40px;
}

.slick-dots
    li {
    width: 30px;
    height: 10px;
}

.slick-dots
    li button {
    background-color: rgb(226, 232, 240);
    border-radius: 50px;
    width: 100%;
    height: 100%;
}

.slick-dots
    li button::before {
    background-color: rgb(168, 170, 173);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    content: "";
}

.slick-dots
    li.slick-active button::before {
    opacity: 1;
    background-color: rgb(112, 96, 247);
}
    ul.slick-dots {
    position: static;
    margin-top: 20px;
}

.pre-box {
    background-color: rgb(248, 239, 255);
    border-radius: 16px;
    padding: 30px;
}

.pre-box
    ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box
    ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid rgb(112, 96, 247);
}
    section.manuscript-success {
    padding-bottom: 20px;
}
    section.launch-strategy {
    background-image: url("../img/number-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
}
    section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}
    section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}
    section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgb(112, 96, 247);
    margin-top: 30px;
}

.pro-tip
    h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip
    p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right
    ul li strong {
    background-color: rgb(112, 96, 247);
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right
    ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right
    ul {
    margin-top: 35px;
}
    section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid rgb(112, 96, 247);
    font-size: 15px;
}

.nav.nav-tabs
    button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:
    hover {
    background: rgb(161 37 103);    color: white;
}

.option-box
    input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(
    input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box
    span {
    display: block;
    font-size: 13px;
}
    div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}
    section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box
    a {
    display: block;
}

.cta-box
    a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table
    thead tr th {
    width: 10%;
}

.direct-table
    thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table
    tr {
    text-align: center;
}

.direct-table
    tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table
    tbody tr td {
    padding: 13px;
}
    section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:
    hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    transform: translateY(-30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}
    @keyframes fadeInUp {
    0% {
        opacity: 0;
    transform: translateY(30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}
    @media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
    padding: 30px;
    }

    .metric-value {
    font-size: 2.8rem;
    }

    .flip-card-wrapper {
    height: 350px;
    }
}
    @media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
    font-size: 0.95rem;
    }

    .flip-card-wrapper {
    height: 320px;
    }

    .flip-card-front, .flip-card-back {
    padding: 25px;
    }

    .metric-value {
    font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
    font-size: 0.9rem;
    }
}
    section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right
    p {
    width: 100%;
}
    section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}
    section.type .tab-pane {
    padding: 0px !important;
}
    section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa
    th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa
    th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa
    th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa
    th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    background: url("../img/podcast-bg.png");
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label
    span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs
    button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs
    button i {
    display: none;
}

.platform-tabs .nav.nav-tabs
    button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs
    button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs
    button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header
    h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header
    p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item
    strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}
    li.plat-rank-item strong {
    background: rgb(161 37 103);}
    li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}
    section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading
    h2 {
    color: white;
}

.counter-content.section-heading
    p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}
    section.expertise.terms-conditions h2 {
    font-weight: 500;
}
    img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer
    p {
    color: white;
    margin-top: 1rem;
}
    p.model-header {
    font-size: 35px;
    font-weight: 600;
}
    p.serv-header {
    font-size: 20px;
    font-weight: 500;
}
    p.manu-h3 {
    font-size: 2rem;
    color: white;
}
    section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}
    p.cta-p {
    font-size: 35px;
    line-height: 40px;
}
    p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}
    p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}
    p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}
    p.review-name {
    font-size: 2rem;
    color: #a12567;
    font-weight: 700;
}
    div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}
    div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}
    section.banner.home-banner .banner-content {
    margin-top: 5rem;
}
    p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}
    p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta
    p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}
    section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}
    p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}
    p.launch-h5 + p {
    margin: 5px 0px 20px;
}
    section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}
    p.sub-title-span {
    background-color: #a12567;
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}
    p.steps {
    color: #a12567;
    font-weight: 600;
}
    h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}
    h3.h3-proccess span {
    color: #a12567;
    font-weight: bold;
}
    p.fic-para {
    color: white;
    padding: 1rem;
    background: #a12567;
    border-radius: 30px;
    margin-top: 1rem;
}
    section.cta-no-index {
    z-index: 1 !important;
}
    p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(161 37 103);
}
    p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card
    p {
    font-size: 26px;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}
    p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}
    p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
    p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}
    p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}
    h3.our-process {
    font-size: 18px;
    font-weight: 500;
}
    section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}
    h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}
    h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}
    p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
    p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}
    p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
    p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    header.sticky img {
    filter: none;
    width: 220px;
}
    header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}
    header.sticky .btn-header {
    background: black;
    color: white;
}
    section.experience-image-box {
    position: relative;
    z-index: 2;
}
    div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
    background-color: #a12567;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}
    section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}
    section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}
    section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}
    div#quoteModal .contact-form {
    background: transparent;
}
    div#quoteModal .form-group * {
    border: 1px solid #a12567;
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}
    section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box
    h3 {
    font-size: 22px;
}
    section.protection.inner-protection .number-box {
    min-height: 234px;
}
    section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
    img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}
    form.form_submission .success {
    padding: 0px;
}
    label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow
    i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a img {
    border-radius: 10px;
}

.content-block .post-thumbnail
    a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item
    span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item
    span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}
    ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
    ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}
    ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}
    ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}
    ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:
    hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:
    hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail
    a {
    border-radius: 100%;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:
    hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail
    a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail
    a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}
    ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}
    ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}
    ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}
    div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}
    div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail
    img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper
    span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content
    ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content
    ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details
    figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details
    p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details
    figure img {
    border-radius: 10px;
}

.axil-post-details
    p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud
    a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like
    a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like
    a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like
    a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}
    ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-icon li {
    margin: 5px;
}
    ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}
    ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details
    h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail
    a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}
    p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories
    ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories
    ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group
    input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}
    newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}
    p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget
    input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit
    button.axil-button {
    width: auto;
}
    a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}
    ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}
    section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs
    button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs
    button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs
    button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::
    before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text
    ul li p {
    margin: 0px;
}

.content-block-text
    ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text
    ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text
    ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}
    p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::
    after {
    border-radius: 0px;
}

.post-thumbnail::
    after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge
    i {
    color: rgb(255, 204, 0);
}

.illus-hero
    h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero
    h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero
    p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars
    img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars
    img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars
    i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags
    span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active
    h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags
    span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag
    p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:
    hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete
    i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading
    h2 .muted {}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item
    h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item
    p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials
    h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars
    i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author
    img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author
    h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author
    p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card
    ul {
    margin: 0px 0px 28px;
}

.pricing-card
    ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card
    ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row
    span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row
    p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box
    h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box
    h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card
    h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}
    @media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    }

    .illus-hero-shape {
    display: none;
    }

    .illus-stats {
    padding: 50px 0px;
    }

    .illus-stats .stat-item {
    margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
    font-size: 36px;
    }

    .get-started {
    padding: 50px 0px;
    }

    .quote-form-card {
    padding: 24px;
    margin-top: 30px;
    }
}
    @media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
    font-size: 38px;
    }
}

.post-author-avatar.border-rounded
    img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:
    hover {}

.works-card:
    hover * {
    color: white;
}

.works-card:
    hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}
    p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
    p.mb-4.model-header.text-left {}
    div#quoteModal {}
    div#quoteModal p {font-size: 25px;
    color: #fff;}
    span.top-modal {}
    p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service
    img {border-radius: 25px;
    width: 100%;}
    figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}
    figure.resource-img {
    margin: 0;
}

.resource-content
    h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content
    p {
    font-size: 15px;
    margin-bottom: 1rem;
}.makes-left .section-heading
    p.sub-title-span {
    color: white !important;
}
    section.ready-section {
    padding: 5rem 0;
    background: rgb(25, 0, 81);
}
.support-writer {}

.support-writer {
    padding: 5rem 0 !important;
}
.ny-bg-sec::
    after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a9c;
}
.ny-case-step {
    border-bottom: 1px solid;
};
}

.pre-box
    ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.pre-box
    ul li {
    background-color: white;
    border-radius: 50px;
    font-size: 13px;
    padding: 6px 17px;
}

.production-included {
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    border: 1px solid #a12567;
    background-color: rgba(161, 37, 103, 0.10);
}
    section.manuscript-success {
    padding-bottom: 20px;
}
    section.launch-strategy {
    /* background-image: url("../img/number-bg.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-position: center bottom;
    background-color: rgba(161, 37, 103, 0.10);
}
    section.process.launch-strategy .tab-content > .tab-pane {
    background-color: white;
    background-image: none;
}
    section.process.launch-strategy .process-heading h2 span {
    display: inline-block;
}
    section.process.launch-strategy .process-heading h2 {
    font-size: 50px;
}

.pro-tip {
    background-color: rgba(235, 226, 254, 0.47);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #a12567;
    margin-top: 30px;
    background-color: rgba(161, 37, 103, 0.10);
}

.pro-tip
    h6 {
    margin-bottom: 0px;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
}

.pro-tip
    p {
    font-size: 16px;
    margin-top: 8px;
}

.process-right.launch-strategy-right
    ul li strong {
    background-color: #a12567;
    color: white;
    width: 25px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.process-right.launch-strategy-right
    ul li {
    margin: 25px 0px;
}

.process-right.launch-strategy-right
    ul {
    margin-top: 35px;
}
    section.process.launch-strategy .nav.nav-tabs button span strong {
    display: block;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgb(51, 65, 85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.step.active {
    background: orange;
}

.option-box {
    display: block;
    background: white;
    padding: 12px 12px 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    font-weight: 400;
    border: 1px solid #a12567;
    font-size: 15px;
}

.nav.nav-tabs
    button i {
    left: 0px;
    right: 0px;
    margin: 0px auto;
}

.option-box:
    hover {
    background: rgb(161 37 103);    color: white;
}

.option-box
    input:checked + * {
    color: rgb(255, 255, 255);
}

.option-box:has(
    input:checked) {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.option-box
    span {
    display: block;
    font-size: 13px;
}
    div#details .form-control {
    border-radius: 50px;
    padding: 12px;
    margin-top: 5px;
}
    section.personalized-quote {
    margin-bottom: 120px;
}

.cta-box
    a {
    display: block;
}

.cta-box
    a h3 {
    color: black;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.ebook-author-identity {
    margin: 80px 0px;
    padding-bottom: 0px !important;
}

.direct-table
    thead tr th {
    width: 10%;
}

.direct-table
    thead tr, .direct-table td {
    font-size: 14px;
}

.direct-table
    tr {
    text-align: center;
}

.direct-table
    tbody tr td:first-child {
    text-align: left;
    padding: 12px 21px;
}

.direct-table
    tbody tr td {
    padding: 13px;
}
    section.distribution-strategy {
    margin: 80px 0px;
}

.direct-table {
    margin-top: 30px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 400px;
    margin-top: 30px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:
    hover {
    transform: rotateY(180deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    align-items: revert;
    justify-content: center;
}

.flip-card-front {
    background: rgb(250, 250, 250);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.flip-card-front.business-author {
    background: rgb(161 37 103);    border: 1px solid rgba(26, 45, 77, 0.1);
}

.flip-card-front.established-expert {
    background: linear-gradient(135deg, rgb(245, 240, 255) 0%, rgb(250, 248, 253) 100%);
    border: 1px solid rgba(85, 77, 128, 0.1);
}

.flip-card-front.series-author {
    background: linear-gradient(135deg, rgb(240, 248, 245) 0%, rgb(248, 250, 252) 100%);
    border: 1px solid rgba(26, 77, 45, 0.1);
}

.card-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-label.business {
    color: rgb(26, 45, 77);
}

.card-label.first-time {
    color: rgb(212, 165, 116);
}

.card-label.expert {
    color: rgb(85, 77, 128);
}

.card-label.series {
    color: rgb(26, 77, 46);
}

.challenge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(26, 45, 77);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.challenge-text {
    font-size: 15px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.metric-value.blue {
    background: linear-gradient(135deg, rgb(26, 45, 77) 0%, rgb(42, 77, 125) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-value.purple {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%) text;
}

.metric-value.green {
    background: linear-gradient(135deg, rgb(26, 77, 46) 0%, rgb(42, 109, 69) 100%) text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    width: 100%;
}

.hover-hint {
    font-size: 0.8rem;
    color: black;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-back {
    background: linear-gradient(137deg, rgb(112, 96, 247) 0%, rgb(177, 168, 232) 50%, rgb(168, 144, 255) 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 40px;
}

.back-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.back-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5px;
}

.back-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.back-outcome {
    background: white;
    border-left: 3px solid rgb(112, 96, 247);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgb(141, 133, 215);
    font-weight: 500;
}
    @keyframes fadeInDown {
    0% {
        opacity: 0;
    transform: translateY(-30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}
    @keyframes fadeInUp {
    0% {
        opacity: 0;
    transform: translateY(30px);
    }

    100% {
    opacity: 1;
    transform: translateY(0px);
    }
}

.flip-card-wrapper {
    animation: 0.8s ease-out 0s 1 normal none running fadeInUp;
}

.flip-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.flip-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.flip-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.flip-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}
    @media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }

    .flip-card-front, .flip-card-back {
    padding: 30px;
    }

    .metric-value {
    font-size: 2.8rem;
    }

    .flip-card-wrapper {
    height: 350px;
    }
}
    @media (max-width: 576px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
    font-size: 0.95rem;
    }

    .flip-card-wrapper {
    height: 320px;
    }

    .flip-card-front, .flip-card-back {
    padding: 25px;
    }

    .metric-value {
    font-size: 2.2rem;
    }

    .challenge-title, .challenge-text {
    font-size: 0.9rem;
    }
}
    section.author-outcomes {
    margin-bottom: 80px;
}

.security-box.security-box-1 {
    border: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.security-box.security-box-1 .security-right
    p {
    width: 100%;
}
    section.type .tab-pane {
    background: transparent;
    box-shadow: none;
}
    section.type .tab-pane {
    padding: 0px !important;
}
    section.type .nav-tabs {
    margin-top: -50px;
}

.table-style-usa
    th {
    background: rgb(161 37 103);    color: white;
    padding: 1rem 0px;
}

.table-style-usa
    th:first-child {
    border-top-left-radius: 20px;
}

.table-style-usa
    th:last-child {
    border-top-right-radius: 20px;
}

.table-style-usa
    th {
    border: 0px;
}

.flip-card-front.business-author * {
    color: white;
}

.metric-value {
    font-size: 38px;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
}

.card-metric .metric-value {
    background: linear-gradient(135deg, rgb(112, 96, 247) 0%, rgb(112, 96, 247) 100%);
}

.card-metric .metric-value.purple {
    background: linear-gradient(135deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
    -webkit-text-fill-color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back {
    background: url("../img/podcast-bg.png");
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label
    span {
    background: rgb(161 37 103);    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(112, 96, 247);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: rgba(112, 96, 247, 0.46);
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs
    button {
    background: rgb(255, 255, 255);
    color: rgb(112, 96, 247);
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid rgba(112, 96, 247, 0.33) !important;
}

.platform-tabs .nav.nav-tabs
    button i {
    display: none;
}

.platform-tabs .nav.nav-tabs
    button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(112, 96, 247);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs
    button.active {
    background: rgb(112, 96, 247) !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(112, 96, 247) !important;
}

.platform-tabs .nav.nav-tabs
    button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header
    h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header
    p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item
    strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: rgb(112, 96, 247) !important;
}

.plat-header * {
    color: white !important;
}
    li.plat-rank-item strong {
    background: rgb(161 37 103);}
    li.plat-price-item span {
    background: rgb(161 37 103);}

.platform-tabs {
    margin-top: 1.5rem;
}
    section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading
    h2 {
    color: white;
}

.counter-content.section-heading
    p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}
    section.expertise.terms-conditions h2 {
    font-weight: 500;
}
    img.footer-logo {
    filter: invert(1) brightness(10);
    width: 125px;
}

.menu-list.footer
    p {
    color: white;
    margin-top: 1rem;
}
    p.model-header {
    font-size: 35px;
    font-weight: 600;
}
    p.serv-header {
    font-size: 20px;
    font-weight: 500;
}
    p.manu-h3 {
    font-size: 2rem;
    color: white;
}
    section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}
    p.cta-p {
    font-size: 35px;
    line-height: 40px;
}
    p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}
    p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}
    p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}
    p.review-name {
    font-size: 2rem;
    color: #a12567;
    font-weight: 700;
}
    div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}
    div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}
    section.banner.home-banner .banner-content {
    margin-top: 5rem;
}
    p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}
    p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta
    p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}
    section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}
    p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}
    p.launch-h5 + p {
    margin: 5px 0px 20px;
}
    section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}
    p.sub-title-span {
    background-color: #a12567;
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}
    p.steps {
    color: #a12567;
    font-weight: 600;
}
    h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}
    h3.h3-proccess span {
    color: #a12567;
    font-weight: bold;
}
    p.fic-para {
    color: white;
    padding: 1rem;
    background: #a12567;
    border-radius: 30px;
    margin-top: 1rem;
}
    section.cta-no-index {
    z-index: 1 !important;
}
    p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(161 37 103);
}
    p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card
    p {
    font-size: 26px;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
    p.manu-title-sm {
    font-size: 20px;
    color: white;
}
    p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}
    p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}
    p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}
    p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}
    p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}
    h3.our-process {
    font-size: 18px;
    font-weight: 500;
}
    section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}
    h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}
    h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(112, 96, 247);
    margin-bottom: 20px;
}
    p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}
    p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}
    p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
    p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}
    header.sticky img {
    filter: none;
    width: 220px;
}
    header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}
    header.sticky .btn-header {
    background: black;
    color: white;
}
    section.experience-image-box {
    position: relative;
    z-index: 2;
}
    div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
    background-color: #a12567;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}
    section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}
    section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}
    section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}
    div#quoteModal .contact-form {
    background: transparent;
}
    div#quoteModal .form-group * {
    border: 1px solid #a12567;
    background: rgb(255, 255, 255);
}

.contact-form.mobile-contact-form {
    display: none;
}
    section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box
    h3 {
    font-size: 22px;
}
    section.protection.inner-protection .number-box {
    min-height: 234px;
}
    section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader
    img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}
    form.form_submission .success {
    padding: 0px;
}
    label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow
    i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail
    a img {
    border-radius: 10px;
}

.content-block .post-thumbnail
    a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item
    span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item
    span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item
    span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}
    ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
    ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}
    ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}
    ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}
    ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:
    hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:
    hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title
    a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:
    hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded
    img {
    border-radius: 100%;
}

.post-meta .post-author-avatar
    img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail
    a {
    border-radius: 100%;
}

.content-block .post-thumbnail
    a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:
    hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail
    a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail
    a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}
    ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}
    ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}
    ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}
    ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}
    div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}
    div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail
    img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list
    a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper
    span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list
    a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content
    ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content
    ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details
    figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details
    p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details
    p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details
    h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details
    figure img {
    border-radius: 10px;
}

.axil-post-details
    p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud
    a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like
    a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like
    a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like
    a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}
    ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}
    ul.social-icon li {
    margin: 5px;
}
    ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}
    ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details
    h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail
    a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}
    p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories
    ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories
    ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories
    ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group
    input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}
    newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}
    p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget
    input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit
    button.axil-button {
    width: auto;
}
    a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}
    ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}
    section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs
    button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs
    button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs
    button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::
    before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text
    ul li p {
    margin: 0px;
}

.content-block-text
    ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text
    ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text
    ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}
    p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::
    after {
    border-radius: 0px;
}

.post-thumbnail::
    after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(rgb(112, 96, 247) 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: rgb(112, 96, 247);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge
    i {
    color: rgb(255, 204, 0);
}

.illus-hero
    h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero
    h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero
    p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars
    img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars
    img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars
    i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags
    span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25, 0, 81);
    border-color: rgb(25, 0, 81);
}

.style-selector-list .style-opt.active
    h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags
    span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag
    p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:
    hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: rgb(112, 96, 247) !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card
    h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(112, 96, 247);
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(112, 96, 247, 0.1);
    border: 1px solid rgba(112, 96, 247, 0.3);
    color: rgb(112 107 248);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete
    i {
    color: rgb(112, 96, 247);
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card
    h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading
    h2 .muted {}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item
    h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item
    p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials
    h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars
    i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author
    img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author
    h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author
    p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card
    ul {
    margin: 0px 0px 28px;
}

.pricing-card
    ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card
    ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row
    span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row
    p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box
    h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box
    h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box
    p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card
    h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}
    @media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
    }

    .illus-hero-shape {
    display: none;
    }

    .illus-stats {
    padding: 50px 0px;
    }

    .illus-stats .stat-item {
    margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
    font-size: 36px;
    }

    .get-started {
    padding: 50px 0px;
    }

    .quote-form-card {
    padding: 24px;
    margin-top: 30px;
    }
}
    @media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
    font-size: 38px;
    }
}

.post-author-avatar.border-rounded
    img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:
    hover {}

.works-card:
    hover * {
    color: white;
}

.works-card:
    hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}
    p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
    p.mb-4.model-header.text-left {}
    div#quoteModal {}
    div#quoteModal p {font-size: 25px;
    color: #fff;}
    span.top-modal {}
    p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service
    img {border-radius: 25px;
    width: 100%;}
    figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}
    figure.resource-img {
    margin: 0;
}

.resource-content
    h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content
    p {
    font-size: 15px;
    margin-bottom: 1rem;
}.makes-left .section-heading
    p.sub-title-span {
    color: white !important;
}
    section.ready-section {
    padding: 5rem 0;
    background: rgb(25, 0, 81);
}
.support-writer {}

.support-writer {
    padding: 5rem 0 !important;
}
.ny-bg-sec::
    after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a9c;
}
.ny-case-step {
    border-bottom: 1px solid;
};
}

.flip-card.b-hover .flip-card-back * {
    color: black;
}

.flip-card.b-hover .back-label span {
    background: rgb(161 37 103);
    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.flip-card.b-hover .back-title {
    color: rgb(161 37 103);
}

.flip-card.b-hover .flip-card-back .back-outcome {
    background: #a1256782;
    color: white;
}

.flip-card.b-hover .flip-card-back .back-outcome * {
    color: white;
}

.platform-tabs .nav.nav-tabs {
    gap: 12px;
    margin-top: 0px;
}

.platform-tabs .nav.nav-tabs button {
    background: rgb(255, 255, 255);
    color: #a12567;
    font-size: 14px;
    font-weight: 500;
    position: static;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    border: 1.5px solid #a12567 !important;
}

.platform-tabs .nav.nav-tabs button i {
    display: none;
}

.platform-tabs .nav.nav-tabs button span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
    color: rgb(161 37 103);
    text-transform: none;
}

.platform-tabs .nav.nav-tabs button.active {
    background: #a12567 !important;
    color: rgb(255, 255, 255) !important;
    border-color: #a12567 !important;
}

.platform-tabs .nav.nav-tabs button.active span {
    color: rgb(255, 255, 255);
}

.platform-tabs .tab-content > .tab-pane {
    overflow: hidden;
    border: 1.5px solid rgb(226, 226, 226);
    padding: 0px !important;
    background: none transparent !important;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.platform-tabs .tab-content {
    margin-top: 20px;
}

.plat-header {
    padding: 1.5rem 2rem 1.25rem;
}

.plat-header h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.plat-header p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px;
    color: rgb(68, 68, 68);
}

.plat-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgb(255, 255, 255);
    border-top: 1.5px solid rgb(226, 226, 226);
}

.plat-col {
    padding: 1.5rem;
}

.plat-col + .plat-col {
    border-left: 1px solid rgb(226, 226, 226);
}

.plat-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.plat-char {
    margin-bottom: 1rem;
}

.plat-char .c-lbl {
    font-size: 12px;
    color: rgb(136, 136, 136);
    margin-bottom: 2px;
}

.plat-char .c-val {
    font-size: 14px;
    font-weight: 600;
    color: rgb(26, 26, 26);
}

.plat-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-rank-item strong {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    flex: 0 0 24px;
}

.plat-price-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    font-size: 14px;
    color: rgb(51, 51, 51);
    list-style: none;
}

.plat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex: 0 0 7px;
    margin-top: 5px;
    display: inline-block;
}

.kdp-hdr {
    background: rgb(254, 248, 236);
}

.kdp-acc {
    background: rgb(232, 160, 32);
}

.kdp-dot-c {
    background: rgb(232, 160, 32);
}

.apple-hdr {
    background: rgb(232, 241, 251);
}

.apple-acc {
    background: rgb(59, 130, 196);
}

.apple-dot-c {
    background: rgb(59, 130, 196);
}

.google-hdr {
    background: rgb(232, 245, 236);
}

.google-acc {
    background: rgb(47, 158, 90);
}

.google-dot-c {
    background: rgb(47, 158, 90);
}

.kobo-hdr {
    background: rgb(253, 238, 240);
}

.kobo-acc {
    background: rgb(217, 64, 96);
}

.kobo-dot-c {
    background: rgb(217, 64, 96);
}

.plat-header {
    color: white;
    background: #a12567 !important;
}

.plat-header * {
    color: white !important;
}

li.plat-rank-item strong {
    background: rgb(161 37 103);
}

li.plat-price-item span {
    background: rgb(161 37 103);
}

.platform-tabs {
    margin-top: 1.5rem;
}

section.cta {
    position: relative;
    z-index: 1;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.check-flex .form-check {
    flex: 0 0 50%;
}

.counter-content.section-heading {
    text-align: center;
}

.counter-content.section-heading h2 {
    color: white;
}

.counter-content.section-heading p {
    width: 50%;
    margin: 0px auto;
    color: white;
}

.counter-content.section-heading {
    margin-bottom: 2rem;
}

section.expertise.terms-conditions h2 {
    font-weight: 500;
}

img.footer-logo {
    filter: invert(1) brightness(10);
    width: 240px;
}

.menu-list.footer p {
    color: white;
    margin-top: 1rem;
}

p.model-header {
    font-size: 35px;
    font-weight: 600;
}

p.serv-header {
    font-size: 20px;
    font-weight: 500;
}

p.manu-h3 {
    font-size: 2rem;
    color: white;
}

section.type .tab-pane h3 {
    font-size: 44px;
    color: rgb(111, 95, 245);
}

p.cta-p {
    font-size: 35px;
    line-height: 40px;
}

p.cta {
    font-size: 35px;
    line-height: 42px;
    font-weight: 400;
    flex: 0 0 30%;
    margin: 0px;
}

p.co-h6 {
    font-weight: bold;
    font-size: 40px;
}

p.ratings-para {
    color: rgb(0, 0, 0);
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 22px;
    margin-top: 10px;
}

p.review-name {
    font-size: 2rem;
    color: #a12567;
    font-weight: 700;
}

div#navbarSupportedContent .nav-item a {
    font-size: 19px;
}

div#navbarSupportedContent .navbar-nav {
    gap: 40px;
}

section.banner.home-banner .banner-content {
    margin-top: 5rem;
}

p.self-publishing-form {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 11px;
}

p.form-check-heading {
    font-size: 22px;
    font-weight: 600;
}

.inner-cta {
    z-index: 1 !important;
}

.inner-cta p.header {
    line-height: 32px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    color: white;
}

section.cta-launch.cta-launch-inner-sec .cta-launch-box {
    display: block;
}

p.launch-h5 {
    font-size: 35px;
    font-weight: 400;
}

p.launch-h5 + p {
    margin: 5px 0px 20px;
}

section.cta-launch.cta-launch-inner-sec::before {
    height: 235px;
}

p.sub-title-span {
    background-color: #a12567;
    border-radius: 50px;
    padding: 2px 20px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.develp-telme-tab .process-heading {
    text-align: left;
}

p.steps {
    color: #a12567;
    font-weight: 600;
}

h3.h3-proccess {
    font-size: 40px;
    font-weight: 400;
}

h3.h3-proccess span {
    color: #a12567;
    font-weight: bold;
}

p.fic-para {
    color: white;
    padding: 1rem;
    background: #a12567;
    border-radius: 30px;
    margin-top: 1rem;
}

section.cta-no-index {
    z-index: 1 !important;
}

p.adv {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(161 37 103);
}

p.face-audio {
    margin-bottom: 1rem;
    font-weight: 600;
}

.input-card p {
    font-size: 26px;
}

p.manu-title-sm {
    font-size: 20px;
    color: white;
}

p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

p.manu-title-sm {
    font-size: 20px;
    color: white;
}

p.manu-title-xs {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.manuscript-user .manu-title-lg {
    font-size: 40px;
}

.sticky-right {
    position: sticky;
    top: 100px;
}

p.manu-title-lg {
    font-size: 40px;
    color: black;
    font-weight: 600;
    margin: 1.5rem 0px;
}

p.pro-tip {
    background: 0px center;
    padding: 0px;
    border: 0px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}


p.design-p {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
}

p.process-right-heading {
    font-size: 25px;
    font-weight: 600;
}

h3.our-process {
    font-size: 18px;
    font-weight: 500;
}

section.process.launch-strategy {
    font-size: 14px;
    margin: 0px;
}

h3.genre-lower-h3 {
    font-size: 1.5rem;
    letter-spacing: -2px;
}

h3.before-after {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -2px;
    color: rgb(161 37 103);
    margin-bottom: 20px;
}

p.series-box {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

p.experties-number {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -2px;
}

p.genre {
    position: absolute;
    right: 20px;
    background-color: white;
    padding: 7px 12px;
    border-radius: 50px;
    margin: 0px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

p.genre span {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    display: inline-block;
}

header.sticky img {
    filter: none;
    width: 220px;
}

header.sticky a.nav-link {
    color: rgb(161 37 103) !important;
}

header.sticky .btn-header {
    background: black;
    color: white;
}

section.experience-image-box {
    position: relative;
    z-index: 2;
}

div#quoteModal .modal-content {
    /* background: url("../img/number-bg.png") 0% 0% / 100% 100% white; */
    border-radius: 37px;
    background-color: #a12567;
}

.cta-wrapper .section-heading {
    flex: 0 0 75%;
}

section.cta-launch.cta-launch-inner-sec.middle-cta-launch {
    margin-top: 100px;
}

section.cta-launch.cta-launch-inner-sec p.launch-h5 {
    font-size: 25px;
}

section.cta-launch.cta-launch-inner-sec {
    padding-top: 0px;
}

.service-banner .banner-content {
    margin: 0px !important;
}

div#quoteModal .contact-form {
    background: transparent;
}

div#quoteModal .form-group * {
    border: 1px solid #a12567;
    background: rgb(255, 255, 255);
    padding-left: 25px;
    font-size: 16px;
}

.contact-form.mobile-contact-form {
    display: none;
}

section.templates {
    padding-top: 80px;
}

.inner-protection.protection .number-box h3 {
    font-size: 22px;
}

section.protection.inner-protection .number-box {
    min-height: 234px;
}

section.type ul li {
    flex: 0 0 13%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader img {
    width: 40px;
}

.loader {
    text-align: center;
    margin-top: 15px;
    display: none;
}

form.form_submission .success {
    padding: 0px;
}

label.error {
    display: none !important;
}

.error {
    color: rgb(132, 32, 41);
    background-color: rgb(248, 215, 218) !important;
    border-color: rgb(245, 194, 199) !important;
}

.slider-style-1 .slider-activation {
    position: relative;
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow {
    position: absolute;
    left: 105px;
    bottom: 43px;
}

.axil-slick-arrow .slide-arrow {
    outline: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgb(135, 135, 135);
    border-radius: 100%;
    z-index: 2;
}

.axil-slick-arrow .slide-arrow i {
    color: rgb(101, 103, 107);
}

.axil-slide.slider-style-1 .content-block {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 3px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail {
    position: relative;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail a {
    border-radius: 0px 0px 10px 10px;
}

.content-block .post-thumbnail a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.axil-slide.slider-style-1 .content-block .post-thumbnail a img {
    border-radius: 10px;
}

.content-block .post-thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axil-slide.slider-style-1 .content-block .post-content {
    position: absolute;
    background: rgb(255, 255, 255);
    width: 570px;
    padding: 40px 58px 40px 42px;
    border-radius: 10px;
    right: 100px;
    bottom: 0px;
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

.axil-slide.slider-style-1 .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white !important;
}

.hover-flip-item span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item span::before {
    top: 0px;
    transform: skewY(0deg);
    transform-origin: right bottom;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item span::after {
    top: 105%;
    transform: skewY(7deg);
    transform-origin: left top;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.post-content .post-cat .post-cat-list a.hover-flip-item-wrapper span::after {
    color: rgb(56, 88, 246);
}

.hover-flip-item span::after, .hover-flip-item span::before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: rgb(112, 96, 247);
}

.axil-slide.slider-style-1 .content-block .post-content .title {
    margin-bottom: 0px;
    font-size: 36px;
    line-height: 1.23;
}

.content-block .post-content .title a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
    text-decoration: none;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper {
    margin-top: 34px;
}

.post-meta-wrapper {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded img {
    border-radius: 100%;
}

.post-meta .post-author-avatar img {
    width: 100%;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.hover-flip-item-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
}

.hover-flip-item-wrapper {
    opacity: 1;
    text-align: left;
}

ul.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

ul.post-meta-list li {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    margin: 8px;
    position: relative;
}

ul.post-meta-list li::after {
    right: -10px;
    position: absolute;
    background: white;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: "";
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .social-share-transparent {
    margin-right: 58px;
}

ul.social-share-transparent {
    margin: 0px -5px;
    display: flex;
    flex-wrap: wrap;
}

ul.social-share-transparent li {
    margin: 0px 5px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

ul.social-share-transparent li a {
    color: rgb(96, 103, 112);
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.axil-slide.slider-style-1 .content-block .post-meta-wrapper.with-button .read-more-button {
    position: absolute;
    right: -40px;
    display: inline-block;
}

ul.post-meta-list li:last-child::after {
    display: none;
}

.content-block:hover .post-content .title a {
    background-size: 100% 2px;
}

.bg-color-grey {
    background: rgb(254, 254, 255);
}

.slider-style-1 .slider-activation.axil-slick-arrow .slide-arrow.next-arrow {
    left: 175px;
}

.axil-slick-arrow .slide-arrow:hover {
    background-color: rgb(112, 96, 247);
    border-color: rgb(112, 96, 247);
}

.axil-slick-arrow .slide-arrow:hover i {
    color: white;
}

.axil-section-gap {
    padding: 80px 0px;
}

.section-title .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.23;
}

.content-block.content-direction-column.is-active {
    background: rgb(236, 226, 255);
}

.content-block.post-horizontal {
    display: flex;
    border: 1px solid rgb(206, 208, 212);
    border-radius: 10px;
    padding: 35px 30px;
    -webkit-box-align: center;
    align-items: center;
}

.content-block.content-direction-column .post-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.content-block.post-horizontal .post-cat {
    margin-bottom: 22px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.post-content .post-cat .post-cat-list a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.content-block.post-horizontal .title {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.content-block .post-content .title a {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, currentcolor 0%, currentcolor 100%);
    background-size: 0px 2px;
    background-position: 0px 95%;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding: 0.1% 0px;
    background-repeat: no-repeat;
    color: inherit;
}

.content-block:hover .post-content .title a {
    background-size: 100% 2px;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.post-meta .post-author-avatar.border-rounded img {
    border-radius: 100%;
}

.post-meta .post-author-avatar img {
    width: 100%;
}

.content-block.post-horizontal .post-meta {
    margin-top: 48px;
}

.post-meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.post-meta .post-author-name {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.content-block.content-direction-column .post-thumbnail {
    min-width: 250px;
    overflow: hidden;
    transition: 0.5s;
}

.content-block .post-thumbnail {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.content-block.content-direction-column .post-thumbnail a {
    border-radius: 100%;
}

.content-block .post-thumbnail a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.content-block.content-direction-column:hover .post-thumbnail img {
    transform: scale(1.1);
}

.content-block.thumb-border-rounded .post-thumbnail a img {
    border-radius: 100%;
}

.content-block.content-direction-column .post-thumbnail a img {
    transition: 0.5s;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.bg-color-white {
    background: rgb(255, 255, 255);
}

ul.axil-tab-button {
    margin: -10px;
    border: 0px;
}

ul.axil-tab-button .nav-item {
    margin: 10px;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

ul.axil-tab-button .nav-item a.nav-link.active {
    border: 1px solid transparent;
    background-color: rgb(112, 96, 247);
    color: white !important;
}

ul.axil-tab-button .nav-item a.nav-link.active {
    box-shadow: rgba(37, 47, 63, 0.1) 0px 4px 10px;
}

ul.axil-tab-button .nav-item a.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    background: white;
    outline: none;
    border-radius: 50px;
    font-family: Inter, sans-serif;
    padding: 8px 24px;
    border: 1px solid rgb(112, 96, 247);
    color: rgb(112, 96, 247) !important;
}

.mt--20 {
    margin-top: 20px !important;
}

div#axilTabContent .tab-pane {
    background: none;
    padding: 0px;
    box-shadow: none;
}

div#axilTabContent .content-block.post-horizontal {
    margin-bottom: 25px;
}

.banner-single-post.post-formate.post-standard .content-block {
    position: relative;
}

.banner-single-post.post-formate.alignwide .content-block {
    margin-top: 5rem;
}

.content-block .post-thumbnail {
    position: relative;
}

.banner-single-post.post-formate .content-block .post-thumbnail img {
    border-radius: 50px;
    width: 100%;
}

.banner-single-post.post-formate.post-standard .post-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 80px 105px;
}

.banner-single-post.post-formate .content-block .post-content .post-cat {
    margin-bottom: 20px;
}

.post-content .post-cat .post-cat-list {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: -8px;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list a {
    color: rgb(240, 242, 245);
}

.post-content .post-cat .post-cat-list a {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    margin: 8px;
    position: relative;
    font-weight: 500;
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list a {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .title {
    color: white;
    padding-right: 10%;
    font-weight: 700;
    font-size: 44px;
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.banner-single-post.post-formate .content-block .post-content .post-meta-wrapper .post-meta {
    padding-bottom: 20px;
}

.post-meta .post-author-avatar.border-rounded {
    border-radius: 100%;
}

.post-meta .post-author-avatar {
    min-width: 50px;
    margin-right: 15px;
}

.banner-single-post.post-formate.post-standard .post-content .post-meta .post-author-name {
    color: rgb(255, 255, 255);
}

.banner-single-post.post-formate.post-standard .post-content .post-author-name .hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content .post-cat .post-cat-list a.hover-flip-item-wrapper span::before {
    color: rgb(240, 242, 245);
}

.banner-single-post.post-formate.post-standard .post-content ul.post-meta-list li {
    color: white;
}

.banner-single-post.post-formate.post-standard .post-content ul.social-share-transparent li a {
    color: rgb(206, 208, 212);
}

p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details figure {
    position: relative;
    margin: 1.867em 0px;
}

.axil-post-details figure figcaption {
    margin-top: 20px;
    color: rgb(0, 0, 0);
    font-size: 12px;
    line-height: 1.3;
}

.axil-post-details p {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-bottom: 1.54em;
}

.axil-post-details p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}

.axil-post-details h2 {
    font-weight: 600;
    font-size: 30px;
    color: rgb(0, 0, 0);
    margin-bottom: 0.75em;
    margin-top: 1.35em;
    line-height: 40px;
}

.axil-post-details figure img {
    border-radius: 10px;
}

.axil-post-details p a {
    color: rgb(112, 96, 247) !important;
}

.axil-post-details .tagcloud {
    margin-bottom: 40px;
}

.tagcloud {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

.tagcloud a {
    border: 1px solid rgb(206, 208, 212);
    font-size: 12px;
    color: rgb(101, 103, 107);
    height: 30px;
    padding: 0px 10px;
    margin: 5px;
    display: inline-block;
    line-height: 27px;
    border-radius: 4px;
    text-decoration: none;
}

.axil-post-details .social-share-block {
    border-bottom: 1px solid rgb(206, 208, 212);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.axil-post-details .social-share-block .post-like {
    padding-bottom: 20px;
}

.axil-post-details .social-share-block .post-like a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.axil-post-details .social-share-block .post-like a i {
    width: 40px;
    height: 40px;
    line-height: 37px;
    border: 1px solid rgb(206, 208, 212);
    color: rgb(101, 103, 107);
    border-radius: 100%;
    text-align: center;
    margin-right: 20px;
}

.axil-post-details .social-share-block .post-like a span {
    font-size: 12px;
    line-height: 16px;
    color: rgb(101, 103, 107);
}

.axil-post-details .social-share-block .social-icon {
    padding-bottom: 20px;
}

ul.social-icon {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
}

ul.social-icon li {
    margin: 5px;
}

ul.social-icon.icon-rounded-transparent li a {
    background: transparent;
    border: 1px solid rgb(206, 208, 212);
}

ul.social-icon.md-size li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

.axil-post-details h3 {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.14;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-author {
    padding: 40px 0px;
    border-bottom: 1px solid rgb(206, 208, 212);
}

.about-author .media {
    display: flex;
}

.about-author .thumbnail a img {
    border-radius: 100%;
    margin-right: 53px;
    margin-bottom: 20px;
}

.about-author .media-body {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.about-author .media-body .author-info .title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.about-author .media-body .author-info .subtitle {
    color: rgb(101, 103, 107);
    margin-top: 10px;
    display: block;
}

.b3 {
    font-size: 14px;
    line-height: 1.6;
}

.about-author .media-body .content .description {
    margin-top: 20px;
    margin-bottom: 0px;
}

p.b1 {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin: 0px 0px 40px;
}

.about-author .media-body .content .social-share-transparent {
    margin-top: 20px;
}

.axil-single-widget.widget_categories {
    background: transparent;
    padding: 0px;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.axil-single-widget.widget_categories ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.axil-single-widget.widget_categories ul li.cat-item {
    padding: 5px;
    margin: 0px;
    flex-basis: 50%;
    font-size: 18px;
    line-height: 1.67;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_categories ul li.cat-item .inner {
    display: flex;
    padding: 8px 0px 8px 15px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(112, 96, 247, 0.2) !important;
}

.axil-single-widget.widget_categories ul li.cat-item .inner .thumbnail {
    width: 50px;
    margin-right: 15px;
}

.axil-single-widget.widget_categories ul li.cat-item .inner .thumbnail img {
    width: 100%;
    border-radius: 100%;
}

.axil-single-widget.widget_categories ul li.cat-item .inner .content .title {
    margin-bottom: 0px;
    color: rgb(101, 103, 107);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
}

.axil-single-widget {
    background: rgb(251, 251, 253);
    padding: 30px;
    border-radius: 10px;
}

.axil-single-widget .widget-title {
    border-bottom: 1px solid rgb(206, 208, 212);
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.24;
    color: rgb(0, 0, 0);
}

.axil-single-widget.widget_search .axil-search.form-group {
    display: block;
}

.axil-search.form-group {
    position: relative;
    margin-bottom: 0px;
    text-align: right;
    display: inline-block;
}

.axil-search.form-group .search-button {
    position: absolute;
    display: inline-block;
    top: 51%;
    transform: translateY(-50%);
    width: auto;
    border: 0px;
    padding: 0px;
    left: 18px;
}

.axil-single-widget.widget_search .axil-search.form-group input {
    height: 40px;
    border: 0px;
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding-left: 44px;
    background: rgb(240, 242, 245);
    border-radius: 44px;
    color: rgb(101, 103, 107);
}

.content-block.post-medium {
    display: flex;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.content-block.post-medium .post-thumbnail {
    width: 100px;
    margin-right: 20px;
    min-width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.content-block.post-medium .post-content .title {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px !important;
}

newsletter-inner h4.title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: rgb(0, 0, 0);
}

p.b2 {
    font-size: 16px;
    line-height: 1.5;
}

.newsletter-inner .form-group {
    margin-bottom: 20px;
}

.axil-single-widget input {
    height: 40px;
    border-radius: 44px;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(101, 103, 107);
    padding: 0px 30px;
    background-color: rgb(240, 242, 245);
    border: 1px solid transparent;
}

.form-submit {
    display: inline-block;
}

.form-submit button.axil-button {
    width: auto;
}

a.axil-button.button-rounded, button.axil-button.button-rounded {
    border-radius: 500px;
}

ul.social-icon li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    background: rgb(240, 242, 245);
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgb(101, 103, 107);
}

section.type.type-inner ul li {
    display: block;
}

.process .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.process .nav.nav-tabs button {
    padding: 13px 22px;
}

.difference .nav.nav-tabs, .genre .nav.nav-tabs, .personalized-quote .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.difference .nav.nav-tabs button, .genre .nav.nav-tabs button, .personalized-quote button {
    padding: 13px 22px !important;
}

.author .author-slider-wrapper .nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author .author-slider-wrapper .nav.nav-tabs button {
    padding: 13px 22px !important;
}

.content-block .post-thumbnail::before {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.62);
    border-radius: 50px;
}

.content-block-text ul li p {
    margin: 0px;
}

.content-block-text ul li {
    position: relative;
    padding-left: 19px;
    line-height: 1.67;
    margin-bottom: 10px;
}

.content-block-text ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(112, 96, 247);
    border-radius: 50px;
    left: 0px;
    top: 11px;
}

.content-block-text ul {
    margin-bottom: 20px;
}

.sidebar-inner .sidebar-title {
    font-size: 14px;
    color: black;
    font-weight: 500;
    margin: 0px;
}

.sidebar-inner {
    position: sticky;
    top: 120px;
}

.blog-banner {
    padding-top: 160px;
}

p.never-miss {
    font-size: 20px;
    font-weight: 500;
}

.post-medium .post-thumbnail::after {
    border-radius: 0px;
}

.post-thumbnail::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.46);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.illus-hero {
    position: relative;
    overflow: hidden;
    padding: 220px 0px 90px;
    background-image: linear-gradient(#a12567 0%, rgba(112, 96, 247, 0.08) 100%);
}

.illus-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: #a12567;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.illus-hero .hero-badge i {
    color: #a12567;
}

.illus-hero h1 {
    color: rgb(255, 255, 255);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.illus-hero h1 .accent {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.illus-hero p.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.illus-hero .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.illus-hero .hero-avatars {
    display: flex;
}

.illus-hero .hero-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    object-fit: cover;
    margin-left: -12px;
}

.illus-hero .hero-avatars img:first-child {
    margin-left: 0px;
}

.illus-hero .hero-rating-text {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.illus-hero .hero-rating-text .stars i {
    color: rgb(255, 204, 0);
    font-size: 13px;
}

.illus-hero-shape {
    position: absolute;
    border-radius: 24px;
    opacity: 0.55;
}

.illus-hero-shape.s1 {
    width: 150px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    top: 60px;
    right: 8%;
    transform: rotate(-12deg);
}

.illus-hero-shape.s2 {
    width: 110px;
    height: 110px;
    background: rgba(25, 0, 81, 0.18);
    top: 150px;
    right: 24%;
    transform: rotate(8deg);
}

.illus-hero-shape.s3 {
    width: 130px;
    height: 170px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 120px;
    right: 12%;
    transform: rotate(6deg);
}

.style-selector-list .style-opt {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.style-selector-list .style-opt .style-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: #a1256769;
    color: #a12567;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.style-selector-list .style-opt h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 4px;
}

.style-selector-list .style-opt p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.style-selector-list .style-opt .style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.style-selector-list .style-opt .style-tags span {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 96, 247, 0.15);
    color: rgb(112, 96, 247);
    font-weight: 500;
}

.style-selector-list .style-opt.active {
    background: rgb(25 71 115);
    border-color: rgb(25 71 115);
}

.style-selector-list .style-opt.active h3, .style-selector-list .style-opt.active p {
    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-ico {
    background: rgb(161 37 103);    color: rgb(255, 255, 255);
}

.style-selector-list .style-opt.active .style-tags span {
    background: rgba(255, 255, 255, 0.16);
    color: rgb(255, 255, 255);
}

.style-preview {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
    height: 100%;
    min-height: 360px;
    background: rgb(238, 242, 247);
}

.style-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-preview .style-preview-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 20px;
}

.style-preview .style-preview-tag h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 2px;
}

.style-preview .style-preview-tag p {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.works-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 12px 0px;
}

.works-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 28px;
    transform: translateY(-4px);
    background: #a12567 !important;
}

.works-card .works-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.works-card .works-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgb(161 37 103);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.works-card .works-num {
    font-size: 34px;
    font-weight: 700;
    color: #a12567;
    letter-spacing: -2px;
}

.works-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 10px;
}

.works-card p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.works-card .works-stage {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a12567;
}

.works-complete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(161 37 103);
    border: 1px solid rgb(161 37 103);
    color: #fff;
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 30px;
}

.works-complete i {
    color: #fff;
}

.tell-stories-grid .feature-card {
    margin: 12px 0px;
}

.tell-stories-grid .feature-card .feature-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgb(161 37 103);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.tell-stories-grid .feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 8px;
}

.tell-stories-grid .feature-card p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    line-height: 22px;
    margin: 0px;
}

.tell-stories-heading h2 .muted {
}

.illus-stats {
    background: rgb(25, 0, 81);
    padding: 70px 0px;
}

.illus-stats .stat-item {
    text-align: center;
}

.illus-stats .stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 204, 0);
    letter-spacing: -2px;
    margin: 0px;
}

.illus-stats .stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 6px 0px 0px;
}

.illus-testimonials {
    background: rgb(25, 0, 81);
    padding: 0px 0px 90px;
}

.illus-testimonials .sub-title-span {
    background: rgb(161 37 103);}

.illus-testimonials h2 {
    color: rgb(255, 255, 255);
}

.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
}

.testi-card .testi-quote {
    color: rgb(112, 96, 247);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-card .stars i {
    color: rgb(255, 204, 0);
}

.testi-card .testi-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 26px;
    margin: 16px 0px 24px;
}

.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-card .testi-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .testi-author h4 {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin: 0px 0px 2px;
    font-weight: 600;
}

.testi-card .testi-author p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0px;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    margin: 15px 0px;
    transition: 0.3s;
}

.pricing-card.featured {
    border: 2px solid rgb(112, 96, 247);
    box-shadow: rgba(112, 96, 247, 0.18) 0px 20px 50px;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(25, 0, 81);
    color: rgb(255, 255, 255);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
}

.pricing-card .price-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(40, 36, 36);
    margin-bottom: 4px;
}

.pricing-card .price-for {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin-bottom: 20px;
}

.pricing-card .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: rgb(112, 96, 247);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-card .price-per {
    font-size: 13px;
    color: rgb(94, 89, 89);
    margin: 6px 0px 26px;
}

.pricing-card ul {
    margin: 0px 0px 28px;
}

.pricing-card ul li {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card ul li i {
    color: rgb(112, 96, 247);
    margin-top: 3px;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: rgb(94, 89, 89);
    font-size: 13px;
    margin-top: 30px;
}

.get-started {
    padding: 90px 0px;
}

.get-started .contact-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.get-started .contact-info-row .ci-ico {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    background: rgba(112, 96, 247, 0.12);
    color: rgb(112, 96, 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.get-started .contact-info-row span {
    font-size: 12px;
    color: rgb(94, 89, 89);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 3px;
}

.get-started .contact-info-row p {
    font-size: 16px;
    color: rgb(40, 36, 36);
    font-weight: 500;
    margin: 0px;
}

.get-started .guarantee-box {
    background: rgba(112, 96, 247, 0.08);
    border: 1px solid rgba(112, 96, 247, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 10px;
}

.get-started .guarantee-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin: 0px 0px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-started .guarantee-box h4 i {
    color: rgb(112, 96, 247);
}

.get-started .guarantee-box p {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin: 0px;
}

.quote-form-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 226, 226);
    border-radius: 24px;
    padding: 36px;
}

.quote-form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(40, 36, 36);
    margin-bottom: 6px;
}

.quote-form-card .qf-sub {
    font-size: 14px;
    color: rgb(94, 89, 89);
    margin-bottom: 24px;
}

@media (max-width: 991.98px) {
    .illus-hero {
        padding: 150px 0px 60px;
    }

    .illus-hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .illus-hero-shape {
        display: none;
    }

    .illus-stats {
        padding: 50px 0px;
    }

    .illus-stats .stat-item {
        margin: 15px 0px;
    }

    .illus-stats .stat-item h3 {
        font-size: 36px;
    }

    .get-started {
        padding: 50px 0px;
    }

    .quote-form-card {
        padding: 24px;
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .illus-hero h1 {
        font-size: 28px;
    }

    .pricing-card .price-amount {
        font-size: 38px;
    }
}

.post-author-avatar.border-rounded img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.works-card:hover {
}

.works-card:hover * {
    color: white;
}

.works-card:hover .works-ico {
    background: rgba(255, 255, 255, 0.5);
}

p.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: white;
}
p.mb-4.model-header.text-left {}

div#quoteModal {}

div#quoteModal p {font-size: 20px;color: #fff;}

span.top-modal {
}

p.model-header span {
    font-size: 35px;
    text-decoration: none;
}
.figure-service img {border-radius: 25px;width: 100%;}
figure.resource-img img {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.resource-card {
    border-radius: 30px;
}

.resource-content {
    padding: 15px 15px;
}

figure.resource-img {
    margin: 0;
}

.resource-content h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
    color: rgb(40, 36, 36);
    text-transform: capitalize;
    margin-bottom: 1rem;
    }
    a.resource-go-to.btn {
    width: 100%;
    background: #a93874;
    color: white;
    padding: 10px 0;
    border-radius: 25px;
}

.resource-content p {
    font-size: 15px;
    margin-bottom: 1rem;
}.makes-left .section-heading p.sub-title-span {
    color: white !important;
}
section.ready-section {
    padding: 5rem 0;
    background: rgb(25, 0, 81);
}
.support-writer {}

.support-writer {
    padding: 5rem 0 !important;
}
.ny-bg-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a9c;
}
.ny-case-step {
    border-bottom: 1px solid;
}

a {
    color: #000000;
    text-decoration: none;
}

section.contact-bottom .contact-form.aos-init.aos-animate {
    padding: 30px;
}

.contact-form {
    padding: 20px;
}

/* =========================================================
   KINROSS POLICY CONSENT
========================================================= */
.kinross-policy-wrap {
    margin-bottom: 14px;
}

.kinross-policy-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    line-height: 1.45;
    cursor: pointer;
}

.kinross-policy-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: #a93874;
}

.kinross-policy-consent a {
    text-decoration: underline;
}
