.elementor-widget-content-scale,
.elementor-widget-content-scale > .elementor-widget-container {
  width: 100%;
  height: 100%;
}

.pro-content-scale {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: var(--content-scale-align-items, flex-end);
  justify-content: var(--content-scale-justify-content, center);
  perspective: 1200px;
}

.pro-content-scale--clickable {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.pro-content-scale--clickable:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.pro-content-scale__inner {
  position: relative;
  width: var(--content-scale-parent-width, 100%);
  height: var(--content-scale-parent-height, 100%);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  transform-origin: center bottom;
  transform: scale(0.3);
  opacity: 0;
  filter: blur(20px);
  transition: transform var(--content-scale-scale-duration, 800ms) var(--content-scale-easing, cubic-bezier(.16, 1, .3, 1)) var(--content-scale-delay, 0s),
    opacity var(--content-scale-duration, 1.3s) var(--content-scale-easing, cubic-bezier(.16, 1, .3, 1)) var(--content-scale-delay, 0s),
    filter var(--content-scale-duration, 1.3s) var(--content-scale-easing, cubic-bezier(.16, 1, .3, 1)) var(--content-scale-delay, 0s);
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.pro-content-scale__inner.is-visible {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}

.pro-content-scale__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.pro-content-scale__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.pro-content-scale__content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: var(--content-scale-content-direction, column);
  justify-content: var(--content-scale-content-justify, center);
  align-items: var(--content-scale-content-align, center);
  gap: var(--content-scale-content-gap, 16px);
  color: #fff;
}

.pro-content-scale__text {
  display: flex;
  flex-direction: var(--content-scale-text-direction, column);
  justify-content: var(--content-scale-text-justify, flex-start);
  align-items: var(--content-scale-text-align, center);
  gap: var(--content-scale-text-gap, 12px);
  flex: 1 1 auto;
  min-width: 0;
  color: inherit;
  text-align: inherit;
}

.pro-content-scale__title {
  margin: 0;
}

.pro-content-scale__description {
  max-width: 720px;
}

.pro-content-scale__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-weight: 600;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}

.pro-content-scale__button:hover,
.pro-content-scale__button:focus {
  transform: translateY(-2px);
}

.pro-content-scale[data-icon-position="before"] .pro-content-scale__button-icon {
  margin-right: var(--content-scale-icon-spacing, 8px);
  margin-left: 0;
}

.pro-content-scale[data-icon-position="after"] .pro-content-scale__button-icon {
  margin-left: var(--content-scale-icon-spacing, 8px);
  margin-right: 0;
}

.pro-content-scale__button.pro-double-text-button .pro-content-scale__button-icon {
  margin: 0;
}

.pro-content-scale__button-icon svg,
.pro-content-scale__button-icon i {
  display: block;
  width: var(--content-scale-icon-size, 18px);
  height: var(--content-scale-icon-size, 18px);
}

.pro-content-scale__button-icon i {
  font-size: var(--content-scale-icon-size, 18px);
  line-height: 1;
}

@media (max-width: 767px) {
  .pro-content-scale__content {
    padding: 32px;
  }

  .pro-content-scale__text {
    text-align: center;
  }
}
