.elementor-widget-one_city_hero,
.elementor-widget-one_city_hero > .elementor-widget-container {
  width: 100%;
}

.oc-hero {
  --oc-hero-height: 1080px;
  --oc-hero-max-width: 1800px;
  --oc-hero-image-width: 1619px;
  --oc-hero-image-height: 1000px;
  --oc-hero-image-offset: 10%;
  --oc-hero-content-max-width: 700px;
  --oc-hero-content-gap: 56px;
  --oc-hero-text-gap: 12px;
  --oc-hero-radial-inner: #ffd7c9;
  --oc-hero-radial-outer: #020202;
  --oc-hero-linear-color: #000000;
  --oc-hero-linear-opacity: 70%;
  --oc-hero-blur-height: 480px;
  --oc-hero-blur-intensity: 8;
  --oc-hero-blur-tint: #101010;
  --oc-hero-cta-glass: rgba(250, 252, 255, 0.1);
  --oc-hero-cta-icon-bg: #ffffff;
  --oc-hero-cta-icon-color: #051a24;

  position: relative;
  box-sizing: border-box;
  padding: 64px 0 112px;
  background-color: #020202;
}

.oc-hero *,
.oc-hero *::before,
.oc-hero *::after {
  box-sizing: border-box;
}

.oc-hero__inner {
  width: 100%;
  max-width: var(--oc-hero-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.oc-hero__stage {
  position: relative;
  height: var(--oc-hero-height);
  overflow: hidden;
}

.oc-hero__radial,
.oc-hero__linear {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.oc-hero__radial {
  z-index: 1;
  background-image: radial-gradient(
    44.12% 56.28% at 53.65% 56.85%,
    var(--oc-hero-radial-inner) 0%,
    var(--oc-hero-radial-outer) 100%
  );
}

.oc-hero__linear {
  z-index: 2;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--oc-hero-linear-color) 100%);
  opacity: var(--oc-hero-linear-opacity);
}

.oc-hero__media {
  position: absolute;
  right: var(--oc-hero-image-offset);
  bottom: 0;
  z-index: 3;
}

.oc-hero__figure {
  width: var(--oc-hero-image-width);
  height: var(--oc-hero-image-height);
  margin: 0 auto;
  overflow: hidden;
}

.oc-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.oc-hero__content {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  width: min(100%, var(--oc-hero-content-max-width));
  padding: 0 20px 24px;
}

.oc-hero__content-inner {
  display: flex;
  flex-direction: column;
  gap: var(--oc-hero-content-gap);
}

.oc-hero__text {
  display: flex;
  flex-direction: column;
  gap: var(--oc-hero-text-gap);
  max-width: var(--oc-hero-content-max-width);
  margin: 0 auto;
  text-align: center;
}

.oc-hero__title {
  margin: 0;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #ffffff;
  opacity: 0;
}

.oc-hero__copy {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
}

.oc-hero__cta {
  display: flex;
  justify-content: center;
  opacity: 0;
}

.oc-hero__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
  border: 0;
  border-radius: 999px;
  padding: 4px 4px 4px 20px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease-out;
}

.oc-hero__button:hover,
.oc-hero__button:focus-visible {
  text-decoration: none;
  color: inherit;
}

.oc-hero__button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.oc-hero__button:active {
  transform: scale(0.98);
}

.oc-hero__button-glass {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background-color: var(--oc-hero-cta-glass);
  box-shadow: inset 0 8px 15px 0 rgba(255, 255, 255, 0.12), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  pointer-events: none;
}

.oc-hero__button-label {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.oc-hero__button-swap {
  display: grid;
  overflow: hidden;
}

.oc-hero__button-text {
  grid-column: 1;
  grid-row: 1;
  transition: translate 450ms cubic-bezier(0.34, 1.42, 0.64, 1);
  transition-delay: 50ms;
}

.oc-hero__button-text--hover {
  translate: 0 100%;
}

.oc-hero__button:hover .oc-hero__button-text:not(.oc-hero__button-text--hover),
.oc-hero__button:focus-visible .oc-hero__button-text:not(.oc-hero__button-text--hover) {
  translate: 0 -100%;
}

.oc-hero__button:hover .oc-hero__button-text--hover,
.oc-hero__button:focus-visible .oc-hero__button-text--hover {
  translate: 0 0;
}

.oc-hero__button-icon {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 999px;
  padding: 10px;
  background-color: var(--oc-hero-cta-icon-bg);
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.12);
  color: var(--oc-hero-cta-icon-color);
}

.oc-hero__button-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  transition: transform 450ms ease-out;
}

