img.no-tooltip {
  pointer-events: none;
}

.tp-bgimg{
    /*clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%, 0 100%);
    z-index: -1; /* A videó mögé kerül a tartalom */
    position: fixed
}
    
.arrow .vc_single_image-wrapper   .vc_box_border_grey {
  width: 0;
  height: 0;
  border-left: 20px solid transparent; /* Átlátszó rész */
  border-right: 20px solid transparent; /* Átlátszó rész */
  border-top: 20px solid black; /* A nyíl színe */
  transform: rotate(-45deg); /* Forgatás */
  position: relative;
}

.bal {
  position: relative; /* Szükséges a ::after megfelelő pozicionálásához */
}

.bal::after {
  content: '';
  position: absolute;
  top: 25%; /* Fentről 25% */
  left: -4%; /* A bal széltől negatív irányban */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 0px 25px; /* Háromszög alakú nyíl */
  border-color: white transparent transparent transparent;
  transform: translateX(-75%) rotate(270deg); /* Pozíció és forgatás */
}