.btn-cta {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
  }
  
  .btn-cta:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: white;
  }

  .stats .stats-item i {
    margin-right: 0px;
  }

  .btn-cta.cta-yellow {
    background: #ffdd00 !important;
    color: #282727
  }

  .btn-cta.cta-yellow:hover {
    background: color-mix(in srgb, #ffdd00, transparent 20%);
    color: white;
  }

  .page-title .breadcrumbs ol li+li::before {
  color: color-mix(in srgb, white, transparent 50%);
}


.btn-cta.btn-cta-sm {
  
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
  }