/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

/* NeueMachina Light */
@font-face {
    font-family: 'NeueMachina';
    src: url('assets/fonts/NeueMachina-Light.woff2') format('woff2'),
        url('assets/fonts/NeueMachina-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* NeueMachina Regular */
@font-face {
    font-family: 'NeueMachina';
    src: url('assets/fonts/NeueMachina-Regular.woff2') format('woff2'),
        url('assets/fonts/NeueMachina-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* NeueMachina Ultrabold */
@font-face {
    font-family: 'NeueMachina';
    src: url('assets/fonts/NeueMachina-Ultrabold.woff2') format('woff2'),
        url('assets/fonts/NeueMachina-Ultrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@supports (font-synthesis: none) {
    html {
        font-synthesis-weight: none;
    }
}

/* ********** GENERAL ********** */

:root {
    --red: #E81752;
    --black: #000000;
    --white: #FFFFFF;
    --offwhite: #E8E8E8;
    --offwhite2: #F7F7F7;

    --font-heading: "NeueMachina", sans-serif;
    --font-body: "Inter", sans-serif;
}

html {
    margin: 0 !important;
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800 !important;
    letter-spacing: 0.01em;
    line-height: 100% !important;
}

h1 {
    font-size: clamp(46px, calc(38px + 2.75vw), 80px) !important;
}

h1.h1-small {
    font-size: clamp(46px, calc(38px + 2.75vw), 50px) !important;
}

h2 {
    font-size: 54px !important;
}

h2 {
    font-size: clamp(34px, calc(38px + 2.75vw), 54px) !important;
}

h2.h2-large {
    font-size: 100px !important;
}

h3 {
    font-size: 20px !important;
}

p {
    font-family: var(--font-body);
    font-size: 18px !important;
    font-weight: 400 !important;
}

p.p-small {
    font-size: 16px !important;
}

p.p-large {
    font-size: 22px !important;
}

.subheading-two {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    max-width: 780px;
}

.text-red {
    color: var(--red);
}

.text-black {
    color: var(--black);
}

.text-offwhite {
    color: var(--offwhite);
}

.bg-red {
    background-color: var(--red);
}

.bg-white {
    background-color: var(--white);
}

.bg-black {
    background-color: var(--black);
}

.bg-offwhite2 {
    background-color: var(--offwhite2);
}

.btn-cta {
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border: 1px solid transparent;
    display: inline-block;
    transition: all .75s;
}

.btn-cta-hover {
    transition: all .75s;
}

.btn-cta-white {
    background-color: var(--white);
    color: var(--black);
    border-color: #E2E2E2;
}

.btn-cta-white:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-cta-red {
    background-color: var(--red);
    color: var(--white);
}

.btn-cta-red:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-cta-transparent {
    border-color: var(--white);
    color: var(--white);
}

.rounded-20 {
    border-radius: 20px;
}

.py-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}

.pt-10 {
    padding-top: 10rem !important;
}

.pb-10 {
    padding-bottom: 10rem !important;
}

.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.pt-6 {
    padding-top: 5rem !important;
}

.pb-6 {
    padding-bottom: 5rem !important;
}

.mw-875 {
    max-width: 875px !important;
}

.mw-825 {
    max-width: 825px !important;
}

.mw-780 {
    max-width: 780px !important;
}

.mw-775 {
    max-width: 775px !important;
}

.mw-650 {
    max-width: 650px !important;
}

.desktop {
    display: block !important;
}

.tablet,
.mobile {
    display: none !important;
}

/* PARALLAX */
[data-parallax-y],
[data-parallax-x],
[data-parallax-scale],
[data-parallax-rotate] {
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {

    [data-parallax-y],
    [data-parallax-x],
    [data-parallax-scale],
    [data-parallax-rotate] {
        transform: none !important;
    }
}

/* ********** NAVIGATION ********** */

#wpadminbar {
    display: none !important;
}

body .bg-body-tertiary {
    background-color: var(--white) !important;
}

#bootscore-navbar.ms-auto {
    margin-left: initial !important;
}

.custom-logo {
    max-width: 163px !important;
}

header {
    position: fixed !important;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
}

header .container {
    max-width: 95% !important;
}

header.scrolled {
    border-bottom: 1px solid #e5e5e5;
}

.navbar-brand {
    margin-right: 0 !important;
}

.offcanvas-body {
    justify-content: center;
}

body .nav-link {
    font-family: var(--font-body) !important;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0 15px;
}

.nav-cta {
    padding: 8px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--black);
    color: var(--white);

    max-width: 163px !important;
    width: 100%;
    text-align: center;
    background-color: var(--red);
    border-color: var(--red);

    transition: all .75s;
}

.nav-cta:hover {

    background-color: var(--black);
    border-color: var(--black);
    transition: all .75s;

}

.nav-cta-mobile {
    display: none;
}

/* Hide the inline/desktop nav under lg, but not the offcanvas content */
@media (max-width: 991.98px) {

    /* Desktop nav ULs that sit in the header bar */
    #masthead .navbar > .container > .navbar-nav,
    #masthead .navbar .navbar-collapse {
        display: none !important;
    }

    /* Ensure the offcanvas menu content itself stays visible */
    #offcanvas-navbar .offcanvas-body .navbar-nav {
        display: block !important;
    }
}

/* ********** HOME PAGE ********** */

/* HERO FULL */
.hero-full {
    margin-top: 45px;
    padding: 2.5% 0 5% 0;
    height: calc(100vh - 60px) !important;
}

.hero-full .container {
    background-size: cover;
    background-position: center;
    max-width: 95% !important;
    border-radius: 30px;
    box-shadow: 5px 35px 55px rgba(0, 0, 0, 0.25);
}

.hero-full .container {
    position: relative;
}

.hero-full .col-left {
    padding-left: 3rem;
}

/* .hero-full .col-left-content {
	position: relative;
	top: 75px;
} */

.hero-full .subheading {
    position: absolute;
    bottom: 40px;
    left: 3rem;
    font-size: 20px;
    font-weight: 600;
}

.hero-full.vh-100 {
    height: initial !important;
    position: relative;
    z-index: 10;
}

.hero-full .container {
    padding-top: 15vh !important;
    padding-bottom: 15vh !important;
}

.hero-full .row-hero-counter {
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    bottom: 25px;
}

