.block-marquee-block h2 {
  text-align: left;
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 700;
  font-size: 41px;
  line-height: 41px;
}
.block-marquee-block *::selection {
  background: transparent; /* WebKit/Blink Browsers */
}
.block-marquee-block *::-moz-selection {
  background: transparent; /* Gecko Browsers */
}
.block-marquee-block *:active, .block-marquee-block *:focus {
  outline-color: transparent;
}
.block-marquee-block .title-container {
  padding: 0 20px;
}
.block-marquee-block .marquee-container {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 15px;
  overflow: hidden;
}
.block-marquee-block .marquee-container .marquee-decoration {
  position: relative;
  width: 100%;
  max-width: 48vw;
  margin-top: 60px;
}
.block-marquee-block .marquee-container .marquee-decoration:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background-color: #1E2643;
  transform: scaleX(0);
  transform-origin: left;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
  transition-delay: calc(0.375s + 0.2s);
}
.block-marquee-block .marquee-container .marquee-decoration:after {
  content: "";
  position: absolute;
  display: block;
  right: -27px;
  bottom: -5px;
  width: 6px;
  height: 6px;
  background-color: #FDBE00;
  margin-left: 10px;
  vertical-align: middle;
  transform: rotate(45deg);
  transform-origin: center;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translateX(-10px) rotate(45deg);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
  transition-delay: calc(0.375s * 2 + 0.05s);
}
.block-marquee-block .marquee-container.show .marquee-decoration:before {
  transform: scaleX(1);
}
.block-marquee-block .marquee-container.show .marquee-decoration:after {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}
.block-marquee-block .marquee {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.block-marquee-block .marquee span {
  position: relative;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: #FFFFFF;
  text-shadow: -1px 0 #1E2643, 0 1px #1E2643, 1px 0 #1E2643, 0 -1px #1E2643;
}
.block-marquee-block .marquee span:before {
  content: "";
  position: relative;
  width: 6px;
  height: 6px;
  background-color: #FDBE00;
  margin-left: 10px;
  vertical-align: middle;
  transform: rotate(45deg);
  transform-origin: center;
  display: inline-block;
  vertical-align: middle;
  background-color: #FFFFFF;
  border: 1px solid #1E2643;
  width: 10px;
  height: 10px;
  margin-left: 24px;
  margin-right: 24px;
}
.block-marquee-block .marquee span:first-child:before {
  display: none;
}
.block-marquee-block .marquee-up {
  -webkit-animation: slide-left 60s linear 0s infinite normal;
  -moz-animation: slide-left 60s linear 0s infinite normal;
  -ms-animation: slide-left 60s linear 0s infinite normal;
  -o-animation: slide-left 60s linear 0s infinite normal;
  animation: slide-left 60s linear 0s infinite normal;
}
.block-marquee-block .marquee-down {
  flex-direction: row-reverse;
  margin-top: 46px;
  -webkit-animation: slide-right 60s linear 0s infinite normal;
  -moz-animation: slide-right 60s linear 0s infinite normal;
  -ms-animation: slide-right 60s linear 0s infinite normal;
  -o-animation: slide-right 60s linear 0s infinite normal;
  animation: slide-right 60s linear 0s infinite normal;
}