:root {
  --proess-orange: #f15b2a;
  --proess-orange-dark: #d94d22;
  --proess-navy: #253d4b;
  --proess-blue: #2f657b;
  --proess-green: #78be43;
  --proess-red: #ed3f32;
  --proess-yellow: #f2bd35;
  --proess-ink: #1f2529;
  --proess-muted: #687077;
  --proess-light: #f3f5f6;
  --proess-white: #ffffff;
  --proess-black: #111517;
  --proess-font-open-sans: "Open Sans", sans-serif;
  --proess-font-raleway: "Raleway", sans-serif;
  --proess-font-barlow: "Barlow", sans-serif;
  --proess-font-montserrat: "Montserrat", sans-serif;
  --proess-font-karla: "Karla", sans-serif;
  --proess-font-barlow-condensed: "Barlow Condensed", sans-serif;
  --proess-font-mulish: "Mulish", sans-serif;
  --proess-font-body: "Segoe UI", sans-serif;
  --proess-font: var(--proess-font-body);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: #f0f0f1 !important;
  color: #111;
  font-family: var(--proess-font) !important;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 20px !important;
  text-align: justify !important;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--proess-font-body);
  font-size: 20px;
  font-weight: 700;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header and primary menu */
.proess-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease;
}

.proess-header.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, .97);
  color: var(--proess-ink);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.proess-header__inner {
  height: 81px;
  min-height: 81px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 0;
}

.proess-header__logo {
  flex: 0 0 240px;
  line-height: 0;
}

.proess-header__logo .custom-logo-link {
  display: block;
}

.proess-header__logo img {
  width: 180px;
  height: auto;
  display: block;
}

.proess-header__logo .custom-logo {
  width: 125px;
  height: auto;
}