.oc-hero__button:hover .oc-hero__button-icon svg,
.oc-hero__button:focus-visible .oc-hero__button-icon svg {
  transform: rotate(45deg);
}

.oc-hero__blur {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  height: var(--oc-hero-blur-height);
  overflow: hidden;
  pointer-events: none;
}

.oc-hero__blur-fill,
.oc-hero__blur-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.oc-hero__blur-fill {
  background-image: linear-gradient(180deg, transparent 0%, var(--oc-hero-blur-tint) 100%);
}

.oc-hero__blur-layer {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.oc-hero__blur-layer--1 {
  z-index: 1;
  -webkit-backdrop-filter: blur(calc(1px * var(--oc-hero-blur-intensity)));
  backdrop-filter: blur(calc(1px * var(--oc-hero-blur-intensity)));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 25%);
}

.oc-hero__blur-layer--2 {
  z-index: 2;
  -webkit-backdrop-filter: blur(calc(3px * var(--oc-hero-blur-intensity)));
  backdrop-filter: blur(calc(3px * var(--oc-hero-blur-intensity)));
  -webkit-mask-image: linear-gradient(to bottom, transparent 25%, #000 75%);
  mask-image: linear-gradient(to bottom, transparent 25%, #000 75%);
}

.oc-hero__blur-layer--3 {
  z-index: 3;
  -webkit-backdrop-filter: blur(calc(6px * var(--oc-hero-blur-intensity)));
  backdrop-filter: blur(calc(6px * var(--oc-hero-blur-intensity)));
  -webkit-mask-image: linear-gradient(to bottom, transparent 75%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 75%, #000 100%);
}

@media (min-width: 640px) {
  .oc-hero__inner {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  .oc-hero__title {
    font-size: 56px;
    letter-spacing: -1.5px;
  }
}

@media (max-width: 767px) {
  .oc-hero {
    --oc-hero-height: 720px;
    --oc-hero-image-width: 920px;
    --oc-hero-image-height: 620px;
    --oc-hero-blur-height: 280px;
    --oc-hero-content-gap: 32px;
  }

  .oc-hero__title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .oc-hero__copy {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oc-hero__image,
  .oc-hero__title,
  .oc-hero__copy,
  .oc-hero__cta {
    opacity: 1;
  }

  .oc-hero__button,
  .oc-hero__button-text,
  .oc-hero__button-icon svg {
    transition: none;
  }

  .oc-hero__button-text--hover {
    translate: none;
  }

  .oc-hero__button:hover .oc-hero__button-text:not(.oc-hero__button-text--hover),
  .oc-hero__button:focus-visible .oc-hero__button-text:not(.oc-hero__button-text--hover) {
    translate: none;
  }

  .oc-hero__button:hover .oc-hero__button-icon svg,
  .oc-hero__button:focus-visible .oc-hero__button-icon svg {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .oc-hero__button-glass,
  .oc-hero__blur-layer {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
/* .progressive-blur-white {
  position: relative;
  overflow: hidden;
}

.progressive-blur-white::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(39px);
  -webkit-backdrop-filter: blur(39px);

  mask-image: linear-gradient(180deg, rgba(16, 16, 16, 0.00) 0%, #020311 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(16, 16, 16, 0.00) 0%, #020311 100%);

  pointer-events: none;
} */
/* .progressive-blur-white{
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.00) 0%, #020311 100%);
  backdrop-filter: blur(39.014976501464844px);
  -webkit-backdrop-filter: blur(39.014976501464844px);
}
.progressive-blur-black{
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.00) 0%, #020311 100%);
  backdrop-filter: blur(39.014976501464844px);
  -webkit-backdrop-filter: blur(39.014976501464844px);
} */

/* .progressive-blur {
  position: relative;
  overflow: hidden;
} */

/* .progressive-blur-white::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
} */

/* .progressive-blur-white::before {
  content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(16, 16, 16, 0) 0%,
        #020311 100%
    );
    backdrop-filter: blur(39px);
    -webkit-backdrop-filter: blur(39px);

    mask-image: linear-gradient(
        180deg,
        transparent 0%,
        black 100%
    );
    -webkit-mask-image: linear-gradient(
        180deg,
        transparent 0%,
        black 100%
    );

    pointer-events: none;
} */

/* .progressive-blur-white::after {
  height: 35%;
  background: linear-gradient(
      180deg,
      rgba(16, 16, 16, 0) 0%,
      #020311 100%
  );
  backdrop-filter: blur(39px);
  -webkit-backdrop-filter: blur(39px);

  mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 100%
  );
  -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 100%
  );
} */
