.video {
  width: 100%;
  height: 80vh;
  
}
.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card {
  cursor: pointer;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 20px auto;
  border: 3px solid royalblue;
  transition: all 0.4s;
}
.card:hover {
  box-shadow: 2px 2px 20px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
}
.card .card-img {
  width: 35%;
}
.card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .card-desc {
  width: 60%;
}
.card .card-desc .desc-title {
  font-size: 35px;
}
.card .card-desc .desc-text {
  margin-top: 30px;
  font-size: 14px;
  line-height: 30px;
}