.proess-header__wordmark {
  display: block;
  color: currentColor;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.proess-header__nav {
  flex: 1;
  min-width: 0;
  padding-right: 120px;
}

.proess-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.proess-menu>li {
  position: relative;
}

.proess-menu>li>a {
  display: block;
  padding: 15px 0;
  font-family: var(--proess-font-body);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.proess-menu>li>a:hover,
.proess-menu>li.current-menu-item>a,
.proess-menu>li.current_page_item>a {
  color: var(--proess-orange);
}

.proess-menu>li.menu-item-has-children>a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: currentColor;
  transform: rotate(45deg);
}

.proess-menu .sub-menu .menu-item-has-children>a::after {
  content: "";
  float: right;
  width: 6px;
  height: 6px;
  margin-top: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.proess-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(17, 21, 23, .08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  color: var(--proess-ink);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.proess-menu>li.mega-menu>.sub-menu {
  width: 530px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px 0;
}

.proess-menu li:hover>.sub-menu,
.proess-menu li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.proess-menu .sub-menu li {
  border-bottom: 1px solid rgba(17, 21, 23, .08);
}

.proess-menu .sub-menu li:last-child {
  border-bottom: 0;
}

.proess-menu .sub-menu a {
  display: block;
  padding: 10px 18px;
  color: #666;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

.proess-menu .sub-menu a:hover,
.proess-menu .sub-menu a:focus {
  background: #fff;
  color: var(--proess-orange);
}

.proess-menu .sub-menu .sub-menu {
  top: -1px;
  left: 100%;
  transform: translateX(8px);
}

.proess-menu .sub-menu li:hover>.sub-menu,
.proess-menu .sub-menu li:focus-within>.sub-menu {
  transform: translateX(0);
}

.proess-menu>li:last-child>a {
  padding: 13px 18px;
  background: var(--proess-orange);
  color: #fff;
}

.proess-header__language {
  position: absolute;
  right: 18px;
  top: 23px;
  width: 150px;
  min-width: 150px;
  padding: 0;
  background: transparent;
  color: #656565;
  font-size: .85rem;
  white-space: nowrap;
}

.proess-header__language .goog-te-gadget {
  color: #656565;
  font-family: var(--proess-font-body);
  font-size: 0;
}

.proess-header__language .goog-te-combo {
  width: 150px;
  height: 32px;
  padding: 4px 30px 4px 10px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #464646;
  font: 12px var(--proess-font-body);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.proess-header__language .goog-te-gadget>span {
  display: none;
}

/* Allow GTranslate banner and iframe when needed */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.proess-header__toggle {
  display: none;
}

/* Hero slider */
.main-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #243642;
}

.main-slider .swiper-slide {
  position: relative;
  min-height: 630px;
}

.main-slider .swiper-container {
  position: relative;
  min-height: 630px;
}

.image-layer,
.slider-overlay {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.image-layer {
  z-index: 1;
  transform: scale(1);
  transition: transform 7000ms ease;
}

.swiper-slide-active .image-layer {
  transform: scale(1.06);
}

.slider-overlay {
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, .64), rgba(0, 0, 0, .2) 70%, rgba(0, 0, 0, .15));
}

.proess-slide-content {
  position: relative;
  z-index: 3;
  min-height: 630px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 100px 7% 100px 40%;
  color: var(--proess-white);
  text-align: right;
}

.proess-slide-content--left {
  justify-content: flex-start;
  padding: 100px 40% 100px 7%;
  text-align: left;
}

.proess-slide-content--right {
  justify-content: flex-end;
  padding: 100px 7% 100px 40%;
  text-align: right;
}

.proess-slide-content__inner {
  max-width: 620px;
}

.proess-slide-content h2 {
  margin: 0 0 18px;
  color: var(--proess-white);
  font-family: var(--proess-font-body);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.text p {
  max-width: 580px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  line-height: 1.6;
}

.proess-slide-content--left .text p,
.proess-slide-content--left .proess-slide-content__inner {
  margin-left: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buttons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid transparent;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.buttons-join {
  background: var(--proess-orange);
  color: var(--proess-white);
}

.buttons-volunteer {
  border-color: var(--proess-white);
  color: var(--proess-white);
}

.buttons:hover {
  filter: brightness(1.08);
}

.btn-arrow-icon {
  font-size: 1rem;
}

.proess-slide-button {
  display: inline-block;
  padding: 14px 34px;
  background: var(--proess-orange);
  color: var(--proess-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.proess-slide-button:hover {
  background: var(--proess-orange-dark);
  color: var(--proess-white);
}

.proess-slide-button span {
  padding-left: 14px;
  font-size: 24px;
  line-height: 0;
  vertical-align: -2px;
}

.proess-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 52px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--proess-white);
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.proess-slider-arrow--prev {
  left: 18px;
}

.proess-slider-arrow--next {
  right: 18px;
}

.proess-slider-arrow:hover {
  color: var(--proess-orange);
}

.scroll-down-arrow,
#main-slider-pagination {
  display: none;
}

.scrolling-words-banner {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  overflow: hidden;
  padding: 13px 0;
  background: var(--proess-navy);
  white-space: nowrap;
}

.scrolling-words-wrapper {
  display: inline-block;
  animation: proess-scroll 24s linear infinite;
}

.scrolling-word {
  margin: 0 20px;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scrolling-word.alt {
  color: rgba(255, 255, 255, .72);
  font-style: italic;
}

@keyframes proess-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Shared inner-page hero and project grid */
.proess-inner-hero {
  min-height: 630px;
  padding: 20% 0 60px;
  display: block;
  background-color: var(--proess-navy);
  background-position: center;
  background-size: cover;
}

.proess-inner-hero .container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.proess-inner-hero .entry-title {
  margin: 28.8px 0 0;
  color: var(--proess-white);
  font-family: var(--proess-font-body);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1px 1px 2px #000;
}

.proess-inner-hero .about-tagline {
  margin: 10px 0 0;
  color: #eee;
  font-size: 16px;
  line-height: 20px;
}

.proess-inner-content,
.proess-inner-content>article,
.proess-inner-content>.container {
  width: 100%;
}

.proess-inner-content>article {
  margin: 0;
}

.proess-inner-content article,
.proess-inner-content>.container {
  max-width: 1145px;
  margin: 0 auto;
}

.proess-inner-content .other-projects {
  padding: 40px 0;
}

.proess-contact-map {
  width: 100%;
  height: 500px;
}

.proess-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.proess-contact-content {
  padding: 60px 0 70px;
  background: #fff;
}

.proess-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
}

.proess-contact-number {
  grid-column: 2;
  grid-row: 1;
  width: 437px;
  max-width: 437px;
  min-height: 213px;
  margin: -136px 0 84px 12px;
  padding: 60px 30px 50px 50px;
  border-top: 5px solid #f45905;
  background: #fff;
  box-shadow: 0 1px 25px rgba(19, 26, 10, .2);
}

.proess-contact-inquiry {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  top: -174px;
  padding: 0 12px;
}

.proess-contact-details {
  grid-column: 2;
  grid-row: 2;
  padding: 0 12px;
}

.proess-contact-number p {
  margin: 0 0 16px;
  color: #6cc04a;
  font-size: 13px;
  font-weight: 400;
}

.proess-contact-number h1 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.2;
}

.proess-contact-number h1 a {
  display: inline;
  letter-spacing: -3px;
  color: #000;
}

.proess-contact-inquiry h2,
.proess-contact-details h2 {
  margin: 0 0 8px;
  color: var(--proess-black);
  font-size: 20px;
  line-height: 24px;
}

.proess-contact-inquiry>p {
  margin: 0 0 16px;
  color: #555;
  text-align: left;
}

.proess-contact-form {
  max-width: 514px;
}

.proess-contact-form label {
  display: block;
  margin: 0;
  color: #555;
  font-size: 13px;
  text-align: left;
}

.proess-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.proess-contact-form input,
.proess-contact-form select,
.proess-contact-form textarea {
  display: block;
  width: 100%;
  margin: 7px 0 16px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #333;
  font: inherit;
}

.proess-contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.proess-contact-form button {
  padding: 10px 15px;
  border: 0;
  background: var(--proess-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.proess-contact-form button:hover {
  background: var(--proess-orange-dark);
}

.proess-contact-notice {
  padding: 10px 12px;
  background: rgba(120, 190, 67, .12);
  color: #4d8125 !important;
}

.proess-contact-notice--error {
  background: rgba(237, 63, 50, .1);
  color: var(--proess-red) !important;
}

.proess-contact-details p {
  margin: 0 0 16px;
  color: #555;
  line-height: 20px;
  text-align: left;
}

.proess-contact-details a {
  color: var(--proess-orange);
}

.proess-contact-details p a[href*="maps"] {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 3px;
  background: var(--proess-orange);
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  text-transform: capitalize;
}

.proess-contact-details p a[href*="maps"]:hover {
  background: var(--proess-orange-dark);
  color: #fff;
}

.proess-contact-socials {
  display: flex;
  gap: 14px;
}

.proess-contact-socials a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 12px;
}

.proess-contact-socials a:hover {
  background: var(--proess-orange);
  color: #fff;
}

.proess-project-listing {
  padding: 70px 0;
  background: #fff;
}

.proess-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  max-width: 960px;
  margin: 0 auto;
}

.proess-project-card {
  overflow: hidden;
  border-top: 3px solid var(--proess-orange);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 1px 18px rgba(19, 26, 10, .2);
}

.proess-project-card__image,
.proess-project-card__image img {
  display: block;
  width: 100%;
}

.proess-project-card__image img {
  height: 160px;
  object-fit: cover;
}

.proess-project-card__body {
  padding: 14px;
}

.proess-project-card h2 {
  min-height: 66px;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--proess-black);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.proess-project-card h2 a {
  color: inherit;
}

.proess-project-card__link {
  color: var(--proess-green);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.proess-project-card__link span {
  font-family: Arial, sans-serif;
}

.proess-project-card__link:hover {
  color: var(--proess-orange);
}

.proess-project-pagination {
  max-width: 960px;
  margin: 35px auto 0;
  text-align: center;
}

.proess-project-pagination .page-numbers {
  display: inline-block;
  min-width: 30px;
  padding: 7px 10px;
  margin: 0 3px;
  border: 1px solid #ddd;
  color: #555;
}

.proess-project-pagination .current,
.proess-project-pagination .page-numbers:hover {
  border-color: var(--proess-orange);
  background: var(--proess-orange);
  color: #fff;
}

.proess-project-detail__content {
  max-width: 960px;
  padding-top: 55px;
  padding-bottom: 70px;
  background: #fff;
}

.proess-project-detail__content h2,
.proess-project-detail__content h3 {
  color: var(--proess-black);
}

.proess-project-detail__content p,
.proess-project-detail__content li {
  color: #555;
  line-height: 1.7;
}

.rt-container {
  max-width: 960px;
  margin: 0 auto;
}

.rt-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  max-width: 960px;
  margin: 0 auto;
}

.rt-row>.rt-grid-item {
  width: auto !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.rt-holder {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-top: 3px solid var(--proess-orange);
  border-radius: 3px;
  box-shadow: 0 1px 18px rgba(19, 26, 10, .2) !important;
  background: var(--proess-white);
}

.rt-img-holder img.rt-img-responsive {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.rt-detail {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.rt-detail h4 {
  flex: 1;
  margin: 0 0 10px !important;
  overflow: hidden;
  color: var(--proess-black);
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.35;
  text-align: justify;
}

.rt-detail .read-more a {
  color: var(--proess-green);
  font-size: 10px !important;
  font-weight: 700;
  text-transform: uppercase;
}

.rt-detail .read-more a:hover {
  color: var(--proess-orange);
}

.proess-footer__links li a::before {
  content: "➜";
  display: inline-block;
  padding-right: 10px;
  color: var(--proess-orange);
  font-weight: 700;
}

.proess-footer__social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
  color: var(--proess-white);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.proess-footer__social-links a:hover {
  background: var(--proess-green);
  color: var(--proess-white);
}

/* Homepage content */
.proess-home-content {
  background: #fff;
}

.proess-native-home-intro {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-position: center;
  background-size: cover;
}

.proess-native-home-intro__inner {
  display: grid;
  grid-template-columns: 30% 70%;
  max-width: 960px;
  min-height: 599px;
  margin: 0 auto;
  padding-top: 100px;
}

.proess-native-home-intro__copy {
  padding-right: 30px;
}

.proess-native-home-intro__copy h2 {
  margin: 0 0 18px;
  color: var(--proess-black);
  font-size: 24px;
  line-height: 1.2;
}

.proess-native-home-intro__copy hr {
  width: 146px;
  height: 4px;
  margin: 0 0 28px;
  border: 0;
  background: var(--proess-orange);
}

.proess-native-home-intro__copy p {
  margin: 0 0 32px;
  color: var(--proess-black);
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

.proess-native-home-intro__button {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid var(--proess-orange);
  border-radius: 4px;
  color: var(--proess-orange);
  font-size: 15px;
}

.proess-native-home-intro__button:hover {
  background: var(--proess-orange);
  color: #fff;
}

.proess-native-practice {
  position: relative;
  min-width: 0;
  padding: 0 20px;
}

.proess-native-practice__viewport {
  overflow: hidden;
  height: 490px;
}

.proess-native-practice__track {
  display: flex;
  height: 100%;
  gap: 14px;
  transition: transform .55s ease;
}

.proess-native-practice__card {
  position: relative;
  flex: 0 0 48%;
  min-width: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: transform .35s ease, box-shadow .35s ease;
}

.proess-native-practice__card:hover,
.proess-native-practice__card:focus-visible {
  box-shadow: 0 18px 36px rgba(18, 24, 32, 0.18);
  transform: translateY(-4px);
}

.proess-native-practice__card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(236, 120, 55, 0.05), rgba(236, 120, 55, 0.72));
  opacity: 0;
  transition: opacity .3s ease;
  content: "";
}

.proess-native-practice__card:hover::before,
.proess-native-practice__card:focus-visible::before {
  opacity: 1;
}

.proess-native-practice__card .proess-native-practice__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 18px 18px 16px;
  background: rgba(242, 116, 56, 0.82);
  color: #fff;
  text-align: left;
  opacity: 1;
  transform: translateY(0);
  transition: background .3s ease, transform .3s ease;
}

.proess-native-practice__card .proess-native-practice__content strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.proess-native-practice__card .proess-native-practice__content small {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
}

.proess-native-practice__card:hover .proess-native-practice__content,
.proess-native-practice__card:focus-visible .proess-native-practice__content {
  background: rgba(242, 116, 56, 0.94);
}

.proess-native-practice__card:hover .proess-native-practice__content small,
.proess-native-practice__card:focus-visible .proess-native-practice__content small {
  max-height: 120px;
  margin-top: 8px;
  opacity: 1;
}

.proess-native-practice__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--proess-green);
  color: #fff;
  font-size: 34px;
  line-height: 30px;
  cursor: pointer;
  transform: translateY(-50%);
}

.proess-native-practice__arrow--prev {
  left: 0;
}

.proess-native-practice__arrow--next {
  right: 0;
}

.proess-native-practice__arrow:hover {
  background: var(--proess-orange);
}

.proess-home-content>article {
  width: 100%;
  margin: 0;
}

.proess-home-content .entry-content>* {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

/* Live Proess homepage blocks */
.proess-home-content article>.wp-block-cover {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: 1em;
  overflow: hidden;
}

.proess-home-content .wp-block-cover__image-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.proess-home-content .wp-block-cover__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .3;
}

.proess-home-content .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.proess-home-content .wp-block-cover:has(.commitment-text) {
  min-height: 420px !important;
  padding: 14px;
}

.proess-home-content .wp-block-cover:has(.commitment-text) .wp-block-cover__inner-container {
  display: grid;
  grid-template-columns: 33.333% 66.667%;
  align-items: center;
  max-width: 1164px;
  margin: 0 auto;
}

.proess-home-content .wp-block-cover:has(.commitment-text) .commitment-text {
  padding: 0 12px;
}

.proess-home-content .wp-block-cover:has(.commitment-text)>.wp-block-cover__inner-container>.wp-block-columns {
  display: flex;
  gap: 28px;
  margin: 0;
}

.proess-home-content .wp-block-cover:has(.commitment-text)>.wp-block-cover__inner-container>.wp-block-columns>.wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}

.proess-home-content .wp-block-cover:has(.commitment-text) .commitment-card {
  height: 200px;
}

.proess-intro {
  padding: 100px 0 !important;
}

.proess-intro>.wp-block-group__inner-container>.wp-block-columns {
  width: calc(100% - 30px);
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.proess-intro h2,
.home-projects h2,
.home-commitment h2,
.proess-partners h2 {
  padding: 0;
  margin: 0 0 16px;
  color: var(--proess-black);
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.proess-intro p {
  color: var(--proess-black);
  text-align: justify;
}

.proess-intro-btn {
  margin-top: 2rem;
}

.proess-intro-btn a {
  padding: 10px 15px;
  border: 1px solid var(--proess-orange);
  border-radius: 4px;
  background: var(--proess-white);
  color: var(--proess-orange);
  font-size: 14px;
  font-weight: 600;
}

.proess-intro-btn a:hover {
  border-color: var(--proess-orange);
  background: var(--proess-orange);
  color: var(--proess-white);
}

.home-commitment,
.proess-partners,
.projects-grid {
  padding: 80px 0;
}

.bareas {
  cursor: pointer;
}

.bareas .bbox {
  position: absolute;
  margin-top: -65px;
  padding: 10px 15px;
  border-radius: 3px;
  background: var(--proess-orange);
  box-shadow: 0 3px 29px rgb(0 0 0 / 5%);
  color: var(--proess-white) !important;
  font-size: 16px;
}

.bareas .bbox .bcontent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bareas .bbox .bcontent .title h4 {
  padding: 0;
  margin: 0;
  color: #0a0a0a;
  font-size: 16px !important;
}

.commitment-card {
  height: 200px;
  border-radius: 3px;
  background: var(--proess-white);
}

.commitment-card img {
  width: 100%;
  height: 150px !important;
  object-fit: cover;
}

.commitment-card p {
  padding: 0 10px 10px;
  margin-top: -8px;
  color: #000 !important;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.wp-block-getwid-content-slider .slick-next::before,
.wp-block-getwid-content-slider .slick-prev::before,
.wp-block-getwid-images-slider .slick-next::before,
.wp-block-getwid-images-slider .slick-prev::before {
  color: var(--proess-green);
  opacity: 1;
}

.proess-home-content .wp-block-separator {
  width: 30%;
  height: 3px;
  margin-left: 0;
  border: 0;
  background: var(--proess-orange);
  opacity: 1;
}

/* Footer */
.proess-footer {
  color: var(--proess-white);
  background: #000;
  font-size: 13px;
}

.proess-footer__top {
  padding: 30px 30px 0;
  border-top: 5px solid var(--proess-orange);
  border-bottom: 0;
}

.proess-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .9fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.proess-footer__social-feed {
  min-height: 160px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .7);
}

.proess-footer__links h2,
.proess-footer__contact h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.proess-footer__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.proess-footer__links li {
  margin: 0 0 12px;
}

.proess-footer__links a,
.proess-footer__contact address {
  color: var(--proess-white);
  font-size: 13px;
  line-height: 1.5;
}

.proess-footer__links a:hover,
.proess-footer__contact a:hover {
  color: var(--proess-orange);
}

.proess-footer__contact {
  text-align: right;
}

.proess-footer__contact address {
  margin: 0;
  font-style: normal;
}

.proess-footer__social-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 24px;
  font-size: 1.05rem;
  font-weight: 700;
}

.proess-footer__copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  text-align: center;
}

.proess-footer__copyright small {
  margin-left: 22px;
}

.proess-footer__copyright a:hover {
  color: var(--proess-orange);
}

@media (max-width: 900px) {
  .proess-header__inner {
    min-height: 76px;
    padding: 0 20px;
  }

  .proess-header__logo {
    flex: 1;
  }

  .proess-header__logo img {
    width: 150px;
  }

  .proess-header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .proess-header__toggle span:not(.screen-reader-text) {
    display: block;
    width: 28px;
    height: 2px;
    background: currentColor;
  }

  .proess-header__nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 10px 18px;
    background: rgba(255, 255, 255, .98);
    color: var(--proess-ink);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
  }

  .proess-header__nav.is-open {
    display: block;
  }

  .proess-menu {
    display: block;
  }

  .proess-menu>li>a {
    padding: 10px 0;
  }

  .proess-menu .sub-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 15px;
  }

  .proess-menu li:hover>.sub-menu,
  .proess-menu li:focus-within>.sub-menu {
    display: block;
  }

  .proess-header__language {
    display: none;
  }

  .main-slider .swiper-slide,
  .main-slider .swiper-container,
  .proess-slide-content {
    min-height: 700px;
  }

  .proess-slide-content {
    padding: 130px 25px 150px;
    justify-content: center;
    text-align: center;
  }

  .proess-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .proess-footer__social-feed {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .proess-footer__contact {
    text-align: left;
  }

  .proess-footer__social-links {
    justify-content: flex-start;
  }

  .proess-inner-hero {
    min-height: 500px;
    padding: 180px 20px 45px;
  }

  .proess-contact-grid {
    grid-template-columns: 1fr 1.8fr;
    gap: 30px;
    padding: 30px 20px 0;
  }

  .proess-contact-details {
    grid-column: 1 / -1;
  }

  .proess-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 20px;
  }

  .proess-native-home-intro__inner {
    grid-template-columns: 1fr;
    padding: 70px 20px 0;
  }

  .proess-native-home-intro__copy {
    max-width: 620px;
    padding: 0;
    margin: 0 auto 35px;
  }

  .proess-native-practice {
    padding: 0 20px;
  }

  .rt-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .proess-header__logo img {
    width: 135px;
  }

  .big-title h2 {
    font-size: 2rem;
  }

  .text p {
    font-size: .9rem;
  }

  .proess-footer__inner {
    grid-template-columns: 1fr;
  }

  .proess-footer__copyright small {
    display: block;
    margin: 8px 0 0;
  }

  .proess-inner-hero {
    min-height: 420px;
  }

  .proess-contact-map {
    height: 360px;
  }

  .proess-contact-grid {
    grid-template-columns: 1fr;
  }

  .proess-contact-details {
    grid-column: auto;
  }

  .proess-contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proess-project-grid {
    grid-template-columns: 1fr;
  }

  .proess-native-home-intro__inner {
    padding-right: 10px;
    padding-left: 10px;
  }

  .proess-native-practice__viewport {
    height: 430px;
  }

  .proess-native-practice__card {
    flex-basis: 88%;
  }

  .rt-row {
    grid-template-columns: 1fr;
  }
}

/* Language Selector */
.proess-lang-selector {
  position: absolute;
  right: 18px;
  top: 23px;
  z-index: 100;
}

.proess-lang-selector .gtranslate_wrapper {
  display: inline-block !important;
}

/* Hide Google banner */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Mega Menu Styling - Two Column Layout */
.proess-menu>li.mega-menu>.sub-menu li {
  border-bottom: none !important;
}

.proess-menu>li.mega-menu>.sub-menu li:nth-child(odd) {
  border-right: 1px solid rgba(17, 21, 23, .06);
}

.proess-menu>li.mega-menu>.sub-menu a {
  padding: 12px 20px;
  font-size: 13px;
}

/* Menu Item Heading Styles (for submenus with headings) */
.proess-menu .sub-menu .menu-item-heading {
  padding: 12px 20px 8px;
  color: var(--proess-orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: none !important;
  pointer-events: none;
}

.proess-menu .sub-menu .menu-item-heading:hover {
  background: transparent;
}

/* Enhanced Menu Button Styling for CONTACT US */
.proess-menu>li.menu-button>a,
.proess-menu>li.cta-button>a {
  padding: 13px 24px !important;
  background: var(--proess-orange) !important;
  color: #fff !important;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.proess-menu>li.menu-button>a:hover,
.proess-menu>li.cta-button>a:hover {
  background: var(--proess-orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 91, 42, 0.3);
}

/* Fix scrolled header language selector visibility */
.proess-header.is-scrolled .proess-lang-selector {
  top: 24px;
}

.proess-header.is-scrolled .proess-lang-selector select {
  border-color: rgba(0, 0, 0, .25);
  color: var(--proess-ink);
}


/* Breadcrumb styling */
.breadcrumb {
  max-width: 960px;
  padding: 15px 20px;
  margin: -30px auto 20px;
  font-size: 14px;
  color: #666;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.breadcrumb a {
  color: var(--proess-orange);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--proess-orange-dark);
  text-decoration: underline;
}

/* Native Home Intro Section - Exact Match */
.proess-native-home-intro {
  background-color: #f8f9fa;
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
}

.proess-native-home-intro__inner {
  display: grid;
  grid-template-columns: 34% 66%;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 30px 0;
}

.proess-native-home-intro__copy {
  max-width: 420px;
  padding-right: 28px;
}

.proess-native-home-intro__copy h2 {
  margin: 0 0 18px;
  color: var(--proess-black);
  font-size: 28px;
  line-height: 1.2;
  white-space: nowrap;
}

.proess-native-home-intro__copy hr {
  width: 146px;
  height: 4px;
  margin: 0 0 24px;
  border: none;
  background: var(--proess-orange);
}

.proess-native-home-intro__copy p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.proess-native-home-intro__button {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--proess-orange);
  color: var(--proess-orange);
  transition: all 0.3s ease;
}


