@charset "UTF-8";
body {
  transition: background-color 0.2s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  font-family: FkGrotesk;
  box-sizing: border-box;
}

@font-face {
  font-family: FkGrotesk;
  src: url(../fonts/FKGrotesk-Regular.ttf);
}

@font-face {
  font-family: PPPangaia;
  src: url(../fonts/PPNeueWorld-SemiExtendedBlack.otf);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1 {
  font-weight: normal;
}

body {
  background: #ffffff;
  color: #000000;
  position: relative;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body a {
  text-decoration: none;
  color: #000000;
}

.scrollToTopIcon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 30;
  transform: scale(0.4);
  transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}
.scrollToTopIcon.gotoTop {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.cover {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 100vh;
  bottom: 0vh;
  z-index: 9;
}

.transition.slide .cover1 {
  background-color: #ded2ce;
  -webkit-animation: slide 0.65s ease-in-out forwards;
          animation: slide 0.65s ease-in-out forwards;
}

@-webkit-keyframes slide {
  from {
    top: 100vh;
  }
  to {
    top: 0vh;
  }
}

@keyframes slide {
  from {
    top: 100vh;
  }
  to {
    top: 0vh;
  }
}
.loader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0vh;
  bottom: 0vh;
  z-index: 9;
  background: #ded2ce;
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1), all 600ms cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  place-items: center;
}
.loader.disapper {
  top: -100vh;
}

.loader .loadiv.loaddisapear {
  opacity: 0;
}

.loaderdiv  {
  animation: rotate 1s infinite;  
  height: 50px;
  width: 50px;
}

.loaderdiv:before,
.loaderdiv:after {   
  border-radius: 50%;
  content: '';
  display: block;
  height: 20px;  
  width: 20px;
}
.loaderdiv:before {
  animation: ball1 1s infinite;  
  background-color: #ffffff;
  box-shadow: 30px 0 0 #ffffff;
  margin-bottom: 10px;
}

.loaderdiv:after {
  animation: ball2 1s infinite; 
  background-color: #ffffff;
  box-shadow: 30px 0 0 #ffffff;
}

@keyframes rotate {
  0% { 
    -webkit-transform: rotate(0deg) scale(0.8); 
    -moz-transform: rotate(0deg) scale(0.8);
  }
  50% { 
    -webkit-transform: rotate(360deg) scale(1.2); 
    -moz-transform: rotate(360deg) scale(1.2);
  }
  100% { 
    -webkit-transform: rotate(720deg) scale(0.8); 
    -moz-transform: rotate(720deg) scale(0.8);
  }
}

@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #ffffff;
  }
  50% {
    box-shadow: 0 0 0 #ffffff;
    margin-bottom: 0;
    -webkit-transform: translate(15px,15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #ffffff;
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #ffffff;
  }
  50% {
    box-shadow: 0 0 0 #ffffff;
    margin-top: -20px;
    -webkit-transform: translate(15px,15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #ffffff;
    margin-top: 0;
  }
}


































/*Cursor Start*/
.img__grow {
  width: 120px !important;
  height: 120px !important;
  border: 2px solid #000 !important;
  z-index: 9999;
  position: relative;
  mix-blend-mode: difference;
  transition: all 0.2s ease;
}

.Swiper__grow {
  width: 50px !important;
  height: 50px !important;
  border: 2px solid #000 !important;
  z-index: 9999;
  position: relative;
  mix-blend-mode: difference;
  transition: all 0.2s ease;
}

.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid #fff;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  z-index: 9999;
  transform: translate(calc(-50% + 15px), -50%);
  opacity: 0;
  visibility: hidden;
}
.cursor.activeAnchr {
  opacity: 1;
  visibility: visible;
}

.cursor2 {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #fff;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0;
  visibility: hidden;
}
.cursor2.activeAnchr {
  opacity: 1;
  visibility: visible;
}

.activeAnchr {
  opacity: 1;
}