/* Counter digit flip (smooth + slow + stable height) */
.sb-odometer {
    display: inline-flex;
    font-variant-numeric: tabular-nums;
    --sb-odo-duration: 1000ms;
    --sb-odo-ease: cubic-bezier(.22, .61, .36, 1);
    will-change: contents;
}

.sb-odometer__ch {
    position: relative;
    display: inline-block;
    width: 25px;
    text-align: center;
    overflow: hidden;
    height: 1.25em;
    line-height: 1.25em;
    background-color: rgba(255, 255, 255, .75);
    color: var(--black);
    border-radius: 3px;
    margin: 0 2px;
    will-change: transform, opacity;
}

.sb-odometer__sep {
    display: inline-block;
    padding: 0 0.05em;
    position: relative;
    top: -5px;
}

.sb-counter__label {
    position: relative;
    top: -6px;
}

/* Stacked layers for animation */
.sb-odometer__layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

/* Animations (longer duration + smoother easing + slight blur for polish) */
.sb-odometer__in {
    animation: sb-fall-in var(--sb-odo-duration) var(--sb-odo-ease) forwards;
}

.sb-odometer__out {
    animation: sb-fall-out var(--sb-odo-duration) var(--sb-odo-ease) forwards;
}

@keyframes sb-fall-in {
    0% {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
        filter: blur(1px);
    }

    60% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes sb-fall-out {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    40% {
        filter: blur(0.5px);
    }

    100% {
        transform: translate3d(0, 100%, 0);
        opacity: 0;
        filter: blur(1px);
    }
}

/* Respect reduced motion: no animation, digits just swap */
@media (prefers-reduced-motion: reduce) {

    .sb-odometer__in,
    .sb-odometer__out {
        animation: none !important;
    }
}

@media (max-width: 767px) {

    .sb-counter.d-inline-flex {
        display: block !important;
    }

    .sb-counter__label {
        display: block;
    }

}

/* TRUSTED BY */
.row-trusted-partners .col-md-4 {
    margin: 10px;
    width: calc(25% - 20px);
    padding: 1.5% 3%;
    background-color: var(--offwhite2);
}

/* ROW THREE COLUMN */

.row-three-column .row {
    justify-content: center;
}

h2 span {
    font-weight: 300;
}

.row-three-column .col-md-6 {
    background-size: cover;
    background-position: center;
    height: 415px;
}

.row-three-column .work-count {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 300;
}

.row-three-column .col-md-6 h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
}

.row-three-column .col-md-6:nth-of-type(1) h3,
.row-three-column .col-md-6:nth-of-type(1) p {
    color: var(--white);
}

.row-three-column .col-md-6:nth-of-type(1) .btn-cta {
    background-color: var(--red);
    color: var(--white);
}

.row-three-column .col-md-6:nth-of-type(2) .btn-cta,
.row-three-column .col-md-6:nth-of-type(3) .btn-cta {
    background-color: var(--black);
    color: var(--white);
}

/* ROW THREE COLUMN B */

.row-three-column-b .col-md-4 {
    margin: 10px;
    width: calc(33.333% - 20px);
}

.row-three-column-b h3 {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 600 !important;
}

.row-three-column .work-card {
    background-size: cover;
}

/* ROW POINTS */
.row-points .points-wrap {
    position: relative;
}

