@import url("https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&family=Poppins:wght@100;500&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  color: #000;
  background-color: #f2fbfe;
}

.nav-icon {
  color: #ced2d4;
  font-size: 36px;
}

a {
  color: #000;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Navbar */

.navbar {
  width: 100%;
  height: 4.5rem;
  padding: 12px 20px 20px 12px;
  position: fixed;
  top: 0%;
  background-color: #fff;
  border-bottom: 1px solid #ced2d4;
  z-index: 9999;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-nav-left {
  display: flex;
  justify-content: space-between;
}

.navbar-nav-right {
  display: flex;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  margin: 5px;
  margin-left: 10%;
}

.navbar-search-bar span {
  display: block;
}

.navbar-search-bar {
  width: 100%;
  height: auto;
  border: #e5e8eb 1.5px solid;
  border-radius: 10px;
  display: flex;

  padding: 8px;
  margin-left: 20px;
}

.search-bar {
  width: 24rem;
  display: block;
  border: none;
  font-size: 16px;
  line-height: 26px;
  margin-left: 5px;
}

.search-bar:focus {
  outline: none;
}

.navbar-items {
  display: flex;
  align-items: center;
}

.navbar-items ul {
  display: flex;
  align-items: center;
}

.navbar-items ul li {
  font-weight: bold;
  padding: 0 20px 0 20px;
}


.footer-items {
  display: flex;
  align-items: center;
  color: white !important;
}

.footer-items ul {
  display: flex;
  align-items: center;
  color: white !important;
}

.footer-items a {
  color: white !important;
}

.footer-items ul li {
  font-weight: bold;
  padding: 0 20px 0 20px;
  color: white !important;
}

.navbar-nav-end {
  display: flex;
  align-items: center;
}

.navbar-nav-end a {
  padding: 0 20px 0 20px;
}

/* Hamburger Menu Icon */
.hamburger {
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  background: none;
  border: none;
  z-index: 10;
  transition: all 0.25s;
  display: none;
  margin-top: 8px;
  padding: 1rem;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #000;
  transform: rotate(0);
  transition: all 0.5s;
}

.hamburger-middle {
  transform: translateY(7px);
}

.hamburger-bottom {
  transform: translateY(14px);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* section-1 */

.section-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 72px;
  padding: 3vw 8vw 3vw 8vw;
}

.heading-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 3rem;
}

.heading {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}

.sub-heading {
  font-family: "Baloo Paaji 2", cursive;
  font-size: 2rem;
  margin-bottom: 3vh;
  color: #707a83;
}

.learn-more {
  display: flex;
  font: size 2rem;
}

.play-circle {
  color: #2081e2;
  font-size: 1.5rem;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3vh;
  gap: 10px;
}

.btn {
  display: block;
  justify-content: center;
  align-items: center;
  width: 10.25rem;
  height: 3.75rem;
  border-radius: 10px;
  font: bold 1rem "Poppins", sans-serif;
  outline: none;
  border: #e5e8eb 1.5px solid;
  cursor: pointer;
  margin-right: 10px;
}

.btn-dark {
  color: white;
  background: #2081e2;
}

.btn-light {
  color: #2081e2;
  background: white;
}

.section-1-img {
  width: 100%;
  height: auto;
  display: block;
}

.img-container {
  padding: 0px;
  margin: 0px;
  border-radius: 25px;
}

.img-container:hover {
  box-shadow: 0px 0px 18px 13px rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 0px 0px 18px 13px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 0px 18px 13px rgba(0, 0, 0, 0.21);
}

.main-nft-info {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  background-color: white;
  border-radius: 0 0 10px 10px;
  padding: 0.7vh;
}

.main-nft-info span {
  display: flex;
  justify-content: space-between;
}

.avator-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
}