.mblnk {
  display: none;
}

header {
  position: fixed;
  top: 0px;
  width: 100vw;
  z-index: 2;
  color: #000000;
  padding: 30px 0px 30px;
  height: 200px;
  transition: all 600ms cubic-bezier(0.63, 0.12, 0.84, 0.42), all 600ms cubic-bezier(0.63, 0.12, 0.84, 0.42);
}



header.stikyHeader .line {
  stroke: rgb(0, 0, 0);
}
header.stikyHeader .menu svg {
  background-color: white;
}
header.mobileNav nav {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
header ul li {
  display: inline-block;
  padding:  5px 20px 5px 0px;
}
header ul li a {
  display: inline-block;
  font-size: 1.1em;
  color: rgb(255, 255, 255);
  text-align: center;
}
header ul li a.menuActive {
  font-size: 1.15em;

}
header .menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 35px;
  position: relative;
  z-index: 2;
  display: none;
  outline: none;
}
header .menu svg {
  width: 70px;
  border: none;
  height: 70px;
  border-radius: 15px;
  background-color: #ffffff;
}
header .line {
  fill: none;
  stroke: rgb(0, 0, 0);
  stroke-width: 4;
  transition: stroke-dasharray 600ms cubic-bezier(0.63, 0.12, 0.84, 0.42), all 600ms cubic-bezier(0.63, 0.12, 0.84, 0.42);
}


header .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
header .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
header .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
header .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
header .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
header .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}


.nav-container{
  float: right;
}


