/* Relative */
.relative {
  position: relative;
}
.relative > *:not(.absolute-img):not(.overlay):not(.overlay--darker):not(.acf-img), .relative > .ct-section-inner-wrap > *:not(.absolute-img):not(.overlay):not(.overlay--darker):not(.acf-img) {
  z-index: 5;
}
/* Image */
.absolute-img {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}
.absolute-img img {
  object-fit: cover;
  pointer-events: none;
}
/* Overlay (darkens the Image) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
}
.overlay--darker {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
}
/* GTranslate */
.gt_switcher_wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  padding: 0.8rem 1rem;
  border: 1px solid var(--neutral-trans-20);
  border-radius: 0.5rem;
  gap: 10px;
}
.gt_switcher_wrapper .glink {
  line-height: 1;
}
.gt_switcher_wrapper .glink img {
  opacity: 0.5;
  transition: 0.3s all ease;
}
.gt_switcher_wrapper .glink:hover img {
  opacity: 1;
}