.banner-container {
  background-image: url("images/home-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  font-size: 1.5rem;
  height: 16vh;
  justify-content: space-between;
  padding: 2rem;
  margin: 5vw;
  border-radius: 10px;
  align-items: center;
}

/* slider  */

.slide-container {
  max-width: 1268px;
  width: 100%;
  padding: 40px 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 15px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.card-img {
  height: 600px;
  width: 390px;
  border-radius: 15px;
}

.create-sell-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 6rem 4rem 6rem 4rem;
}

.create-sell-container h2 {
  font-size: 1.5rem;
  margin-bottom: 3.5rem;
}

.create-sell-content {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px;
}

.steps img {
  margin-bottom: 10px;
}
.steps p {
  text-align: center;
  font-family: "Baloo Paaji 2", cursive;
  font-size: 1rem;
  color: #707a83;
  margin-top: 10px;
}

.getting-started {
  background: url(./images/cover.png);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.getting-started h2 {
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.resources-card {
  padding: 0%;
  margin-top: 50px;
  display: block;
  padding-top: 150px;
}

.resources-card img {
  width: 250px;
  height: 250px;
  border: 5px solid #a3a3a3;
  translate: 0px 40px;
  border-radius: 25px;
  cursor: pointer;
}

.card-caption {
  display: block;
  height: 90px;
  text-align: center;
  padding: 10px;
}
.card-caption h4 {
  color: #707a83;
  font-size: 16px;
}

.browse-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}
.browse-category h2 {
  margin-bottom: 4rem;
  justify-self: center;
  text-align: center;
}
.browse-category h3 {
  translate: 0px -50px;
}

.browse-category-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.browse-category-card {
  border-radius: 15px;
  cursor: pointer;
  margin: 10px;
  margin-bottom: 40px;
  border: 1px solid #e5e8eb;
}

.browse-category-card img {
  width: 300px;
  height: 300px;
  border-radius: 15px 15px 0 0;
}

.browse-category-card h4 {
  font-size: 20px;
  text-align: center;

  padding: 15px;
}

/* video container */

.video-container {
  display: flex;
  flex-direction: column;
  background-image: url("images/video-background.svg");
  gap: 40px;
  align-items: center;
  margin: 4vh;
}

.video-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-heading h2 {
  font-size: 2rem;
  display: flex;

  margin-bottom: 20px;
}

.video-heading p {
  font-family: "Baloo Paaji 2", cursive;
  font-size: 2vh;
  margin-bottom: 1.25rem;
}

.video {
  height: 50vw;
  width: 70vw;
  margin: 2rem;
}

.btn-large {
  display: block;
  justify-content: center;
  align-items: center;
  width: 36vh;
  height: 6vh;
  border-radius: 10px;
  font: bold 16px "Poppins", sans-serif;
  outline: none;
  border: #e5e8eb 1.5px solid;
  cursor: pointer;
}

.footer {
  background: #1868b6;
  display: flex;
  padding: 3rem 6rem 3rem 6rem;
  justify-content: space-between;
}

.sign-up {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  color: white;
}

.join-community {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  color: white;
}

.sign-up h3,
.join-community h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.sign-up p {
  font: "Baloo Paaji 2", cursive;
}

.email-input {
  height: 3rem;
  width: 25vh;
  border-radius: 10px;
  border: 1px solid #e5e8eb;
  padding: 0 10px;
  font-size: 1.2rem;
  outline: none;
  margin-top: 10px;
}

.sign-up-btn {
  background: #2281e2;
  width: 9rem;
  height: 3rem;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1.2rem;
  outline: none;
  cursor: pointer;
  margin-left: 20px;
  margin-top: 10px;
}

.social-icon {
  height: 50px;
  width: 50px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar-nav-right {
  }

  .navbar-items {
  }

  .navbar {
    display: flex;
    justify-content: space-between;
  }
  .section-1 {
    flex-direction: column;
    text-align: center;
    /* margin: 1vh 3vw 1vh 3vw; */
  }

  .heading-container {
    display: flex;
    align-items: center;
  }

  .heading {
    font-size: 1rem;
    align-self: center;
  }

  .banner-container {
    font-size: 1.5vh;
  }

  .create-sell-content {
    display: flex;
    flex-direction: column;
  }
  .getting-started {
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .footer {
    padding: 2vw;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .navbar-items {
    display: none;
  }
  .section-1 {
    flex-direction: column;
  }

  .navbar {
    display: flex;
    justify-content: space-evenly;
  }

  .getting-started {
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .create-sell-content {
    display: flex;
    flex-direction: column;
  }
  .footer {
    padding: 2vw;
    display: flex;
    flex-direction: column;
  }
}
