:root{
    --cf-ink:#022041;
    --cf-ink-soft:#2f2e2c;
    --cf-blue:#0c53a5;
    --cf-blue-dark:#022041;
    --cf-gold:#0c53a5;
    --cf-gold-soft:#f7f9fc;
    --cf-text:#2f2e2c;
    --cf-muted:#66778a;
    --cf-border:#dfe7f0;
    --cf-surface:#ffffff;
    --cf-surface-soft:#f7f9fc;
    --cf-container:none;
    --cf-font:Shabnam,Tahoma,Arial,sans-serif;
}

*{
    box-sizing:border-box;
}

html{
    width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
    scroll-padding-top:120px;
}

body{
    margin:0;
    min-width:0;
    color:var(--cf-text);
    background:#fff;
    font-family:var(--cf-font);
    overflow-x:hidden;
}

body.cf-menu-lock{
    overflow:hidden;
}

.cf-container{
    width:100%;
    max-width:none;
    margin-inline:0;
    padding-inline:clamp(28px,3.4vw,72px);
}

/* Topbar */

.cf-topbar{
    min-height:38px;
    color:#fff;
    background:var(--cf-blue-dark);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.cf-topbar__inner{
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.cf-topbar__message{
    display:flex;
    align-items:center;
    gap:9px;
    min-width:0;
    font-size:11.5px;
    font-weight:700;
    letter-spacing:-.01em;
    white-space:nowrap;
}

.cf-topbar__dot{
    width:6px;
    height:6px;
    flex:0 0 6px;
    border-radius:50%;
    background:#ffffff;
    box-shadow:0 0 0 4px rgba(255,255,255,.12);
}

.cf-topbar__contact{
    display:flex;
    align-items:center;
    gap:14px;
    direction:ltr;
}

.cf-topbar__contact a{
    min-height:28px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:rgba(255,255,255,.82);
    text-decoration:none;
    font-size:11.5px;
    font-weight:700;
    transition:
        color .2s ease,
        opacity .2s ease;
}

.cf-topbar__contact a:hover{
    color:#fff;
}

.cf-topbar__separator{
    width:1px;
    height:14px;
    background:rgba(255,255,255,.18);
}

.cf-topbar__whatsapp{
    width:27px;
    height:27px;
    justify-content:center;
    border:1px solid rgba(255,255,255,.16);
    border-radius:50%;
}

/* Main header */

.cf-header{
    position:sticky;
    top:0;
    z-index:1000;
    width:100%;
    background:rgba(255,255,255,.97);
    border-bottom:1px solid rgba(16,25,34,.09);
    box-shadow:0 8px 26px rgba(16,25,34,.045);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.cf-header__inner{
    min-height:104px;
    display:grid;
    grid-template-columns:240px minmax(0,1fr) auto;
    align-items:center;
    gap:48px;
    position:relative;
    z-index:3;
}

.cf-logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    min-width:220px;
    text-decoration:none;
    line-height:0;
}

.cf-logo img{
    display:block;
    width:220px;
    height:auto;
    max-width:100%;
    max-height:94px;
    object-fit:contain;
    object-position:right center;
}

/* Desktop nav */

.cf-nav{
    min-width:0;
    display:flex;
    justify-content:center;
}

.cf-nav__list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3px;
}

.cf-nav__item{
    margin:0;
    padding:0;
}

.cf-nav__link{
    position:relative;
    min-height:104px;
    padding:0 18px;
    display:flex;
    align-items:center;
    gap:7px;
    color:var(--cf-ink-soft);
    text-decoration:none;
    font-size:13.5px;
    font-weight:850;
    white-space:nowrap;
    transition:
        color .2s ease,
        background .2s ease;
}

.cf-nav__link::before{
    content:"";
    position:absolute;
    right:18px;
    left:18px;
    bottom:0;
    height:2px;
    background:var(--cf-gold);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .25s ease;
}

.cf-nav__link:hover,
.cf-nav__link.is-active,
.cf-nav__link.is-open{
    color:var(--cf-blue);
}

.cf-nav__link:hover::before,
.cf-nav__link.is-active::before,
.cf-nav__link.is-open::before{
    transform:scaleX(1);
}

.cf-nav__link i{
    font-size:10px;
    color:var(--cf-muted);
    transition:transform .22s ease;
}

.cf-nav__link.is-open i{
    transform:rotate(180deg);
}

/* Header actions */

.cf-header__actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}

