@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face{
    font-family: Helvetica-bold;
    src: url(HelveticaNowDisplay-Bold.ttf);
}
  
@font-face{
    font-family: Akkurat;
    src: url(Akkurat.ttf);
}

@font-face{
    font-family: Enzyme;
    src: url(Enzyme.otf);
}

@font-face{
    font-family: NeueHaas-DisplayRoman;
    src: url(NeueHaasDisplayRoman.ttf);
}

@font-face{
    font-family: matter;
    src: url(matter-regular.woff2);
}
@font-face{
    font-family: matter-light;
    src: url(matter-light.woff2);
}

@font-face{
    font-family: Neue Haas Grotesk;
    src: url(NeueHaasDisplayMediu.ttf);
}

@font-face{
    font-family: Neue Haas Grotesk-light;
    src: url(NeueHaasDisplayLight.ttf);
}

@font-face{
    font-family: Migra-italic;
    src: url(MigraItalic-ExtralightItalic.ttf);
}

html,
body {
    height: 100%;
    width: 100%;
    color: #fff;
    font-family: matter;
    height: 100%;
    overflow-x: clip;
    font-size: 14px;
    user-select: none;
    font-feature-settings: "ss03" 1, "ss01" 1, "ss02" 1;
    
}


audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

em, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
}

img {
    max-width: 100%;
    display: inline-block;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background-color: #181818;
}

::-webkit-scrollbar-thumb {
    background-color: #3e30ff;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(46, 21, 158);
}


#main{
    will-change: transform;
}

.c-navbar{
  z-index: 100;
  pointer-events: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  position: fixed;
  inset: 0% 0% auto;
  background-color: #040404;
}

.c-nav__baseline-wrapper {
    width: 100%;
    padding-left: 2.25em;
    padding-right: 2.25em;
}

.c-nav__baseline {
    border-bottom: 1px solid #666;
    opacity: 0; /* Start with opacity 0 */
    width: 92%;  /* Make sure it takes up full width of the container */
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.6s cubic-bezier(.16, 1, .32, 1);
    position: absolute;
    inset: auto 0% 0%;
}

