@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #030319;
  width: 100%;
  height: 100vh;
  scroll-behavior: smooth;
}

/*--------------------- SCROLLBAR --------------------*/

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #adadad;
}


/*--------------------- NAVBAR --------------------*/

.nav__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.6rem 4rem;
}

.logo {
  width: 16%;
  height: 16%;
  cursor: pointer;
}

.nav ul {
  display: flex;
  align-items: center;
}

.nav ul li {
  list-style: none;
  margin-right: 4rem;
  font-size: 1.2rem;
}

.last_nav {
  margin-right: 0.8rem !important;
}

.nav ul li a {
  text-decoration: none;
  color: #00e1e1;
  position: relative;
}

.nav ul li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2.2px;
  bottom: -2px;
  left: 0;
  background-color: #00e1e1;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}

.nav ul li a:hover::before {
  transform: scaleX(1);
}

/* *************************** */

/*--------------------- HERO --------------------*/

.hero__section {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
}

.main-heading {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 1000;
  letter-spacing: 1.2px;
  line-height: 5.5rem;
  margin-bottom: 2.6rem;
}

.hero-description {
  text-align: center;
  width: 95%;
  letter-spacing: 0.5px;
  color: #E3E3E3;
  margin-bottom: 4.2rem;
  font-size: 1.17rem;
}

.btn-con {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.hero-btn {
  background-color:  #00E1E1;
  border: 2px solid #00E1E1;
  color: #030319;
  padding: 0.7rem 2.4rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 7px 29px 0px;
  margin-bottom: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: 0.3s;
}

.hero-btn:hover {
  border: 2px solid #00c0c0;
  background-color: #030319;
  color: #E3E3E3;
}

.hero-btn-border {
  border: 2px solid #00c0c0;
  background-color: #030319;
  color: #E3E3E3;
  
  transition: 0.3s;
}

.hero-btn-border:hover {
  background-color:  #00E1E1;
  border: 2px solid #00E1E1;
  color: #030319;
}

/* *************************** */

/*--------------------- COLLECTIONS --------------------*/

.collection__section {
  margin-top: 10.2rem;
  padding-bottom: 20rem;
}

.coll-heading {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 8rem;
}

.main-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 5rem;
}

.card {
  background-color: #0f0f3f;
  text-align: center;
  padding: 0.6rem;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 7px 29px 0px;
  border-radius: 10px;
  padding-bottom: 3.5rem;
  margin: 0 5rem;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.nft-img {
  width: 100%;
  height: 70%;
  border-radius: 2px;
}

.card-head {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.card-date {
  color: #9D9DE7;
  margin-bottom: 1.8rem;
}

.flex-con {
  display: flex;
  align-items: center;
  justify-content: center;
}

.r-arrow {
  font-size: 1rem;
  color: #A9C1FF;
  margin-left: 0.2rem;
}

.card-cursorl {
  text-decoration: none;
}

.card-link {
  color: #A9C1FF;
  text-decoration: none;
  align-items: center;
}

/* *************************** */

/*--------------------- FOOTER --------------------*/

.line {
  height: 3px;
  background-color: #000;
  border: none;
}

.footer__section {
  padding: 2rem 0;
}

.logo-2 {
  width: 17%;
  margin-left: 1rem;
}

.footer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0rem 4rem;
}

.social-icon {
  color: #fff;
  font-size: 2.6rem;
  margin-right: 3rem;
  cursor: pointer;
  transition: 0.2s;
}

.social-icon:hover {
  color: #A9C1FF;
}

.social-link {
  text-decoration: none;
}

.copyright {
  text-align: center;
  color: #dddddd;
  margin-top: 3.4rem;
  font-size: 0.8rem;
}

/* *************************** */
