img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
  }
  
  .spacer-100 {
    width: 100px;
    height: 100px;
  }
  
  .spacer-60 {
    width: 60px;
    height: 60px;
  }
  
  .spacer-30 {
    width: 30px;
    height: 30px;
  }
  
  .spacer-15 {
    width: 15px;
    height: 15px;
  }
  
  .marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 600px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
  }
  
  .marquee-horizontal {
    position: relative;
    z-index: 200;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 60px;
    justify-content: flex-start;
    align-items: center;
    background-color: #000000;
  }
  
  .track-horizontal {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal 40s linear infinite;
  }
  
  .marquee-horizontal-large {
    position: relative;
    z-index: 200;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 190px;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 auto;
  }
  
  .marquee-text {
    margin-right: 8vw;
    flex: 0 0 auto;
    color: #ffffff;
    text-transform: uppercase;
  }
  
  .track-horizontal-alt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .track-horizontal-alt {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal-alt 40s linear infinite;
  }
  
  .icon-container {
    display: flex;
    width: 210px;
    height: 15vw;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
  }
  
  .icon-container-alt {
    display: flex;
    width: 250px;
    height: 150px;
    padding-right: 30px;
    padding-left: 30px;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
  }
  
  .icon {
    width: 65%;
  }
  
  .col {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
  }
  
  .col.small {
    width: 41%;
    flex: 0 0 auto;
  }
  
  .header-quaternary {
    max-width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000000;
    padding: 2px 4px;
  }
  
  .header-secondary {
    max-width: 100%;
    font-size: 40px;
    line-height: 120%;
  }
  
  .container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 60px;
    padding-left: 60px;
  }
  
  .flex-vertical {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  
  .flex-horizontal {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .flex-horizontal.flex-left {
    justify-content: flex-start;
  }
  
  .track-vertical {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-vertical 20s linear infinite;
  }
  
  .track-vertical-alt {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-vertical-alt 20s linear infinite;
  }
  
  .marquee-cover {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 10;
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 70%, #e4e4e4),
      linear-gradient(180deg, #e4e4e4, hsla(0, 0%, 100%, 0) 30%);
  }
  
  .marquee-cover-horizontal {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 10;
    background-image: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 70%, #e4e4e4),
      linear-gradient(270deg, #e4e4e4, hsla(0, 0%, 100%, 0) 30%);
  }
  
  @keyframes marquee-vertical {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-50%);
    }
  }
  
  @keyframes marquee-vertical-alt {
    from {
      transform: translateY(-50%);
    }
    to {
      transform: translateY(0%);
    }
  }
  
  @keyframes marquee-horizontal {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  @keyframes marquee-horizontal-alt {
    from {
      transform: translateX(-50%);
    }
    to {
      transform: translateX(0%);
    }
  }
  