/* Custom CSS */

/*========== General styles ==========*/
html {
  max-width: 100vw;
}

html, body {
	position:relative;
	overflow-x:hidden;
    word-break: keep-all !important;
  hyphens: none !important;
}

body {
  background-color: var(--clr-primary);
  overflow-x: visible !important;
}

#page-container {
  overflow-y: visible !important;
}

.et_pb_section {
  background-color: transparent !important;
}

.no-wrap {
    white-space: nowrap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-white);
}

p {
  color: var(--clr-white);
  opacity: 0.8;
}

img {
  pointer-events: none;
}

.et_builder_inner_content.has_et_pb_sticky {
    z-index: 1 !important;
}


/*=== Buttons ===*/
.btn-primary {
  border-radius: 8px;
  padding: 18px 24px;
  background-color: var(--clr-white);
  border: solid 1px var(--clr-white) !important;
  color: var(--clr-primary);
  border: none;
}

.btn-primary:hover {
  border-radius: 8px;
  padding: 18px 24px;
  background-color: transparent;
  border: solid 1px var(--clr-white);
  color: var(--clr-white) !important;
  border: none;
}

.btn-secondary {
  border-radius: 8px;
  padding: 18px 24px;
  background-color: var(--clr-primary);
  border: solid 1px var(--clr-white);
  color: var(--clr-white);
}

.btn-secondary:hover {
  border-radius: 8px;
  padding: 18px 24px;
  background-color: var(--clr-primary);
  border: solid 1px var(--clr-white) !important;
  color: var(--clr-white);
}

/* === glass-card-section === */
.glass-card-section {
  display: flex;
  flex-direction: column;
  max-width: 100vw !important;
  overflow: hidden !important;
  min-height: 639px;
  background-size: contain;
}

.glass-card-section .et_pb_row {
  display: flex;
  justify-content: center;
}

.glass-card-section .et_pb_row::before {
  position: absolute;
  top: 50px;
  content: url("/wp-content/uploads/2025/10/glass-card-ray-bg.svg");
  animation: gentleFade 7s ease-in-out infinite;
}

@keyframes gentleFade {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) translatex(0%);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.97);
    transform: scale(1) translatex(-20%);
  }
}

.glass-card-section .et_pb_column {
  max-width: 924px;
  background: url("/wp-content/uploads/2025/10/noise-texture.png"),
    rgba(87, 95, 114, 0.1);
  background-size: cover;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 60px;
  border-top: solid 1px #767588;
  border-bottom: solid 1px #767588;
}

.glass-card-section .et_pb_column::before {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  content: url("/wp-content/uploads/2025/10/glass-card-grid-bg-left.svg");
}

.glass-card-section .et_pb_column::after {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  content: url("/wp-content/uploads/2025/10/glass-card-grid-bg-right.svg");
}

/* === logos carousel section */
.logos-carousel-row::before {
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(90deg, #030115 0%, rgba(3, 1, 21, 0) 100%);
}

.logos-carousel-row::after {
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(270deg, #030115 0%, rgba(3, 1, 21, 0) 100%);
}

.logos-carousel-row .dsm_image_carousel:nth-of-type(2) {
  margin-top: -1px;
}

.logos-carousel-row .swiper-container {
  margin-bottom: 0 !important;
}

.logos-carousel-row .swiper-container .swiper-slide {
  padding: 16px;
  width: 100%;
  /* max-width: 240px; */
  height: 80px;
  border: solid 1px #51505e;
  margin-right: -1px;
}

/*=== swipable card stack ===*/
/* .card-stack {
    position: relative;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

/* .card-swipable {
    position: absolute;
    width: 340px;
    height: 420px;
    background: url('/wp-content/uploads/2025/10/noise-texture.png'), rgba(181, 201, 240, 0.2);
    background-size: cover;
    backdrop-filter: blur(30px);
    border-radius: 30px;
    border-top: solid 1px #767588;
    border-bottom: solid 1px #767588;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 45px;
} */
.swippable-cards-container {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.swippable-cards-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swippable-card {
  position: absolute;
  width: 340px;
  height: 420px;
  background: url("/wp-content/uploads/2025/10/noise-texture.png"),
    rgba(181, 201, 240, 0.2);
  background-size: cover;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 30px;
  border-top: solid 1px #767588;
  border-bottom: solid 1px #767588;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

/*=== Sticky header ===*/
.sticky-title-row {
  display: flex;
  justify-content: center;
  max-width: 100% !important;
}

.sticky-title-row .container {
  width: 100%;
  min-height: 75vh;
  position: relative;
}

.sticky-title-row .sticky-wrapper {
  position: sticky;
  top: 40vh;
}

.sticky-title-row .sticky-content {
  transition: transform 0.1s ease-out;
}

.sticky-title-row h2,
.sticky-title-row h3,
.sticky-title-row p {
  transition: color 0.3s ease;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*=== Hero ===*/
.hero-section .hero-title-row .et_pb_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.hero-section .hero-btn-row .et_pb_column {
  margin-top: 52px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-section .hero-bg-row {
  z-index: 0;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-section .hero-bg-row .et_pb_column {
  display: flex;
  justify-content: space-between;
  width: 100vw !important;
}

.hero-section .hero-bg-row .et_pb_column .et_pb_image {
  margin: 0 !important;
}

/*=== Navbar ===*/
header {
    z-index: 9999;
    position: sticky;
    top: 0;
    width: 100%;
}

/* .header-section {
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
} */

.header-section .navbar-row {
  width: fit-content;
  border-radius: 0 0 20px 20px;
  padding: 10px 30px;
  background-color: #030115;
  border-bottom: solid 1px #7e7b91;
}

.header-section .navbar-row .et_pb_column {
  display: flex;
  align-items: center;
  gap: 100px;
}

.header-section .navbar-row .et_pb_menu {
  background-color: transparent;
}

.header-section .navbar-row .et_pb_menu #menu-item-10864 .sub-menu {
  margin-top: -65px !important;
}

.header-section .navbar-row .et_pb_menu li {
  margin: 0;
  padding: 12px;
}

.header-section .navbar-row .et_pb_menu li.menu-item-10759 {
  margin-right: 15px;
}

.header-section .navbar-row .et_pb_menu li a {
  padding: 0;
  color: var(--clr-white);
  font-size: var(--fs-p-small);
  font-weight: var(--fw-p-small);
  line-height: var(--lh-p-small);
}

.header-section .navbar-row .sub-menu {
  width: fit-content !important;
}

.header-section .navbar-row .sub-menu ul {
  margin-left: -20px;
}

.menu-item .current-menu-item .dashicons-arrow-down-alt2:before {
  color: #000;
}

.menu-item#rmp-menu-item-10759 a {
  pointer-events: none !important;
}

.menu-item#rmp-menu-item-10759 .rmp-submenu.rmp-submenu-depth-1 a,
.menu-item#rmp-menu-item-10759 a .rmp-menu-subarrow {
  pointer-events: all !important;
}

/* === case studies section === */
.case-studies-section .case-studies-row {
  z-index: 99;
  display: flex;
  gap: 75px;
}

.case-studies-section .case-studies-row::after {
  display: none;
}

.case-studies-section .case-studies-row .case-studies-column {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
.home-only.case-studies-section .case-studies-row .case-studies-column {
    justify-content: center;
}

.case-studies-section .card {
  position: relative;
  height: 400px;
  width: 100%;
  border-radius: 35px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.case-studies-section .card:hover {
  transform: translateY(-10px);
}

.case-studies-section .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-studies-section .card:hover .card-image {
  transform: scale(1.1);
}

.case-studies-section .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 1, 17, 0) 0%, #0201117a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.case-studies-section .card:hover .card-overlay {
  opacity: 1;
}

.case-studies-section .top-content,
.case-studies-section .bottom-content {
  padding: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}

.case-studies-section .card:hover .top-content {
  transform: translateY(0);
}

.case-studies-section .bottom-content {
  transform: translateY(100%);
}

.case-studies-section .card:hover .bottom-content {
  transform: translateY(0);
}

.case-studies-section .card .card-overlay .top-content .case-study-tag {
  width: fit-content;
  font-size: 15px !important;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  background: rgba(2, 1, 19, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px)
}

.case-studies-section .card .card-overlay .bottom-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.case-studies-section .card .card-overlay .bottom-content p {
  color: var(--clr-white) !important;
}

.case-studies-section .card .card-overlay .bottom-content .card-button,
.case-studies-section .card .card-overlay .bottom-content .card-button img{
  width: 49px !important;
  height: 49px !important;
  flex-shrink: 0 !important;

}

.case-studies-section .card .card-overlay .bottom-content .card-button img {
  width: 21px;
  height: 21px;
}

.case-studies-section .card .card-overlay .bottom-content .card-button:hover {
  transform: rotate(45deg);
}

/* ========== homepage ========== */
/* === hero section === */

/* === services section === */
.homepage.services-section {
  padding: 0 !important;
}

.homepage.services-section .sticky-title-row {
  padding-top: 20vh;
}

.homepage.services-section .services-details-row {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 0;
  padding: 0;
}

.homepage.services-section .services-details-row .et_pb_column {
  max-width: 1300px;
}

.homepage.services-section .spotlight-locations-row {
  max-width: 100% !important;
}

.homepage.services-section .services-details-row .services-container {
  display: flex;
  width: 100% !important;
}

.homepage.services-section .services-details-row .areus-logo {
  margin-inline: auto !important;
}

.homepage.services-section
  .services-details-row
  .services-container
  .services-grid {
  position: absolute;
  width: 100% !important;
  top: 0px;
  min-height: 100%;
  display: flex;
}

.homepage.services-section .services-details-row .services-grid .service {
  position: absolute;
  z-index: 99;
}

.homepage.services-section .services-details-row .areus-logo img {
  max-width: 881px !important;
  object-fit: contain;
  pointer-events: none !important;
}

.homepage.services-section .services-details-row .service h3 {
  text-align: center;
}

.homepage.services-section .services-details-row .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
}

.service-button {
  opacity: 0.5;
  transition: opacity 0.25s ease-in-out;
}

.service:hover .service-button {
  opacity: 1;
}

.spotlight-center {
  position: relative !important;
}

.homepage.services-section .services-details-row .services-grid .service h5 {
  text-align: center;
}

.homepage.services-section
  .services-details-row
  .services-grid
  .service:nth-of-type(1) {
  left: -2%;
  top: 42%;
}

.homepage.services-section
  .services-details-row
  .services-grid
  .service:nth-of-type(2) {
  left: 10%;
  top: 15%;
}

.homepage.services-section
  .services-details-row
  .services-grid
  .service:nth-of-type(3) {
  left: 20%;
  top: -5%;
}

.homepage.services-section
  .services-details-row
  .services-grid
  .service:nth-of-type(4) {
  right: 20%;
  top: -5%;
}

.homepage.services-section
  .services-details-row
  .services-grid
  .service:nth-of-type(5) {
  right: 10%;
  top: 15%;
}

.homepage.services-section
  .services-details-row
  .services-grid
  .service:nth-of-type(6) {
  right: -2%;
  top: 42%;
}

.info-card {
  position: absolute;
  background: white;
  border: 2px solid #007bff;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
}

.info-card.active {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card h6 {
  font-size: 16px;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Arrow for tooltip */
.info-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #007bff;
}

.areus-logo {
  transition: opacity 0.3s ease;
}

.areus-logo.dimmed {
  opacity: 0.5;
}

/* === why Areus section === */
.homepage.why-areus-section {
  height: 1340px;
}

.homepage.why-areus-section h2 {
  font-size: var(--fs-h1-big) !important;
  font-weight: var(--fw-h1-big) !important;
  line-height: var(--lh-h1-big) !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*=== testimonials section ===*/
.homepage.testimonials-section {
  width: 100%;
  padding: 0;
}

.homepage.testimonials-section .et_pb_row {
  width: 100% !important;
  max-width: 100% !important;
}

.homepage.testimonials-section .slider-container {
  max-width: 100vw;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.homepage.testimonials-section .swiper {
  width: 100%;
  padding: 0 0 80px;
  overflow: visible;
}

.homepage.testimonials-section .swiper-slide {
  width: 800px;
  max-width: 90%;
  transition: all 0.5s ease;
  opacity: 0.6;
  filter: blur(4px);
}

.homepage.testimonials-section .swiper-slide-active {
  opacity: 1 !important;
  filter: blur(0) !important;
}

.homepage.testimonials-section .testimonial-card {
  padding: 50px 100px;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.homepage.testimonials-section .progress-dots-container {
  position: relative;
  left: calc(25% + 100px);
  margin-bottom: 60px;
}

.homepage.testimonials-section .progress-dots-container .progress-dots {
  display: flex;
  gap: 10px;
}

.homepage.testimonials-section .progress-dots-container .progress-dots .dot {
  width: 75px;
  height: 6px;
  opacity: 0.2;
  background: #c1d5f5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.homepage.testimonials-section
  .progress-dots-container
  .progress-dots
  .dot.active {
  opacity: 1;
}

.homepage.testimonials-section .testimonial-card .testimonial-text {
  color: #ffffff;
  margin-bottom: 50px;
  font-style: italic;
  line-height: 1.4em !important;
}

.homepage.testimonials-section .testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.homepage.testimonials-section .testimonial-card .author-image {
  width: 85px;
  height: 85px;
  padding: 5px;
  background: rgba(181, 201, 240, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 9px;
  border-top: solid 1px #767588;
  border-bottom: solid 1px #767588;
  overflow: visible;
}

.homepage.testimonials-section .testimonial-card .author-image::after {
  content: url("/wp-content/uploads/2025/10/testimonail-author-bg.svg");
  position: absolute;
  top: -25%;
  left: -40%;
  z-index: 0;
}

.homepage.testimonials-section .testimonial-card .author-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  z-index: 9 !important;
}

.homepage.testimonials-section .testimonial-card .author-info h4 {
  margin-bottom: 5px;
}

/* Navigation Buttons */
.homepage.testimonials-section .nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 84px;
  height: 84px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  z-index: 10;
}

.homepage.testimonials-section .nav-button:hover {
  opacity: 1;
}

.homepage.testimonials-section .nav-prev {
  left: calc(25% - 42px);
}

.homepage.testimonials-section .nav-next {
  right: calc(25% - 42px);
}

/* === portfolio section === */
.homepage.portfolio-section {
  padding-inline: 0 !important;
}

.homepage.portfolio-section .sticky-title-row {
  padding-top: 20vh !important;
  z-index: 0;
  margin-bottom: -150px;
}

.homepage.portfolio-section .carousel-row {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 100%;
  background-position: center bottom -20px;
}

.homepage.portfolio-section .carousel-row::before {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(2, 1, 17, 0.7) 0%,
    rgba(2, 1, 17, 0) 100%
  );
  z-index: 99;
}

.homepage.portfolio-section .carousel-row::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(2, 1, 17, 0.7) 2%,
    rgba(2, 1, 17, 0) 100%
  );
  z-index: 99;
}

.homepage.portfolio-section .carousel-container {
  background-size: contain;
  background-position: center bottom;
  /* background-image: url("/wp-content/uploads/2025/10/Group-203-1.png"); */
  background-repeat: no-repeat;
  /* width: 100vw; */
  height: 1000px;
  overflow-y: hidden;
  overflow-x: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
}


.homepage.portfolio-section .carousel-container.dragging {
  cursor: grabbing;
}

.homepage.portfolio-section .card-deck-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}



.homepage.portfolio-section .card {
  width: 500px;
  height: 650px;
  position: absolute;
  border-radius: 15px !important;
  overflow: hidden;
  transition: all 0.5s ease;
}

.homepage.portfolio-section .card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.homepage.portfolio-section .card-overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.homepage.portfolio-section .card-overlay .top-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
}

.homepage.portfolio-section .card-overlay .top-content .read-more-btn {
  pointer-events: auto;
  height: fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-p-small) !important;
  line-height: 1em !important;
  font-weight: var(--fw-p-small) !important;
  color: var(--clr-white) !important;
  padding: 5px 10px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(146, 146, 146, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-wrap: nowrap;
  flex-shrink: 0;
}
.homepage.portfolio-section .card-overlay .top-content .read-more-btn img {
  width: 20px;
  height: 20px;
}



.homepage.portfolio-section .card-overlay .top-content {
  background: linear-gradient(0deg, rgba(2, 1, 17, 0) 0%, #02011191 100%);
  padding: 25px;
  display: flex;
}

.homepage.portfolio-section .card-overlay .bottom-content {
  background: linear-gradient(180deg, rgba(2, 1, 17, 0) 0%, #020111 100%);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.homepage.portfolio-section .card-overlay .bottom-content .tags {
  display: flex;
  gap: 10px;
}

.homepage.portfolio-section .card-overlay .bottom-content .tags .tag {
  display: flex;
  align-items: center;
  font-size: var(--fs-p-small) !important;
  line-height: 1em !important;
  font-weight: var(--fw-p-small) !important;
  color: var(--clr-white) !important;
  padding: 5px 10px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(146, 146, 146, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px)
}

.homepage.portfolio-section .card-overlay .bottom-content .tags {
  transform: translateY(100px);
  transition: transform 0.5s ease;
}

.homepage.portfolio-section .card.active .card-overlay .bottom-content .tags {
  margin-top: auto;
  transform: translateY(0);
}

.homepage.portfolio-section .card.active .card-overlay .bottom-content p {
  opacity: 1;
}

.homepage.portfolio-section .card-overlay .bottom-content p {
  max-width: 300px;
  transform: translateY(150%);
  transition: transform 0.5s ease;
}

.homepage.portfolio-section .card.active .card-overlay .bottom-content p {
  transform: translateY(0);
}

.homepage.portfolio-section .card.active {
  z-index: 10;
}

.homepage.portfolio-section .carousel-row .carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: translateY(-150px) !important;
}
.homepage.portfolio-section .carousel-row .carousel-navigation button {
  cursor: pointer;
  background: none !important;
  border: none;
}

/* === case studies section ===*/
.homepage.case-studies-section .sticky-title-row {
  z-index: 0;
  margin-bottom: -50vh;
}

.homepage.case-studies-section .sticky-title-row .container {
  height: 50vh !important;
}

/* === contact section === */
.homepage.contact-section .et_pb_column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homepage.contact-section .et_pb_column .et_pb_module,
.homepage.contact-section .et_pb_column .et_pb_button_module_wrapper {
  width: 100%;
  max-width: 500px !important;
}

.heading-scroll-gradient {
  position: sticky;
  top: 0;
  z-index: 10;
  font-size: 4rem;
  /* Adjust for your design */
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 1em 0;
  transition: background 0.3s ease, -webkit-text-fill-color 0.3s ease;
  background-clip: text;
  -webkit-background-clip: text;
}

/*========== About page ==========*/
.about.hero-section {
  height: 150vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.about.hero-section .et_pb_row {
  margin: 0;
}

/*=== who we are section ===*/
.about.who-we-are-section h2 {
  font-size: var(--fs-h1-big) !important;
  font-weight: var(--fw-h1-big) !important;
  line-height: var(--lh-h1-big) !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about.who-we-are-section .card-swipable:nth-child(1) {
  z-index: 5;
  transform: translateX(-50%) translateY(0) rotate(0deg);
}

.about.who-we-are-section .card-swipable:nth-child(2) {
  z-index: 4;
  transform: translateX(-50%) translateY(10px) rotate(2deg);
}

.about.who-we-are-section .card-swipable:nth-child(3) {
  z-index: 3;
  transform: translateX(-50%) translateY(20px) rotate(4deg);
}

.about.who-we-are-section .card-swipable:nth-child(4) {
  z-index: 2;
  transform: translateX(-50%) translateY(30px) rotate(6deg);
}

.about.who-we-are-section .card-swipable.swiped-left {
  transform: translateX(-200%) rotate(-30deg) !important;
  opacity: 0;
}

.about.who-we-are-section .card-swipable.swiped-right {
  transform: translateX(200%) rotate(30deg) !important;
  opacity: 0;
}

/*=== Our mission section ===*/
.about.our-mission-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.about.our-mission-section .video-row {
  position: absolute;
  width: 500px !important;
  height: auto !important;
  right: 0;
}

.about.our-mission-section .video-wrapper {
  position: absolute;
  right: 0;
}

.about.our-mission-section .video {
  background-color: red;
}

/*=== Work with us section ===*/
.about.work-with-us-section .benefit-row {
  display: flex;
  gap: 100px;
}

.about.work-with-us-section .benefit-row::after {
  display: none !important;
}

.about.work-with-us-section .benefit-row .description-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 25px 100px 25px;
}

.about.work-with-us-section .benefit-row .image-column {
  aspect-ratio: 1/1;
  background: url(/wp-content/uploads/2025/10/noise-texture.png),
    rgba(181, 201, 240, 0.2);
  background-size: cover;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 30px;
  border-top: solid 1px #767588;
  border-bottom: solid 1px #767588;
  padding: 20px;
  z-index: 9;
}

.about.work-with-us-section .benefit-row .image-column::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0) 70%
        );
    z-index: -1;
    animation: rotate 15s linear infinite;
}

.about.about.work-with-us-section .benefit-row .image-column img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 30px;
}

