html {
  scroll-behavior: smooth;
}
body {
     margin: 0;
 }

 h1,h2,h3,h4,h5,h6 {
     font-family: 'ALPHAX', 'Helvetica Neue', Arial, Helvetica, sans-serif;
     font-weight: normal !important;
 }


 .ui.fixed.top.menu {
     padding: 0.5em 0;
     font-family: 'ALPHAX-LIGHT', 'Helvetica Neue', Arial, Helvetica, sans-serif;
     transition: all 0.3s ease;
     display: block;
 }

 .ui.fixed.top.menu.inverted {
     background-color: #101820;
 }

 .ui.fixed.top.menu.shrink {
     padding: 0.9em 0 !important;
 }


 .ui.fixed.top.menu a.item {
     background: none;
     font-family: 'ALPHAX', 'Helvetica Neue', Arial, Helvetica, sans-serif;
 }

 .ui.fixed.top.menu a.item img.logo {
     height: 40px;
     width: auto;
     margin-right: 10px;
     margin-top: -20px;
     margin-bottom: -20px;
 }

 .ui.fixed.top.menu a.item:hover,
 .ui.fixed.top.menu a.item.active {
     background: none;
     color: #E4002B;
 }


 .ui.masthead {
     overflow: hidden;
 }

 .ui.masthead .video-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 1;
     filter: brightness(0.5);
     /* 0 = black, 1 = normal, >1 = brighter */
 }

 .ui.masthead .text.container {
     position: relative;
     z-index: 2;
     color: white;
     text-align: center;
     padding: 20px;
     text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
     /* <-- this line adds the shadow */
     max-width: 1200px !important;
 }

 .ui.masthead.segment {
     min-height: 400px;
     padding: 0em 0em 4em 0em;
     background: #f9fafb;

 }

 .ui.masthead .ui.header {
     font-size: 4em;
     font-weight: normal;
     color: #fff;
     font-family: 'ALPHAX', 'Helvetica Neue', Arial, Helvetica, sans-serif;
 }

 .ui.header {
     font-size: 4em;
     font-weight: normal;
     color: #101820;
     font-family: 'ALPHAX', 'Helvetica Neue', Arial, Helvetica, sans-serif;
 }

 .ui.masthead .sub.header {
     font-size: 1.5em;
     color: #fff;
 }


 .footer.segment {
     background-color: #f3f3f3 !important;
     padding: 4em 0em;
 }

 .pusher {
     padding-top: 3em;
     /* offset for fixed menu */
 }

 .ui.sidebar {
     padding-top: 4em;
 }

 .ui.vertical.stripe.segment * {
     color: #101820;
 }

 .ui.vertical.stripe.segment p {
     font-family: 'ALPHAX-LIGHT', 'Helvetica Neue', Arial, Helvetica, sans-serif;
 }

 .ui.vertical.stripe.segment .sub.header {
     font-family: 'ALPHAX-LIGHT', 'Helvetica Neue', Arial, Helvetica, sans-serif;
 }

 .text-red {
     color: #E4002B !important;
 }

 .small-text {
     font-size: 0.9em;
 }

 .ui.primary.button {
     background-color: #E4002B !important;
     color: white !important;
     font-family: 'ALPHAX-LIGHT', 'Helvetica Neue', Arial, Helvetica, sans-serif;
     font-weight: normal !important;
 }

 .ui.primary.button .icon {
     color: white !important;
 }


 .text-content {
     font-family: 'ALPHAX-LIGHT', 'Helvetica Neue', Arial, Helvetica, sans-serif;
 }

 .quote.stripe.segment .grid.no-padding .column {
     padding-top: 0;
     padding-bottom: 0;
 }

 .quote.stripe.segment .grid .column.bgimage * {
     color: #fff;
 }

 .quote.stripe.segment .grid .column.bgimage {
     /* Set height as needed */
     overflow: hidden;
 }

 .quote.stripe.segment .grid .column.bgimage .zoom-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     transition: transform 0.5s ease;
     z-index: -1;
     filter: brightness(0.3);
     /* 0 = black, 1 = normal, >1 = brighter */
 }

 .quote.stripe.segment .grid .column.bgimage:hover .zoom-bg {
     transform: scale(1.5);
     /* Zoom in on hover */
 }

 .quote.stripe.segment .grid .column.bgimage .zoom-bg.p1 {
     background-image: url('../img/luxury-car.webp');
 }

 .quote.stripe.segment .grid .column.bgimage .zoom-bg.p2 {
     background-image: url('../img/showcase-2-lg.webp');
 }

 .quote.stripe.segment .grid .column.bgimage .zoom-bg.p3 {
     background-image: url('../img/yacht.webp');
 }

 .quote.stripe.segment .grid .column.bgimage .zoom-bg.p4 {
     background-image: url('../img/showcase-4-lg.webp');
 }

 .quote.stripe.segment .grid .column.bgimage .zoom-bg.p5 {
     background-image: url('../img/showcase-5-lg.webp');
 }


 .come-in {
     /*transform: translateY(100px);*/
     transform: translate3d(0, 100px, 0);
     animation: come-in 0.8s ease forwards;
 }

 .come-in:nth-child(odd) {
     animation-duration: 0.6s;
 }

 .already-visible {
     /*transform: translateY(0);*/
     transform: translate3d(0, 0, 0);
     animation: none;
 }

 /*
 .ui.vertical.footer.segment{
    background: #101820;
 }
 .ui.vertical.footer.segment * {
    color: #fff;
 }
    */

 @media only screen and (max-width: 768px) {
     .ui.fixed.top.menu .item:not(.toggle) {
         display: none !important;
     }

     .ui.fixed.top.menu .toggle.item {
         display: block !important;
     }
 }

 .ui.fixed.top.menu .toggle.item {
     display: none;
 }

 @keyframes come-in {
     to {
         transform: translate3d(0, 0, 0);
     }
 }


 /*--------------
      Cookies
  ---------------*/
 .cc-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: none;
    background: #000;
    /* slate-900 */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
    padding: 16px;
    font-family: 'ALPHAX-LIGHT', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  }

  .cc-banner__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cc-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
  }

  .cc-desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, .82);
  }

  .cc-links a {
    color: #93c5fd;
    text-decoration: underline;
    font-size: 13px;
  }

  .cc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .cc-btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    font-family: 'ALPHAX-LIGHT', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  }

  .cc-btn--primary {
    background: #2563eb;
    color: #fff;
  }

  .cc-btn--ghost {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
  }

  .cc-btn--danger {
    background: rgba(239, 68, 68, .18);
    color: #fecaca;
    border: 1px solid rgba(239, 68, 68, .35);
  }

  @media (min-width: 768px) {
    .cc-banner__row {
      grid-template-columns: 1fr auto;
      align-items: center;
    }

    .cc-actions {
      justify-content: flex-end;
    }
  }

  /* ===== Modal ===== */
  .cc-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    z-index: 10000;
  }

  .cc-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(640px, calc(100vw - 32px));
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .5);
    display: none;
    z-index: 10001;
    overflow: hidden;
    font-family: 'ALPHAX-LIGHT', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  }

  .cc-modal__header {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
     font-weight: 800 !important;
    font-size: 1.2em !important;
  }

  .cc-modal__title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
  }

  .cc-modal__close {
    background: transparent;
    border: 0;
    font-size: 22px;
    cursor: pointer;
  }

  .cc-modal__body {
    padding: 16px 18px;
  }

  .cc-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
  }

  .cc-card h4 {
    margin: 0 0 6px;
    font-weight: 800 !important;
    font-size: 1.2em !important;
  }


/*
  .cc-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
  }

  .cc-switch {
    position: relative;
    width: 94px;
    height: 26px;
  }

  .cc-switch input {
    display: none;
  }
    */

  .cc-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    border-radius: 999px;
    transition: .2s;
    border: 1px solid rgba(255, 255, 255, .12);
  }

  .cc-slider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    transition: .2s;
  }

  .cc-switch input:checked+.cc-slider {
    background: rgba(37, 99, 235, .85);
  }

  .cc-switch input:checked+.cc-slider:before {
    left: 21px;
  }

  .cc-switch input:disabled+.cc-slider {
    opacity: .55;
  }

  .cc-modal__footer {
    padding: 14px 18px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid #ccc;
    flex-wrap: wrap;
  }

  /* Small manage link (optional in footer) */
  .cc-manage-link {
    cursor: pointer;
    color: #93c5fd;
    text-decoration: underline;
    font-size: 13px;
  }