*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image:url(bg.png);
  background-repeat: repeat-x;
  min-height: 100vh;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: white;
  position: relative;
}

/* responsive */
nav.active {
  flex-direction: column;
  align-items: flex-start;
}

nav h2.logo {
  font-weight: bold;
  font-size: xx-large;
}

nav .bars {
  position: absolute;
  right: 1rem;
  font-size: xx-large;
  display: none;
}

ul.nav-links {
  display: flex;
}

/* responsive */
nav.active ul.nav-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

li.nav-link {
  list-style: none;
  margin: 0.5rem 1rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

li.nav-link:hover {
  background-color: #ccc;
  color: #333;
}

li.nav-link.auth {
  border: 2px solid white;
  border-radius: 1rem;
}

li.nav-link a {
  text-decoration: none;
  color: inherit;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: large;
  text-transform: uppercase;
}

@media screen and (max-width: 800px) {
  nav .bars {
    display: block;
  }

  nav .nav-links {
    display: none;
  }
}

/* It is ready */
/* Have a good time */
.sponsor-slider-wrapper{
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
  height: 100px;
  margin:5rem;
  margin-left:-20px;
}

@keyframes slide {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}
@keyframes slide-2 {
  0% {transform: translateX(100%);}
  100% {transform: translateX(0);}
}

.bg{
  background-image: url(bluebg.png);
}


.sponsor-slider{
  width: auto;
  position: absolute;
  white-space: nowrap;
  
}
.sponsor-slider .item{
  display: inline-block;
  width: 200px;
  height: 100px;
  margin-left: -4px;
}
.sponsor-slider .item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor-slider-wrapper{
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
  height: 100px;
  margin:5rem;
  margin-left:-20px;
}

@keyframes slide {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}
@keyframes slide-2 {
  0% {transform: translateX(100%);}
  100% {transform: translateX(0);}
}

.sponsor-slider{
  width: auto;
  position: absolute;
  white-space: nowrap;
  
}
.sponsor-slider .item{
  display: inline-block;
  width: 200px;
  height: 100px;
  margin-left: -4px;
}
.sponsor-slider .item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide-1{
  animation: slide 12s infinite linear;
}
.slide-2{
  animation: slide-2 12s infinite linear;
}

$speed: 250ms;

