/**
 * Chanvalli corporate marketing polish
 */

:root {
    --cv-corp-font: "Plus Jakarta Sans", "cv-text-normal", system-ui, sans-serif;
    --cv-corp-display: "Manrope", "cv-header-bold", system-ui, sans-serif;
    --cv-corp-surface-soft: #f4f8fb;
    /* Fixed bar height — never overwrite from JS (avoids grow-loop with min-height) */
    --cv-corp-header-h: 72px;
    --cv-sticky-offset: 88px;
}

html {
    scroll-padding-top: var(--cv-sticky-offset);
}

body {
    font-family: var(--cv-corp-font);
    background: #fff;
    color: var(--cv-text);
    font-size: 1.0625rem;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--cv-corp-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cv-section {
    padding: 80px 0;
    scroll-margin-top: var(--cv-sticky-offset);
}

@media (max-width: 767.98px) {
    .cv-section {
        padding: 56px 0;
    }
}

/*------------------------------------------------------------
Header — sticky without content bleed-through
------------------------------------------------------------*/
#navbar_top.cv-navbar {
    background: var(--navbar-bg, #003e68);
    box-shadow: none;
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

#navbar_top.cv-navbar--sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--navbar-bg, #003e68);
    /* Keep sticky ancestors free of clipping */
    overflow: visible;
}

#navbar_top.cv-navbar.is-scrolled {
    background: var(--navbar-bg, #003e68);
    box-shadow: 0 8px 24px rgba(0, 42, 72, 0.28);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

#navbar_top.cv-navbar nav.navbar {
    min-height: var(--cv-corp-header-h);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    background: transparent !important;
}

#navbar_top.cv-navbar .navbar-brand {
    margin-right: 1rem;
}

#navbar_top.cv-navbar .navbar-brand img {
    max-height: 44px;
    width: auto;
}

@media (max-width: 991.98px) {
    #navbar_top.cv-navbar .navbar-brand img {
        max-height: 36px;
    }
}

#navbar_top.cv-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.55);
}

#navbar_top.cv-navbar .navbar-toggler-icon {
    /* White hamburger strokes on dark navbar */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 25h22'/%3e%3c/svg%3e");
}

#navbar_top.cv-navbar.cv-navbar--light .navbar-toggler {
    border-color: rgba(0, 42, 72, 0.35);
}

#navbar_top.cv-navbar.cv-navbar--light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 42, 72, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 25h22'/%3e%3c/svg%3e");
}

#navbar_top.cv-navbar .navbar .nav-link {
    color: var(--navbar-text, #fff) !important;
    font-weight: 500;
}

#navbar_top.cv-navbar .navbar .nav-link:hover,
#navbar_top.cv-navbar .navbar .nav-link:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--navbar-text, #fff) !important;
}

#navbar_top.cv-navbar .navbar .nav-link.cv-nav-cta {
    background: #e8a838 !important;
    color: #002a48 !important;
    border-radius: 999px;
    padding: 0.55rem 1.15rem !important;
    margin-left: 0.75rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

#navbar_top.cv-navbar .navbar .nav-link.cv-nav-cta:hover,
#navbar_top.cv-navbar .navbar .nav-link.cv-nav-cta:focus {
    background: #f0b84a !important;
    color: #002a48 !important;
}

#navbar_top.cv-navbar .cv-nav-login {
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 500;
    font-size: 0.9rem;
}

#navbar_top.cv-navbar .cv-nav-login:hover {
    color: #fff !important;
    background: transparent !important;
}

/* Light navbar variant (theme editor / white header) */
#navbar_top.cv-navbar.cv-navbar--light {
    background: var(--navbar-bg, #fff);
}

#navbar_top.cv-navbar.cv-navbar--light.is-scrolled {
    background: var(--navbar-bg, #fff);
    box-shadow: 0 8px 24px rgba(0, 62, 104, 0.08);
    border-bottom-color: var(--cv-border);
}

#navbar_top.cv-navbar.cv-navbar--light .navbar .nav-link {
    color: var(--navbar-text, var(--cv-primary-dark)) !important;
}

#navbar_top.cv-navbar.cv-navbar--light .navbar .nav-link:hover,
#navbar_top.cv-navbar.cv-navbar--light .navbar .nav-link:focus {
    background: rgba(0, 62, 104, 0.06);
    color: var(--cv-primary) !important;
}

#navbar_top.cv-navbar.cv-navbar--light .navbar .nav-link.cv-nav-cta {
    background: var(--cv-primary) !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(0, 62, 104, 0.18);
}

