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

.oc-gateway {
  --oc-gateway-max-width: 1290px;
  --oc-gateway-border: #e5e7eb;
  --oc-gateway-image-width: 33.333%;
  --oc-gateway-image-height: 210px;
  --oc-gateway-image-scale: 1.1;
  --oc-gateway-icon-size: 34px;
  --oc-gateway-underline-size: 1px;
  --oc-gateway-underline-color: currentColor;
  --oc-gateway-ease: cubic-bezier(0.645, 0.045, 0.355, 1);

  box-sizing: border-box;
  width: 100%;
  color: #111111;
  font-family: var(--oc-font);
}

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

.oc-gateway__list {
  width: 100%;
  max-width: var(--oc-gateway-max-width);
  margin: 0 auto;
}

@media (prefers-reduced-motion: no-preference) {
  .oc-gateway.is-pending-reveal .oc-gateway__item {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    pointer-events: none;
  }
}

.oc-gateway__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--oc-gateway-border);
  padding: 32px 0;
  color: inherit;
  text-decoration: none;
}

.oc-gateway__item:last-child {
  border-bottom: 1px solid var(--oc-gateway-border);
}

a.oc-gateway__item {
  cursor: pointer;
}

.oc-gateway__item:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}

.oc-gateway__media {
  width: 100%;
  height: var(--oc-gateway-image-height);
  margin: 0;
  overflow: hidden;
}

.oc-gateway__image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1);
  transition: transform 500ms var(--oc-gateway-ease);
}

.oc-gateway__item:is(:hover, :focus-visible) .oc-gateway__image,
.oc-gateway__item:focus-within .oc-gateway__image {
  transform: scale(var(--oc-gateway-image-scale));
}

.oc-gateway__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
}

.oc-gateway__number {
  flex-shrink: 0;
  margin: 0;
  font-family: var(--oc-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111111;
}

.oc-gateway__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  flex: 1;
}

.oc-gateway__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.oc-gateway__title {
  display: inline;
  margin: 0;
  padding-bottom: 1px;
  font-family: var(--oc-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111111;
  background-image: linear-gradient(
    transparent calc(100% - var(--oc-gateway-underline-size)),
    var(--oc-gateway-underline-color) var(--oc-gateway-underline-size)
  );
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 100%;
  transition: background-size 500ms var(--oc-gateway-ease);
}

.oc-gateway__item:is(:hover, :focus-visible) .oc-gateway__title,
.oc-gateway__item:focus-within .oc-gateway__title {
  background-size: 100% 100%;
}

.oc-gateway__icon {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  overflow: hidden;
  width: var(--oc-gateway-icon-size);
  height: var(--oc-gateway-icon-size);
  color: #111111;
}

.oc-gateway__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: translate(-100%, 100%);
  transition: transform 500ms var(--oc-gateway-ease);
  will-change: transform;
}

.oc-gateway__item:is(:hover, :focus-visible) .oc-gateway__icon svg,
.oc-gateway__item:focus-within .oc-gateway__icon svg {
  transform: translate(0, 0);
}

.oc-gateway__copy {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #5c5c5c;
}

@media (min-width: 768px) {
  .oc-gateway__item,
  .oc-gateway--image-right .oc-gateway__item {
    flex-direction: row;
    gap: 40px;
  }

  .oc-gateway--image-right .oc-gateway__item {
    flex-direction: row-reverse;
  }

  .oc-gateway__media {
    width: var(--oc-gateway-image-width);
    flex-shrink: 0;
  }

  .oc-gateway__content {
    width: auto;
    flex: 1;
    min-width: 0;
  }
}

@media (min-width: 1024px) {
  .oc-gateway {
    --oc-gateway-icon-size: 56px;
  }

  .oc-gateway__content {
    gap: 40px;
  }

  .oc-gateway__number,
  .oc-gateway__title {
    font-size: 28px;
  }
}

@media (min-width: 1280px) {
  .oc-gateway__item {
    gap: 100px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .oc-gateway__main {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oc-gateway__image,
  .oc-gateway__title,
  .oc-gateway__icon svg {
    transition: none;
  }

  .oc-gateway__item:is(:hover, :focus-visible) .oc-gateway__image,
  .oc-gateway__item:focus-within .oc-gateway__image {
    transform: none;
  }

  .oc-gateway__icon svg {
    transform: none;
  }
}
