﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

body { font-family: "Roboto", sans-serif; line-height:1.2; font-size:15px; color:#fff; background: #212436 url("../images/bg.jpg")no-repeat top center; background-size: 100%;}

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, input:focus, select:focus { 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 {
    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 {
	background: url("../images/btm-bg.png")no-repeat bottom center;
	background-size: 100%;
	text-align: center;
	position: relative;
	padding: 15px 0 30px;
}
.top-caption {
    font-size: 20px;
    margin-bottom: 15px;
}
.logo {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 2px rgb(0, 0, 0, 0.8)) drop-shadow(0 2px 5px rgb(0, 0, 0, 0.8));
}
.title-top {
    margin: -10% auto 0;
}
.how-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto 15px;
}
.accum-wrapper {
    position: relative;
    max-width: 550px;
    margin: 0 auto 30px;
}
.acc-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 31%;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
}
.accum-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 60%;
    font-size: 50px;
    font-weight: 600;
    color: #41c14a;
}
.countdown-wrapper {
    position: relative;
    max-width: 770px;
    margin: 0 auto 30px;
}
#countdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 17%;
    max-width: 80%;
    margin: 0 auto;
    color: #ffffff;
}
ul.countdown-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    list-style-type: none;
	padding: 0;
}
ul.countdown-list li {
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 500;
}
ul.countdown-list li span {
    display: block;
    font-size: 80px;
    font-weight: 600;
    color: #41c14a;
    line-height: 1.1;
}
.date-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 52%;
    max-width: 73%;
    margin: 0 auto;
}
.date-cd {
    position: absolute;
    left: 0;
    right: 0;
    top: 43%;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}
.bonus-wrapper {
    position: relative;
    max-width: 755px;
    margin: 0 auto;
}
.bonus-title {
    position: absolute;
    left: 0;
    right: 0;
    top: -5%;
    max-width: 70%;
    margin: 0 auto;
}
.bonus-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 1%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.table-responsive.bonus {
    position: absolute;
    top: 24%;
    left: 0;
    right: 0;
    width: 70%;
    margin: 0 auto;
    font-size: 26px;
}
table.bonus-table tr td {
    color: #ffffff;
    padding: 8px 2px;
}
table.bonus-table tr.top td {
    color: #51c75a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 110%;
}
.week-result-base {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}
.base-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 31%;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
}
.amount-num {
    position: absolute;
    left: 0;
    right: 0;
    top: 64%;
    font-size: 42px;
    font-weight: 700;
    color: #41c14a;
}
.btm-button-wrapper {
    padding: 15px 0;
}
button.comm-btn {
    background: url(../images/comm-btn.png);
    background-size: 100% 100%;
    height: 110px;
    width: 100%;
    max-width: 350px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 4px;
}
button.comm-btn:hover {
	transform: scale(0.98);
	filter: brightness(1.1);
}
.deco.deco-1 {
    left: 5%;
    top: 3%;
    max-width: 11%;
	animation: 2.2s float ease-in-out infinite;
}
.deco.deco-2 {
    right: 4%;
    top: 7%;
    max-width: 10%;
	animation: 2.5s float ease-in-out infinite;
}
.deco.deco-3 {
    left: 1%;
    bottom: 8%;
    max-width: 15%;
    animation: 2.2s float ease-in-out infinite;
}
.deco.deco-4 {
    right: 4%;
    bottom: 10%;
    max-width: 11%;
    animation: 2.5s float ease-in-out infinite;
}

@-webkit-keyframes float {
0% {
	transform: translateY(0);
}
50% {
	transform: translateY(-14px);
}
100% {
	transform: translateY(0);
}
}

/** Modal **/
.modal-dialog.how {
    max-width: 700px;
}
.modal-content.how {
    background: #0b0c0c;
    border: 2px solid #fff;
    box-shadow: inset 0 0 1px 2px #1eec3c, 0 0 2px 2px #41c14a;
    border-radius: 12px;
    padding: 25px 20px;
}
.tnc-title {
    color: #41c14a;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
ul.terms {
    padding-left: 17px;
    margin: 0;
}
ul.terms li {
    padding-bottom: 5px;
}
button.close-x {
    font-size: 15px;
    color: #fff;
    border: none;
    background: none;
    position: absolute;
    right: 8px;
    top: 6px;
    z-index: 2;
}

@media(max-width: 991px) {
.top-caption {
    font-size: 16px;
}
.logo {
    max-width: 32%;
}	
.title-top {
    height: 56vw;
    margin: -13% -10px 0;
}	
.title-top img {
    object-fit: cover;
    margin: 0 -10px;
    height: 100%;
}	
	
}

@media(max-width: 767px) {
.deco {
	display: none;
}	
.table-responsive.bonus {
    font-size: 3.5vw;
}
table.bonus-table tr td {
    padding: 1.4% 2px;
}	
.bonus-text {
    font-size: 3.2vw;
}
ul.countdown-list li span {
    font-size: 11vw;
}	
.date-cd {
    font-size: 3.8vw;
}
ul.countdown-list li {
    font-size: 3vw;
}	
.btm-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}	
button.comm-btn {
	width: 50%;
	font-size: 4.2vw;
	height: 16vw;
	padding-top: 1%;
}	
}

@media(max-width: 560px) {
.acc-title {
    font-size: 4vw;
}	
.accum-text {
    font-size: 9vw;
}
.base-title {
    font-size: 4vw;
}	
.amount-num {
    font-size: 7vw;
}	
}




@media(max-width: 480px) {
.top-caption {
	font-size: 15px;
}	
.logo {
	max-width: 35%;
}	
	
}









