@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900,&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: linear-gradient(#272281,#616adc);
    overflow-x: hidden;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

header .logo {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
}
header ul
{
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li {
    list-style: none;
    margin-left: 20px;
}

header ul li a {
    text-decoration: none;
    padding: 6px 15px;
    color: #fff;
    border-radius: 20px;
}
header ul li a:hover,
header ul li a.active {
    background: #fff;
    color: #272281;
    align-items: center;
}
section::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #160f3a, transparent);
    z-index: 1000;
}
#text {
    position: absolute;
    color: #fff;
    white-space: nowrap;
    font-size: 7.5vw;
    z-index: 9;
    right: -350px;
	margin-top: -115px;
}

#btn {
    text-decoration: none;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 40px;
    background: #fff;
    color: #272281;
    font-size: 0.925rem;
    z-index: 13;
    transform: translateY(100px);
    cursor: pointer;
}

.sec {
    position: relative;
    padding: 100px;
	background-color: #1a1c25;
}
section::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #1a1c25, transparent);
    z-index: 1002;
}

.sec h2 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #fff;
}

.sec p {
    font-size: 1.2em;
    color: #fff;
}



.myCards {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1a1c25;
    height: 100h;
    overflow: hidden;
    position: relative;
  }
  
  myCards::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #272281, transparent);
    z-index: 1000;
  }
  
  #icoCard {
    z-index: 21;
    position: relative;
    /* margin-bottom: 50px; */
    width: 30vw; height: 15vw;
    border-radius: 30px;
    transform: scale(1.3);
    margin-top: calc(-5vh);
  }
  
  #nftsaleCard {
    margin-top: 50px;
    position: relative;
    z-index: 20;
    /* margin-bottom: 50px; */
    width: 30vw; height: 15vw;
    border-radius: 30px;
  }
  
  #landsaleCard {
    position: relative;
    z-index: 20;
    width: 30vw; height: 15vw;
    border-radius: 30px;
    margin-top: calc(-5vh);
  }
  
  .sec .transaction-explanation {
    text-align: center;
  }
  .sec .transaction-explanation img {
    width: 70%;
    border-radius: 8px;
  }
  
.sec table {
	width: 950px; 
	border-collapse: collapse; 
	margin:50px auto;
}
.sec table.costs {
	width: 90%; 
}

.sec table.costs tr { 
	color: #e9d996; 
}

.sec th:not(:first-child), .table-title {
	background: #272181; 
	color: white!important; 
	font-weight: bold;
	text-align: center;
}
.sec table tr td:not(:first-child) {
	text-align: center;
}
.sec table tr td:first-child {
	font-weight: bold;
}
.sec table td {
	color: #ede8d1;
}

.sec td, th { 
	padding: 10px; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 18px;
}
.sec ul.scenario {
	padding-left: 25px;
	list-style: none
}
.sec ul.scenario li {
    font-size: 1.1em;
    color: #fff;
	margin-top: 10px;
}
.sec ul.scenario li span {
	padding-left: 25px;
	font-weight: bold;
}
.coins {
    animation-name: cream;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    position: absolute;
    top: 100vh;
    z-index: 1;
    width: 100%;
    height: 100%;
}

@keyframes cream {
	0% {
		transform: translateY(0)
	}
	50% {
		transform: translateY(90px)
	}
	100% {
		transform: translateY(0)
	}
}

.coins img {
    max-width: 100%;
}
.coins .coin {
	position: absolute
}

.coins .coin.coin-1 {
	width: 121px;
	height: 121px;
	right: 0;
	top: 70px;
	transform: rotate(-315deg)
}

.coins .coin.coin-2 {
	width: 90px;
	height: 58px;
	transform: rotate(-75deg);
	top: 70px;
	left: -10px
}

.coins .coin.coin-3 {
	width: 94px;
	height: 94px;
	right: 30px;
	transform: rotate(-226deg);
	top: 650px;
    right: 120px;
}

.coins .coin.coin-4 {
	width: 58px;
	height: 58px;
	transform: rotate(-315deg);
	top: 755px;
    left: 110px;
}

.coins .coin.coin-5 {
    width: 85px;
    height: 77px;
    right: 30px;
    transform: rotate(-240deg);
    top: 370px;
    right: 7px;
}

#ico-table-mobile {
	display: none;
}

/*
==============================================
pulse
==============================================
*/

.pulse{
	animation-name: pulse;
	-webkit-animation-name: pulse;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		opacity: 0.7;		
	}
	50% {
		transform: scale(1);
		opacity: 1;	
	}	
	100% {
		transform: scale(0.9);
		opacity: 0.7;	
	}			
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.95);
		opacity: 0.7;		
	}
	50% {
		-webkit-transform: scale(1);
		opacity: 1;	
	}	
	100% {
		-webkit-transform: scale(0.95);
		opacity: 0.7;	
	}			
}


.fixedElement {
    background-color: #fff;
    position:fixed;
    top:10px;
    right: 10px;
    width:10px;
    z-index:10003;
    color: #ff4141; font-weight: bold;
    margin: 50px 25px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
}

.fixedElement:hover {
    background-color: #c0c0c0;
}
.fixedElement:active {
    transform: translateY(3px);
}

.joinICOBtn {
    z-index: 10000;
    position: relative;
    margin: 0 auto;
    text-transform: uppercase;
    background-color: #2a2a35;
    font-weight: 700;
    color: #fff;
    padding: 10px 16px;
    border-radius: .5rem;
    transition: all .15s cubic-bezier(.4,0,.2,1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 60px;
}
.joinICOBtn:hover {
    background-color: #24242d;
    box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
}
.joinICOBtn:active {
    background-color: #242436;
    box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
}