.tphrsction {
  width: 100%;
  min-height: 100%;
}
.tphrsction .tpwrapsc {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.tphrsction .bgovlry {
  position: absolute;
  height: 55%;
  width: 100%;
  z-index: -1;
}
.tphrsction .bgovlry img{
  opacity: 0.75;
  -webkit-filter: blur(50px); 
  filter: blur(50px);
}

.tphrsction .bgovlry div {
  width: 30%;
  height: 40%;
  background-color: #3f5dd7;
  filter: blur(150px);
}

.tphrsction .bgovlry div:first-child {
  -webkit-animation: div1 3s linear forwards;
  animation: div1 3s linear forwards;
  position: absolute;
}

@-webkit-keyframes div1 {
  0% {
      left: 0%;
      top: 0%;
  }

  100% {
      left: 30%;
      top: 10%;
  }
}

@keyframes div1 {
  0% {
      left: 0%;
      top: 0%;
  }

  100% {
      left: 30%;
      top: 10%;
  }
}

.tphrsction .bgovlry div:nth-child(2) {
  background: linear-gradient(85.57deg, rgba(253, 152, 0, 0.6039215686) 34.87%, rgba(62, 130, 255, 0.7058823529) 101.46%);
  position: absolute;
  top: 30%;
  left: 50%;
  width: 30%;
  transform: translate(-50%, -50%);
  filter: blur(150px);
  -webkit-animation: div2 3s linear forwards;
  animation: div2 3s linear forwards;
}

@-webkit-keyframes div2 {
  0% {
      width: 30%;
  }

  100% {
      left: 70%;
      width: 50%;
  }
}

@keyframes div2 {
  0% {
      width: 30%;
  }

  100% {
      left: 70%;
      width: 50%;
  }
}

.tphrsction .bgovlry div:nth-child(3) {
  background: rgba(215, 119, 63, 0.185);
  position: absolute;
  top: inherit;
  bottom: 5%;
  left: 20%;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
}

.tphrsction .bgovlry div:nth-child(4) {
  position: absolute;
  background: #3259f5;
  top: inherit;
  bottom: 40%;
  left: inherit;
  right: 0%;
  width: 40%;
  height: 30%;
  -webkit-animation: div3 3s linear forwards;
  animation: div3 3s linear forwards;
}

@-webkit-keyframes div3 {
  0% {
      width: 30%;
      right: 20%;
  }

  100% {
      width: 30%;
      right: 0%;
  }
}

@keyframes div3 {
  0% {
      width: 30%;
      right: 20%;
  }

  100% {
      width: 30%;
      right: 0%;
  }
}

.tphrsction .bgovlry div:nth-child(5) {
  position: absolute;
  background: rgba(255, 170, 0, 0.459);
  filter: blur(175px);
  top: 0%;
  bottom: inherit;
  left: inherit;
  right: 0%;
  width: 40%;
  height: 40%;
  -webkit-animation: div5 3s linear forwards;
  animation: div5 3s linear forwards;
}

@-webkit-keyframes div5 {
  0% {
      left: inherit;
      right: 0%;
  }

  100% {
      width: 30%;
      height: 30%;
  }
}

@keyframes div5 {
  0% {
      left: inherit;
      right: 0%;
  }

  100% {
      width: 30%;
      height: 30%;
  }
}


.tphrsction .hdlnk:hover {
color: #ffffff3b ;
}


.tphrsction .herowrapper {
  height: 100vh;
  width: 100%;
  padding: 20px 0px;
  position: relative;
}
.tphrsction .herowrapper .heroflx {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tphrsction .herowrapper sup {
  font-size: 0.5em;
  padding-right: 6px;
}
.tphrsction .herowrapper .ovflHdn {
  margin: 15vh 11vh 0px 0px;
}
.tphrsction .herowrapper .heroemojis {
  position: absolute;
  right: 0px;
  bottom: -10vh;
}
.tphrsction .herowrapper .heroemojis img {
  margin-left: auto;
  width: 290px;
}
.tphrsction .herowrapper h1 {
  font-size: 5.5em;
  overflow: hidden;
  line-height: 105%;
}
.tphrsction .herowrapper h1 span {
  display: inline-block;
  transform: translateY(400px);
  opacity: 1;
}
.tphrsction .scrollToArrow {
  text-align: center;
  padding: 10px 0px;
  overflow: hidden;
}
.tphrsction .scrollToArrow a {
  display: inline-flex;
  justify-content: center;
  gap: 12px;
  align-content: center;
  font-size: 1.1em;
  cursor: pointer;
}
.tphrsction .scrollToArrow img {
  width: 14px;
  -webkit-animation: arrowAnimation 1.5s ease-in-out infinite;
          animation: arrowAnimation 1.5s ease-in-out infinite;
}
@-webkit-keyframes arrowAnimation {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(50px);
  }
}
@keyframes arrowAnimation {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(50px);
  }
}
.tphrsction .ltsdsgnprjct {
  height: 90vh;
  padding: 120px 0px 100px 0px;
  margin-bottom: 285px;
}
.tphrsction .ltsdsgnprjct .ltsdesgngrid {
  height: 100%;
  display: grid;
  grid-template-columns: 33% auto;
  gap: 50px;
}
.tphrsction .ltsdsgnprjct .ltsdesgngrid .dflxheading .abslimg img {
  position: absolute;
  top: 62%;
  left: 75%;
  transform: translate(-50%, -50%) scale(0.5);
  -o-object-fit: cover;
  object-fit: cover;
  width: 58px;
  z-index: -1;
}
.tphrsction .ltsdsgnprjct .ltsdesgntxt {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.tphrsction .ltsdsgnprjct .ltsdesgnimgsc {
  width: 100%;
  height: 75%;
  border: 1px solid #000000;
  border-radius: 33px;
  margin: auto;
  transition: 0.5s;
  position: relative;
  margin-top: auto;
  margin-bottom: 60px;
}
.tphrsction .ltsdsgnprjct .ltsdesgnimgsc img {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
  opacity: 0;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
     
}
.tphrsction .ltsdsgnprjct .ltsdesgnimgsc:hover {
  background: transparent;
  color:#000000;
}
.tphrsction .ltsdsgnprjct .ltsdesgnimgsc:hover img {
  opacity: 1;
}
.tphrsction .ltsdsgnprjct .ltsdesgnimgsc ul li {
  list-style: none;
  display: inline-block;
  padding: 25px 10px 10px 35px;
}
.tphrsction .ltsdsgnprjct .ltsdesgnimgsc ul li p {
  font-size: 0.8em;
}

.ovrflmobile {
  display: none;
}

.ovrfldesk {
  display: block;
}

.ovlflhdn {
  overflow: hidden;
}

.anchrBtn {
  padding: 20px 55px;
  border: 1px solid #000000;
  display: inline-block;
  width: 500px;
  border-radius: 33px;
  transition: 0.3s;
  cursor: pointer;
  color: #000000;
  background: transparent;
}
.anchrBtn:hover {
  background: #000000;
  color: #ffffff;
}

.anchrBtn.mobile{
  width: 100%;
  text-align: center;
  justify-content: center;
}

.mobile {
  display: none !important;
}

.mobilee {
  display: none !important;
}


.clientsection {
  height: 50vh;
  padding: 50px 0px 50px;
}
.clientsection .container {
  height: 100%;
}

.clientsection .clientxt {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.clientsection .clientProject {
  display: flex;
  justify-content: space-between;
}
.clientsection .clientProject h2 {
  font-size: 1.7em;
  line-height: 100%;
}
.clientsection .clientProject h2 span {
  font-size: 1.9em;
}
.clientsection .clientProject h2:first-child {
  text-align: center;
}
.clientsection .clientProject h2:last-child {
  line-height: 120%;
}

.brandlogowrap {
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.logosec {
  width: 150px;
  display: flex;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.logo-grid__logo {
  position: absolute;
  width: 100%;
  height: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* LOGO ANIMATION START */
@keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  20% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  30% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  90% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInSecond {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  30% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  35% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
  57% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
  65% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
}
@keyframes fadeInThird {
  0% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  65% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
  85% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -60px, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  20% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  30% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  90% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  20% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  30% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  90% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInSecond {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  30% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  36% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
  57% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
  65% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
}
@-webkit-keyframes fadeInThird {
  0% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  65% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
  85% {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -60px, 0);
  }
}
.brandlogowrap .logo-grid__logo:first-child {
  animation: fadeIn 12s ease infinite;
  -webkit-animation: fadeIn 12s ease infinite;
}

.brandlogowrap .logo-grid__logo:nth-child(2) {
  animation: fadeInSecond 12s ease infinite;
  -webkit-animation: fadeInSecond 12s ease infinite;
}

.brandlogowrap .logo-grid__logo:nth-child(3) {
  animation: fadeInThird 12s ease infinite;
  -webkit-animation: fadeInThird 12s ease infinite;
}

.logosec:first-child .logo-grid__logo {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
}

.logosec:nth-child(2) .logo-grid__logo {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}

.logosec:nth-child(3) .logo-grid__logo {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

.logosec:nth-child(4) .logo-grid__logo {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

.logosec:nth-child(5) .logo-grid__logo {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}

.dflxheading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 50px;
  margin-left: 0px;
}

.dflxheading2{
position: relative;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
margin-top: 50px;
}

.dflxheading .whitespace {
  padding: 0px 5px;
}
.dflxheading .wrkd {
  position: absolute;
  top: -15%;
  right: -5%;
}
.dflxheading .wrkd img {
  width: 58px;
}
.dflxheading .dflx {
  display: flex;
  gap: 20px;
}
.dflxheading h1 {
  display: flex;
  font-size: 6.5em;
  line-height: 110%;
}
.dflxheading h2 {
  display: flex;
  font-size: 6.5em;
  line-height: 110%;
  justify-content: center;
}
.dflxheading .abslt {
  position: absolute;
  top: -60px;
  left: 0px;
  font-size: 0.7em;
  transform: scale(1);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.dflxheading .abslimg {
  position: relative;
}
.dflxheading .abslimg img {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  -o-object-fit: cover;
     object-fit: cover;
  width: 58px;
}

.ditvtrsection {
  height: 100vh;
  position: relative;
  margin-bottom: 150px;
  margin-top:25px;
}
.ditvtrsection h1 {
  font-size: 6.2em;
  line-height: 110%;
}
.ditvtrsection .ditgrid {
  display: grid;
  grid-template-columns: 50% auto;
  height: 100%;
  place-items: center;
  gap: 30px;
}
.ditvtrsection .ditgrid .ditimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin-top: 33px;
}
.ditvtrsection .ditgrid .ditimg img {
  width: 50vw;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0px;
}
.ditvtrsection .ditxtwrap {
  padding: 45px 0px 20px 90px;
}
.ditvtrsection .ditxtwrap p {
  font-size: 1.7em;
}
.ditvtrsection .ditlist {
  padding-top: 80px;
  max-width: 500px;
}
.ditvtrsection .ditlist span {
  border-radius: 33px;
  font-size: 1em;
  padding: 12px 36px;
  border: 1px solid #ffffff;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin: 5px;
}
.ditvtrsection .ditlist span.ditlstimg {
  position: relative;
}
.ditvtrsection .ditlist span img {
  position: absolute;
  width: 70px;
  left: 95%;
  top: -100%;
  transform: translate(-80%, -50%);
}

.aboutsection {
  height: 130vh;
  margin-bottom: 20px;
}
.aboutsection .aboutlftxt {
  display: grid;
  padding-right: 50px;
}
.aboutsection .aboutwrap {
  display: grid;
  grid-template-columns: 75% auto;
  height: 100%;
  place-items: center;
  gap: 30px;
}
.aboutsection .dflxheading {
  width: 100%;
}
.aboutsection .dflxheading .abslimg img {
  z-index: -1;
  top: 3%;
  width: 500px;
}
.aboutsection .aboutrightxt p {
  text-indent: 1em;
  font-size: 3em;
  padding: 20px 0px;
  line-height: 110%;
}

.hvrImg {
  position: relative;
}
.hvrImg img {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 0%;
  left: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 9;
  opacity: 0;
}
.hvrImg:hover img {
  opacity: 1;
}

.cntfterwrap {
  position: relative;
  overflow: hidden;
}
.cntfterwrap .imgbg {
  position: absolute;
  bottom: 0%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.cntfterwrap .cntntgrd {
  width: 100%;
  display: grid;
  grid-template-columns: 50% auto;
  gap: 30px;
}
.cntfterwrap .cntntgrd .dflxheading h1 {
  font-size: 5.5em;
}
.cntfterwrap .cntntgrd .dflxheading .abslimg img {
  top: 47%;
  left: 43%;
  width: 65px;
  border-radius: 50%;
}
.cntfterwrap .cntntgrd .cntform .inputLabel {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  gap: 5px;
  margin: 25px 0px;
}
.cntfterwrap .cntntgrd .cntform .inputLabel.dblck {
  display: flex;
  flex-direction: column;
  height: 220px;
  margin-top: 32px;
}
.cntfterwrap .cntntgrd .cntform .inputLabel label {
  font-size: 1.2em;
}
.cntfterwrap .cntntgrd .cntform .inputLabel input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 1.2em;
}
.cntfterwrap .cntntgrd .cntform .inputLabel input[name=toemail] {
  pointer-events: none;
}
.cntfterwrap .cntntgrd .cntform .inputLabel input.tomail {
  color: rgba(255, 255, 255, 0.5);
}
.cntfterwrap .cntntgrd .cntform .inputLabel input::-moz-placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.5);
}
.cntfterwrap .cntntgrd .cntform .inputLabel input:-ms-input-placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.5);
}
.cntfterwrap .cntntgrd .cntform .inputLabel input::placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.5);
}
.cntfterwrap .cntntgrd .cntform .inputLabel textarea {
  border: none;
  background: transparent;
  outline: none;
  color: #ffffff;
  resize: none;
}








