*{
	box-sizing: border-box;
}
html{
	cursor: none;
}
body {
    margin: 0 auto;
    height: 100vh;
    overflow: hidden;
	color: #fff;
	font-family: 'SF Pro Display';
}

ul{
	padding: 0;
	list-style: none;
}
a, a:hover{
	text-decoration: none;
	color: #fff;
	cursor: none;
}

.wrapper{
    height: 100vh;
    background: linear-gradient(71deg, #150b2c, #0c0722, #4f2792, #6f3e87, #17162b, #030416);
	overflow: hidden;
	position: relative;
}
.wrapper:before, .wrapper:after, .inner:before, .inner:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: overlay;
}
.wrapper:before{
	background-image: -webkit-linear-gradient(#fff, transparent 1px), -webkit-linear-gradient(left, #fff, transparent 1px);
	background-image: -o-linear-gradient(#fff, transparent 1px), -o-linear-gradient(left, #fff, transparent 1px);
	background-image: linear-gradient(#fff, transparent 1px), linear-gradient(to right, #fff, transparent 1px);
	background-size:100% 150px,150px 100%;
	opacity: 50%;
}
.wrapper:after{
	background: #8C8C8C;
	filter: url(#noiseFilter);
}
.wrapperContent{
	display: none;
}
.wrapperContent.show{
	display: block;
}

.blob {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 650px;
    height: 650px;
    border-radius: 100%;
    background-image: linear-gradient(#150b2c 10%, #000);
    filter: blur(250px);
    transition: all 450ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 0;
}
#cursor {
	position: absolute;
	top: 50%;
	left: 50%;
}
#cursor #cursorElemnt{
	position: absolute;
	background: url("../images/cursor.svg") no-repeat;
	height: 23px;
	width: 23px;
	margin-top: 0;
	margin-left: 0;
	z-index: 1;
}

header {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
	align-items: center;
}
.logo {
    width: 96px;
    transition: 0.6s ease-in;
	transform: translateY(-30%);
    animation: logoTransition 2s cubic-bezier(0.4, 0, 1, 1) ;
}
@keyframes logoTransition{
	0%{
		transform: translateY(-102%);
	}
	100%{
		transform: translateY(-30%);
	}
}

ul.navbar {
    display: flex;
	font-family: 'Good Times Rg';
}
ul.navbar li {
    margin-left: 34px;
}
ul.navbar li a {
    position: relative;
	display: inline-block;
	
}
ul.navbar li.active a {
    text-shadow: 0 0 4px white;
}
ul.navbar li.active a:after {
    content: '';
    width: 16px;
    height: 2px;
    position: absolute;
    background: linear-gradient(45deg, #43ea80, #38f8d4);
    bottom: -6px;
    left: 50%;
    transform: translateX(-8px);
}


.content {
    position: relative;
    z-index: 36;
    width: 90%;
    margin: 0 auto;
	display: flex;
}
.contentLeft {
    width: 80%;
	animation: slideInLeft 2s ease-in-out;
}
@keyframes slideInLeft{
	0%{
		transform: translateX(-102%);
	}
	100%{
		transform: translateX(0);
	}
}
.content h1 {
    font-size: 92px;
	margin-bottom: 32px;
}
span.scndLine {
    display: flex;
    align-items: center;
}
span.arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(270deg, #533bff, transparent);
    border: 10px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: linear-gradient(to left, #602e99, transparent);
    transform: rotate(45deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 42px;
    margin-left: 67px;
}
span.arrow img {
    transform: rotate(315deg);
}
span.gradientHd {
    background: linear-gradient(150deg, #533bff 37%, #ffc931, #533bff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	background-size: 200% auto;
	margin-left: 20px;
	animation: textShine 1s ease-in-out infinite alternate;
}
@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.content p {
    margin-left: 10%;
    font-size: 24px;
    font-weight: 300;
	width: 70%;
}

.notify {
    font-family: 'Good Times Rg';
    margin-left: 10%;
    margin-top: 52px;
}
.notify h4 {
    font-size: 20px;
    font-weight: 300;
}
.notifyGetDetails {
    margin-top: 42px;
	display: flex;
}
.btn {
    background: linear-gradient(270deg, #ffc931, transparent);
    padding: 12px 52px;
	position: relative;
	border: 10px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(to right, #602e99, transparent);
	font-family: 'Good Times Rg';
}
.notifyGetDetails input {
	background: transparent;
	outline: none;
	margin-left: 10px;
	padding: 10px 24px;
	border: 10px solid;
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: linear-gradient(104deg, #ffc931 45%, #ffc93117);
	width: 35%;
	color: #fff;
	font-family: 'Good Times Rg';
}
input::placeholder {
	font-size: 16px;
	font-family: 'Good Times Rg';
	color: #fff;
}

.contentRight {
    width: 50%;
	animation: slideInRight 3s ease-in-out;
}
@keyframes slideInRight{
	0%{
		transform: translateX(102%);
	}
	100%{
		transform: translateX(0);
	}
}
.card{
	transform: translateZ(20px);
	transform-style: preserve-3d;
	border-radius: 5px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	place-items: center;
	box-shadow: 0 3px 6px rgba(0,0,0,0.2);
	background: -webkit-linear-gradient(71deg, #150b2c, #0c0722, #4f2792, #6f3e87, #17162b, #030416);
	background: -moz-linear-gradient(71deg, #150b2c, #0c0722, #4f2792, #6f3e87, #17162b, #030416);
	background: -ms-linear-gradient(71deg, #150b2c, #0c0722, #4f2792, #6f3e87, #17162b, #030416);
	background: -o-linear-gradient(71deg, #150b2c, #0c0722, #4f2792, #6f3e87, #17162b, #030416);
	background: linear-gradient(71deg, #150b2c, #0c0722, #4f2792, #6f3e87, #17162b, #030416);
	padding: 24px;
	width: 62%;
	text-align: center;
}
.card.card1 {
    transform: rotate(10deg);
    box-shadow: 2px 2px 50px #000;
}
.card.card2 {
    position: absolute;
    top: 27%;
    right: 0;
    z-index: -1;
    transform: rotate(-9deg);
    max-width: 284px;
    min-width: 284px;
    width: 284px;
    height: 350px;
}


.card1{
	animation: tilt 2s ease-in-out infinite alternate;
	will-change: transform;
}
@keyframes tilt1 {
    0% {
        transform: perspective(700px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1) translateY(1px);
		--x: 8.90771484375;
   		--y: 345.62890803813934;
    }
    100% {
        transform: perspective(700px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1) translateY(-10px);
		--x: 251.4205322265625;
   		--y: 275.81152480840683;
    }
}
.card2{
	animation: tilt2 2s ease-in-out infinite alternate;
	will-change: transform;
}
@keyframes tilt2 {
    0% {
        transform: perspective(700px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1) translateY(1px);
		--x: 8.90771484375;
   		--y: 345.62890803813934;
    }
    100% {
        transform: perspective(700px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1) translateY(10px);
		--x: 251.4205322265625;
   		--y: 275.81152480840683;
    }
}

.card-img img{
	width: 100%;
}
.card-content {
    width: 100%;
}
.cardHd {
    font-size: 30px;
    margin: 32px 0;
}
.timer {
    font-size: 30px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-around;
	font-family: 'Good Times Rg';
}

.card-logo {
    width: 60px;
    float: right;
	margin-top: -10px;
}

h2 {
    font-size: 42px;
    text-transform: uppercase;
    font-family: 'Good Times Rg';
    width: 58%;
}
.yellow{
	color: #ffc931;
}
span.arrow.downArrow img {
    transform: rotate(45deg);
}
.hdContent {
    display: flex;
    justify-content: flex-start;
}
span.arrow.downArrow {
    margin: 0 66px;
}
.hdContent p {
    margin: 0;
    font-size: 18px;
    width: 54%;
}

.shape-outer {
    display: flex;
    flex-shrink: 0;
    height: calc(306px + 5vw);
    width: calc(224px + 4vw);
    margin: 25px;
    background-image: linear-gradient(to bottom right, #ff3cac, #562b7c, #2b86c5);
}
.shape-inner {	
    height: 100%;
    width: 100%;
    background: url("../images/card-01.jpg") no-repeat center;
    background-size: cover;
    margin: auto;
}
.bevel {
    -webkit-clip-path: polygon(20% 0%, 100% 0%, 100% 20%, 100% 80%, 80% 100%, 0% 100%, 0% 80%, 0% 20%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 20%, 100% 80%, 80% 100%, 0% 100%, 0% 80%, 0% 20%);
}

.contactForm {
    padding: 22px 30px 8px;
    width: 40%;
    margin: 40px auto;
    z-index: 99;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    overflow: hidden;
	animation: slideInDown 3s ease-in-out;
}
@keyframes slideInDown{
	0%{
		transform: translateX(-50%) translateY(102%);
	}
	100%{
		transform: translateX(-50%) translateY(0);
	}
}
.contactForm::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 14%);
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}
.contactForm::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #0000009e, transparent);
    opacity: 152%;
}

.formContainer {
    position: relative;
    z-index: 1;
	
}

.formRow {
    display: flex;
	justify-content: space-between;
}
.contactForm input, .contactForm textarea {
	background: transparent;
	outline: none;
	padding: 10px 24px;
	border: 10px solid;
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: linear-gradient(104deg, #432fcb 45%, #432fcb12);
	width: 100%;
	color: #fff;
	font-family: 'Good Times Rg';
}
.contactForm input::placeholder, .contactForm textarea::placeholder {
	color: rgba(255,255,255,60%);
	font-size: 16px;
}
.formRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}
.formRow a.btn {
    margin: 0 auto;
}

@media (max-width:1368px){
	.content {
		margin-top: 40px;
	}
	.content h1 {
		margin-top: 18px;
		font-size: 78px;
	}
	.card{
		width:84%;
	}
	/*.card.card2 {
		right: 62%;
		top: 37%;
	}*/
	.content p {
		width: 55%;
		font-size: 19px;
		margin-left: 7%;
	}
	.hdContent p{
		margin-left: 0;
	}
	.contentRight {
		width: 36%;
	}
	span.arrow {
		margin-left: 50px;
	}
	.notify {
		margin-left: 7%;
	}
	.contactForm {
		width: 55%;
		bottom: 6%;
	}
	h2 {
		width: 80%;
	}
}
@media (max-width: 1366px) {
    .contactForm {
        bottom: 14%;
    }
}
@media (max-width:1280px){
	h2 {
		width: 80%;
		margin-top: 0;
		font-size: 36px;
	}
	.contactForm {
		width: 58%;
		bottom: 4%;
	}
}
@media (max-width:1180px){
	.content {
		margin-top: 0;
	}
	.notifyGetDetails {
		margin-top: 26px;
		flex-direction: column-reverse;
	}
	.notifyGetDetails input {
		margin-left: 0;
		margin-bottom: 10px;
		width: 62%;
	}
	a.btn {
		width: 62%;
		text-align: center;
	}
	.card {
		width: 100%;
	}
	.timer {
		font-size: 24px;
	}
	.notify {
		margin-left: 4%;
	}
	.content p {
		margin-left: 4%;
	}
	
	.hdContent p{
		margin-left: 0;
	}
	span.arrow {
		margin-left: 40px;
		margin-right: 30px;
	}
	span.gradientHd {
		margin-left: 16px;
	}
	.contactForm {
		width: 66%;
		bottom: 2%;
	}
	h2 {
		width: 94%;
		font-size: 32px;
	}
}

@media (max-width:1024px) and (max-height:600px){
	.logo {
		width: 70px;
	}
	.wrapper {
		height: auto;
	}
	.contactForm {
		position: relative;
		left: auto;
		transform: translate(0, -80%);
		bottom: auto;
	}
	.shape-outer {
		height: calc(248px + 5vw);
	}
	.content p {
		width: 75%;
		font-size: 17px;
	}
	span.arrow.downArrow {
		margin: 0 36px;
	}
	.content h1 {
        margin-top: 0;
        font-size: 60px;
    }
}
@media (max-width:1024px) and (max-height:1366px) and (orientation:portrait){
	.content {
		flex-direction: column-reverse;
	}
	.contentRight {
		width: 38%;
		margin: 0 auto;
	}
	.contentLeft {
		width: 100%;
		margin-top: 50px;
		margin-left: 50px;
	}
	.card.card2 {
		right: 18%;
		top: 24%;
	}
	.content p {
		width: 80%;
	}
	
	.hdContent p{
		margin-left: 0;
	}
	.notifyGetDetails input, a.btn {
		width: 43%;
	}
	.notifyGetDetails {
		flex-direction: row;
	}
	.notifyGetDetails input {
		margin-left: 10px;
		margin-bottom: 0;
		padding-bottom: 16px;
	}
	.contactForm {
		width: 74%;
		bottom: 12%;
	}
}
@media (max-width:853px){
	.contactForm {
		width: 90%;
	}
	.content.contactPgCnt {
		flex-direction: row;
	}
	span.arrow.downArrow {
		margin: 0 20px;
	}
}
@media (max-width:768px){
	.contactForm {
		position: relative;
		transform: translateX(0);
		left: auto;
		bottom: 0;
	}
	@keyframes slideInDown{
		0%{
			transform: translateX(0%) translateY(102%);
		}
		100%{
			transform: translateX(0%) translateY(0);
		}
	}
	
	.content.contactPgCnt .contentLeft {
		margin-left: 5px;
	}
}

@media (max-width:600px){
	body{
		overflow: auto;
	}
	.wrapper {
		padding-bottom: 40px;
		height: auto;
		margin-bottom: -20px;
	}
	.contentRight {
        width: 76%;
        margin: 50px auto;
    }
	.card.card2 {
		right: -9%;
	}
	.contentLeft {
		margin-left: 18px;
	}
	.content h1 {
		font-size: 50px;
	}
	.notifyGetDetails {
		flex-direction: column-reverse;
	}
	.notifyGetDetails input {
		margin-left: 0;
		width: 85%;
		margin-bottom: 10px;
	}
	a.btn {
		width: 85%;
	}
	.formRow {
		flex-direction: column;
	}
	.formGroup input:nth-child(1) {
    	margin-top: 16px;
	}
	header{
		display: block;
	}
	ul.navbar {
		margin-top: 0;
	}
	.content.contactPgCnt {
		flex-direction: column;
	}
	.content.contactPgCnt .contentRight {
		margin: 0 auto;
	}
	.shape-outer.bevel {
		margin-bottom: 0;
	}
	.heightPg{
		height: 100vh;
		display: flex;
		align-items: center;
	}
}
@media(max-width:375px){
	ul.navbar li:first-child {
		margin-left: 6px;
	}
}