/* Projects Page Styling - Exact Match */
.proess-projects-page {
  background: #f0f0f1;
}

.proess-project-listing {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 30px;
}

.proess-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.proess-project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.proess-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.proess-project-card__image {
  display: block;
  overflow: hidden;
  height: 220px;
  position: relative;
}

.proess-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.proess-project-card:hover .proess-project-card__image img {
  transform: scale(1.08);
}

.proess-project-card__body {
  padding: 25px 20px;
}

.proess-project-card__body h2 {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.proess-project-card__body h2 a {
  color: var(--proess-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.proess-project-card__body h2 a:hover {
  color: var(--proess-orange);
}

.proess-project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--proess-orange);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.proess-project-card__link:hover {
  gap: 12px;
  color: var(--proess-orange-dark);
}

.proess-project-card__link span {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

/* Project Pagination */
.proess-project-pagination {
  text-align: center;
  padding: 20px 0;
}

.proess-project-pagination .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 5px;
  background: #fff;
  color: var(--proess-navy);
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.proess-project-pagination .page-numbers:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.proess-project-pagination .page-numbers.current {
  background: var(--proess-orange);
  color: #fff;
  border-color: var(--proess-orange);
}

/* Project Detail Page */
.proess-project-detail__content {
  max-width: 960px;
  padding: 60px 30px;
  background: #fff;
}

.proess-project-detail__content p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Company Overview page parity */
.company-overview {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto !important;
  padding: 50px 0 40px !important;
}

.company-overview>.wp-block-group__inner-container {
  width: 100%;
}

.company-overview>.wp-block-group__inner-container>.wp-block-columns {
  align-items: flex-start;
  gap: 28px;
}

.company-overview>.wp-block-group__inner-container>.wp-block-columns>.wp-block-column:first-child {
  flex-basis: 66.66% !important;
}

.company-overview>.wp-block-group__inner-container>.wp-block-columns>.wp-block-column:last-child {
  flex-basis: 40% !important;
}

.company-overview h2 {
  margin: 0 0 8px;
  color: #000;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.company-overview p {
  margin: 0 0 1rem;
  color: #000;
  line-height: 20px;
}

.company-overview .about-menu,
.company-overview .services-list {
  margin-left: 30px;
  padding-left: 25px;
  border-left: 1px solid var(--proess-orange);
}

.company-overview .about-menu h4,
.company-overview .services-list h4 {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
}

.company-overview .about-menu ul,
.company-overview .services-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-overview .about-menu ul li,
.company-overview .services-list ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-overview .about-menu ul li a,
.company-overview .services-list ul li a {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  transition: all .3s linear;
}

.company-overview .about-menu ul li a::before,
.company-overview .services-list ul li a::before {
  content: "\f285";
  display: inline-block;
  padding-right: 8px;
  color: var(--proess-orange);
  font-family: "bootstrap-icons" !important;
  font-size: 13px;
  font-weight: 400;
  vertical-align: baseline;
}

.company-overview .about-menu ul li a:hover,
.company-overview .services-list ul li a:hover {
  color: var(--proess-orange);
}

.company-overview .about-menu ul li a:hover::before,
.company-overview .services-list ul li a:hover::before {
  color: var(--proess-orange);
}

.company-overview .wp-block-getwid-icon-box {
  text-align: left;
}

.company-overview .wp-block-getwid-icon-box__icon-wrapper {
  color: var(--proess-orange);
}

.company-overview .wp-block-getwid-icon-box h3 {
  margin: 0 0 8px;
  color: #000;
  font-size: 15px !important;
  line-height: 1.25;
  text-align: left;
}

.company-overview .wp-block-getwid-icon-box p {
  margin-bottom: 1rem;
  color: #000;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .company-overview {
    padding: 40px 12px !important;
  }

  .company-overview>.wp-block-group__inner-container>.wp-block-columns {
    display: block;
  }

  .company-overview>.wp-block-group__inner-container>.wp-block-columns>.wp-block-column:first-child,
  .company-overview>.wp-block-group__inner-container>.wp-block-columns>.wp-block-column:last-child {
    flex-basis: 100% !important;
  }

  .company-overview .about-menu,
  .company-overview .services-list {
    margin-top: 30px;
    padding-left: 0;
    border-left: 0;
  }

  .proess-contact-content {
    padding: 40px 0 50px;
  }

  .proess-contact-grid {
    display: block;
    padding: 0 20px;
  }

  .proess-contact-number,
  .proess-contact-inquiry,
  .proess-contact-details {
    width: auto;
    max-width: none;
    margin: 0 0 35px;
    padding: 0;
  }

  .proess-contact-inquiry {
    top: 0;
  }

  .proess-contact-number {
    min-height: 0;
    padding: 40px 24px 35px;
    border-top-width: 5px;
  }

  .proess-contact-number h1 {
    font-size: 30px;
  }
}

body.page-id-964 .service-page,
body.page-id-1014 .service-page,
body.page-id-1016 .service-page,
body.page-id-1018 .service-page,
body.page-id-1020 .service-page,
body.page-id-1022 .service-page {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 50px 0 40px;
}

body.page-id-964 .service-page > .wp-block-group__inner-container > .wp-block-columns,
body.page-id-1014 .service-page > .wp-block-group__inner-container > .wp-block-columns,
body.page-id-1016 .service-page > .wp-block-group__inner-container > .wp-block-columns,
body.page-id-1018 .service-page > .wp-block-group__inner-container > .wp-block-columns,
body.page-id-1020 .service-page > .wp-block-group__inner-container > .wp-block-columns,
body.page-id-1022 .service-page > .wp-block-group__inner-container > .wp-block-columns {
  align-items: flex-start;
  gap: 28px;
}

body.page-id-964 .service-page .services-list,
body.page-id-1014 .service-page .services-list,
body.page-id-1016 .service-page .services-list,
body.page-id-1018 .service-page .services-list,
body.page-id-1020 .service-page .services-list,
body.page-id-1022 .service-page .services-list {
  margin-left: 0;
  padding-left: 25px;
  border-left: 1px solid var(--proess-orange);
}

body.page-id-964 .service-page .services-list h4,
body.page-id-1014 .service-page .services-list h4,
body.page-id-1016 .service-page .services-list h4,
body.page-id-1018 .service-page .services-list h4,
body.page-id-1020 .service-page .services-list h4,
body.page-id-1022 .service-page .services-list h4 {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 19.2px;
  text-align: left;
}

body.page-id-964 .service-page .services-list ul,
body.page-id-1014 .service-page .services-list ul,
body.page-id-1016 .service-page .services-list ul,
body.page-id-1018 .service-page .services-list ul,
body.page-id-1020 .service-page .services-list ul,
body.page-id-1022 .service-page .services-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.page-id-964 .service-page .services-list li,
body.page-id-1014 .service-page .services-list li,
body.page-id-1016 .service-page .services-list li,
body.page-id-1018 .service-page .services-list li,
body.page-id-1020 .service-page .services-list li,
body.page-id-1022 .service-page .services-list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 21px;
  color: #000;
  line-height: 20px;
  list-style: none;
}

body.page-id-964 .service-page .services-list li::before,
body.page-id-1014 .service-page .services-list li::before,
body.page-id-1016 .service-page .services-list li::before,
body.page-id-1018 .service-page .services-list li::before,
body.page-id-1020 .service-page .services-list li::before,
body.page-id-1022 .service-page .services-list li::before {
  content: "\f285";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--proess-orange);
  font-family: "bootstrap-icons" !important;
  font-size: 13px;
}

