*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    --rr-color-common-white: #ffffff;
    --rr-color-common-black: #000000;
    --rr-color-common-dark: #232323;
    --rr-color-heading-primary: #11151c;
    --rr-color-text-body: #b0b2b7;
    --rr-color-text-body-light: #74787c;
    --rr-color-theme-primary: #3f5af3;
}

body{
    background-color: #060814;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
  }
  
  .reveal {
    visibility: hidden;
    position: relative;
    width: 80%;
    height: 80%;
    overflow: hidden;
  }
  
  .anim-text {
    overflow: hidden;
  }
  
  .running-text {
    background-color: var(--rr-color-theme-primary);
    background-repeat: repeat;
    background-size: 20px;
    padding: 20px 0;
    overflow: hidden;
  }
  .running-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 60px;
  }
  .running-text ul li {
    display: inline-block;
    white-space: nowrap;
    font-size: 24px;
    color: var(--rr-color-common-white);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
  }
  .running-text ul li:before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    content: "\f068";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
  }
  .running-text.running-1 {
    background-color: var(--rr-color-bg-1);
  }
  .running-text.testi {
    background-color: transparent;
    margin-bottom: 40px;
    padding: 0;
  }
  .running-text.testi ul {
    gap: 20px;
  }
  .running-text.testi ul li {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
  }
 
  .running-text.testi ul li:before {
    display: none;
  }
  .running-text.testi ul li:nth-child(2) {
    color: var(--rr-color-theme-primary);
  }
  .running-text.running-3 {
    position: relative;
    z-index: 1;
    padding: 51px 0;
  }
  .running-text.running-3 .bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .running-text.running-3 .bg-img:before {
    background-color: var(--rr-color-theme-primary);
    mix-blend-mode: multiply;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }