@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');
	 
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
	html{
	}/* ZOOM EFFECT */
	 
    body {
        background: black;
        overflow-x: hidden;
        font-family: Arial, sans-serif;
		transition: all ease 1s;  
    }
/* animation next */
#welcome{
  position: fixed;
  inset: 0;
  background:black;
  pointer-events: none;
  transition: all 1s ease;
	justify-content: space-around;
	display: flex;
	align-items: center;
	animation: welcome forwards 6s;
	width: 100vw;
	height: 100vh;
	z-index: 99999999999999999;
}	 
#welcome img{
		width: 300px;
		height: 40px;
	}	
		
	@keyframes welcome{
	0%{  
		margin-top:  -00vh;
	}
	60%{
		margin-top:  -00vh;
	}
	75%{ 
		margin-top:  -100vh;  
	}
	100%{  
		margin-top:  -100vh;
	}
}
    /* HEADER */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        display: grid;
        align-items: center;
        padding: 0 0px;
        z-index: 9999;  
        transition: all 1s ease;
        color: white;
    z-index: 9999999;
    pointer-events: auto;
    }
	.topHeader{
		width: 100%;
		display: flex;
		margin: 0 ;
		padding: 13px 10%;
		border-bottom: 1px solid #aaa;
	}
	.phone{
		color: white;
		text-decoration: none;
		font-weight: 700;
	}
	.quate{
		color: white;
		text-decoration: none;
		font-weight: 700;
		margin: auto 0px auto auto;
	}
	
    header img {
        height: 40px;
		width: 300px;

        margin: 30px 10% 13px 10%;
        transition: all 1s ease;
    }
    header.scrolled {
        background: white;
        color: black;
		height: 150px;
    }
	#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;  
	}
}
    


	
    /* MÁSCARA VIDEO */
    .text-video {
        position: relative;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: black;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }
    .text-video video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
	.text-video video {
    pointer-events: none;
}
    .mask-text {
        font-size: 18vw;
        font-weight: 900;
        font-family: Arial Black, sans-serif;
        text-transform: uppercase;
        color: white;
        white-space: nowrap;
        opacity: 0;
        position: absolute;
    }

    /* SECCIONES */
    .section {
        height: 100vh;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 4rem;
    }
    .s1,.s2{ background: #000; }
    .s3,.s4,.s7,.s8{ background: #222; }
    .s5,.s6 { background: #fff; }
	.s9{ background: #000; 
		display: flex;
	align-content: center;
	justify-content: space-around;}

    /* PLANTILLA DE INSIDE Y ITEMS */
    .inside {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0px;
        width: 80%;
		height: 80vh;
        margin: 10vh 0%; 	
		font-size: 1em;
    }
    .item0, .item0-3, .item0-5, .item0-7 {
        margin: 10% 0 0 0;
		left: 10vw;
        width: 50%; 
        color: white; 
        position: absolute;
		
    }
    .item1, .item1-3, .item1-5, .item1-7 {
        mix-blend-mode: difference;
        margin: 50% auto 0 30%;
        width: 50%;
        color: white;
        position: absolute;
        z-index: 2;
		display: flex;
    }  
	.imgBox {
        width: 500px;
		height: 400px;
        border-radius: 10px;
        object-fit: cover;
    }
	.title1{
		 font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: block;
		z-index: 1;
		position:relative; 
		font-weight: 600;
    background: linear-gradient(90deg, purple, #0088ff,darkgreen);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
		
	}
	.line1{
		width: 233px;
		height: 13px;
		background-color:#222;
		position: relative;
		top:-33px;
		z-index: 0;
	}
	.title2{
		 font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: block;
		z-index: 1;
		position:relative; 
		font-weight: 600;
    background: linear-gradient(90deg, green,yellowgreen,yellow,yellow,yellow,yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
		
	}
	.line2{
		width: 233px;
		height: 13px;
		background-color:#000;
		position: relative;
		top:-33px;
		z-index: 0;
	}
	.title3{
		 font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: block;
		z-index: 1;
		position:relative; 
		font-weight: 600;
    background: linear-gradient(90deg,red,indianred,beige);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
		
	}
	.line3{
		width: 233px;
		height: 13px;
		background-color:#000;
		position: relative;
		top:-33px;
		z-index: 0;
	}
	.title5{
		 font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: block;
		z-index: 1;
		position:relative; 
		font-weight: 600;
    background: linear-gradient(90deg, #fff,#777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
		
	}
	.line5{
		width: 233px;
		height: 13px;
		background-color:yellowgreen;
		position: relative;
		top:-33px;
		z-index: 0;
	}
	.icons{
		width: auto;
		height: auto; 
		display: block;
		padding-top: 33px;
	}
	.itemIcon{
		margin: 5px;
		width: auto;
		display: flex;
	}
	.itemIcon img{
		width: 33px;
		height: 33px;
		margin: auto 5px auto 13px;
	}
	.itemIcon p{
		color: yellowgreen;
		font-size: 17px;
		margin: auto auto auto 3px;
		
	}	
	.itemIconI{
		margin: 5px;
		width: auto;
		display: flex;
	}
	.itemIconI img{
		width: 33px;
		height: 33px;
		margin: auto 5px auto 13px;
	}
	.itemIconI p{
		color: #8E4CCD;
		font-size: 17px;
		margin: auto auto auto 3px;
		
	}
	.btn{
		margin: auto 13px ;
		text-decoration: none;
		font-size: 21px;
		padding: 14px 38px;
    border: none;
    border-radius: 14px;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, green, yellowgreen);
    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;
	}
	.btn:hover{
		transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, transparent, transparent);
    box-shadow:
        0px 10px 25px rgba(0, 244, 55, 0.4),
        inset 0px 2px 6px rgba(255,255,255,0.1);
		border: 1px solid #fff;
		color: #fff;
	} 
	.btnI{
		margin: auto 13px ;
		text-decoration: none;
		font-size: 21px;
		padding: 14px 38px;
    border: none;
    border-radius: 14px;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;
    cursor: pointer;
    color: #000;
    background: linear-gradient(135deg,#CDBCE0, #8E4CCD, #CF6DEF);
    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;
	}
	.btnI:hover{
		transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, transparent, transparent);
    box-shadow:
        0px 10px 25px rgba(0, 244, 55, 0.4),
        inset 0px 2px 6px rgba(255,255,255,0.1);
		border: 1px solid #fff;
		color: #fff;
	} 
	
	
	
	.more{
		position: relative;
		margin: auto auto;
		text-decoration: none;
		font-size: 21px;
		padding: 14px 38px;
    border: none;
    border-radius: 14px; 
		font-size: 33px;
    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); 
	}
    /* DEBUG SCROLL */
    #scrollConsole {
        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);
		display: none;
    }
	
	
	
/* -------------------- NAVBAR -------------------- */
.navbar{
    width: 100%;  
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 20;
	font-family: 'Nunito Sans', sans-serif;  
}
.nav-left{
    display: flex;
    align-items: center;
    gap: 40px;	
    padding: 13px 10% 0 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;
	}	
 
/* Línea verde animada */
.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%;
}
/* -------------------- MEGA MENU -------------------- */
.mega-menu{
    position: absolute;
    top: 120%;
    right: 0;
    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;
}
/* 🔥 Mostrar menús con animación suave */
.nav-item:hover .mega-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
/* Columnas del mega menu */
.menu-col > a{
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}
/* Flecha */
.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; 
	}

/* Horizontal ininite*/
.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%;
  }
}	
	
/* animation next */
#next{
  position: fixed;
  inset: 0;
  background: black;
  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: 300px;
		height: 40px;
	}	
/*███   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) {
	/*header*/		
		header {
	    z-index: 1000;
		}
	.topHeader{
		width: 100%;
		display: flex;
		margin: 0 ;
		padding: 13px 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: 121px;
			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: 21px;
  		width: 133px;
  		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;
	}	
		
		
		
    /* PLANTILLA DE INSIDE Y ITEMS */
    .inside {
        display: grid;
        justify-content: center;
        align-items: center;
        gap: 0px;
        width: 80%;
		height: 80vh;
        margin: 0vh 0%; 	
		font-size: 17px;
    }
	.title1,.title2,.title3,.title5	{
		 font-size: 33px; 
		
	}
	.imgBox {
        width: 300px;
		height: 250px;
        border-radius: 10px;
        object-fit: cover;
    }
	.item1, .item1-3, .item1-5, .item1-7 {
        mix-blend-mode: difference;
        margin: 150vh auto 0 auto;
        width: 50%;
        color: white;
        position: absolute;
        z-index: 2;
		display: grid;
    }  
	}
	
	
</style>