section {
  background-color: #fff;
}

.body {
  background-color: transparent;
}

.dls_video_hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 0, 0, 0.096);
  margin-top: -120px;
}
.dls_video_hero video {
  position: fixed;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}
.dls_video_hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: url(https://cdnjs.cloudflare.com/ajax/libs/vegas/2.3.1/overlays/03.png), repeat 50% 50%, rgba(25, 25, 25, 0.5);
  z-index: 2;
}
.dls_video_hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, #000, transparent);
  z-index: 1;
}
.dls_video_hero .hero_content {
  width: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 180px 0 50px 0;
}
.dls_video_hero .hero_content h1 {
  font-weight: 900;
  color: #fff;
  font-size: 2.5rem;
  margin: 0 0 3rem 0;
}

.categories_content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}
.categories_content .category_box {
  width: 100%;
  margin: 0 auto;
  max-width: 380px;
  background-color: rgba(255, 0, 0, 0.096);
  position: relative;
  border-radius: 10px;
  height: 120px;
  min-height: 50px;
  overflow: hidden;
  transition: all ease-in-out;
}
.categories_content .category_box .default, .categories_content .category_box .on_hover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1rem;
}
.categories_content .category_box .default .cat_title, .categories_content .category_box .on_hover .cat_title {
  text-align: right;
  margin-top: auto;
  letter-spacing: 0.5;
}
.categories_content .category_box:first-child {
  background-color: #ff1421;
}
.categories_content .category_box .default {
  top: -110px;
}
.categories_content .category_box ul.categories {
  padding: 0;
  color: #fff;
  z-index: 2;
  margin-left: auto;
}
.categories_content .category_box ul.categories li {
  list-style: none;
  font-weight: 300;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.5;
  line-height: 18px;
}
.categories_content .category_box .on_hover {
  bottom: 0px;
  transition: all ease-in-out 0.1s;
}
.categories_content .category_box .on_hover .back_image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (min-width: 720px) {
  .categories_content {
    grid-template-columns: 1fr 1fr;
  }
  .categories_content .category_box {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .categories_content {
    grid-template-columns: repeat(4, 1fr);
  }
  .categories_content .category_box {
    max-width: 100%;
  }
  .categories_content .category_box:hover .on_hover {
    transition: all ease-in-out 0.3s;
    bottom: 0px;
  }
  .categories_content .category_box .on_hover {
    bottom: -150px;
  }
  .categories_content .category_box .on_hover::after {
    content: "";
    width: 70%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    background: hsl(0, 0%, 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.082) 0%, hsl(0, 0%, 0%) 100%);
    z-index: 1;
  }
}
@media only screen and (min-width: 1400px) {
  .categories_content {
    grid-template-columns: repeat(5, 1fr);
  }
}/*# sourceMappingURL=custom.css.map */