@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(#208599,#2a96a6);
    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: #208599;
    align-items: center;
}

#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: #208599;
    font-size: 0.925rem;
    z-index: 9;
    transform: translateY(100px);
    cursor: pointer;
}

.sec {
    position: relative;
    padding: 100px;
    background: #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: #201f2f;
    height: 100h;
    overflow: hidden;
    position: relative;
  }
  
  myCards::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #201f2f, transparent);
    z-index: 1000;
  }
  
  #icoCard {
    z-index: 20;
    position: relative;
    /* margin-bottom: 50px; */
    width: 30vw; height: 15vw;
    border-radius: 30px;
    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: 21;
    width: 30vw; height: 15vw;
    transform: scale(1.3);
    border-radius: 30px;
    margin-top: calc(-5vh);
  }
  
.sec ul, .sec ol.math {
	padding-left: 50px;
}
.sec ul li, .sec ol.math li {
    font-size: 1.1em;
    color: #fff;
}
.sec ul.tiers li {
	padding-bottom: 20px
}
.sec ol.math {
	list-style: decimal;
}
.sec strike {
	color: #c72626;
}
.sec .new-price {
	color: #40ab40;
	font-weight: bold;
}
.sec table {
	width: 950px; 
	border-collapse: collapse; 
	margin:50px auto;
}
.sec table.costs {
	width: 90%; 
}

.sec table.costs tr { 
	color: #e9d996; 
}

.sec th, .table-title {
	background: #99203c; 
	color: white!important; 
	font-weight: bold;
	text-align: center;
}
.sec table:not(.costs) td {
	color: #e9d996;
}

.sec td, th { 
	padding: 10px; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 18px;
}
.sec .transaction-explanation {
	text-align: center;
}
.sec .transaction-explanation img {
	width: 70%;
	border-radius: 8px;
}
#landsale-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);
}