/* HTML: <div class="loader"></div> */
.loadermessage {
  position: relative;
  margin-left: 20px;
  width: 40px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}




/* start
before and after arrow placement + css hover animation */

.arrow-prev::before{
  content:"← ";
  transition: all .25s ease;
  opacity: 1;
}

.arrow-nex::after{
  content:" →";
  transition: all .25s ease;
  opacity: 1;
}

.arrow-nex:hover::after{
  content:" ↗";
}

.arrow-prev:hover::before{
  content:"↖ ";
  min-width: 50px;
}

.socials::after{
  content:" →";
  transition: all .25s ease;
  opacity: 1;
}

.socials:hover::after{
  content:" ↗";
}

.contactarrow::after{
  width: 55px;
  content:"→ ";
  transition: all .25s ease;
  opacity: 1;
}

.contactarrow:hover::after{
  content:"↗ ";
  width: 55px;
}

/* end
before and after arrow placement + css hover animation */






footer {
  padding: 100px 0px 25px;
}
footer .dflx {
  display: flex;
  justify-content: space-between;
  padding: 30px 0px;
}
footer .dflx ul li {
  list-style: none;
  display: inline-block;
}
footer .dflx ul li a {
  padding: 0px 20px 0px 0px;
  display: block;
  color: #151718;
  text-decoration: none;
}
footer .dflx ul:last-child li a {
  color: #151718;
}
footer span {
  color: #151718;
  ;
}

