@charset "UTF-8";
* {
  box-sizing: border-box;
  outline: 0px;
}

ul, ol {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

h2 {
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0px;
  font-family: "Montserrat";
  color: #fff;
  background: #141414;
}

main {
  display: block;
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 4vw;
  overflow-x: hidden;
}

.logo {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  padding: 3vw 4vw;
  background: rgba(255, 255, 255, 0.02);
}
.logo svg {
  display: block;
  position: relative;
  width: 10vw;
}
.logo svg path {
  fill: #E50914;
}

section {
  display: block;
  position: relative;
  top: 8vw;
  margin-bottom: 6vw;
}
section h2 {
  display: block;
  width: 100%;
  font-size: 1.2vw;
  font-weight: 600;
  margin-bottom: 0.8vw;
  margin-left: 4px;
}
section ul {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  white-space: nowrap;
  font-size: 0;
}
section ul:hover li:not(.hover) {
  opacity: 0.3;
}
section ul li {
  display: inline-block;
  height: auto;
  padding: 2px;
  overflow: hidden;
  cursor: pointer;
}
section ul li .img {
  display: block;
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  background-size: cover;
  transform-origin: top right;
}
section ul li .img:after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 1;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  opacity: 0;
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0) 0%, #141414 100%);
  transition: all 0.5s ease 0.2s;
}
section ul li .img img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
}
section ul li .card {
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: auto;
  padding: 10px;
  text-shadow: 0 1px 1px rgba(20, 20, 20, 0.6);
  opacity: 0;
}
section ul li .card h3 {
  display: block;
  width: 100%;
  font-size: 0.7vw;
  font-weight: 600;
  margin-bottom: 0.3vw;
}
section ul li .card .info {
  display: block;
  width: 100%;
  margin-bottom: 0.3vw;
  font-size: 0;
}
section ul li .card .info .match {
  display: inline-block;
  width: auto;
  font-size: 0.5vw;
  font-weight: 600;
  margin-right: 0.4vw;
  color: #46D369;
}
section ul li .card .info .age {
  display: inline-block;
  position: relative;
  width: auto;
  font-size: 0.5vw;
  padding: 0 0.4em;
  margin-right: 0.4vw;
  border: solid 1px rgba(255, 255, 255, 0.4);
}
section ul li .card .info .dur {
  display: inline-block;
  width: auto;
  font-size: 0.5vw;
}
section ul li .card .tags {
  display: block;
  width: 100%;
}
section ul li .card .tags span {
  display: inline-block;
  width: auto;
  font-size: 0.5vw;
  margin: 0 0.3vw 0 0;
}
section ul li .card .tags span:after {
  content: "●";
  display: inline-block;
  margin: 0 0 0 0.3vw;
  font-size: 0.8 xvw;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0);
  color: rgba(255, 255, 255, 0.4);
}
section ul li .card .tags span:last-child:after {
  display: none;
}
section ul li:hover .img:after {
  opacity: 1;
}
section ul li:hover img {
  opacity: 1;
}
section ul li:hover .card {
  opacity: 1;
}
section ul li:first-child {
  transform-origin: 0px center;
}
section ul li:last-child {
  transform-origin: 100% center;
}

li, li * {
  transition: all 0.5s ease 0.2s;
}

a:visited {
  color:#fff;
  text-decoration: none;
}

a {
  color:#fff;
  text-decoration: none;
}