@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&amp;display=swap');

@font-face {
	font-family: Zombie;
	src: url("../fonts/ZOMBIE.TTF");
}

body { font-family: "Roboto", sans-serif; line-height:1.2; font-size:15px; color:#fff; background: url("../images/bg.jpg")no-repeat top center; background-size: cover;}

a { text-decoration: none; cursor:pointer; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }

a:hover, a:focus, button:focus, button:hover { text-decoration: none; outline: none; }

img { max-width:100%;}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], textarea, select {
    color: #666;
    width: 100%;
}
button {
	background: none;
	border: none;
	padding: 0;
}
.t-body {
	overflow: hidden;
}
.deco {
	position: absolute;
}
.max-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}
.top-sec {
	position: relative;
	padding: 10px 0 30px;
	text-align: center;
}
.logo {
    max-width: 27%;
    margin: 0 auto;
    filter: drop-shadow(1px 2px 2px #000);
}
.title-top {
    position: relative;
    max-width: 840px;
    margin: 0 auto 30px;
}
.date-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 78%;
    color: #00495f;
    font-size: 28px;
    font-weight: 800;
}
@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-12px);
    }
    100% {
        transform: translatey(0px);
    }
}
@keyframes shake {
    0% {
        transform: rotate(-12deg);
    }
    50% {
        transform: rotate(12deg);
    }
	100% {
        transform: rotate(-12deg);
    }
}
.token-wrap {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}
.token-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 5%;
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ylw-text {
    color: #fff600;
}
.deco.pumpkin-1 {
    left: -4%;
    top: 52%;
    max-width: 22%;
	animation: shake 2s ease-in-out infinite;
}
.deco.pumpkin-2 {
    right: -5%;
    top: -30%;
    max-width: 22%;
	animation: float 2s ease-in-out infinite;
}
.reward-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
    position: relative;
	max-width: 1100px;
    margin: 0 auto;
	padding: 45px 0 30px;
}
.reward-card {
	cursor: pointer;
	transition: 0.2s;
}
.reward-card:hover {
	transform: scale(1.02);
	filter: brightness(1.1);
	transition: 0.2s;
}
.how-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
	padding-bottom: 25px;
}
.how-wrap {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}
.how-text {
    max-width: 77%;
    height: 80px;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tnc-wrapper {
    background: url(../images/tnc-base.png) no-repeat;
    background-size: 100% 100%;
    max-width: 991px;
    margin: 0 auto;
    padding: 35px 15px 30px;
    position: relative;
    z-index: 1;
}
.tnc-title {
    margin-bottom: 10px;
}
ul.terms {
    padding-left: 17px;
    color: #fff;
    text-align: left;
    font-size: 16px;
    max-width: 85%;
    margin: 0 auto;
}
.deco.fish-1 {
    bottom: 2%;
    left: 0;
    max-width: 10%;
	z-index: -1;
}
.deco.fish-2 {
    right: 0;
    bottom: -21%;
    max-width: 11%;
	z-index: -1;
}
.fish-container {
	position: relative;
	width: 120%;
}
.fish-1{
	animation: swim 15s linear infinite, swimv 8s ease infinite alternate; 
	left: -120%;
}
.fish-2 {
	animation: swim3 15s 2s linear infinite, swimv 8s 2s ease infinite alternate; 
	left: -100%;
}
@keyframes swim {
  0% {
    left: 110%;
  } 
  100% {
    left: -20%;
  }
}
@keyframes swim3 {
  0% {
    left: -40%;
  } 
  100% {
    left: 110%;
  }
}

@keyframes swimv {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}

#bubble-1 {
  animation: bubble 5s infinite;
  opacity: 0;
  transform: translate(-20px, -50px);
}

#bubble-2 {
  animation: bubble 5s 1s infinite;
  opacity: 0;
  transform: translate(-30px, -40px);
}

#bubble-3 {
  animation: bubble 5s 3s infinite;
  opacity: 0;
  transform: translate(-20px, -30px);
}

@keyframes bubble {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;   
  }
}

