

@font-face{
	src: url(assets/fonts/HKGrotesk-Regular.otf);
	font-family: "HK Grotesk", "roboto", sans-serif;
}


body{
	width: 100%;
	min-height: 100vh;
	background-size: cover;
	font-family: "HK Grotesk" , "sans-serif";
	overflow-x: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

ul[role="list"],
ol[role="list"] {
	list-style: none;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

img,
picture {
	max-width: 100%;
	display: block;
	height: auto;
}

html:focus-within{
	scroll-behavior: smooth;
}

body a:hover{
	text-decoration: none;
}

a{
  text-decoration: none;
  list-style: none;
  color: #212121;
}


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

article{
	min-height: calc(100vh - 240px);
    max-width: 100vw;
	padding-left: 30px;
	padding-right: 30px;
    overflow: hidden;
}

@media (max-width: 700px) {
	article{
		padding-left: 10px;
		padding-right:10px;
	}
}




/*------navigation ----*/


.logo-box{
	width: 180px;
	height: auto;
	padding-top: 30px;
	}

  .nav-container {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 40%;
	left: 0;
	margin: 0 auto;
  }
  
  .nav-container p {
	font-size: 20px;
  }
  
  .nav-container a {
	display: inline-block;
	position: relative;
	text-align: center;
	color: #FF5252;
	text-decoration: none;
	font-size: 2em;
	overflow: hidden;
	top: 5px;
  }
  
  .nav-container a:after {
	content: '';
	position: absolute;
	background: #FF5252;
	height: 2px;
	width: 0%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	bottom: 0;
	-webkit-transition: .35s ease;
	transition: .35s ease;
  }
  
  .nav-container a:hover:after,
  .nav-container a:focus:after,
  .nav-container a:active:after {
	width: 100%;
  }
  
  .button_container {
	position: fixed;
	top: 35px;
	right: 6%;
	height: 27px;
	width: 30px;
	cursor: pointer;
	z-index: 100;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
  }
  
  .button_container:hover {
	opacity: 1;
  }
  
  .button_container.active .top {
	-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
	-ms-transform: translateY(11px) translateX(0) rotate(45deg);
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: #FFF;
  }
  
  .button_container.active .middle {
	opacity: 0;
	background: #FFF;
  }
  
  .button_container.active .bottom {
	-webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: #FFF;
  }
  
  .button_container span {
	background: #292929;
	border: none;
	height: 2px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
  }
  
  .button_container span:nth-of-type(2) {
	top: 11px;
	width: 60%;
  }
  
  .button_container span:nth-of-type(3) {
	top: 22px;
  }
  
  .overlay {
	position: fixed;
	background: #2A2B2A;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
  }
  
  .overlay.open {
	opacity: 1;
	visibility: visible;
	height: 100%;
	z-index: 99;
  }
  
  .overlay.open li {
	-webkit-animation: fadeInRight .5s ease forwards;
	animation: fadeInRight .5s ease forwards;
	-webkit-animation-delay: .35s;
	animation-delay: .35s;
  }
  
  .overlay.open li:nth-of-type(2) {
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
  }
  
  .overlay.open li:nth-of-type(3) {
	-webkit-animation-delay: .45s;
	animation-delay: .45s;
  }
  
  .overlay.open li:nth-of-type(4) {
	-webkit-animation-delay: .50s;
	animation-delay: .50s;
  }
  
  .overlay.open li:nth-of-type(5) {
	-webkit-animation-delay: .55s;
	animation-delay: .55s;
  }
  
  .overlay nav {
	position: relative;
	height: 70%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 2.5vw;
	font-family: 'HK Grotesk', 'Raleway', 'san serif';
	font-weight: 500;
	text-align: center;
  }
  
  .overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	height: 100%;
  }
  
  .overlay ul li {
	display: block;
	height: 20%;
	height: calc(100% / 5);
	min-height: 50px;
	position: relative;
	opacity: 0;
  }
  
  .overlay ul li a {
	display: block;
	position: relative;
	color: #FFF;
	text-decoration: none;
	overflow: hidden;
  }
  
  .overlay ul li a:hover:after,
  .overlay ul li a:focus:after,
  .overlay ul li a:active:after {
	width: 100%;
  }
  
  .overlay ul li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0%;
	-webkit-transform: translateX( -50%);
	-ms-transform: translateX( -50%);
	transform: translateX( -50%);
	height: 2px;
	background: #FFF;
	-webkit-transition: .35s;
	transition: 0.35s;
  }
  
  @-webkit-keyframes fadeInRight {
	0% {
	  opacity: 0;
	  left: 20%;
	}
	100% {
	  opacity: 1;
	  left: 0;
	}
  }
  
  @keyframes fadeInRight {
	0% {
	  opacity: 0;
	  left: 20%;
	}
	100% {
	  opacity: 1;
	  left: 0;
	}
  }