.row-points .point-row {
    padding-top: 22px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.row-points .point-row.is-first {
    border-top: none;
}

.row-points .point-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.row-points .point-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.row-points .point-title {
    font-weight: 600;
    line-height: 1.2;
}

.row-points .point-desc {
    line-height: 1.6;
    opacity: 0.9;
}

/* Tweak spacing on very small screens */
@media (max-width: 575.98px) {
    .row-points .point-row {
        padding-top: 18px;
        padding-bottom: 18px;
    }
}

/* BENTO TWO ROW */
.bento-two-row .bento-card {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
}

.bento-two-row .bento-card--light {
    background: var(--offwhite2);
    color: #111111;
}

.bento-two-row .bento-card--gradient1 {
    background: linear-gradient(135deg, #FBEB44 0%, #E81752 50%, #480E57 100%);
    color: #ffffff;
}

.bento-two-row .bento-card--gradient2 {
    background: linear-gradient(135deg, #480E57 0%, #E81752 100%);
    color: #ffffff;
}

/* Wide card (flex) layout */
.bento-two-row .bento-card--wide {
    gap: 8px;
}

.bento-two-row .bento-content {
    padding: 28px;
    padding-top: 0;
}

.bento-two-row .bento-content--wide {
    padding: 28px;
}

.bento-two-row .bento-media {
    position: relative;
    padding: 20px;
}

.bento-two-row .bento-media--wide {
    padding: 24px;
}

/* Ensure media fills vertically when side-by-side */
.bento-two-row .bento-card--wide .bento-media--wide,
.bento-two-row .bento-card--wide .bento-media--wide > img {
    height: 100%;
}

.bento-content.bento-content--wide.flex-grow-1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-two-row .bento-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.bento-two-row .bento-media--video {
    cursor: pointer;
}

.bento-two-row .bento-play {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
}

.bento-two-row .bento-tag {
    position: absolute;
    top: 28px;
    left: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
}

.bento-two-row .bento-number {
    font-family: var(--font-body) !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    margin-bottom: 8px;
}

.bento-two-row .bento-title {
    font-family: var(--font-body) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin: 0 0 8px 0 !important;
}

.bento-two-row .bento-desc {
    opacity: 0.9;
    margin-bottom: 12px;
}

.bento-two-row .bento-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
}

.bento-two-row .bento-card--gradient1 .bento-link,
.bento-two-row .bento-card--gradient2 .bento-link {
    color: #ffffff;
}

.bento-two-row .bento-card--light .bento-link {
    color: #111111;
}

/* Mobile: stack wide cards, let media use standard height */
@media (max-width: 767.98px) {
    .bento-two-row .bento-card--wide {
        gap: 0;
    }

    .bento-two-row .bento-media--wide {
        width: 100%;
    }

    .bento-two-row .bento-media img {
        height: 200px;
    }
}

/* ROW FAQ */
.row-faq .custom-faq {
    /*     max-width: 700px; */
    margin: 0 auto;
}

.row-faq .accordion-item {
    background-color: var(--offwhite2);
    border: none;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.row-faq .accordion-button {
    font-family: var(--font-body);
    background-color: var(--offwhite2);
    font-weight: 600;
    font-size: 20px;
    padding: 30px;
    box-shadow: none;
    border-radius: 10px;
}

.row-faq .accordion-button span {
    padding-right: 20px;
}

.row-faq .accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: var(--offwhite2);
}

.row-faq .accordion-body {
    background-color: var(--offwhite2);
    padding: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Custom +/- icons */
.row-faq .accordion-button::after {
    content: "+";
    font-size: 1.25rem;
    transform: none;
    background-image: none;
}

.row-faq .accordion-button:not(.collapsed)::after {
    content: "–";
}

/* ROW CTA */
.row-cta {
    background-image: url('https://soundful.smartboost.dev/wp-content/uploads/2025/09/soundful-cta-bg.webp');
    background-size: cover;
    background-position: bottom;
}

.row-cta .container {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid var(----offwhite2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.row-cta .container {
    padding: 5rem 3rem;
}

/* ********** ENTERPRISE ********** */

.hero-enterprise.vh-100 {
    height: initial !important;
    position: relative;
    z-index: 10;
}

.hero-enterprise .container {
    padding-top: 10vh !important;
    padding-bottom: 10vh !important;
}

.hero-bullet {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
}

.hero-counter {
    width: 100%;
    --bs-gutter-x: 0 !important;
}

/* Two Col Img Left */

.row-col-two-img-left .ul-bulletpoint {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
}

.row-col-two-img-left .ul-bulletpoint li {
    margin-bottom: 5px;
}

/* Row Points */

.row-points .point-row {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.row-points .point-icon {
    width: auto;
    height: auto;
}

.icon-center {
    position: relative;
    left: 5px;
}

@media (max-width: 767.98px) {
    .row-points .point-row {
        margin-top: 20px;
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 10px;
        padding-top: 50px;
    }

    .row-points .point-row .row {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        column-gap: 16px;
        row-gap: 6px;
        align-items: start !important;
    }

    .row-points .point-col-icon {
        grid-column: 1 / 2;
        grid-row: 1 / span 2;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-top: 0;
        position: relative;
        top: -10px;
        padding-right: 0;
    }

    .row-points .point-icon {
        width: 40px;
        height: 40px;
    }

    .row-points .point-col-title {
        grid-column: 2 / -1;
        grid-row: 1;
        margin: 0;
    }

    .row-points .point-col-desc {
        grid-column: 2 / -1;
        grid-row: 2;
    }

    .row-points .point-title {
        margin-bottom: 0.1rem;
    }

    .row-points .col-md-5.point-col-desc {
        margin-top: 0 !important;
    }
}

/* ********** PRICING TABLE ********** */
.pricing-table {
    padding-top: 150px;
}

.pricing-table h3 {
    font-family: var(--font-body);
    font-weight: 600 !important;
}

.pricing-table ul {
    padding-left: 19px;
    font-family: var(--font-body);
    font-size: 14px;
}

.pricing-table ul li {
    margin-bottom: 5px;
}

.pricing-table .btn-link,
.pricing-table .btn-link:hover {
    font-family: var(--font-body);
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
}

.enterprise-shell h2 {
    font-family: var(--font-body);
    font-weight: 600 !important;
    font-size: 40px !important;
}

.billing-toggle {
    background-color: #F3F4F6;
    padding: 2px;
    border-radius: 10px;
}

.billing-toggle .btn {
    background-color: #F3F4F6;
    color: #686868;
    border: none;
}

.billing-toggle .btn.active {
    background-color: var(--white) !important;
    color: var(--black);
}

.billing-toggle .btn:hover {
    background-color: transparent !important;
}

/* Legacy STEM button group (kept in case you still use it elsewhere) */
.btn-group-stem {
    background-color: #F3F4F6 !important;
    padding: 3px !important;
    border-radius: 10px !important;
    margin-top: 10px;
}

.btn-group-stem .btn {
    border: none !important;
    font-family: var(--font-body);
    font-size: 12px;
}

.btn-group-stem .btn.active {
    background-color: var(--white);
    color: var(--black);
}

.plan-free .price-container,
.plan-plus .price-container,
.plan-pro .price-container,
.enterprise-shell .price-container {
    margin-top: 64px;
}

.enterprise-shell .btn-cta {
    width: 250px;
}

/* ----- Business sliders: visual polish ----- */
.pricing-table .tier-sliders {
    padding-left: 6px;
    padding-right: 6px;
}

.pricing-table .slider-labels {
    position: relative;
    margin-bottom: 8px;
    /* breathing room above the track */
    font-family: var(--font-body);
    font-size: 12px;
    color: #686868;
    user-select: none;
    gap: 8px;
    height: 35px;
}

.pricing-table .slider-labels span {
    /*     position: relative; */
    top: -10px;
    padding: 6px 4px 0 4px;
    cursor: pointer;
    transition: color .15s ease;
    text-align: center;
    line-height: 1.2;
}

.pricing-table .slider-labels span.active {
    color: var(--black);
    font-weight: 600;
}

/* Tick dots: centered on track, white with shadow */
.pricing-table .slider-labels span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* above the track */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

/* Range base */
.pricing-table input[type="range"][data-range] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    margin-top: 0;
}

.pricing-table input[type="range"][data-range]:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

/* Track */
.pricing-table input[type="range"][data-range]::-webkit-slider-runnable-track {
    position: relative;
    z-index: 1;
    height: 4px;
    border-radius: 999px;
    background: #E8E8E8;
    margin-top: -1px;
    /* tiny nudge so ticks sit flush */
}

.pricing-table input[type="range"][data-range]::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: #E8E8E8;
}

/* Thumb (white with shadow) */
.pricing-table input[type="range"][data-range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    cursor: pointer;
    margin-top: -12px;
    transition: transform .12s ease;
}

.pricing-table input[type="range"][data-range]:active::-webkit-slider-thumb {
    transform: scale(1.05);
}

.pricing-table input[type="range"][data-range]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    cursor: pointer;
}

.slider-container {
    margin: 15px 0;
    width: 75%;
}

.slider-container .active::before {
    display: none;
}

.pricing-table input[type="range"][data-range] {
    width: 100%;
    height: 40px;
}

input[type="range"]:hover {
    cursor: pointer;
}

.pricing-table .slider-labels span::before {
    display: none;
}

.slider-labels span[data-idx="0"],
.slider-labels span[data-idx="1"],
.slider-labels span[data-idx="2"] {
    width: 33.333%;
}

.slider-labels span[data-idx="0"] {
    text-align: left;
}

.slider-labels span[data-idx="2"] {
    text-align: right;
}

.slider-container-downloads .data-idx {
    text-align: center;
}

.data-idx.active {
    font-weight: bold;
}

/* Mobile spacing */
@media (max-width: 767px) {
    .pricing-table .tier-sliders [data-slider] {
        margin-bottom: 14px;
    }

    .tier-sliders.d-flex {
        display: block !important;
    }

    .slider-container {
        margin: 16px 0;
        width: 100%;
    }
}

/* ********** LICENSE ********** */

.license-table-section {
    padding-top: 150px;
}

.lt-table th,
.lt-table td {
    padding: 5px 15px;
}

/* Container */
/* .license-table-section {
    margin-block: 2rem;
} */

.lt-header {
    margin-bottom: 1rem;
}

.lt-title {
    margin: 0 0 0.5rem 0;
}

.lt-intro {
    margin: 0 0 1rem 0;
}

/* Table base */
.lt-wrap {
    width: 100%;
    overflow-x: auto;
}

.lt-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.lt-th,
.lt-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #efefef;
    vertical-align: middle;
}

.lt-th--blank {
    width: 40%;
}

.lt-heading {
    background: #f5f5f5;
    text-transform: uppercase;
    font-weight: 700;
}

.lt-heading__cell {
    letter-spacing: 0.02em;
}

.lt-divider__cell {
    padding: 0;
    height: 8px;
    background: #f5f5f5;
    border-bottom: none;
}

/* Feature column */
.lt-feature {
    font-weight: 600;
    text-transform: none;
}

.lt-feature-link {
    text-decoration: none;
}

.lt-note {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.875rem;
    color: #6b6b6b;
}

/* Icons */
.lt-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.lt-icon svg {
    width: 28px;
    height: 28px;
}

.lt-icon--yes {
    color: #1c8f32;
}

.lt-icon--no {
    color: #e53935;
}

.lt-limited {
    font-size: 0.875rem;
    color: #6b6b6b;
}

/* Mobile stacking */
@media (max-width: 767px) {
    .lt-table thead {
        display: none;
    }

    .lt-table,
    .lt-table tbody,
    .lt-table tr,
    .lt-table td,
    .lt-table th {
        display: block;
        width: 100%;
    }

    .lt-row,
    .lt-heading {
        border-bottom: 1px solid #efefef;
    }

    .lt-feature {
        background: #f8f8f8;
        border-bottom: 1px solid #efefef;
    }

    .lt-table td[data-label]::before {
        content: attr(data-label) " ";
        display: inline-block;
        min-width: 160px;
        font-weight: 600;
        color: #444;
    }
}

/* ********** LOFI MUSIC GENERATOR ********** */

.hero-lofi {
    height: initial !important;
    position: relative;
    z-index: 10;
}

.hero-lofi .container {
    padding-top: 10vh !important;
    padding-bottom: 10vh !important;
}

.row-lofi-six .col-md-4:nth-of-type(1) {
    background-color: var(--black);
    color: var(--white);
}

.row-lofi-six .col-md-4:nth-of-type(2) {
    background-color: #C1C1C1;
    color: var(--white);
}

.row-lofi-six .col-md-4:nth-of-type(3) {
    background-color: var(--offwhite2);
}

/* ********** AI SONG GENERATOR ********** */

/* Two Column Steps */

/* Sticky heading */
.mod-steps-timeline .steps-sticky {
    position: sticky;
    top: 125px;
}

/* Timeline rails */
.mod-steps-timeline .steps-list {
    position: relative;
}

/* Base grey line – height controlled via --line-total (JS) */
.mod-steps-timeline .steps-list::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: var(--line-total, 0);
    background: var(--bs-border-color);
    transform: translateX(-50%);
    z-index: 1;
}

/* Red progress line – grows down to active dot center */
.mod-steps-timeline .steps-list::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: var(--line-fill, 0);
    background: #e81752;
    transform: translateX(-50%);
    z-index: 2;
    transition: height 0.4s ease-out;
}

