@font-face {
    font-family: 'Gotham-Bold';
    src: url('/wp-content/themes/deposco/fonts/Gotham-Bold.eot');
    src: url('/wp-content/themes/deposco/fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
    url('/wp-content/themes/deposco/fonts/Gotham-Bold.woff') format('woff'),
    url('/wp-content/themes/deposco/fonts/Gotham-Bold.ttf') format('truetype'),
    url('/wp-content/themes/deposco/fonts/Gotham-Bold.svg#glyphicons_halflingsregular') format('svg');
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url('/wp-content/themes/deposco/fonts/Gotham-Medium.eot');
    src: url('/wp-content/themes/deposco/fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
    url('/wp-content/themes/deposco/fonts/Gotham-Medium.woff') format('woff'),
    url('/wp-content/themes/deposco/fonts/Gotham-Medium.ttf') format('truetype'),
    url('/wp-content/themes/deposco/fonts/Gotham-Medium.svg#glyphicons_halflingsregular') format('svg');
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Book';
    src: url('/wp-content/themes/deposco/fonts/Gotham-Book.eot');
    src: url('/wp-content/themes/deposco/fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
    url('/wp-content/themes/deposco/fonts/Gotham-Book.woff') format('woff'),
    url('/wp-content/themes/deposco/fonts/Gotham-Book.ttf') format('truetype'),
    url('/wp-content/themes/deposco/fonts/Gotham-Book.svg#glyphicons_halflingsregular') format('svg');
    font-display: swap;
}


* {
    -webkit-font-smoothing: antialiased;
    font-family: 'Gotham-Book';
}

footer a {
    text-decoration: none;
}

body, p {
    font-family: 'Gotham-Book', sans-serif;
    font-weight: 400; /* Book */
    letter-spacing: 0;
}

h1 {
    letter-spacing: -3px;
}

h1, h1 span, h2, h2 span, h3, h3 span {
    font-family: 'Gotham-Bold'; /* Bold */
    letter-spacing: -2px;
}

h5 {
    font-family: 'Gotham-Bold'; /* Bold */
    letter-spacing: -.5px;
}

strong, .text-bold {
    font-family: 'Gotham-Bold'; /* Bold */
}

.btn, .btn span, .badge {
    font-family: 'Gotham-Medium'!important;
}

.badge {
    font-weight: normal;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
}

.container-xl {
    max-width: 1500px;
}

/* Navbar styles */
.navbar {
    padding: 1.5rem 1rem!important;
    border-bottom: 0;
    background: transparent;

    z-index: 1030;
    transition: padding 0.3s ease, border-bottom 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.75rem 1rem!important;
    border-bottom: 1px solid #ebf0f5;
    transition: padding 0.3s ease, border-bottom 0.3s ease;
}

.navbar-brand {
    font-weight: 500;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 30px;
}

.brand-separator {
    margin: 0 0.5rem;
    font-weight: 300;
    color: #6c757d;
}

/* Original hero section styles */
.hero-section {
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(-90deg, rgb(239, 246, 255), transparent);
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: #36677d;
    border-radius: 0 100rem 100rem 0;
}

.hero-content {
    padding: 10rem 0rem 10rem 0rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500 !important;
}

.text-primary {
    color: #36677d!important;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.gradient-title .blue-text {
    color: #36677d;
}


.insights-button .arrow {
    margin-left: 0.5rem;
}

@media (min-width: 768px) {
    .gradient-title {
        font-size: 4rem;
    }
}

.hero-image {
    text-align: center;
}


@media (max-width: 992px) {
    .hero-bg::before, .hero-bg::after {
        width: 100%;
        height: 50%;
    }
	
	.form-check label {
    font-size: 1rem!important;
    line-height: 1.5;
    margin-bottom: 1rem;
}

    .hero-bg::before {
        top: 0;
    }

    .hero-bg::after {
        top: 50%;
    }

    .hero-content, .hero-image {
        text-align: center;
        padding: 2rem;
    }

    .check-item {
        justify-content: center;
    }

    .gradient-content {
        padding: 1rem;
    }
}

.section-hero {
    background: linear-gradient(#e7ecf1, rgba(0, 0, 0, 0));
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, #437b94 0%, #36677d 50%, #204859 100%);
    opacity: 0.8;
    animation: pulse 10s infinite ease-in-out;
    z-index: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.floating-element-1 {
    background-image: url(https://cdn.deposco.com/wp-content/uploads/2025/03/barcode.svg?x42562);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 100;
    filter: opacity(0.5);
    opacity: .1;
    right: 15rem;
    width: 15vw;
    height: 100%;
    top: 0;
}

.floating-element-2 {
    background-image: url(https://cdn.deposco.com/wp-content/uploads/2025/03/circle.svg?x42562);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 100;
    opacity: .1;
    left: 20%;
    width: 15vw;
    height: 15vw;
    top: 40rem;
    z-index: 1;
}

.floating-element-3 {
    background-image: url(https://cdn.deposco.com/wp-content/uploads/2025/03/semicircles.svg?x42562);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 100;
    left: -2rem;
    width: 10vw;
    height: 10vw;
    top: 10rem;
    z-index: 1;
}

.floating-element-4 {
    background-image: url(https://cdn.deposco.com/wp-content/uploads/2025/03/circle-grid.svg?x42562);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 100;
    right: 6vw;
    width: 6vw;
    height: 6vw;
    top: 30rem;
    z-index: 1;
}

.floating-element-6 {
    background-image: url(https://cdn.deposco.com/wp-content/uploads/2025/03/barcode.svg?x42562);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 100;
    filter: opacity(0.5);
    opacity: .1;
    right: 15rem;
    width: 15vw;
    height: 100%;
    bottom: 0;
    transform: rotate(180deg);
}

.floating-element-8 {
    background-image: url(img/svg/circle.svg);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 100;
    opacity: .0375;
    left: 20%;
    width: 15vw;
    height: 15vw;
    top: -10rem;
    z-index: 0;
}

.floating-element-7 {
    background-image: url(img/svg/semicircles.svg);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 100;
    left: -2rem;
    width: 10vw;
    height: 10vw;
    bottom: 0rem;
    z-index: 0;
}

.floating-element-9 {
    background-image: url(img/svg/circle-grid.svg);
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 100;
    right: 0vw;
    width: 6vw;
    height: 6vw;
    top: 4rem;
    z-index: 1;
}

.shimmer {
    color: #36677d;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.badge-primary {
    border: 1px solid #000000;
    color: #000000!important;
    background: transparent!important;
}

@keyframes ail-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.container-bg {
    padding: 5rem;
    background: linear-gradient(0deg, #ffffff, rgb(245 249 252));
    border-radius: 5rem;
}
@media (max-width: 992px) {
    .section-hero {
        padding: 3rem 0 4rem 0 !important;
    }
    .section-highlights {
        padding: 4rem 0 15rem!important;
    }
    .container-bg {
        padding: 3rem 2rem;
        border-radius: 2rem;
    }
    .section-download {
        padding: 0!important;
        margin-top: 0!important;
    }
}

@keyframes float1 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}
@keyframes float2 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-50px); }
    100% { transform: translateY(0); }
}
@keyframes float3 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
@keyframes float4 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
    100% { transform: translateY(0); }
}

/*         .floating-element-1, .floating-element-6 {
            animation: float1 8s ease-in-out infinite;
        } */
.floating-element-2, .floating-element-7 {
    animation: float2 12s ease-in-out infinite;
}
.floating-element-3, .floating-element-8 {
    animation: float3 6s ease-in-out infinite;
}
.floating-element-4, .floating-element-9 {
    animation: float4 10s ease-in-out infinite;
}


/* Override Bootstrap 5 btn-primary with #f48020 */

/* Base state */
.btn-primary {
    background-color: #f48020 !important;
    border-color: #f48020 !important;
    color: #fff !important;
}

/* Hover state */
.btn-primary:hover {
    background-color: #d9701c !important; /* Slightly darker for hover */
    border-color: #d9701c !important;
    color: #fff !important;
}

/* Focus state */
.btn-primary:focus,
.btn-primary.focus {
    background-color: #d9701c !important;
    border-color: #d9701c !important;
    box-shadow: 0 0 0 0.25rem rgba(244, 128, 32, 0.5) !important; /* Orange tinted shadow */
    color: #fff !important;
}

/* Active state */
.btn-primary:active,
.btn-primary.active,
.btn-primary:not(:disabled):not(.disabled):active {
    background-color: #c06418 !important; /* Even darker for active state */
    border-color: #c06418 !important;
    color: #fff !important;
}

/* Active focus state */
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus {
    box-shadow: 0 0 0 0.25rem rgba(244, 128, 32, 0.5) !important;
}

/* Disabled state */
.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #f48020 !important;
    border-color: #f48020 !important;
    opacity: 0.65 !important; /* Standard Bootstrap disabled opacity */
}

/* Ensure text remains visible during button transitions */
.btn-check:focus + .btn-primary,
.btn-primary:focus {
    color: #fff !important;
}

/* Outline variant - maintaining your brand color */
.btn-outline-primary {
    color: #f48020 !important;
    border-color: #f48020 !important;
}

.btn-outline-primary:hover {
    background-color: #f48020 !important;
    border-color: #f48020 !important;
    color: #fff !important;
}

@media (max-width: 992px) {
    .navbar-brand img {
        height: 20px !important;
    }
}

.navbar-transparent {
    background: transparent!important;
    transition: padding 0.3s ease, border-bottom 0.3s ease;
}








/* Existing styles remain unchanged */
.navbar-bottom {
    position: fixed;
    bottom: 0;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
    z-index: 1000;
}

.navbar-bottom.visible {
    transform: translateY(0);
}

.navbar-bottom_list {
    background: rgba(255, 255, 255, .8);
    border-radius: 10rem;
    margin: 2rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: .75rem 0;
    position: relative;
    --indicator-left: 0px;
    --indicator-width: 0px;
    --indicator-opacity: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 25px rgb(19 28 33 / 10%);
}


.navbar-bottom_list li {
    margin: 0;
    display: contents;
}

.navbar-bottom_list li a {
    padding: 1rem!important;
    text-decoration: none;
    font-family: 'Gotham-Medium';
    color: #000;
    min-width: 9rem;
    transition: color 0.2s ease;
    position: relative; /* For proper positioning */
    display: inline-block; /* Important for measurement */
    font-weight: normal;
}

/* Updated active state styles */
.navbar-bottom_list li a.active {
    color: #fff;
    position: relative;
    z-index: 1;
}

.navbar-bottom_list::after {
    content: '';
    position: absolute;
    height: calc(100% - 2rem);
    background-color: #000;
    transition: all 0.3s ease;
    width: var(--indicator-width);
    left: var(--indicator-left);
    opacity: var(--indicator-opacity);
    border-radius: 11rem;
    z-index: 0;
    margin: auto;
}

button.accordion-button {
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: transparent!important;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0!important;
}

.accordion-button:focus {
    box-shadow: none;
}

.thumbsSlider .swiper-slide-thumb-active {
    border-radius: .5rem;
    background: #000;
}

.thumbsSlider .swiper-slide-thumb-active .thumb-link {
    color: #fff;
}

.thumbsSlider .swiper-slide {
    cursor: pointer;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e2ecf4;
}

.accordion-button:not(.collapsed) {
    background: #eee;
    color: #000;
}

.lead {
    font-size: 1.75rem;
}

.sticky-image {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.sticky-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.sticky-image img:not(.active) {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.sticky-image img.active {
    opacity: 1;
    position: relative;
}

.content-section {
    padding: 4rem 0;
}

.scrollable-content {
    padding: 3rem;
}

.content-block {
    min-height: 70vh;
    padding: 2rem 0;
}

.third-section {
    min-height: 100vh;
    background-color: #e9ecef;
    padding: 4rem 0;
}

.intro {
    font-size: 1.125rem!important;
}

/* Parallax Section Styling */
.parallax-section {
    overflow: hidden;
}

.min-h-100 {
    min-height: 100vh;
}

.parallax-text {
    /* Using vw (viewport width) for responsive font sizing */
    font-size: 5vw; /* 8vw = 8% of viewport width, so both lines together = 16vw */
    font-weight: 700;
    transition: transform 0.1s ease-out;
    white-space: nowrap;
    width: 100%;
    font-family: 'Gotham-Bold';
    line-height: 5vw;
    letter-spacing: -.1vw;
}

#text-left {
    transform: translateX(-100%); /* Start off-screen left */
}

#text-right {
    transform: translateX(100%); /* Start off-screen right */
}

/* Use container-fluid for full width */
.container-fluid {
    padding: 0 15px;
}

.columns-2 {
    gap: 2rem;
}











.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 2rem;
}
.case-study-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.case-study-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-color: #D9E4ED;
    background-image: linear-gradient(45deg, #D9E4ED, #D9E4ED);
}
.case-study-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-description {
    color: #4f566b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}
.case-study-link {
    font-family: 'Gotham-Medium';
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
    border-top: 1px solid #D9E4ED;
    padding-top: 1.5rem;
    cursor: pointer;
}
.case-study-link:hover {
    color: #36677d;
}
.case-study-link .arrow {
    margin-left: 0.25rem;
    font-size: 1.1rem;
}
.swiper {
    width: 100%;
    padding-bottom: 2rem;
}
.swiper-slide {
    height: auto;
}
.swiper-button-next, .swiper-button-prev {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none; /* Hide default arrows */
}
.swiper-button-container {
    display: flex;
    gap: .25rem;
    z-index: 10;
}

.swiper-prev i, .swiper-next i {
    padding: .25rem;
    background: #d9e4ed;
    border-radius: 50%;
    color: #000;
}

.swiper-pagination-bullet {
    background: #36677d;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .case-study-title {
        font-size: 1.1rem;
    }
}

.case-study-title {
    font-size: 1.5rem;
    font-family: 'Gotham-Bold';
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottoM: .5rem;
}

.overflow-visible {
    overflow: visible!important;
}

body {overflow-x: hidden;}

ul.list-styled li {
    font-size: 1.125rem;
}

.list-styled li:before {
    margin-right: -20px;
}







.metric-row {
    border-bottom: 1px solid rgba(0,0,0,.1);
    mix-blend-mode: multiply;
}

.metric-row:last-child {
    border: none;
}

.metric-row td {
    border-right: 1px solid rgba(0,0,0,.1)!important;
}

.metric-row td:last-child {
    border-right: none!important;
}

tr.comparison-header {
    border-bottom: 3px solid #D9E4ED;
    mix-blend-mode: multiply;
}

tr.comparison-header th {
    border-right: 1px solid #D9E4ED!important;
}

tr.comparison-header th:last-child {
    border: none!important;
}



.metric-row {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.metric-row:hover {
    border-left: 4px solid #f48020;
    background-color: rgba(244,128,32,.1);
    mix-blend-mode: multiply;
}

.metric-name {
    font-weight: 600;
    color: #495057;
    text-align: left;
    font-family: 'Gotham Bold';
    letter-spacing: -.5px;

}

.table {
    margin-bottom: 0;
}

.table td {
    vertical-align: middle;
}

.netsuite-col {
    background-color: #f3f7f9;
}

.combined-col {
    background-color: #f3f7f9;
}

.table-comparison th,.table-comparison td {
    padding: 1.5rem 2rem!important;
    font-size: 1.125rem!important;
    letter-spacing: -.5px;
}

.comparison-header th {
    font-family: 'Gotham Bold';
    letter-spacing: -.5px;
}

.table th, .table td {
    background: none;
    padding: 1rem;
    font-size: 1.25rem;
}

.card {
    border: 1px solid #D9E4ED;
}

.table-shadow {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.faqs {
    display: flex;
    gap: 4rem;
}

.faq-question {
    font-family: 'Gotham-Medium';
}

.faq-container {
    gap: 2rem;
    justify-content: space-between;
}





.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.flex {
    flex: 1;
}




/* Remove the default Bootstrap accordion arrow */
.accordion_faqs
.accordion-button::after {
    display: none;
}

/* Add the Material Icons icon */
.accordion-button .material-icon {
    transition: transform 0.2s ease-in-out;
    font-size: 24px; /* Adjust size as needed */
    margin-left: auto; /* Push to the right side */
    color: #f48020;
}

/* Rotate the icon when accordion is open */
.accordion-button:not(.collapsed) .material-icon {
    transform: rotate(45deg);
    color: #000;
}



.accordion-button::after {
    transition: transform 0.2s ease-in-out;
}

.accordion-button.collapsed::after {
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.blog {
    border-bottom: 1px solid #D9E4ED;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
}

.blog:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.personaSwiper .case-study-image {
    background: #fff;
}









 .btn-group .btn {
     border: 1px solid #ccc!important;
 }

.btn:hover {
    box-shadow: none;
}

.assessment-section {
    padding: 1.5rem;
    border-radius: 0.5rem;
}
.results-section {
    display: none;
    margin-top: 2rem;
}

.progress {
    height: 10px;
}

/* New table styles */
.rounded-5 {
    border-radius: 1rem;
}


.bg-primary {
    background-color: #36677d !important;
    height: 100%;
}

.form-check label {
    font-size: 1.125rem!important;
    line-height: 2.5rem;
}

.form-check-input {
    font-size: 1.125rem;
}

.form-check-input:checked {
    background-color: #36677d;
    border-color: #36677d;
}

.progress {
    height: 16px;
    border-radius: 40px;
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(30, 151, 221, .2);
}

.form-check-input {
    height: 1.5rem!important;
    width: 1.5rem!important;
    top: .125rem;
}

.form-check-label {
    margin-left: .5rem;
}

.btn-mw-0 {
    min-width: 0 !important;
}

.fw-bold {
    font-family: 'Gotham-Bold';
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background-image: url('/wp-content/themes/deposco/img/circle.svg?x42562');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.card {
    border: none!important;
}

.citations {
    font-size: 10px;
    text-align: left;
    margin-top: 2rem;
    border-top: 1px solid #e2ecf4;
    padding-top: 1rem;
}

.personaSwiper .swiper-pagination-bullet {
    background: #fff;
}

.assessment-context-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 10px;
    text-align: left;
    margin-top: 2rem;
    border-top: 1px solid #e2ecf4;
    padding: 2rem 0rem 1rem;
    font-style: italic;
}

.assessment-context {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assessment-context-detail {
    font-size: 12px;
}

.results-section li {
    font-size: 1rem!important;
    margin: .75rem 0;
}

.results-section ul {
    margin: 0;
}