* {
  padding:0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  /* overflow-x: hidden; */
  /* background-image: linear-gradient(#0d1e59 50%, rgb(255 255 255) 90%); */
  /* padding-top: 80px; */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  right: 0;
  opacity: 0.9;
}

footer {
  background: #0d1e59;
}

footer p {
  color: silver;
  line-height: 1.4em;
  padding: 0.2em 0.67em;
  font-size: 1.15em;
}

footer a {
  color: white;
  display: block;
}

ul {
  list-style: none;
}

nav {
  justify-content: center;
}

header nav {
  position: relative;
  flex-grow: 1;
}

.overlay { 
  z-index: -1;
  opacity: 0.5;
  background: #0d1e59;
  width: 100vw;
  position: absolute;
  height: 100%;
  left: -1em;
}

.container {
  max-width: 1499px;
  margin: 0 auto;
  padding: 0 1em;
}

.flex-row {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.space-between {
  justify-content:space-between;
}

.space-around {
  justify-content: space-around;
}

.brand {
  margin: 1em 0;
  align-items: center;
}

.logo {
  max-height: 48px;
}

.logo-s {
  margin-right: 0.5em;
}

.logo-c {
  max-height: 64px;
  margin: 1em 0;
}

.logo-a {

}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

.menu li {
  padding: 1em 2%;
  white-space: nowrap;
}

.menu a {
  color: white;
  text-decoration: none;
  /*text-transform: uppercase;*/
}

.menu .active a {
  color: red;
  text-decoration: underline;
}

.menu a:hover {
  color: red;
}

/*.swiper {
  width: 100vw;
  height: 83vh;
}  */

.swiper img {
  display: block;
  width: 100%;
}

.swiper-wrapper {
  max-height: 85vh;
}

.swiper-slide {
}    

.scroll-wrapper {
  overflow: hidden; 
}

.ticker-tape {
  color: white;
  background: #fc3b62;
}

.ticker-tape ul {
  /* transform: translateX(-50px); */
  min-height: 1.67em;
  align-items: center;
}

.ticker-tape li {
  font-size: 12px;
  white-space: nowrap;
  min-width: 130px;
  text-align: center;
}

.sponsor-reel {
  background: white;
}

.sponsor-reel li {
  font-size: 18px;
  white-space: nowrap;
  min-width: 150px;
  text-align: center;
  padding: 0.3em;
}

.sponsor-reel ul {
  /*transform: translateX(-230%);*/
}

.hamburger {
  display: none;
  color: #6d7c90;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
}

.hamburger span {
  user-select: none;
  margin: 3px 0;
  padding: 0;
  border: 0;
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 3px;
  background: #fff;
}

@media (max-width:920px) {
  .menu {
    width: 100vw;
    justify-content: left;
  }
}