/* ------------------------- Scaling System by Osmo [https://osmo.supply/] -------------------------  */

/* Desktop */
:root {
    --size-unit: 16; /* body font-size in design - no px */
    --size-container-ideal: 1440; /* screen-size in design - no px */
    --size-container-min: 992px;
    --size-container-max: 1920px;
    --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
    --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
  }
  
  /* Tablet */
  @media screen and (max-width: 991px) {
    :root {
      --size-container-ideal: 834; /* screen-size in design - no px */
      --size-container-min: 768px;
      --size-container-max: 991px;
    }
  }
  
  /* Mobile Landscape */
  @media screen and (max-width: 767px) {
    :root {
      --size-container-ideal: 550; /* screen-size in design - no px */
      --size-container-min: 480px;
      --size-container-max: 767px;
    }
  }
  
  /* Mobile Portrait */
  @media screen and (max-width: 479px) {
    :root {
      --size-container-ideal: 390; /* screen-size in design - no px */
      --size-container-min: 320px;
      --size-container-max: 479px;
    }
  }



  /* ------------------------- Hide Scrollbar -------------------------------------------------- */

body ::-webkit-scrollbar,
body::-webkit-scrollbar {display: none;} /* Chrome, Safari, Opera */
body {-ms-overflow-style: none;} /* IE & Edge */
html {scrollbar-width: none;} /* Firefox */

/* ------------------------- Reset -------------------------------------------------- */

 