.mod-steps-timeline .step-item {
    position: relative;
    display: flex;
}

.mod-steps-timeline .step-rail {
    width: 24px;
    flex: 0 0 24px;
}

/* Dot: filled grey by default, above rails */
.mod-steps-timeline .step-dot {
    --size: 20px;
    --dot-bg: #d9d9d9;
    --dot-stroke: #d0d5dd;
    --dot-active: #e81752;
    display: inline-block;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: var(--dot-bg);
    border: 2px solid var(--dot-stroke);
    box-shadow: 0 0 0 2px #fff;
    transform: translateY(2px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    position: relative;
    z-index: 3;
}

/* Active dot */
.mod-steps-timeline .step-item.is-active .step-dot {
    background: var(--dot-active);
    border-color: var(--dot-active);
    transform: translateY(2px) scale(1.05);
}

/* Step label: Inter + turns red when active */
.mod-steps-timeline .step-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--bs-secondary-color);
}

.mod-steps-timeline .step-item.is-active .step-label {
    color: #e81752;
}

/* Spacing */
.mod-steps-timeline .step-copy {
    margin-left: 0.25rem;
}

/* pending keeps dot grey while line animates */
.mod-steps-timeline .step-item.is-pending .step-dot {
    background: #d9d9d9;
    border-color: #d0d5dd;
}

.mod-steps-timeline .step-item.is-pending .step-label {
    color: var(--bs-secondary-color);
}

.steps-col-left {
    margin-bottom: 60px;
}

/* Testimonials */

.row-testimonials .of-cover {
    object-fit: cover;
}

.row-testimonials .testimonial-slide {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}

.row-testimonials .container {
    max-width: 1140px;
}

.row-testimonials .container {
    background-color: var(--offwhite2);
    border-radius: 20px;
    padding: 75px 50px;
}

.row-testimonials blockquote {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800 !important;
}

.testimonial-handle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400 !important;
    margin-top: -8px;
}