/* Practice area page parity */
.page-id-964 .proess-inner-hero .container,
.page-id-1014 .proess-inner-hero .container,
.page-id-1016 .proess-inner-hero .container,
.page-id-1018 .proess-inner-hero .container,
.page-id-1020 .proess-inner-hero .container,
.page-id-1022 .proess-inner-hero .container {
  max-width: 1140px;
}

.page-id-964 .proess-inner-hero .about-tagline,
.page-id-1014 .proess-inner-hero .about-tagline,
.page-id-1016 .proess-inner-hero .about-tagline,
.page-id-1018 .proess-inner-hero .about-tagline,
.page-id-1020 .proess-inner-hero .about-tagline,
.page-id-1022 .proess-inner-hero .about-tagline {
  max-width: 1116px;
  margin-top: 10px;
  color: #eee;
  font-size: 16px;
  line-height: 20px;
}

.page-id-964 .proess-practice-content-section,
.page-id-1014 .proess-practice-content-section,
.page-id-1016 .proess-practice-content-section,
.page-id-1018 .proess-practice-content-section,
.page-id-1020 .proess-practice-content-section,
.page-id-1022 .proess-practice-content-section {
  padding: 0;
  background: #fff;
}

.page-id-964 .proess-practice-container,
.page-id-1014 .proess-practice-container,
.page-id-1016 .proess-practice-container,
.page-id-1018 .proess-practice-container,
.page-id-1020 .proess-practice-container,
.page-id-1022 .proess-practice-container {
  width: 100%;
  max-width: 1208px;
  margin: 0 auto;
  padding: 0 14px;
}