nav {
  width: 100%;
  max-width: 240rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.25em;
  padding-right: 2.25em;
  display: block;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.logo{
  text-decoration: none;
  color: #fff;
  letter-spacing: .03em;
  font-size: 2.95rem;
  line-height: 1.2em;
  font-family: Neue Haas Grotesk-light;
}

.logo h1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo span{
    font-family: Migra-italic;
    font-size: 2.95rem;
}

.c-nav-wrap{
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-button{
  border: 1px solid white;
  cursor: pointer;
  border-radius: 20rem;
  flex: none;
  padding: 8px 16px;
  transition: color .8s cubic-bezier(.23,1,.32,1), background-color .8s cubic-bezier(.23,1,.32,);
  display: block;
}

.c-overhead {
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2em;
}

.c-nav_cta {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.c-btn {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: white;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 20rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
}

.c-btn.cc-nav-cta {
  border: 1px solid white;
  background-color: #0000;
  padding: 8px 16px;
  font-size: 14px;
  transition: color .8s cubic-bezier(.23,1,.32,1), background-color .8s cubic-bezier(.23,1,.32,1);
}

#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  /* Below the menu-panel and nav */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-panel {
  background-color: #0f1215;
  color: #ffffff;
  border: 1.2px solid #3a3a3a;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 520px;
  height: calc(100% - 20px);
  margin: 10px;
  padding: 24px;
  transition-property: all;
  transition-duration: .8ms;
  transition-timing-function: cubic-bezier(.165,.84,.44,1);
  display: flex;
  position: fixed;
  inset: 0 0 0 auto;
  overflow: auto;
  transform: translate(110%);
  z-index: 1001;
}


#menu-overlay.active {
  opacity: 1;
  visibility: visible;
  /* Make overlay visible */
}

.c-nav_top {
  margin-bottom: 16px;
}

.c-nav_close{
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: white;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: white;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: white;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: white;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  padding: 6px;
  transition-property: color,background-color;
  transition-duration: .4s,.4s;
  transition-timing-function: cubic-bezier(.23,1,.32,1),cubic-bezier(.23,1,.32,1);
  display: flex;
}

.close-svg {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.c-nav_list {
  flex-flow: column;
  flex: 1;
  width: 100%;
  display: flex;
}

.c-nav_list_group{
  margin-top: 16px;
  margin-bottom: 16px;
}

.c-nav_link {
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.c-nav-item_heading-wrap {
  position: relative;
  overflow: hidden;
}

.c-nav_link:hover .c-nav-heading_wrap {
  transform: translateY(-100%);
}

.c-nav-heading_wrap {
  transition: transform .5s;
}

.c-heading-7 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4em;
}

.c-nav-heading_wrap.cc-repeat {
  position: absolute;
}

.c-underline-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.c-underline {
  background-color: #fff3;
  flex: none;
  width: 100%;
  height: 1px;
  max-height: 1px;
  transition: transform .5s cubic-bezier(.165,.84,.44,1);
}

.c-underline.cc-into {
  background-color: #ffffff80;
}

.c-nav_link.w--current .c-underline {
  transform: translateX(calc(100% + 0.5rem));
}

.c-nav_link:hover .c-underline{
  transform: translateX(calc(100% + 0.5rem));
}

.c-nav_link .c-underline {
  transform: translateX(0%);
}

.c-nav_list_dropdown {
  margin-bottom: 12px;
}

.nav_link.c-nav_dropdown-trigger {
  cursor: pointer;
}

.c-nav-dropdown_cross-wrapper {
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  display: flex;
  position: relative;
}

.c-nav-dropdown_line {
  background-color: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
}

.c-nav_list_dropdown.cc-active .c-nav-dropdown_line.cc-rotate {
  transform: rotate(0deg);
}

.c-nav-dropdown_line.cc-rotate {
  transition: transform .5s;
  transform: rotate(90deg);
}

.c-nav_list_dropdown.cc-active .c-nav_dropdown-content {
  grid-template-rows: 1fr;
}

.c-nav_dropdown-content {
  display: grid;
  grid-template-rows: 0fr;
}

.c-nav_dropdown-content {
  transition: all .5s cubic-bezier(.165,.84,.44,1);
}

.c-nav_dropdown-content > div {
  overflow: hidden;
}

.c-nav_link.c-nav_dropdown-trigger {
  cursor: pointer;
}

.c-nav_solutions {
  flex-flow: column;
  margin-top: .75rem;
  display: flex;
}

.c-nav-solutions {
  flex-flow: column;
  margin-top: .75rem;
  display: flex;
}

.c-nav_link.cc-solutions {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px #000;
  display: flex;
}

.c-nav_link-preview {
  border-radius: 4px;
  flex: none;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.c-nav_link-preview-img {
  object-fit: cover;
  object-position: 50% 50%;
  height: 100%;
  transition: transform .5s;
}

.c-nav_link-text {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.c-text-4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.3em;
}

.c-text-4.cc-gray {
  color: #727a83;
}

.c-nav_list_group.cc-contact {
  margin-top: 16px;
  margin-bottom: 24px;
}

.c-nav_list_group.mini-links {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: auto;
  margin-bottom: 0;
  display: grid;
}

.c-mini-link_wrapper {
  color: #727a83;
  font-size: 16px;
  line-height: 1.1;
}

.c-mini-link_text-list {
  position: relative;
  overflow: hidden;
}

.c-mini-link_text-wrapper {
  transition: transform .4s;
  position: relative;
}

.c-mini-link_text-wrapper.cc-repeat {
  position: absolute;
}

.c-mini-link_wrapper:hover .c-mini-link_text-wrapper {
  transform: translateY(-100%);
}


@media screen and (max-width: 767px) {
  .c-nav-dropdown_cross-wrapper {
      width: 2rem;
      height: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .menu-panel {
    border-radius: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
}


#page1 {
    width: 100%;
    background-color: #040404;
    position: relative;
    padding-bottom: 1rem;
    padding-top: 25rem;
    color: #fff;
}

.section-top{
    width: 100%;
    max-width: 240rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.25em;
    padding-right: 2.25em;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.cc-hero{
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    width: 100%;
}


[balance] {
    text-wrap: balance;
}

.u-title{
    letter-spacing: .01em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 10rem;
    font-weight: 800;
    line-height: 1.04;
    font-family: Neue Haas Grotesk;
}

.u-title span{
    color: #5A5A5A;
}

.ui-text-right p{
    max-width: 90%;
    font-size: 3.525rem;
    line-height: 1.6;
    margin-top: 1em;
}

.ui-graphic{
    margin-top: 10rem;
    width: 100%;
    box-shadow: 0 20px 40px 0 #080808, 0 100px 140px 0 #171717;
    position: relative;
    object-fit: cover;
}
.ui-graphic img{
    width: 100%;
    height: auto;
    position: static;
    border: 1px solid #363636;
    border-radius: 6px;
}

.features-hero_bottom-gradient {
    z-index: 100;
    background-image: linear-gradient(180deg, #08080800 3%, #040404 82%);
    padding-top: 30%;
    position: absolute;
    inset: auto 0% 0%;
}

#page2 {
    width: 100%;
    background-color: #040404;
    position: relative;
    color: #fff;
}

.reel-wrapper{
    width: 100%;
    max-width: 240rem;
    padding-left: 2.25em;
    padding-right: 2.25em;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-inner{
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #1F1F1F;
    border-radius: 1rem;
}

.gsap-video {
    width: 100%;
}

.reel-play {
    z-index: 2;
    grid-row-gap: .8rem;
    flex-direction: column;
    flex: none;
    align-items: center;
    display: flex;
    position: absolute;
    cursor: pointer;
}

.reel-ico{
    z-index: 2;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 24rem;
    display: flex;
    position: relative;
}

[aspect="200/180"] {
    aspect-ratio: 200 / 180;
}

.reel-ico-border{
    z-index: 1;
    position: absolute;
    inset: 0%;
}

[data-fx="hover-border"] {
    opacity: 1;
    pointer-events: none;
    transition: opacity 1s cubic-bezier(.16,1,.32,1);
}

.reel-ico-target{
    z-index: 2;
    background-color: #fff3;
    border-radius: 50vw;
    flex: none;
    position: absolute;
    inset: 0%;
    transform: scale3d(.8, .8, 1)
}

[data-fx="hover-target"] {
    scale: 1.1;
    background-color: rgba(255, 255, 255, .2);
    pointer-events: none;
    transition: scale 1s cubic-bezier(.16,1,.32,1), background-color 1s cubic-bezier(.16,1,.32,1);
}

.c-reel-playbutton{
    z-index: 10;
    flex: none;
    width: 9rem;
    margin-left: .4rem;
    position: absolute;
}

.w-embed:before, .w-embed:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-embed svg{
    width: 100%;
    height: 100%;

}

.reel-text{
    color: #fff;
    margin-top: 1rem;
    text-transform: uppercase;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1;
    position: relative;
}

.reel {
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    height: 100rem;
    margin: 1px;
    display: flex;
    overflow: hidden;
}

.reel img {
    object-fit: cover;
    width: 100%; /* Ensure video fills parent */
    height: 100%; /* Ensure video fills parent */
}

.o-modal {
    z-index: 1600;
    background-color: #000000e6;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100dvh;
    display: none;
    position: fixed;
    inset: 0% auto auto 0%;
    overflow: hidden;
}

[data-fx="reel"] {
    clip-path: inset(80% 15% 20% 15% round 1.6rem);
    will-change: clip-path, opacity;
    pointer-events: none;
    display: flex;
    opacity: 0;
    transition: 2s cubic-bezier(.64,.32,0,1) clip-path, .8s opacity cubic-bezier(.16,1,.32,1);
}

[data-fx="reel"].is-active {
    clip-path: inset(0% 0% 0% 0% round 0);
    pointer-events: all;
    opacity: 1;
}


.o-modal-item{
    flex: none;
    width: 100%;
    height: 100%;
    background-color: black;
}

.entered-reel{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
    opacity: 1;
}

video.lazy {
    opacity: 1;
    transition: opacity .5s cubic-bezier(.39, .575, .565, 1);
    will-change: opacity;
}


#page3 {
    width: 100%;
    background-color: #040404;
    position: relative;
    padding-bottom: 8rem;
    padding-top: 8rem;
    color: #fff;
}

.structure{
    width: 100%;
    max-width: 240rem;
    padding-left: 2.25em;
    padding-right: 2.25em;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.str-head{
    width: 100%;
    display: grid;
    align-items: flex-start;
    grid-template: "Area-1 Area-1 Area-2" / 1fr;
    grid-auto-columns: 1fr;
}
.s-heading{
    grid-area: Area-1;
}

.str-text1{
    letter-spacing: .01em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15rem;
    font-family: Neue Haas Grotesk;
    font-weight: 600;
    line-height: 1.04;
}

.str-text-para{
    margin-top: 5rem;
    letter-spacing: .01em;
    margin-bottom: 0;
    font-size: 5.5rem;
    line-height: 1.04;
    max-width: 80%;
}

.str-cta{
    grid-area: Area-2;
    height: 100%;
    display: flex;
    align-items: end;
}

.right-cta{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.graphics-grid{
    width: 100%;
    margin-top: 20rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* This creates 6 equal-width columns */
}

.features-item-content{
    grid-column: span 3;
}

.features-text{
    letter-spacing: .01em;
    font-size: 4.313rem;
    font-weight: 600;
    line-height: 1.04;
    margin-bottom: 3rem;
}

.paragraph-1{
    max-width: 70%;
    font-size: 3rem;
    line-height: 1.6;
    flex: none;
}

.sticky-features {
    grid-column: span 3;
    height: 100%;
    clip-path: polygon(0 0%, 100% 0%, 100% 0%, 0 0%); /* Initially invisible */
    transition: clip-path 1.5s cubic-bezier(.16, 1, .3, 1); /* Smooth transition for clip-path */
    border-radius: 4px;
    display: block;
    overflow: hidden;
}

.sticky-features img {
    max-width: 100%;
    height: 100%;
    display: inline-block;
}


#page4 {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 10rem;
}

.ap-section{
    width: 100%;
    max-width: 240rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.25em;
    padding-right: 2.25em;
    display: block;
}

.ap-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);  /* 12 equal-width columns */
    grid-template-rows: auto;  /* Auto row sizing based on content */
  }
  

.grid-item{
    grid-column: span 4;
}

.c-heading-3.black{
    letter-spacing: -.03em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 7.456em;
    font-weight: 600;
    line-height: 1em;
    color: #000;
}

.c-acordion-right{
    grid-column: span 8;
}

.c-accordion{
    display: flex;
    position: relative;
}

.cc-half{
    width: 57px;
    padding-top: 2.3em;
}

.c-topichead{
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2em;
    color: #7542ff;
}

.c-accordion-dropdown{
    width: 100%;
    color: #000;
}

.c-accordion-dropdown-toggle{
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5em .75em 1.5em 0;
    display: flex;
}

.c-heading-6{
    letter-spacing: -.005em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.5em;
    font-weight: 500;
    line-height: 1.35em;
}

.c-plus-icon{
    flex: none;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    display: flex;
    position: relative;
}

.c-plus-icon-line.cc-vertical{
    position: absolute;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.c-plus-icon-line{
    background-color: #0f1215;
    width: 100%;
    height: .128em;
    transition: all .3s;
}

.c-accordion-dropdown:hover .c-plus-icon-line {
    background-color: #7542ff;
}

.c-accordion_dropdown-list{
    display: block;
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.c-accordion_dropdown-list.active {
    min-height: fit-content; /* Set a sufficiently large value to allow the content to expand */
}

.dropdown-list-inner{
    padding-bottom: 2em;
}

.c-text-1 {
    letter-spacing: -.01em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3.525rem;
    line-height: 1.4em;
}

.c-line.cc-dark {
    background-color: #0f1215;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
}

.c-line.cc-dark.cc-absolute-top {
    position: absolute;
    inset: 0% 0% auto;
    width: 0%;
    height: 1px;
}

#page6 {
    width: 100%;
    color: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 8em;
    padding-bottom: 8em;
}

.page-wrapper{
    width: 100%;
    max-width: 240rem;
    padding-left: 2.25em;
    padding-right: 2.25em;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    position: relative;
}

.top-head{
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* This creates 6 equal-width columns */
    padding-bottom: 3rem;
    position: relative;
}

.c-line.cc-dark.cc-absolute-bottom {
    position: absolute;
    inset: auto 0% 0% 0%;  /* auto for top, 0% for right, 0% for bottom, 0% for left */
    width: 0%;
    height: 1px;
}

.top-head h1{
    font-size: 15rem;
    font-weight: 600;
    grid-column: 3 / span 4; 
}

.c-ind-layout{
    margin-top: 6rem;
    display: grid;
    grid-template: "Area-1 Area-2 Area-2" / 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
}

.view-btn {
    margin-top: 5rem;
    grid-column-gap: 2rem;
    color: #000;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 36rem;
    padding-top: 3.1rem;
    padding-bottom: 3.1rem;
    display: flex;
    font-family: NeueHaas-DisplayRoman;
    position: relative; /* For absolute positioning of .ucase-txt */
    /* overflow: hidden; */
    scale: 1;
    transition: scale 1s cubic-bezier(.16, 1, .3, 1);
}

.view-btn:hover{
    scale: 1.1;
}

.target{
    background-color: #3043F3;
    border-radius: 100vw;
    position: absolute;
    inset: 0%;
    cursor: pointer;
}

.inner{
    perspective: 1500px;
    flex: none;
    position: relative;
    color: #000;
    pointer-events: none;
}

.inner.second{
    perspective: 1500px;
    flex: none;
    position: relative;
    color: #fff;
    pointer-events: none;
}


.ucase-txt{
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.1;
    display: inline-block !important;
}

.ucase-txt:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000;
}

.ucase-txt.second:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}

.icon-svg{
    aspect-ratio: 1 / 1;
    flex: none;
    width: 2rem;
    position: relative;
    pointer-events: none;
}

.icon-svg svg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.icon-svg:before, 
.icon-svg:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.icon-svg::after {
    clear: both;
}

.layout-para{
    grid-area: Area-2;
    max-width: 130rem;
    margin-left: auto;
    font-size: 3.5rem;
    line-height: 5rem;
}

.slider-list{
    margin-top: 10em;
    width: 100%;
    position: relative;
    height: auto;
}

.silder-item{
    color: #000;
    padding-top: 1.5rem;
    padding-bottom: 2.0625rem;
    transition: all .8s cubic-bezier(.86,0,.07,1);
    position: relative;
    overflow: hidden;
    transform-origin: top;
}

.over {
    opacity: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: opacity .8s cubic-bezier(.86,0,.07,1);
    display: block;
    position: absolute;
    inset: 0%;
}

/* Styles for the active class */
.over.cc-active {
    opacity: 1;
}

/* Hover styles */
.silder-item:hover .over {
    opacity: 1;
}

.silder-item:hover,
.silder-item.cc-active {
    color: #fff;
    padding: 3em 0;
}

.s-container{
    width: 100%;
    max-width: 240rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.25em;
    padding-right: 2.25em;
    display: block;
}

.c-tablet-flex{
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    align-content: center;
    align-items: stretch;
    width: 100%;
    text-decoration: none;
    display: grid;
    position: relative;
    transform: skew(0deg);
}

.c-project-title{
    flex-flow: column;
    justify-content: space-between;
    display: flex;
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: stretch start;
}

.c-heading-6{
    letter-spacing: -.005em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.45em;
    font-weight: 500;
    line-height: 1.35em;
}

.dyn-list{
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2em;
}

.c-section_details{
    grid-area: 1 / 9 / 2 / 13;
}

.img-loader{
    grid-area: 1 / 4 / 2 / 9;
    place-self: center;
    height: auto;
    width: 90%;
    transition: all .8s cubic-bezier(.86,0,.07,1);
    /* display: none; */
}

.c-project_line{
    background-color: #727a83;
    width: 100%;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    inset: auto 0% 0%;
}

#page7{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.project-cta { 
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url(Assets/footerbackground.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.scta{
    width: 100%;
    max-width: 240rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.25em;
    padding-right: 2.25em;
}

.cta-flex{
    height: 100%;
    padding-top: 2em;
    padding-bottom: 2em;
}

.cc-footer-cta{
    grid-column-gap: 5px;
    grid-row-gap: 0em;
    place-content: end space-between;
    align-items: flex-start;
    height: 100%;
    text-decoration: none;
    position: relative;
    display: flex;
    align-content: center;
}

.c-services-para{
    display: flex;
    width: 70%;
    /* background-color: #46289a; */
    background: rgba(70, 40, 154, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 8px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100%;
    padding: 2em 1.95em;
    text-decoration: none;
    transition: all .35s;
}

.cta-block{
    width: 100%;
    position: relative;
}

.c-services-header{
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
}

.c-services-header h5{
    text-transform: uppercase;
}

.c-service-arrow{
    transition: transform .5s cubic-bezier(.86,0,.07,1);
}

.c-heading-1{
    font-size: 2.267em;
    font-weight: bold;
    white-space: normal;
    overflow: hidden;
    max-width: 90rem;
    color: #F9E400;
    flex: none;
}

.get-in-message{
    /* background-color: #7542ff; */
    background: rgba(117, 66, 255, 0.5); /* Semi-transparent purple */
    backdrop-filter: blur(10px); /* Frosted glass blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 8px;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    width: 30%;
    height: 100%;
    padding: 2em 1.95em;
    text-decoration: none;
    transition: all .35s;
    display: flex;
    position: relative;
    overflow: hidden;
}

.get-in-message:hover{
    background-color: #fff;
}

.get-in-message:hover p{
    color: #000;
}

.get-in-message:hover .get-svg svg path {
    fill: #000; /* Changes the color of the SVG path when hovering */
}

.get-svg{
    display: inline-flex;
    height: 20em;
}

.cc2-cta-block{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    font-size: 2.234rem;
    font-weight: 400;
    line-height: 1.3em;
}
.cc2-cta-block p{
    text-align: right;
    max-width: 19em;
}

#page8{
    width: 100%;
    background-color: #040404;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10em;
    padding-bottom: 8em;
}

.industry-section{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 240rem;
    padding-left: 2.25em;
    padding-right: 2.25em;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    position: relative;
}

.industry-section h1{
    font-size: 3.456rem;
    font-weight: 400;
    text-align: center;  
}

.industry-block{
    width: 100%;
}

.intro-block{
    width: 100%;
    display: grid;
    justify-content: center;
    text-align: center;
}

.indus-intro{
    margin-top: 4rem;
    max-width: 140rem;
    font-size: 4.4rem;
    font-weight: 400;
    line-height: 1.2em; 
}

.grid-industry{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: auto auto; 
    gap: 16px; 
    flex-wrap: wrap;
    width: 100%;
    max-width: 240rem;
    margin-top: 6em;
    padding-left: 2.25em;
    padding-right: 2.25em;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    position: relative;
}

.industry-box{ 
    padding: 3rem 2.95rem;
    background-color: #1F1F1F;
    color: #fff;
    cursor: pointer;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    border-radius: .8rem;
}

.box-header{
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 9.6rem;
    display: flex;
    font-size: 2em;
}

.box-service-arrow{
    transition: transform .5s cubic-bezier(.86,0,.07,1);
}

.industry-box p{
    letter-spacing: -.005em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.234em;
    font-weight: 500;
    line-height: 1.35em; 
}

.c-industries_btn.view-btn--pro{
    color: #fff;
    border-radius: .8rem;
    flex-flow: row;
    flex: none;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding: 2em 1.95em;
    display: flex;
    overflow: hidden;
    position: relative;
}

.target.target--pro {
    background-color: #3043F3;
    position: absolute;
    inset: 0%;
    border-radius: 0;
}

.c-industries__bttn__inner{
    position: relative;
    pointer-events: none;
}

.inner-text{
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    display: inline-block !important;
}

.inner-text:nth-child(2){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}

[aspect='1/1'] {
    aspect-ratio: 1 / 1;
}

.c-industries__bttn__ico {
    aspect-ratio: 1 / 1;
    flex: none;
    width: 1.2rem;
    margin-left: auto;
    position: relative;
}

.c-industries__bttn__ico svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}


#page9{
    width: 100%;
    background-color: #040404;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.design-wrapper{
    width: 100%;
    max-width: 240rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.25em;
    padding-right: 2.25em;
    padding-top: 5rem;
    padding-bottom: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.c-grid-cc12{
    width: 100%;
    flex-flow: row;
    display: flex;
    margin-top: 10rem;
    position: relative;
}


.c-tag_line{
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    flex-direction: column;
    margin-bottom: .75em;
    display: flex;
    position: relative;
}

.c-line-2.cc-dark {
    background-color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    width: 0%;
    height: 1px;
}

.c-tags.cc-primary {
    grid-row-gap: 0px;
    flex-wrap: wrap;
}

.c-tags {
    grid-column-gap: .7em;
    grid-row-gap: .7em;
    white-space: nowrap;
    word-spacing: .7em;
    flex-flow: row;
    display: flex;
}



.design-title-wrapper{
    gap: 20px;
    white-space: nowrap;
    flex-flow: row;
    display: flex;
    margin-bottom: 32px;
}

.c-heading-2.design{
    letter-spacing: -.03em;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15rem;
    font-weight: 500;
    line-height: .9em;
    text-transform: uppercase;
}

.des-icon{
    width: 12rem;
}

.design-graphic{
    margin-top: 5em;
    width: 100%;
    max-width: 210rem;
    height: 100%;
}

.graphic-1{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 15em;
}


.mask-bg {
    display: inline-block;
}

.bloom {
    font-size: 8rem; /* Adjust size as needed */
    font-weight: bold;
    color: transparent; /* Make the text itself transparent */
    background-image: url('Assets/mask6.png'); /* Replace with your image */
    background-size: contain;
    background-clip: text; /* Clip background to text shape */
    -webkit-background-clip: text; /* Webkit support */
    filter: blur(80px) saturate(1.5);
    position: absolute; /* Overlay on normal text */
    z-index: 1; /* Behind the normal text */
    background-position: center;
    font-family: Helvetica-bold;
    letter-spacing: -0.04em;
}

.normal-text {
    font-size: 8rem; 
    font-weight: bold;
    color: transparent; 
    background-image: url('Assets/mask6.png'); 
    background-size: contain;
    background-clip: text; 
    -webkit-background-clip: text; 
    z-index: 2; 
    position: relative; 
    background-position: 10% 100%;
    font-family: Helvetica-bold;
    letter-spacing: -0.04em;
    display: inline-block;
    height: 100%;
}

.img-deg{
    margin-top: 30px;
    border-radius: 4px;
    box-shadow: 0 0 50px 10px rgba(255, 255, 255, 0.2);
    border: 1px solid #5A5A5A;
}


.img-deg img{
    /* aspect-ratio: 3 / 1.5; */
    overflow-clip-margin: content-box;
}


#page10{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(57deg, rgb(8, 8, 8) 35%, rgba(58,64,162,1) 65%, rgba(145,159,218,1) 100%);
}

.ui-process-wrapper{
    width: 100%;
    max-width: 240rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.25em;
    padding-right: 2.25em;
    padding-top: 20rem;
    padding-bottom: 10rem;
}

.ui-header{
    display: grid;
    flex-direction: column;
    grid-template-columns: repeat(6, 1fr);
    padding-bottom: 2em;
    position: relative;
}

.UI_intro{
    grid-column: span 6;
}

.UI_intro h1 {
    font-size: 15.565rem;
    font-weight: 600;
    line-height: 1;
    font-family: Neue Haas Grotesk;
}

.line-layout-process{
    display: grid;
    flex-direction: column;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
    margin-top: 8em;
}


.process_line{
    display: flex;
    flex-direction: column;
    grid-column:  span 6;
}

.infos-text{
    width: 40%;
    margin-bottom: 16rem;
}

.infos-text p{
    font-size: 2.4rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.reveal-type{
    font-size: clamp(1rem, 5vw, 8.565rem);
    font-weight: 600;
    line-height: 1;
    font-family: Neue Haas Grotesk;
}

.fill-text_scroll{
    margin-bottom: 15rem;
}


.c-ind-flow_item {
    grid-column-gap: 3rem;
    padding-left: 3rem;
    display: flex;
    align-items: flex-start;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.c-ind-flow_item.is-gap {
    margin-top: 0;
    padding-top: 13rem;
}

.c-ind-flow_line{
    border-left: 2px solid #4f5bff;
    position: absolute;
    inset: 0% auto 0% 0%;
    height: 0%;
}

.c-ind-flow_label{
    width: 40%;
    font-size: 6.8rem;
    font-weight: 500;
    line-height: 1.20833;
    margin-top: -.8rem;
}

.c-ind-flow.w-richtext {
    flex: none;
    width: 50%;
    font-size: 3.2rem;
    line-height: 4rem;
}

#page11 {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #000000;
}

.project-cta { 
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url(Assets/footerbackground1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.cta-flex{
    height: 100%;
    padding-top: 2em;
    padding-bottom: 2em;
}

.cc-footer-cta{
    grid-column-gap: 3px;
    grid-row-gap: 0em;
    place-content: end space-between;
    align-items: flex-start;
    height: 100%;
    text-decoration: none;
    position: relative;
    display: flex;
    align-content: center;
}

.c-services{
    display: flex;
    width: 70%;
    /* background-color: #46289a; */
    background: rgba(70, 40, 154, 0.5); /* Semi-transparent purple */
    backdrop-filter: blur(10px); /* Apply blur for the glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    color: #fff;
    border-radius: 8px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100%;
    padding: 2em 1.95em;
    text-decoration: none;
    transition: all .35s;
}

.c-services:hover{
    background-color: #fff;
    color: #000;
}

.cta-block{
    width: 100%;
    position: relative;
}

.c-services-header{
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2.5em;
    display: flex;
}

.c-services-header h5{
    text-transform: uppercase;
}

.c-service-arrow{
    transition: transform .5s cubic-bezier(.86,0,.07,1);
}

.c-heading-2{
    font-size: 7em;
    font-weight: bold;
    white-space: nowrap; 
    overflow: hidden;
}

.get-in-message{
    /* background-color: #7542ff; */
    background: rgba(117, 66, 255, 0.5); /* Semi-transparent purple */
    backdrop-filter: blur(10px); /* Frosted glass blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 8px;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    width: 30%;
    height: 100%;
    padding: 2em 1.95em;
    text-decoration: none;
    transition: all .35s;
    display: flex;
    position: relative;
    overflow: hidden;
}

.get-in-message:hover{
    background-color: #fff;
}

.get-in-message:hover p{
    color: #000;
}

.get-in-message:hover .get-svg svg path {
    fill: #000; /* Changes the color of the SVG path when hovering */
}

.get-svg{
    display: inline-flex;
    height: 20em;
}


.cc2-cta-block p{
    text-align: right;
    max-width: 19em;
}

.cta-faq-wrapper{
    width: 100%;
    max-width: 240rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.25em;
    padding-right: 2.25em;
    padding-top: 12rem;
    padding-bottom: 8rem;
}

.faq-content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.faq-content-header{
    position: relative;
    overflow: hidden;
}

.faq-content-header h1{
    font-size: 15rem;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 5vw; 
}

.faq-content .faq {
    border-top: 1px solid #fdfdfd48;
    padding-top: 4rem;
    padding-bottom: 4rem;
    cursor: pointer;
    width: 100%;
}

.faq-content .faq:hover{
    border-top: 1px solid #fff;
    transition: 0.2s ease-in;
}
.faq-content .faq.active{
    border-top: 1px solid #fff;
}

.faq .question{
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.faq .question h3{
    width: 100%;
    font-size: 3rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq .question span{
    font-size: 2rem;
    margin-right: 2rem;
    color: #979797;
}

.faq .answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.faq .answer span{
    font-weight: 600;
}

.faq .answer p{
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 2.5rem;
    margin-left: 3.5rem;
}

.faq.active .answer{
    max-height: fit-content;

}

.faq.active svg{
    transform: rotate(180deg);
}


.faq .question svg{
    transition: transform 0.5 ease-in;
}

#page12{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #000000;
}

.o-container-wrapper {
  width: 100%;
  max-width: 240rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.25em;
  padding-right: 2.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.o-container {
  width: 100%;
  position: relative;
}

.c-footer__tline {
  border-top: 1px solid #3d3d3d;
  transform-origin: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

[data-call="xline-fx"] {
  transform-origin: 0 50%;
}

.c-footer__head__inner {
  grid-row-gap: 4.7rem;
  flex-direction: column;
  flex: none;
  width: 74rem;
  margin-top: 6rem;
  margin-left: auto;
  display: flex;
}

.footer__inner-block {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.intxt {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: #666;
}

.latest-deck-block {
  border: 1px solid #fff;
  border-radius: 100vw;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 12.9rem;
  height: 3.6rem;
  padding: 1.4rem .4rem 1.4rem;
  line-height: 1.1;
  display: flex;
  color: #fff;
}

.latest-deck-block.u-gutter {
  width: auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.o-container.c-footer-pane {
  flex-flow: wrap;
  margin-top: 10.1rem;
  margin-bottom: 9rem;
  display: flex;
  flex-wrap: wrap;
}

.c-footer-nav {
  display: flex;
}

.c-footer__sum {
  grid-row-gap: 1.7rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 38rem;
  padding-bottom: .2rem;
  display: flex;
}

.c-footer__sum.u-indstr {
  grid-row-gap: 2rem;
}

.c-footer__link {
  letter-spacing: .01em;
  white-space: nowrap;
  display: block;
  color: #fff;
}

.c-footer__link:hover,
.c-footer__sum__link:hover,
.c-socials__link:hover {
  color: #4644f3;
}



.c-footer__sum__link {
  text-transform: uppercase;
  flex: none;
  font-weight: 600;
  line-height: 1.1;
  display: block;
  color: #fff;
}

.c-footer__sum__link.u-gutter {
  margin-top: auto;
}

.c-footer__pane__inner {
  flex: none;
  width: 74rem;
}

.c-footer__block {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.c-socials {
  grid-column-gap: .8rem;
  grid-row-gap: 1.2rem;
  flex-wrap: wrap;
  width: 62rem;
  display: flex;
}

.intxt.c-socials__link{
  border: 1px solid #fff;
  color: #fff;
  border-radius: 100vw;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 17.9rem;
  height: 3.6rem;
  padding: 1rem .4rem .9rem;
  line-height: 1.1;
  display: flex;
}

.c-footer__pane__btm{
  position: relative;
  flex: none;
  width: 100%;
  margin-top: 9rem;
  padding-top: 6rem;
  display: flex;

}

.c-footer__btm__dd {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  /* grid-column-gap: 26.2rem; */
  grid-row-gap: 2.2rem;
  flex-wrap: wrap;
  width: 100%;
    
}

.s-industries__list.c-footer__btm__dd__inner {
  display: flex;
}

.s-industries__item{
  width: 20rem;
  display: flex;
}

.industries__link {
  letter-spacing: .01em;
  white-space: nowrap;
  display: block;
  color: #fff;
}

.c-footer__sum.indus{
  width: calc(33.33%); /* Three items per row */
  flex: none;
}

.c-footer__sum.case_std{
  width: 74rem;
  flex: none;
}

.w-embed svg {
  width: 100%;
  height: 1.9rem;
  position: relative;
  object-fit: cover;
}

.fixed-footer{
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #000000;
  overflow: hidden;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  border-top: 1px solid #fff;
}

.cc-showreel{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.cc-showreel img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.footer-cc-show{
  width: 100%;
  height: 600px;
  padding-top: 3em;
  padding-bottom: 3em;
}

.footer-container{
  width: 100%;
  max-width: 240rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.25em;
  padding-right: 2.25em;
}

.footer-flex{
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.cc-footer-content{
  grid-column-gap: 3px;
  grid-row-gap: 0em;
  place-content: end space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
  position: relative;
}

.footer-service{
  background-color: #282a9a;
  color: #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 30%;
  min-height: 100%;
  padding: 2em 1.95em;
  text-decoration: none;
  transition: all .5s cubic-bezier(.86,0,.07,1);
  display: flex
}

.footer-service:hover{
  background-color: #fff;
  color: #000;
}

.footer-cta-block{
  width: 100%;
  position: relative;
}

.block-header{
  grid-column-gap: 1em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5em;
  display: flex;
  text-transform: uppercase;
}

.footer-cta-arrow{
  transition: transform .5s cubic-bezier(.86,0,.07,1);
}

.footer-service:hover .footer-cta-arrow{
  transform: translateX(-0.5rem);
}

.block-title{
  max-width: 19.234em;
  transition: transform .5s cubic-bezier(.86,0,.07,1);
}

.title-heading-6{
  letter-spacing: -.005em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 500;
  line-height: 1.35em;
}

[balance] {
  text-wrap: balance;
}

.footer-cc-block-2{
  max-width: 21em;
}

.c-text-4{
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.123rem;
  font-weight: 400;
  line-height: 1.3em;
}

.c-get-in-touch{
  background-color: #1445c4;
  color: #fff;
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  width: 70%;
  height: 100%;
  padding: 2em 1.95em;
  text-decoration: none;
  transition: all .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.c-get-in-touch:hover .footer-cta-arrow{
  transform: translateX(-0.5rem);
}

.c-get-in-touch:hover{
  background-color: #fff;
  color: #000;
}

.footer-final-cta{
  width: 100%;
  position: relative;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.button-arrow-wrap{
  justify-content: flex-end;
  width: 18px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-embed-left{
  position: absolute;
  inset: 0% auto 0% 0%;
  transform: translateX(-100%);
  transition: transform 0.75s cubic-bezier(.16,1,.3,1);
}

.button-embed{
  transform: translateX(0);
  transition: transform 0.75s cubic-bezier(.16,1,.3,1);
  transition-delay: 0.1s;
}

.c-button:hover .button-embed-left {
  transform: translateX(0%);
  transition-delay: 0.2s;
}

.c-button:hover .button-embed {
  transform: translateX(100%);
}

.w-embed:before, .w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.c-line-overflow{
  width: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}
.c-footer-title{
  margin-bottom: 16px;
}
.c-heading-3{
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 7.535em;
  font-weight: 500;
  line-height: 1em;
}


.c-sub-para{
  margin-top: 2em;
  font-size: 1.545em;
  font-weight: 500;
  line-height: 1.5em;
}

.c-footer-cta{
  min-width: 180px;
}

.contact-cta{
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.cta-button-text-wrap{
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
  position: relative;
  overflow: hidden;
}

.cta-button-text-wrap::after {
  content: attr(data-text); 
  display: block;
  width: 100%;
  position: absolute; 
  bottom: 0; 
  transform: translateY(100%); 
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s ease-out; /* Smooth transitions */
  pointer-events: none; 
  letter-spacing: -.01em;
  font-size: 2.425rem;
  line-height: 1.4em;
}

.cta-text-1{
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.425rem;
  line-height: 1.4em;
  transform: translateX(0);
  transition: transform 0.75s cubic-bezier(.16,1,.3,1);
  transition-delay: 0.1s;
  position: relative;
}

.button-arrow-wrap{
  justify-content: flex-end;
  width: 18px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-embed-left{
  position: absolute;
  inset: 0% auto 0% 0%;
  transform: translateX(-100%);
  transition: transform 0.75s cubic-bezier(.16,1,.3,1);
}

.button-embed{
  transform: translateX(0);
  transition: transform 0.75s cubic-bezier(.16,1,.3,1);
  transition-delay: 0.1s;
}

.c-button:hover .button-embed-left {
  transform: translateX(0%);
  transition-delay: 0.2s;
}

.c-button:hover .button-embed {
  transform: translateX(100%);
}

.w-embed:before, .w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.c-line-overflow{
  width: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.c-button-line-left{
  transform: translateX(-100%);
  transition: transform 0.75s cubic-bezier(.16,1,.3,1);
  justify-content: center;
  align-items: center;
  height: 1px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.c-button-line{
  transform: translateX(0);
  height: 1px;
  transition: transform 0.75s cubic-bezier(.16,1,.3,1);
  transition-delay: 0.1s;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.c-button:hover .c-button-line-left {
  transform: translateX(0%);
  transition-delay: 0.2s;
}

.c-button:hover .c-button-line {
  transform: translateX(100%);
}

.contact-cta:hover .cta-button-text-wrap::after {
  transform: translateY(0); 
  opacity: 1; 
  transition-delay: 0.1s;
} 

.contact-cta:hover .cta-text-1 {
  transform: translateY(-100%);
}

.contact-cta:hover .button-embed-left {
  transform: translateX(0%);
  transition-delay: 0.2s;
}

.contact-cta:hover .button-embed {
  transform: translateX(100%);
}

.contact-cta:hover .c-button-line-left {
  transform: translateX(0%);
  transition-delay: 0.2s;
}

.contact-cta:hover .c-button-line {
  transform: translateX(100%);
}

.footer-links{
  padding-top: 2.25em;
  padding-bottom: 0;
  position: relative;
}

.footer-legal-wrapper{
  grid-column-gap: 2.5em;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-legal-wrapper-left{
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.c-text-6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.795rem;
  font-weight: 400;
  line-height: 1.3;
  transition: opacity .4s;
}

.c-text-6.cc-link {
  color: #fff;
  text-decoration: none;
  transition: all .5s;
}



@media screen and (max-width: 767px) {
  .c-footer__btm__dd {
    width: 17rem
  }

}

/* Mobile & Tablet (<= 991px) */
@media screen and (max-width: 991px) {
  .intxt {
    font-size: 1.4rem;
  }

  /* .c-footer__pane__inner {
    order: 1;
    width: 100%;
    margin-left: 0;
  } */
  .c-socials {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
  }
  .c-footer__btm__dd {
    width: 50rem;
  }
  .s-industries__list.c-footer__btm__dd__inner {
    flex-direction: column;
  }
  .c-nav-dropdown_cross-wrapper{
    width: 2rem;
    height: 2rem;
  }
}

/* Desktop (>= 992px) */
@media (min-width: 992px) {
  .o-container.c-footer-pane {
    grid-row-gap: 8.4rem;
    flex-flow: column wrap;
    margin-top: 8.4rem;
  }

  .c-footer-nav {
    justify-content: space-between;
    /* grid-column-gap: 26.2rem; */
    grid-row-gap: 8.8rem;
    flex-wrap: wrap;
    width: 100%;
  }

  .c-footer__sum {
    width: 20rem;
  }

  /* .c-footer__pane__inner {
    order: 1;
    width: 100%;
    margin-left: 0;
  } */
  .c-socials {
    grid-column-gap: 0;
    grid-row-gap: .5rem;
  }
  .s-industries__list.c-footer__btm__dd__inner{
    /* grid-column-gap: 26.2rem; */
    grid-row-gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
  }
}


@media (min-width: 1900px) {
    :root {
    font-size: .390625vw;
    }
    .w-embed svg{
        height: 100%;
    }
}
@media (max-width: 1899px) and (min-width: 992px) {
    :root {
    font-size: .5208333333333333vw;
    }
    nav{
        max-width: 240rem;
        padding: 0;
    }
    .w-embed svg{
        height: 100%;
    }
    .c-heading-3.black{
        font-size: 11rem;
    }
}
@media (max-width: 991px) and (min-width: 599px) {
    :root {
        font-size: 1.1848341232227488vw;
    }
    .c-footer__btm__dd {
      width: 50rem;
    }
    .c-navbar{
        padding: 8px 1.25em;
    }
    nav{
        max-width: 240rem;
        padding: 0;
    }
    .c-nav-cta{
        display: none;
    }
    .logo{
        font-size: 1.8rem;
    }
    .logo span{
        font-size: 1.8rem;
        flex: none;
    }
    .menu-button{
        padding: 6px 16px;
    }
    .c-heading-7{
        font-size: 1.8rem;
    }
    .c-overhead{
        font-size: 1.5rem;
        line-height: 1.5em;
    }
    .cc-hero{
        display: flex;
        flex-direction: column;
    }
    .u-title{
        font-size: 5rem;
    }
    .ui-text-right p {
        font-size: 2rem;
    }
    .ui-graphic{
        margin-top: 5rem;
    }
    .reel-inner{
        padding: 0.5rem;
    }
    .reel{
        height: 55rem;
    }
    .reel-ico{
        width: 15rem;
    }
    .c-reel-playbutton{
        width: 5rem;
    }
    .w-embed svg{
        height: 100%;
    }
    .reel-text{
        font-size: 1.2rem;
    }
    .str-head{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .str-text1{
        font-size: 7rem;
    }
    .str-text-para {
        max-width: 100%;
        font-size: 2.5rem;
    }
    .c-heading-3.black{
        font-size: 5rem;
    }
    .c-heading-6{
        font-size: 1.45em;
    }
    .features-text{
        font-size: 3.313rem;
    }
    .graphics-grid{
        margin-top: 10rem;
        display: flex;
        flex-direction: column;
    }
    .sticky-features{
        padding-top: 2rem;
        display: flex;
        width: 100%;
    }
    .paragraph-1{
        max-width: 100%;
        font-size: 2rem;
    }
    .ap-grid{
        display: flex;
        flex-direction: column;
    }
    .c-acordion-right{
        margin-top: 3rem;
    }
    .c-text-1 {
        font-size: 2.125rem;
    }
    .top-head h1 {
        grid-column: span 6;
        font-size: 9rem;
    }
    .c-ind-layout{
        display: grid;
        grid-template: 
            "Area-1"
            "Area-2"
            "Area-3";  /* Define the rows like this */
        grid-auto-columns: 1fr; 
    }
    #page6 {
        padding-top: 2em;
    }
    .view-btn{
        width: 100%;
    } 
    .ucase-txt{
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .layout-para{
        margin-top: 2rem;
        max-width: 100%;
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
    .c-tablet-flex {
        display: flex;
        flex-direction: column;
    }
    .c-project-title {
        gap: 3rem;
    }
    .dyn-list {
        font-size: 1.5rem;
    }
    .img-loader{
        width: 100%;
    }
    .cc-footer-cta{
        display: flex;
        flex-direction: column;
        grid-row-gap: 0.5em;
    }
    .c-services{
        width: 100%;
        padding: 1em .95em;
    }
    .c-services-para{
        width: 100%;
        gap: 5rem;
    }
    .project-cta{
        height: auto;
    }
    .c-heading-2 {
        font-size: 8rem;
    }
    .c-heading-1{
        font-size: 2.2rem;
    }
    .get-in-message {
        width: 100%;
        padding: 1em .95em;
    }
    .get-svg {
        height: 10rem;
    }
    .cc2-cta-block{
        font-size: 1.534rem;
    }
    .industry-section h1 {
        font-size: 2rem;
    }
    .indus-intro{
        font-size: 2.4rem;
    }
    .grid-industry{
        grid-template-columns: repeat(1, 1fr);
        padding-left: 0em;
        padding-right: 0em;
    }
    .industry-box p{
        font-size: 1.834rem;
    }
    .c-grid-cc12{
        margin-top: 3rem;
    }
    .design-header{
        width: 100%;
    }
    .c-heading-2.design {
        font-size: 8rem;
    }
    .des-icon {
        width: 8rem;
    }
    .bloom{
        font-size: 4rem;
    }
    .normal-text {
        font-size: 4rem;
    }
    .graphic-1{
        margin-bottom: 5em;
    }
    .UI_intro h1{
        font-size: 5.565rem;
    }
    .infos-text {
        width: 100%;
        margin-bottom: 6rem;
    }
    .reveal-type{
        font-size: clamp(6rem, 5vw, 8.565rem);
    }
    .c-ind-flow_item{
        padding-left: 2rem;
        flex-direction: column;
        gap: 2rem;
    }
    .c-ind-flow_label{
        width: 100%;
        font-size: 2.8rem;
    }
    .c-ind-flow.w-richtext{
        width: 100%;
        font-size: 1.6rem;
        line-height: 2.5rem;
    }
    .faq-content-header h1{
        font-size: 8rem;
    }
    .faq .question h3{
        font-size: 2rem;
    }
    .faq .question svg{
        height: 2rem;
    }
    .faq .answer p {
        font-size: 1.9rem;
    }
    .o-container.c-footer-pane{
        flex-direction: column;
    }
    .c-footer-nav{
        width: 100%;
        flex-direction: column;
        gap: 3rem;
    }
    .s-industries__list.c-footer__btm__dd__inner{
        gap: 2rem;
    }
    .c-footer__pane__inner{
        width: 100%;
    }
    .c-socials {
        width: 100%;
    }
    .c-footer__sum.case_std{
        width: fit-content;
    }
    .footer-cc-show{
        height: auto;
    }
    .cc-footer-content{
        flex-direction: column;
        grid-row-gap: .2em;
    }
    .footer-service{
        width: 100%;
    }
    .c-footer-cta {
        min-width: 220px;
    }
    .footer-cc-block-2{
        margin-top: 2rem;
    }
    .c-text-4{
        font-size: 1.3rem;
    }
    .c-get-in-touch{
        width: 100%;
    }
    .title-heading-6{
        font-size: 1.5em;
    }
    .footer-final-cta{
        margin-top: 2rem;
        align-items: flex-end;
    }
    .c-heading-3{
        font-size: 6.5rem;
    }
    .footer-legal-wrapper{
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal-wrapper-left{
        flex-direction: column;
        align-items: flex-start;
        grid-row-gap: 1em;
    }
}

@media screen and (max-width: 767px) {
    .c-footer__btm__dd {
      width: 17rem
    }
    .c-navbar{
        padding: 8px 1.25em;
    }
    nav{
        max-width: 240rem;
        padding: 0;
    }
    .c-nav-cta{
        display: none;
    }
    .logo{
        font-size: 1.8rem;
    }
    .logo span{
        font-size: 1.8rem;
        flex: none;
    }
    .menu-button{
        padding: 6px 16px;
    }
    .c-heading-7{
        font-size: 2.2rem;
    }
    .c-overhead{
        font-size: 1.5rem;
        line-height: 1.5em;
    }
    .cc-hero{
        display: flex;
        flex-direction: column;
    }
    .u-title{
        font-size: 5rem;
    }
    .ui-text-right p {
        font-size: 2rem;
    }
    .ui-graphic{
        margin-top: 5rem;
    }
    .reel-inner{
        padding: 0.5rem;
    }
    .reel{
        height: 55rem;
    }
    .reel-ico{
        width: 15rem;
    }
    .c-reel-playbutton{
        width: 5rem;
    }
    .w-embed svg{
        height: 100%;
    }
    .reel-text{
        font-size: 1.2rem;
    }
    .str-head{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .str-text1{
        font-size: 7rem;
    }
    .str-text-para {
        max-width: 100%;
        font-size: 2.5rem;
    }
    .c-heading-3.black{
        font-size: 5rem;
    }
    .c-heading-6{
        font-size: 1.45em;
    }
    .features-text{
        font-size: 3.313rem;
    }
    .graphics-grid{
        margin-top: 10rem;
        display: flex;
        flex-direction: column;
    }
    .sticky-features{
        padding-top: 2rem;
        display: flex;
        width: 100%;
    }
    .paragraph-1{
        max-width: 100%;
        font-size: 2rem;
    }
    .ap-grid{
        display: flex;
        flex-direction: column;
    }
    .c-acordion-right{
        margin-top: 3rem;
    }
    .c-text-1 {
        font-size: 2.125rem;
    }
    .top-head h1 {
        grid-column: span 6;
        font-size: 9rem;
    }
    .c-ind-layout{
        display: grid;
        grid-template: 
            "Area-1"
            "Area-2"
            "Area-3";  /* Define the rows like this */
        grid-auto-columns: 1fr; 
    }
    #page6 {
        padding-top: 2em;
    }
    .view-btn{
        width: 100%;
    } 
    .ucase-txt{
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .layout-para{
        margin-top: 2rem;
        max-width: 100%;
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
    .c-tablet-flex {
        display: flex;
        flex-direction: column;
    }
    .c-project-title {
        gap: 3rem;
    }
    .dyn-list {
        font-size: 1.5rem;
    }
    .img-loader{
        width: 100%;
    }
    .cc-footer-cta{
        display: flex;
        flex-direction: column;
        grid-row-gap: 0.5em;
    }
    .c-services{
        width: 100%;
        padding: 1em .95em;
    }
    .c-services-para{
        width: 100%;
        gap: 5rem;
    }
    .project-cta{
        height: auto;
    }
    .c-heading-2 {
        font-size: 8rem;
    }
    .c-heading-1{
        font-size: 2.2rem;
    }
    .get-in-message {
        width: 100%;
        padding: 1em .95em;
    }
    .get-svg {
        height: 10rem;
    }
    .cc2-cta-block{
        font-size: 1.534rem;
    }
    .industry-section h1 {
        font-size: 2rem;
    }
    .indus-intro{
        font-size: 2.4rem;
    }
    .grid-industry{
        grid-template-columns: repeat(1, 1fr);
        padding-left: 0em;
        padding-right: 0em;
    }
    .industry-box p{
        font-size: 1.834rem;
    }
    .c-grid-cc12{
        margin-top: 3rem;
    }
    .design-header{
        width: 100%;
    }
    .c-heading-2.design {
        font-size: 8rem;
    }
    .des-icon {
        width: 8rem;
    }
    .bloom{
        font-size: 4rem;
    }
    .normal-text {
        font-size: 4rem;
    }
    .graphic-1{
        margin-bottom: 5em;
    }
    .UI_intro h1{
        font-size: 5.565rem;
    }
    .infos-text {
        width: 100%;
        margin-bottom: 6rem;
    }
    .reveal-type{
        font-size: clamp(6rem, 5vw, 8.565rem);
    }
    .c-ind-flow_item{
        padding-left: 2rem;
        flex-direction: column;
        gap: 2rem;
    }
    .c-ind-flow_label{
        width: 100%;
        font-size: 2.8rem;
    }
    .c-ind-flow.w-richtext{
        width: 100%;
        font-size: 1.6rem;
        line-height: 2.5rem;
    }
    .faq-content-header h1{
        font-size: 8rem;
    }
    .faq .question h3{
        font-size: 2rem;
    }
    .faq .question svg{
        height: 2rem;
    }
    .faq .answer p {
        font-size: 1.9rem;
    }
    .o-container.c-footer-pane{
        flex-direction: column;
    }
    .c-footer-nav{
        width: 100%;
        flex-direction: column;
        gap: 3rem;
    }
    .s-industries__list.c-footer__btm__dd__inner{
        gap: 2rem;
    }
    .c-footer__pane__inner{
        width: 100%;
    }
    .c-socials {
        width: 100%;
    }
    .c-footer__sum.case_std{
        width: fit-content;
    }
    .footer-cc-show{
        height: auto;
    }
    .cc-footer-content{
        flex-direction: column;
        grid-row-gap: .2em;
    }
    .footer-service{
        width: 100%;
    }
    .c-footer-cta {
        min-width: 220px;
    }
    .footer-cc-block-2{
        margin-top: 2rem;
    }
    .c-text-4{
        font-size: 1.8rem;
    }
    .c-get-in-touch{
        width: 100%;
    }
    .title-heading-6{
        font-size: 1.5em;
    }
    .footer-final-cta{
        margin-top: 2rem;
        align-items: flex-end;
    }
    .c-heading-3{
        font-size: 6.5rem;
    }
    .footer-legal-wrapper{
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal-wrapper-left{
        flex-direction: column;
        align-items: flex-start;
        grid-row-gap: 1em;
    }
  
}

@media (max-width: 598px) {
    :root {
        font-size: 2.3255813953488373vw;
    }
    .c-navbar{
        padding: 8px 1.25em;
    }
    nav{
        max-width: 240rem;
        padding: 0;
    }
    .c-nav-cta{
        display: none;
    }
    .logo{
        font-size: 1.8rem;
    }
    .logo span{
        font-size: 1.8rem;
        flex: none;
    }
    .menu-button{
        padding: 6px 16px;
    }
    .c-heading-7{
        font-size: 2.2rem;
    }
    .c-overhead{
        font-size: 1.5rem;
        line-height: 1.5em;
    }
    .cc-hero{
        display: flex;
        flex-direction: column;
    }
    .u-title{
        font-size: 5rem;
    }
    .ui-text-right p {
        font-size: 2rem;
    }
    .ui-graphic{
        margin-top: 5rem;
    }
    .reel-inner{
        padding: 0.5rem;
    }
    .reel{
        height: 25rem;
    }
    .reel-ico{
        width: 10rem;
    }
    .c-reel-playbutton{
        width: 2rem;
    }
    .reel-text{
        font-size: 1.2rem;
    }
    .str-head{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .str-text1{
        font-size: 7rem;
    }
    .str-text-para {
        max-width: 100%;
        font-size: 2.5rem;
    }
    .c-heading-3.black{
        font-size: 5rem;
    }
    .c-heading-6{
        font-size: 1.45em;
    }
    .features-text{
        font-size: 3.313rem;
    }
    .graphics-grid{
        margin-top: 10rem;
        display: flex;
        flex-direction: column;
    }
    .sticky-features{
        padding-top: 2rem;
        display: flex;
        width: 100%;
    }
    .paragraph-1{
        max-width: 100%;
        font-size: 2rem;
    }
    .ap-grid{
        display: flex;
        flex-direction: column;
    }
    .c-acordion-right{
        margin-top: 3rem;
    }
    .c-text-1 {
        font-size: 2.125rem;
    }
    .top-head h1 {
        grid-column: span 6;
        font-size: 5rem;
    }
    .c-ind-layout{
        display: grid;
        grid-template: 
            "Area-1"
            "Area-2"
            "Area-3";  /* Define the rows like this */
        grid-auto-columns: 1fr; 
    }
    #page6 {
        padding-top: 2em;
    }
    .view-btn{
        width: 100%;
    } 
    .ucase-txt{
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .layout-para{
        margin-top: 2rem;
        max-width: 100%;
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
    .c-tablet-flex {
        display: flex;
        flex-direction: column;
    }
    .c-project-title {
        gap: 3rem;
    }
    .dyn-list {
        font-size: 1.5rem;
    }
    .img-loader{
        width: 100%;
    }
    .cc-footer-cta{
        display: flex;
        flex-direction: column;
        grid-row-gap: 0.5em;
    }
    .c-services{
        width: 100%;
        padding: 1em .95em;
    }
    .c-services-para{
        width: 100%;
        gap: 5rem;
    }
    .project-cta{
        height: auto;
    }
    .c-heading-2 {
        font-size: 2em;
    }
    .c-heading-1{
        font-size: 2.2rem;
    }
    .get-in-message {
        width: 100%;
        padding: 1em .95em;
    }
    .get-svg {
        height: 10rem;
    }
    .cc2-cta-block{
        font-size: 1.534rem;
    }
    .industry-section h1 {
        font-size: 2rem;
    }
    .indus-intro{
        font-size: 2.4rem;
    }
    .grid-industry{
        grid-template-columns: repeat(1, 1fr);
        padding-left: 0em;
        padding-right: 0em;
    }
    .industry-box p{
        font-size: 1.834rem;
    }
    .c-grid-cc12{
        margin-top: 3rem;
    }
    .design-header{
        width: 100%;
    }
    .c-heading-2.design {
        font-size: 8rem;
    }
    .des-icon {
        width: 8rem;
    }
    .bloom{
        font-size: 4rem;
    }
    .normal-text {
        font-size: 4rem;
    }
    .graphic-1{
        margin-bottom: 5em;
    }
    .UI_intro h1{
        font-size: 5.565rem;
    }
    .infos-text {
        width: 100%;
        margin-bottom: 6rem;
    }
    .reveal-type{
        font-size: clamp(6rem, 5vw, 8.565rem);
    }
    .c-ind-flow_item{
        padding-left: 2rem;
        flex-direction: column;
        gap: 2rem;
    }
    .c-ind-flow_label{
        width: 100%;
        font-size: 2.8rem;
    }
    .c-ind-flow.w-richtext{
        width: 100%;
        font-size: 1.6rem;
        line-height: 2.5rem;
    }
    .faq-content-header h1{
        font-size: 4rem;
    }
    .faq .question h3{
        font-size: 2rem;
    }
    .faq .question svg{
        height: 2rem;
    }
    .faq .answer p {
        font-size: 1.9rem;
    }
    .o-container.c-footer-pane{
        flex-direction: column;
    }
    .c-footer-nav{
        width: 100%;
        flex-direction: column;
        gap: 3rem;
    }
    .s-industries__list.c-footer__btm__dd__inner{
        gap: 2rem;
    }
    .c-footer__pane__inner{
        width: 100%;
    }
    .c-socials {
        width: 100%;
    }
    .c-footer__sum.case_std{
        width: fit-content;
    }
    .footer-cc-show{
        height: auto;
    }
    .cc-footer-content{
        flex-direction: column;
        grid-row-gap: .2em;
    }
    .footer-service{
        width: 100%;
    }
    .c-footer-cta {
        min-width: 200px;
    }
    .footer-cc-block-2{
        margin-top: 2rem;
    }
    .c-text-4{
        font-size: 1.8rem;
    }
    .c-get-in-touch{
        width: 100%;
    }
    .title-heading-6{
        font-size: 1.5em;
    }
    .footer-final-cta{
        margin-top: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .c-heading-3{
        font-size: 4.5rem;
    }
    .footer-legal-wrapper{
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal-wrapper-left{
        flex-direction: column;
        align-items: flex-start;
        grid-row-gap: 1em;
    }
}