.about.work-with-us-section .benefit-row .image-column .et_pb_image_wrap {
  width: 100%;
}

/*=== image divider section ===*/

.about.image-divider-section {
  z-index: 0;
  margin-top: -250px;
  padding: 0;
}

.about.image-divider-section .et_pb_image_wrap,
.about.image-divider-section .et_pb_image_wrap img {
  width: 100vw;
}


/*=== global reach section ===*/
.about.spotlight-info-section {
  margin-top: -100px;
}

.about.spotlight-info-section .title-row .et_pb_column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-grid
  .spotlight-card:nth-of-type(1) {
  left: 8%;
  top: 5%;
}

.about.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-grid
  .spotlight-card:nth-of-type(2) {
  right: 50%;
  top: -25%;
  transform: translateX(50%);
}

.about.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-grid
  .spotlight-card:nth-of-type(3) {
  right: 8%;
  top: 5%;
}

.about.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container:has(
    .spotlight-grid .spotlight-card:nth-of-type(1).hovered
  )
  .spotlight-connector {
  transform: translatex(-50%) rotate(-45deg);
}

.about.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container:has(
    .spotlight-grid .spotlight-card:nth-of-type(2).hovered
  )
  .spotlight-connector {
  transform: translatex(-50%) rotate(0deg);
}

.about.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container:has(
    .spotlight-grid .spotlight-card:nth-of-type(3).hovered
  )
  .spotlight-connector {
  transform: translatex(-50%) rotate(45deg);
}

/*=== CTA section ===*/
.about.cta-section .et_pb_row .et_pb_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.typewriter-section {
  z-index: 99;
}
.typewriter-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.typewriter-section .typewriter-heading {
  border-right: 3px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: none;
}

.typewriter-section .typewriter-heading.completed {
  border-right: none;
  width: fit-content !important;
  animation: none;
}