/*-------   Hero Container ---------*/


.hero-container{
	width: 100%;
    height: 60vh;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 5;
	color: #2A2B2A;
	position: relative;
}


.hero{
	width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.hero{
	display: grid;
	width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    justify-items: start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-auto-flow: row;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    -ms-grid-columns: 33% 26% minmax(-webkit-max-content,27%) minmax(14%,-webkit-max-content);
    -ms-grid-columns: 33% 26% minmax(max-content,27%) minmax(14%,max-content);
    grid-template-columns: 33% 26% minmax(-webkit-max-content,27%) minmax(14%,-webkit-max-content);
    grid-template-columns: 33% 26% minmax(max-content,27%) minmax(14%,max-content);
    -ms-grid-rows: auto;
    grid-template-rows: auto;

}


.text-container{
	-ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
}


.hero-heading{
	max-width: 10em;
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'HK grotesk display',sans-serif;
    font-size: 3.3em;
    line-height: 1;
    font-weight: 500;

}

.hero-text{
	max-width: 30em;
    margin-bottom: 1.5rem;
    font-size: 1.1em;
    line-height: 1.2;
	font-weight: 500;
	font-family: "Poppins", Arial, Helvetica, sans-serif;
}


.about{
	width: 180px;
	height: 30px;
	border: solid 1.5px #212121;
	border-radius: 30px;
	font-size: 1rem;
	text-decoration: none;
	list-style: none;
	background-color: transparent;
	margin-top: 10px;
	position: absolute;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all ease 300ms;
	
}

.about:hover{
	box-shadow: inset 260px 000 #212121;
  cursor: pointer;
  color: #ffff;

}

.about:hover{
	box-shadow: inset 260px 000 #212121;
  cursor: pointer;
  color: #ffff;

}




/*-------responsive--------*/



@media (max-width: 1024px){
	.hero-container{
		height: 40vh;
		
	}

	.hero-heading{
		
		font-size: 1.6em;
		min-width: 15em;
	}

	.hero-text{
		width: 100%;
		text-align: left;
		font-size: 1em;
	
	}

	.about{
		width: 160px;
		height: 30px;
		font-size: 0.7rem;
		
	}


}







/*------- Parallax-Image-Start ---------*/




.welcome-container{
	width: 100%;
	height: 80vh;
}


@media (max-width: 1400px){
	.welcome-container{
		height: 60vh;
	}
}

@media (max-width: 767px){
	.welcome-container{
		height: 40vh;
	}
}

.block{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  font-size: 16px;
}


.img-parallax {
  width: 100vmax;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  pointer-events: none
}


/*=== Specialist-innovation-Section-Start ===*/

.specialist-innovations-container{
	width: 100%;
	padding-top: 6em;
	padding-bottom: 4em;
}


/*-----  content  ----*/


.column_4_grid{

	display: -ms-grid;
    display: grid;
    width: 100%;
    grid-auto-columns: 1fr;
    grid-column-gap: 1.8em;
    grid-row-gap: 16px;
    -ms-grid-columns: 1.75fr 1fr 1fr 1fr;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
	
}




.text-heading{
	grid-column: 1 / span 2;
	grid-template-rows: span 1;
	
}

.large-heading{
	max-width: 40vw;
	font-size: 3vw;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -1px;
	font-family: "HK grotesk", arial, sans-serif;
}

.paragraph{
	grid-column: 3 / span 2;
	grid-template-rows: span 1;
	font-family: "poppins", Arial, Helvetica, sans-serif;
	font-weight: 400;
	line-height: 1.5;

}



.paragraph::before{
	content: 'About Us';
	font-family: "hk grotesk", sans-serif;
	top: -30px;
	left: 0px;
	position: absolute;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 1rem;
}


@media (max-width: 991px){

	.column_4_grid{
		-ms-grid-columns: 1fr 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr;
		
	}

	.text-heading{
		grid-column: 1 / span 3;
		
	}

	.large-heading{
		min-width: 100%;
		grid-column: 1 / span 3;
		grid-row: span 2;
		font-size: 2.4em;
		margin-bottom: 2em;
		
	}

	.paragraph{
		grid-column: 1 / span 3;
		grid-template-rows: span 1;
		font-size: 1px;
		font-family: "poppins", arial, sans-serif;
	
	}


	.specialist-grid p{
	
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
	}
}





/*------- Research Solutions---------*/


.company-container{
	width: 100%;
	height: auto;
	padding-top: 4em;
	padding-bottom: 4em;
  }

  
  .company-culture{
	grid-column: 3 / span 2;
	font-size: 1em;
	font-weight: 400;
	line-height: 1.5;
	font-family: "poppins", Arial, Helvetica, sans-serif;
	color: #2A2B2A;
	position: relative;
  }

  .company-culture::before{
	content: 'COMPANY CULTURE';
	font-family: "hk grotesk" sans-serif;
	top: -40px;
	left: 0;
	font-size: 1rem;
	font-weight: 500;
	position: absolute;
	color: #2A2B2A;

  }
  
  
  /*-------responsive-------*/
  
  @media (max-width: 767px){

	.company-container{
		padding-top: 100px;
		padding-bottom: 50px;
	  }

	  .company-wrapper p{
		  font-size: 1.6vw;
	  }

	  .company-culture{
		grid-column: 1 / span 3;
		font-size: 1em;
		font-weight: 300;
		line-height: 1.5;
		font-family: "poppins", sans-serif;
		color: #2A2B2A;
		position: relative;
	  }
  }
  








  /*--------- Core competencies -------*/



  .core-competencies{
	width: 100%;
	padding-top: 4em;
	padding-bottom: 4em;

}

.core-competencies h2{
	font-size: 4rem;
	font-weight: 500;
	padding-bottom: 1.2rem;
	font-family: "HK Grotest", Arial, Helvetica, sans-serif;
}


.accordion-card {
    color: #2A2B2A;
    width: 90%;
    width: 100%;
    min-height: 30rem;
}


.acc-container {
	padding: 0;
}


.acc-btn {
    width: 100%;
	height: 5em;
    font-size: 1.2rem;
    cursor: pointer;
    background: inherit;
	font-family: "HK Grotest", Arial, Helvetica, sans-serif;
    border: none;
    outline: none;
    text-align: left;
    transition: all 0.2s linear;
}

.acc-btn:after {
    content: "More + ";
    color: #212121;
	font-size: 0.7em;
	line-height: 20px;
    float: right;
    transition: all 0.3s linear;
}
.acc-btn.is-open:after {
    content: "Less -";
  font-weight: 400;
}



.acc-content {
    max-height: 0;
    color: rgba(0,0,0,0.75);
    font-size: 1rem;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    border-bottom: 1px solid #2A2B2A;
}

.inner-content{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	padding-bottom: 1rem;
	font-size: 1.2em;
}



/*------responsive---------*/



@media (max-width: 767px){

	.core-competencies h2{
		font-size: 2.4em;
	}

	.inner-content{
		grid-template-columns: 1fr;
		font-size: 1em;
	}

  }







  
  /*------Work Section Start---------*/

  

.our-work-section{
	width: 100%;
	padding-top: 4em;
	padding-bottom: 4em;
}

.work-heading{
	font-size: 4em;
	font-weight: 500;

}

.work-content{
  margin: auto;
  max-width: 100%;

}

.work-row{
  overflow: hidden;

}
.image{
  height: 50rem;
}


.work-text-box{
  padding-top: 2em;
  color: #292929;

}

/* IMAGE */
.image img{
  height: 100%;
  object-fit: cover;
  width: 100%;
}



.work-text-box h3{
  font-size: 1.6em;
  line-height: 1.2;
  margin: 0.5em 0;
  font-weight: 600;
  text-transform: uppercase;
}

.work-text-box p{
  line-height: 1.4;
  font-weight: 400;
  padding-top: 0.2em;
  font-family: "poppins", Arial, Helvetica, sans-serif;
}


@supports (display: grid){
  @media only screen and (min-width: 1024px){
	.work-content{
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	  grid-column-gap: 1.5em;
	  max-width: 100%;
	}

	.work-row{
	  margin: 0;
	}
  }
}


@media (max-width: 991px){


	.work-heading{
		font-size: 4em;
		margin-bottom: 1em;
	}

	.work-row{
		padding-bottom: 50px;
		
	  }
}





/*---------- Research-Start ------------*/

  
  
.research{
	max-width: 100vw;
	padding-top: 100px;
	padding-bottom: 100px;

}

.research-title{
	font-size: 5rem;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0.9em;
}


.reasearch-container{
	max-width: 100%;

	font-weight: 500;
	margin: auto;
	padding-top: 50px;
	padding-bottom: 50px;
}


.research-container {
	display: grid;
	gap: 20px;
	max-width: 100%;
	margin: auto;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	justify-content: space-evenly;
	justify-items: center;
	align-content: space-evenly;
	align-items: center;
}


.research-papers h3{
	font-size: 1.6em;
	line-height: 1.1;
	font-weight: 500;
	margin-bottom: 1.5em;

}

.research-papers p{
	font-size: 1em;
	line-height: 1.3;
	font-weight: 400;
	padding-bottom: 1.6em;
	font-family: "poppin", Arial, Helvetica, sans-serif;

}

.research-papers h5{
	font-size: 0.9em;
	line-height: 1.5;
	font-weight: 400;
	padding-bottom: 1em;
	text-transform: uppercase;
	font-weight: 500;
	font-family: "poppin", Arial, Helvetica, sans-serif;

}



/*========responsive=======*/



@media (max-width: 991px){


.research{
		padding-top: 50px;
		padding-bottom: 50px;
	
	}

.research-title{
	font-size: 4em;
}



.research-container {
	width: 100%;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));

}