.impressumHerosc {
  padding: 15vh 0vh 10vh 0px;
}
.impressumHerosc span {
  color: #151718;
  font-size: 1.2em;
}
.impressumHerosc p {
  font-size: 1.2em;
}
.impressumHerosc .para {
  padding: 15px 0px;
  overflow: hidden;
}

.LiabilityCntn p {
  font-size: 1.2em;
}
.LiabilityCntn .liabilityTitle {
  padding: 40px 0px;
}

.liabilitygrd {
  display: grid;
  grid-template-columns: 60% auto;
}

.swiper-slide-active .details {
  pointer-events: auto;
}

.details {
  pointer-events: none;
}
.details h1 {
  overflow: hidden;
}

.detailsherosc {
  position: relative;
  width: 100%;
  height: 100vh;
}

.detailsherosc .detialbg {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.detailsherosc .container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
.detailsherosc .detailhrtxt {
  width: 100%;
}
.detailsherosc .detailhrtxt .overflw {
  overflow: hidden;
}
.detailsherosc .detailhrtxt .detilspan {
  font-size: 1.2em;
  padding: 10px 0px;
  display: block;
}
.detailsherosc .detailhrtxt h1 {
  font-size: 6em;
  line-height: 110%;
}

.prjctDscrption_Wrap {
  padding: 225px 0px 0px;
}
.prjctDscrption_Wrap .dscrptGrid {
  display: grid;
  grid-template-columns: 75% auto;
  gap: 100px;
}
.prjctDscrption_Wrap .dscrptwrkdetails {
  text-align: left;
}
.prjctDscrption_Wrap .dscptxt h1 {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 30px;
}
.prjctDscrption_Wrap .dscptxt p {
  text-indent: 2em;
  font-size: 2.5em;
  line-height: 110% ;
  width: 95%;
  padding: 0px 0px 50px 0px;

}
.prjctDscrption_Wrap .anchrBtn {
  border: 1px solid #000000;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 33px;
  transition: 0.3s;
  cursor: pointer;
  color: #000000;
  background: transparent;
  margin-top: 24px;
}

.prjctDscrption_Wrap .anchrBtn:hover {
  background: #000000;
  color: #ffffff;
}
.prjctDscrption_Wrap .wrkname span {
  font-size: 1em;
  display: block;
  color: #000000;
  padding: 2px 0px;
}
.prjctDscrption_Wrap .wrkname span:first-child {
  padding-bottom: 20px;
}

.detailsiimg {
  width: 95%;
  margin: auto;
}


.dtlimg {
  position: relative;
  margin: 40px;
  overflow: hidden;
  /* 👆 image height / width * 100%   (use this formula to calculate the height the image )    */
}
.dtlimg img {
  width: 100%;
  height: auto;
}

.dtlvid {
  position: relative;
  margin: 160px 40px 420px 40px;
  overflow: inherit;
    /* 👆 image height / width * 100%   (use this formula to calculate the height the image )    */
}

.dtlvid video {
  width: 100%;
  height: auto !important;
}

.appExhiDesign .cntfterwrap {
  position: relative;
}
.appExhiDesign .cntfterwrap img.imgbg {
  height: 100%;
}

.appExhiGrd {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 150px 0px 155px 0px;
}
.appExhiGrd .nextprev {
  display: flex;
  justify-content: space-between;
  width: 80%;
}
.appExhiGrd .nextprev img {
  width: 64px;
}

.appExhiGrd .nextprev span.projectarrow{
  width: 64px;
  font-size: 5em;
  opacity: 100%;
}

.appExhiGrd .nextprev:last-child {
  margin-left: auto;
}
.appExhiGrd .nextprev:last-child span {
  text-align: left;
}
.appExhiGrd .nextprev span {
  font-size: 1.25em;
  opacity: 33%;
  text-align: right;
  display: block;
}



.appExhiGrd .nextprev h1 {
  font-size: 5em;
  line-height: 100%;
  text-align: right;
}


/* start
footer big headlines */

.prev-nex-containter{
  height: 500px; 
  margin-top: 200px;
}

.footertx{
  font-size: 5em; 
  line-height: 100%;
}

.footertx-s{
  font-size: 1.5em; 
  line-height: 100%;
  opacity: 33%;
}

.txspace{
  margin-bottom: 100px;
}

.footer-container{
  height: 750px; 
  margin-top: 200px;
}

/* end
footer big headlines */





.projectSlider {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.projectSlider .swiper-pagination-fraction,
.projectSlider .swiper-pagination-custom,
.projectSlider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 26px;
}
.projectSlider .swiper-slide.swiper-slide-prev {
  display: flex;
  justify-content: flex-end;
}
.projectSlider .swiper-slide.swiper-slide-next {
  display: flex;
  justify-content: flex-start;
}
.projectSlider .swiper-button-prev,
.projectSlider .swiper-container-rtl .swiper-button-next {
  background-image: url("../images/icons/prev.svg");
  left: inherit;
  right: 100px;
}
.projectSlider .swiper-button-next,
.projectSlider .swiper-container-rtl .swiper-button-prev {
  background-image: url("../images/icons/next.svg");
  right: 35px;
  left: auto;
}
.projectSlider .swiper-button-prev,
.projectSlider .swiper-button-next {
  top: 94%;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-position: center;
}
.projectSlider .container {
  width: 100%;
  height: 100%;
}
.projectSlider .prjctbg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projectSlider .prjctbg.activeBG {
  z-index: 1;
  transition: transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.prjctbg{
  opacity: 25%;
}


.swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(0.8);
  text-align: center;
}
.swiper-slide p {
  overflow: hidden;
  color: #ffffff;
  font-size: 1.1em;
}
.swiper-slide p span {
  transform: translateY(100px);
  transition: transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  display: block;
}
.swiper-slide h1 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 6em;
  line-height: 110%;
  transition: transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  margin: 0px 0px 30px 0px;
  transform: scale(0.4);
}
.swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.swiper-slide.swiper-slide-active p {
  opacity: 1;
  transition-delay: 0.5s;
}
.swiper-slide.swiper-slide-active p span {
  transition: transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transform: translateY(0px);
  display: block;
}
.swiper-slide.swiper-slide-active h1 {
  transition: transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition-delay: 0.15s;
  transform: scale(1);
  color: #ffffff;
}/*# sourceMappingURL=styles.css.map */