.separator--dot,
.separator:after,
hr:after,
h1:after,
h2:after {
    width: 100%;
    content: "";
    background-image: url(../svg/decorator_berry_line.svg);
    height: 48px;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 48px;
}

/* h2:after {
    height: 24px;
    background-size: 24px;
} */

.separator--long-line {
  position: relative;
}
.separator--long-line::before {
  content: "";
  height: 1.265625rem;
}
.separator--long-line::after {
  border-top: 1px solid var(--light);
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
}

.video-full {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    left: 0;
    top: 0;
    height: 300px;
    margin: 0;
    padding: 0;
}

.video-full video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}