@charset "utf-8";
/* CSS Document */
 
    @import url('https://fonts.googleapis.com/css?family=Montserrat:400');
    @import url('https://fonts.googleapis.com/css2?family=Saira&display=swap');
    @import url('https://fonts.googleapis.com/css?family=Montserrat:300');
	@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
	@import url('https://fonts.googleapis.com/css2?family=Kulim+Park:wght@600&display=swap'); 
	@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@900&display=swap');
	@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@1&display=swap');
	@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


		:root {
			--YG: #B3D143; 
  --fade:150px;
			
		}
 
/* UX/UI FONTS LABELS Desktop FULL HD #########################################################*/
 
	.labelTitle{   
		font-size: 55px; 
	}
	.labelSubtitle{ 
		font-size: 27px;     
	}
	.labelText{  
		line-height: 1.2;
		font-size: 19px;  	 
	} 
/*##########################################################
	   0.0 SCROLLBAR
##########################################################*/ 
::-webkit-scrollbar{
  width: 10px;
  background: #fff;
} 
::-webkit-scrollbar-track{  
  width: 8px;
	
	
}
::-webkit-scrollbar-thumb {
  background: rgba(179,209,67,1.0); 
  border-radius: 33px;  
}
::-webkit-scrollbar-thumb:hover {
}

/*##########################################################
	   0.0 custom cursor
##########################################################*/ 
    .cursor-dot {
      top: 0px;
      left: 0px;
      position: fixed;
      width: 10px;
      height: 10px;
      background-color: yellowgreen;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9999999; 
    }
    .cursor-ring {
      top: -20px;
      left: -20px;
      position: fixed;
      width: 50px;
      height: 50px;
      border: 1px solid yellowgreen;
      border-radius: 50%;
      pointer-events: none;
      
		transform: translate(-50%, -50%);
      z-index: 99999999;
    }
    .cursor-dot.is-hover {
      top: 0px;
      left: 0px;
      position: fixed;
      width: 5px;
      height: 5px;
      background-color: yellowgreen;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 99999999999; 
    }
    .cursor-ring.is-hover {
		box-shadow: 0 0 55px 1px yellowgreen;
		transition: 0.5s ease all;
      top: -45px;
      left: -45px;
      position: fixed;
      width: 100px;
      height: 100px;
      border: 1px solid yellowgreen;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 999999999;
		background-color: rgba(0,0,0,0.10);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px); 
    }
a:hover,
button:hover,
input:hover,
textarea:hover,
select:hover,
label:hover,
h1:hover,
h2:hover,
h3:hover,
h4:hover,
h5:hover,
h6:hover,
p:hover,
div:hover,
label:hover,
*[role="button"]:hover{
	cursor: none !important;
}
    * {
	cursor: none !important;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
		font-family: "Inter", sans-serif;
    }
    body {
	cursor: none !important;
        background: white;
        overflow-x: hidden;
		font-family: "Inter", sans-serif;
		transition: all ease 1s;  
	padding: 0; 
	margin: 0;
	background-color: #111;
		isolation: isolate;
    }
.SEO{ 
	display: none;
}
    #scrollConsole {  
		display: none;
        position: fixed;
        bottom: 10px;
        left: 10px;
        padding: 8px 14px;
        background: rgba(255,255,255,0.1);
        color: #0f0;
        font-family: monospace;
        font-size: 14px;
        border: 1px solid rgba(0,255,0,0.4);
        border-radius: 6px;
        z-index: 999999;
        backdrop-filter: blur(5px); 
    }
/* ===== Snap and scroll Luxury propieties  ===== */
.content {
  position: relative;
	
  top: 0;
  left: 0;
  width: 100%;
	padding: 0; 
	margin: 0;
      height: 100vh; 
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
      overflow-x: hidden;
}
.section{
	min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      scroll-snap-align: start; 
}
.content{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.content.no-snap{
  scroll-snap-type: none;
}
.snap-section{
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
/* animation next */
.swIntro{
  pointer-events: none;
		width: 100vw;
		height: 100vh;
		overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 1;
	z-index: 99999999;
	transition: all ease 1s;
	animation: swFadeOut 2.5s forwards; 
	
	background-color: white;
	 
	}
.imgFdw {
  width: 133px;
  height: 133px;
  display:block;
	transition: all ease 1s;
	animation: swFadeIn 2.5s forwards; 
}

/* ===== KEYFRAMES ===== */
@keyframes swFadeOut {
  0%{ opacity: 1;  } 
  80%{ opacity: 1; } 
  90%{ opacity: 0; } 
  100%{ opacity: 0;;
	}
	
}
@keyframes swFadeIn {
  0%{ transform: scale(0);}  
	 
  100%{ transform: scale(1);}  
	 
}
@keyframes swZoomOut {
  0%{ transform: scale(1);}  
  80%{ transform: scale(1);}  
	 
  100%{ transform: scale(0);}  
	 
}
.image-split-container {
  height: 100vh;
  width: 100vw;
  position: relative; 
	margin:  auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
/* CONTENEDOR BASE */
.image-split-color {
  mix-blend-mode: darken;
  position: absolute;
  inset: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.image-split-color > div {
  position: relative;
  background: #fff; 
	border: 1px solid transparent;
}
.image-split-color > div::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: lighten;
}
/* MAGENTA */
.image-split-magenta {
  animation: splitMagenta 1s ease-in-out infinite;
}
.image-split-magenta::after {
  background: #ff00ff;
}
/* CYAN */
.image-split-cyan {
  animation: splitCyan 1s ease-in-out infinite;
}
.image-split-cyan::after {
  background: #00ffff;
}
/* YELLOW */
.image-split-yellow {
  animation: splitYellow 1s ease-in-out infinite;
}
.image-split-yellow::after {
  background: #ffff00;
}
/* ===== KEYFRAMES ===== */
@keyframes splitMagenta {
  0%, 20%, 100% { transform: translateX(0); }
  40%, 60% { transform: translateX(-30px); }
}
@keyframes splitCyan {
  0%, 100% { transform: translateY(0); }
}
@keyframes splitYellow {
  0%, 20%, 100% { transform: translateX(0); }
  40%, 60% { transform: translateX(30px); }
}
/* TEXTO */
.instruction {
  font-family: Montserrat, sans-serif;
  font-size: 1.3em;
  color:#aaa;
  margin-bottom: 30px;
}

/* animation next */
#next{
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
  z-index: 9999999999;
	justify-content: space-around;
	display: flex;
	align-items: center;
}	
#next.activeNext {
  opacity: 1;
}	
#next img{
		width: 133px;
		height: 133px;
	}	 

    /* HEADER */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        display: grid;
        align-items: center;
        padding: 0 0px; 
        transition: all 1s ease;
        color: white;
    z-index: 9999999;
    pointer-events: auto;
    }
	.topHeader{
		position: absolute;
		top: 0;
		width: 100%;
		display: flex;   	
		justify-content: center;   /* 👈 centra horizontalmente */
		align-items: center;
		margin: 0 ;
		height: auto;
		padding: 13px 10%;
		border-bottom: 1px solid #aaa;
	}
	.phone{
		color: white;
		text-decoration: none;
		font-weight: 700;
		margin: 0px auto 0px  0px; 
	}
	.quate{ 
		color: white;
		text-decoration: none;
		font-weight: 700;
		margin: 0px  0px 0px  auto;
	}
    header img {
        height: 40px;
		width: 300px;

        margin: 55px 10% 13px 10%;
        transition: all 1s ease;
    }
    header.scrolled {
		background-color: white;
        color: black;
		height:100px;
    }
	#btnOpenNav{
			display:none;
		} 
	#sideNav{
		display: none;
	}
	@keyframes sideNavAnimation{
	0%{ 
		opacity: 0;
		width: 0%;
		height: 0%;
		border-radius: 100%;
		margin-left: 50%;
		margin-top: 50%;
	}
	50%{ 
	opacity: 0;
		width: 0%;
		height: 0%;
		border-radius: 100%;
		margin-left: 50%;
		margin-top: 50%;
	}
	100%{ 
		  opacity: 1; 
		 width: 100%;
		height: 100%;
		border-radius: 0%;
		margin-left: 0%;
		margin-top: 0%;
	}
}
	@keyframes sideNavContentAnimation{
	0%{ 
		opacity: 0; 
	}
	70%{ 
		  opacity: 0;  
	} 
	100%{ 
		  opacity: 1;  
	}
}
	.more{
		position: relative;
		margin: auto auto;
		text-decoration: none;
		font-size: 21px;
		padding: 14px 38px;
    border: none;
    border-radius: 14px;  
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, gold, darkgoldenrod);
    box-shadow:
        0px 6px 15px rgba(0,0,0,0.4),
        inset 0px -2px 4px rgba(255,255,255,0.1),
        inset 0px 3px 6px rgba(0,0,0,0.4);

    backdrop-filter: blur(6px);
    letter-spacing: 0.5px;
    transition: all 1s ease;
	}
	.more:hover{ 
    color: green;
    background: linear-gradient(135deg, #eee, #fff); 
	} 
	
	
	
/* -------------------- NAVBAR -------------------- */
.navbar{
    width: 100%;  
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 20;
	padding: 0; 
	font-family: 'Nunito Sans', sans-serif;  
}
.nav-left{
    display: flex;
    align-items: center;
    gap: 21px;	
	height: 50px;
    margin: 50px 10% 0 0%; 
	bottom: 0;
}
.logo{
    font-size: 32px;
    font-weight: bold;
    color: #b0ff00;
}
.nav-item{
    position: relative;
    padding: 8px 0;
    cursor: pointer;
    font-size: 17px;
}
.itemIconNav{
	text-decoration: none;
	display: flex; 
	margin: 13px;
	border-radius: 13px;
	}
.itemIconNav:hover{
		background-color: #fff; 
	}
.itemIconNav img{
		height: 55px;
	    width: 55px;
		margin: auto 5px;
	}	
.itemIconNav p{ 
	    width: 121px; 
		margin: auto 5px;
	}	 
.nav-item::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #b0ff00;
    transition: 0.3s;
}
.nav-item:hover::after{
    width: 100%;
}
.nav-item:hover{
	color: #aaa;
} 
.mega-menu{
    position: absolute;
    top: 120%;
    right: -50%;
    width: auto;
    background: #ddd;
	color: #333; 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);

    /* 🔥 Oculto por defecto */
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px); /* aparece desde abajo */
    transition: 
        opacity .35s ease, 
        transform .35s ease,
        visibility .35s ease;
} 
.nav-item:hover .mega-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
} 
.menu-col > a{
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
} 
.arrow{
    font-size: 12px;
    margin-left: 5px;
}
a.contact{
	width: 133px;
	display: flex;
	align-items: center; 
	background-color: #B3E10A;
	font-family: 'Nunito Sans', sans-serif; 
	letter-spacing: 1px;
	transition: linear 0.6s;
	font-size: 17px;
	font-weight: 500;
	padding: 5px 10px;
	color: #fff;
	height:40px;
	margin:  25px 25px;
	text-decoration: none;
	}