.page-id-964 .proess-practice-description > .wp-block-cover,
.page-id-1014 .proess-practice-description > .wp-block-cover,
.page-id-1016 .proess-practice-description > .wp-block-cover,
.page-id-1018 .proess-practice-description > .wp-block-cover,
.page-id-1020 .proess-practice-description > .wp-block-cover,
.page-id-1022 .proess-practice-description > .wp-block-cover {
  min-height: 0;
  padding: 14px;
}

.page-id-964 .proess-practice-description > .wp-block-cover > .wp-block-cover__inner-container,
.page-id-1014 .proess-practice-description > .wp-block-cover > .wp-block-cover__inner-container,
.page-id-1016 .proess-practice-description > .wp-block-cover > .wp-block-cover__inner-container,
.page-id-1018 .proess-practice-description > .wp-block-cover > .wp-block-cover__inner-container,
.page-id-1020 .proess-practice-description > .wp-block-cover > .wp-block-cover__inner-container,
.page-id-1022 .proess-practice-description > .wp-block-cover > .wp-block-cover__inner-container {
  width: 100%;
  max-width: 1116px;
  margin: 0 auto;
}

.page-id-964 .proess-practice-description > .wp-block-cover .wp-block-columns,
.page-id-1014 .proess-practice-description > .wp-block-cover .wp-block-columns,
.page-id-1016 .proess-practice-description > .wp-block-cover .wp-block-columns,
.page-id-1018 .proess-practice-description > .wp-block-cover .wp-block-columns,
.page-id-1020 .proess-practice-description > .wp-block-cover .wp-block-columns,
.page-id-1022 .proess-practice-description > .wp-block-cover .wp-block-columns {
  gap: 28px;
}

.page-id-964 .proess-practice-description > .wp-block-cover .wp-block-column:first-child,
.page-id-1014 .proess-practice-description > .wp-block-cover .wp-block-column:first-child,
.page-id-1016 .proess-practice-description > .wp-block-cover .wp-block-column:first-child,
.page-id-1018 .proess-practice-description > .wp-block-cover .wp-block-column:first-child,
.page-id-1020 .proess-practice-description > .wp-block-cover .wp-block-column:first-child,
.page-id-1022 .proess-practice-description > .wp-block-cover .wp-block-column:first-child {
  flex-basis: 66.66% !important;
}

.page-id-964 .proess-practice-description > .wp-block-cover .wp-block-column:last-child,
.page-id-1014 .proess-practice-description > .wp-block-cover .wp-block-column:last-child,
.page-id-1016 .proess-practice-description > .wp-block-cover .wp-block-column:last-child,
.page-id-1018 .proess-practice-description > .wp-block-cover .wp-block-column:last-child,
.page-id-1020 .proess-practice-description > .wp-block-cover .wp-block-column:last-child,
.page-id-1022 .proess-practice-description > .wp-block-cover .wp-block-column:last-child {
  flex-basis: 40% !important;
}

.page-id-964 .proess-practice-description ul,
.page-id-1014 .proess-practice-description ul,
.page-id-1016 .proess-practice-description ul,
.page-id-1018 .proess-practice-description ul,
.page-id-1020 .proess-practice-description ul,
.page-id-1022 .proess-practice-description ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-id-964 .proess-practice-description li,
.page-id-1014 .proess-practice-description li,
.page-id-1016 .proess-practice-description li,
.page-id-1018 .proess-practice-description li,
.page-id-1020 .proess-practice-description li,
.page-id-1022 .proess-practice-description li {
  position: relative;
  margin: 0;
  padding: 0 0 0 21px;
  color: #000;
  line-height: 20px;
}

