body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  height: 100%;
  background-image: url(ok.png);
  height: 100vh;
  background-size: cover;
  font-family: 'Roboto Condensed', sans-serif;
}

#container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0px 0;
}

#mobileTemplate {
  background-image: url('img/android.png');
  background-size: 270px 550px;
  background-repeat: no-repeat;
}

.contain {
  position: absolute;
  z-index: 1;
}

.slideContainer {
  width: 270px !important;
  height: 550px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.slideContainer img {
  width: 270px;
  height: 550px;
}

.slick-slide {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.slick-active {
  opacity: 1 !important;
  transition: opacity 0.5s ease-in;
}

.slick-cloned {
  display: none;
}

.slick-list {
  padding: 0 !important;
  width: 270px;
  height: 550px;
  z-index: -1;
}

/* basic menu styles */
.nav-menu {
  display: block;
	background: #74adaa;
	max-width: 143px;
	margin: 30px auto 30px;
}
.nav-menu > li {
  display: inline;
  float:left;			
	border-right:1px solid #333;
  position: relative;
  z-index: 1;
}
.nav-menu > li:last-child {
  border-right: none;
}
.nav-menu li a {
  color: #fff;
	display: block;
	text-decoration: none;
	font-family: 'Roboto Condensed', sans-serif;	 
	font-smoothing: antialiased;
	text-transform: uppercase;
	overflow: visible;
	line-height: 20px;
    font-weight: 300;
	font-size: 14px;
    letter-spacing: 1px;
	padding: 15px 30px 15px 31px;			
}

}
ul, li {
  list-style: none outside none;
}

/* animation domination */
.three-d {   
  perspective: 200px;   
  transition: all .07s linear;
  position: relative;
}

.three-d:not(.active):hover {
  cursor: pointer;
}

.three-d:not(.active):hover .three, 
.three-d:not(.active):focus .three {   
  transform: translateZ(-25px) rotateX(90deg);
}

.three {  
  transition: all .3s ease-out;   
  transform: translatez(-25px);   
  transform-style: preserve-3d;   
  pointer-events: none;
  position: absolute;
  top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.front {  
  transform: rotatex(0deg) translatez(25px);
}

.back {   
  transform: rotatex(-90deg) translatez(25px);
  color: #FFE7C4;
}

.front, .back {
  display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #333;
	padding: 15px 30px 15px 31px;	
	color: white;	 
    pointer-events: none;   
    box-sizing: border-box;
}
.nav-menu li .active .front,
.nav-menu li .active .back,
.nav-menu li a:hover .front,
.nav-menu li a:hover .back {
  background-color: #00afef;   
  background-size: 5px 5px;
  background-position: 0 0, 30px 30px; 
    color: black;
   
}
.nav-menu ul {
  position: absolute;
  left: -40px;
	text-align: left;
	line-height: 40px;
	font-size: 10px;
	width: 200px; 
  transition: all 0.3s ease-in;   
  transform-origin: 0px 0px;  
  transform: rotateX(-90deg);   
	backface-visibility: hidden;
}
.nav-menu > li:hover ul {
  display: block;  
	transform: rotateX(0deg);
}