.cf-header__phone{
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--cf-blue-dark);
    background:#fff;
    border:1px solid var(--cf-border);
    border-radius:50%;
    text-decoration:none;
    transition:
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.cf-header__phone:hover{
    color:var(--cf-gold);
    border-color:rgba(183,139,66,.45);
    transform:translateY(-1px);
}

.cf-quote-button{
    min-height:46px;
    padding:0 19px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#fff;
    background:var(--cf-blue);
    border:1px solid var(--cf-blue);
    border-radius:9px;
    box-shadow:0 10px 24px rgba(12,83,165,.20);
    text-decoration:none;
    font-size:12.5px;
    font-weight:900;
    white-space:nowrap;
    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.cf-quote-button:hover{
    color:var(--cf-blue-dark);
    background:#fff;
    border-color:var(--cf-blue-dark);
    transform:translateY(-1px);
    box-shadow:0 13px 26px rgba(12,56,88,.12);
}

.cf-quote-button i{
    font-size:11px;
}

.cf-menu-button{
    display:none;
    width:46px;
    height:46px;
    padding:0;
    position:relative;
    border:1px solid var(--cf-border);
    border-radius:9px;
    background:#fff;
    cursor:pointer;
}

.cf-menu-button span{
    position:absolute;
    right:12px;
    width:20px;
    height:2px;
    border-radius:10px;
    background:var(--cf-ink);
}

.cf-menu-button span:nth-child(1){
    top:14px;
}

.cf-menu-button span:nth-child(2){
    top:21px;
}

.cf-menu-button span:nth-child(3){
    top:28px;
}

/* Mega menu */

.cf-mega{
    position:absolute;
    top:100%;
    right:0;
    left:0;
    z-index:2;
    width:100%;
    background:#fff;
    border-top:1px solid var(--cf-border);
    border-bottom:1px solid var(--cf-border);
    box-shadow:0 34px 70px rgba(16,25,34,.14);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(8px);
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .25s ease;
}

.cf-mega.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}

.cf-mega__inner{
    width:100%;
    max-width:none;
    min-height:410px;
    padding-block:28px;
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:30px;
}

.cf-mega__content{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    border:1px solid var(--cf-border);
    background:#fff;
}

.cf-mega__column{
    min-width:0;
    padding:25px 22px;
}

.cf-mega__column + .cf-mega__column{
    border-right:1px solid var(--cf-border);
}

.cf-mega__eyebrow{
    display:block;
    margin-bottom:7px;
    color:var(--cf-gold);
    font-size:10px;
    font-weight:900;
    letter-spacing:.04em;
}

.cf-mega__title{
    margin:0 0 18px;
    color:var(--cf-ink);
    font-size:16px;
    line-height:1.7;
}

.cf-mega__links{
    display:grid;
    gap:4px;
}

.cf-mega-link{
    min-height:70px;
    padding:10px 8px;
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--cf-text);
    border-bottom:1px solid #edf0f2;
    text-decoration:none;
    transition:
        background .2s ease,
        padding .2s ease,
        color .2s ease;
}

.cf-mega-link:last-child{
    border-bottom:0;
}

.cf-mega-link:hover{
    color:var(--cf-blue);
    background:var(--cf-surface-soft);
    padding-right:13px;
}

.cf-mega-link__icon{
    width:28px;
    height:28px;
    flex:0 0 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--cf-gold);
    border:1px solid rgba(183,139,66,.26);
    border-radius:50%;
    font-size:9px;
}