#navbar_top.cv-navbar.cv-navbar--light .navbar .nav-link.cv-nav-cta:hover,
#navbar_top.cv-navbar.cv-navbar--light .navbar .nav-link.cv-nav-cta:focus {
    background: var(--cv-primary-dark) !important;
    color: #fff !important;
}

#navbar_top.cv-navbar.cv-navbar--light .cv-nav-login {
    color: var(--cv-text-muted) !important;
}

#navbar_top.cv-navbar.cv-navbar--light .cv-nav-login:hover {
    color: var(--cv-primary) !important;
}

/*------------------------------------------------------------
Hero
------------------------------------------------------------*/
.cv-hero {
    padding: 96px 0 104px;
    scroll-margin-top: var(--cv-sticky-offset);
}

.cv-hero__inner {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cv-hero__grid {
    display: grid;
    gap: 2.75rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cv-hero__copy {
    max-width: 560px;
}

.cv-hero__title {
    color: #fff !important;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.15;
    max-width: 700px;
    margin: 0 auto 1.15rem;
    font-weight: 700;
}

.cv-hero.text-start .cv-hero__title,
.cv-hero .text-start .cv-hero__title,
.cv-hero--split .cv-hero__title {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.cv-hero__subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 2.15rem;
}

.cv-hero--split .cv-hero__subtitle {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2.35rem;
}

.cv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.cv-hero .text-start .cv-hero-actions,
.cv-hero--split .cv-hero-actions {
    justify-content: flex-start;
}

.cv-hero-btn {
    border-radius: 999px;
    padding: 0.8rem 1.4rem;
    font-weight: 700;
}

.cv-hero-btn--primary {
    background: #fff;
    color: #002a48;
    border: 1px solid #fff;
}

.cv-hero-btn--primary:hover {
    background: #f1f5f9;
    color: #002a48;
}

.cv-hero-btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.cv-hero-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cv-hero__visual {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.cv-visual--hero {
    margin: 0;
}

.cv-visual__svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 48px rgba(0, 20, 40, 0.32));
}

@media (min-width: 992px) {
    .cv-hero--split {
        padding: 92px 0 108px;
    }

    .cv-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
        gap: 2.75rem;
    }

    .cv-hero__visual {
        margin: 0;
        justify-self: end;
        max-width: 580px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .cv-hero__visual {
        max-width: 480px;
    }
}

@media (max-width: 767.98px) {
    .cv-hero {
        padding: 72px 0 80px;
    }
    .cv-hero-actions {
        flex-direction: column;
    }
    .cv-hero-btn {
        width: 100%;
    }
    .cv-hero__visual {
        max-width: 440px;
    }
}

/*------------------------------------------------------------
Pillars
------------------------------------------------------------*/
.cv-pillars {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.cv-pillar-card {
    border: 1px solid var(--cv-border);
    border-radius: 1rem;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cv-pillar-card__body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem 1.5rem;
    min-height: 280px;
}

.cv-pillar-card__title {
    font-size: 1.25rem;
    margin: 0.75rem 0 0.5rem;
    color: var(--cv-primary-dark);
}

.cv-pillar-card__text {
    color: var(--cv-text-muted);
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.cv-card-icon {
    font-size: 1.75rem;
    color: var(--cv-primary);
}

.cv-pillar-card__btn {
    align-self: flex-start;
    border-radius: 999px;
    background: var(--cv-primary);
    border-color: var(--cv-primary);
    color: #fff;
    font-weight: 600;
}

.cv-pillar-card__btn:hover {
    background: var(--cv-primary-dark);
    border-color: var(--cv-primary-dark);
    color: #fff;
}

.cv-pillar-card--featured {
    border-color: rgba(0, 62, 104, 0.35);
    box-shadow: 0 12px 32px rgba(0, 62, 104, 0.1);
    transform: translateY(-4px) scale(1.03);
}

@media (max-width: 991.98px) {
    .cv-pillar-card--featured {
        transform: none;
    }
}

/*------------------------------------------------------------
Process flow
------------------------------------------------------------*/
.cv-process-flow__list {
    gap: 1.75rem;
}

.cv-process-flow__marker {
    background: var(--cv-primary);
    box-shadow: 0 8px 18px rgba(0, 62, 104, 0.16);
    width: 2.75rem;
    height: 2.75rem;
    flex-basis: 2.75rem;
}

.cv-process-flow__icon {
    font-size: 1.25rem;
    line-height: 1;
}

.cv-process-flow__connector {
    display: none;
    background: transparent !important;
    height: auto !important;
}

.cv-process-flow__connector-line {
    display: block;
    flex: 1 1 auto;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(0, 62, 104, 0.28) 0%,
        rgba(232, 168, 56, 0.7) 50%,
        rgba(0, 62, 104, 0.28) 100%
    );
}

.cv-process-flow__connector-dot {
    display: block;
    width: 7px;
    height: 7px;
    margin-left: -2px;
    border-radius: 50%;
    background: #e8a838;
    box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.2);
}

.cv-process-flow__footer-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.25rem;
}