.research-papers h3{
	font-size: 1.3em;
	margin-bottom: 1em;
}

.research-papers p{
	font-size: 1em;
	line-height: 1.2;

}

.research-papers h5{
	font-size: 0.9em;

}
}




/*--- Latest Projects Start ---*/


.latest-projects{
	padding-top: 4em;
	padding-bottom: 4em;
}

.latest-projects-title{
	font-size: 2vw;
	margin-bottom: 1em;
	margin-top: 1em;
}


.project-image{
	max-width: 60%;
	grid-column: 1 / span 2;
	grid-template-rows: span 1;
	
}

.project-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-row{
	align-items: center;
	justify-content: center;
}

.project-content{
	grid-column: 3 / span 2;
	grid-template-rows: span 1;
}

.project-content h2{
	font-size: 2.8rem;
	font-weight: 500;
	margin-bottom: 0.5em;
}

.project-content p{
	font-size: 1rem;
	line-height: 1.5;
	font-family: "poppin", Arial, Helvetica, sans-serif;
}

.learn-more{
	border-radius: 20px;
	border: solid 1.5px #2A2B2A;
	height: 30px;
	width: 160px;
	font-size: 1em;
	text-transform: uppercase;
	font-weight: 300;
	background-color: #fff;
	margin-top: 2em;
	transition: 300ms all ease;
}