.cf-mega-link__content{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.cf-mega-link strong{
    color:inherit;
    font-size:12.5px;
    font-weight:900;
    line-height:1.6;
}

.cf-mega-link small{
    color:var(--cf-muted);
    font-size:10.5px;
    font-weight:600;
    line-height:1.7;
}

/* Mega feature */

.cf-mega-feature{
    min-height:100%;
    position:relative;
    isolation:isolate;
    overflow:hidden;
    color:#fff;
    background:
        linear-gradient(
            145deg,
            #022041 0%,
            #063b72 48%,
            #0c53a5 100%
        );
    border:1px solid rgba(12,83,165,.22);
    box-shadow:
        0 20px 45px rgba(2,32,65,.16),
        inset 0 1px 0 rgba(255,255,255,.12);
}

.cf-mega-feature::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(255,255,255,.18) 0,
            rgba(255,255,255,0) 32%
        ),
        linear-gradient(
            180deg,
            rgba(2,32,65,.04) 0%,
            rgba(2,32,65,.08) 42%,
            rgba(2,32,65,.94) 82%,
            rgba(2,32,65,.99) 100%
        );
}

.cf-mega-feature::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.13;
    background-image:
        linear-gradient(
            rgba(255,255,255,.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.12) 1px,
            transparent 1px
        );
    background-size:32px 32px;
    mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent 76%
        );
}