.cv-process-flow__label {
    font-weight: 700;
    color: var(--cv-primary-dark);
    font-size: 1.05rem;
}

.cv-process-flow__text {
    color: var(--cv-text-muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.cv-process-flow__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    background: rgba(0, 62, 104, 0.08);
    color: var(--cv-primary);
    font-weight: 700;
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .cv-process-flow__step:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 1.3rem;
        top: 2.85rem;
        bottom: -1.5rem;
        width: 2px;
        background: linear-gradient(
            180deg,
            rgba(0, 62, 104, 0.3),
            rgba(232, 168, 56, 0.45)
        );
        border-radius: 2px;
    }
}

@media (min-width: 768px) {
    .cv-process-flow__list {
        gap: 0;
    }

    .cv-process-flow__connector {
        display: flex !important;
        align-items: center;
        position: absolute;
        top: 1.3rem;
        left: calc(50% + 1.55rem);
        width: calc(100% - 3.1rem);
        z-index: 0;
    }

    .cv-process-flow__marker {
        position: relative;
        z-index: 1;
    }
}

/*------------------------------------------------------------
Problem list / timeline / partners
------------------------------------------------------------*/
.cv-problems__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem 2.5rem;
}

@media (min-width: 768px) {
    .cv-problems__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.cv-problem-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.cv-problem-item__mark {
    flex: 0 0 auto;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: rgba(0, 62, 104, 0.07);
    color: var(--cv-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    line-height: 1;
    margin-top: 0.1rem;
}

.cv-problem-item__mark i {
    line-height: 1;
}

.cv-problem-item__title {
    margin: 0 0 0.3rem;
    font-size: 1.08rem;
    color: var(--cv-primary-dark);
}

.cv-problem-item__text {
    margin: 0;
    color: var(--cv-text-muted);
    font-size: 1.08rem;
    line-height: 1.6;
}

.cv-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    position: relative;
}

@media (min-width: 768px) {
    .cv-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    .cv-timeline::before {
        content: "";
        position: absolute;
        top: 1.1rem;
        left: 8%;
        right: 8%;
        height: 2px;
        background: rgba(0, 62, 104, 0.15);
    }
}

.cv-timeline__step {
    position: relative;
    text-align: left;
}

@media (min-width: 768px) {
    .cv-timeline__step {
        text-align: center;
    }
}

.cv-timeline__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: #fff;
    border: 2px solid var(--cv-primary);
    color: var(--cv-primary);
    font-weight: 800;
    position: relative;
    z-index: 1;
    margin-bottom: 0.85rem;
}

.cv-timeline__title {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
}

.cv-timeline__text {
    margin: 0;
    color: var(--cv-text-muted);
    font-size: 1.08rem;
    line-height: 1.6;
}

.cv-partners__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem 2.5rem;
    max-width: 880px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cv-partners__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.75rem 3.5rem;
    }
}

.cv-partner-item {
    padding: 0.25rem 0;
}

.cv-partner-item__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 62, 104, 0.08);
    color: var(--cv-primary);
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.cv-partner-item__title {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
    color: var(--cv-primary-dark);
}

.cv-partner-item__text {
    margin: 0;
    color: var(--cv-text-muted);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 28ch;
}

.cv-section-heading {
    text-align: center;
    margin-bottom: 2.25rem;
}

.cv-section-heading h2 {
    margin-bottom: 0.5rem;
}

.cv-section-heading p {
    margin: 0 auto;
    max-width: 640px;
    color: var(--cv-text-muted);
    font-size: 1.08rem;
    line-height: 1.6;
}

.cv-surface-soft {
    background: var(--cv-corp-surface-soft);
}

.cv-cta-band,
.cv-process-flow,
.cv-timeline,
.pagebuilder-content > .row {
    scroll-margin-top: var(--cv-sticky-offset);
}

/*------------------------------------------------------------
CTA band
------------------------------------------------------------*/
.cv-cta-band {
    padding: 100px 0;
}