.typewriter-section .body-text {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.typewriter-section .body-text .word {
  font-family: var(--ff-main);
  font-size: var(--fs-h3);
  font-weight: var(--fw-h3);
  line-height: var(--lh-h3);
  color: #fff;
  opacity: 0.2;
  transition: opacity 0.5s ease;
}

.typewriter-section .body-text .word.highlighted {
  opacity: 1;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* ========== service page ========== */

/* === page hero === */
.service.hero-section .hero-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service.hero-section .hero-nav .cards-wrapper {
  display: flex;
  align-items: flex-end
}

.service.hero-section .hero-nav .card {
  height: 400px;
  z-index: 9;
  border-radius: 30px;
  padding: 50px 150px;
  background: radial-gradient(
    68% 59% at 50% 0%,
    rgba(193, 213, 245, 0.4) 0%,
    rgba(193, 213, 245, 0) 100%
  );
}

.service.hero-section .hero-nav .left-card {
  background: radial-gradient( 60% 55% at left top, rgba(193, 213, 245, 0.15) 0%, rgba(193, 213, 245, 0.00) 100%);
  width: 125px;
  height: 350px;
  border-radius: 20px 0 0 0;
}
.service.hero-section .hero-nav .right-card {
  background: radial-gradient( 60% 55% at right top, rgba(193, 213, 245, 0.15) 0%, rgba(193, 213, 245, 0.00) 100%);
  width: 125px;
  height: 350px;
  border-radius: 0 20px 0 0;
}

.service.hero-section .hero-nav .btn-next {
  transform: translateX(-50%);
}
.service.hero-section .hero-nav .btn-prev {
    transform: translateX(50%);
}

.service.hero-section .hero-nav .btn-next,
.service.hero-section .hero-nav .btn-prev {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.service.hero-section .hero-nav .btn-next:hover,
.service.hero-section .hero-nav .btn-prev:hover {
  opacity: 1;
}

.service.who-we-are-section .title-row {
  height: 50vh;
}


/*=== Why areus section ===*/
.service.why-areus-section {
  height: 1340px;
}

.service.why-areus-section h2 {
  font-size: var(--fs-h1-big) !important;
  font-weight: var(--fw-h1-big) !important;
  line-height: var(--lh-h1-big) !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*=== Case study section ===*/
  .case-studies-section.service .case-studies-row .case-studies-column {
    gap: 100px;

  }



  .case-studies-section.service .case-studies-row .case-studies-column:nth-of-type(2) {
    margin-top: 150px;
  }


.case-studies-section.service-child .sticky-title-row .container {
    height: 65vh !important;
    min-height: 65vh !important;
}

.case-studies-section.service-child .sticky-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px

}

.service.case-studies-section .title-row {
  z-index: 9;
}




/* ========== Contact page  ========== */

.contact .hero-section h1 {
  font-size: var(--fs-h2) !important;
  font-weight: var(--fw-h2) !important;
  line-height: var(--lh-h2) !important;
}

.contact.form-section.glass-card-section .glass-card {
    overflow: hidden;
}
.contact.form-section.glass-card-section .et_pb_column::after {
    right: -75px !important;
    top: -75px !important;
}
.contact.form-section.glass-card-section .et_pb_column::before {
    left: -75px !important;
    bottom: -75px !important;
}
.contact.form-section form {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.contact.form-section .contact-form-container form .two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact.form-section .contact-form-container .wpcf7 {
  width: 100%;
  max-width: 760px !important;
  margin-inline: auto !important;
}

.contact.form-section .contact-form-container .wpcf7 label,
.contact.form-section .contact-form-container .wpcf7 input,
.contact.form-section .contact-form-container .wpcf7 textarea {
  width: 100% !important;
  display: block;
}

.contact.form-section .contact-form-container .wpcf7 label {
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.6);
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.contact.form-section .contact-form-container form .acceptance label {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: unset !important;
}

.contact.form-section .contact-form-container form .acceptance span {
  width: 100% !important;
}
.contact.form-section .contact-form-container p {
    opacity: 1 !important;
}
.contact.form-section .contact-form-container .wpcf7-acceptance span {
    color: #fff;
}
.contact.form-section .contact-form-container .wpcf7-acceptance span a {
    color: #fff;
    text-decoration: underline;
}

.contact.form-section .contact-form-container .wpcf7-submit {
    border: solid 1px #fff;
}
.contact.form-section
  .contact-form-container
  form
  .acceptance
  input[type="checkbox"] {
  max-width: max-content !important;
}

.contact.form-section .contact-form-container form .acceptance span {
  margin-left: 0px !important;
}

.contact.form-section .contact-form-container form input[type="text"],
.contact.form-section .contact-form-container form input[type="email"],
.contact.form-section .contact-form-container form textarea {
  border-radius: 9px;
  border: 1px solid rgba(193, 213, 245, 0.8);
  background: linear-gradient(
    270deg,
    rgba(193, 213, 245, 0.05) 0%,
    rgba(193, 213, 245, 0.3) 100%
  );
  padding: 13px 16px;
  color: #fff !important;
  margin-top: 12px;
}

.contact.form-section
  .contact-form-container
  form
  input[type="text"]::placeholder,
.contact.form-section
  .contact-form-container
  form
  input[type="email"]::placeholder,
.contact.form-section .contact-form-container form textarea:placeholder {
  color: #ffffff4d !important;
}

.contact.form-section .contact-form-container input::placeholder,
.contact.form-section .contact-form-container textarea::placeholder {
  font-style: italic;
}
.contact.form-section .contact-form-container input::-webkit-input-placeholder,
.contact.form-section .contact-form-container textarea::-webkit-input-placeholder {
  font-style: italic;
}



.contact.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-grid
  .spotlight-card:nth-of-type(1) {
  left: 15%;
  top: -15%;
}

.contact.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-grid
  .spotlight-card:nth-of-type(2) {
  right: 15%;
  top: -15%;
}

.contact.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-grid
  .spotlight-card:nth-of-type(3) {
  left: 0%;
  bottom: 60%;
}

.contact.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-grid
  .spotlight-card:nth-of-type(4) {
  right: 0%;
  bottom: 60%;
}

.contact.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container:has(
    .spotlight-grid .spotlight-card:nth-of-type(1).hovered
  )
  .spotlight-connector {
  transform: translatex(-50%) rotate(330deg);
}

.contact.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container:has(
    .spotlight-grid .spotlight-card:nth-of-type(2).hovered
  )
  .spotlight-connector {
  transform: translatex(-50%) rotate(30deg);
}

.contact.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container:has(
    .spotlight-grid .spotlight-card:nth-of-type(3).hovered
  )
  .spotlight-connector {
  transform: translatex(-50%) rotate(295deg);
}

.contact.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container:has(
    .spotlight-grid .spotlight-card:nth-of-type(4).hovered
  )
  .spotlight-connector {
  transform: translatex(-50%) rotate(63deg);
}

.spotlight-info-section .spotlight-locations-row .spotlight-container {
  display: flex;
  width: 100% !important;
}

.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-center {
  margin-inline: auto !important;
}

.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-grid {
  position: absolute;
  width: 100%;
  top: 0px;
  min-height: 100%;
  display: flex;
}

.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-grid
  .spotlight-card {
  position: absolute;
  z-index: 9999;
}

.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-center
  img {
  max-width: 881px !important;
  object-fit: contain;
  pointer-events: none !important;
}

.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-card
  h5 {
  text-align: center;
  margin-block: 15px;
}

.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
}

.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-card
  p {
  color: rgba(255, 255, 255, 0.6) !important;
  text-align: center;
  font-size: var(--fs-p-small) !important;
  font-weight: 500;
  line-height: normal;
}

.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container
  .spotlight-card
  .spotlight-link {
  color: rgba(255, 255, 255, 0.6);
  text-align: center !important;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
}

.spotlight-info-section .spotlight-locations-row {
  max-width: 1332px !important;
}

.spotlight-marker {
  opacity: 0.3;
  transition: opacity 0.25s ease-in-out;
}

.spotlight-card:hover .spotlight-marker {
  opacity: 1;
}

.spotlight-center {
  position: relative !important;
}

.spotlight-connector {
  background-image: linear-gradient(
    180deg,
    rgba(193, 213, 245, 0.6) 0%,
    rgba(193, 213, 245, 0) 100%
  );
  filter: blur(60px);
  width: 148px;
  height: 665px;
  position: absolute;
  top: -15%;
  left: 50%;
  pointer-events: none;
  transform: translatex(-50%) rotate(340deg);
  transform-origin: bottom;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none !important;
}

.spotlight-info-section
  .spotlight-locations-row
  .spotlight-container:has(.spotlight-grid .spotlight-card.hovered)
  .spotlight-connector {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out;
}

/*========== Footer ==========*/
.footer .logo-row {
  max-width: 1100px;
}

.footer .logo-row .et_pb_column {
  margin-bottom: -50px !important;
}

.footer .menu-row {
  display: flex;
  justify-content: space-between;
  max-width: 950px;
}

.footer .menu-row::after {
  display: none !important;
}

.footer .menu-column {
  width: fit-content;
}

.footer .menu-column .menu-title {
  margin-bottom: 32px;
}

.footer .menu-column .menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .menu-column .menu a {
  color: var(--clr-white);
  opacity: 0.8;
  transition: opacity 0.5s ease-in-out;
  font-size: var(--fs-p-small) !important;
  font-weight: var(--fw-p-small) !important;
  line-height: var(--lh-p-small) !important;
}

.footer .menu-column .menu a:hover {
  opacity: 1;
}

.footer .legals-row {
  max-width: 950px;
}

.footer .legals-row .menu-column {
  width: 100%;
}

.footer .legals-row .et_pb_code_inner {
  display: flex;
  justify-content: space-between;
}

.footer .legals-row .menu-column .menu.legals {
  flex-direction: row;
  gap: 16px;
}


/*========== Scroll to top btn ==========*/
.scroll-to-top-btn-section {
    width: fit-content !important;
    position: fixed !important;
    padding-inline: 0 !important;
    right: 20px !important;
    bottom: 20px !important;
}
.scroll-to-top-btn-section .et_pb_row {
  width: 100% !important; 
}
.scroll-to-top-btn-section #scrollTopBtn {
    padding: 0 !important;
    border: none;
    background: none;
    cursor: pointer;
}

.homepage.services-section .services-details-row::before {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: 0%;
  transform: translateY(-100%);
  width: 100%;
  height: 800px;
  background: linear-gradient(1deg, #030115 20.62%, rgba(3, 1, 21, 0) 100%);
  z-index: 99999;
}

.homepage.portfolio-section .carousel-row .et_pb_column::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  transform: translateY(-100%);
  width: 100%;
  height: 700px;
  background: linear-gradient(1deg, #030115 20.62%, rgba(3, 1, 21, 0) 90%);
  z-index: -1;
}

.case-studies-section .case-studies-row::before {
  content: "";
  position: absolute;
  /* left: -50%; */
  /* transform: translateY(-100%); */
  width: 100vw;
  height: 100%;
  background: linear-gradient(1deg, #030115 4.62%, rgba(3, 1, 21, 0) 93%);
  z-index: 2;
  pointer-events: none !important;
}

.swippable-cards-wrapper .swippable-card:nth-of-type(1) {
  transform: rotate(-20deg);
}

.swippable-cards-wrapper .swippable-card:nth-of-type(2) {
  transform: rotate(-12deg);
}

.swippable-cards-wrapper .swippable-card:nth-of-type(3) {
  transform: rotate(-4deg);
}

.swippable-cards-wrapper .swippable-card:nth-of-type(4) {
  transform: rotate(4deg);
}

.why-areus-section {
  height: 100% !important;
  /* background-attachment: fixed; */
}

.why-areus-section .et_pb_row {
  height: 400vh !important;
}

.swippable-cards-container {
  overflow: visible;
}

.why-areus-section .et_pb_row .et_pb_column {
  position: sticky;
  top: 30%;
}

.home-only.why-areus-section .et_pb_row .et_pb_column {
    top: 15%;
}

.why-areus-section .et_pb_row .et_pb_column {
  background-size: contain;
  background-image: url(/wp-content/uploads/2025/10/why-areus-bg.png) !important;
  background-repeat: no-repeat;
}

.services-container .service-modal {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  background-image: url(/wp-content/uploads/2025/10/Frame-1000002129.png);
  background-size: cover;
  overflow: hidden;
  border-radius: 40px;
  background-repeat: no-repeat;
  max-width: 622px;
  z-index: 99999;
}

.services-container .service-modal .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px 35px 20px 20px;
  padding: 8px;
}

.services-container .service-modal .text-container {
  padding: 45px 60px 40px 60px;
}

.services-container .service-modal .text-container .description {
  margin-block: 27px 32px;
}

.homepage.services-section .services-details-row .services-grid .service {
  cursor: pointer;
}

.services-container .service-modal .text-container .heading {
  color: #fff;
  font-family: "RadioGrotesk";
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.services-container .service-modal {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease-in-out;
}

.services-container .service-modal.active {
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.3s ease-in-out;
}

.page-child .et_pb_section_6.fullwidth-section .et_pb_image_wrap,
.page-child .et_pb_section_6.fullwidth-section .et_pb_image_wrap img {
  width: 100vw;
}

.services-container .service-modal .close-button {
  background-image: url(/wp-content/uploads/2025/10/close-glass-btn.png);
  background-size: contain;
  width: 60px;
  height: 60px;
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
}

.homepage.portfolio-section .card video,
.homepage.portfolio-section .card .card-overlay {
  border-radius: 30px !important;
  overflow: hidden;
}

.et-menu .menu-item-has-children > a:first-child:after {
  right: -18px;
  transform: translateY(-50%);
  top: 50%;
}

/* .header-section .navbar-row .et_pb_menu li:first-of-type {
  margin-right: 20px;
} */

#page-container .et_dropdown_animation_fade.et_pb_menu ul li > ul {
  background-color: var(--clr-primary) !important;
  border-top: 0px !important;
  /* border: 1px solid white; */
  border-radius: 20px !important;
  top: 100% !important;
  border-bottom: 1px solid white;
}

.homepage.why-areus-section.about .et_pb_module.et_pb_text p {
  max-width: 801px;
  margin-top: 107px !important;
  margin-inline: auto !important;
  text-align: center;
  font-family: "RadioGrotesk";
  font-size: 27px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  opacity: 0.3;
  /* background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.why-areus-section.about .et_pb_row .et_pb_column {
  background-image: unset !important;
}

.about-hero-second-text-section {
  background-color: var(--clr-primary) !important;
}

.about.hero-section {
  height: 100% !important;
}

.about.hero-section .hero-title-row {
  padding-bottom: 400px !important;
}

.about.hero-section .second-text-row {
  height: 50vh;
}

.about.hero-section .second-text-row .et_pb_column {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}

.portfolio-numbers-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.portfolio-numbers-container .number-item {
  height: 150px;
  width: 340px;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.portfolio-numbers-container .number-item:last-of-type {
  border-right: 0px !important;
}

#page-container .portfolio-numbers-container .number-item span {
  font-family: "RadioGrotesk";
  font-size: 104px !important;
  font-weight: 400 !important;
  line-height: 80% !important;
  letter-spacing: 1.04px !important;
  text-transform: capitalize !important;
  background: linear-gradient(
    122deg,
    rgba(255, 255, 255, 0.8) 16.67%,
    rgba(255, 255, 255, 0.1) 78.6%
  ) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

#page-container .portfolio-numbers-container .number-item p {
  overflow: hidden !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-overflow: ellipsis !important;
  font-family: "DM Sans" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 110% !important;
  text-transform: capitalize !important;
}

.about.hero-section .second-text-row.portfolio-numbers-row {
  max-width: 100% !important;
}

#page-container .portfolios-section .row-fullwidth h2 {
  text-align: center;
  font-family: "RadioGrotesk" !important;
  font-size: 160px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 80% !important;
  letter-spacing: 1.6px !important;
  text-transform: capitalize !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article {
  max-height: 564px !important;
  border-radius: 30px;
  overflow: hidden;
}

#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article
  h2 {
  position: absolute;
  top: 30px;
  left: 20px;
}

#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article
  .post-meta {
  position: absolute;
  top: 50%;
  left: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article
  .post-meta
  a {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: var(--fs-p-small) !important;
  line-height: 1em !important;
  font-weight: var(--fw-p-small) !important;
  color: var(--clr-white) !important;
  padding: 5px 10px;
  border-radius: 25px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.5);
  border-image: initial;
  background: rgba(146, 146, 146, 0.5);
}

#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article
  .post-content,
#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article
  .post-content-inner,
#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article
  .featured-video-wrapper {
  max-height: 564px;
}

#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article
  a.more-link {
  position: absolute;
  bottom: 30px;
  left: 20px;
}

#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article
  .post-content-inner
  p {
  position: absolute;
  bottom: 60px;
  left: 20px;
  max-width: 360px;
}



.et-db #et-boc .et-l .et_pb_menu_0_tb_header.et_pb_menu {
  background-color: transparent !important;
}

.et-db
  #et-boc
  .et-l
  .et_pb_menu--without-logo
  .et_pb_menu__menu
  > nav
  > ul
  > li
  > a {
  color: white !important;
}

.header-section .et_pb_image {
  margin: 0px !important;
}

.header-section .navbar-row {
  max-width: max-content !important;
  padding: 20px 30px 20px 30px !important;
}

.header-section .navbar-row .et_pb_column {
  max-width: max-content;
  justify-content: center;
}

body.portfolio-template-default #main-content {
  background-color: #030115 !important;
}

body.portfolio-template-default #main-content article .et_post_meta_wrapper {
  display: none !important;
}


.portfolio-featured-image-section .case-study-back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
  font-size: var(--fs-btn);
  font-weight: var(--fw-btn);
  line-height: var(--lh-btn);
}
.portfolio-featured-image-section .case-study-back-btn img {
  padding: 0 !important;
  width: 25px;
  height: 25px;
}


/* .portfolio-featured-image-section img {
  padding: 16px !important;
} */

.portfolio-featured-image-section .et_pb_column,
.portfolio-featured-image-section .et_pb_row,
.portfolio-featured-image-section {
  margin-inline: auto !important;
  max-width: 920px;
  width: 100% !important;
}

.portfolio-featured-image-section .et_pb_module.et_pb_image {
  border-radius: 30px;
  /* border: 1px solid var(--Stroke-Box, #fff); */
  background: rgba(0, 0, 0, 0);
  /* background-image: url(/wp-content/uploads/2025/10/Group-195.png); */
  /* background-size: 150% !important; */
  display: flex !important;
  justify-content: center;
  align-items: center;
  max-width: max-content;
}

.portfolio-featured-image-section .et_pb_module.et_pb_image img {
  border-radius: 30px;
}

.portfolio-content-section .left-side-content {
  margin-bottom: 32px !important;
}

#page-container .portfolio-content-section .left-side-content a {
  display: inline;
  color: #fff;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.portfolio-content-section .left-side-content .et_pb_text_inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#page-container .portfolio-content-section .left-side-content .et_pb_text_inner,
.solution-container p {
  color: #fff !important;
  font-family: "DM Sans" !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 130% !important;
  opacity: 1 !important;
}

.solution-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#page-container
  .portfolio-content-section
  .left-side-content
  .et_pb_text_inner
  .side-content-title,
.solution-container .title {
  color: rgba(193, 213, 245, 0.4);
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}

.portfolio-content-section .left-side-content:nth-of-type(2) .et_pb_text_inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.portfolio-content-section
  .left-side-content:nth-of-type(2)
  .et_pb_text_inner
  .side-content-title {
  min-width: 100% !important;
}

#page-container .portfolio-content-section .et_pb_column:first-of-type {
  max-width: 240px !important;
}

#page-container .portfolio-content-section {
  display: flex;
  justify-content: center;
  margin-top: 88px !important;
}

#page-container .portfolio-content-section .et_pb_row {
  max-width: 906px !important;
  margin-inline: 0px !important;
  display: flex;
  gap: 102px;
}

#page-container .portfolio-content-section .et_pb_row::after {
  display: none !important;
}

#page-container .portfolio-content-section .et_pb_row .content-column h1 {
  color: #fff;
  font-family: "RadioGrotesk";
  font-size: 42px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 46.2px */
}

#page-container .portfolio-content-section .et_pb_row .content-column {
  width: 100% !important;
}

#page-container
  .portfolio-content-section
  .et_pb_row
  .content-column
  .et_pb_code_inner {
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.header-section .navbar-row ul#menu-main-menu ul.sub-menu,
.et-db
  #et-boc
  .et-l
  .et_pb_menu_0_tb_header.et_pb_menu
  .header-section
  .nav
  li
  ul.sub-menu {
  background-color: var(--clr-primary) !important;
}

.et-db #et-boc .et-l .et-menu .menu-item-has-children > a:first-child:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px !important;
}

.key-results .key-results-title {
  color: rgba(193, 213, 245, 0.4);
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 15.4px */
  text-transform: uppercase;
  margin-bottom: 15px;
}

.key-results p {
  margin-bottom: 1rem;
}

#main-content > .container {
  max-width: 100% !important;
  width: 100% !important;
}

body.portfolio-template-default .why-areus-section.first .et_pb_column,
body.portfolio-template-default .why-areus-section.second .et_pb_column {
  position: sticky !important;
  top: 20vh;
}

body.portfolio-template-default .why-areus-section .et_pb_row .et_pb_column {
  background-size: contain !important;
  background-image: url(/wp-content/uploads/2025/10/why-areus-bg.png) !important;
  background-repeat: no-repeat;
  background-attachment: unset;
  background-position-y: center !important;
}

.quantifiable-outcomes-section {
  padding-block: 0px 120px !important;
}

.quantifiable-outcomes-section .portfolio-numbers-row {
  max-width: 100% !important;
}

.quantifiable-outcomes-section .number-item {
  max-width: max-content;
  width: 100%;
}

.quantifiable-outcomes-section h2 {
  padding-bottom: 135px !important;
}

.quantifiable-outcomes-section#the-results .et_pb_row .et_pb_column {
  background-image: none !important;
}

body.portfolio-template-default
  .why-areus-section:not(.first, .second)
  .et_pb_row {
  height: 100% !important;
}

body.portfolio-template-default .why-areus-section .et_pb_row .et_pb_column {
  background-attachment: unset !important;
}

body.portfolio-template-default .why-areus-section.second {
  background-position: top !important;
  background-attachment: unset !important;
}

body.portfolio-template-default
  .why-areus-section.second
  .swippable-cards-wrapper
  .swippable-card {
  transform: translateY(0px) rotate(0deg);
  border-radius: 30px;
  border-top: 1px solid var(--Stroke-Box, #fff);
  border-bottom: 1px solid var(--Stroke-Box, #fff);
  background: rgba(0, 0, 0, 0);
  width: 800px;
  height: 100%;
  max-height: 278px;
  padding: 70px;
}

body.portfolio-template-default
  .why-areus-section.second
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(1) {
  margin-bottom: 160px !important;
}

body.portfolio-template-default
  .why-areus-section.second
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(2) {
  margin-bottom: 120px !important;
}

body.portfolio-template-default
  .why-areus-section.second
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(3) {
  margin-bottom: 80px !important;
}

body.portfolio-template-default
  .why-areus-section.second
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(4) {
  margin-bottom: 40px !important;
}

body.portfolio-template-default
  .why-areus-section.second
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(5) {
  margin-bottom: 0px !important;
}

/* #why-areus .swippable-cards-container {
  padding-top: 160px !important;
} */

#why-areus .swippable-cards-container {
  padding-top: 0px !important;
  /* margin-top: -60px !important; */
}

body.portfolio-template-default
  .why-areus-section.second
  .swippable-cards-wrapper
  .swippable-card
  h4 {
  max-width: 470px;
  margin-inline: auto;
}

body.portfolio-template-default
  .homepage.testimonials-section
  .testimonial-card {
  max-width: 762px !important;
  margin-inline: auto !important;
  padding: 0px !important;
}

.case-study-card-container {
  display: flex;
  flex-direction: row;
  border-radius: 30px;
  border-top: 1px solid var(--Stroke-Box, #fff);
  border-bottom: 1px solid var(--Stroke-Box, #fff);
  background: rgba(0, 0, 0, 0);
}

.case-study-card-container .left-side {
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-studies-swiper-section .case-studies-swiper-row {
  max-width: 100% !important;
  width: 100% !important;
  background-color: var(--clr-primary) !important;
}

.case-study-card-container .left-side .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.case-study-card-container .left-side .top img {
  width: 60px;
  height: 60px;
}

.case-study-card-container .right-side {
  max-width: 553px;
  min-width: 553px;
  max-height: 464px;
  width: 100%;
  height: 100%;
  margin-block: 20px !important;
  margin-right: 20px !important;
  border-radius: 16px !important;
  overflow: hidden;
}

.case-study-card-container .right-side video {
  min-width: 100%;
}

.case-studies-swiper-heading .et_pb_text_inner {
  display: flex;
  justify-content: space-between;
  max-width: 1032px !important;
  margin-inline: auto !important;
  padding-block: 177px 90px !important;
}

.case-studies-swiper-heading .et_pb_text_inner .buttons-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.portfolio-template-default footer .et_pb_image_wrap {
  display: flex !important;
  justify-content: center;
}

body.portfolio-template-default
  .why-areus-section.second
  .et_pb_row
  .et_pb_column {
  background-image: unset !important;
}

.nav-button.nav-prev,
.nav-button.nav-next {
  cursor: pointer !important;
}

.case-study-card-container {
  justify-content: space-between;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px)
}

.case-study-card-container a.top p {
  color: #fff !important;
  font-family: "RadioGrotesk" !important;
  font-size: var(--fs-h3) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 110% !important;
}

.case-study-card-container .bottom .categories {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

#page-container .case-study-card-container .bottom .categories .tag {
  border-radius: 114.238px;
  border: 1.074px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  padding: 12px 21px;
  color: #fff !important;
  font-family: "DM Sans" !important;
  font-size: 15.037px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 110% !important;
}

.case-study-card-container .bottom p {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8) !important;
  text-overflow: ellipsis !important;
  font-family: "DM Sans" !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 170% !important;
  /* 30.6px */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 30px !important;
}


.case-studies-swiper-section {
	max-width: 100vw;
	overflow-x: hidden
}
.case-studies-swiper-section
  .case-studies-swiper-row
  .slider-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 507.933px;
  height: 358px;
  flex-shrink: 0;
  border-radius: 507.933px;
  background: #c1d5f5;
  filter: blur(120px);
}

/* .case-studies-swiper-section
  .case-studies-swiper-row
  .et_pb_column
  .et_pb_code::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 355px;
  height: 700px;
  background: linear-gradient(
    90deg,
    rgba(2, 1, 17, 0.5) 8.93%,
    rgba(2, 1, 17, 0) 95.19%
  );
  backdrop-filter: blur(10px);
  z-index: 999;
}
.case-studies-swiper-section
  .case-studies-swiper-row
  .et_pb_column
  .et_pb_code::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 355px;
  height: 700px;
  background: linear-gradient(
    351deg,
    rgba(2, 1, 17, 0.5) 8.93%,
    rgba(2, 1, 17, 0) 95.19%
  );
  backdrop-filter: blur(10px);
  z-index: 999;
} */
.case-studies-swiper-section {
  padding-bottom: 160px !important;
}

.case-studies-swiper-section
  .case-studies-swiper-row
  .et_pb_column
  .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.6;
  filter: blur(4px);
}