.cf-mega-feature__content{
    position:relative;
    z-index:3;
    min-height:356px;
    padding:27px 26px 24px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.cf-mega-feature__label{
    min-height:25px;
    margin-bottom:11px;
    padding:0 10px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#fff;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.20);
    border-radius:999px;
    font-size:9.5px;
    font-weight:900;
    letter-spacing:.02em;
    backdrop-filter:blur(8px);
}

.cf-mega-feature__label::before{
    content:"";
    width:5px;
    height:5px;
    flex:0 0 5px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 0 4px rgba(255,255,255,.12);
}

.cf-mega-feature h2{
    max-width:285px;
    margin:0;
    color:#fff;
    font-size:21px;
    font-weight:900;
    line-height:1.75;
    letter-spacing:-.025em;
    text-shadow:0 3px 14px rgba(2,32,65,.25);
}

.cf-mega-feature p{
    max-width:285px;
    margin:9px 0 0;
    color:rgba(255,255,255,.76);
    font-size:11.2px;
    font-weight:600;
    line-height:2;
}

.cf-mega-feature__points{
    width:100%;
    list-style:none;
    margin:auto 0 15px;
    padding:0;
    display:grid;
    gap:7px;
}

.cf-mega-feature__points li{
    min-height:27px;
    display:flex;
    align-items:center;
    gap:8px;
    color:rgba(255,255,255,.91);
    font-size:10.5px;
    font-weight:750;
}

.cf-mega-feature__points i{
    width:18px;
    height:18px;
    flex:0 0 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0c53a5;
    background:#fff;
    border-radius:50%;
    font-size:7px;
    box-shadow:0 5px 12px rgba(2,32,65,.18);
}

.cf-mega-feature__content > a{
    width:100%;
    min-height:45px;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    color:#022041;
    background:#fff;
    border:1px solid #fff;
    border-radius:7px;
    box-shadow:0 12px 25px rgba(2,32,65,.18);
    text-decoration:none;
    font-size:11px;
    font-weight:900;
    transition:
        color .22s ease,
        background .22s ease,
        border-color .22s ease,
        transform .22s ease,
        box-shadow .22s ease;
}

.cf-mega-feature__content > a:hover{
    color:#fff;
    background:rgba(255,255,255,.10);
    border-color:rgba(255,255,255,.48);
    transform:translateY(-2px);
    box-shadow:0 16px 30px rgba(2,32,65,.25);
}

.cf-mega-feature__content > a i{
    width:26px;
    height:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:#0c53a5;
    border-radius:50%;
    font-size:9px;
    transition:
        color .22s ease,
        background .22s ease,
        transform .22s ease;
}

.cf-mega-feature__content > a:hover i{
    color:#0c53a5;
    background:#fff;
    transform:translateX(-3px);
}

.cf-mega-feature__image{
    position:absolute;
    top:105px;
    right:-22px;
    left:-22px;
    z-index:0;
    height:178px;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events:none;
}

.cf-mega-feature__image::after{
    content:"";
    position:absolute;
    right:15%;
    bottom:4px;
    left:15%;
    height:24px;
    border-radius:50%;
    background:rgba(2,32,65,.40);
    filter:blur(13px);
}

.cf-mega-feature__image img{
    position:relative;
    z-index:1;
    display:block;
    width:108%;
    height:100%;
    object-fit:contain;
    object-position:center;
    filter:
        drop-shadow(0 22px 18px rgba(2,20,35,.30))
        drop-shadow(0 4px 5px rgba(255,255,255,.08));
    transform:translateY(2px) scale(1.04);
    transition:transform .35s ease;
}

.cf-mega-feature:hover .cf-mega-feature__image img{
    transform:translateY(-2px) scale(1.075);
}

/* Page scrim */

.cf-page-scrim{
    position:fixed;
    inset:0;
    z-index:900;
    background:rgba(8,16,23,.36);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:
        opacity .2s ease,
        visibility .2s ease;
}

.cf-page-scrim.is-visible{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

/* Mobile drawer */

.cf-mobile-drawer{
    display:none;
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    z-index:1300;
    width:min(390px,92vw);
    color:var(--cf-text);
    background:#fff;
    box-shadow:-30px 0 70px rgba(16,25,34,.22);
    transform:translateX(105%);
    transition:transform .3s cubic-bezier(.2,.8,.2,1);
    overflow-y:auto;
    overscroll-behavior:contain;
}

.cf-mobile-drawer.is-open{
    transform:translateX(0);
}

.cf-mobile-drawer__head{
    min-height:82px;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid var(--cf-border);
}

.cf-mobile-drawer__logo{
    display:flex;
    align-items:center;
    line-height:0;
}

.cf-mobile-drawer__logo img{
    width:auto;
    height:62px;
    max-width:155px;
    object-fit:contain;
}

.cf-mobile-drawer__close{
    width:42px;
    height:42px;
    padding:0;
    color:var(--cf-ink);
    background:#fff;
    border:1px solid var(--cf-border);
    border-radius:50%;
    font-size:17px;
    cursor:pointer;
}

.cf-mobile-nav{
    padding:12px 20px 24px;
}

.cf-mobile-nav__link,
.cf-mobile-nav__toggle{
    width:100%;
    min-height:53px;
    padding:0 4px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:var(--cf-ink);
    background:#fff;
    border:0;
    border-bottom:1px solid var(--cf-border);
    text-decoration:none;
    font-family:var(--cf-font);
    font-size:13.5px;
    font-weight:900;
    cursor:pointer;
}

.cf-mobile-nav__link i,
.cf-mobile-nav__toggle i{
    color:var(--cf-gold);
    font-size:11px;
}

.cf-mobile-submenu{
    display:none;
    padding:12px 14px 18px;
    background:var(--cf-surface-soft);
    border-bottom:1px solid var(--cf-border);
}

.cf-mobile-submenu.is-open{
    display:block;
}

.cf-mobile-submenu strong{
    display:block;
    margin:13px 0 6px;
    color:var(--cf-blue-dark);
    font-size:11px;
}

.cf-mobile-submenu strong:first-child{
    margin-top:0;
}

.cf-mobile-submenu a{
    position:relative;
    display:block;
    padding:7px 13px 7px 0;
    color:var(--cf-muted);
    text-decoration:none;
    font-size:11.5px;
    font-weight:700;
    line-height:1.8;
}

.cf-mobile-submenu a::before{
    content:"";
    position:absolute;
    top:17px;
    right:0;
    width:4px;
    height:4px;
    border-radius:50%;
    background:var(--cf-gold);
}

.cf-mobile-drawer__footer{
    margin-top:auto;
    padding:20px;
    background:var(--cf-ink);
}

.cf-mobile-quote{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--cf-ink);
    background:#fff;
    border-radius:7px;
    text-decoration:none;
    font-size:12px;
    font-weight:900;
}

.cf-mobile-contact{
    margin-top:15px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
}

.cf-mobile-contact a{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:rgba(255,255,255,.84);
    border:1px solid rgba(255,255,255,.18);
    border-radius:7px;
    text-decoration:none;
    font-size:10.5px;
    font-weight:800;
}

/* Responsive */

@media(max-width:1240px){
    .cf-container{
        padding-inline:28px;
    }

    .cf-header__inner{
        grid-template-columns:205px minmax(0,1fr) auto;
        gap:24px;
    }

    .cf-nav__link{
        padding-inline:11px;
        font-size:12px;
    }

    .cf-nav__link::before{
        right:11px;
        left:11px;
    }

    .cf-logo{
        min-width:190px;
    }

    .cf-logo img{
        width:195px;
        max-height:86px;
    }
}

@media(max-width:1100px){
    .cf-nav,
    .cf-quote-button{
        display:none;
    }

    .cf-header__inner{
        min-height:88px;
        grid-template-columns:1fr auto;
    }

    .cf-logo img{
        width:190px;
        height:auto;
        max-height:78px;
    }

    .cf-menu-button{
        display:block;
    }

    .cf-mobile-drawer{
        display:flex;
        flex-direction:column;
    }

    .cf-mega{
        display:none;
    }
}

@media(max-width:760px){
    .cf-container{
        width:100%;
        padding-inline:18px;
    }

    .cf-topbar__inner{
        justify-content:center;
    }

    .cf-topbar__contact{
        display:none;
    }

    .cf-topbar__message{
        max-width:100%;
        overflow:hidden;
        font-size:10px;
        text-overflow:ellipsis;
    }

    .cf-header__inner{
        min-height:80px;
    }

    .cf-logo{
        min-width:0;
    }

    .cf-logo img{
        width:170px;
        height:auto;
        max-height:70px;
    }

    .cf-header__phone,
    .cf-menu-button{
        width:42px;
        height:42px;
    }

    .cf-menu-button span{
        right:11px;
    }
}

@media(max-width:420px){
    .cf-container{
        width:100%;
        padding-inline:14px;
    }

    .cf-topbar__message{
        font-size:9.5px;
    }

    .cf-logo img{
        width:155px;
        height:auto;
        max-height:66px;
    }

    .cf-header__actions{
        gap:7px;
    }
}

/* CF_HEADER_RUNTIME_STICKY_START */

.cf-header-runtime-anchor{
  display:block !important;
  width:100% !important;
  height:1px !important;
  margin:0 !important;
  padding:0 !important;
  pointer-events:none !important;
  visibility:hidden !important;
}

.cf-header-runtime-spacer{
  display:none;
  width:100%;
  height:0;
  margin:0;
  padding:0;
  pointer-events:none;
}

.cf-header-runtime-spacer.is-active{
  display:block;
  height:var(
    --cf-runtime-header-height,
    0px
  );
}

#cfHeader.cf-header{
  width:100%;
  z-index:9990;
  overflow:visible !important;
}