/* BUBBLES ANIMATIONS */
.bubbles-wrapper {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}
.bubble {
    position: absolute;
}
.x1 {
	animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
	left: 34%;
    top: 10%;
	background: url("../images/bubble-1.png")no-repeat center;
	width: 73px;
	height: 105px;
}
.x2 {
	animation: animateBubble 20s linear infinite, sideWays 4s ease-in-out infinite alternate;
	left: 22%;
    top: 67%;
	background: url("../images/bubble-2.png")no-repeat center;
	width: 109px;
	height: 118px;
}
.x3 {
	animation: animateBubble 40s linear infinite, sideWays 2s ease-in-out infinite alternate;
	left: 33%;
	top: 40%;
	background: url("../images/bubble-3.png")no-repeat center;
	width: 57px;
	height: 61px;
}
.x4 {
	animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
	left: 20%;
	top: 0;
	background: url("../images/bubble-4.png")no-repeat center;
	width: 92px;
	height: 104px;
}
.x5 {
	animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	right: 35%;
	top: 50%;
	background: url("../images/bubble-5.png")no-repeat center;
	width: 43px;
	height: 62px;
}
.x6 {
	animation: animateBubble 21s linear infinite, sideWays 1s ease-in-out infinite alternate;
    right: 31%;
	top: 0;
	background: url("../images/bubble-6.html")no-repeat center;
	width: 119px;
	height: 103px;
}
.x7 {
	animation: animateBubble 27s linear infinite, sideWays 2s ease-in-out infinite alternate;
	right: 28%;
    top: 70%;
	background: url("../images/bubble-3.png")no-repeat center;
	width: 57px;
	height: 61px;
}
.x8 {
	animation: animateBubble 35s linear infinite, sideWays 3s ease-in-out infinite alternate;
	left: 80%;
	top: 10%;
	background: url("../images/bubble-7.html")no-repeat center;
	width: 25px;
	height: 24px;
}
.x9 {
	animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
	left: 16%;
    top: 50%;
	background: url("../images/bubble-7.html")no-repeat center;
	width: 25px;
	height: 24px;
}
.x10 {
	animation: animateBubble 30s linear infinite, sideWays 2s ease-in-out infinite alternate;
	left: 80%;
	top: 80%;
	background: url("../images/bubble-1.png")no-repeat center;
	width: 73px;
	height: 105px;	
}
/* BUBBLES KEYFRAMES */
@keyframes animateBubble {
    0% {
        margin-top: 1000px;
    }
    100% {
        margin-top: -120%;
    }
}
@keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}






/** Modal **/
button.close-x {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    color: #fff;
}
.modal-content.reward {
    background: none;
    border: none;
    max-width: 320px;
    margin: 0 auto;
}
.reward-box {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
}
.prize {
    position: absolute;
    left: 0;
    right: 0;
    top: 54%;
    z-index: 3;
    font-size: 34px;
    color: #fff;
    font-weight: 800;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.3);
	text-shadow: -1px 1px 0 #0d5b8f,1px 1px 0 #0d5b8f,1px -1px 0 #0d5b8f,-1px -1px 0 #0d5b8f;
	filter: drop-shadow(0 0 5px #0d5b8f);
}
img.open {
    position: absolute;
    left: 0;
    right: 0;
    transition: 0.2s;
}
img.open {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.reward-box.active img.closed {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.reward-box.active img.open {
    opacity: 1;
    visibility: visible;
    transition: 0.2s;
}
.reward-box.active .prize {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 0.3s;
    transition-delay: 0.3s;
}


@media(max-width: 991px) {	
.how-wrapper {
    grid-template-columns: auto;
    grid-gap: 5px;
}	
.tnc-wrapper {
    background: rgb(18,93,162,0.7);
    border: 2px solid #45dcfd;
	border-radius: 15px;
    margin: 0 auto;
    padding: 10px 15px 30px;
}
ul.terms {
    font-size: 15px;
    max-width: 100%;
}	
}

@media(max-width: 850px) {
.date-text {
	font-size: 3.3vw;
}	
}

@media(max-width: 480px) {
.logo {
    max-width: 40%;
}	
.token-wrap {
    max-width: 85%;
}
.token-text {
	font-size: 6.2vw;
}
.how-text {
	font-size: 4vw;
	height: 15vw;
}		
.tnc-title {
    max-width: 85%;
    margin: 0 auto;
}	
ul.terms {
    font-size: 14px;
}	
.fish-1{
	animation: swim 6s linear infinite, swimv 8s ease infinite alternate; 
	left: -120%;
}
.fish-2 {
	animation: swim3 6s 2s linear infinite, swimv 8s 2s ease infinite alternate; 
	left: -100%;
}	
	
}

















