#cb-mini-slot {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.cb-mini {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  will-change: transform, opacity, box-shadow;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.cb-mini--in-header {
  position: relative;
  top: auto;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.cb-mini--anim {
  transition: transform .28s cubic-bezier(.2,.7,.2,1), opacity .28s ease, box-shadow .28s ease;
}

section[data-cb-banner] .cb-mini:not(.cb-mini--in-header) {
  position: relative;
  top: auto;
  z-index: 1;
}

.cb-mini__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cb-mini__left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cb-mini__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d252c;
  transition: color 0.2s ease;
}

.cb-mini__link:hover {
  color: #000;
}

.cb-mini__label {
  line-height: 1.2;
}

.cb-mini__desc {
  font-size: 12px;
  color: #aaaeb1;
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.3;
}

.cb-mini__right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cb-mini__btn {
  background: #1d252c;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cb-mini__btn:hover {
  background: #000;
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .cb-mini__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px var(--px);
  }
  .cb-mini__left {
    gap: 12px;
  }
  .cb-mini__right {
    width: 100%;
    justify-content: flex-start;
  }
  .cb-mini__btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

section[data-cb-banner] {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 460px;
  overflow: hidden;
  transform-origin: top center;
  will-change: transform;
}

.cb-slide {
  position: relative;
}

.cb-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.35));
  pointer-events: none;
  opacity: calc(.25 + .35 * var(--cb-shrink, 0));
  transition: opacity .15s linear;
  z-index: 2;
}

.cb-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
  transition: opacity .2s linear;
  z-index: 1;
}

.cb-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  max-width: 100%;
  padding: 0 var(--px);
  transition: transform .18s linear, opacity .18s linear;
  z-index: 3;
}

.cb-title {
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
}

.cb-btn {
  display: inline-block;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 20px 40px;   
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin-top: 18px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cb-btn:hover {
  color: #ddd;
  border-top-color: #ddd;
  border-bottom-color: #ddd;
}

.cb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  /*box-shadow: 0 6px 18px rgba(0,0,0,.18);*/
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s linear;
}

.cb-nav:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.cb-nav::before {
  font-family: "Font Awesome 5 Free","Font Awesome 6 Free",FontAwesome;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  color: #111827;
  display: block;
  content: "";
}

.cb-prev {
  left: clamp(10px, 2vw, 18px);
}

.cb-next {
  right: clamp(10px, 2vw, 18px);
}

.cb-prev::before {
  content: "\f053";
}

.cb-next::before {
  content: "\f054";
}

@media (max-width: 960px) {
  .cb-title {
    font-size: 24px;
  }
  .cb-btn {
    font-size: 14px;
    padding: 8px 18px;
  }
  .cb-nav {
    width: 38px;
    height: 38px;
  }
  .cb-nav::before {
    font-size: 15px;
  }
}

section[data-cb-banner] .cb-swiper,
section[data-cb-banner] .swiper,
section[data-cb-banner] .swiper-wrapper,
section[data-cb-banner] .swiper-slide,
section[data-cb-banner] .cb-slide {
  height: 100%;
}

section[data-cb-banner] .cb-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: auto;
}

section[data-cb-banner] .cb-content,
section[data-cb-banner] .cb-btn,
section[data-cb-banner] .cb-nav {
  opacity: 1;
  pointer-events: auto;
}



section[data-cb-banner]{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  height:60vh;
  min-height:420px;
  max-height:800px;
  overflow:hidden;
  position:relative;
  transform-origin:top center;
  will-change:transform;
}

#cb-mini-slot{ 
  position:relative; 
  z-index:100010; 
}

section[data-cb-banner] .cb-mini{
  position:relative;
  z-index:5;
}

section[data-cb-banner] .cb-slide::after{ z-index:2; }
section[data-cb-banner] .cb-content{ z-index:3; }
section[data-cb-banner] .cb-media{ z-index:1; }

.vc_row, .vc_column-inner, .wpb_wrapper{ overflow:visible; }



section[data-cb-banner]{
  overflow: visible; /* era hidden */
}

.cb-slide{
  overflow: hidden;
}

section[data-cb-banner] .cb-mini{
  position: relative;
  z-index: 5;
}


.cb-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px; 
}

.cb-title {
  margin: 0; 
}

.cb-btn {
  margin: 0; 
}


#main {
    padding:25px 0 70px 0 !important;
}


@media only screen and (max-width: 600px) {
    nav.cb-mini {
        display:none !important;
    }
}