#cfHeader.cf-header.cf-header--runtime-fixed{
  position:fixed !important;
  inset:0 0 auto 0 !important;
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  z-index:2147483000 !important;
  overflow:visible !important;
  background:#fff !important;
  transform:translate3d(0,0,0) !important;
  box-shadow:
    0 1px 0 rgba(2,32,65,.08),
    0 14px 38px rgba(2,32,65,.14) !important;
}

#cfHeader.cf-header.cf-header--runtime-fixed
.cf-header__inner{
  overflow:visible !important;
}

html.cf-runtime-header-fixed{
  scroll-padding-top:
    var(--cf-runtime-header-height,104px);
}

@media(prefers-reduced-motion:no-preference){
  #cfHeader.cf-header.cf-header--runtime-fixed{
    animation:
      cfRuntimeHeaderEnter
      .22s
      cubic-bezier(.22,1,.36,1)
      both;
  }
}

@keyframes cfRuntimeHeaderEnter{
  from{
    opacity:.97;
    transform:
      translate3d(0,-12px,0);
  }

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

/* CF_HEADER_RUNTIME_STICKY_END */

/* CF_TOPBAR_CONTACT_FINAL_START */

#cfHeader [class*="topbar"]{
  min-height:48px;
}

#cfHeader [class*="topbar"]
a[href^="mailto:"],
#cfHeader [class*="topbar"]
a[href^="tel:"]{
  display:inline-flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  min-width:max-content;
  white-space:nowrap !important;
  line-height:1.35 !important;
}

