html {
  height: 100%;
}

#animate-bg {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 40vh;
  z-index: -10;
}

.box-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  overflow: hidden;
  -webkit-animation: vertical 10s ease 3s infinite forwards;
          animation: vertical 10s ease 3s infinite forwards;
  z-index: inherit;
}

.box-area li {
  position: absolute;
  display: block;
  list-style: none;
  height: 25px;
  width: 25px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-animation: rotation 20s linear infinite;
          animation: rotation 20s linear infinite;
  bottom: -150px;
  z-index: -5;
}

.box-area li:nth-child(1) {
  left: 86%;
  width: 125px;
  height: 125px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.box-area li:nth-child(2) {
  left: 12%;
  width: 55px;
  height: 55px;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.box-area li:nth-child(3) {
  left: 70%;
  width: 75px;
  height: 75px;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.box-area li:nth-child(4) {
  left: 6%;
  width: 25px;
  height: 25px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

.box-area li:nth-child(5) {
  left: 46%;
  width: 125px;
  height: 125px;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

.box-area li:nth-child(6) {
  left: 95%;
  width: 15px;
  height: 15px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-800px) rotate(360deg);
            transform: translateY(-800px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-800px) rotate(360deg);
            transform: translateY(-800px) rotate(360deg);
    opacity: 0;
  }
}

body {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  color: #0d0d0d;
  background-color: #0026ff;
  background-image: -webkit-gradient(linear, left bottom, right top, from(#006eff), to(#06d5f0));
  background-image: linear-gradient(to top right, #006eff, #06d5f0);
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#events {
  position: absolute;
  top: 5rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: fill-anim 0.5s ease forwards 2s;
          animation: fill-anim 0.5s ease forwards 2s;
}

#events path {
  stroke-dasharray: 610px;
  stroke-dashoffset: 610px;
  -webkit-animation: appear-anim 2s ease forwards;
          animation: appear-anim 2s ease forwards;
}

@-webkit-keyframes appear-anim {
  to {
    stroke-dashoffset: 0%;
  }
}

@keyframes appear-anim {
  to {
    stroke-dashoffset: 0%;
  }
}

@-webkit-keyframes fill-anim {
  from {
    fill: transparent;
  }
  to {
    fill: #0d0d0d;
  }
}

@keyframes fill-anim {
  from {
    fill: transparent;
  }
  to {
    fill: #0d0d0d;
  }
}

nav {
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: center;
  position: absolute;
  top: 10rem;
  left: 0;
  right: 0;
  -webkit-animation: nav-bg 0.5s ease forwards 2.5s;
          animation: nav-bg 0.5s ease forwards 2.5s;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3rem;
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
  top: 250%;
  color: #d4d4d4;
  padding: 0.5rem 1rem;
  margin: 0 1rem;
  -webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 3s both;
          animation: fade-in-fwd 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 3s both;
}

nav ul li a {
  text-decoration: none;
  color: #d4d4d4;
}

nav ul li a:hover {
  color: #2892d7;
}

@-webkit-keyframes nav-bg {
  from {
    background-color: transparent;
  }
  to {
    background-color: #0d0d0d;
  }
}

@keyframes nav-bg {
  from {
    background-color: transparent;
  }
  to {
    background-color: #0d0d0d;
  }
}

@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

main {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1000px;
  position: relative;
  top: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main .container .card {
  position: relative;
}

main .container .card .face {
  width: 300px;
  height: 200px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main .container .card .face1 {
  position: relative;
  background-color: #72c7ff;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

main .container .card .face1 .content {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

main .container .card .face1 .content img {
  max-width: 100px;
}

main .container .card .face1 .content h3 {
  margin: 10px 0 0;
  padding: 0;
  color: #0d0d0d;
  text-align: center;
  font-size: 1.5em;
}

main .container .card .face2 {
  position: relative;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

main .container .card .face2 .content p {
  margin: 0;
  padding: 0;
}

main .container .card .face2 .content a {
  margin: 15px 0 0;
  display: inline-block;
  text-decoration: none;
  font-weight: 900;
  color: #333;
  padding: 5px;
  border: 1px solid #333;
}

main .container .card .face2 .content a:hover {
  background: #333;
  color: #fff;
}

main .container .card:hover .face1 {
  background: #6455eb;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

main .container .card:hover .face1 .content {
  opacity: 1;
}

main .container .card:hover .face2 {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.selected {
  color: #2892d7;
}
/*# sourceMappingURL=events.css.map */