a.contact:hover{  
	background-color: #fff; 
	} 
.marquee-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 33px;
  width: 100px; 
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
}
.marquee {
  position: absolute;
  display: block;
  width: 300%;
  padding: 0;
  margin: 0;
  background: transparent;
  animation: marquee-scrolling 13s linear infinite;
  -webkit-animation: marquee-scrolling 13s linear infinite;
}
.marquee ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
	display: inline-flex;
}
.marquee ul li {
	z-index: 1;
  float: left;
  width: 100%;
  color: black;
  background: transparent;
  overflow: hidden;
	font-family: 'Roboto', sans-serif; 
} 
@keyframes marquee-scrolling {
  0% {
    left: 100%;
  }

  100% {
    left: -200%;
  }
}	
	 

/**********************************************************************************************
	0.x hero
**********************************************************************************************/	
/* Contenedor fijo */
.canvas-wrapper {
  position: fixed;
  inset: 0; 
	width: 100%;
	height: 100vh;
	pointer-events: none;
	z-index: 1; 
}

@keyframes bgMove{
  0% {
    background-position: 50% 50%;
  }
 
  50% {
    background-position: 200% center;
  
}	
	 100% {
    background-position:50% 50%;
  
	}	
}
canvas {
  display: block;
}
.hero{
		width: 100%;
		height:100vh; 
		background-image: url("../websites.jpg");
	background-size: 100% 100%;
	position: relative; 
	}
.heroBox{
		width: 100%;
		height:100%;
	background-image: linear-gradient(rgba(2,2,2,0.8),rgba(2,2,2,0.5),rgba(2,2,2,0.3));
	display: flex;
	align-items: center;
	justify-content: center; 
	} 
.slide-video {
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
	} 
.slider{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
} 
.slide{
  position:absolute;
  inset:0; 
  z-index:1;
	
	display: flex;
	flex-direction: column;
}
.slide::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
} 
.slide.active{z-index:2}
.slide.incoming{
  z-index:3;
  clip-path:inset(0 100% 0 0);
  animation:reveal 1.3s cubic-bezier(.77,0,.18,1) forwards;
} 
@keyframes reveal{
  to{clip-path:inset(0 0 0 0)}
} 
.contentF{
  position:relative;
  max-width:40%;
  color:#fff;
  z-index:5;
	display: flex;
	flex-direction: column;
	margin: auto auto 5% 10%;
} 
.titleS{   
	margin:0; 
	height: auto;
	text-align: left;
	
  opacity:0;
  transform:translateY(-1000px);

  transition: all ease 1s;
	
	
	border-top-right-radius: 21px;
	border-top-left-radius: 21px; 
	font-family: 'Nunito Sans'; 
	background: linear-gradient(45grad,rgba(179,255,7,1),darkgreen);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
	padding: 21px 21px 0 21px;
	
}
.textS{
	background-color: rgba(2,2,2,0.7);
	backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); 
	width: 100%;  
	font-weight: 200;
	margin:0;
	color: #fff; 
	background-size: 600% 600%; 
	animation: fade linear 1.5s;
	padding: 21px 21px 0 21px;
	
  opacity:0;
  transform:translateY(-1000px);
  
  transition: all ease 1s;
	
}
.textG{ 
	border-bottom-right-radius: 21px;
	border-bottom-left-radius: 21px; 
	padding: 0 21px 21px  21px;
	background-color: rgba(2,2,2,0.7);
	backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); 
	width: 100%;   
	margin:0;
	color: #b3d143; 
	background-size: 600% 600%; 
	animation: fade linear 1.5s; 
	
  opacity:0;
  transform:translateY(-1000px);

  transition: all ease 1s;
	
}
@keyframes fade{ 
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
} 
a.btn{
  opacity:0;
  transform:translateY(-1000px);
  transition: all ease 1s;
	
  display:inline-block;
  padding:14px 36px;
	margin: 13px auto auto 21px;
  text-decoration:none;
  font-weight:600;
  border-radius:40px;
	background-color: rgba(2,2,2,0.5);
	backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
	color: white;
	border: 1px solid white;
}
a.btn:hover{  
	border: 1px solid var(--YG);
	color: black;
	background-color: var(--YG);
}
.slide.show-text .contentF h2,
.slide.show-text .contentF p,
.slide.show-text .contentF a{
  opacity:1;
  transform:translateY(0);
}
.slide.show-text .contentF h2{transition-delay:1.3s}
.slide.show-text .contentF p{transition-delay:0.8s}
.slide.show-text .contentF a{transition-delay:0.51s}
.slide.hide-text .contentF h2,
.slide.hide-text .contentF p,
.slide.hide-text .contentF a{
  opacity:0;
  transform:translateY(0px);
  transition-delay:0s;
} 
.dots{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:14px;
  z-index:10;
}
.dot{
  width:26px;
  height:6px;
  background:rgba(255,255,255,.35);
  border-radius:20px;
  transition:.4s cubic-bezier(.77,0,.18,1);
}
.dot.active{
  width:54px;
  background:yellowgreen;
}