.page-id-964 .proess-practice-description li::before,
.page-id-1014 .proess-practice-description li::before,
.page-id-1016 .proess-practice-description li::before,
.page-id-1018 .proess-practice-description li::before,
.page-id-1020 .proess-practice-description li::before,
.page-id-1022 .proess-practice-description li::before {
  content: "\\f285";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--proess-orange);
  font-family: "bootstrap-icons" !important;
  font-size: 13px;
}

@media only screen and (max-width: 768px) {
  .page-id-964 .proess-practice-description > .wp-block-cover .wp-block-columns,
  .page-id-1014 .proess-practice-description > .wp-block-cover .wp-block-columns,
  .page-id-1016 .proess-practice-description > .wp-block-cover .wp-block-columns,
  .page-id-1018 .proess-practice-description > .wp-block-cover .wp-block-columns,
  .page-id-1020 .proess-practice-description > .wp-block-cover .wp-block-columns,
  .page-id-1022 .proess-practice-description > .wp-block-cover .wp-block-columns {
    display: block;
  }
}

/* Responsive Projects */
@media (max-width: 900px) {
  .proess-project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .proess-project-grid {
    grid-template-columns: 1fr;
  }

  .proess-project-listing {
    padding: 40px 20px;
  }
}

/* Projects archive live parity */
.proess-inner-hero .proess-breadcrumbs {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}

.proess-inner-hero .proess-breadcrumbs a {
  color: #fff;
}

.proess-projects-page .proess-inner-hero .container {
  max-width: 1116px;
  padding-right: 0;
  padding-left: 0;
}

.proess-projects-page {
  background: #fff;
}

.proess-projects-page .proess-project-listing {
  max-width: none;
  min-height: 494px;
  padding: 80px 0;
}

.proess-projects-page .proess-project-listing .rt-row {
  width: 1116px;
  max-width: 1116px;
  margin: 0 auto;
  padding-top: 24px;
  grid-template-columns: repeat(4, 279px);
  gap: 0;
}

.proess-projects-page .proess-project-listing .rt-holder {
  width: 264px;
  height: 273px;
  min-height: 273px;
}

.proess-projects-page .proess-project-listing .rt-img-holder img.rt-img-responsive {
  height: 160px;
}

.proess-projects-page .proess-project-listing .rt-detail {
  min-height: 96px;
}

.proess-projects-page .proess-project-listing .rt-detail h4 {
  line-height: 15px !important;
}

@media only screen and (max-width: 768px) {
  .proess-projects-page .proess-project-listing .rt-row {
    width: auto;
    max-width: none;
    margin: 0 20px;
    padding-top: 0;
    grid-template-columns: 1fr;
  }

  .proess-projects-page .proess-project-listing .rt-holder {
    width: 100%;
    height: auto;
    min-height: 273px;
  }
}

.proess-project-detail .proess-inner-hero .container {
  max-width: 1140px;
}

.proess-project-detail {
  background: #f0f0f1;
}

.proess-project-detail__content {
  width: 100%;
  max-width: none;
  padding: 0;
  background: #f0f0f1;
}

.proess-project-detail__content .project-section {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 0;
}

.proess-project-detail__content .project-section > .wp-block-group__inner-container {
  width: 100%;
}

.proess-project-detail__content h2,
.proess-project-detail__content h3 {
  margin: 0 0 8px;
  color: var(--proess-black);
  font-size: 20px;
  line-height: 24px;
}

.proess-project-detail__content p,
.proess-project-detail__content li {
  color: #555;
  line-height: 1.8;
}

.proess-related-projects {
  padding: 40px 0 80px;
  background: #f0f0f1;
}

.proess-related-projects .container {
  max-width: 1116px;
  margin: 0 auto;
}

.proess-related-projects h3 {
  margin: 0 0 19px;
  color: var(--proess-black);
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
}

.proess-related-projects .rt-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 0;
}

.proess-related-projects .rt-holder {
  height: 273px;
  overflow: hidden;
  border-top: 3px solid var(--proess-orange);
  background: #fff;
  box-shadow: 0 1px 18px rgba(19, 26, 10, .2);
}

.proess-related-projects .rt-img-holder img.rt-img-responsive {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.proess-related-projects .rt-detail {
  min-height: 96px;
  padding: 14px;
}

.proess-related-projects .rt-detail h4 {
  margin: 0 0 10px !important;
  font-size: 12px !important;
  line-height: 15px !important;
}

@media only screen and (max-width: 768px) {
  .proess-related-projects .container {
    padding: 0 20px;
  }

  .proess-related-projects .rt-row {
    grid-template-columns: 1fr;
  }
}

/* Company Overview core values parity */
main article > .wp-block-cover.has-parallax {
  min-height: 553px !important;
  padding: 14px !important;
}

main article > .wp-block-cover.has-parallax > .wp-block-cover__inner-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

main article > .wp-block-cover.has-parallax > .wp-block-cover__inner-container > .wp-block-columns {
  width: 100% !important;
  max-width: 1116px !important;
  margin-right: auto;
  margin-left: auto;
  gap: 28px;
}

main article > .wp-block-cover.has-parallax .about-proess {
  padding: 60px 0 0 !important;
}

main article > .wp-block-cover.has-parallax .about-proess > .wp-block-group__inner-container > .wp-block-columns {
  width: calc(100% - 64px) !important;
  max-width: none !important;
  margin-right: 0;
  margin-left: 0;
}

main article > .wp-block-cover.has-parallax h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.2;
}

main article > .wp-block-cover.has-parallax p {
  color: #fff;
  line-height: 20px;
}

main article > .wp-block-cover.has-parallax > .wp-block-cover__inner-container > .wp-block-columns > .wp-block-column {
  min-width: 0;
}

main article > .wp-block-cover.has-parallax .wp-block-columns .wp-block-columns {
  gap: 28px;
}

main article > .wp-block-cover.has-parallax .wp-block-getwid-icon-box {
  min-height: 102px;
  align-items: flex-start;
  color: #fff;
}

main article > .wp-block-cover.has-parallax .wp-block-getwid-icon-box__icon-wrapper {
  color: #fff;
}

main article > .wp-block-cover.has-parallax .wp-block-getwid-icon-box h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px !important;
  line-height: 18px;
  text-align: left;
}

main article > .wp-block-cover.has-parallax .wp-block-getwid-icon-box p {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  main article > .wp-block-cover.has-parallax {
    min-height: 0 !important;
    padding: 40px 20px !important;
  }

  main article > .wp-block-cover.has-parallax .wp-block-columns {
    display: block;
  }

  main article > .wp-block-cover.has-parallax .wp-block-getwid-icon-box {
    min-height: 0;
    margin-bottom: 28px;
  }
}