/* ********** SOUNDFUL VS BOOMY ********** */

.two-column-comparison .cmp-icon {
    height: 20px;
    width: 20px;
    display: inline-block;
}

.two-column-comparison td {
    padding: 1rem .5rem;
}

.two-column-comparison th {
    font-weight: 600;
}

.two-column-comparison table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}

.two-column-comparison th,
.two-column-comparison td {
    width: 33.33%;
    text-align: center;
    vertical-align: middle;
    padding: 1rem;
    word-wrap: break-word;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    padding: 20px !important;
}

.two-column-comparison th {
    font-size: 26px;
    font-weight: bold;
}

.bg-pink {
    background-color: #fbd3df !important;
    border-top-left-radius: 10px;
}

.bg-light-grey {
    background-color: #EAEAEA !important;
    border-top-right-radius: 10px;
}

tbody tr td:nth-of-type(2) {
    background-color: #fde8ee !important;
}

tbody tr td:nth-of-type(3) {
    background-color: #f7f7f7 !important;
}

tbody tr:last-of-type td:nth-of-type(2) {
    border-bottom-left-radius: 10px;
}

tbody tr:last-of-type td:nth-of-type(3) {
    border-bottom-right-radius: 10px;
}

tbody tr {
    border-bottom: 1px solid #CFCFCF;
}

tbody tr:last-of-type {
    border: none;
}

/* === Mobile accordion === */
.cmp-accordion {
    display: grid;
    gap: 12px;
}

.cmp-acc {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    overflow: hidden;
}

.cmp-acc__summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}

.cmp-acc__summary::-webkit-details-marker {
    display: none;
}

.cmp-acc__caret {
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    transition: transform .2s ease;
}

.cmp-acc[open] .cmp-acc__caret {
    transform: rotate(45deg);
}

.cmp-acc__body {
    padding: 12px 12px 14px;
    display: grid;
    gap: 10px;
}

.cmp-acc__card {
    border-radius: 10px;
    padding: 12px 14px;
}

.cmp-acc__card--soundful {
    background: #fde8ee;
}

.cmp-acc__card--other {
    background: #f7f7f7;
}

.cmp-acc__cardhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cmp-acc__value img {
    height: 20px;
    width: 20px;
}

/* Typography tweaks for smaller screens */
@media (max-width: 991.98px) {

    .two-column-comparison th,
    .two-column-comparison td {
        font-size: 16px;
    }
}


/* ********** BLOG ********** */

.blog-listing {
    padding-top: 150px;
}

.blog-listing a {
    color: var(--black);
}

.blog-listing h1 {
    font-size: 34px !important;
}

.blog-listing article h2 {
    font-size: 23px !important;
    text-transform: capitalize !important;
}

.ratio-2x1 {
    --bs-aspect-ratio: 50%;
    /* height = width * 0.5 */
}

/* Blog card hover effect */
.article-hover {
    position: relative;
    overflow: hidden;
}

.article-hover img {
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Overlay layer for color flash */
.article-hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #e81752;
    opacity: 0;
    mix-blend-mode: color-burn;
    transition: opacity 0.6s ease;
}

/* On hover — zoom + color blast */
.article-hover:hover img {
    /*   transform: scale(1.1); */
    filter: contrast(250%) brightness(1.1) saturate(1.4);
}

.row-latest h2 {
    font-size: 36px !important;
}

.article-hover:hover::after {
    opacity: 0.55;
}

@media (max-width: 991px) {

    .blog-listing article h2 {
        font-size: 20px !important;
    }

}

@media (max-width: 767px) {

    .blog-listing .row.text-center.mb-5 {
        margin-bottom: 1rem !important;
    }

    .blog-listing h2 {
        font-size: 20px !important;
    }

    .blog-listing .row.g-4.align-items-center.mb-5.pb-5 p {
        display: none;
    }

    .blog-listing .row.g-4.align-items-center.mb-5.pb-5 .col-12.col-lg-6 {
        margin-top: 1rem !important;
    }

    .blog-listing .row.g-4.align-items-center.mb-5.pb-5 {
        padding-bottom: 0 !important;
        margin-bottom: 1rem !important;
    }

    .blog-listing h2.mb-3 {
        margin-bottom: 0.5rem !important;
    }

    .blog-listing .row.g-4.align-items-center.mb-5.pb-5 .text-muted.mb-3 {
        font-size: 0.875em;
    }
}

/* ********** BLOG SINGLE ********** */

.blog-single-header {
    display: flex;
    align-items: center;
    padding-bottom: 2.5%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 66.667vh;
}

.blog-single-header h1 {
    font-size: 50px !important;
    max-width: 800px;
}

.blog-single-content a {
    color: var(--black);
}

.single-post .blog-single h2 {
    font-size: 24px !important;
    margin-top: 40px !important;
    margin-bottom: 15px !important;
}

.blog-single-content ol,
.blog-single-content ul {
    padding-left: 19px;
}

.blog-single-content figure {
    margin: 0 !important;
}

.blog-single-content figure,
.blog-single-content figure img {
    width: 100% !important;
}

/* Fix responsive YouTube embeds */
figure.wp-block-embed.is-type-video.is-provider-youtube {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
}

figure.wp-block-embed.is-type-video.is-provider-youtube iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    /* modern browsers handle this cleanly */
    display: block;
    border: 0;
    max-width: 100%;
}

.blog-single-content .sidebar {
    padding-left: 2.5%;
    position: sticky;
    top: 10%;
    height: 537px;
}

.sidebar-cta {
    background-image: url(/wp-content/uploads/2025/10/soundful_sidebar_image.webp);
    height: 600px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex !important;
    justify-content: space-around;
    flex-direction: column;
    text-align: center;
    align-items: center;
    text-decoration: none;
}

.blog-single-content .sidebar h3 {
    color: #fff;
}

.single-post .blog-single h3 {
    font-size: 19px !important;
    margin-top: 40px !important;
    margin-bottom: 15px !important;
}

@media (max-width: 991px) {

    .blog-single-header h1 {
        font-size: 38px !important;
    }

    .blog-single-content .sidebar {
        position: initial;
        height: initial;
        padding: 0;
        margin-top: 40px;
    }

    .blog-single-content .sidebar-cta {
        height: 250px;
        display: flex !important;
    }

    .single-post .blog-single h3.mb-3 {
        margin: 0 !important;
    }

}