/**********************************************************************************************
	0.x Dreams
**********************************************************************************************/	
.blend{
	mix-blend-mode: difference;	color: white;z-index: 5;
	width: 80%;
	margin: auto;
	text-align: center;
	font-size: 55px;
}

/**********************************************************************************************
	0.x clusters
**********************************************************************************************/
#lastSnapSection{
	z-index: 5;
	position: relative;
	background-color: white;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.cluster{
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
}
.labelClusterOne{
	margin: auto auto 0 auto;
}
.labelClusterTwo{
	margin:0 auto auto  auto;
}


/**********************************************************************************************
	0.x Brands 
**********************************************************************************************/
.brands{
	display: flex;
	flex-direction: column;
	width: 100%; 
}
#labelOne{
	pointer-events: none;
	opacity:0 ;
	position: fixed;
	mix-blend-mode: difference;
	
	background: linear-gradient(45grad,white,dodgerblue);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; z-index: 5;
	width: 100%;
	top: 35%;
	text-align: center;
	font-size: 55px; 
	transition: 1s ease all;font-family: 'Nunito Sans';  
	font-weight: 500;
}
#labelTwo{font-family: 'Nunito Sans';  
	font-weight: 500;
	mix-blend-mode: difference;	 z-index: 5;
	  width: 100%;
	pointer-events: none;
	opacity:0 ;
	position: fixed;
	top: 50%;
	text-align: center;
	font-size: 55px;
	transition: 1s ease all;	 
	background: linear-gradient(45grad,gold,yellow);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
}
#labelThree{font-family: 'Nunito Sans';  
	font-weight: 500;
	mix-blend-mode: difference; z-index: 5;
 width: 100%;
	pointer-events: none;
	opacity:0 ;
	position: fixed;
	top: 65%;
	text-align: center;
	font-size: 55px;
	transition: 1s ease all;
	background: linear-gradient(45grad,purple,white);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
}

/**********************************************************************************************
	0.x live
**********************************************************************************************/
.live{
	display: flex;
	flex-direction: column;
	width: 100%; 
	background-color: #111;
}
.UX{ 
	display: flex;
	flex-direction: column;
	width: 100%; 
	background-color: rgba(17,17,17,0.80);
	backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px); 
	z-index: 5;
	position: relative; 
	height: 100%;
}
.ux{ 
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
} 
.uxBox{ 
	z-index: 5;
	width: 100%;
	height: 100%; 
	margin: 0 auto;
	text-align: center;
	display: flex; 
	padding: 0 10%;
}
.uxItem{
	width: 50%;
	height: 100%; 
	display: flex;
	flex-direction: column;
}
.uxTitle{ 
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,orangered,yellow);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	z-index: 5;
	width: 100%;
	margin: auto auto 0 auto; 
	text-align: right; 
	padding: 0 21px 21px  21px; 
}
.uxTitle span{
	background: linear-gradient(45grad,white,beige);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
}
.uxText{
	mix-blend-mode: difference;	
	color: white;
	z-index: 5;
	width: 100%;
	text-align: right;
	margin: 0 auto auto auto;  
	padding:  21px  21px; 
	backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); 
}
.uxItem video{
	width: 50%;
	height: 50%;
	margin: auto;
}

/**********************************************************************************************
	0.x Technologies
**********************************************************************************************/
.technologies{ 	
	display: flex;
	flex-direction: column;
	width: 100%; 
	background-color: #111;
	height: auto;
	z-index: 5;
	position: relative;
} 
.technologiesTitle{ 
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,orangered,red,brown);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin:auto auto 0px auto;
}
.technologiesSubtitle{ 
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,yellowgreen,green);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin: 5px auto;
}
.technologiesCarrosels{
	margin:0 0 auto 0;
	display: flex;
	flex-direction: column;
}
.containerFDJ {
      width: 100%; 
      margin: 0px auto;
      overflow: hidden;
    }
.carouselFDJ {
      display: flex;
      gap: 0px;
      overflow: hidden;
      scroll-behavior: smooth;
    }
#carousel2FDJ{
	background-color: #111;
}
#carousel1FDJ{
      background: #fff;
}
#carousel4FDJ{
	background-color: #111;
}
#carousel3FDJ{
      background: #fff;
}
.carousel-cardFDJ {
      flex: 0 0 calc((100% - 00px) / 6);
      border-radius: 0px;
      overflow: hidden;
	border: 0.1px solid #222;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
      height: 200px;
	width: 200px;
	display: flex;
    }
.carousel-cardFDJ img {
      width: 75%;
      height: 75%;
	margin: auto;
    }
@media (max-width: 1023px) {
      .carousel-cardFDJ {
        flex: 0 0 calc((100% - 40px) / 3);
      }
    }
@media (max-width: 766px) {
      .carousel-cardFDJ {
      flex: 0 0 calc((100% - 00px) / 2);
      }
    }