.case-studies-swiper-section .progress-dots-container {
  margin-top: 60px;
}

.case-studies-swiper-section .progress-dots-container .dot {
  width: 75px !important;
  height: 6px;
  opacity: 0.2;
  background: #c1d5f5;
}

.case-studies-swiper-section .progress-dots-container .dot.active {
  opacity: 0.8;
  background: #c1d5f5;
}

.case-studies-swiper-section .progress-dots {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
/* .case-studies-swiper-section .progress-dots::after {
  content: '';
  position: absolute;
  right: 0;
  z-index: 9;
  background: linear-gradient(270deg, #030115 0%, rgba(3, 1, 21, 0.00) 100%);
  width: 71px;
  height: 15px;
} */


#the-challenge.service.who-we-are-section .title-row {
    height: fit-content;
    padding-top: 200px !important;
    padding-bottom: 150px !important;
}

#page-container
  .portfolios-section
  .portfolios-row
  .et_pb_ajax_pagination_container
  article
  a.entry-featured-image-url
  img {
  display: none !important;
}

.portfolio-page h2 {
  /* -webkit-text-fill-color: transparent; */
  font-size: var(--fs-h1-big) !important;
  font-weight: var(--fw-h1-big) !important;
  line-height: var(--lh-h1-big) !important;
  /* background: linear-gradient(
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    )
    text; */
}

.cta-section.portfolio {
  padding-block: 200px 200px !important;
  background-position: top;
}

body.page-id-675 .homepage.portfolio-section .carousel-row {
  padding-bottom: 0px !important;
}

.spotlight-info-section .spotlight-locations-row .et_pb_column .et_pb_module,
.spotlight-info-section .spotlight-locations-row,
.spotlight-info-section {
  opacity: 1 !important;
}

body.portfolio-template-default .header-section .navbar-row {
  max-width: max-content !important;
  padding: 30px 30px 20px 30px !important;
}

.et-db
  #et-boc
  .et-l
  .et_pb_menu--without-logo
  .et_pb_menu__menu
  > nav
  > ul
  > li
  > a {
  padding-bottom: 0px !important;
}

body.portfolio-template-default ul#sub-menu {
  background-color: var(--clr-primary) !important;
}

body.portfolio-template-default .testimonials-section {
  padding-bottom: 180px !important;
}

.et-db #et-boc .et-l .et_pb_divider:before {
  background: linear-gradient(
    90deg,
    rgba(193, 213, 245, 0) 0%,
    #c1d5f5 25%,
    #c1d5f5 50%,
    #c1d5f5 75%,
    rgba(193, 213, 245, 0) 100%
  );
  border-top: 0px !important;
}

body.portfolio-template-default
  .why-areus-section.second
  .et_pb_row
  .et_pb_column
  .et_pb_text {
  position: sticky !important;
  top: 10vh;
}

.solution-container p:empty {
  display: none !important;
}

body.blog #main-content {
  background-color: var(--clr-primary) !important;
}

/* .auto-blog-articles-module article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 0px !important;
} */

.auto-blog-articles-module .et_pb_post {
  border-top: solid 1px rgba(255, 255, 255, 0.20);;
}

.auto-blog-articles-module article a.entry-featured-image-url::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 527.262px;
  background: #c1d5f5;
  filter: blur(74.58025360107422px);
  width: 403.139px;
  height: 527.262px;
  flex-shrink: 0;
  z-index: -1;
}

.blog-active-image-container {
  max-width: 613px !important;
  width: 100% !important;
  margin-bottom: 0px !important;
  padding: 16px;
  border-radius: 27.285px;
  border-top: 0.91px solid var(--Stroke-Box, #fff);
  border-bottom: 0.91px solid var(--Stroke-Box, #fff);
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}

.blog-active-image-container ::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 527.262px;
  background: #c1d5f5;
  filter: blur(74.58025360107422px);
  width: 403.139px;
  height: 527.262px;
  flex-shrink: 0;
  z-index: -1;
}

.blog-active-image-container img {
  object-fit: cover;
  min-height: 442px;
  border-radius: 16px;
  overflow: hidden;
}

.auto-blog-articles-module article a.entry-featured-image-url {
  padding: 0px !important;
  opacity: 0;
  visibility: hidden;
  width: 0px !important;
  height: 0px !important;
  display: none;
}

.auto-blog-articles-module article a.entry-featured-image-url img {
  object-fit: cover;
  min-height: 442px;
  border-radius: 16px;
  overflow: hidden;
}

.auto-blog-articles-module article:not(.active) a.entry-featured-image-url {
  display: none !important;
}

.auto-blog-articles-module article .text-column {
  max-width: 431px !important;
  width: 100% !important;
  padding: 20px 20px 40px 20px;
  grid-column-start: 2;
}

.auto-blog-articles-module article .post-content,
.auto-blog-articles-module article::after {
  display: none !important;
}

.blog-most-recent-section .et_pb_row {
  max-width: 1116px !important;
  margin-inline: auto !important;
}


.blog-most-recent-section .blog-filter-container .sf-field-category ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start
}
.blog-most-recent-section .blog-filter-container .sf-field-category ul li {
  width: fit-content;
}
.blog-most-recent-section .blog-filter-container .sf-field-category ul li label {
  cursor: pointer;
}


.auto-blog-articles-module article .text-column {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  justify-content: center;
}

.auto-blog-articles-module article .text-column h2 a,
.auto-blog-articles-module article .text-column h2 {
  color: #fff !important;
  font-family: "DM Sans" !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 130% !important;
  /* 26px */
}

.auto-blog-articles-module article .text-column h2 {
  position: relative;
}

.auto-blog-articles-module article .text-column h2::before {
  content: "";
  position: absolute;
  bottom: -21px;
  height: 6px;
  background: linear-gradient(270deg, #030115 0%, #848c9a7a 100%);
  width: 100%;
}

.blog-most-recent-section .et_pb_row .et_pb_column {
  display: flex;
  gap: 40px;
  align-items: center;
}

.blog-most-recent-section article {
  margin-bottom: 0px !important;
}

.auto-blog-articles-module article .text-column h2::after {
  content: "";
  position: absolute;
  bottom: -21px;
  height: 6px;
  left: 0;
  background: #c1d5f5;
  opacity: 0.8;
  width: 0%;
}

.auto-blog-articles-module article.active .text-column h2::after {
  width: 100%;
  transition: all 5s ease;
}

.blog-hero-section {
  padding-top: 190px !important;
}

.blog-hero-section h1 {
  max-width: 744px;
  margin-inline: auto;
  color: #fff !important;
  text-align: center !important;
  font-family: "RadioGrotesk" !important;
  font-size: 64px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 120% !important;
  letter-spacing: 0.64px !important;
}

.blog-hero-section p {
  margin-top: 32px !important;
  max-width: 588px !important;
  margin-inline: auto !important;
  color: rgba(255, 255, 255, 0.6);
  text-align: center !important;
  font-family: "DM Sans" !important;
  font-size: 24px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 160% !important;
}

.blog-hero-section a {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.blog-filter-container {
  margin-top: 138px !important;
  max-width: 1116px !important;
  margin-inline: auto !important;
  width: 100%;
}

.blog-filter-container ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
}

.blog-filter-container ul li input {
  opacity: 0;
  visibility: hidden;
  height: 0px;
  width: 0px;
  display: none;
}

.blog-filter-container ul li {
  width: 100%;
}

.blog-filter-container ul li label {
  color: rgba(255, 255, 255, 0.6);
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: -0.18px;
  padding-left: 0px !important;
}

.blog-filter-container ul li.sf-level-0 {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-filter-container ul li.sf-level-0:has(input[value="uncategorized"]) {
  display: none !important;
}

.blog-filter-container ul li.sf-level-0:has(input:checked) {
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0);
}

.blog-filter-container ul li.sf-level-0:has(input:checked) label {
  color: white !important;
}

.blog-most-recent-section .et_pb_row.filter-row .et_pb_column {
  flex-direction: column;
  gap: 0px !important;
}

.blog-most-recent-section .et_pb_row.filter-row .et_pb_column .et_pb_divider {
  width: 100%;
  padding-block: 73px !important;
}

.blog-most-recent-section
  .et_pb_row.filter-row
  .et_pb_column
  .et_pb_divider::before {
  top: 50% !important;
  transform: translateY(-50%);
}

.blog-articles-section {
  padding-bottom: 146px !important;
}

.blog-articles-section .blog-articles-row {
  max-width: 1116px !important;
  margin-inline: auto !important;
}

.between-blogs-divider {
  padding-block: 73px !important;
}

.between-blogs-divider::before {
  top: 50% !important;
  transform: translateY(-50%);
}

.blog-articles-section .et_pb_post {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto 1fr;
  gap: 30px;
  align-items: stretch;
  align-content: start;
}

.blog-articles-section article .entry-featured-image-url {
  grid-column: 1;
  grid-row: 1 / 4;
  display: block;
  height: 100%;
  overflow: hidden;
}
.blog-articles-section article .entry-featured-image-url img {
    border-radius: 20px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-articles-section article h2 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 8px;
  color: #fff;
  font-family: "RadioGrotesk" !important;
  font-size: 42px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 110% !important;
}
.blog-articles-section article .post-meta {
  padding-right: 30px;
  grid-column: 2;
  grid-row: 2;
  margin: 0 0 12px;
}

.blog-articles-section article .post-content {
  grid-column: 2;
  grid-row: 3;
}


.blog-articles-section article .post-content p {
  overflow: hidden !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-overflow: ellipsis !important;
  font-family: "DM Sans" !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 160% !important;
  text-overflow: ellipsis !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-articles-section article .post-meta {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.blog-articles-section article .post-meta .published {
  min-width: 100% !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: "DM Sans" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 110% !important;
  height: 18px;
}

.blog-articles-section article .post-meta a {
  height: 20px !important;
  color: #fff !important;
  font-family: "DM Sans" !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 110% !important;
}

.blog-articles-section .pagination {
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 16px;
}

.blog-articles-section .pagination a {
  color: #020110;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 30.6px */
  letter-spacing: -0.18px;
  text-transform: capitalize;
  border-radius: 9px;
  background: #fff;
  padding: 14px 20px;
}

body.post-template-default #main-content {
  background-color: var(--clr-primary) !important;
}

.blog-article-template-section .sticky-toc {
  position: sticky;
  top: 100px;
  width: 0px;
  max-height: max-content;
  opacity: 0;
}

div.blog-article-template-section {
  padding-top: 228px !important;
}

div.blog-article-template-section .et_pb_row .post-content-column {
  margin-right: unset !important;
  margin-inline: auto !important;

  width: 100%;
  max-width: 760px !important;
}

div.blog-article-template-section .et_pb_row {
  display: flex;
  justify-content: center;
}


div.blog-article-template-section .dsm-social-share-button-inner-wrapper {
    background: none !important;
}
div.blog-article-template-section .dsm-social-share-button-icon {
    background: none !important;
    width: fit-content !important;
}
div.blog-article-template-section .dsm-social-share-button-icon .dsm_custom_image_icon {
    max-width: 100% !important;
    width: 35px !important;
    height: 35px !important;
    margin-bottom: 10px;
}
div.blog-article-template-section .dsm-social-share-button-text {
    display: none !important;
}

#page-container div.blog-article-template-section .et_pb_row h1 {
  color: #fff;
  font-family: "RadioGrotesk";
  font-size: 64px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 100% !important;
  /* 64px */
  letter-spacing: -1.28px !important;
  margin-bottom: 48px !important;
}

#page-container div.blog-article-template-section .et_pb_row .featured-image {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
}


#page-container
  div.blog-article-template-section
  .et_pb_row
  .excerpt
  .et_pb_text_inner {
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: "DM Sans" !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 160% !important;
  /* 32px */
  padding-bottom: 0px !important;
}

div.blog-article-template-section .blog-article-template-post-content {
  padding-bottom: 0px !important;
}

body.post-template-default .article-divider {
  padding-block: 102px 24px;
}

body.post-template-default .article-divider::before {
  top: unset;
  bottom: 24px;
}

div.blog-article-template-section .author-row {
  padding-block: 0px 58px !important;
  display: flex;
  justify-content: space-between;
}

div.blog-article-template-section .author-row .et_pb_column {
  max-width: max-content !important;
}

div.blog-article-template-section .author-row .date .et_pb_text_inner {
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: "DM Sans" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 170% !important;
  letter-spacing: -0.128px !important;
}

div.blog-article-template-section .author-row::after {
  display: none !important;
}

div.blog-article-template-section .author-row .author .et_pb_text_inner {
  color: #fff !important;
  font-family: "DM Sans" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 170% !important;
  letter-spacing: -0.128px !important;
}

div.blog-article-template-section .table-of-contents {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

div.blog-article-template-section .table-of-contents a {
  color: rgba(193, 213, 245, 0.4) !important;
  font-family: "DM Sans" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
}

div.blog-article-template-section .table-of-contents a.active {
  color: #fff !important;
  font-family: "DM Sans" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
  text-transform: capitalize !important;
}

div.blog-article-template-section .post-content h2,
div.blog-article-template-section .post-content h3,
div.blog-article-template-section .post-content h4,
div.blog-article-template-section .post-content h5,
div.blog-article-template-section .post-content h6 {
  padding-block: 64px 32px !important;
  color: white !important;
}

#page-container div.blog-article-template-section .post-content h2 {
  font-size: 32px !important;
}

#page-container div.blog-article-template-section .post-content h3 {
  font-size: 30px !important;
}

#page-container div.blog-article-template-section .post-content h4 {
  font-size: 28px !important;
}

#page-container div.blog-article-template-section .post-content h5 {
  font-size: 24px !important;
}

#page-container div.blog-article-template-section .post-content h6 {
  font-size: 22px !important;
}

#page-container div.blog-article-template-section .post-content p {
  padding-bottom: 1rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: "DM Sans" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 160% !important;
}

#page-container div.blog-article-template-section .toc-wrapper .toc-position {
  width: 1px;
  /* height: 15px; */
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 95.37%);
  left: -18px;
}

#page-container
  div.blog-article-template-section
  .toc-wrapper
  .toc-position::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}

html:has(body.post-template-default) {
  scroll-behavior: smooth !important;
}

.blog-article-template-section {
  background-size: contain !important;
  background-position: top;
}

.blog-articles-section {
  background-size: contain;
  background-position: bottom;
}

.blog-recent-image-module {
  width: 600px;
}

.homepage.why-areus-section.about {
  background-position: top;
}