@media (max-width: 767px) {

    .blog-single-header h1 {
        font-size: 30px !important;
    }

}

/* ********** POLICY PAGES ********** */

.page-id-3 #primary,
.page-id-421 #primary,
.page-id-425 #primary {
    padding-top: 150px;
}

.row-policy-text .container {
    max-width: 950px !important;
}

.row-policy-text h1 {
    font-size: 45px !important;
}

.row-policy-text p,
.row-policy-text li {
    font-family: var(--font-body);
    font-size: 16px !important;
}

.row-policy-text a {
    color: var(--black);
}

@media (max-width: 991px) {

    .row-policy-text h1 {
        font-size: 38px !important;
    }

}

@media (max-width: 767px) {

    .row-policy-text h1 {
        font-size: 30px !important;
    }

}

/* ********** HELP CENTER ********** */

.page-id-411 .faq-hero {
    padding-top: 150px;
}

.faq-hero h1 {
    font-size: 45px !important;
}

#faq-section .nav-link {
    background-color: #f5f5f5 !important;
}

#faq-section .nav-link:hover,
#faq-section .nav-link:focus {
    background-color: var(--black) !important;
    color: var(--white);
}

#faq-section .nav-link.active {
    background-color: var(--black) !important;
    color: var(--white) !important;
    font-weight: bold;
}

#faqAccordion .accordion-item {
    border: none;
}

#faqAccordion .accordion-button,
#faqAccordion .accordion-body {
    background-color: var(--beige) !important;
}

.accordion-hr {
    color: var(--white);
}

#faqAccordion hr:last-of-type {
    display: none;
}

.accordion-button {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--black) !important;
}

.accordion-button::after {
    background-image: none !important;
    content: '+' !important;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    width: auto;
    height: auto;
    font-size: 36px;
}

.accordion-button:not(.collapsed)::after {
    content: '-' !important;
    transform: none !important;
}

#faq-section h2 {
    font-size: 26px !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600 !important;
}

#faq-section .accordion-body h2,
#faq-section .accordion-body h4 {
    font-size: 20px !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600 !important;
}

#faq-section h3 {
    font-size: 20px !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600 !important;
}

#faq-section p {
    font-size: 16px !important;
}

#faq-section .accordion-button:not(.collapsed) {
    background-color: #d9d9d9;
}

@media (max-width: 991px) {

    .page-id-411 h1 {
        font-size: 38px !important;
    }

}

@media (max-width: 767px) {

    .page-id-411 h1 {
        font-size: 30px !important;
    }

}

/* ********** 404 ********** */

.page-404 {
    margin-top: 125px;
}

/* ********** FOOTER ********** */

footer {
    border-top: 1px solid #e5e5e5;
}

footer a {
    color: var(--black);
}

footer ul li a {
    text-decoration: none;
}

.footer-custom-link {
    text-transform: uppercase;
    font-family: 'NeueMachina', sans-serif;
}

.img-badge {
    max-width: 125px !important;
}

.footer-social i {
    font-size: 15px;
    line-height: 1;
    color: var(--black);
}

.top-button {
    display: none !important;
}

.subfooter {
    border-top: 1px solid #e5e5e5;
}

.subfooter .divider {
    margin: 0 10px;
}

/* ********* IMAGE FADE ANIMATION ********** */

.img-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
}

.reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ********* MEDIA QUERIES ********** */

@media (max-width: 1108px) {

    .home .hero-full h1 {
        font-size: 55px !important;
    }

}