/**********************************************************************************************
	0.x Technologies
**********************************************************************************************/
.search{
	display: flex;
	flex-direction: column;
	width: 100%; 
	background-color: #111;
	height: 100vh;
	z-index: 5;
	position: relative;
}
.clusterBox{ 
	z-index: 5;
	width: 100%;
	height: 100%; 
	margin: 0 auto;
	text-align: center;
	display: flex; 
	padding: 0 10%;
}
.clusterItem{
	width: 50%;
	height: 100%; 
	display: flex;
	flex-direction: column;
}
.clusterItem1{
	width: 50%;
	height: 100%; 
	display: flex;
	flex-direction: column;
}
.clusterTitle{ 
	font-family: 'Nunito Sans'; 
	font-weight: 100; 
	background: linear-gradient(45grad,darkgreen,rgba(179,255,7,1));
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	z-index: 5;
	width: 100%;
	margin: auto auto 0 auto; 
	text-align: right; 
	padding: 0 21px 21px  21px; 
}
.clusterText{
	mix-blend-mode: difference;	
	color: white;
	z-index: 5;
	width: 100%;
	text-align: right;
	margin: 0 auto auto auto;  
	padding:  21px  21px;
	background-color: rgba(2,2,2,0.7);
	backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); 
}
.clusterText span{
	color: var(--YG);
}
/* window code*/
.sceneFdy{
  width:80%;
  height:60%;
  margin: auto auto 10% auto;
	border: 0px solid #aaa;
} 
.windowFdy{ 
  position:relative;
  width:100%;
  height:100%; 
	background:linear-gradient(135grad,#000,#1a1a1a,#000);
  backdrop-filter:blur(20px); 
  overflow:hidden;
  opacity:1;
  transition:opacity .8s ease;
	border: 0px solid #aaa;
}
.windowFdy.fadeAllFdy{
  opacity:0;
}
.headerFdy{
	border: 0px solid #aaa;
  height:46px;
  display:flex;
  align-items:center;
  padding:0 16px;
  gap:8px; 
  z-index:3;
	background:linear-gradient(#ccc,#aaa);
}
.dotFdyX{
  width:10px;
  height:10px;
  border-radius:50%;
  background:red;
}
.dotFdyO{
  width:10px;
  height:10px;
  border-radius:50%;
  background:orange;
}
.dotFdy{
  width:10px;
  height:10px;
  border-radius:50%;
  background:limegreen;
} 
.editorFdy{
	border: 0px solid #aaa;
  position:absolute;
  inset:46px 0 0 0;
  padding:22px;
  font-family:monospace;
  font-size:13px;
  line-height:1;
  color:#d6deeb;
  white-space:pre-wrap;
}
.keywordFdy{color:#82aaff}
.stringFdy{color:#c3e88d}
.functionFdy{color:#ffd580}
.commentFdy{color:#637777}
.cursorFdy{
  display:inline-block;
  width:8px;
  height:1.2em;
  background:#b1ff00;
  margin-left:2px;
  animation:blink 1s infinite;
}
@keyframes blink{
  0%,50%,100%{opacity:1}
  25%,75%{opacity:0}
} 
.searchOverlayFdy{
  position:absolute;
  inset:46px 0 0 0;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(3px);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:44px 24px;
  opacity:0;
  visibility:hidden;
  transition:.5s;
}
.searchOverlayFdy.showFdy{
  opacity:1;
  visibility:visible;
}
.searchWrapFdy{
  width:min(980px,92%);
}
.searchBarFdy{
  width:100%;
  min-height:64px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  padding:0 20px;
  gap:12px;
}
.searchInputFdy{
  flex:1;
  font-size:22px;
  color:#202124;
}
.searchCursorFdy{
  width:2px;
  height:1em;
  background:#202124;
  display:inline-block;
  animation:blink 1s infinite;
}
.resultsFdy{
  margin-top:28px;
  opacity:0;
  transform:translateY(10px);
  transition:.4s;
}
.resultsFdy.showFdy{
  opacity:1;
  transform:translateY(0);
}
.resultTitleFdy{
  font-size:28px;
  color:#1a0dab;
}
.resultDescFdy{
  color:#4d5156;
}


/**********************************************************************************************
	0.x uxui
**********************************************************************************************/
.uxui{
	width: 100%;  
		display: flex;
	flex-direction: column; 
	background-image:url("../paginas-web-en-guadalajara.jpg");
	background-size: 100% 100%;
	z-index: 5;
	position: relative; 
	height: 350vh;
  background-position: center;
  background-repeat:no-repeat;
  background-attachment:fixed; /* EFECTO PARALLAX */ 
}
.uxuiItem{
	display: flex;
	top: 20vh;
	position: sticky;
	height: 80vh;
	width: 100%;
	min-width: 80%;
	margin: 20vh auto 10vh auto;
	background-color: rgba(0,0,0,0.70);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
	border-radius: 8px;
	border: 1px solid #333;
}
.uxuiItem1{
	display: flex;
	top: 20vh;
	position: sticky; 
	height: 80vh;
	width: 100%;
	min-width: 80%;
	margin: 20vh auto 0 auto; 
	background-color: rgba(0,0,0,0.70);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
	border-radius: 8px;
	border: 1px solid #333;
}
.uxuiItem2{
	display: flex;
	top: 20vh;
	position: sticky; 
	border: 1px solid #333;
	height: 80vh;
	width: 100%;
	min-width: 80%;
	margin: 20vh auto 0 auto;
	background-color: rgba(0,0,0,0.70);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
	border-radius: 8px; 
}
.uxuiItem3{
	display: flex;
	top: 20vh;
	position: sticky; 
	border: 1px solid #333;
	height: 80vh;
	width: 100%;
	min-width: 80%;
	margin: 20vh auto 0 auto; 
	background-color: rgba(0,0,0,0.70);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
	border-radius: 8px; 
}
.uxuiBox{
	width: 100%;
	height: 100%; 
	margin: 0;
	padding: 21px;
	display: flex;
	flex-direction: column;
}
.uxuiHeader{
	width: 100%;
	height: 15%; 
	display: flex;
}
.uxuiHeader h6{
	color: var(--YG);
	margin: auto auto auto 0;
	font-weight: 200;
}
.uxuiHeader p{ 
	margin: auto 0 auto auto ;  
	color: white;
	font-weight: 200;
} 
.uxuiTitle{
	width: 100%;
	height: 25%; 
	border-top: 1px solid #333;
}
.uxuiTitle{
	width: 100%;
	height: 20%; 
	display: flex;
}
.uxuiTitle h5{
	color: white;
	margin: auto auto auto 0;
	font-weight: 200;
}
.uxuiTitle a{ 
	margin: 0 0 auto auto ;
	transform: rotate(0deg);
	transition: 1s ease all;
	text-decoration: none;
	display: flex;
}
.uxuiTitle a:hover{
	transform: rotate(45deg);
}
.arrow{
	width: 55px;
	height: 55px;
	margin: auto;
}
.uxuiBody{
	width: 100%;
	height: 60%; 
}
.uxuiItem .uxuiBody{
	background-image: url("../paginas-web-uxui.jpg");
  background-position: center;
  background-repeat:no-repeat;
  background-attachment:fixed; /* EFECTO PARALLAX */ 
	background-size: 100% 100%;
}
.uxuiItem1 .uxuiBody{
	background-image: url("../paginas-web-saas.jpg");
  background-position: center;
  background-repeat:no-repeat;
  background-attachment:fixed; /* EFECTO PARALLAX */ 
	background-size: 100% 100%;
}
.uxuiItem2 .uxuiBody{
	background-image: url("../paginas-web-ciberseguridad.jpg");
  background-position: center;
  background-repeat:no-repeat;
  background-attachment:fixed; /* EFECTO PARALLAX */ 
	background-size: 100% 100%;
}
.uxuiItem3 .uxuiBody{
	background-image: url("../paginas-web-activo-digital.jpg");
  background-position: center;
  background-repeat:no-repeat;
  background-attachment:fixed; /* EFECTO PARALLAX */ 
	background-size: 100% 100%;
}


/**********************************************************************************************
	0.x io
**********************************************************************************************/
.io{  
	width: 100%;  
		display: flex;
	flex-direction: column; 
	background-color: rgba(17,17,17,0.80);
	backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px); 
	z-index: 5;
	position: relative; 
	height: 305vh;
}
.ioBox{ 
	z-index: 5;
	width: 100%;
	height: 100%; 
	margin: 0 auto;
	text-align: center;
	display: flex; 
	padding: 0% 10% 0 10%;
}
.ioItem{
	width: 40%;
	height: 100%; 
	display: flex;
	flex-direction: column;
}
.ioTitle{ 
	position: sticky;
	top: 25%;
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,aqua,pink,yellow);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin: 21px auto;
	text-align: left;
	padding: 33px;
	font-style: normal;
}
.ioSubtitle{ 
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,dodgerblue,lightblue,white);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin: 5px auto;
} 
.business{
	position: relative;
	z-index: 2;
	width:60%; 
	background-image: linear-gradient(#fff,#fff);
	padding: 2% 0%; 
	display: flex;
	flex-direction: column;
} 
.businessTitle{	
	position: relative;
	width: 100%;
	height: 30vh; 
	margin: 0 0 0 0; 
	padding-bottom: 13px; 
	display: flex;
}
.businessTitleh3  {	
	font-size: 27px;
	background: linear-gradient(45grad,darkgoldenrod,purple, darkblue);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	margin: auto;
}
.businessBox{
	width: 100%;  
	display: flex;  
	flex-direction: column;
	margin: auto 0;
} 
.businessItem{
	display: flex;
	height: 55vh;
	padding: 0vh 0;
	border-top: 1px solid #aaa;
}
.businessContent{
	width: 50%;
	display: flex;
	flex-direction: column;
}
.businessContent img{
	width: 89px;
	height: 89px;
	margin: 8px  auto 0 10%;
}
.businessTitleh4  {	
	width: 90%; 
	margin: 0 auto auto auto;
	font-size: 27px; 
	display: flex;
	
} 
.businessTitleh4 h4{ 
	color: #333;
	font-weight: 400;
	text-align: left;
}
.businessTitleh4 span{
	border-bottom: 3px solid var(--YG) ;
	padding-bottom: -3px;
	color: #000 ;
	font-weight: 700;
}
.businessText {	
	width: 50%; 
	margin: 0;
	display: flex;
} 
.businessText p{
	margin: 97px auto auto 0;
	text-align:left;
	font-size: 17px;
	background: linear-gradient(45grad,#000,#333);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;  
}

/**********************************************************************************************
	0.x customers
**********************************************************************************************/
.customers{  
	width: 100%;  
		display: flex;
	flex-direction: column; 
	background-color: rgba(17,17,17,0.80);
	backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px); 
	z-index: 5;
	position: relative; 
	height: auto;
}
.customersBox{ 
	z-index: 5;
	width: 100%;
	height: 100%; 
	margin: 0 auto;
	text-align: center;
	display: flex; 
	padding: 0 10%;
}
.customersItem{
	width: 100%;
	height: 100%; 
	display: flex;
	flex-direction: column;
}
.customersTitle{ 
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,aqua,#44D180,blue);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin: 21px auto;
}
.customersSubtitle{ 
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,dodgerblue,lightblue,white);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin: 5px auto;
}

/**********************************************************************************************
	0.x prepared
**********************************************************************************************/
.prepared{ 	
	display: flex;
	flex-direction: column;
	width: 100%; 
	background-color: #111;
	height: 100vh;
	z-index: 5;
	position: relative;
} 
.preparedTitle{ 
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,yellowgreen,green);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin: 21px auto;
}
.preparedSubtitle{ 
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,yellowgreen,green);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin: 5px auto;
}
 



/**********************************************************************************************
	0.x clippath section
**********************************************************************************************/
.stackFdz{
  --nFdz: 6;
  --stageFdz: 140vh;
  position: relative;
  width: 100%;
  height: calc(var(--nFdz) * var(--stageFdz));
  background: #000;
  overflow: visible;
  isolation: isolate;
  z-index: 2;
}
.pinFdz{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.slideFdz{
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slideMaskFdz{
  position: absolute;
  inset: 0;
  clip-path: inset(100% 0 0 0);
  transform: translate3d(0,18px,0);
  will-change: clip-path, transform;
}
.slideFdz:first-child .slideMaskFdz{
  clip-path: inset(0% 0 0 0);
  transform: translate3d(0,0,0);
}
.bgFdz{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  filter: saturate(.95) contrast(1.05);
}
.bgFdz::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
}
.contentFdz{
  position: relative;
  z-index: 2;
  width: 100%;
	margin: auto;
  height: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cardFdz{
	margin-top: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  --frameFdz: #ffffff;
  width: 400px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  position: relative;
  border: 10px solid var(--frameFdz);
}
.cardFdz::before{
  content: "";
  position: absolute;
  inset: 12px; 
  pointer-events: none;
  z-index: 2;
}
.cardFdz::after{
  content: "";
  position: absolute;
  inset: -10px; 
  pointer-events: none;
  opacity: .55;
}
.cardFdz img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contentCards{
			display: grid;
		}	
.numFdz{
  position:relative;
  margin: 20% 0 auto auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(88px, 14vw, 170px);
  line-height: .85;
  letter-spacing: -2px;
  opacity: .95;
  z-index: 3;
  pointer-events: none; 
	padding: 33px;
}
.numFdzOne{	
	background-color: #222;
  color: var(--YG);
}
.numFdzTwo{ 
  color: var(--YG); 
	background-color: #fff; 
}
.labelFdz{
   position:relative;
  margin: auto auto 0 0; 
  width:300px;
	height: 100px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px; 
  z-index: 3;
  color: #fff;
  pointer-events: none;
	background-color: #222;
	padding: 13px;
}
.labelFdz b{
  display: block;
  letter-spacing: .22em;
  font-weight: 700;
  margin-top: 6px;
	color: var(--YG)
}
.stackFdz,
.stackFdz *{
  scroll-snap-align: none !important;
}



/**********************************************************************************************
	0.x footer
**********************************************************************************************/	
footer{
		width: 100%;
		height:auto; 
		background-image: url("../paginas-web-en-guadalajara-jalisco.jpg");
	background-size: cover;
	z-index: 2;
	position: relative;
	}
.footerBox{ 
		width: 100%;
		height:100%; 
	display: flex; 
	padding: 20% 0 10% 0;
	}
.footerBoxItem{
	width: 20%; 
	margin: 0 2.5%; 
	display: flex;
  flex-direction: column;
  gap: 8px; /* separación elegante */

}
.footerTitle{
	color: #fff;
	font-size: 33px;
	font-family: 'Nunito Sans', sans-serif; 
	width: 100%;
}
.footerNumber{
	color: #bbb;
	font-size: 27px;
	font-family: 'Nunito Sans', sans-serif;  
	width: 100%;
	
}
.footerAddress{
	color: #eee;
	font-size: 17px;   
	font-weight: 100;
	font-family: "Segoe UI";
	width: 100%;
	text-decoration: none;
	transition: all ease 1s;
}
.footerAddress:hover{
	color: var(--YG);
}
.footerEmail{
	color: var(--YG);
	font-size: 17px; 
	font-weight: 300; 
	width: 100%;
}
.footerLine{ 
	width: 100%;
	height: 1px;
	background-color: white; 
}
.social{
	display: flex; 
}
.social a{
	text-decoration: none;
	margin-right: 13px;
}
.social img{
	width: 33px;
	height: 33px;
}

/* CONTENEDOR */
.card {
  position: relative;
  padding: 1px; /* grosor del borde */
  border-radius: 0px;
  background: linear-gradient(
    90deg,
    #d6ff3f,
    #00ffcc,
    #00eaff,
    #d6ff3f
  );
  background-size: 300% 300%; 
	box-shadow:  0 0 0 0 #222;
}

/* EFECTO GLOW */
.card::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 14px;
  background: inherit;
  filter: blur(0px);
  opacity: 0.4;
  z-index: 0;
	box-shadow:  0 0 0 0 #222;
}

/* IMAGEN */
.card img {
  padding: 5px;
  display: block;
  width: 33px;
  height: 33px;
  border-radius: 0px;
  background: #111;
  position: relative;
  z-index: 1;
}


/* ======================================== */ 
.pie{
			display: flex; 
	flex-direction: column;
	align-items: center;
			margin: 0 auto;
	background-image:linear-gradient(#dcdcdc,#fff); 
	bottom: 0; 
	width: 100%;
	position: relative;
	padding: 21px 0;
	z-index: 2
		;
		}
		.pie a{
			display: flex;
			text-decoration: none;
			transition: ease 1s all; 
		}
		.pie a:hover p{
			color: var(--LIGHTBLUE);
		}
		.pie img{
			width: 17px;
			height: 17px;
			margin: auto 0px auto 0px;
		}
		.pie p{
			color: #666;
			transition: ease 1s all;
			font-size: 17px;
			margin:  auto 21px auto 5px;
			font-weight: 400;
		}
		.p{
			transition: ease 1s all;
			color: #aaa;
			font-size: 17px;
			margin:  5px auto ;
			text-decoration: none;
			font-weight:400;
		}
		.p:hover{
			color:forestgreen;
			font-weight:500;
		} 
		 
      

/* ================= clip path ================= */
/* ================= Aanimaton ================= */
.observe { 
  position: relative;
  overflow: hidden;
	
}
.title {  
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 4;
} 
.title span {
  display: inline-block;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 0.2em;
} 
.title.show span {
  clip-path: inset(0 0 0 0);
} 
.title::after {
  content: "";
  position: absolute;
  inset: -40px; 
  filter: blur(60px);
  z-index: -1;
} 
.title1 {  
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 4;
} 
.title1 span {
  display: inline-block;
  clip-path: inset(0% 0 100% 0);
  transition: clip-path 2s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 0.2em;
} 
.title1.show span {
  clip-path: inset(0 0 0 0);
} 
.title1::after {
  content: "";
  position: absolute;
  inset: -40px; 
  filter: blur(60px);
  z-index: -1;
} 

/*███   On screens that are Tablet 1024px and  767px for Mobile Version  █████████████████████████████████████████████-*/ 
/*███   On screens that are Tablet 1024px and  767px for Mobile Version  █████████████████████████████████████████████-*/ 
/*███   On screens that are Tablet 1024px and  767px for Mobile Version  █████████████████████████████████████████████-*/ 
	@media(max-width: 1024px) {
		
	.labelTitle{  
		font-weight: 700;  
		font-size: 33px; 
	}
	.labelSubtitle{ 
		font-size: 21px; 
		font-weight: 700;    
	}
	.labelText{  
		line-height: 1.2;
		font-size: 15px; 
  		font-weight: 300; 	 
	} 
		/*##########################################################
	   0.0 SCROLLBAR
##########################################################*/ 
::-webkit-scrollbar{
  width: 0px;
  background: #fff;
} 
::-webkit-scrollbar-track{  
  width: 0px;
	
	
}
::-webkit-scrollbar-thumb {
  background: rgba(179,209,67,1.0); 
  border-radius: 33px;  
}
::-webkit-scrollbar-thumb:hover {
}
		
/*##########################################################
	   0.0 custom cursor
##########################################################*/ 
    .cursor-dot {
		display: none;
    }
    .cursor-ring {
     display: none;
    }
	/*header*/		
		header {
	    z-index: 1000;
		}
	.topHeader{
		width: 100%;
		display: flex; 
		justify-content: center;   /* 👈 centra horizontalmente */
		align-items: center;
		margin: 0 ;
		padding: 5px 1%;
		border-bottom: 1px solid #aaa;
	}
    header img {
        height: 35px;
		width: 250px;
        margin: 0px 1% 13px 1%;
        transition: all 1s ease;
    }	
	.nav-left{
			display: none;
		}	
		
/************************************************************************************
0.x sideNav and navbar
*************************************************************************************/
	#btnOpenNav{
			display: block;
			height: 50px;
			width: 50px;
			position: fixed;
		 	margin: auto 2.5% auto 0;
		right: 1%;
		top: 75px;
			padding:0;
			text-decoration: none;
			background-color: rgba(235,235,235,0.50);
		border-radius: 8px;
		overflow: hidden;
		transition: 1s ease all;
    z-index: 10000000;
    pointer-events: auto;
		} 
	#btnOpenNav img{ 
		text-align: center; 
		   	width: 30px;
		  	height: 30px ;
			font-size: 30px;  
			color: #b3d143;
			transform: scale(1.1,0.5);
		overflow: hidden;
		 display: flex; 
        margin: 10px auto; 
        align-items:center;
        justify-content:center;
		}	
		#sideNav{
		width: 100%;
		height: 100%; 
		display: none;
		position: fixed;
		z-index: -9;
		top: 0;
	    animation: sideNavAnimation 1s ease;
		background-image: -o-linear-gradient(37rad,rgba(185,255,215,0.8),rgba(255,255,255,0.5), rgba(214,255,112,0.61)); /*Opera*/
		background-image: -moz-linear-gradient(37rad,rgba(185,255,215,0.8),rgba(255,255,255,0.5), rgba(214,255,112,0.61)); /*Firefox*/
		background-image: -webkit-linear-gradient(37rad,rgba(185,255,215,0.8),rgba(255,255,255,0.5), rgba(214,255,112,0.61));; /*Safari & Chrome*/
		background-image: -ms-linear-gradient(37rad,rgba(185,255,215,0.8),rgba(255,255,255,0.5), rgba(214,255,112,0.61)); /*IE/*/
	    
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}	
		#sideNav,
#sideNav * {
    pointer-events: auto;
}
#sideNav {
    z-index: 10000001 !important;
}
#sideNav {
    z-index: 10000001 !important;
}
	#sideNavContent{
		width: 100%;
		height: 100%;  
	    animation: sideNavContentAnimation 2.5s ease;
		background-color: transparent; 
	}
	.sideNavInside{
		width: 100%;
		height: 100%;
		margin: 0; 
		overflow: hidden;
		box-shadow: 0px 0px 13px 3px #ddd;
		background-color: transparent;
	}
	.sideNavTop{
		width: 100%;
		height: 10%;
		background-image: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,1));
		backdrop-filter: blur(2px);
		overflow-y: hidden;
	}
	.sideNavTop img{
		width: 133px;
		height: 21px;
		overflow-y: hidden;
		position: fixed;
		top: 21px;
		left: 21px;
	}
	#logo{
		height: 25px;
  		width: 200px;
  		margin: auto auto auto 2.5%;
	} 
	.sideNavTopBar{
		width: auto;
		height: auto; 
		margin: 8px;
		float: right;
		overflow-y: hidden;
		display: inline-flex;
	}
	.sideNavTopBarBall{
		width: 33px;
		height: 33px;
		float: right;
		background-image: linear-gradient(0rad,#ccc,#eee);
		border-radius: 50%;
		margin: 5px;
	}
	.sideNavTopBarCloseBall{
		margin: 5px;
		width: 33px;
		height: 33px;
		float: right;
		background-image: linear-gradient(45rad,#c90000,#d90000);
		border-radius: 50%;
		text-decoration: none;
	}
	.sideNavBody{ 
	width: 200%;
		height: 80%;
		background-color: transparent;
		display:inline-flex;
		border-top: 1px solid #ddd;
		overflow-y: hidden; 
	}
	#sideNaveFirstMenu{
		width: 100%;
		height:100%;
		background-color: transparent; 
		position: relative;
		overflow: hidden;
	}
	.sideNavItem{ 
		height: 60px;
		display: flex;
		text-decoration: none; 
		overflow-y: hidden;
		background-color: transparent;	padding: 5px;
	}
	.sideNavItem img{
		overflow-y: hidden;
		width: 33px;
		height: 33px;
		padding: auto 5px;
	}
	.sideNavItem p{
		margin-top: 5px;
		margin-left: 13px;
		overflow-y: hidden;
		color: #000;
		padding: auto 13px ;
		font-weight: 700;
		font-size: 21px;
		font-family: 'Rubik', sans-serif;
	} 
	.sideNavActualItem{
		width: 99%; 
		height: 60px;
		display: inline-flex;
		margin: 3px 0px;
		padding: 5px;
		background-color: white;
		text-decoration: none; 
		overflow-y: hidden;
		border-radius: 8px;
	}
	.sideNavActualItem img{
		overflow-y: hidden;
		width: 33px;
		height: 33px;
		padding: auto 5px;
	}
	.sideNavActualItem p{
		margin-top: 5px;
		margin-left: 13px;
		overflow-y: hidden;
		color: #333;
		padding: -1px 5px 0px 5px;
		font-weight: 700;
		font-size: 21px;
		font-family: 'Rubik', sans-serif;
	} 
	.sideNavActualItem p:hover{
		color: green;
		transition: ease 1s; 
	}
	.sideNavItem p:hover{
		color: #999; 
		transition: ease 1s;
	}
	/*   Sub Menu */
	#sideNavSecondMenu{ 
		width: 100%;
		height:100%;
		background-color: #fff; 
		position: relative;
		left: 0%;
		transition: 0.15s ease;
		overflow: hidden;
	}
	#sideNavSecondMenuInsideOne{
			width: 100%;  
		height: auto;
		display: none;
		margin: 0px;
		text-decoration: none; 
		overflow: hidden;  
	} 
	#sideNavSecondMenuInsideTwo{
			width: 100%;  
		height: auto;
		display: none;
		margin: 0px;
		text-decoration: none; 
		overflow: hidden; 
	} 
	#sideNavSecondMenuInsideThree{
			width: 100%;  
		height: auto;
		display: none;
		margin: 0px;
		text-decoration: none; 
		overflow: hidden; 
	} 
	/* ##### */
	.sideNavSecondMenuItem{
		margin: 0;
		background-color: #eee;
		height: auto;
		width: 100%; 
		padding: 3px; 
		overflow-y: hidden;
		display: inline-flex;
		text-decoration: none;
		border-bottom: 1px #ddd solid;
	} 
	.icon{
		width: auto; 
		height: auto; 
		padding: 0;
	}
	.icon img{  
		width: 33px;
		height: 33px;
		display: block;
		margin: auto auto auto auto;
		
	}
	.sideNavSecondMenuItem img{
		  width: 33px;
	 	 height: 33px;
		 margin: 8px;
	}
	.sideNavSecondMenuItem h4{ 
		 color: #777;
		 margin: auto 13px;
		 padding-left: 1px;
		 font-weight: 700;
		 font-size: 21px;
	}
	.option{ 
		 color: #777;
		 margin: auto 13px;
		 padding-left: 1px;
		 font-weight: 700;
		 font-size: 21px;
	}
	.sideNavSecondMenuActualItem{
		margin: 0;
		background-color: #fff;
		height: auto;
		width: 100%; 
		padding: 3px; 
		overflow-y: hidden;
		display: inline-flex;
		text-decoration: none;
		border-bottom: 1px #ddd solid;
	} 
	.sideNavSecondMenuActualItem img{
		  width: 33px;
	 	 height: 33px;
		 margin: 8px;
	}
	.sideNavSecondMenuActualItem h4{ 
		 color: #777;
		 margin: auto 13px;
		 padding-left: 1px;
		 font-weight: 700;
		 font-size: 21px;
	}
	.sideNavBottom{
		width: 100%;
		height: 10%;
		background-color: #ddd;
		margin: auto;
		text-align: center;
		overflow-y: hidden;
	}
	.sideNavBottomInside{
		width: auto;
		height: auto;
		margin: 8px;
		display: inline-flex;
	}
	.sideNavBottomInside a{
		text-decoration: none;
	}
	.sideNavBottomInside a:hover{
		text-decoration: none;
	}
	.sideNavBottomInside img{
		width: 33px;
		height: 33px;
		margin: 5px;
	}	
		
	 