.wpcf7-submit {
  border-radius: 9px;
  background: #fff;
  padding: 18px 24px;
  color: #020110;

  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 30.6px */
  letter-spacing: -0.18px;
  text-transform: capitalize;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.wpcf7-submit:hover {
  border-radius: 9px;
  background: #020110;
  padding: 18px 24px;
  color: #fff;

  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 30.6px */
  letter-spacing: -0.18px;
  text-transform: capitalize;
  opacity: 1;
}

.service.who-we-are-section.parent .title-row {
  padding-top: 10vh;
}

.service.who-we-are-section.parent .et_pb_column {
  position: sticky;
  top: 50%;
}

.service.why-areus-section.parent .et_pb_column {
  background-image: unset !important;
}

.service.who-we-are-section.parent {
  text-align: center;
}
.service.who-we-are-section.parent h3 {
  margin-bottom: 24px !important;
}


.why-areus-section.service.parent.card-section .et_pb_column .swippable-cards-wrapper {
  z-index: 9;
  position: relative
}

.why-areus-section.service.parent.card-section .et_pb_column .swippable-cards-container::after {
  content: '';
  background-image: url('/wp-content/uploads/2025/10/why-areus-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -50%;
  left: - var(--padding-inline-section);
  z-index: 0;
  width: 100vw;
  height: 100vh;
}

/* .why-areus-section.service.parent.card-section .et_pb_column .swippable-cards-container {
  position: relative;
  z-index: 9;
} */

.why-areus-section.service-parent .swippable-card:has(.horizontal-card) {
  width: 1080px;
  height: 372px;
  border-radius: 30px !important;
  border-top: 1px solid rgb(118, 117, 136);
  border-bottom: 1px solid rgb(118, 117, 136);
  background: url(/wp-content/uploads/2025/10/noise-texture.png), rgba(181, 201, 240, 0.1) !important;
  background-size: contain;
  background-repeat: repeat-x;
  transform: rotate(0deg); 
  padding-inline: 60px !important;
}

.why-areus-section.service-parent .swippable-card .horizontal-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-areus-section.service-parent .swippable-card .horizontal-card h4 {
  max-width: 470px;
}

.why-areus-section.service-parent
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(1) {
  margin-bottom: 200px !important;
  width: calc(1080px - 200px) !important;
}

.why-areus-section.service-parent
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(2) {
  margin-bottom: 160px !important;
  width: calc(1080px - 160px) !important;
}

.why-areus-section.service-parent
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(3) {
  margin-bottom: 120px !important;
  width: calc(1080px - 120px) !important;
}

.why-areus-section.service-parent
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(4) {
  margin-bottom: 80px !important;
  width: calc(1080px - 80px) !important;
}

.why-areus-section.service-parent
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(5) {
  margin-bottom: 40px !important;
  width: calc(1080px - 40px) !important;
}

.why-areus-section.service-parent
  .swippable-cards-wrapper
  .swippable-card:nth-of-type(6) {
  margin-bottom: 0px !important;
}

.service.case-studies-section {
  z-index: -1;
}

.service.case-studies-section .fullwidth-row {
  z-index: 999;
  background-color: var(--clr-primary);
}

.case-studies-swiper-section {
  max-width: 100vw !important;
  overflow: hidden !important;
  z-index: 99;
}

.case-studies-swiper-section.service-parent .swiper-heading {
  height: 75vh;
}

.case-studies-swiper-section.service-parent .swiper-heading .et_pb_code_inner {
  padding-top: 400px;
}

.case-studies-swiper-section.service-parent .swiper-heading h2 {
  margin-inline: auto !important;
  text-align: center !important;
  color: #fff !important;
  text-align: center !important;
  font-family: "RadioGrotesk" !important;
  font-size: 64px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 110% !important;
  /* 70.4px */
}

.case-studies-swiper-section.service-parent
  .swiper-code-container
  .buttons-container {
  max-width: 1392px;
  position: absolute;
  top: 30%;
  transform: translate(-50%, 50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  left: 50%;
  z-index: 9999999;
}

.case-studies-swiper-section.service-parent .progress-dots-container {
  max-width: 1158px !important;
  margin-inline: auto !important;
  display: flex;
  justify-content: space-between;
}

.case-studies-swiper-section.service-parent
  .progress-dots-container
  .progress-dots {
  justify-content: start;
}

.case-studies-swiper-section.service-parent {
  padding-inline: 0px !important;
}

.service.hero-section.service-child p {
  max-width: 716px !important;
  margin-inline: auto !important;
  margin-bottom: 20px !important;
}

.about.work-with-us-section.service-child .benefit-row .description-column {
  padding-block: 52px !important;
  padding-inline: 0px !important;
}

.about.work-with-us-section.service-child .benefit-row {
  max-width: 1116px !important;
  margin-bottom: 94px !important;
}

.homepage.why-areus-section.about.service-child h2 {
  color: #fff !important;
  text-align: center !important;
  font-family: "RadioGrotesk" !important;
  font-size: 64px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 110% !important;
  max-width: 757px !important;
  margin-inline: auto !important;
}

.why-areus-section.service-parent
  .swippable-card
  .horizontal-card
  .text-container {
  display: flex;
  flex-direction: column;
  gap: 54px;
  align-items: start;
}

.case-studies-section.service-child
  .case-studies-row
  .case-studies-column.third {
  margin-top: 300px !important;
}
.case-studies-section.service-child .case-studies-row .case-studies-column {
    gap: 200px;
}

.case-studies-section.service-child .case-studies-row {
  justify-content: center
}
.case-studies-section.service-child .case-studies-row .case-studies-column:nth-of-type(2) {
  display: none;
}


.case-studies-section.service-child .case-studies-row::before {
  display: none !important;
}


.logos-carousel-row.service-child h2 {
  max-width: 517px !important;
  margin-inline: auto !important;
  margin-bottom: 152px !important;
  text-align: center !important;
}

.about.work-with-us-section.service-child .title-ro h2 {
  margin-inline: auto !important;
  text-align: center !important;
}
.about.work-with-us-section.service-child .benefit-row .description-column {
    padding-inline: 30px !important;
}

.homepage.why-areus-section.service-child:not(.horizontal-cards)
  .swippable-card {
  justify-content: space-between !important;
}

.homepage.why-areus-section.service-child.horizontal-cards .swippable-card {
  padding: 70px !important;
}

.why-areus-section.service-child .swippable-card .horizontal-card h4 {
  max-width: 305px;
  font-size: 42px !important;
}

.more-managed-services-section {
  padding-block: 370px !important;
}

.more-managed-services-section h2 {
  text-align: center;
  font-family: "RadioGrotesk" !important;
  font-size: 160px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 80% !important;
  letter-spacing: 1.6px !important;
  text-transform: capitalize !important;
  max-width: 1080px !important;
  margin-inline: auto !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.1) 100%
  ) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: -40px !important;
}

.about.work-with-us-section.service-child .benefit-row p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  align-self: stretch;
  overflow: hidden;
}

.more-managed-services-section
  .more-managed-services-cards-row
  .more-managed-services-card {
  padding: 75px 55px 60px 45px;
  border-radius: 28.502px;
  border-top: 1px solid rgb(118, 117, 136);
  border-bottom: 1px solid rgb(118, 117, 136);
  background: rgba(0, 0, 0, 0);
}

.more-managed-services-section .more-managed-services-cards-row .et_pb_column {
  display: flex;
  justify-content: center;
}

.more-managed-services-section
  .more-managed-services-cards-row
  .more-managed-services-card
  h3 {
  margin-bottom: 60px;
  max-width: 237px;
  color: #fff;
  font-family: "RadioGrotesk" !important;
  font-size: 39.903px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 100% !important;
}

.more-managed-services-section
  .more-managed-services-cards-row
  .more-managed-services-card
  p {
  margin-bottom: 27px;
}

.more-managed-services-section
  .more-managed-services-cards-row
  .more-managed-services-card {
  max-width: 489px !important;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}

.more-managed-services-section
  .more-managed-services-cards-row
  .first-card
  .more-managed-services-card {
  transform: rotate(-5deg);
  z-index: 1;
  position: relative;
}

.more-managed-services-section
  .more-managed-services-cards-row
  .second-card
  .more-managed-services-card {
  transform: rotate(5deg);
  z-index: 2;
  position: relative;
  margin-top: 38px;
}

.more-managed-services-section {
  background-position: 0px 354px;
  background-size: contain;
}

.more-managed-services-section .more-managed-services-cards-row .card {
  cursor: pointer;
  position: relative;
}

.more-managed-services-section .more-managed-services-cards-row .card a {
  background-color: transparent;
  border: 1px solid white;
  color: white !important;
}

.more-managed-services-section .more-managed-services-cards-row .card:hover a {
  background-color: white;
  border: 1px solid white;
  color: var(--clr-primary) !important;
}

.more-managed-services-section .more-managed-services-cards-row .card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/wp-content/uploads/2025/10/Group-49.svg);
  background-size: contain;
  width: 400px;
  height: 450px;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.more-managed-services-section
  .more-managed-services-cards-row
  .second-card:hover::before {
  opacity: 1;
}

.more-managed-services-section
  .more-managed-services-cards-row
  .first-card:hover::before {
  opacity: 1;
}

.more-managed-services-section
  .more-managed-services-cards-row
  .card
  .more-managed-services-card
  a {
  position: unset;
}

.more-managed-services-section
  .more-managed-services-cards-row
  .card
  .more-managed-services-card
  a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block !important;
}
.hero-section.careers {
  padding-block: 200px !important;
}
#page-container .hero-section.careers h1 {
  max-width: 548px !important;
  margin-inline: auto !important;
  margin-bottom: 57px;
  font-size: 64px !important;
}
.who-we-are-section.careers h3,
.who-we-are-section.careers p {
  text-align: center !important;
}
.who-we-are-section.careers .title-row {
  max-width: 744px !important;
}
.why-areus-careers-section {
  padding-top: 150px !important;
}
.why-areus-careers-section,
.why-areus-careers-section .et_pb_row {
  padding-block: 0px !important;
}
.why-areus-careers-section {
  padding-top: 150px !important;
}
.why-areus-careers-section .et_pb_row h2 {
  text-align: center !important;
  margin-inline: auto !important;
  font-family: "RadioGrotesk" !important;
  font-size: 160px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 80% !important;
  letter-spacing: 1.6px !important;
  text-transform: capitalize !important;
  margin-bottom: -20px !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-card-section.careers {
  padding-top: 0px !important;
}
.glass-card-section.careers h2 {
  font-size: 42px !important;
}
#page-container .portfolio-section.careers article h2,
#page-container .portfolio-section.careers article h2 a {
  color: #fff !important;
  font-family: "RadioGrotesk" !important;
  font-size: 35px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 110% !important;
  text-align: start !important;
  background: unset !important;
  -webkit-text-fill-color: unset !important;
}
.portfolio-section.careers article {
  height: 562px;
  width: 300px;
  border-radius: 29.672px;
  border-top: 0.742px solid var(--Stroke-Box, #fff);
  border-bottom: 0.742px solid var(--Stroke-Box, #fff);
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  /* transform-origin: center bottom; */
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  padding: 65px 115px 55px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.portfolio-section.careers article .post-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.portfolio-section.careers article .post-content p {
  overflow: hidden !important;
  color: #fff !important;

  text-overflow: ellipsis !important;
  font-family: "DM Sans" !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 130% !important; /* 26px */
}

.portfolio-section.careers article .post-content a {
  color: #fff;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 30.6px */
  letter-spacing: -0.18px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
}
.portfolio-section.careers article::after {
  display: none !important;
}

.portfolio-section.careers .swiper {
  height: 120vh !important;
}
.portfolio-section.careers .swiper-wrapper {
  transform-origin: center;
}
.portfolio-section.careers h2 {
  color: #fff !important;
  text-align: center !important;
  font-family: "RadioGrotesk" !important;
  font-size: 64px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 110% !important;
}

.portfolio-section .et_pb_ajax_pagination_container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* ensure top alignment so arc shows properly */
  overflow: hidden;
  cursor: grab;
  perspective: 1000px;
}

.portfolio-section .et_pb_ajax_pagination_container.dragging {
  cursor: grabbing;
}

.portfolio-section .et_pb_ajax_pagination_container article {
  position: absolute;
  /* width: clamp(180px, 18vw, 260px);
  height: clamp(240px, 28vw, 360px); */
  width: 471px;
  height: 562px;
  /* border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
  transform-origin: center center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

.portfolio-section .et_pb_ajax_pagination_container article::before {
  content: "";
  background-image: url("/wp-content/uploads/2025/10/arrow-btn.svg");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50px;
  right: 50px;
  width: 60px;
  height: 60px;
}

.portfolio-section .et_pb_ajax_pagination_container article.active {
  transform: scale(1.1);
  z-index: 999 !important;
}
.portfolio-section .et_pb_ajax_pagination_container article.disabled {
  display: none !important;
}

.portfolio-section .et_pb_ajax_pagination_container {
  height: 83vh;
  background-size: contain;
  background-position: center -117px;
  background-image: url(/wp-content/uploads/2025/10/Group-203-1.png);
  background-repeat: no-repeat;
}

body.careers-template-default #main-content {
  background-color: var(--clr-primary);
}

.upload-cv input {
  margin-top: 10px;
}

body.error404 #main-content {
  background-color: var(--clr-primary);
}

.not-found-section {
  height: 100vh !important;
}
.not-found-section .et_pb_row {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-found-section .et_pb_row h1 {
  max-width: 526px !important;
  color: #fff !important;
  text-align: center !important;
  font-family: "RadioGrotesk" !important;
  font-size: 64px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 100% !important;
  letter-spacing: 0.64px !important;
  margin-inline: auto;
  margin-bottom: 32px !important;
}
.not-found-section .et_pb_row p {
  max-width: 436px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: center !important;
  font-family: "DM Sans" !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 160% !important;
  margin-inline: auto;
}
.not-found-section .et_pb_row a {
  margin-top: 70px;
}

.page-toc-section {
  position: fixed !important;
  top: 20%;
  z-index: 999999;
}
.page-toc-section .page-toc-container .links-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.page-toc-section .page-toc-container .links-container a {
  color: rgba(193, 213, 245, 0.4) !important;
  font-family: "DM Sans" !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
}
.page-toc-section .page-toc-container .links-container a.active {
  color: white !important;
}
.page-toc-section .page-toc-container .toc-position {
  width: 1px;
  /* height: 15px; */
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 95.37%);
  left: -18px;
}
.page-toc-section .page-toc-container .toc-position::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}
body.portfolio-template-default .page-toc-section {
  left: 40px !important;
}
body.portfolio-template-default .page-toc-section a {
  white-space: nowrap !important;
}
.homepage.portfolio-section .card-overlay .bottom-content p,
.services-container .service-modal .text-container .description {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
}
.hero-section .hero-title-row .et_pb_column .et_pb_text_inner {
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: center !important;
  font-family: "DM Sans" !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 160% !important;
}


/* ===== Legal pages  ===== */
.legal-page.content-section h5{
  margin-top: 50px;
  margin-bottom: 10px;
}
.legal-page.content-section h6{
  margin-top: 30px;
  margin-bottom: 10px;
}
.legal-page.content-section p{
  margin-top: 15px;
}


.legal-page.content-section a {
  color: #fff;
  text-decoration: underline;
  overflow-wrap: break-word;
  word-break: break-all;
  margin-bottom: 10px !important;

}


.legal-page.content-section ul li {
  color: #fff;
  opacity: 0.8;
  margin-bottom: 10px;
}
.legal-page.content-section ol li {
  color: #fff;
  opacity: 0.8;
}

@media (max-width: 1919px) {
  .page-toc-section {
    display: none;
  }
}

@media (max-width: 1440px) {
  .page-toc-section {
    display: none !important;
  }
  .case-studies-swiper-section.service-parent .progress-dots-container {
    max-width: 858px !important;
  }

  .swippable-cards-container {
    padding-top: 0px !important;
  }

  #page-container .portfolio-numbers-container .number-item p {
    font-size: 15px !important;
  }

  .case-study-card-container .right-side {
    min-width: 400px !important;
  }

}