#cfHeader [class*="topbar"]
a[href^="mailto:"]{
  font-size:19px !important;
  font-weight:900 !important;
  direction:ltr;
  unicode-bidi:isolate;
  letter-spacing:.01em;
}

#cfHeader [class*="topbar"]
a[href^="tel:"]{
  font-size:20px !important;
  font-weight:900 !important;
  direction:ltr;
  unicode-bidi:isolate;
}

#cfHeader [class*="topbar"]
a[href^="mailto:"] i,
#cfHeader [class*="topbar"]
a[href^="tel:"] i{
  flex:0 0 auto;
  font-size:18px !important;
}

.cf-topbar-phone{
  display:inline-flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:9px !important;
  width:auto !important;
  min-width:max-content !important;
  direction:ltr !important;
  unicode-bidi:isolate !important;
  white-space:nowrap !important;
  font-family:Arial,sans-serif !important;
  font-size:20px !important;
  font-weight:900 !important;
  line-height:1 !important;
}

.cf-topbar-phone span{
  display:inline-block !important;
  flex:0 0 auto !important;
  width:auto !important;
  direction:ltr !important;
  unicode-bidi:isolate !important;
  white-space:nowrap !important;
  font-size:inherit !important;
  font-weight:inherit !important;
  line-height:1 !important;
}

@media(max-width:767.98px){
  #cfHeader [class*="topbar"]
  a[href^="mailto:"]{
    font-size:16px !important;
  }

  #cfHeader [class*="topbar"]
  a[href^="tel:"],
  .cf-topbar-phone{
    font-size:17px !important;
  }

  .cf-topbar-phone{
    gap:7px !important;
  }
}

/* CF_TOPBAR_CONTACT_FINAL_END */

/* CF_TOPBAR_CONTACT_BALANCED_START */

#cfHeader [class*="topbar"]
a[href^="mailto:"]{
  font-size:18px !important;
  font-weight:900 !important;
}

#cfHeader [class*="topbar"]
a[href^="tel:"]{
  font-size:17px !important;
  font-weight:900 !important;
}

#cfHeader [class*="topbar"]
a[href^="mailto:"] i,
#cfHeader [class*="topbar"]
a[href^="tel:"] i{
  font-size:16px !important;
}

.cf-topbar-phone{
  font-size:17px !important;
  gap:8px !important;
  flex-wrap:nowrap !important;
  white-space:nowrap !important;
}

@media(max-width:767.98px){
  #cfHeader [class*="topbar"]
  a[href^="mailto:"]{
    font-size:15px !important;
  }

  #cfHeader [class*="topbar"]
  a[href^="tel:"],
  .cf-topbar-phone{
    font-size:14px !important;
  }

  .cf-topbar-phone{
    gap:6px !important;
  }
}

/* CF_TOPBAR_CONTACT_BALANCED_END */
