@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(#860a52,#b21845);
    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: #860a52;
    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: #860a52;
    font-size: 0.925rem;
    z-index: 13;
    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;
}
.sec p i {
	color: #e9c788
}

.sec p a {
	color: #fff;
}
.sec p a:hover {
	color: #bbb;
}
.sec .cards {
	text-align: center;
}
.sec .cards img {
	max-width: 100%;
}

.sec .cards .name_chest {
    font-size: 1.3em;
	font-weight: bold;
	display: block;
	color: white;
}
.sec .cards .name {
    font-size: 1.4em;
	font-weight: bold;
	display: block;
	color: white;
}
.sec .cards .desc {
	display: block;
	color: white;
	min-height: 50px;
}

.myCards {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1c0522;
    height: 100h;
	margin-right: 0!important;
    margin-left: 0!important;
    overflow: hidden;
    position: relative;
  }
  
  myCards::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #1c0522, transparent);
    z-index: 1000;
  }
  
  #icoCard {
    z-index: 20;
    position: relative;
    /* margin-bottom: 50px; */
    width: 30vw; height: 15vw;
    border-radius: 30px;
    margin-top: calc(-5vh);
    margin-top: 50px;
  }
  
  #nftsaleCard {
    position: relative;
    z-index: 21;
    /* margin-bottom: 50px; */
    width: 30vw; height: 15vw;
    transform: scale(1.3);
    border-radius: 30px;
  }
  
  #landsaleCard {
    position: relative;
    z-index: 20;
    width: 30vw; height: 15vw;
    border-radius: 30px;
    margin-top: calc(-5vh);
  }
  
  .mounts_row img:hover {
    transform: scale(1.05);
  }

  /*
==============================================
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);
}