@media (max-width: 1366px) {
  .case-studies-section .case-studies-row::before {
    height: 100%;
  }

  .service.case-studies-section {
    overflow: hidden !important;
  }

  .why-areus-section.service-parent .et_pb_row .et_pb_column {
    top: 37% !important;
  }

  .why-areus-section.service-child .et_pb_row .et_pb_column {
    top: 17% !important;
  }

  .case-studies-swiper-section.service-parent .progress-dots-container {
    max-width: 808px !important;
  }

  body.portfolio-template-default .why-areus-section.first .et_pb_column {
    position: sticky !important;
    top: 7vh;
  }

  .why-areus-section .et_pb_row .et_pb_column {
    top: 20%;
  }

  .case-studies-section .case-studies-row::before {
    background: linear-gradient(1deg, #030115 80.62%, rgba(3, 1, 21, 0) 93%);
  }

  .more-managed-services-section h2 {
    font-size: 120px !important;
    max-width: 880px !important;
  }
  .more-managed-services-section {
    padding-block: 375px !important;
  }
  .more-managed-services-section
    .more-managed-services-cards-row
    .more-managed-services-card {
    padding: 35px 35px 30px 25px;
  }

    .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(1) {
    margin-bottom: 150px !important;
    width: calc(1024px - 150px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(2) {
    margin-bottom: 120px !important;
    width: calc(1024px - 120px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(3) {
    margin-bottom: 90px !important;
    width: calc(1024px - 90px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(4) {
    margin-bottom: 60px !important;
    width: calc(1024px - 60px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(5) {
    margin-bottom: 30px !important;
    width: calc(1024px - 30px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(6) {
    margin-bottom: 0px !important;
    width: 1024px;
  }

  .case-studies-swiper-section.service-parent .swiper-code-container .buttons-container {
    padding-inline: 10%;
    margin-top: -25px;
  }

  .homepage.case-studies-section .case-studies-row .card {
    height: 325px;
  }
}

@media (max-width: 1280px) {
  .logos-carousel-row.service-child h2 {
    margin-bottom: 82px !important;
  }

  .homepage.why-areus-section.service-child:not(.horizontal-cards)
    .swippable-card
    p {
    font-size: 14px !important;
  }

  .case-studies-swiper-section.service-parent .progress-dots-container {
    max-width: 758px !important;
  }

  .blog-articles-section article h2 {
    font-size: 36px !important;
    margin-bottom: 30px !important;
  }

  div.blog-article-template-section .et_pb_row .post-content-column {
    max-width: 660px !important;
  }

  div.blog-article-template-section {
    padding-top: 128px !important;
  }

  #page-container div.blog-article-template-section .et_pb_row h1 {
    font-size: 48px !important;
  }

  .case-study-card-container .left-side {
    padding: 30px !important;
  }

  .case-study-card-container .left-side .top img {
    width: 45px;
    height: 45px;
  }

  .homepage.portfolio-section .carousel-row {
    padding-bottom: 0px !important;
  }

  .homepage.portfolio-section .carousel-container {
    height: 800px;
  }
  .homepage.portfolio-section .carousel-row .carousel-navigation {
    transform: translateY(-100px) !important;
  }
	
	.homepage.hero-section {
		padding-top: 100px !important
	}
  .homepage.hero-section .hero-title-row {
	max-width: 1100px !important;
  }

  .hero-section .hero-title-row {
    max-width: 800px !important;
  }

  .homepage.services-section .services-details-row .et_pb_column {
    max-width: 1140px;
  }

  .swippable-card {
    width: 240px;
    height: 320px;
    padding: 25px;
  }

  .swippable-card h4 {
    font-size: var(--fs-h5);
  }

  .why-areus-section .et_pb_row .et_pb_column {
    top: 12%;
  }

  .homepage.testimonials-section .testimonial-card .testimonial-text {
    font-size: 26px !important;
  }

  .homepage.services-section .services-details-row .areus-logo img {
    max-width: 700px !important;
  }

  .case-studies-section .case-studies-row::before {
    height: 100%;
  }

  .homepage.services-section .services-details-row::before {
    height: 600px;
  }

  .sticky-title-row .sticky-content h2 {
    max-width: 800px;
    margin-inline: auto;
  }

  .homepage.testimonials-section .testimonial-card .testimonial-text {
    font-size: 22px !important;
  }

  .homepage.testimonials-section .testimonial-card .author-info h4 {
    font-size: 20px !important;
  }

  .homepage.testimonials-section .testimonial-card .author-info p {
    font-size: 14px !important;
  }

  .homepage.testimonials-section .testimonial-card .author-image {
    height: 65px;
    min-width: 65px;
  }

  .homepage.testimonials-section .nav-button {
    width: 64px;
    height: 64px;
  }

  .homepage.testimonials-section .testimonial-card {
    padding: 20px 45px;
  }

  .homepage.portfolio-section .sticky-title-row {
    padding-top: 0vh !important;
  }

  .homepage.portfolio-section .carousel-row .et_pb_column::before {
    height: 500px;
  }

  .homepage.portfolio-section .card {
    width: 350px;
    height: 450px;
  }
  .homepage.portfolio-section .card.active {
    z-index: 50 !important;
  }

  .case-studies-section .case-studies-row,
  .case-studies-section .case-studies-row .case-studies-column {
    gap: 35px;
  }

  .hero-section .hero-title-row .et_pb_column p {
    text-align: center;
  }

  .homepage.testimonials-section .progress-dots-container {
    left: calc(20% + 100px);
  }

  .spotlight-info-section .spotlight-center .spotlight-connector {
    display: none;
  }

    .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(1) {
    margin-bottom: 200px !important;
    width: calc(820px - 200px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(2) {
    margin-bottom: 160px !important;
    width: calc(820px - 160px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(3) {
    margin-bottom: 120px !important;
    width: calc(820px - 120px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(4) {
    margin-bottom: 80px !important;
    width: calc(820px - 80px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(5) {
    margin-bottom: 40px !important;
    width: calc(820px - 40px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(6) {
    margin-bottom: 0px !important;
    width: 820px;
  }

  .why-areus-section.service.parent.card-section .et_pb_column .swippable-cards-container::after {
    top: -25%;
  }

  .case-study-card-container a.top p {
    font-size: var(--fs-h4) !important;
    line-height: var(--lh-h4) !important;
  }

  .portfolio-numbers-container .number-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    width: 340px;
  }
  .portfolio-numbers-container .number-item p {
    text-align: center;
  }


  .scroll-to-top-btn-section #scrollTopBtn img {
    width: 50px !important;
    height: 50px !important;
  }

}

@media (min-width: 981px) and (max-width: 1024px) {
  .case-studies-swiper-section.service-parent .progress-dots-container {
    max-width: 822px !important;
  }

  #rmp_menu_trigger-815 {
    display: none !important;
  }

  .about.spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card:nth-of-type(1) {
    left: -3%;
    top: 5%;
  }

  .about.spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card:nth-of-type(3) {
    right: -3%;
    top: 5%;
  }
}

@media (max-width: 1024px) {
  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(1) {
    margin-bottom: 100px !important;
    width: calc(820px - 100px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(2) {
    margin-bottom: 80px !important;
    width: calc(820px - 80px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(3) {
    margin-bottom: 60px !important;
    width: calc(820px - 60px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(4) {
    margin-bottom: 40px !important;
    width: calc(820px - 40px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(5) {
    margin-bottom: 20px !important;
    width: calc(820px - 20px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(6) {
    margin-bottom: 0px !important;
    width: 820px;
  }

  .service.case-studies-section .fullwidth-row {
    width: 120vw !important;
    margin-left: -80px !important;
  }

  .blog-hero-section {
    padding-top: 120px !important;
  }

  div.blog-article-template-section .et_pb_row .post-content-column {
    max-width: 460px !important;
  }

  #page-container div.blog-article-template-section .et_pb_row h1 {
    font-size: 39px !important;
  }

  div.blog-article-template-section {
    padding-inline: 60px !important;
  }

  div.blog-article-template-section .table-of-contents {
    width: 175px;
  }

  #page-container .portfolio-numbers-container .number-item span {
    font-size: 70px !important;
  }

  .quantifiable-outcomes-section .portfolio-numbers-row {
    max-width: 100% !important;
    width: 100% !important;
  }

  .case-studies-swiper-heading .et_pb_text_inner {
    max-width: 900px !important;
  }

  .case-study-card-container .right-side video {
    max-width: 100%;
    min-width: unset !important;
  }

  .nav-button.nav-next.case img,
  .nav-button.nav-prev.case img {
    max-width: 60px !important;
    max-height: 60px !important;
  }

  .case-studies-section.service-child .case-studies-row {
    flex-direction: column;
  }

  .case-studies-section.service-child .case-studies-row .case-studies-column {
        width: 100% ;
        gap: 30px;
  }
  .case-studies-section.service-child .case-studies-row .case-studies-column:nth-of-type(2) {
    display: none;
   }
  .page-id-10563 .case-studies-section.service-child .case-studies-row .case-studies-column:nth-of-type(2) {
    display: block !important;
  }
   .case-studies-section.service .case-studies-row {
    flex-direction: column;
   }
   .case-studies-section.service-child .case-studies-row .case-studies-column:nth-of-type(2) {
    margin-top: 0 !important;
   }


  .case-studies-section.service .case-studies-row .case-studies-column {
    width: 100%;
    gap: 30px;
  }

  .case-studies-section.service .case-studies-row .case-studies-column:nth-of-type(2) {
    margin-top: 0 !important;
  }

  .contact.spotlight-info-section .spotlight-center {
    display: none;
  }

  .service.who-we-are-section.parent .title-row {
    padding-top: 100px;
  }

  .homepage.services-section .service-button {
    opacity: 1;
  }
  .homepage.services-section .services-details-row .services-grid .service h5 {
    max-width: 125px;
  }

  .homepage.case-studies-section .case-studies-row {
    flex-direction: column;
  }
  .homepage.case-studies-section .case-studies-row .et_pb_column {
    width: 100%;
  }

  .case-studies-swiper-section .progress-dots-container {
    display: flex;
    justify-content: center;
  }
  .case-studies-swiper-section .progress-dots-container .progress-dots.cs {
    max-width: 70%;
    flex-wrap: wrap;
  }
  .case-studies-swiper-section .progress-dots-container .progress-dots.cs .dot {
    margin-bottom: 10px;
  }


  .contact.form-section {
    padding-bottom: 100px !important;
  }
  .contact.spotlight-info-section {
    margin-bottom: 100px;
  }
  .contact.spotlight-info-section .contact-page-info-title-row .et_pb_text {
    margin-bottom: 75px !important;
  }

  .contact.spotlight-info-section .spotlight-locations-row .spotlight-container .spotlight-grid {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 40px !important;
    grid-template-columns: 1fr 1fr;
  }
  .contact.spotlight-info-section .spotlight-locations-row .spotlight-container .spotlight-grid .spotlight-card {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
  .contact.spotlight-info-section .spotlight-locations-row .spotlight-container .spotlight-grid .spotlight-card .spotlight-marker {
    opacity: 1;
  }

  .case-studies-swiper-section.service-parent .swiper-heading .et_pb_code_inner {
    padding-top: 150px;
  }



body.modal-open {
  overflow: hidden; /* Still helps prevent bounce scrolling */
}

/* Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
}

@media (max-width: 980px) {
	.header-section .navbar-row .et_pb_menu {
		display: none !important;
	}	
	
  .homepage.portfolio-section .carousel-row {
    background-position: center bottom 0px;
  }
  .services-container .service-modal {
    top: 50%;
  }

  .services-container .service-modal .text-container {
    padding: 35px 30px 30px 30px;
  }
  .not-found-section {
    background-size: 1500px;
  }
  body.page-id-1265 .why-areus-careers-section .et_pb_row h2 {
    font-size: 80px !important;
  }
  .glass-card-section.careers h2 {
    font-size: 32px !important;
  }
  .glass-card-section.careers p {
    font-size: 16px !important;
  }
  .portfolio-section .et_pb_ajax_pagination_container article {
    padding: 35px 65px 35px 30px;
    width: 371px;
    height: 462px;
  }
  .portfolio-section.careers article .post-content p {
    font-size: 16px !important;
    max-width: 150px !important;
  }
  #page-container .portfolio-section.careers article h2,
  #page-container .portfolio-section.careers article h2 a {
    font-size: 25px !important;
    max-width: 250px !important;
  }
  .portfolio-section .et_pb_ajax_pagination_container article::before {
    background-size: 30px;

    top: 34px;
    right: 34px;
    width: 30px;
    height: 30px;
  }
  .portfolio-section .et_pb_ajax_pagination_container {
    height: 85vh;
  }
  .more-managed-services-section h2 {
    font-size: 80px !important;
  }


  .case-studies-section.service-child
    .case-studies-row
    .case-studies-column.third {
    margin-top: 0 !important;
  }

    .why-areus-section.service-parent .swippable-cards-wrapper .swippable-card .horizontal-card{
      column-gap: 30px;
    }

  .page-id-10710  .why-areus-section.service-parent .swippable-card:has(.horizontal-card) {
    height: auto;
  }

  .case-studies-section.service .case-studies-row .case-studies-column {
    gap: 30px;
  }
  .case-studies-section.service .case-studies-row .case-studies-column:nth-of-type(2) {
    margin-top: 0;
  }

  .case-studies-section.service-child .case-studies-row .case-studies-column {
    width: 100% ;
  }

  .case-studies-section.service .case-studies-row .case-studies-column {
    width: 100%;
  }


  #the-challenge.service.who-we-are-section .title-row {
    height: fit-content;
    padding-top: 100px !important;
    padding-bottom: 0px !important;
}
  
  .service.case-studies-section {
    padding-bottom: 0;
  }

  #page-container .homepage.why-areus-section.about.service-child h2 {
    font-size: 60px !important;
  }
  .homepage.why-areus-section.service-child.horizontal-cards .swippable-card {
    padding: 60px !important;
  }

  #page-container
    .why-areus-section.service-child
    .swippable-card
    .horizontal-card
    h4 {
    font-size: 22px !important;
  }

  #page-container
    .why-areus-section.service-child
    .swippable-card
    .horizontal-card
    p {
    font-size: 14px !important;
  }

  .about.work-with-us-section.service-child .benefit-row .description-column {
    padding-block: 32px !important;
  }

  .about.work-with-us-section.service-child .benefit-row {
    margin-bottom: 34px !important;
  }

  .swiper-code-container {
    background-color: var(--clr-primary);
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(1) {
    margin-bottom: 200px !important;
    width: calc(660px - 200px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(2) {
    margin-bottom: 160px !important;
    width: calc(660px - 160px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(3) {
    margin-bottom: 120px !important;
    width: calc(660px - 120px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(4) {
    margin-bottom: 80px !important;
    width: calc(660px - 80px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(5) {
    margin-bottom: 40px !important;
    width: calc(660px - 40px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(6) {
    margin-bottom: 0px !important;
    width: 660px;
  }

  .why-areus-section.service-parent .swippable-cards-wrapper .swippable-card {
    padding-inline: 30px !important;
  }

  .case-studies-swiper-section.service-parent .progress-dots-container {
    max-width: 100% !important;
    padding-inline: 60px;
  }

  .about.spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card:nth-of-type(1) {
    left: -12%;
  }

  .about.spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card:nth-of-type(3) {
    right: -12%;
  }

  .about.hero-section .second-text-row h3 {
    font-size: 26px !important;
  }

  #page-container .homepage.why-areus-section.about h2 {
    font-size: 90px !important;
  }

  .about.our-mission-section {
    height: 600px;
  }

  .spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card {
    pointer-events: none !important;
  }

  body.page-id-399 .header-section {
    padding: 0px !important;
  }

  .homepage.why-areus-section.about .et_pb_module.et_pb_text p {
    width: 100% !important;
  }

  .about.work-with-us-section .benefit-row {
    gap: 50px !important;
  }

  .about.work-with-us-section {
    padding-inline: 60px !important;
  }

  .about.work-with-us-section .benefit-row .description-column {
    padding-left: 0px !important;
  }

  .about.work-with-us-section .benefit-row .image-column {
    max-height: max-content !important;
    display: flex;
    align-items: center;
  }

  .about.work-with-us-section .benefit-row {
    margin-bottom: 0px !important;
  }

  .typewriter-section .typewriter-heading {
    width: 100% !important;
    border-right: 0px !important;
  }

  .about.our-mission-section .video-row {
    z-index: -1;
  }

  .typewriter-section .body-text .word {
    opacity: 1 !important;
  }

  .header-section .navbar-row {
    max-width: max-content !important;
    padding: 30px 30px 20px 30px !important;
  }

  .blog-articles-section article h2 {
    margin-bottom: 20px !important;
  }

  div.et_pb_section:has(.between-blogs-divider) {
    padding-block: 0px !important;
  }

  .blog-most-recent-section {
    padding-top: 0px !important;
  }

  .between-blogs-divider {
    padding-block: 0px !important;
  }

  .blog-filter-container ul li.sf-level-0 {
    max-width: max-content;
  }

  body.blog .header-section {
    padding: 0px !important;
  }

  body.blog .header-section .navbar-row {
    padding: 30px 30px 20px 30px;
  }

  .blog-most-recent-section .et_pb_row .et_pb_column {
    flex-direction: column;
  }

  .auto-blog-articles-module article .text-column {
    max-width: 613px !important;
  }

  .blog-articles-section {
    padding-inline: 60px !important;
  }

  .blog-articles-section article h2 {
    font-size: 26px !important;
  }

  .blog-articles-section article .post-content p {
    font-size: 16px !important;
  }

  .blog-hero-section h1 {
    font-size: 48px !important;
  }

  .blog-most-recent-section .et_pb_row.filter-row .et_pb_column .et_pb_divider {
    padding-block: 43px !important;
  }

  .blog-filter-container ul {
    flex-wrap: wrap;
  }

  .blog-hero-section {
    padding-top: 60px !important;
  }

  .blog-filter-container {
    margin-top: 38px !important;
  }

  .blog-most-recent-section {
    padding-inline: 20px !important;
  }

  .blog-article-template-section .sticky-toc {
    display: none !important;
  }

  div.blog-article-template-section {
    padding-top: 60px !important;
  }

  div.blog-article-template-section .et_pb_row .post-content-column {
    max-width: 100% !important;
  }

  body.post-template-default .header-section {
    padding: 0px !important;
  }

  .portfolio-featured-image-section {
    padding-top: 0px !important;
    padding-inline: 30px !important;
  }

  .quantifiable-outcomes-section .portfolio-numbers-row {
    padding-top: 80px !important;
  }

  .about.hero-section .second-text-row.portfolio-numbers-row {
    height: auto;
  }


  .about.hero-section .second-text-row.portfolio-numbers-row .et_pb_column  {
    position: relative;
    transform: translateX(0);
    top: 0;
  }


  body.portfolio-template-default .testimonials-section {
    padding-bottom: 60px !important;
  }

  .case-studies-swiper-heading .et_pb_text_inner {
    padding-inline: 60px !important;
  }

  .case-study-card-container {
    flex-direction: column;
  }

  .case-study-card-container .left-side {
    max-width: 100%;
  }
  .case-study-card-container .left-side .top {
    margin-bottom: 20px;
    justify-content: space-between;
  }

  .case-study-card-container .right-side video {
    max-width: 100%;
    min-width: unset !important;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    max-height: 400px;
    object-fit: cover;
  }

  .case-study-card-container .right-side {
    min-width: unset !important;
    min-height: unset;
    max-width: 100%;
    width: 100%;
    max-height: 400px;
    padding-inline: 30px;
  }

  .case-studies-swiper-heading .et_pb_text_inner {
    padding-block: 0px 90px !important;
  }

  .portfolio-numbers-container .number-item:nth-of-type(1),
  .portfolio-numbers-container .number-item:nth-of-type(2) {
    max-width: 360px !important;
  }

  body.portfolio-template-default
    .why-areus-section.second
    .swippable-cards-wrapper
    .swippable-card {
    width: 612px;
  }

  .homepage.testimonials-section .testimonial-card .author-image {
    height: 90px !important;
  }

  body.portfolio-template-default
    .homepage.testimonials-section
    .testimonial-card {
    max-width: 530px !important;
  }

  body.portfolio-template-default #main-content > .container {
    padding-top: 0px !important;
  }

  #page-container .portfolio-content-section {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }

  #page-container
    .portfolio-content-section
    .et_pb_row
    .et_pb_column:not(.content-column) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    min-width: 100%;
  }

  .quantifiable-outcomes-section .number-item {
    border-left: 0px !important;
    border-right: 0px !important;
  }

  #page-container .portfolio-content-section .et_pb_row {
    flex-direction: column;
  }

  .portfolio-numbers-container .number-item:nth-of-type(1),
  .portfolio-numbers-container .number-item:nth-of-type(2) {
    max-width: 270px;
  }

  .portfolio-numbers-container .number-item:nth-of-type(2) {
    border-right: 0px !important;
  }

  .portfolio-numbers-container .number-item:nth-of-type(3),
  .portfolio-numbers-container .number-item:nth-of-type(4) {
    max-width: 300px;
  }

  body.page-id-675 .header-section {
    padding: 0px !important;
  }

  body.page-id-675 .header-section .navbar-row {
    max-width: max-content !important;
    padding: 20px 30px 20px 30px !important;
  }

  body.page-id-675 .about.hero-section .hero-title-row {
    padding-bottom: 275px !important;
  }

  .sticky-title-row .sticky-content h2 {
    font-size: 60px !important;
  }

  .portfolio-numbers-container {
    flex-wrap: wrap !important;
  }

  body.page-id-675 .about.hero-section {
    padding-inline: 60px !important;
  }

  body.page-id-675 .about.hero-section h2 {
    max-width: 500px !important;
    margin-inline: auto !important;
  }

  .hero-section .hero-title-row {
    max-width: 500px !important;
  }

  .homepage.services-section .sticky-title-row {
    padding-top: 10vh;
  }

  .sticky-title-row .sticky-content h2 {
    max-width: 600px;
  }

  .sticky-title-row .container {
    min-height: 40vh;
  }

  .homepage.services-section .services-details-row::before {
    background: linear-gradient(1deg, #030115 30.62%, rgba(3, 1, 21, 0) 100%);
  }

  .homepage.services-section .services-details-row .areus-logo img {
    max-width: 500px !important;
  }

  .homepage.services-section
    .services-details-row
    .services-grid
    .service:nth-of-type(3) {
    top: -10%;
  }

  .homepage.services-section
    .services-details-row
    .services-grid
    .service:nth-of-type(4) {
    top: -10%;
  }

  .why-areus-section .et_pb_row .et_pb_column .et_pb_module.et_pb_text {
    position: sticky;
    top: 20vh;
  }

  .homepage.testimonials-section .nav-prev {
    left: calc(2%);
  }

  .homepage.testimonials-section .nav-next {
    right: calc(2%);
  }

  .homepage.testimonials-section .progress-dots-container {
    left: calc(10% + 100px);
  }

  .case-studies-section .card .card-overlay {
    opacity: 1 !important;
  }

  .case-studies-section .card .top-content {
    transform: translateY(0);
  }

  .case-studies-section .card .bottom-content {
    transform: translateY(0);
  }

  .contact.spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card:nth-of-type(1) {
    left: 0%;
  }

  .contact.spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card:nth-of-type(2) {
    right: 0%;
  }

  .spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-center
    img {
    max-width: 100% !important;
  }

  .contact.spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card:nth-of-type(3) {
    bottom: 40%;
  }

  .contact.spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card:nth-of-type(4) {
    bottom: 40%;
  }

  .contact.glass-card-section .et_pb_column {
    background: url(/wp-content/uploads/2025/10/noise-texture.png), rgba(3, 1, 21, 0.6) !important;
  }

  .spotlight-info-section .spotlight-locations-row .et_pb_code {
    opacity: 1 !important;
  }


  
  .et_pb_section.footer .et_pb_image {
    opacity: 1 !important;
  }

  .footer .menu-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    gap: 20px !important;
  }

  .footer .menu-row .et_pb_column {
    width: 100% !important;
  }

  .footer {
    padding-inline: 50px !important;
  }

  .et_pb_menu .et_mobile_menu {
    background-color: var(--clr-primary) !important;
  }

  #rmp_menu_trigger-815 {
    position: relative;
    background-color: transparent !important;
    margin: 0px !important;
    width: 35px;
    height: 35px;
    top: 1px !important;
    z-index: 999999999;
  }

  #rmp_menu_trigger-815 .responsive-menu-pro-inner {
    width: 22px;
    height: 2px;
  }

  #rmp_menu_trigger-815 .responsive-menu-pro-inner::before {
    top: 8px;
    width: 22px;
    height: 2px;
  }

  #rmp_menu_trigger-815 .responsive-menu-pro-inner::after {
    bottom: 8px;
    width: 22px;
    height: 2px;
  }

  #rmp-container-815 {
    z-index: 99999999;
    background-color: var(--clr-primary) !important;
    z-index: 99999999;
    background-color: var(--clr-primary) !important;
    top: 0px;
/*     padding-top: 80px; */
    margin-top: 0px !important;
    width: 100vw;
    min-width: 100vw;
  }

  #rmp_menu_trigger-815.is-active {
    position: fixed;
    top: 40px !important;
    right: 20px;
  }

  #rmp-menu-wrap-815 .rmp-menu-current-item .rmp-menu-item-link {
    background: #fff;
    color: var(--clr-primary) !important;;
  }

  #rmp-menu-title-815 > .rmp-menu-title-link span {
    display: none !important;
  }

  #rmp-menu-additional-content-815 {
    display: none !important;
  }

  #rmp-menu-wrap-815 .rmp-menu-item.current_page_item {
    background-color: white !important;
  }

  #rmp-menu-wrap-815 .rmp-menu-item.current_page_item a {
    color: var(--clr-primary) !important;
    background-color: white !important;
  }

  body.page-id-675 .sticky-title-row .sticky-content h2 {
    font-size: 95px !important;
  }

  .header-section {
    padding: 0px !important;
  }

  .more-managed-services-section {
    padding-block: 100px !important;
  }

  .case-studies-swiper-section.service-parent .swiper-code-container .buttons-container {
    padding-inline: 10%;
    margin-top: 25px;
  }
  
  .service.hero-section .cards-wrapper .right-card,
   .service.hero-section .cards-wrapper .left-card {
    display: none;
  }
  .service.hero-section .hero-nav .card {
    height: 300px;
    padding: 50px 100px;
  }
  .service.hero-section {
    padding-inline: 20px !important;
  }
  .service.hero-section .hero-nav .btn-next, .service.hero-section .hero-nav .btn-prev {
    width: 60px;
  }

  .why-areus-section.service.parent.card-section .et_pb_column .swippable-cards-container::after {
    top: 4%;
    left: -10%;
  }

  .glass-card-section .glass-card::before {
    height: 100px;
    width: 100px;
  }

  .homepage.portfolio-section .carousel-container {
    height: 700px;
  }
  .homepage.portfolio-section .carousel-row .carousel-navigation {
    transform: translateY(0px) !important;
  }

  #the-solution.why-areus-section .et_pb_column h2 {
    margin-bottom: 125px;
  }

  .homepage.services-section .services-details-row .areus-logo {
    display: none;
  }


  .homepage.services-section .services-details-row .services-container .services-grid {
    position: relative;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    padding-bottom: 100px;
  }
  .homepage.services-section .services-details-row .services-grid .service {
    position: relative;
    width: auto;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  .case-studies-swiper-section {
  padding-bottom: 00px !important;
}

.case-studies-swiper-section.service-parent .swiper-heading {
    height: 500px;
}

.service.who-we-are-section .title-row {
    height: 40vh;
}

.scroll-to-top-btn-section {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important
}
.scroll-to-top-btn-section .et_pb_row {
    padding: 0 !important;
}

.service.who-we-are-section.parent .title-row {
  padding-top: 0;
}
  
}


@media (max-width: 768px) {
  .glass-card-section {
    padding-inline: 30px !important;
  }
  .glass-card-section .et_pb_column {
    border-radius: 30px;
  }
  .sticky-title-row .sticky-content h2 {
    font-size: 50px !important;
  }
  #page-container .homepage.why-areus-section.about h2 {
    font-size: 70px !important;
  }


  .case-studies-swiper-section .progress-dots-container .progress-dots.cs {
    max-width: 100% !important;
    justify-content: flex-start;    
  }
  .case-studies-swiper-section .case-studies-swiper-heading .et_pb_text_inner {
    flex-direction: column; 
    padding-bottom: 50px !important;
    gap: 30px;
  }

  .homepage.services-section .services-details-row .services-container .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .homepage.services-section .services-details-row .services-container .services-grid .service {
    gap: 10px;
  }

  .contact.form-section {
    padding-bottom: 100px !important;
  }
  .contact.spotlight-info-section {
    margin-bottom: 0;
    padding-inline: 20px !important;
  }
  .contact.spotlight-info-section .contact-page-info-title-row .et_pb_text {
    margin-bottom: 0 !important;
  }

  .contact.spotlight-info-section .spotlight-locations-row .spotlight-container .spotlight-grid {
    position: relative;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
  }

  .case-studies-swiper-section.service-parent .progress-dots-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

    .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card {
      height: fit-content;
    }

    .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(1) {
    margin-bottom: 60px !important;
    width: calc(550px - 60px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(2) {
    margin-bottom: 60px !important;
    width: calc(550px - 60px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(3) {
    margin-bottom: 60px !important;
    width: calc(550px - 60px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(4) {
    margin-bottom: 40px !important;
    width: calc(550px - 40px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(5) {
    margin-bottom: 20px !important;
    width: calc(550px - 20px) !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(6) {
    margin-bottom: 0px !important;
    width: 550px;
  }


  .blog-articles-section .et_pb_post {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0
  }

  .blog-articles-section article .entry-featured-image-url {
      grid-column: 1;
      grid-row: 1;
      height: auto;
  }
  .blog-articles-section article .entry-featured-image-url img {
    height: auto;
      width: 100%;
      object-fit: contain;
  }

  .blog-articles-section article h2,
  .blog-articles-section article .post-meta,
  .blog-articles-section article .post-content {
      grid-column: 1;
      grid-row: auto;

  }


  .footer .menu-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer .menu-row h5.menu-title {
    margin-bottom: 10px;
    text-align: center;
  }
  .footer .menu-row .menu {
    gap: 5px;
  }
  .footer .menu-row .menu a {
    text-align: center;
  }

  .case-studies-swiper-section.service-parent .swiper-heading h2 {
    font-size: 54px !important;
  }

  #blog-articles.blog-articles-section {
    padding-bottom: 0 !important;
    background-image: none;
  }



}


@media (min-width: 481px) and (max-width: 980px) {
  .homepage.services-section .services-details-row .services-grid .service h5 {
    max-width: 170px;
  }
}

@media (max-width: 480px) {
  body.page-id-9 #contact {
    padding-top: 100vh !important;
  }
  .case-studies-section .case-studies-row::before {
    display: none !important;
  }
  .hero-section .hero-title-row .et_pb_column .et_pb_text_inner {
    font-size: 18px !important;
  }
  .homepage.portfolio-section .carousel-row {
    background-image: unset !important;
  }
.homepage.services-section .services-details-row .services-container .services-grid {
  padding-left: 0;
}
  .homepage.services-section {
    z-index: 999 !important;
  }
  .not-found-section .et_pb_row h1 {
    font-size: 40px !important;
    max-width: 310px !important;
  }

  .not-found-section .et_pb_row {
    height: 40vh;
  }
  .not-found-section .et_pb_row p {
    font-size: 14px !important;
    max-width: 310px !important;
  }
  .not-found-section {
    background-size: 180%;
  }
  .hero-section.job {
    padding-bottom: 0px !important;
  }
  #page-container .hero-section.careers h1 {
    font-size: 44px !important;
    margin-bottom: 17px !important;
  }
  .portfolio-section .et_pb_ajax_pagination_container {
    background-position: center 0px;
  }
  .portfolio-section .et_pb_ajax_pagination_container article::before {
    top: 35px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
  .portfolio-section.careers h2 {
    background: linear-gradient(
        rgba(255, 255, 255, 0.4) 80%,
        rgba(255, 255, 255, 0) 100%
      )
      text;
  }
  .portfolio-section .et_pb_ajax_pagination_container article {
    width: 310px !important;
    padding: 35px 65px 35px 30px;
    height: 460px !important;
  }
  #page-container .portfolio-section.careers article h2,
  #page-container .portfolio-section.careers article h2 a {
    font-size: 25px !important;
  }
  .more-managed-services-section {
    padding-block: 100px 0px !important;
  }
  .more-managed-services-section
    .more-managed-services-cards-row
    .more-managed-services-card
    h3 {
    font-size: 29px !important;
  }
  .more-managed-services-section
    .more-managed-services-cards-row
    .et_pb_column {
    flex-direction: column;
  }
  .more-managed-services-section {
    padding-inline: 30px !important;
  }
  .glass-card-section .et_pb_row::before {
    left: 30% !important;
  }
  .more-managed-services-section
    .more-managed-services-cards-row
    .second-card
    .more-managed-services-card,
  .more-managed-services-section
    .more-managed-services-cards-row
    .first-card
    .more-managed-services-card {
    transform: rotate(0deg) !important;
  }
  .more-managed-services-section h2 {
    font-size: 40px !important;
  }
  .case-studies-section.service-child {
    margin-bottom: 0px !important;
  }
  .about.work-with-us-section.service-child .benefit-row {
    gap: 30px !important;
    margin-bottom: 0px !important;
  }
  .homepage.why-areus-section.service-child.horizontal-cards .swippable-card {
    padding: 20px !important;
  }
  #page-container .homepage.why-areus-section.about.service-child h2 {
    font-size: 40px !important;
  }
  .why-areus-section.service-parent
    .swippable-cards-wrapper
    div.swippable-card {
    width: 310px !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(5) {
    width: 310px !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(4) {
    width: 310px !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(3) {
    width: 310px !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(2) {
    width: 310px !important;
  }

  .why-areus-section.service-parent
    .swippable-cards-wrapper
    .swippable-card:nth-of-type(1) {
    width: 310px !important;
  }

  .why-areus-section.service-parent .swippable-card .horizontal-card {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .service.who-we-are-section .title-row {
    height: fit-content !important;
  }

  .service.hero-section .hero-nav .card {
    padding: 40px 40px;
  }

  .case-studies-section.service {
    margin-bottom: 15vh;
    padding-inline: 30px !important;
  }

  .case-studies-swiper-section.service-parent .swiper-heading h2 {
    font-size: 36px !important;
    padding-inline: 30px;
  }

  .case-studies-swiper-section.service-parent .swiper-heading h2 br {
    display: none !important;
  }

  .case-studies-swiper-section.service-parent .progress-dots-container {
    max-width: 100% !important;
    padding-inline: 30px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }

  .case-studies-swiper-section.service-parent .case-study-card-container .left-side {
    padding: 20px 20px 0 20px !important
  }
  .case-studies-swiper-section.service-parent .case-study-card-container .right-side {
    padding: 0 20px;
  }

  .case-studies-swiper-section.service-parent .case-studies-swiper-section.service-parent .progress-dots-container a {
    max-width: max-content;
  }
  
  .case-studies-swiper-section.service-parent .swiper-code-container .buttons-container {
    padding-inline: 10px;
  }
  .case-studies-swiper-section.service-parent .swiper-code-container .buttons-container {
      top: auto;
      bottom: 40px;
  }

  .case-studies-swiper-section .progress-dots::after {
    display: none;
  }



  .spotlight-info-section {
    height: 100vh !important;
  }

  .contact.spotlight-info-section {
    height: auto !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  .spotlight-info-section .spotlight-locations-row .et_pb_column .et_pb_module {
    margin-top: 0px !important;
  }

  .spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    place-content: center;
    place-items: center;
  }

  .spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid
    .spotlight-card {
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    top: unset !important;
    position: relative !important;
    transform: unset !important;
  }

  .spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-center
    img {
    display: none !important;
  }

  .spotlight-info-section
    .spotlight-locations-row
    .spotlight-container
    .spotlight-grid {
    flex-direction: column;
  }

  .about.work-with-us-section .benefit-row:nth-of-type(even) {
    flex-direction: column-reverse;
  }

  .about.work-with-us-section .benefit-row .description-column {
    padding: 0px 25px 40px 25px;
    gap: 10px !important;
  }

  .about.work-with-us-section .benefit-row .description-column h3 {
    font-size: 24px !important;
  }

  .about.work-with-us-section .benefit-row .description-column p {
    font-size: 16px !important;
  }

  .about.work-with-us-section .benefit-row:nth-of-type(odd) {
    flex-direction: column;
  }

  .typewriter-section .body-text {
    gap: 4px !important;
  }

  .homepage.why-areus-section.about .et_pb_module.et_pb_text p {
    font-size: 20px !important;
  }

  .about.work-with-us-section {
    padding-inline: 30px !important;
  }

  .typewriter-section .body-text .word {
    opacity: 1 !important;
    font-size: 20px !important;
  }

  body.portfolio-template-default .testimonials-section {
    padding-inline: 30px !important;
  }

  body.portfolio-template-default .header-section {
    padding-block: 0px !important;
  }

  .cta-section.portfolio {
    margin-bottom: 0px !important;
  }

  body.page-id-675 .about.hero-section {
    padding-bottom: 0px !important;
  }

  .blog-articles-section .blog-articles-row .et_pb_ajax_pagination_container {
    display: flex;
    flex-direction: column;
    gap: 25px !important;
  }

  .blog-filter-container ul {
    justify-content: start;
    gap: 10px;
  }

  .blog-articles-section .pagination a {
    font-size: 14px !important;
  }

  .blog-recent-image-module {
    width: 100%;
  }

  .blog-articles-section article {
    display: flex;
    flex-direction: column;
  }

  .blog-active-image-container img {
    min-height: 210px !important;
  }

  .blog-articles-section {
    padding-inline: 30px !important;
  }

  .blog-most-recent-section .et_pb_row {
    padding-bottom: 0px !important;
  }

  .blog-hero-section h1 {
    font-size: 40px !important;
  }

  .blog-filter-container ul li.sf-level-0 {
    padding: 8px 12px;
  }

  .blog-hero-section p {
    font-size: 20px !important;
  }

  .blog-hero-section {
    padding-bottom: 0px !important;
  }

  #page-container
    div.blog-article-template-section
    .et_pb_row
    .excerpt
    .et_pb_text_inner {
    font-size: 18px !important;
  }

  div.blog-article-template-section {
    padding-inline: 30px !important;
  }

  #page-container div.blog-article-template-section .et_pb_row h1 {
    font-size: 34px !important;
  }

  body.post-template-default .article-divider {
    padding-block: 62px 24px;
  }

  body.portfolio-template-default
    .why-areus-section.second
    .swippable-cards-wrapper
    .swippable-card {
    width: 100%;
  }

  #page-container
    .portfolio-content-section
    .et_pb_row
    .et_pb_column:not(.content-column) {
    gap: 0px;
  }

  .why-areus-section.first .et_pb_row .et_pb_column .et_pb_module.et_pb_text {
    position: sticky !important;
  }

  .quantifiable-outcomes-section h2 {
    font-size: 42px !important;
  }

  .portfolio-featured-image-section {
    padding-inline: 20px !important;
    padding-block: 60px 0px !important;
  }

  #page-container .portfolio-content-section {
    padding-bottom: 0px !important;
  }

  .portfolio-featured-image-section .et_pb_row {
    padding-top: 0px !important;
  }

  .case-studies-swiper-section .progress-dots-container .dot {
    width: 45px !important;
  }

  .case-studies-swiper-section {
    padding-bottom: 80px !important;
  }

  .case-studies-swiper-heading .et_pb_text_inner {
    justify-content: space-between;
  }

  .case-studies-swiper-section .progress-dots-container {
    margin-top: 20px;
  }

  .case-studies-swiper-heading h2 {
    font-size: 32px !important;
  }

  .case-studies-swiper-heading .et_pb_text_inner {
    padding-inline: 30px !important;
    padding-block: 0px 30px !important;
  }

  .portfolio-divider {
    padding-block: 0px !important;
  }

  #page-container .homepage.why-areus-section h2 {
    font-size: 55px !important;
  }

  #page-container .portfolio-content-section .et_pb_row .content-column h1 {
    font-size: 32px !important;
  }

  #page-container .portfolio-content-section .et_pb_row {
    gap: 30px;
  }

  #page-container
    .portfolio-content-section
    .et_pb_row
    .et_pb_column:not(.content-column) {
    grid-template-columns: 1fr;
  }

  .portfolio-numbers-container .number-item {
    border-right: 0px !important;
    border-left: 0px !important;
    justify-content: center !important;
  }

  .cta-section.portfolio {
    padding-block: 120px 100px !important;
  }

  body.page-id-675 .sticky-title-row .sticky-content h2 {
    font-size: 60px !important;
  }

  body.page-id-675
    .homepage.portfolio-section
    .carousel-row
    .et_pb_column::before {
    height: 390px;
  }

  .contact.form-section .contact-form-container form .two-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.page-id-48 .hero-section {
    padding-block: 40px 0px !important;
  }

  .footer .legals-row .et_pb_code_inner {
    flex-direction: column;
  }

  .footer .menu-row {
    row-gap: 40px;
  }

  .homepage.services-section .services-details-row .areus-logo img {
    max-width: 100% !important;
  }

  .homepage.services-section
    .services-details-row
    .services-container
    .services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .homepage.services-section .services-details-row .services-grid .service {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
  }

  .homepage.services-section .services-details-row {
    padding-top: 0px !important;
  }

  .homepage.services-section .services-details-row .areus-logo img {
    max-width: 50vw !important;
    margin-inline: auto !important;
  }

  .homepage.services-section .services-details-row .services-container {
    min-height: 100vh;
  }

  .homepage.services-section
    .services-details-row
    .services-container
    .services-grid {
    justify-content: start;
  }

  .homepage.services-section .services-details-row .areus-logo {
    display: none;
  }

  .homepage.services-section
    .services-details-row
    .services-container
    .services-grid {
    gap: 40px;
  }

  .homepage.services-section .services-details-row {
    padding-bottom: 60px !important;
  }

  .homepage.services-section .services-details-row::before {
    height: 500px;
  }

  .services-container .service-modal {
    width: 97% !important;
  }

  .services-container .service-modal {
    position: fixed;
    top: 50%;
    z-index: 9999 !important;
  }

  .homepage.services-section .services-details-row::before {
    z-index: 2;
  }

  .services-container .service-modal .text-container {
    padding: 25px 30px 20px 30px;
  }

  .services-container .service-modal .close-button {
    width: 40px;
    height: 40px;
  }

  .why-areus-section .et_pb_row {
    height: 300vh !important;
  }

  .homepage.testimonials-section .progress-dots-container {
    left: 13%;
  }

  .homepage.testimonials-section .progress-dots-container .progress-dots .dot {
    width: 25px !important;
  }

  .homepage.testimonials-section .nav-button {
    width: 44px;
    height: 44px;
  }

  .homepage.testimonials-section .testimonial-card .testimonial-text {
    font-size: 18px !important;
  }

  .homepage.testimonials-section .testimonial-card .author-info h4 {
    font-size: 14px !important;
  }

  #page-container
    .homepage.testimonials-section
    .testimonial-card
    .author-info
    p {
    font-size: 12px !important;
  }

  .portfolio-section .sticky-title-row .container {
    padding-top: 0px !important;
  }

  .homepage.portfolio-section .card {
    width: 300px;
    height: 450px;
  }

  .homepage.portfolio-section .card.active {
    z-index: 50 !important;
  }

  .homepage.portfolio-section .card-overlay .bottom-content {
    gap: 15px;
  }

  .card-deck-carousel {
    touch-action: pan-y;
    overscroll-behavior: contain;
  }

  .homepage.portfolio-section .carousel-row .et_pb_column::before {
    height: 730px;
  }

  .homepage.services-section .services-details-row::before {
    height: 600px;
  }

  .sticky-title-row .sticky-content h2 {
    font-size: 30px !important;
  }

  .homepage.case-studies-section .sticky-title-row .container {
    padding-top: 0px !important;
    height: 50vh;
  }

  .case-studies-section .card {
    height: 300px;
  }

  .case-studies-section,
  .homepage.case-studies-section .sticky-title-row {
    padding-top: 0px !important;
    margin-bottom: -100vh;
  }

  .case-studies-section .card .card-overlay .bottom-content .card-button {
    border: 0px !important;
  }

  .case-studies-section .card .card-overlay .bottom-content .card-button img {
    width: 41px;
    height: 41px;
  }

  .glass-card-section .et_pb_column {
    padding-block: 40px !important;
  }

  #page-container .glass-card-section h3 {
    font-size: 24px !important;
  }

  #page-container .glass-card-section p.p-big {
    font-size: 14px !important;
  }

  .homepage.case-studies-section .sticky-title-row {
    margin-bottom: 0;
  }

  div.et_pb_section.fullwidth-section.services.logos-carousel-row h2 {
    padding-inline: 30px !important;
  }

  .service.who-we-are-section.parent h3 {
    font-size: 28px !important;
  }

  .service.who-we-are-section.parent h3 {
    margin-bottom: 32px !important;
  }

  .case-studies-swiper-section.service-parent {
    margin-top: -30vh;
  }

  .homepage.portfolio-section .card-overlay .top-content {
    gap: 10px ;
  }

  .homepage.portfolio-section .card-overlay .top-content img {
    width: 45px;
    height: 45px;
  }

  .blog-most-recent-section .blog-filter-container .sf-field-category ul {
    justify-content: center;
  }

  .blog-articles-section .pagination {
    justify-content: space-between;
  }
  .blog-articles-section .pagination::after {
    display: none;
  }

  .homepage.portfolio-section .carousel-container {
    height: 600px;
  }
  .homepage.portfolio-section .carousel-row .carousel-navigation {
    transform: translateY(0px) !important;
  }

  .page-id-9 .homepage.portfolio-section {
    margin-bottom: 100px;
  }

  .page-id-9 .case-studies-section {
    margin-bottom: 0 !important;
  }

  body.page-id-9 .homepage.contact-section#contact {
    padding-top: 0 !important;
  }
  body.page-id-9 .glass-card-section {
    min-height: auto;
  }
  .homepage.services-section .services-details-row .services-grid .service h5 {
    max-width: 400px !important;
  }

  .case-studies-section .card .card-overlay .bottom-content {
    padding: 15px;
    gap: 10px;
  }
  .case-studies-section .card .card-overlay .top-content {
    padding: 15px;
  }

  .why-areus-section.service-parent .swippable-cards-wrapper .swippable-card {
    height: fit-content;
  }

  body.portfolio-template-default .why-areus-section.second .swippable-cards-wrapper .swippable-card {
    padding: 50px 30px;
  }

    #the-solution.why-areus-section .et_pb_column h2 {
    margin-bottom: 50px;
  }
  #page-container .homepage.why-areus-section.about h2 {
    font-size: 55px !important;
  }

  .case-studies-swiper-section .progress-dots-container .progress-dots.cs {
    padding-inline: 30px;
  }

  .homepage.portfolio-section .card-overlay .top-content {
    flex-direction: column;
  }

  .about.hero-section .second-text-row.portfolio-numbers-container .number-item {
    height: 200px;
  }
  body.page-id-675 .about.hero-section .hero-title-row {
    padding-bottom: 100px !important;
  }

  .service.who-we-are-section.parent .title-row {
    padding-top: 0;
  }
  .service.who-we-are-section.parent .title-row h3 {
    margin-bottom: 10px !important;
  }

  .case-studies-swiper-section.service-parent {
    margin-top: 0;
  }

  .case-studies-section.service {
    margin-bottom: 0;
  }
  .case-studies-swiper-section.service-parent .swiper-heading {
    height: fit-content;
    margin-bottom: 50px;
  }
  .case-studies-swiper-section.service-parent .swiper-heading .et_pb_code_inner {
    padding-top: 100px;
  }

  .homepage.services-section .et_pb_row {
    background: none
  }

  .homepage.portfolio-section .carousel-row .et_pb_column::before {
    height: 400px !important;
  }

  .homepage.testimonials-section .swiper {
    padding-bottom: 0 !important;
  }

  .contact-section.glass-card-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .case-studies-swiper-section.service-parent {
    padding-bottom: 0 !important;
  }

  .scroll-to-top-btn-section {
    right: 10px !important;
    bottom: 10px !important;
  }
  .scroll-to-top-btn-section #scrollTopBtn img {
    width: 50px;
    height: 50px;
  }

  #the-challenge.service.who-we-are-section .title-row {
    height: fit-content;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

  .why-areus-section.service-parent .et_pb_row .et_pb_column {
    top: 150px !important;
  }
}

@media (max-width: 375px) {
  .homepage.services-section .services-details-row::before {
    height: 400px;
  }

  .homepage.services-section {
    padding-bottom: 200px !important;
  }

  body.page-id-675 .about.hero-section {
    padding-inline: 20px !important;
  }

 
  .blog-articles-section .pagination a {
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
  }

  .homepage.portfolio-section .card-overlay .bottom-content {
    gap: 15px;
  }

}

@media (max-width: 320px) {
  .portfolio-section .et_pb_ajax_pagination_container article {
    width: 300px !important;
  }
}
