/* --- 00-cls-prevention.css --- */
/* CLS prevention — hide elements that JS will animate to prevent layout shifts */
.text_gel-is-where {
  visibility: hidden;
  opacity: 0;
}

.circle-meets-fill {
  height: 0% !important;
}

/* Carousel containers: prevent layout recalculation during JS init */
[data-cr-name] {
  contain: layout style;
}

/* --- 01-base.css --- */
section {
	position: relative;
}
:where([data-container]) {
  position: relative;
  max-width: var(--max-width--wide);
  padding-right: var(--padding-horizontal--small);
  padding-left: var(--padding-horizontal--small);
  margin-left: auto;
  margin-right: auto;
}

/* --- UTILITY CLASSES --- */
.wf-design-mode [wf-designer="hide"] {
  display: none;
}
[class*="negative"] { color: var(--white); }
section, header, footer {
	position: relative;
}

/* Get rid of top margin on first element in any rich text element */
.w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child {
  margin-top: 0 !important;
}
/* Get rid of bottom margin on last element in any rich text element */
.w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child {
	margin-bottom: 0 !important;
}

/* Snippet enables you to add class of div-square which creates and maintains a 1:1 dimension of a div.*/
.div-square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

/*Hide focus outline for main content element*/
main:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}

/* Make sure containers never lose their center alignment*/
.container-medium, .container-small, .container-large {
  margin-right: auto !important;
  margin-left: auto !important;
}

/*Reset selects, buttons, and links styles*/
.w-input, .w-select, a {
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
}

/*Apply "..." after 3 lines of text */
.text-style-3lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Apply "..." after 2 lines of text */
.text-style-2lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Apply "..." at 100% width */
.truncate-width {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Removes native scrollbar */
.no-scrollbar {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Adds inline flex display */
.display-inlineflex {
  display: inline-flex;
}

/* These classes are never overwritten */
.hide { display: none !important; }
@media screen and (max-width: 991px) {
  .hide, .hide-tablet { display: none !important; }
}
@media screen and (max-width: 767px) {
  .hide-mobile-landscape{ display: none !important; }
}
@media screen and (max-width: 479px) {
  .hide-mobile{ display: none !important; }
}

.margin-0 { margin: 0rem !important; }
.padding-0 { padding: 0rem !important; }
.spacing-clean {
  padding: 0rem !important;
  margin: 0rem !important;
}
.image_mask,
.cursor { pointer-events: none; }
.modal-container.is-active .modal-bg { top: 0%; }

/* ----- VIEW MORE WORK -------*/
.carousel_swiper_vmw.is--middle .carousel_item_wrapper > .vmw-link-block { pointer-events: auto; }

.btn-regular .btn-background-pink {
  transition: clip-path 0.3s ease-out;
  clip-path: circle(0% at 0% 50%);
}
.btn-regular:hover .btn-background-pink {
  clip-path: circle(75% at 50% 50%);
}
.btn-with-icon .btn-background-pink {
  transition: clip-path 0.3s ease-out;
  clip-path: circle(0% at 100% 50%);
}
.btn-with-icon:hover .btn-background-pink {
  clip-path: circle(100% at 50% 50%);
}
.insights_link-block:hover .insights-read-link { text-decoration: underline; }

/* ----- PROJECTS TOP LAYOUT ------- */
@media screen and (min-width: 989px) {
  .projects-list.unfiltered > :nth-child(1) {
    grid-column: 1 / -1;
    flex-direction: row-reverse;
  }
  .projects-list.unfiltered > :nth-child(2) {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .projects-list.unfiltered > :nth-child(4) { grid-column: span 2; }
  .projects-list.unfiltered > :nth-child(5) { grid-column: span 2; }
}

/* ----- PAGE TRANSITIONS -----*/
.transition-overlay .transition-layer {
  transition: height 300ms ease-in-out;
}
.transition-overlay.is--loading .transition-layer {
  top: 0;
  bottom: auto;
  height: 100%;
}
.transition-overlay .transition-layer.white {  transition-delay: 200ms; }
.transition-overlay .transition-layer.indian-red {  transition-delay: 400ms; }
.transition-overlay.is--loading .transition-layer.white {  transition-delay: 200ms; }
.transition-overlay.is--loading .transition-layer.indian-red {  transition-delay: 0ms; }
#hubspot-messages-iframe-container { z-index: 990; }

/* ===== EDIT MODE SAFEGUARD =====
   Hide transition overlay and kill transitions while in Designer or Editor */
.wf-design-mode .transition-overlay,
.wf-edit-mode .transition-overlay {
  display: none !important;
}
.wf-design-mode .transition-overlay .transition-layer,
.wf-edit-mode .transition-overlay .transition-layer {
  transition: none !important;
  height: auto !important;
}