.container {
  width: 72vw;
  margin: 0 auto;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.card {
  width: 35vw;
  height: 19.6875vw;
  background-color: rgba(0, 0, 0, 0.3);
  display: inline-block;
  position: relative;
}

.card:hover .holder {
  opacity: 1;
}

.card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:nth-of-type(n + 3) {
  margin-top: 2vw;
}

.holder {
  position: absolute;
  width: 100%;
  height: 35%;
  background: linear-gradient(transparent, #41fea7);
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  padding: 1vw 2vw;
  color: white;
  transition: opacity .2s ease-in;
  opacity: 0;
}

.date,
.description,
.btn {
  font-family: Montserrat-Medium;
}

.date {
  font-size: 1vw;
  text-decoration: underline;
  display: none;
}

.description {
  font-size: 1vw;
  margin-top: 0.3vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: none;
}

.btn {
  font-size: 1.5vw;
  font-family: Montserrat-SemiBold;
  background-color: black;
  display: inline-block;
  padding: 0.5vw 1vw;
  position: absolute;
  bottom: 1.5vw;
  cursor: pointer;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
}

.video-container {
  width: 70vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__close {
  width: 2.5vw;
  height: 2.5vw;
  border: 3px solid #02ff90;
  border-radius: 50%;
  position: absolute;
  top: -3vw;
  right: 0;
  cursor: pointer;
}

.video__close--m {
  display: none;
}

.video__close::before,
.video__close::after {
  content: '';
  display: block;
  width: 85%;
  height: 3px;
  background-color: #02ff90;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video__play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, transparent, #41fea7);
}

.video__paly__btn {
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  background-color: #41fea7;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video__paly__btn::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  border-width: 1.5vw 0 1.5vw 1.5vw;
  border-color: transparent transparent transparent white;
  border-style: solid;
  position: absolute;
  left: calc(50% + 0.2vw);
  top: 50%;
  transform: translate(-50%, -50%);
}
