@font-face {
    font-family: 'Futura Std';
    src: url('client/FuturaStd-Bold.woff2') format('woff2'),
        url('client/FuturaStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Times Now';
    src: url('client/TimesNow-Light.woff2') format('woff2'),
        url('client/TimesNow-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



a{
	text-decoration: none!important;
	color: inherit!important;
}

body{
	margin: 0px;
	padding: 0px;
	background: #1C2A4A;
	opacity: 0;
	 -webkit-transition: all 3000ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 3000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.leftData{
	display: none!important;
}

.rightData{
	display: none!important;
}

.container{
    width: 100%;
    height: 100vh;
}

body.fadeIn{
	opacity: 1;
}

.leftContainer{
	left: 0px;
    width: 50%;
    height: 100vh;
    position: absolute;
    overflow: hidden;
}

.rightContainer{
	right: 0px;
    width: 50%;
    height: 100vh;
    position: absolute;
    overflow: hidden;
}

.image{
	position: absolute;
	width: 50vw;
	height: 100vh;
	background-position: center center;
	background-size: cover;
	-webkit-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.leftContainer .nextImage{
	transform:translateY(100%);
}

.leftContainer .currentImage{
	transform:translateY(0%);
}

.leftContainer .prevImage{
	transform:translateY(-100%);
}

.rightContainer .nextImage{
	transform:translateY(-100%);
}

.rightContainer .currentImage{
	transform:translateY(0%);
}

.rightContainer .prevImage{
	transform:translateY(100%);
}

.logo{
	position: fixed;
	z-index: 4;
	top: 50%;
    width: 400px;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.logo-overlay {
	position: fixed;
	z-index: 6;
	top: 60px;
	left: 50%;
	width: 250px;
	transform: translate(-50%);
	transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav{
	position: fixed;
	z-index: 999;
	top: 60px;
	right: 50px;
	width: 18px;
	height: 18px;
	background: #FFF;
	border-radius: 18px;
	cursor: pointer;
}

.close{
	position: fixed;
	z-index: 10;
	top: 60px;
	right: 50px;
	width: 18px;
	height: 18px;
	display: none;
	cursor: pointer;
}

h1{
	font-family: 'Futura Std', sans-serif;
    -webkit-font-smoothing: antialiased;
	color: #FFF;
	font-weight: 100;
	text-align: center;	
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	font-size: 24px;
	line-height: 28px;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0.07em;
}

.overlay{
	width: 100vw;
	height: 100vh;
	background: #1C2A4A;
	position: absolute;
	z-index: 5;
	top: 0px;
	opacity: 0;
	transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.overlay.open{
	opacity: 1;
}

.overlay div.content {
	position: absolute;
	color:#fff;
	text-align: center;
	width: 80%;
	left: 10%;
	top: 50%;
	transform: translateY(-50%);
	
    -webkit-font-smoothing: antialiased;
	font-size: 25px;
	line-height: 34px;
}

.overlay div.content p {
	font-family: 'Times Now', serif ;
	margin-bottom: 50px;
}
.overlay div.content h1 {
	margin-bottom: 50px;
}

.overlay div.content p a:hover {
	border-bottom: 1px solid #fff;
}


.socialIcons{
	position: absolute;
	z-index: 3;
	bottom: 50px;
    left: 50%;
    transform: translate(-50%);
}

.social{
	float: left;
    width: 25px;
    height: 25px;
}

@media screen and ( max-height: 730px ){

	.overlay p{
	    font-size: 25px;
	    line-height: 34px;
	}

}

@media screen and ( max-height: 640px ){

	.overlay p{
	    font-size: 25px;
	    line-height: 34px;
	}
	
	h1{
		font-size: 24px;
		line-height: 28px;
	}

}

@media screen and ( max-width: 640px ){
	
	.container{
	    height: 100%;
	}

	.leftContainer{
		left: 0px;
	    width: 100%;
	    height: 50%;
	    position: absolute;
	    overflow: hidden;
	}
	
	.rightContainer{
		top: 50%;
	    width: 100%;
	    height: 50%;
	    position: absolute;
	    overflow: hidden;
	}
	
	.image{
		position: absolute;
		width: 100%;
		height: 100%;
		background-position: center center;
		background-size: cover;
		-webkit-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
		transition:         all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
		-webkit-perspective: 1000;
		-webkit-backface-visibility: hidden;
	}
	
	.leftContainer .nextImage{
		transform:translateX(99.9999%);
		-webkit-transform:translateX(99.9999%);
	}
	
	.leftContainer .currentImage{
		transform:translateX(0%);
		-webkit-transform:translateX(0%);
	}
	
	.leftContainer .prevImage{
		transform:translateX(-100%);
		-webkit-transform:translateX(-100%);
	}
	
	.rightContainer .nextImage{
		transform:translateX(-99.9999%);
		-webkit-transform:translateX(-99.9999%);
	}
	
	.rightContainer .currentImage{
		transform:translateX(0%);
		-webkit-transform:translateX(0%);
	}
	
	.rightContainer .prevImage{
		transform:translateX(100%);
		-webkit-transform:translateX(100%);
	}
	
	h1{
		font-size: 24px;
		line-height: 28px;
	}
	
	.overlay p{
	    font-size: 22px;
	    line-height: 30px;
	}
	
	.logo{
		width: 80%;
	}

	.logo-overlay {
		width: 200px;
	}
	
	.nav{
	    top: 37px;
		right: 25px;
	}
	
	.close{
	    top: 37px;
		right: 25px;
	}
	
	.nav{
		background: none;
		border: 1px solid #FFF;
	}
	
	.overlay p{
		margin-top: -30px;	
	}
	
	.socialIcons{
		bottom: 100px;
	}

}


.pulse {
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255,255,255,0.4);
  animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
    box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
      box-shadow: 0 0 0 10px rgba(255,255,255, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
      box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}