*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: initial;
}
a,a:hover{
    text-decoration: none;
}
html,
body {
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

svg {
  max-width: none;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}


h1,h2,h3,h4,h5,h6,p ,*, body {
    color: #f7cdc0;
}


  body {
    font-size: var(--size-font);
    padding: 0;
    margin:0;
    background:#19124B;
    font-family: "Poppins", system-ui;
    font-weight: 400;
    color:#f7cdc0;
    font-style: normal;
    overflow-x: hidden;
  }
 
  .container {
    max-width: var(--size-container);
    margin: 0 auto;
    padding:0 8em;
  }
  
  .container.medium {
    max-width: calc(var(--size-container) * 0.85);
  }
  
  .container.small {
    max-width: calc(var(--size-container) * 0.7);
  }
section{
    position: relative;
}

.text-xl {
    font-size: 4em;
    line-height: 1.1;
    opacity: 1;
    font-weight: 600;
    margin: 0;
    letter-spacing: -2px;
    margin-bottom: 0.5em !important;
    margin-top: 0.5em;
}
.text-xl span,.text-xl span .word{
    color:#FF3400!important;
}

.paragraph-medium {
    font-size: 1.2em;
    font-style: italic;
    letter-spacing: -1px;
}
a.btn {
    background: #FF3400;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1em;
    font-weight: 600;
    padding: 1em 2em;
    border-radius: 100px;
    outline:none;
    -webkit-transition:all .4s cubic-bezier(.165,.84,.44,1);
    transition:all .4s cubic-bezier(.165,.84,.44,1);
}

a.btn:hover{
    color:#FFF;
    background-color: #051b15;
    scale:1.1;
    -webkit-transition:all .4s cubic-bezier(.165,.84,.44,1);
    transition:all .4s cubic-bezier(.165,.84,.44,1);
    letter-spacing: 4px;
}

.animate-text span .char {
    color: #FF3400;
}
.loading-screen {
    pointer-events: auto;
    background-color: #000;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .loading-container {
    z-index: 200;
    pointer-events: none;
    background-color: #E2E1DF;
    position: fixed;
    inset: 0;
    overflow: hidden;
  }
  
  .loading__progress {
    width: 1em;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
  
  .loading__progress-inner {
    transform-origin: bottom;
    background-color: transparent;
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .loading__numbers {
    flex-flow: row;
    align-items: flex-start;
    font-size: calc(10vw + 10vh);
    display: flex;
    position: absolute;
    bottom: .1em;
    left: .23em;
    z-index: 2;

  }
  
  .loading__number-group {
    flex-flow: column;
    height: 1em;
    display: flex;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }
  
  .loading__number-wrap {
    will-change: transform;
    flex-flow: column;
    display: flex;
    position: relative;
  }
  
  .loading__number {
    text-transform: uppercase;
    color: #FF3400;
    font-weight: 800;
    line-height: 1;
    position: relative;
  }
  
  .loading__percentage-wrap {
    flex-flow: column;
    justify-content: flex-start;
    margin-top: .375em;
    font-size: .3em;
    display: flex;
    color: #FF3400;
    overflow: hidden;
  }
  
  .loading__percentage {
    text-transform: uppercase;
    will-change: transform;
    color: #FF3400;
    font-weight: 800;
    line-height: 1;
    position: relative;
  }




  .p-small {
  font-size: .875em;
  margin: 0;
}

.socials-row {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: row;
  display: flex;
}

.menu-bg {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.bg-panel {
  z-index: 0;
  background-color: #e3e1de;
  border-top-left-radius: 1.25em;
  border-bottom-left-radius: 1.25em;
  position: absolute;
  inset: 0%;
}

.bg-panel.first {
  background-color: #FF3400;
}

.bg-panel.second {
  background-color: #fff;
}

.nav {
  z-index: 9;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 35em;
  height: 100%;
  margin-left: auto;
  padding-top: 6em;
  padding-bottom: 2em;
  position: relative;
  overflow: auto;
}

.eyebrow {
  z-index: 1;
  color: #FF3400;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
}

.menu-inner {
  z-index: 1;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
  position: relative;
  overflow: auto;
}

.p-large {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125em;
}

.p-large.text-link {
  color: #131313;
}

.menu-details {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 2em;
  display: flex;
}

.menu-list-item {
  height: 6em;
  position: relative;
  overflow: hidden;
}

.menu-list {
  flex-flow: column;
  width: 100%;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.menu-link {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  color: #131313;
  width: 100%;
  padding-top: .75em;
  padding-bottom: .75em;
  padding-left: 2em;
  text-decoration: none;
  display: flex;
}

.menu-link-heading {
  z-index: 1;
  text-transform: uppercase;

  font-size: 5.625em;
  font-weight: 700;
  line-height: .75;
  transition: transform .55s cubic-bezier(.65, .05, 0, 1);
  position: relative;
}

.overlay {
  z-index: 0;
  cursor: pointer;
  background-color: #13131366;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.menu-button {
  z-index: 10;
  grid-column-gap: .625em;
  grid-row-gap: .625em;
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
  margin: -1em;
  padding: 1em;
  display: flex;
}

.menu-button-text {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  height: 1.5em;
  display: flex;
  overflow: hidden;
}

.icon-wrap {
  transition: transform .4s cubic-bezier(.65, .05, 0, 1);
}

.menu-button-icon {
  width: 1em;
  height: 1em;
}

.header {
  z-index: 80;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: fixed;
  top: 2em;
  left: 2em;
  right: 2em;
}






a {
	color: #FEE2E7;
	text-decoration: none;
}

p {
	color: #FEE2E7;
	margin-bottom: 30px;
}

nav ul li {
	float: left;
	margin-right: 20px;
	display:flex;
	
	&:last-child { margin-right: 0 }
	
	a {
	 
      font-size: 14px;
        text-transform: uppercase;
        letter-spacing: .2em;
        padding: 1.25rem 0;
        width: 110px;
        font-weight: 600;
        text-align: center;
        color: #FFF;
	}
}


nav ul li a:hover{
    color:#FF3400;
}

.main-color{
    color:#FF3400
}

.cursor {
    z-index: 100;
 
    box-shadow: 0 0  90px 10px #FF3400;
    border-radius: 100em;
    width: 1.7em;
    height: 1.7em;
    transition: background-color .375s cubic-bezier(.625, .05, 0, 1), height .375s cubic-bezier(.625, .05, 0, 1), width .375s cubic-bezier(.625, .05, 0, 1);
    position: fixed;
    inset: 0% auto auto 0%;
    pointer-events: none;
    background-color: #FF3400;
    
     

  }
  
  body:has( a:hover) .cursor,
  body:has( button:hover) .cursor,
  body:has( [data-cursor]:hover) .cursor{
    width: 3.8em;
    height: 3.8em;
    background-color: #FF3400;
    opacity: 0.65;
  }
  
  @media (hover: none) and (pointer: coarse) {
    .cursor {
      display: none;
    }
  }

  .hero-bg {
    max-width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-bg a {
    display: none!important;
}

  .parallax {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .parallax__content {
    padding: 10em 1em;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    display: flex;
    position: relative;
  }
  
  .parallax__layers {
    object-fit: cover;
    width: 100%;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
  }
  
  .parallax__title {
    pointer-events: auto;
    text-align: center;
    text-transform: none;
    margin-top: 0;
    margin-bottom: .1em;
    margin-right: .075em;
    font-size: 10em;
    font-weight: 700;
    line-height: 1;
    position: relative;
  }
  
  .parallax__black-line-overflow {

    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    opacity: 0.4;
 
  }
  
  .parallax__layer-img {
    pointer-events: none;
    object-fit: cover;
    width: 100%;
    max-width: none;
    height: 117.5%;
    position: absolute;
    top: -17.5%;
    left: 0;
  }
  
  .parallax__fade {
    z-index: 30;
    object-fit: cover;
    background-image: linear-gradient(#0000, #19124B);
    width: 100%;
    max-width: none;
    height: 25%;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
  .parallax__header {
    z-index: 2;
    padding: 5em 1em;
    justify-content: center;
    align-items: center;
    min-height: 90svh;
    display: flex;
    position: relative;
  }
  
  .parallax__visuals {
    object-fit: cover;
    width: 100%;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .parallax__layer-title {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90svh;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }

  .parallax__title{
    font-size: 7.75em;
    text-transform: uppercase;
  color:#f7cdc0;
    font-weight: 800;
    line-height: 1;
  }
 
  .parallax__title span.name-small {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #f7cdc0;
 
}

.parallax__title span.main-color {
    color: #f7cdc0;
    background: #FF3400;
    padding: 0.75rem 2rem;
    border-radius: 1.25rem;
    transform: rotate(3deg);
    position: absolute;
    left: 0;
 
   
    
}


 

  .btn-magnetic {
    font-size: 1em;
    position: relative;
    z-index: 199;;
  }
  
  .btn-magnetic__click {
    cursor: pointer;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background: #000;
  }
  
  .btn-magnetic__fill {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  
  .btn-magnetic__content {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: .75em 2em;
    display: flex;
    position: relative;
  }
  
  .btn-magnetic__text {
    position: relative;
    overflow: hidden;
  }
  
  .btn-magnetic__text-p {
    color: #ede7ff;
    text-align: center;
    margin-bottom: 0;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    margin:0;
  }
  
  .btn-magnetic__text-p.is--duplicate {
    position: absolute;
    top: 100%;
  }
  
  /* Hover */
  .btn-magnetic__click .btn-magnetic__text-p {
    transition: all 0.6s cubic-bezier(0.625, 0.05, 0, 1);
    transform: translateY(0%) rotate(0.001deg);
  }
  .btn-magnetic__click:hover .btn-magnetic__text-p {
    transform: translateY(-100%) rotate(0.001deg);
  }








  .footer_socials {
    bottom: 100px;
    position: fixed;
    z-index: 9;
    list-style: none;
    display: flex;
    background: #000;
    border-radius: 90px;
    padding: 0 1rem;
    margin: 0;
    left: 3rem;
    align-content: center;
    align-items: center;
}

.footer_socials li:not(:last-child) {
    margin-bottom: 1.0625rem;
}


.footer_socials a {
    display: block;
    font-size: 0;
    line-height: 1;
    padding: .625rem;
}
.footer_socials img, .footer_socials svg {
    height: 1.5rem;
    width: 1.5rem;
}

.footer_socials a:hover svg {
    fill: #FF3400;
  } 



.hero-section {
    position: relative;
    display: flex;
    max-height: 90vh;
}


.hero-section.mini {
    position: relative;
    display: flex;
    max-height: 80vh;
}



@media (min-width: 768px) {
    .section {
        padding-bottom: 18.7698412698vh;
        padding-top: 28.7698412698vh;
    }
}


.section-resource {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-height: auto;
    display: flex;
    padding-bottom: 8.7698412698vh;
    padding-top: 8.7698412698vh;
  }

  .section-resource  .paragraph-medium{
    margin-bottom: 3.5em !important;
  }


  
  .marquee-advanced {
    width: 100vw;
    position: relative;
    overflow: hidden;
  }
  
  .marquee-advanced__scroll {
    will-change: transform;
    width: 100%;
    display: flex;
    position: relative;
  }
  
  .marquee-advanced__collection {
    will-change: transform;
    display: flex;
    position: relative;
  }
  
  .marquee-advanced__item {
    justify-content: flex-start;
    align-items: center;
    font-size: max(4em, 8vw);
    display: flex;
  }
  
  .marquee__advanced__p {
    white-space: nowrap;
    margin-bottom: 0;
    margin-right: .25em;
    font-size: 0.5em;
    color: #FFFF;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0;
    background: #FF3400;
    padding: 20px 40px;
    border-radius: 50px;
  }
  .marquee__advanced__p a,  .marquee__advanced__p a:hover {
      color:#FFF;
      text-decoration: none;
  }
 
  .marquee__advanced__arrow-svg {
    color: #FFF;
    width: 1em;
    margin-right: .25em;
    position: relative;
    background: #281548;
    padding: 30px 25px;
    border-radius: 100px;
  }
  
  .marquee-advanced__item-width {
    background-color: #131313;
    border-radius: 1vw;
    justify-content: center;
    align-items: center;
    width: 33vw;
    height: auto;
    margin: 1vw;
    display: flex; 
  }

 





  .marquee-advanced__item-width img{
      width:100%;
      height: auto;
      border-radius: 0.5vw;
  }
  
  
  /* Optional: Rotating arrow left/right based on Scroll Direction */
  
  .marquee__advanced__arrow-svg,
  [data-marquee-direction="right"][data-marquee-status="inverted"] .marquee__advanced__arrow-svg {
    transition: 0.5s cubic-bezier(0.625, 0.05, 0, 1);
    transform: rotate(-180deg);
  }
  
  [data-marquee-status="inverted"] .marquee__advanced__arrow-svg,
  [data-marquee-direction="right"][data-marquee-status="normal"] .marquee__advanced__arrow-svg {
    transform: rotate(-359.999deg);
  }


.relative{
    position:relative;
    z-index:10;
}




  nav.navigation {
    display: flex;
    background: #000;
    border-radius: 90px;
    padding: 0 1rem;
    margin: 0;
    z-index: 198;
}

nav.navigation ul {
    padding: 0;
    margin: 0;
}


.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.video-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scale-text{
    transform-origin: center; /* Ensures proper scaling */
    will-change: transform; /* Optimizes performance */
    image-rendering: crisp-edges; /* Sharpens images, if any */
    backface-visibility: hidden; /* Prevents blurriness */
    perspective: 1000px; /* Helps maintain clarity */
}



.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle div {
    background: #333;
    height: 4px;
    margin: 5px 0;
    transition: 0.3s;
    
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    z-index: 1000;
  }

  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    margin: 15px 0;
    opacity: 0;
  }

  @media (min-width: 1024px) {
    .menu-toggle {
      display: none;
    }
 
  }
  @media (max-width: 1024px) {
    a.btn-contact{
        display: block!important;
    }
    nav.navigation,.dotted-img-01,.dotted-img-02,.footer_socials{
        display:none;
    }

    .container{
        padding: 0 40px;
    }
    .parallax__title{
        font-size: 3.75em;
    }
    .text-xl,.service-title{
        font-size: 2em;
    }

    .section,.section-resource {
        padding-bottom: 10.7698412698vh;
        padding-top: 12.7698412698vh;
    }
    .footer{
        padding: 8vh 2rem!important;
 
    }
}

@media (max-width: 768px) {
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 0!important;
    padding-left: 0!important;
}
}


  .subtitle {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 500;
    font-size: 1em;
    color: #F58321;
}

.col-title {
    font-size: 2em;
    margin-bottom: 40px;
    color: #FF3400;
}



.dotted-img-01 {
    position: absolute;
    left: 0;
    rotate: 180deg;
    z-index: 1;
}
.dotted-img-02 {
    position: absolute;
    right: 0;
    rotate: -180deg;
    z-index: 1;
}

.dotted-img-02 {
    position: absolute;
    right: 0;
    rotate: 180deg;
    transform: scaleX(-1);
    z-index: 1;
}



.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 2em;
    padding-left: 2em;
}




/*SerVICES*/
.service-wrapper,.work-wrapper{
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.service-empty {
    z-index: 10;
    background-color: #111;
    opacity: 0;
    pointer-events: none;
    max-height: calc(100 * 1svh);
    width: 100%;
    height: 100%;
    position: absolute;
}


.service {
    align-content: center;
    background:#161042;
    padding: 3em 0;
    display: flex;
    align-content: center;
    align-items: center;
    margin: 0;
    border-top:1px solid rgba(255,255,255,0.05);
    border-bottom:1px solid rgba(255,255,255,0.05);
    position:relative;
    -webkit-transition:all .4s cubic-bezier(.165,.84,.44,1);
    transition:all .4s cubic-bezier(.165,.84,.44,1);
    overflow: hidden;
}
.service .dark-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#000, #0000);
    top:0;
    z-index: 0;
    opacity: 0;
}
.service:hover{
    -webkit-transition:all .4s cubic-bezier(.165,.84,.44,1);
    transition:all .4s cubic-bezier(.165,.84,.44,1);
    color:#FFF; 
}
.service:after{
    content: '';
    position:absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    background-color: #160e35;
    -webkit-transition:all .4s cubic-bezier(.165,.84,.44,1);
    transition:all .4s cubic-bezier(.165,.84,.44,1);
}
.service:hover:after{
    transform: translateY(0%);
}

.service-title {
    font-size: 2em;
}
.service .subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    font-size: 0.75em;
    color: #FF3400;
}
.service-number {
    color: #FF3400;
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 1px;
    display: flex;
    width: 60px;
    height: 60px;
    border: 2px solid #FF3400;
    border-radius: 100%;
    text-align: center;
    justify-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    -webkit-transition:all .4s cubic-bezier(.165,.84,.44,1);
    transition:all .4s cubic-bezier(.165,.84,.44,1)
}
.service-number.minimal {
    border:none;
    width:auto;
    height:auto;
    font-size: 1em;
}
.service:hover .service-number.minimal{
    color:#FFF;
    background: transparent;
}
.service:hover .service-number{
    color:#FFF;
    border-color:#FF3400;
    scale: 1.2;
    background: #FF3400;
}
ul.service-list {
    list-style: square;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 2px;

}

p.service-description {
    font-size: 0.85em;
    padding: 0;
    margin:0;
}
.service:hover  .service-description{
    color:#FFF;
}
.service.is--first{
    z-index: 99;
}

.service.is--first{
    z-index: 6;
}
.service.is--second{
    z-index: 5;
}
.service.is--third{
    z-index: 4;
} 
.service.is--fourth{
    z-index: 3;
}
.service.is--fifth{
    z-index: 2;
}

.animate-text {
    word-break: keep-all;
    white-space: normal;
  }
  
  .animate-text .char {
    display: inline;
    opacity: 0.5;
    will-change: opacity;
  }

 

 

.cover-bg .overlay{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 0;
    background:#19124B;
    opacity: 0.85;
}

.absolute-title {
    position: absolute;
    bottom: 50px;
}
.video-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}


.avatar-photo {
    position: absolute;
    background-image: url(../assets/avatar-photo.jpg);
    background-size: cover;
    z-index: -1;
    opacity: 0.1;
    border-radius: 20px;
    overflow: hidden;
    width: 500px;
    height: 500px;
    margin-bottom: 30px;
    left: 10%;
    top: 10%;
    display: none;
}


a.btn-contact {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .2em;
    padding: 1.2rem 1.5rem;
    width: auto;
    font-weight: 600;
    text-align: center;
    color: #FFF;
    background: #FF3400;
    border-radius: 100px;
    display: none;
}

/*--------------------------------FOOTER--------------------------------*/
.footer {
    background-color: #161042;
    margin-top: 8vh;
    border-radius: 0;
    position: relative;
    padding: 8vh 5rem;
    overflow: hidden;
   
}
 
.bottom-text {
    width: 100%;
    position: relative;
    opacity: 0.25;
    transform: translateY(15%);
    height: 120px;
    color:#FFF;
}
.bottom-text  svg{
    width:100%;
    height:auto;
}

.footer .avatar {
    max-width: 220px;
    position: relative;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}
.footer .avatar .overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index: 1;
    background-color: #19124B;
    opacity: 0.65;
}

.footer .avatar img {
   width:100%;
    position: relative;
    height: auto;
}

ul.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.footer-social li {
    padding: 10px 0;
    color: #FFF;
}


ul.footer-social li a {
    color: #f7cdc0;
    font-size: 1.75em;
    font-weight: 500;
    -webkit-transition:all .4s cubic-bezier(.165,.84,.44,1);
    transition:all .4s cubic-bezier(.165,.84,.44,1)
}

ul.footer-social li a:hover,ul.footer-links li a:hover{
    color: #FF3400;
}

ul.footer-social li a:before {
    content: '';
    width: 10px;
    height: 10px;
    position: relative;
    float: left;
    background: #FF3400;
    top: 21px;
    margin-right: 15px;
    border-radius: 100px;
    -webkit-transition:all .4s cubic-bezier(.165,.84,.44,1);
    transition:all .4s cubic-bezier(.165,.84,.44,1)
}


ul.footer-social li a:hover:before{
    scale: 2;
    box-shadow: 0 0 20px #FF3400;
}

ul.footer-links {
    list-style: none;
    padding: 0;
    margin:20px 0 0 0;
}

ul.footer-links li {
    padding: 10px 0;
    margin-bottom: 10px;
    display:inline-block;
}

ul.footer-links li a {
    color: #f7cdc0;
    font-size: 1.25em;
    font-weight: 500;
    display:block;
    width:100%;
}
ul.footer-links li a:after{
    content: '';
    width: 1px;
    height: 1px;
    position: relative;
    float: left;
    display:block;
    background: #FF3400;
    opacity: 0;
    -webkit-transition:all .4s cubic-bezier(.165,.84,.44,1);
    transition:all .4s cubic-bezier(.165,.84,.44,1)
}

ul.footer-links li a:hover:after{
    opacity: 1;
    width:100%;
}

ul.footer-links li  span{
    display: block;
    width: 100%;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75em;
}

/*--------------------------------FOOTER--------------------------------*/


 

.tooltip-image {
    position: fixed;
   
    pointer-events: none;
    z-index: 999999;
    width: 150px;
    height: 150px;
    opacity: 0;
    transform: scale(0.95);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    will-change: transform, opacity;
  }