/* black overlay with 20% transparency on fancy boxes site wide */
.thb-fancy-image-container {
  position: relative;
  overflow: hidden;
}

.thb-fancy-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* 20% black */
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 838px) {
    .overlap-down {
      display: block;
      position: relative;
      margin-bottom: -125px;
      z-index: 1000;
    }
    
    .max-width-640 {
        max-width: 650px!important;
    }
}

.justify-start .vc_column-inner {
    justify-content: start!important;
}

.justify-end {
    justify-content: end!important;
}