@media (min-width: 992px) {

    .container {
        max-width: 1400px !important;
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

}

@media (max-width: 991px) {

    /* ***** GENERAL ***** */
    h1.h1-small {
        font-size: 38px !important;
    }

    h2 {
        font-size: 35px !important;
    }

    p {
        font-size: 16px !important;
    }

    .container {
        max-width: 95% !important;
    }

    .pt-6 {
        padding-top: 2.5rem !important;
    }

    .pb-6 {
        padding-bottom: 2.5rem !important;
    }

    .py-6 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .pt-10 {
        padding-top: 2.5rem !important;
    }

    .pb-10 {
        padding-bottom: 2.5rem !important;
    }

    .py-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .desktop,
    .desktop.d-flex {
        display: none !important;
    }

    .tablet {
        display: block !important;
    }

    /* ***** NAVIGATION ***** */
    .offcanvas {
        left: 0;
        width: 100%;
        height: 100%;
    }

    .nav-cta-mobile {
        display: block;
    }

    .nav-cta {
        display: none;
    }
	
	.btn-close {
		margin-right: 13px !important;
    	margin-top: 3px !important;
	}

    .offcanvas-header {
        position: absolute;
        width: 100%;
        z-index: 100;
    }

    #offcanvas-navbar .offcanvas-body .navbar-nav {
        height: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    ul#bootscore-navbar li {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid #E2E2E2;
    }

    body .offcanvas .nav-link {
        font-size: 30px;
        width: 100%;
        margin-left: 0;
    }

    ul#bootscore-navbar li.nav-cta-mobile {
        border: none;
    }

    .nav-cta-mobile a {
        padding: 8px 28px;
        border-radius: 100px;
        font-family: var(--font-body);
        font-size: 18px !important;
        font-weight: 500;
        text-decoration: none;
        display: inline-block;
        border: 2px solid var(--black);
        color: var(--white);
        max-width: 163px !important;
        width: 100%;
        text-align: center;
        background-color: var(--red);
        border-color: var(--red);
        transition: all .75s;
        width: 100% !important;
        max-width: 100% !important;
    }

    .offcanvas {
        background-color: rgba(255, 255, 255, .95) !important;
    }

    /* Offcanvas Animation */
    /* Longer, smoother Option A */
    .offcanvas {
        /* Tune these two first */
        --oc-in-duration: 1250ms;
        --oc-out-duration: 750ms;

        /* Easing: slower ease-out on enter, gentle ease-in on exit */
        --oc-in-ease: cubic-bezier(0.22, 1, 0.36, 1);
        --oc-out-ease: cubic-bezier(0.4, 0, 0.2, 1);

        /* Start state */
        transform: translateY(12px);
        opacity: 0;
        filter: blur(6px);
    }

    /* Respect placement offsets */
    .offcanvas.offcanvas-start {
        transform: translateX(-20px);
    }

    .offcanvas.offcanvas-end {
        transform: translateX(20px);
    }

    .offcanvas.offcanvas-top {
        transform: translateY(-20px);
    }

    .offcanvas.offcanvas-bottom {
        transform: translateY(20px);
    }

    /* ENTER (Bootstrap: .showing -> .show) */
    .offcanvas.showing,
    .offcanvas.show {
        transform: translate(0, 0);
        opacity: 1;
        filter: blur(0);
        transition:
            transform var(--oc-in-duration) var(--oc-in-ease),
            opacity var(--oc-in-duration) var(--oc-in-ease),
            filter var(--oc-in-duration) var(--oc-in-ease);
    }

    /* EXIT (Bootstrap: .hiding) */
    .offcanvas.hiding {
        /* animate back to the start offset */
        opacity: 0;
        filter: blur(6px);
        transition:
            transform var(--oc-out-duration) var(--oc-out-ease),
            opacity var(--oc-out-duration) var(--oc-out-ease),
            filter var(--oc-out-duration) var(--oc-out-ease);
    }

    .offcanvas.offcanvas-start.hiding {
        transform: translateX(-20px);
    }

    .offcanvas.offcanvas-end.hiding {
        transform: translateX(20px);
    }

    .offcanvas.offcanvas-top.hiding {
        transform: translateY(-20px);
    }

    .offcanvas.offcanvas-bottom.hiding {
        transform: translateY(20px);
    }

    /* Backdrop: slower + nicer */
    .offcanvas-backdrop {
        --oc-backdrop-in: 520ms;
        --oc-backdrop-out: 360ms;
        background-color: rgba(14, 15, 17, 0);
        backdrop-filter: blur(0);
    }

    .offcanvas-backdrop.show {
        background-color: rgba(14, 15, 17, 0.55);
        backdrop-filter: blur(2px);
        transition:
            background-color var(--oc-backdrop-in) ease,
            backdrop-filter var(--oc-backdrop-in) ease;
    }

    .offcanvas-backdrop:not(.show) {
        transition:
            background-color var(--oc-backdrop-out) ease,
            backdrop-filter var(--oc-backdrop-out) ease;
    }

    /* Optional: make inner content trail slightly behind the panel for a luxe feel */
    .offcanvas .offcanvas-body {
        opacity: 0;
        transform: translateY(8px);
    }

    .offcanvas.showing .offcanvas-body,
    .offcanvas.show .offcanvas-body {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity calc(var(--oc-in-duration) * 0.85) var(--oc-in-ease) 90ms,
            transform calc(var(--oc-in-duration) * 0.85) var(--oc-in-ease) 90ms;
    }

    .offcanvas.hiding .offcanvas-body {
        opacity: 0;
        transform: translateY(8px);
        transition:
            opacity calc(var(--oc-out-duration) * 0.8) var(--oc-out-ease),
            transform calc(var(--oc-out-duration) * 0.8) var(--oc-out-ease);
    }

    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {

        .offcanvas,
        .offcanvas-backdrop,
        .offcanvas .offcanvas-body {
            transition: none !important;
            transform: none !important;
            filter: none !important;
        }
    }



    /* Trusted Partners */
    .row-trusted-partners h2 {
        font-size: 50px !important;
    }

    /* Three Columns */
    .row-three-column .col-md-6 {
        width: 100%;
        height: 300px;
    }

    .row-three-column-b .col-md-4.p-4 {
        padding: 1rem !important;
        margin: 5px;
        width: calc(33.333% - 10px);
    }

    .row-three-column-b h3 {
        font-size: 16px !important;
    }

    .row-three-column-b p.p-small {
        font-size: 15px !important;
    }

    .row-col-two-img-left .ul-bulletpoint li {
        font-size: 16px !important;
    }

    /* Testimonials */
    .row-testimonials .container {
        padding: 2rem !important;
    }

    .row-testimonials .testimonial-slide {
        padding: 0 !important;
    }

    .row-testimonials .col-12.p-5.col-md-6.col-lg-6 {
        padding: 1.5rem !important;
    }

    /* CTA */
    .row-cta .containter {
        padding-top: 0 !important;
    }

    /* Hero Enterprise */
    .hero-bullets.container.mb-4.tablet {
        background-image: none;
        box-shadow: none;
        max-width: initial !important;
        padding: initial !important;
    }

    .hero-bullets.tablet .row div:nth-of-type(4) {
        display: none;
    }

    .hero-bullets.tablet .row div:nth-of-type(1),
    .hero-bullets.tablet .row div:nth-of-type(5) {
        text-align: right !important;
    }

    .hero-bullets.tablet .row div:nth-of-type(3),
    .hero-bullets.tablet .row div:nth-of-type(7) {
        text-align: left !important;
    }

    .hero-enterprise .subheading-two {
        font-size: 22px;
        max-width: 90% !important;
    }

    /* Two Col Img Left */
    .row-col-two-img-left .col-md-6.ps-5 {
        padding-left: 1.5rem !important;
    }

    /* AI Song Generator */
    .row-two-ai-song-generator {
        padding-top: 4rem;
    }

    /* ***** FOOTER ***** */
    .col-footer-legal li {
        display: inline-block;
        margin-right: 15px;
    }

    .footer-social {
        margin-top: 15px;
    }

}

@media (width: 768px) {

    .home .hero-full h1 {
        font-size: 48px !important;
    }

    .home .hero-full .mw-650 {
        max-width: 75% !important;
    }

}