.learn-more:hover{
	color: #fff;
	background-color: #2A2B2A;
}



@media (max-width: 991px){

	.latest-projects-title{
		font-size: 2em;
		margin-bottom: 1em;
		margin-top: 1em;
	}

	.project-image{
		max-width: 100%;
		
	}

}



@media (max-width: 767px){

	.latest-projects-title{
		font-size: 2em;
		margin-bottom: 1em;
		margin-bottom: 1.2em;

	}

	.project-image{
		grid-column: 1 / span 3;
		align-items: center;
		margin-bottom: 1.4em;
		
	}

	.project-content{
		grid-column: 1 / span 3;
	}

}





/*--- Coming Soon Start ---*/


.coming-soon-projects{
	padding-top: 6em;
	padding-bottom: 10em;
}

.coming-soon-title{
	font-size: 2em;
	margin-bottom: 1.3em;
}


.coming-soon-content{
	display: grid;
	grid-column: 2 / span 2;
	justify-content: center;
	align-items: center;
	
}


.coming-soon-content h2{
	font-size: 2.6em;
	font-weight: 400;
}



@media (max-width: 767px){

	.coming-soon-row p{
		font-size: 1.5vw;
	}

	.coming-soon-title{
		font-size: 3vw;
	}

	.coming-soon-content{
		grid-column: 1 / span 3;
		
	}

}








