@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: black;
}
html,
body {
  overflow-x: hidden;
}
:root {
  --primary-color: #ffffff;
  --secondary-color: #a5a5a5;
  --text-color: #93ebf9;
  --btn-color: #b6b6b6;
}
/* common class */
.container {
  max-width: 1589px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}
a {
  display: inline-block;
  text-decoration: none;
}
ul {
  list-style-type: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-33 {
  width: 33.33%;
  padding: 0 15px;
}
.col-25 {
  width: 25%;
  padding: 0 15px;
}
.col-20 {
  width: 20%;
  padding: 0 15px;
}
.col-30 {
  width: 30%;
  padding: 0 15px;
}
.col-70 {
  width: 70%;
  padding: 0 15px;
}
/* header section */
.hdr-sec {
  padding: 15px 0;
  position: relative;
}
nav,
.navbar-collapsed > ul,
.navbtn-icons {
  display: flex;
  align-items: center;
}
.navbar-collapsed {
  margin: 0 auto;
  background: rgb(53, 51, 51);
  padding: 15px 5px 15px 50px;
  border-radius: 10px;
}
.nav-logo {
  max-width: 180px;
}
.nav-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-links {
  font-family: "Montserrat", sans-serif;
  margin-right: 65px;
  color: var(--text-color);
  font-size: 21px;
}
.nav-links:hover {
  color: var(--primary-color);
}
.nav-icons {
  display: flex;
}
.nav-icons > li > a > img {
  color: var(--primary-color);
  margin-right: 20px;
}
.nav-wallet-btn {
  font-family: "Montserrat", sans-serif;
  padding: 14px 23px;
  font-size: 21px;
  color: var(--btn-color);
  border: 1px solid var(--text-color);
  border-radius: 30px;
  margin-left: 13px;
}
.nav-wallet-btn:hover {
  background: var(--btn-color);
  color: var(--text-color);
}
.navbar-toggler {
  display: none;
}
/* header media */
@media screen and (max-width: 1200px) {
  .navbar-toggler {
    display: block;
    margin-left: auto;
    font-size: 2.4rem;
  }
  .navbar-collapsed {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  .navbar-collapsed > ul {
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
  }
  .navbtn-icons {
    display: none;
  }
  .nav-links {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 746px) {
  .nav-logo > a > img {
    max-width: 130px;
  }
  .navbar-toggler {
    font-size: 1.4rem;
  }
}
/* banner section */
.banner-sec {
  padding: 45px 0;
}
.title1 {
  max-width: 1002px;
  font-size: 65px;
  color: var(--primary-color);
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0 auto;
  word-spacing: 16px;
}
span {
  background: linear-gradient(to right, #00dafd, #0085d1);
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.banner-row {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1475px;
}
.banner-cntn {
  max-width: 445px;
  font-size: 27px;
  color: var(--secondary-color);
}
.btn {
  padding: 14px 30px;
  font-size: 21px;
  border-radius: 8px;
  margin-top: 56px;
}
.primary-btn {
  background: linear-gradient(to right, #00dafd, #0085d1);
  color: black;
  font-weight: 500;
  margin-right: 25px;
}

.primary-btn:hover {
  background: var(--secondary-color);
  color: var(--text-color);
}
.secondary-btn {
  border: 1px solid var(--text-color);
  color: var(--primary-color);
}
.secondary-btn:hover {
  background: var(--text-color);
  color: black;
}
.banner-img img {
  max-width: 600px;
}
.review-number {
  color: var(--primary-color);
  font-size: 55px;
  margin-bottom: 20px;
}
.user {
  color: var(--text-color);
  font-size: 21px;
}
.review-sec {
  margin-left: 250px;
  margin-bottom: 60px;
}
/* banner media section */
@media screen and (max-width: 1200px) {
  .col-33 {
    width: 100%;
  }
  .banner-img {
    text-align: center;
    margin: 60px 0;
  }
  .banner-cntn {
    margin: 0 auto;
  }
  .review-sec {
    text-align: center;
    transform: translateX(-100px);
  }
  .banner-row {
    text-align: center;
  }
}
@media screen and (max-width: 746px) {
  .banner-img img {
    max-width: 300px;
  }
  .title1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 576px) {
  .review-number {
    font-size: 40px;
  }
  .review-sec {
    transform: translateX(-130px);
  }
  .primary-btn,
  .secondary-btn {
    padding: 10px;
  }
  .banner-btn-sec {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/*  autrending  trending section */
.trending-sec {
  padding: 140px 0;
}
.title2 {
  max-width: 600px;
  font-size: 70px;
  color: var(--text-color);
}
.trending-sub-hdr {
  font-size: 30px;
  color: var(--secondary-color);
}
.trending-wrpr > p {
  font-size: 18px;
  max-width: 479px;
  color: var(--secondary-color);
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trending-wrpr {
  display: flex;
  margin-bottom: 50px;
}
.cartoon-card {
  max-width: 522px;
  position: relative;
}
.price {
  color: var(--secondary-color);
  font-size: 17px;
}
.price-number {
  color: var(--text-color);
  font-size: 15px;
}
.cartoon-cntn {
  background: rgb(66, 65, 65);
  display: flex;
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 10px;
  position: absolute;
  top: 457px;
}
.owner {
  color: var(--secondary-color);
  font-size: 17px;
  margin-left: 30px;
}
.owners-review {
  color: var(--text-color);
  font-size: 15px;
  margin-left: 30px;
}
.owners-sec {
  margin-left: 60px;
}
.cartoon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cartoon-img {
  max-width: 500px;
  position: relative;
}
.collection {
  color: var(--primary-color);
  margin-left: auto;
  font-size: 15px;
}
.easy {
  font-size: 20px;
  color: var(--text-color);
}
.cartoon-first-cntn {
  position: absolute;
  bottom: 89%;
  left: 60%;
}

/* swipper section */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: rgb(234, 25, 25);
}
.first-swipper-pagination .swiper-pagination-bullet {
  background: red;
}

.cartoon-cards-row {
  display: flex;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 993px) {
  .title2 {
    font-size: 40px;
  }
  .trending-sub-hdr {
    font-size: 19px;
  }
  .trending-wrpr > p {
    font-size: 15px;
    width: 100%;
    max-width: 400px;
  }
  .cartoon-img img {
    max-width: 350px;
  }
  .cartoon-img {
    position: relative;
  }
  .cartoon-cntn {
    max-width: 500px;
    position: absolute;
    top: 80%;
  }
  .cartoon-first-cntn {
    position: absolute;
    bottom: 89%;
    left: 60%;
  }
  .easy {
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  .cartoon-img img {
    max-width: 250px;
  }
  .cartoon-img {
    position: relative;
  }
  .cartoon-cntn {
    max-width: 190px;
    position: absolute;
    top: 70%;
  }
  .cartoon-card {
    padding: 5px;
    max-width: 522px;
    position: relative;
  }
  .cartoon-first-cntn {
    position: absolute;
    bottom: 89%;
    left: 62%;
  }
  .easy {
    font-size: 10px;
  }
  .collection {
    font-size: 10px;
  }
  .trending-wrpr > p {
    font-size: 10px;

    max-width: 200px;
  }
  .title2 {
    font-size: 25px;
  }
}
/* brand section */
.brand-sec {
  padding: 60px 0;
}
.brand-row {
  border-radius: 10px;
  background: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-f-img {
  max-width: 188px;
}
.brand-s-img {
  max-width: 233px;
  margin-top: 18px;
}
.brand-t-img {
  max-width: 242px;
}
.brand-fo-img {
  max-width: 232px;
}
.brand-fif-img {
  max-width: 308px;
}
/* brand media */
@media screen and (max-width: 1400px) {
  .col-20 {
    width: 100%;
  }
  .b-img {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .brand-s-img {
    margin-top: 80px;
  }
}
/* sell section */
.sell-sec {
  padding: 70px 0;
}
.sell-hdr {
  max-width: 483px;
  font-size: 50px;
  color: var(--primary-color);
}
.main-sell-row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sell-cntn-sec > p {
  font-size: 16px;
  max-width: 430px;
  color: var(--primary-color);
  margin: 35px 0;
}
.sell-btn {
  color: var(--primary-color);
  padding: 13px 53px;
  border: 1px solid var(--text-color);
  border-radius: 10px;
}
.sell-btn:hover {
  background: var(--secondary-color);
  color: var(--text-color);
}
.wallet-hdr {
  font-size: 22px;
  color: var(--primary-color);
  margin: 20px 0;
  text-align: center;
}
.sell-card > p {
  font-size: 15px;
  color: var(--primary-color);
  max-width: 352px;
  text-align: center;
}
.sell-card {
  max-width: 385px;
  padding: 55px 16px 39px 20px;
  border: 1px solid var(--text-color);
  border-radius: 10px;
  margin-right: 62px;
  margin-bottom: 69px;
}
.sell-img {
  max-width: 53px;
  margin: 0 auto;
}
.sel {
  margin-left: 60px;
}
/* sell media */
@media screen and (max-width: 993px) {
  .sell-hdr {
    font-size: 35px;
    width: 100%;
  }
  .sell-hdr {
    width: 100%;
  }
  .sell-cntn-sec > p {
    font-size: 15px;
  }
  .sell-card {
    max-width: 500px;
  }
}
/* --- */
@media screen and (max-width: 746px) {
  .main-sell-row {
    flex-direction: column;
    align-items: center;
  }

  .col-30,
  .col-70 {
    width: 100%;
    padding: 0;
  }

  .sel {
    margin-left: 0;
    justify-content: center;
  }

  .sell-card {
    width: 100%;
    max-width: 320px;
    margin: 20px auto;
    padding: 30px 15px;
    margin-right: 5px;
  }

  .wallet-hdr {
    font-size: 18px;
  }

  .sell-card p {
    font-size: 13px;
  }

  .sell-img {
    max-width: 45px;
  }

  .sell-cntn-sec {
    text-align: center;
    margin-bottom: 40px;
  }

  .sell-hdr {
    font-size: 28px;
    text-align: center;
    margin: 0 auto;
  }

  .sell-btn {
    padding: 10px 35px;
    font-size: 14px;
  }
  .sell-cntn-sec p {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }
  .sell-btn {
    margin-top: 25px;
  }
}
@media screen and (max-width: 576px) {
  .sell-card {
    max-width: 280px;
  }
  .b-img img {
    max-width: 150px;
  }
}

/* artist section */
.artist-sec {
  padding: 70px 0;
}
.title3 {
  max-width: 600px;
  font-size: 70px;
  color: var(--text-color);
}
.artist-sub-hdr {
  font-size: 30px;
  color: var(--secondary-color);
}
.artist-wrpr > p {
  font-size: 18px;
  max-width: 479px;
  color: var(--secondary-color);
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.artist-wrpr {
  display: flex;
  margin-bottom: 50px;
}
.artist-sec {
  padding: 70px 0;
}
.artist-review {
  color: var(--primary-color);
  font-size: 17px;
}
.followers {
  color: var(--primary-color);
  font-size: 15px;
}
.a-review-sec {
  margin-right: 70px;
  text-align: center;
  margin-top: 20px;
}
.artist-card {
  max-width: 500px;
  border: 1px solid var(--text-color);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.artist-img {
  max-width: 377px;
  position: relative;
}
.artist-sub-img {
  max-width: 103px;
  position: absolute;
  bottom: -26px;
  left: 36%;
}
.artist-name {
  font-size: 30ppx;
  color: var(--primary-color);
  text-align: center;
  margin-top: 20px;
}
.artist-profile {
  font-size: 17px;
  color: var(--primary-color);
  text-align: center;
  margin-top: 10px;
}
.artist-cntn {
  padding: 0 0 0 20px;
  text-align: center;
}
.follow-btn {
  padding: 8px 18px;
  font-size: 15px;
  border: 1px solid var(--text-color);
  color: var(--primary-color);
  border-radius: 10px;
  margin-top: 15px;
  background: linear-gradient(to right, #00dafd, #0085d1);
}
.follow-btn:hover {
  background: var(--secondary-color);
  color: var(--text-color);
}

/* swipper section */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: rgb(234, 25, 25);
}
.first-swipper-pagination .swiper-pagination-bullet {
  background: red;
}

.cartoon-cards-row {
  display: flex;
  transition: transform 0.5s ease;
}
/* trending media */

/* artist section */
@media screen and (max-width: 1200px) {
  .title3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  .artist-wrpr > p {
    font-size: 10px;
    width: 100%;
    max-width: 300px;
  }
  .title3 {
    font-size: 25px;
  }
}

/*  */
@media screen and (max-width: 576px) {
  .artist-sec {
    padding: 40px 0;
  }

  .artist-wrpr {
    text-align: center;
    margin-bottom: 30px;
  }

  .artist-wrpr h2,
  .artist-wrpr p {
    text-align: center;
  }

  .artist-card {
    width: 90%;
    max-width: 320px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 16px;
    background: #1b1b1b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .artist-img img {
    position: relative;
    max-width: 250px;

    margin-bottom: 20px;
  }

  .artist-sub-img {
    position: absolute;
    bottom: -21%;
    right: 0;
    max-width: 40px;
  }

  .artist-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .artist-profile {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 12px;
  }

  .followers {
    font-size: 11px;
    color: #aaa;
  }

  .a-review-sec {
    text-align: center;
    margin: 0 auto;
  }

  .artist-wrpr {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .artist-sub-hdr {
    order: 1;
    text-align: center;
  }
}
/* subscribe-section*/
.subscribe-sec {
  padding: 100px 0;
}
.subscribe-hdr {
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 400;
}
.subscribe-cntn > p {
  font-size: 15px;
  max-width: 480px;
  color: var(--secondary-color);
  margin: 21px 0;
}
.sub-input {
  padding: 9px 165px 13px 15px;
  color: var(--secondary-color);
  background: black;
  border-radius: 10px;
}
.subscrib-btn {
  background: linear-gradient(to right, #00dafd, #0085d1);
  padding: 14px 40px;
  font-size: 14px;
  color: black;
  border-radius: 10px;
  margin-left: 10px;
  border: 1px solid var(--text-color);
}
.subscrib-btn:hover {
  background: var(--secondary-color);
  color: var(--text-color);
}
.sub-email {
  display: flex;
}
.sub-cntn-img-sec {
  display: flex;
  padding: 33px 18px 31px 32px;
  border: 1px solid var(--text-color);
  max-width: 750px;
  border-radius: 10px;
}
.sub-img {
  max-width: 202px;
}
.sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-row {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* sub media section */

@media screen and (max-width: 993px) {
  .sub-cntn-img-sec {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    padding: 30px 25px;
  }

  .subscribe-cntn > p {
    max-width: 100%;
    margin: 15px 0 25px 0;
    text-align: center;
  }

  .sub-email {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .sub-input {
    width: 100%;
    max-width: 450px;
    padding: 12px 20px;
    margin-bottom: 15px;
  }

  .subscrib-btn {
    padding: 12px 35px;
    font-size: 14px;
    margin-left: 0;
  }

  .sub-img {
    margin-top: 25px;
    max-width: 180px;
  }

  .subscribe-hdr {
    font-size: 32px;
  }
}

@media screen and (max-width: 576px) {
  .subscribe-hdr {
    font-size: 24px;
    line-height: 1.3;
  }

  .subscribe-cntn > p {
    font-size: 13px;
  }
}
/* footer section */
.footer-sec {
  padding: 70px 0;
  background: #17171b;
}
.footer-hdr {
  color: #e2e2e2;
  font-size: 25px;
  margin-bottom: 10px;
  margin-top: 30px;
}
.footer-links {
  color: #e2e2e2;
  font-size: 15px;
  margin-bottom: 30px;
}
.footer-links:hover {
  color: var(--text-color);
}
.footer-icon-sec {
  display: flex;
}
ul li a img {
  max-width: 30px;
  margin-right: 20px;
}
.collector {
  font-size: 15px;
  color: #e2e2e2;
  margin: 10px 0;
}
.friend {
  font-size: 15px;
  color: #e2e2e2;
}
.play-store-sec {
  display: flex;
}
.play-store-sec img {
  max-width: 124px;
  margin-top: 15px;
}
/* footer media  */

@media (max-width: 1200px) {
  .col-25 {
    width: 50%;
    text-align: center;
  }
  .footer-icon-sec {
    justify-content: center;
  }
  .play-store-sec {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .col-25 {
    width: 100%;
    text-align: center;
  }
  .row {
    flex-direction: column;
    align-items: center;
  }
  .footer-icon-sec {
    justify-content: center;
    margin-bottom: 15px;
  }
  .play-store-sec {
    justify-content: center;
  }
  .footer-logo img {
    max-width: 150px;
    margin: 0 auto;
  }
  ul > li > a > img {
    max-width: 20px;
  }
  .play-store-sec {
    margin-bottom: 20px;
  }
}





