
/* Morph Shape */
.main {
	height: 100%;
	-webkit-perspective: 1200px;
	perspective: 1200px;
}
.container {
	width: 100%;
	height: 100%;
	padding: 1em;
	position: relative;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.codrops-header {
	position: relative;
	text-align: center;
	-webkit-flex: none;
	flex: none;
	margin-bottom: 3em;
	color: #067ba7;
	padding: 0 1em;
}
.demo-2 .codrops-header {
	color: #719847;
}
.codrops-header h1 {
	font-weight: 400;
	font-size: 1.75em;
	margin: 0;
}
.info {
	margin: 0;
	font-size: 0.85em;
	color: #fff;
	font-family: 'Montserrat', Arial, sans-serif;
}
.info a {
	color: #e4ef80;
	font-weight: bold;
}
.demo-2 .info a {
	color: #606F4F;
}
.info a:hover {
	color: #fff;
}
.codrops-links {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	text-align: center;
	font-size: 0.85em;
	margin: 0.5em 0 0;
	display: none;
}
.codrops-links::after {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: rgba(255,255,255,0.5);
	content: '';
	-webkit-transform: rotate3d(0, 0, 1, 22.5deg);
	transform: rotate3d(0, 0, 1, 22.5deg);
}
.codrops-icon {
	display: inline-block;
	margin: 0.5em;
	padding: 0em 0;
	width: 1.5em;
	text-decoration: none;
}
.codrops-icon:before {
	margin: 0 5px;
	text-transform: none;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	font-family: 'codropsicons';
	line-height: 1;
	speak: none;
	-webkit-font-smoothing: antialiased;
}
.codrops-icon span {
	display: none;
}
.codrops-icon--drop:before {
	content: "\e001";
}
.codrops-icon--prev:before {
	content: "\e004";
}
.morph-shape {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.morph-shape svg {
	position: absolute;
	margin: 0;
	pointer-events: none;
}
/* Stack */
.stack ul {
	position: relative;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.stack ul li {
	position: absolute;
	width: 100%;
	opacity: 0;
}
ul.stack__images {
	width: 400px;
	height: 300px;
	z-index: 10;
	-webkit-perspective: 1000px;
	-webkit-perspective-origin: 50% -50%;
	perspective: 1000px;
	perspective-origin: 50% -50%;
}
 @media screen and (max-height: 530px), screen and (max-width: 400px) {
ul.stack__images {
	width: 260px;
	height: 195px;
}
}
.stack__images li {
	top: 0;
	z-index: 1;
	-webkit-transform: translate3d(0, 0, -180px);
	transform: translate3d(0, 0, -180px);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.stack__images li img {
	display: block;
	max-width: 100%;
	pointer-events: none;
}
.stack__images li:hover {
	cursor: url(../img/cursor_vulcan.png), auto;
}
.stack__images li:active {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}
.stack__images li.animate {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.stack__images li.move-back {
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.470, 1); /* older webkit */
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.470, 1.515);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.470, 1.515);
}
.stack__next {
	border: none;
	display: block;
	padding: 0;
	overflow: hidden;
	width: 36px;
	height: 36px;
	margin: 10px auto 0;
	font-size: 30px;
	position: relative;
	cursor: pointer;
	color: #067ba7;
	background: none;
}
.demo-2 .stack__next {
	color: #189824;
}
.stack__next:hover {
	color: #fff;
}
.stack__next:focus {
	outline: none;
}
.stack__next span {
	position: absolute;
	top: 200%;
}
ul.stack__titles {
	height: 18vh;
	max-width: 800px;
	width: 95%;
	margin-top: 10px;
}
.stack__titles blockquote {
	margin: 0;
	text-align: center;
}
.blockquote_1 {
	font-size: 18px;
	color: #fff;
	padding-bottom: 1em;
}
.blockquote_1 span {
	font-size: 14px;
	color: #767676;
	padding: 0px 10px;
}
.stack__titles li {
	pointer-events: none;
	-webkit-transition: opacity 0.45s ease;
	transition: opacity 0.45s ease;
}
.stack__titles li.current {
	opacity: 1;
	pointer-events: auto;
}
/* Animations */
.morph-shape svg {
	fill: #212121;
	-webkit-transition: fill 0.1s ease-out;
	transition: fill 0.1s ease-out;
}
.navigate-next .morph-shape svg {
	fill: #212121;
	-webkit-transition-duration: 0.45s;
	transition-duration: 0.45s;
}
.container {
	-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.6, 0, 0.5, 1);
	transition: transform 0.1s cubic-bezier(0.6, 0, 0.5, 1);
}
.demo-1.navigate-next .container {
	-webkit-transition-duration: 0.45s;
	transition-duration: 0.45s;
	-webkit-transform: translate3d(0, 0, -600px);
	transform: translate3d(0, 0, -600px);
}
.demo-2.navigate-next .container {
	-webkit-transition-duration: 0.45s;
	transition-duration: 0.45s;
	-webkit-transform: rotate3d(-0.5, 0, 1, -6deg) translate3d(0, 0, -600px);
	transform: rotate3d(-0.5, 0, 1, -6deg) translate3d(0, 0, -600px);
}
.demo-2 .morph-shape svg {
	fill: #212121;
}
.demo-2.navigate-next .morph-shape svg {
	fill: #212121;
}
.codrops_1 {
	width: 100%;
height:;
	font-size: 40px;
	color: #fff;
	text-align: center;
}
.codrops_2 {
	width: 100%;
	text-align: center;
	font-size: 18px;
	color: #fff;
	opacity: 0.22;
	font-family: Arial, Helvetica, sans-serif;
	height: 30px;
	line-height: 30px;
}
.codrops_3 {
	width: 100%;
height:;
	font-size: 16px;
	color: #fff;
	text-align: center;
	height: 19px;
	margin-top: 5px;
}
.blockquote_1 {
	font-size: 18px;
	color: #fff;
	padding-bottom: 1em;
}
.blockquote_2 {
	font-size: 18px;
	color: #fff;
	padding-bottom: 1em;
	width: 100%;
}
.blockquote_1 span {
	font-size: 14px;
	color: #767676;
	padding: 0px 10px;
}
 @media screen and (max-width:1440px)and (min-width:1366px) {
.codrops_1 {
	width: 100%;
height:;
	font-size: 24px;
	color: #fff;
	text-align: center;
}
.codrops_2 {
	width: 100%;
	text-align: center;
	font-size: 16px;
	color: #fff;
	opacity: 0.22;
	font-family: Arial, Helvetica, sans-serif;
	height: 30px;
	line-height: 30px;
}
.codrops_3 {
	width: 100%;
height:;
	font-size: 14px;
	color: #fff;
	text-align: center;
	height: 19px;
	margin-top: 5px;
}
.blockquote_2 {
	font-size: 16px;
}
.blockquote_1 {
	font-size: 16px;
	color: #fff;
	padding-bottom: 1em;
}
ul.stack__images {
	width: 300px;
	height: 225px;
	z-index: 10;
	-webkit-perspective: 1000px;
	-webkit-perspective-origin: 50% -50%;
	perspective: 1000px;
	perspective-origin: 50% -50%;
}
}
 @media screen and (max-width:1366px)and (min-width:1000px) {
.codrops_1 {
	width: 100%;
height:;
	font-size: 24px;
	color: #fff;
	text-align: center;
}
.codrops_2 {
	width: 100%;
	text-align: center;
	font-size: 16px;
	color: #fff;
	opacity: 0.22;
	font-family: Arial, Helvetica, sans-serif;
	height: 30px;
	line-height: 30px;
}
.codrops_3 {
	width: 100%;
height:;
	font-size: 14px;
	color: #fff;
	text-align: center;
	height: 19px;
	margin-top: 5px;
}
.blockquote_2 {
	font-size: 16px;
}
.blockquote_1 {
	font-size: 16px;
	color: #fff;
	padding-bottom: 1em;
}
ul.stack__images {
	width: 300px;
	height: 225px;
	z-index: 10;
	-webkit-perspective: 1000px;
	-webkit-perspective-origin: 50% -50%;
	perspective: 1000px;
	perspective-origin: 50% -50%;
}
}
@media screen and (max-width:1000px)and (min-width:700px) {
.codrops_1 {
	width: 100%;
height:;
	font-size: 20px;
	color: #fff;
	text-align: center;
}
.codrops_2 {
	width: 100%;
	text-align: center;
	font-size: 16px;
	color: #fff;
	opacity: 0.22;
	font-family: Arial, Helvetica, sans-serif;
	height: 30px;
	line-height: 30px;
}
.codrops_3 {
	width: 100%;
height:;
	font-size: 12px;
	color: #fff;
	text-align: center;
	height: 19px;
	margin-top: 5px;
}
.blockquote_2 {
	font-size: 16px;
}
.blockquote_1 {
	font-size: 16px;
	color: #fff;
	padding-bottom: 1em;
}
ul.stack__images {
	width: 300px;
	height: 225px;
	z-index: 10;
	-webkit-perspective: 1000px;
	-webkit-perspective-origin: 50% -50%;
	perspective: 1000px;
	perspective-origin: 50% -50%;
}
}
@media screen and (max-width:700px)and (min-width:0px) {
.codrops_1 {
	width: 100%;
height:;
	font-size: 18px;
	color: #fff;
	text-align: center;
}
.codrops_2 {
	width: 100%;
	text-align: center;
	font-size: 16px;
	color: #fff;
	opacity: 0.22;
	font-family: Arial, Helvetica, sans-serif;
	height: 30px;
	line-height: 30px;
}
.codrops_3 {
	width: 100%;
height:;
	font-size: 12px;
	color: #fff;
	text-align: center;
	height: 19px;
	margin-top: 5px;
}
.blockquote_2 {
	font-size: 14px;
}
.blockquote_1 {
	font-size: 14px;
	color: #fff;
	padding-bottom: 1em;
}
ul.stack__images {
	width: 250px;
	height: 188px;
	z-index: 10;
	-webkit-perspective: 1000px;
	-webkit-perspective-origin: 50% -50%;
	perspective: 1000px;
	perspective-origin: 50% -50%;
}
.main {
	height: 100%;
	-webkit-perspective: 1200px;
	perspective: 1200px;
	background-color: #212121;
}
}
