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

body {
  height: 100%;
  font-family: "Roboto Mono", sans-serif;
  background-color: #e4e4e4;
  color: #000;
  font-size: 16px;
  line-height: 120%;
  font-weight: 300;
  text-align: left;
}

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-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-infinity 20s 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;
}

.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%;
}

.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;
}

.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-horizontal-infinity {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

*/