@media (max-width: 767px) {

    /* GENERAL */
    h1 {
        font-size: 42px !important;
    }

    h1.h1-small {
        font-size: 38px !important;
    }

    h2 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

    .btn-cta {
        font-size: 15px;
    }

    .pt-6 {
        padding-top: 2.5rem !important;
    }

    .pb-6 {
        padding-bottom: 2.5rem !important;
    }

    .py-6 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .pt-10 {
        padding-top: 2.5rem !important;
    }

    .pb-10 {
        padding-bottom: 2.5rem !important;
    }

    .py-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .mobile-pb-0.pt-6,
    .mobile-pb-0.pb-6,
    .mobile-pb-0.py-6,
    .mobile-pb-0.pt-10,
    .mobile-pb-0.pb-10,
    .mobile-pb-0.py-10 {
        padding-bottom: 0 !important;
    }

    /* HERO FULL */
    .hero-full.vh-100 {
        height: calc(100vh - 75px) !important;
        margin-top: 75px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-full .container {
        background-image: none !important;
        box-shadow: none !important;
        max-width: 95% !important;
    }

    .hero-full .row {
        height: initial !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        --bs-gutter-x: 0;
    }

    .hero-full .col-lg-7.col-left {
        height: 100%;
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
    }

    .hero-full .col-left-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

    .home .hero-full h1 {
        font-size: 42px !important;
    }

    .hero-enterprise .subheading-two {
        font-size: 18px !important;
    }

    .hero-bullets.d-flex {
        display: block !important;
    }

    .hero-bullet.mx-2 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .hero-full .row-hero-counter {
        position: initial;
    }

    .hero-full div.my-4 {
        margin-top: 0 !important;
    }

    .hero-full .subheading {
        display: none;
    }

    .hero-full .btn-cta {
        width: calc(100% - 40px);
        margin: 0 20px;
        text-align: center;
        position: absolute;
        bottom: 20%;
        left: 0;
    }

    .hero-full .btn-cta {
        position: absolute;
        bottom: 17.5%;
    }

    .hero-enterprise .hero-counter {
        display: none !important;
    }

    /* HOME ROW TWO */
    .row-trusted-partners h2.h2-large {
        font-size: 34px !important;
        position: relative;
        top: 50px;
    }

    .row-trusted-partners h2 {
        font-size: 40px !important;
    }

    .row-trusted-partners {
        padding-bottom: 4rem;
    }

    /* ROW POINTS */
    .row-points .row.mb-5 {
        margin-bottom: 0 !important;
    }

    /* ROW THREE COLUMN */
    .row-three-column .col-md-6 {
        height: initial;
    }

    .row-three-column .work-card {
        background-position: center;
    }

    .row-three-column .mt-auto.text-end {
        margin-top: initial !important;
    }

    .row-three-column .work-card-container {
        display: flex;
    }

    .row-three-column .work-count {
        white-space: nowrap;
        margin-right: 25px;
        position: relative;
        top: -10px;
    }

    .home section.row-image-full {
        display: none;
    }


    .row-three-column-b .col-md-4.p-4 {
        width: calc(100% - 10px) !important;
    }

    .row-three-column-b p.mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .bento-media.bento-media--wide.flex-shrink-0 {
        height: initial;
    }

    .bento-card--wide.flex-column {
        flex-direction: column-reverse !important;
    }

    .bento-content.bento-content--wide.flex-grow-1 {
        padding-top: 0;
    }

    .bento-two-row .bento-title {
        font-size: 16px !important;
    }

    /* ENTERPRISE */
    /* Row Points */
    .row-points .point-row.is-first {
        margin-top: 0;
    }

    .row-points .btn-cta {
        width: 100%;
    }

    /* Row Col Two Img Left */
    .row-col-two-img-left .col-md-6.ps-5 {
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
        margin-top: 35px;
    }

    .row-col-two-img-left h2 {
        text-align: center;
        margin-bottom: 15px;
    }

    .row-col-two-img-left .ul-bulletpoint li {
        font-size: 16px;
    }

    .row-col-two-img-left .btn-cta {
        width: 100%;
    }

    /* FAQ */
    .home .row-faq {
        padding-top: 2rem;
    }

    .row-faq .row.mb-5 {
        margin-bottom: 2rem !important;
    }

    .row-faq h3.accordion-header {
        font-size: 17px !important;
    }

    .row-faq .accordion-button {
        font-size: 18px;
    }

    .page-id-225 .row-faq.py-6 {
        padding-top: 0 !important;
    }

    /* ROW CTA */
    .row-cta {
        background-image: none;
        margin-top: 0;
    }

    .row-cta .container {
        padding: 2rem;
    }

    .page-id-225 .row-faq.py-6 {
        padding-bottom: 0 !important;
    }

    .row-cta .col-12 {
        padding: 0;
    }

    p.p-large {
        font-size: 16px !important;
    }

    p.my-5 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* ***** LICENSE ***** */
    .lt-icon {
        display: block;
        position: relative;
        top: 5px;
        left: -4px;
    }

    /* ***** LOFI MUSIC ***** */
    .hero-lofi {
        height: 100vh !important;
    }

    .hero-lofi .container,
    body .hero-full.hero-lofi .row {
        height: 100% !important;
    }

    .hero-lofi .btn-cta {
        position: absolute;
        bottom: 17.5%;
    }

    .lofi-row-three {
        text-align: center;
    }

    .lofi-row-four .row.mb-5 {
        margin-bottom: 1rem !important;
    }

    .row-two-column-b .col-md-6 p.mb-4 {
        margin-bottom: 0 !important;
    }

    /* Row Three Column B */
    .row-three-column-b .col-md-4 p.mb-4 {
        margin-bottom: 0 !important;
    }

    /* PRICING */
    .pricing-table .row.mb-5 {
        margin-bottom: 1rem !important;
    }

    /* AI SONG GENERATOR */
    .row-two-ai-song-generator {
        text-align: center;
    }

    /* Timeline */
    .mod-steps-timeline .steps-col-left {
        margin-bottom: 0;
    }

    .mod-steps-timeline .step-item:last-of-type .step-copy.pb-5 {
        padding-bottom: 0 !important;
    }

    .row-four-ai-song-generator.py-6 {
        padding-top: 0 !important;
    }

    /* Testimonial */
    .row-testimonials .container {
        padding: initial !important;
    }

    .row-testimonials .testimonial-slide,
    .row-testimonials .col-md-6.p-5 {
        padding: 1.5rem !important;
    }

    .row-testimonials .col-md-6.p-5 {
        margin-top: 0 !important;
    }

    /* HERO ENTERPRISE */
    .hero-bullets.tablet {
        display: none !important;
    }

    /* ***** FOOTER ***** */
    .col-footer-legal li {
        display: block;
        margin-right: initial;
    }

    .subfooter .divider {
        display: none;
    }

    .subfooter .brand-name,
    .subfooter .footer-accessibility,
    .subfooter .powered-by {
        display: block;
    }

}