/**********************************************************************************************
	0.x hero
**********************************************************************************************/	
.hero{
		width: 100%;
		height:100vh;  
	position: relative; 
	}   

/* CONTENT */
.contentF{ 
  max-width:75%;  
	margin: auto auto auto  2%;
}
 
/**********************************************************************************************
	0.x Dreams
**********************************************************************************************/	
.blend{
	mix-blend-mode: difference;	color: white;z-index: 5;
	width: 80%;
	margin: auto;
	text-align: center;
	font-size: 33px;
}
		
/**********************************************************************************************
	0.x Brands 
**********************************************************************************************/
.brands{
	display: flex;
	flex-direction: column;
	width: 100%; 
}
#labelOne{ 
	top: 40%; 
	font-size: 33px;  
}
#labelTwo{ 
	top: 50%; 
	font-size: 33px; 
}
#labelThree{
	 
	top: 60%; 
	font-size: 33px; 
}
/**********************************************************************************************
	0.x cluster
**********************************************************************************************/
#lastSnapSection{
	z-index: 5;
	position: relative;
	background-color: white;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.cluster{
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
}
		
.labelClusterOne{
	margin: auto auto 0 auto;
}
.labelClusterTwo{
	margin:0 auto auto  auto;
}

/**********************************************************************************************
	0.x search
**********************************************************************************************/
.clusterBox{  
	width: 100%;
	height: 100%; 
	margin: 0 auto;
	text-align: center;
	display: flex; 
	flex-direction: column;
	padding: 0% 2% 0 2%;
}
.clusterItem{
	width: 100%;
	height: auto;
	margin: 30% auto 0 auto;
} 
.clusterItem1{
	width: 80%;
	height: 40%;  
	margin: 10% auto auto auto;
}  		
.clusterTitle{ 
	font-family: 'Nunito Sans'; 
	font-weight: 100; 
	background: linear-gradient(45grad,darkgreen,rgba(179,255,7,1));
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	z-index: 5;
	width: 100%;
	margin: auto auto  auto auto; 
	text-align: left; 
	padding: 0 21px 21px  21px; 
}
.clusterText{
	mix-blend-mode: difference;	
	color: white;
	z-index: 5;
	width: 100%;
	text-align: left;
	margin: auto auto auto auto;  
	padding:  21px  21px;
	background-color: rgba(2,2,2,0.7);
	backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); 
}
.sceneFdy{
  width:100%;
  height:100%;
  margin: auto  auto;
	border: 0px solid #aaa; 
}  	
.windowFdy{ 
  position:relative;
  width:100%;
  height:100%; 
	background:linear-gradient(135grad,#000,#1a1a1a,#000);
  backdrop-filter:blur(20px); 
  overflow:hidden;
  opacity:1;
  transition:opacity .8s ease;
	border: 0px solid #aaa;
	border-radius: 21px;
} 
.headerFdy{
	border: 0px solid #aaa;
  height:46px;
  display:flex;
  align-items:center;
  padding:0 16px;
  gap:8px; 
  z-index:3;
	background:linear-gradient(#ccc,#aaa);
} 
.editorFdy{
	border: 0px solid #aaa;
  position:absolute;
  inset:46px 0 0 0;
  padding:3px;
  font-family:monospace;
  font-size:9px;
  line-height:1;
  color:#d6deeb;
  white-space:pre-wrap;
}   
.searchOverlayFdy{
  position:absolute;
  inset:46px 0 0 0;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(3px);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:5px 24px;
  opacity:0;
  visibility:hidden;
  transition:.5s;
} 
.searchBarFdy{
  width:100%;
  min-height:64px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  padding:0 20px;
  gap:2px;
}
.searchInputFdy{
  flex:1;
  font-size:11px;
  color:#202124;
}
.searchCursorFdy{
  width:2px;
  height:1em;
  background:#202124;
  display:inline-block;
  animation:blink 1s infinite;
}
.resultsFdy{
  margin-top:28px;
  opacity:0;
  transform:translateY(10px);
  transition:.4s;
}
.resultsFdy.showFdy{
  opacity:1;
  transform:translateY(0);
}
.resultTitleFdy{
  font-size:11px;
  color:#1a0dab;
}
.resultDescFdy{
  color:#4d5156;
}
		

/**********************************************************************************************
	0.x live
**********************************************************************************************/
.uxBox{ 
	z-index: 5;
	width: 100%;
	height: 100%; 
	margin: 0 auto;
	text-align: center;
	display: flex; 
	flex-direction: column;
	padding: 10% 2% 0 2%;
}
.uxItem{
	width: 100%;
	height: auto; 
	display: flex;
	flex-direction: column;
} 
.uxItem video{
	width: 75%;
	height: 75%;
	margin: auto;
}
		


/**********************************************************************************************
	0.x uxui
**********************************************************************************************/
.uxuiItem,.uxuiItem1,
.uxuiItem2, .uxuiItem3{ 
	min-width: 90%; 
	height: 50vh;
} 
.uxuiItem .uxuiBody{ 
  background-attachment:local;  
}
.uxuiItem1 .uxuiBody{
  background-attachment:local;
}
.uxuiItem2 .uxuiBody{
  background-attachment:local;
}
.uxuiItem3 .uxuiBody{
  background-attachment:local;
}
		

/**********************************************************************************************
	0.x io
**********************************************************************************************/
.io{  
	width: 100%;  
		display: flex;
	flex-direction: column; 
	background-color: rgba(17,17,17,0.80);
	backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px); 
	z-index: 5;
	position: relative; 
	height: auto;
}
.ioBox{ 
	z-index: 5;
	width: 100%;
	height: 100%; 
	margin: 0 auto;
	text-align: center;
	display: grid; 
	flex-direction: column;
	padding: 0%;
}
.ioItem{
	position: sticky;
	width: 100%;
	height: auto; 
	display: flex; 
}
.ioTitle{ 
	position: sticky;
	top: 25%;
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,aqua,pink,yellow);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin: 21px auto;
	text-align: left;
	padding: 33px;
	font-style: normal;
}
.ioSubtitle{ 
	font-family: 'Nunito Sans';   
	background: linear-gradient(45grad,dodgerblue,lightblue,white);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent; 
	/*-webkit-text-stroke:0.3px var(--YG);*/
	  margin: 5px auto;
} 
.business{
	position: relative;
	z-index: 2;
	width:100%; 
	background-image: linear-gradient(#fff,#fff);
	padding: 2% 2%; 
	display: flex;
	flex-direction: column;
}  
		
/**********************************************************************************************
	0.x clippath section
**********************************************************************************************/
.stackFdz{
  --nFdz: 6;
  --stageFdz: 140vh;
  position: relative;
  width: 100%;
  height: calc(var(--nFdz) * var(--stageFdz));
  background: #000;
  overflow: visible;
  isolation: isolate;
  z-index: 2;
}
.pinFdz{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.slideFdz{
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slideMaskFdz{
  position: absolute;
  inset: 0;
  clip-path: inset(100% 0 0 0);
  transform: translate3d(0,18px,0);
  will-change: clip-path, transform;
}
.slideFdz:first-child .slideMaskFdz{
  clip-path: inset(0% 0 0 0);
  transform: translate3d(0,0,0);
}
.bgFdz{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  filter: saturate(.95) contrast(1.05);
}
.bgFdz::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
}
.contentFdz{
  position: relative;
  z-index: 2;
  width: 100%;
	margin: auto;
  height: 100%;
  display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cardFdz{
	margin-top: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  --frameFdz: #ffffff;
  width: 60vw;
	height:  60vw;;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  position: relative;
  border: 10px solid var(--frameFdz);
}
.cardFdz::before{
  content: "";
  position: absolute;
  inset: 12px; 
  pointer-events: none;
  z-index: 2;
}
.cardFdz::after{
  content: "";
  position: absolute;
  inset: -10px; 
  pointer-events: none;
  opacity: .55;
}
.cardFdz img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contentCards{
			display: flex;
		}		
.numFdz{
  position:relative;
  margin: 0% 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(88px, 14vw, 170px);
  line-height: .85;
  letter-spacing: -2px;
  opacity: .95;
  z-index: 3;
  pointer-events: none; 
	padding: 33px;
}
.numFdzOne{	
	background-color: #222;
  color: var(--YG);
}
.numFdzTwo{ 
  color: var(--YG); 
	background-color: #fff; 
}
.labelFdz{
   position:relative;
  margin: 0 auto 0 0; 
  width:100%;
	height: 100px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px; 
  z-index: 3;
  color: #fff;
  pointer-events: none;
	background-color: #222;
	padding: 13px;
}
.labelFdz b{
  display: block;
  letter-spacing: .22em;
  font-weight: 700;
  margin-top: 6px;
	color: var(--YG)
}
.stackFdz,
.stackFdz *{
  scroll-snap-align: none !important;
}
		
		
/**********************************************************************************************
	0.x footer
**********************************************************************************************/			
footer{
				background-size: 200% 100%;
		}
.footerBox{
			flex-direction: column;
		}
.footerBoxItem{
			width: 95%;
		}
.footerBoxItem{ 
			width: 95%;
		}
.footerTitle{
	 margin-top: 21px;
	}	 
.footerNumber{
	 margin-top: 21px;
	
}	
	 
	}
	 