/*------------- Footer-Area-Start -----------*/

.footer{
	width: 100%;
	height: 60vh;
	background-color: #2A2B2A;
	padding: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	
}



.lets-talk{
	grid-column: 1 / span 2;
}



.footer-word-box{
	flex-wrap: wrap;
	position: relative;
	padding: 2rem;
	text-decoration: none;
	color: #fff;
}



.lets-talk h4{
	font-size: 3em;
	color: #fff;
	text-transform: capitalize;
	font-weight: 500;
	position: relative;
	text-align: left;
}


.contact-button{
	grid-column: 3 / span 2;
	text-align: center;
	align-self: center;
}



.lets-talk h6{
	color: #fff;
	font-size: 1.4em;
	font-weight: 300;
}


.contact{
	border-radius:60px;
	height: 30px;
	width: 160px;
	background-color: transparent;
	margin-top: 2em;
	transition: 300ms all ease;
	border: solid 1px #fff;
	font-size: 1.2em;
	cursor: pointer;
	color: #fff;
}

.contact:hover{
	color: #2A2B2A;
	background-color: #fff;
	transform: scale(1.1);

}



/*-- under-line-hover --*/

.hover-underline-animation {
	display: inline-block;
	position: relative;
	color: #212121;
	cursor: pointer;
  }
  
  .hover-underline-animation:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: #212121;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
  }
  
  .hover-underline-animation:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
  }






/*----------responsive------------*/

@media(max-width: 767px){


	.footer{
		width: 100%;
		height: 50vh;
		background-color: #2A2B2A;
		padding: 2em;
		display: flex;
		justify-content: center;
		align-items: center;
		
	}


	.footer-col{
		width: 50%;
		margin-bottom: 50px;
	}

	.lets-talk{
		grid-column: 1 / span 3;
		font-size: 1rem;
	}

	.lets-talk h4{
		font-size: 2em;
	}

	.lets-talk h6{
		color: #fff;
		font-size: 1em;
		font-weight: 400;
	}

	.contact-button{
		grid-column: 1 / span 3;
		text-align: center;
		align-self: center;
		height: 30px;
		width: 180px;
	}
}








/*-------------Copy-Right-Start------------*/


.copyright{
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #2A2B2A;
}

.copyright p{
	font-size: 0.7rem;
	font-weight: 400;
	color: #f5f0f0;
}




	.gototop{
		position: fixed;
		width: 80px;
		height: 80px;
		line-height: 80px;
		opacity: 1;
		bottom: 50px;
		right: 50px;
		text-decoration: none;
		text-align: center;
		font-size: 30px;
		color: #fff;
		cursor: pointer;
		border-radius: 50%;
		background-color: #2A2B2A;
		transition: all 300ms ease;
	}

	.gototop:hover{
		background-color: #fff;
		transform: scale(1.2);
	}
	

	
	.gototop p{
		color: #fff;
		font-size: 0.8rem;
		text-align: center;
		font-weight: 400;
		transition: all 300ms ease;
	}
	
	.gototop p:hover{
		font-size: 0.7rem;
		font-weight: 500;
		color: #2A2B2A;
	}





	

	/*--- motion animation ----*/


.reveal{
	position: relative;
	transform: translateY(60px);
	opacity: 0;
	transition: all 2s ease;
  }
  
  .reveal.active{
	transform: translateY(0px);
	opacity: 1;
  }


  .reveal-2{
	position: relative;
	transform: translateY(60px);
	opacity: 0;
	transition: all 2.5s ease;
  }
  
  .reveal-2.active{
	transform: translateY(0px);
	opacity: 1;
  }


  .reveal-3{
	position: relative;
	transform: translateY(60px);
	opacity: 0;
	transition: all 3s ease;
  }
  
  .reveal-3.active{
	transform: translateY(0px);
	opacity: 1;
  }
  

  .side{
	position: relative;
	transform: translateX(60px);
	opacity: 0;
	transition: all 2s ease;
  }
  
  .side.active{
	transform: translateX(0px);
	opacity: 1;
  }
  
  /*----- close reveal animation ----*/



