.front-block .overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
}

.front-block__video-elem {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.front-block__bottom-video {
  display: none;
  max-width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

.catalog__elem-list {
  position: relative;
  height: auto;
}

.catalog__elem-list::before {
  position: absolute;
  content: '';
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(219, 0, 0, 0) 0%, rgba(242, 242, 242, 0.86) 45%, rgba(242, 242, 242, 1) 100%);
  transition: all .3s ease-in-out;
  opacity: 0;
  z-index: -1;
}

.catalog__elem-list.more::before {
  opacity: 1;
  z-index: 1;
}

.catalog__elem-list.more{
  height: 105px;
  overflow: hidden;
}

.catalog__elem-more{
  margin-top: 10px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media(max-width: 991.8px) {
  .front-block__video-elem {
    display: none;
  }

  .front-block .overlay {
    display: none;
  }

  .front-block__bottom-video {
    display: block;

  }
}


.catalog__elem-title span{
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--primary);
  display: block;
  font-weight: 800;
}

@media(max-width: 1230px) {
  .catalog__elem-title span{
    font-size: 28px
  }
}

@media(max-width: 991.8px) {
  .catalog__elem-title span{
    font-size: 26px
  }
}

@media(max-width: 468px) {
  .catalog__elem-title span {
    font-size: 24px;
  }
}