/* Company Partners page parity */
.proess-partners-page .proess-inner-hero .container {
  max-width: 1140px;
}

.proess-partners-page .proess-about-section {
  width: 100%;
  padding: 0;
  background: #fff;
}

.proess-partners-page .proess-about-container,
.proess-partners-page .proess-about-content-wrapper,
.proess-partners-page .proess-about-main-content,
.proess-partners-page .proess-about-article {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.proess-partners-page .proess-about-article > .wp-block-cover {
  width: 100%;
  min-height: 0;
  padding: 14px;
}

.proess-partners-page .proess-about-article > .wp-block-cover > .wp-block-cover__inner-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.proess-partners-page .proess-about-article > .wp-block-cover > .wp-block-cover__inner-container > .wp-block-columns {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-column[style*="flex-basis:100%"] {
  flex-basis: 100% !important;
}

.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-column > .wp-block-group.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns {
  display: block;
  width: 100%;
  margin: 0;
}

.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 1116px;
  max-width: 1116px;
  margin: 0 0 24.5px;
}

.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(1) { min-height: 141px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(2) { min-height: 100px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(3) { min-height: 100px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(4) { min-height: 100px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(5) { min-height: 97px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(6) { min-height: 104px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(7) { min-height: 100px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(8) { min-height: 103px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(9) { min-height: 146px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(10) { min-height: 141px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(11) { min-height: 115px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)):nth-child(12) { min-height: 106px; }
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-group__inner-container > .wp-block-columns:nth-child(30) { min-height: 103px; }

/* The final three partners use a shorter, natural-size logo row on the live page. */
.proess-partners-page .proess-about-article .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  max-width: 1140px;
  min-height: 168px;
  margin: 0 auto 26px;
  grid-template-columns: none !important;
}

.proess-partners-page .proess-about-article .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) > .wp-block-column {
  min-width: 0;
  margin: 0;
}

.proess-partners-page .proess-about-article .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) > .wp-block-column:first-child {
  flex: 0 0 360px;
}

.proess-partners-page .proess-about-article .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) > .wp-block-column:last-child {
  flex: 1 1 auto;
}

.proess-partners-page .proess-about-article .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) .wp-block-columns:has(> .wp-block-column:nth-child(2)):not(:has(> .wp-block-column:nth-child(3))) {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  padding-left: 0;
  grid-template-columns: none !important;
}

.proess-partners-page .proess-about-article .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) .wp-block-columns:has(> .wp-block-column:nth-child(2)):not(:has(> .wp-block-column:nth-child(3))) > .wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}

.proess-partners-page .proess-about-article .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) .wp-block-columns:has(> .wp-block-column:nth-child(2)):not(:has(> .wp-block-column:nth-child(3))) > .wp-block-column:first-child {
  flex: 0 0 112px !important;
}

.proess-partners-page .proess-about-article .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) .wp-block-columns:has(> .wp-block-column:nth-child(2)):not(:has(> .wp-block-column:nth-child(3))) > .wp-block-column:last-child {
  flex: 1 1 auto;
}

.proess-partners-page .proess-about-article .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) img {
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.proess-partners-page .proess-about-article img[src*="ICS.jpeg"] {
  width: 53px !important;
  height: 53px !important;
  transform: none;
}

.proess-partners-page .proess-about-article img[src*="ERA.png"] {
  width: 70px !important;
  height: 71px !important;
  transform: none;
}

.proess-partners-page .proess-about-article img[src*="852df3eb"] {
  width: 149px !important;
  height: 103px !important;
  transform: none;
}

.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(2)):not(:has(> .wp-block-column:nth-child(3))) {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 29px;
  width: 100%;
  margin: 0;
  padding-left: 24px;
}

.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns > .wp-block-column {
  min-width: 0;
  flex-basis: auto !important;
}

.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container img {
  display: inline-block;
  width: auto;
  max-width: 100px;
  height: auto;
  max-height: 105px;
  object-fit: contain;
}

.proess-partners-page .proess-about-article > .wp-block-cover h2 {
  margin: 0 0 8px;
  color: #000;
  font-size: 17px !important;
  line-height: 20px;
  text-align: left;
}

.proess-partners-page .proess-about-article > .wp-block-cover h3,
.proess-partners-page .proess-about-article > .wp-block-cover p {
  font-size: 13px;
}

.proess-partners-page .proess-about-article > .wp-block-cover h3 {
  line-height: 15.6px;
}

.proess-partners-page .proess-about-article > .wp-block-cover p {
  line-height: 20px;
}

/* Keep the final three partner logos in one compact row, as on the live page. */
.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 18px;
  min-height: 168px !important;
  height: auto !important;
  margin-bottom: 26px;
  padding-left: 0;
  grid-template-columns: none !important;
}

.proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) > .wp-block-column {
  min-width: 0;
  margin: 0;
  height: auto !important;
  align-self: flex-start;
}

.proess-partners-page .wp-block-columns:has(img[src*="ICS.jpeg"]) .wp-block-columns,
.proess-partners-page .wp-block-columns:has(img[src*="ICS.jpeg"]) .wp-block-column {
  min-height: 0 !important;
  height: auto !important;
  align-self: flex-start;
}

.proess-partners-page .wp-block-columns:has(img[src*="ICS.jpeg"]) .wp-block-columns {
  display: flex !important;
  width: 100%;
  gap: 0;
  padding-left: 0;
  grid-template-columns: none !important;
}

.proess-partners-page .wp-block-columns:has(img[src*="ICS.jpeg"]) .wp-block-columns > .wp-block-column,
.proess-partners-page .wp-block-columns:has(img[src*="ICS.jpeg"]) > .wp-block-column {
  flex: 0 0 33.33% !important;
}

.proess-partners-page .wp-block-columns:has(img[src*="ICS.jpeg"]) .wp-block-columns > .wp-block-column:last-child,
.proess-partners-page .wp-block-columns:has(img[src*="ICS.jpeg"]) > .wp-block-column:last-child {
  flex: 0 0 66.66% !important;
}

@media only screen and (max-width: 768px) {
  .proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns {
    display: block;
  }

  .proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container .wp-block-columns:has(> .wp-block-column:nth-child(3)) {
    width: 100%;
    max-width: none;
  }

  .proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns:has(img[src*="ICS.jpeg"]) {
    display: block !important;
    min-height: 0 !important;
  }

  .proess-partners-page .proess-about-article > .wp-block-cover .wp-block-group.container > .wp-block-group__inner-container > .wp-block-columns > .wp-block-column {
    margin-bottom: 28px;
  }
}