/* landing page */
.landingPage{
	position:fixed;
	inset:0;
	background-color:var(--body-color);
	display:flex;
	justify-content:center;
	align-items:center;
	z-index:9999;
  transition: all 600ms ease-in-out;
}

.landingPage.vanished{
  left: -100%;
  right: 100%;
}

.landingPage section{
	width:400px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	text-align:center;
}

.landing-logo svg{
	width:100%;
}

/* .st0{fill:#AF2537;}
.st1{fill:#952731;} */

.landing-logo svg .st0,
.landing-logo svg .st1{
	/* fill:none; */
	stroke-width:2;
	stroke-linejoin:miter;
	stroke-miterlimit:1;
	stroke-dasharray:2020;
	stroke-dashoffset:0;
  fill-opacity:0;
	-webkit-animation:Draw 6s linear forwards;
	animation:Draw 6s linear forwards;
}

.landing-logo svg .st0{
	stroke:#AF2537;
	fill:#AF2537;
}

.landing-logo svg .st1{
	stroke:#952731;
	fill:#952731;
}
	
@-webkit-keyframes Draw{
	0%{stroke-dashoffset:2020; fill-opacity:0;}
	50%{stroke-dashoffset:0; fill-opacity:0;}
	60%{fill-opacity:1;}
	100%{fill-opacity:1;}
}
@keyframes Draw{
	0%{stroke-dashoffset:2020; fill-opacity:0;}
	50%{stroke-dashoffset:0; fill-opacity:0;}
	60%{fill-opacity:1;}
	100%{fill-opacity:1;}
}

.landingPage section h1{
	font-weight:600;
	font-size:2rem;
	display:block;
	padding-top:1rem;
	letter-spacing:1px;
  padding-bottom: 10px;
  border-bottom: 3px solid;
	text-transform:uppercase;
	color:#952731;
}

.landingPage section span{
  color: #952731;
  font-size: 1.25rem;
}



.landing-verticle__wrapper{
  height: 100vh;
}

.land-verticle__box{
  position: relative;
  overflow: hidden;
}

.land-verticle__box::before{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 125vh;
  height: 125vh;
  border-radius: 100vh;
  background-color: rgba(13, 6, 40, 0.5);
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.landing-verticle__wrapper:hover .land-verticle__box:hover::before{
  background-color: rgba(13, 6, 40, 0.15);
  backdrop-filter: blur(10px); 
  width: 50vh;
  height: 50vh;
}

.land-verticle__box__img{
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  z-index: -1;
  overflow: hidden;
  transform: scale(1,1);
  animation: zoomin 10s alternate infinite linear paused;
}

.land-verticle__box:hover .land-verticle__box__img{
  animation-play-state: running;
}

@keyframes zoomin{
  to{transform: scale(1.5,1.5);}
}

.landing-verticle__wrapper:hover .land-verticle__box:not(:hover) .land-verticle__box__img{
  animation-play-state:paused;
}

.land-verticle__box .inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.land-verticle__box .inner .ikon{
  width: 30px;
  position: absolute;
  right: 2rem;
  top: 2rem;
  opacity: 0.5;
}

.land-verticle__box .inner .land-verticle__box__title{
  /* font: 700 1.75rem var(--serif); */
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  z-index: 1;
}

.land-verticle__box .inner:hover .land-verticle__box__title{
  color: #fff;
  text-decoration: underline 1px solid var(--primary-color);
}

.circular-btn .button{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: var(--primary-color);
}

.land-verticle__box .inner:hover .circular-btn .button{
  background-color: var(--primary-color);
  color: #fff;
}

.landing-poster-video {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 42em;
  height: 42em;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(13, 6, 40, 0) 72%, #0d0628), -webkit-gradient(linear, right top, left top, from(#0d0628), color-stop(4%, rgba(13, 6, 40, 0))), -webkit-gradient(linear, left top, right top, from(#0d0628), color-stop(4%, rgba(13, 6, 40, 0))), -webkit-gradient(linear, left bottom, left top, from(#0d0628), color-stop(4%, rgba(13, 6, 40, 0)), to(rgba(13, 6, 40, 0))), -webkit-gradient(linear, left top, left bottom, from(#0d0628), color-stop(4%, rgba(13, 6, 40, 0)), to(rgba(13, 6, 40, 0)));
  background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(13, 6, 40, 0) 72%, #0d0628), linear-gradient(270deg, #0d0628, rgba(13, 6, 40, 0) 4%), linear-gradient(90deg, #0d0628, rgba(13, 6, 40, 0) 4%), linear-gradient(0deg, #0d0628, rgba(13, 6, 40, 0) 4%, rgba(13, 6, 40, 0)), linear-gradient(180deg, #0d0628, rgba(13, 6, 40, 0) 4%, rgba(13, 6, 40, 0));
  overflow: hidden;
  opacity: 0.25;
  z-index: -100;
}

.landing-poster-video video{
  object-fit: cover;
  height: 100%;
  transform: translate(-50%,50%);
}
/* landing page */