.cv-cta-band__inner {
    max-width: 720px;
}

.cv-cta-band__title {
    color: #fff !important;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 0.85rem;
}

.cv-cta-band__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

.cv-cta-band__btn {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .cv-cta-band {
        padding: 72px 0;
    }
}

/*------------------------------------------------------------
Footer
------------------------------------------------------------*/
#footer.cv-footer--corporate {
    background: #002a48;
    color: rgba(255, 255, 255, 0.88);
    padding: 3.5rem 0 1.5rem;
}

#footer.cv-footer--corporate a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

#footer.cv-footer--corporate a:hover {
    color: #fff;
}

.cv-footer-brand__name {
    display: block;
    font-family: var(--cv-corp-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.cv-footer-brand__tagline {
    display: block;
    font-weight: 600;
    color: #e8a838;
    margin-bottom: 0.75rem;
}

.cv-footer-brand__desc {
    margin: 0;
    max-width: 260px;
    color: rgba(255, 255, 255, 0.7);
}

.cv-footer-col__title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.cv-footer-col__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-footer-col__list li {
    margin-bottom: 0.45rem;
}

.cv-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.cv-footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
}

.cv-footer-bottom a:hover {
    color: #fff;
}

/* Page builder rows: breathe */
.pagebuilder-content > .row {
    --bs-gutter-x: 0;
}

/*------------------------------------------------------------
Software dashboard mockup
------------------------------------------------------------*/
.cv-software-visual-section {
    padding-top: 48px;
    padding-bottom: 24px;
}

.cv-software-visual {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cv-software-visual__caption {
    margin: 1.25rem 0 0;
    color: var(--cv-text-muted);
    font-size: 0.98rem;
}

.cv-visual--dashboard {
    margin: 0;
}

.cv-dash {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 62, 104, 0.12);
    box-shadow: 0 18px 48px rgba(0, 62, 104, 0.1);
    min-height: 280px;
    text-align: left;
}

.cv-dash__side {
    background: #003e68;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.cv-dash__brand {
    display: block;
    width: 2rem;
    height: 0.55rem;
    border-radius: 999px;
    background: #e8a838;
    margin-bottom: 0.75rem;
}

.cv-dash__nav {
    display: block;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.cv-dash__nav.is-active {
    background: rgba(255, 255, 255, 0.85);
}

.cv-dash__main {
    padding: 1rem 1.15rem 1.25rem;
    background: linear-gradient(180deg, #f7fbfe 0%, #fff 40%);
}

.cv-dash__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cv-dash__search {
    display: block;
    width: 42%;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(0, 62, 104, 0.1);
}

.cv-dash__avatar {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #75b4d8;
}

.cv-dash__kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 0.9rem;
}

.cv-dash__kpi {
    background: #fff;
    border: 1px solid rgba(0, 62, 104, 0.08);
    border-radius: 0.65rem;
    padding: 0.7rem 0.75rem;
    min-height: 3.4rem;
}

.cv-dash__kpi strong {
    display: block;
    width: 48%;
    height: 0.55rem;
    border-radius: 999px;
    background: #003e68;
    margin-bottom: 0.45rem;
}

.cv-dash__kpi i {
    display: block;
    width: 70%;
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(0, 62, 104, 0.15);
}

.cv-dash__panels {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.65rem;
}

.cv-dash__panel,
.cv-dash__list {
    background: #fff;
    border: 1px solid rgba(0, 62, 104, 0.08);
    border-radius: 0.65rem;
    min-height: 7.5rem;
}

.cv-dash__panel {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    padding: 0.85rem 0.9rem 0.75rem;
}

.cv-dash__bar {
    flex: 1;
    height: var(--h, 50%);
    border-radius: 0.35rem 0.35rem 0.15rem 0.15rem;
    background: linear-gradient(180deg, #75b4d8, #003e68);
    opacity: 0.85;
}

.cv-dash__list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.9rem;
}

.cv-dash__list span {
    display: block;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(0, 62, 104, 0.12);
}

.cv-dash__list span:nth-child(2) {
    width: 82%;
}

.cv-dash__list span:nth-child(3) {
    width: 64%;
}

.cv-dash__list span:nth-child(4) {
    width: 74%;
}

@media (max-width: 575.98px) {
    .cv-dash {
        grid-template-columns: 56px 1fr;
        min-height: 240px;
    }

    .cv-dash__panels {
        grid-template-columns: 1fr;
    }

    .cv-dash__list {
        display: none;
    }
}

.cv-hosting-mark {
    line-height: 0;
}
