@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

body { 
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%; 
  background: #191c1f;
  overflow-x: hidden;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

body::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

a {
  text-decoration: none;
  color: unset;
}

a:hover {
  text-decoration: none;
  color: unset;
}
 
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
  border: none;
  box-shadow: none;
  background: transparent !important;
  transition: background 0.7s ease-out;
  position: fixed;
}

@supports (-webkit-backdrop-filter: blur(9px)) or (backdrop-filter: blur(9px)) {
  .nav-header .navbar.on-scroll {
    /* From https://css.glass */
    background: rgba(25, 28, 31, 0.57);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border-bottom: 0 solid #3d4145;
  }
}

.nav-header .navbar {
  padding: 10px 15px;
  border-bottom: 1px solid #3d4145;
}
   
.navbar .navbar-brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #ffffff;
}

.navbar .navbar-brand img {
  width: 37px;
  border-radius: 6px;
  margin-right: 5px;
}
 
.navbar .navbar-nav {
  margin-left: 50px;
}

.navbar .navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #a3a3a5;
  letter-spacing: 0.5px;
}

.navbar .nav-link.btn {
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar .nav-link.btn.btn-secondary {
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  border: 1px solid #000000;
}
 
.navbar .nav-link.btn.btn-primary {
  margin-left: 30px;
  background-image: linear-gradient(
    to right,
    #000000 0%,
    #434343 51%,
    #000000 100%
  );
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  border: 0 solid #000000;
  color: #ffffff;
}

.navbar .nav-link.btn.btn-primary:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

/* dashboard styles */

.dash-navbar .mobile-navbar {
  display: none;
}

.dash-navbar .navbar .right-nav {
  margin-left: 50px;
  display: flex;
}

.dash-navbar .navbar .nav-link.btn.btn-secondary {
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid #000000;
}

.dash-navbar .navbar .navbar-nav .nav-buttons .btn {
  background: transparent;
  margin: 0 40px;
  height: 40px;
  width: 40px;
  padding: 0;
  border: 0 solid transparent;
}

.dash-navbar .navbar .navbar-nav .nav-buttons .btn img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border: 0 solid #a3a3a5;
  border-radius: 20px;
}

.dash-navbar .navbar .navbar-nav .nav-item {
  margin: 0 8px;
}

.dash-navbar .navbar .navbar-nav .nav-item .nav-link {
  font-size: 15px;
}

.dash-navbar .navbar .navbar-nav {
  margin-left: 5%;
}

/* google translate styling */
/* https://codepen.io/lucianalexe/pen/LYWwMea */
.goog-te-gadget-icon {
  display: none;
}

.goog-te-gadget-simple {
  background-color: transparent !important;
  border: 1px solid #3d4145 !important;
  font-size: 13px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding: 8px 5px !important;
  cursor: pointer;
  transform: scale(1);
  transform-origin: 0 0;
  border-radius: 10px;
}

.goog-te-gadget-simple span {
  color: #ffffff !important;
}

/* hero section */
.hero-section {
  padding: 0;
  top: 90px;
  position: relative;
}

.hero-section .hero-texts {
  padding: 60px 0 100px 100px;
}

.hero-section .hero-texts .hero-headtext {
  font-size: 55px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 70px;
  text-transform: capitalize;
} 

.hero-section .hero-texts .hero-headtext .colored-text {
  color: #feda03;
  /* color: #fde454;; */
}

.hero-section .hero-texts .hero-subheading {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 500;
  color: #a3a3a5;
}

.hero-section .hero-texts a.btn {
  margin-top: 10px;
  padding: 15px 50px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  background-image: linear-gradient(
    to right,
    #000000 0%,
    #434343 51%,
    #000000 100%
  );
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  border: 0 solid #000000;
  color: #ffffff;
}

.hero-section .hero-texts a.btn:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.hero-section .hero-texts a.btn img {
  width: 25px;
  margin-right: 5px;
}

/* https://modelviewer.dev/examples/loading/ */
/* loading experience above */
.hero-section .hero-img model-viewer {
  height: 450px;
  width: 100%;
  border: none;
}

.margin-section {
  margin: 50px 100px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-subtext {
  font-size: 16px;
  color: #aaaaaa;
  font-weight: 400;
}

.site-counter {
  margin-top: 20px;
  border-top: 1px solid #3d4145;
  border-bottom: 1px solid #3d4145;
  padding: 30px 10px;
  display: flex;
  flex: auto;
  flex-direction: row;
  justify-content: space-evenly;
}

.site-counter h3 {
  font-size: 27px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.site-counter p {
  text-align: center;
  font-size: 19px;
  font-weight: 400;
  color: #a3a3a5;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 0;
}

.welcome {
  padding: 20px 10px;
}

.welcome .img-box {
  text-align: right;
}

.welcome .img-box img {
  width: 85%;
}

.welcome .welcome-box {
  margin-top: 40px;
}

.collector {
  padding: 20px 10px;
}

.collector .img-box {
  text-align: left;
}

.collector .img-box img {
  width: 85%;
}

.collector .welcome-box {
  margin-top: 40px;
}



.img-box.img-giveaway img{
  width: 350px;
  border-radius: 15px;
}

.giveaway-button{
  margin-top: 30px;
}

.giveaway-button .btn{
  background: #222528;
  border-radius: 10px;
  border: 0 solid #222528;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 25px;

}


.artwork-box {
  padding: 0;
  margin-top: 30px;
  border-radius: 25px;
  background: #222528;
}

.artwork-box .artwork-texts {
  padding: 40px 40px;
}

.artwork-box .artwork-right-texts {
  padding: 20px 40px 40px;
}

.artwork-box .artwork-title {
  font-size: 35px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.artwork-box .description {
  margin-top: 30px;
}

.artwork-box .desc-title {
  font-size: 18px;
  font-weight: 600;
  color: #feda03;
}

.artwork-box .desc-title .fas {
  margin-right: 6px;
  color: #feda03;
}

.artwork-box .desc-p {
  font-size: 15px;
  font-weight: 400;
}

.artwork-box .art-button {
  margin-top: 20px;
}

.artwork-box .art-button .btn {
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  background: #191c1f;
  border: 0 solid transparent;
  text-transform: uppercase;
}

.artwork-box .artwork-img {
  height: 100%;
  width: 100%;
}

.artwork-box .artwork-img img {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.our-artists {
  margin-top: 50px;
  padding: 30px 0;
}

.our-artists .our-artists-header {
  display: flex;
  flex-direction: row;
  flex: auto;
  justify-content: space-between;
}

.our-artists .our-artists-header .btn {
  background: #222528;
  border-radius: 10px;
  border: 0 solid #222528;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 25px;
}

.our-artists .our-artists-header .btn .fas {
  margin-left: 10px;
  font-size: 14px;
}

.artists-list {
  margin-top: 20px;
}

.artists-list .col-lg-3 {
  padding: 10px;
}

.artist-box {
  border-radius: 15px;
  background: transparent;
  border: 1px solid #3d4145;
  margin-bottom: 40px;
  cursor: pointer;
  transition: transform 0.5s ease;
  transform-origin: center;
  padding: 10px;
}

.artist-box:hover {
  transform: scale(1.05);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  z-index: 2;
}

.artist-box .cover-img {
  height: 180px;
  width: 100%;
}

.artist-box .cover-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.artist-box .artist-body {
  position: relative;
  padding: 10px 10px;
  height: 120px;
}

.artist-box .artist-body .profile-img {
  position: absolute;
  top: -35px;
  height: 70px;
  width: 70px;
}

.artist-body .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid #fff;
}

.artist-box .artist-info {
  margin-top: 40px;
}

.artist-box .artist-info a {
  text-decoration: none;
  color: unset;
}

.artist-box .artist-body .artist-info .name {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.artist-box .artist-body .artist-info .name .capitalize {
  text-transform: uppercase;
}

.artist-box .artist-body .artist-info .country {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #a3a3a5;
}

/* our nfts styles */

.nfts-list {
  margin-top: 20px;
}

.nfts-list .col-lg-3 {
  margin: 0;
  padding: 8px;
}

.nft-box {
  border-radius: 15px;
  background: transparent;
  margin-bottom: 30px;
  border: 1px solid #3d4145;
  padding: 5px;
  cursor: pointer;
  transition: transform 0.5s ease;
  transform-origin: center;
}

.nft-box:hover {
  transform: scale(1.03);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  z-index: 2;
}

.nft-box .nft-img {
  height: 240px;
  width: 100%;
}

.nft-box .nft-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.nft-box .nft-body {
  padding: 10px 0 5px;
}

.nft-box .nft-info {
  margin-bottom: 10px;
  padding: 5px 5px 0;
}

.nft-box .nft-info .name {
  font-size: 13px;
  color: #aaaaaa;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.nft-box .nft-info .nft-name {
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  margin-bottom: 0;
}

.nft-box .price-box {
  padding: 8px 15px;
  background: #222528;
  border-radius: 10px;
  margin-bottom: 10px;
}

.nft-box .price-box .title {
  font-size: 13px;
  color: #a3a3a5;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.nft-box .price-box .nft-price {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0;
}

.nft-box .price-box .nft-price .d-price {
  font-size: 12px;
  color: #a3a3a5;
  float: right;
}

.nft-box .nft-button {
  text-align: center;
  visibility: hidden;
}

.nft-box:hover .nft-button {
  visibility: visible;
}

.nft-box .nft-button .btn {
  width: 80%;
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #ffffff;
  padding: 8px;
}

/* join community styles */
.join-community {
  background-color: #222528;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23191C1F' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%233D4145'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
  border-radius: 25px;
  padding: 40px 20px 20px;
  margin: 20px;
}

.join-box {
  display: flex;
  justify-content: center;
}

.join-box .join-form {
  max-width: 600px;
  text-align: center;
}

.join-form .title {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

.join-form .note {
  margin-top: 20px;
  font-size: 13px;
  color: #aaaaaa;
}

.form-section {
  margin-top: 30px;
}

.form-section .form-group {
  margin: 7px 20px 0;
}

.form-section .form-group input {
  font-size: 15px;
  font-weight: 500;
  color: #7f7f7f;
  background: #191c1f;
  border: 0 solid #191c1f;
  border-radius: 25px;
  width: 100%;
  height: 42px;
  padding: 5px 20px;
}

.form-section .form-group input:focus {
  box-shadow: none;
  outline: none;
}

.form-section .form-group .btn {
  width: 100%;
  height: 42px;
  text-align: center;
  background: #3d4145;
  color: #ffffff;
  border: 0 solid #3d4145;
  border-radius: 25px;
  font-weight: 500;
}

.join-socials {
  margin-top: 30px;
  text-align: center;
}

.join-socials ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.join-socials ul li {
  margin: 0 15px;
}

.join-socials ul li a {
  text-decoration: none;
  font-size: 22px;
  color: #ffffff;
}

.carbon-footprint {
  margin: 20px;
}

.carbon-footprint .carbon-title {
  color: #256d4c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.carbon-footprint .img-box {
  text-align: center;
}

.carbon-footprint .img-box img {
  width: 90%;
}

.carbon-footprint .img-box .img-title {
  font-size: 24px;
  font-weight: 700;
}

.carbon-footprint .img-box .img-title .colored-green {
  color: #256d4c;
}

.partners {
  margin: 30px 20px;
}

.partners .svg-box {
  margin: 0 10px;
}

.partners .svg-box.svg-top {
  margin-top: 30px;
}

.partners .svg-box img {
  width: 150px;
}

.footer-section {
  color: #ffffff;
  margin-top: 10%;
  padding: 30px 60px;
  border-top: 6px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to left, #feda03, #d8cd8a);
  background-color: #191c1f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23222528' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%233D4145'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-navbrand .footer-logo {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.footer-navbrand .footer-logo img {
  width: 35px;
  border-radius: 6px;
  margin-right: 5px;
  margin-bottom: 10px;
}

.footer-navbrand .sub-note {
  max-width: 400px;
  font-size: 16px;
  font-weight: 500;
  color: #aaaaaa;
}

.footer-socials ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}

.footer-socials ul li {
  margin-right: 20px;
}

.footer-socials ul li a {
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
}

.footer-contact ul {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.footer-contact ul li {
  margin: 5px 0;
  font-size: 13px;
  color: #aaaaaa;
}

.footer-contact ul li a {
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

.footer-link .footer-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

.footer-link ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.footer-link ul li {
  margin: 8px 0;
}

.footer-link ul li a {
  font-size: 14px;
  color: #aaaaaa;
  text-decoration: none;
}

.footer-copyright p {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 13px;
  color: #aaaaaa;
}

/* artists page styles */
.artists-hero {
  position: relative;
  top: 150px;
  padding-bottom: 80px;
}

.artists-hero .hero-text h2 {
  font-size: 50px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.artists-hero .search-box {
  margin: 30px 50px;
}

.artists-hero .search-box .form-group {
  display: flex;
  border: 0 solid #3d4145;
  border-radius: 10px;
  background: #222428;
  width: 80%;
}

.artists-hero .search-box .form-group p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.artists-hero .search-box .form-group p .fas {
  font-size: 20px;
  padding: 15px 30px;
  color: #aaaaaa;
}

.artists-hero .search-box .form-group input {
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  border-radius: 1px;
  color: #ffffff;
  border: 1px solid transparent;
}

.artists-hero .search-box .form-group input:focus {
  box-shadow: none;
  outline: none;
}

.artists-hero .search-box .form-group input::placeholder {
  color: #aaaaaa;
}

.artists-hero .search-box .form-group .btn {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
  height: 55px;
  padding: 10px 30px;
  border-radius: 1px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-image: linear-gradient(
    to right,
    #000000 0%,
    #434343 51%,
    #000000 100%
  );
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  border: 0 solid #3d4145;
  color: #ffffff;
}

.artists-count {
  margin-top: 20px;
}

.artists-count p {
  font-size: 14px;
  font-weight: 400;
}

.artists-count .text-bold {
  font-weight: 600;
}

.artists-row {
  margin-top: 50px;
  max-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  /* Enable vertical scrolling */
}

.artists-row::-webkit-scrollbar {
  display: none;
}

.artists-row-box {
  padding: 20px 10px 40px;
}

/* marketplace page styles */
.marketplace-hero {
  position: relative;
  top: 150px;
  padding-bottom: 80px;
}

.marketplace-hero .hero-text {
  margin-bottom: 30px;
}

.marketplace-hero .hero-text h2 {
  font-size: 47px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.marketplace-hero .hero-text p {
  font-size: 16px;
  color: #aaaaaa;
}

.marketplace-hero .search-box {
  margin: 30px 0;
  display: flex;
  flex: auto;
  flex-direction: row;
  justify-content: space-between;
}

.marketplace-hero .search-box .select-box select {
  height: 55px;
  width: 100%;
  border: 1px solid #3d4145;
  border-radius: 10px;
  background: #222428;
  font-size: 15px;
  color: #a3a3a5;
  padding: 10px 30px;
}

.marketplace-hero .search-box .select-box select option {
  font-size: 14px;
  font-weight: 500;
  color: #a3a3a5;
}

.marketplace-hero .search-box .select-box select:focus {
  box-shadow: none;
  outline: none;
}

.marketplace-hero .search-box .form-group {
  display: flex;
  border: 0 solid #3d4145;
  border-radius: 10px;
  background: #222428;
  width: 50%;
}

.marketplace-hero .search-box .form-group p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.marketplace-hero .search-box .form-group p .fas {
  font-size: 20px;
  padding: 15px 30px;
  color: #aaaaaa;
}

.marketplace-hero .search-box .form-group input {
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  border-radius: 1px;
  color: #ffffff;
  border: 1px solid transparent;
}

.marketplace-hero .search-box .form-group input:focus {
  box-shadow: none;
  outline: none;
}

.marketplace-hero .search-box .form-group input::placeholder {
  color: #aaaaaa;
}

.marketplace-nft {
  margin-top: 50px;
  max-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  /* Enable vertical scrolling */
}

.marketplace-nft::-webkit-scrollbar {
  display: none;
}

.marketplace-nft-box {
  padding: 20px 30px 40px;
}

.marketplace-nft .col-lg-3 {
  margin: 0;
  padding: 8px;
}

.empty-index {
  border-radius: 20px;
  width: 100%;
  padding: 10px;
  margin: 30px 0 50px;
}

.empty-index .empty-index-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.empty-index .empty-index-wrapper .empty-index-box {
  margin: auto;
  max-width: 400px;
  text-align: center;
}

.empty-index .empty-index-wrapper .empty-index-box h5 {
  font-size: 25px;
  font-weight: 600;
}

.empty-index .empty-index-wrapper .empty-index-box p {
  font-size: 18px;
  font-weight: 500;
  color: #a3a3a5;
  margin-bottom: 80px;
}

.empty-index .empty-index-wrapper .empty-index-box a.btn {
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 12px 15px;
  border-radius: 12px;
  background: #303336;
  border: 1px solid #303336;
}

/* customer loading and infinite loading page */

#loading-div {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: transparent;
}

#load-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-color: transparent;
}

.custom-loader {
  width: 100px;
  height: 100px;
  display: grid;
  color: #feda03;
  background: radial-gradient(
    farthest-side,
    currentColor calc(100% - 12px),
    #0000 calc(100% - 10px) 0
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    #0000 calc(100% - 26px),
    #000 calc(100% - 24px)
  );
  mask: radial-gradient(
    farthest-side,
    #0000 calc(100% - 26px),
    #000 calc(100% - 24px)
  );
  border-radius: 50%;
  animation: s9 2s infinite linear;
}

.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  background: linear-gradient(currentColor 0 0) center,
    linear-gradient(currentColor 0 0) center;
  background-size: 100% 20px, 20px 100%;
  background-repeat: no-repeat;
}

.custom-loader::after {
  transform: rotate(45deg);
}

@keyframes s9 {
  100% {
    transform: rotate(1turn);
  }
}

/* privacy policy and terms and conditions */

.privacy-section .hero-text {
  margin-top: 30px;
  margin-bottom: 30px;
}
.privacy-section .hero-text h2 {
  font-size: 45px;
  font-weight: 800;
  color: #ffffff;
}

.privacy-section .note {
  font-size: 14px;
  color: #a3a3a5;
  font-weight: 500;
}

.privacy-rows {
  margin: 20px 0 30px;
}
.privacy-rows .privacy-box {
  margin-top: 20px 0 40px;
}

.privacy-box p.title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.privacy-box p.sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.privacy-box p.note-section {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.privacy-box ul li {
  font-size: 13px;
  font-weight: 500;
  color: #a3a3a5;
}
 
/* popup section and styles */

#sales-popup {
  position: fixed;
  bottom: 50px;
  left: 20px;
  padding: 12px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
}

#sales-popup.show {
  display: block;
  animation: fade 1s ease;
}

#sales-popup .created {
  color: #feda03;
  font-weight: 600;
  text-transform: uppercase;
}

#sales-popup .collected {
  color: #256d4c;
  font-weight: 600;
  text-transform: uppercase;
}

#sales-popup .nft-text {
  text-transform: uppercase;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bottom-left {
  transform: translateY(100%);
  bottom: 20px;
  left: 20px;

  color: #191c1f;
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
}

/* testimonial box section */
.testimonial-section {
  margin-bottom: 7%;
}
.testimony-wrapper {
  margin: 0 5px 30px;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s ease;
  transform-origin: center;
}

.testimony-wrapper .testimony-box .testimony-img {
  text-align: center;
  position: relative;
  top: 50px;
}
.testimony-wrapper .testimony-box .testimony-img img {
  height: 100px;
  width: 100px;
  border-radius: 50px;
  border: 3px solid #7f7f7f;
}

.testimony-wrapper .testimony-box .testimony-body {
  padding: 10px 10px 20px;
  border: 0 solid #3d4145;
  border-radius: 25px;
  text-align: center;
  background: #222528;
}

.testimony-wrapper:hover {
  transform: scale(1.05);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  z-index: 2;
}

.testimony-wrapper .testimony-box .testimony-body .testimony-desc {
  margin-top: 50px;
}

.testimony-wrapper .testimony-box .testimony-body .testimony-desc .text {
  font-size: 14px;
  color: #f3f3f3;
  height: 130px;
}

.testimony-wrapper .testimony-box .testimony-body .testimony-desc .title {
  font-size: 15px;
  color: #a3a3a5;
  text-transform: lowercase;
  font-weight: 600;
  color: #a3a3a3;
}

.testimony-wrapper .testimony-box .testimony-body .button-prof {
  text-align: center;
  margin-top: 15px;
}

.testimony-wrapper .testimony-box .testimony-body .button-prof .btn {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  color: #fff;
  background: #3d4145;
  text-transform: capitalize;
  border-radius: 20px;
  border: 0 solid #3d4145;
}




/* giveaway all styles below here */

/* give away modal sessions */

#sessionCheckPortal {
  display: none;
}

#selectedNFTPortal {
  display: none;
  transition: opacity 0.5s ease;
}

#selectedNFTPortal.show {
  opacity: 1;
}

/* give away modal sessions ends here */

.giveaway-section {
  margin: 30px 20px;
}

.giveaway-wrapper .title {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.giveaway-wrapper .note {
  font-size: 14px;
  font-weight: 400;
  color: #7f7f7f;
  margin-bottom: 8px;
  text-align: left;
}

.giveaway-wrapper .note .p-note {
  font-weight: 500;
  font-size: 15px;
  color: #a3a3a3;
}

.giveaway-container {
  display: flex;
  justify-content: center;
}
.giveaway-container .giveaway-content {
  width: 380px;
}

.giveaway-box {
  border-radius: 15px;
  padding: 15px 20px;
  background: transparent;
}

.giveaway-box-spin {
  border-radius: 15px;
  padding: 20px 10px;
  border: 0px solid #303336;
  background: transparent;

  -webkit-box-shadow: 1px 1px 5px 2px rgba(23, 23, 23, 1);
  -moz-box-shadow: 1px 1px 5px 2px rgba(23, 23, 23, 1);
  box-shadow: 1px 1px 5px 2px rgba(23, 23, 23, 1);
}

.giveaway-box-content {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
  overflow: hidden;
  
}

#giveaway-box-spinner{
  position: absolute;
  top: 0;
  left: 0;
  width: 310px;
  height: 310px;
  animation: spin 1s linear infinite;
  animation-play-state: paused;
   /* Initially paused */

}
@keyframes spin {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-800%);
  }
}


.nft-spin-box {
  display: flex;
  flex-direction: row;
  padding: 10px 20px;
  background: #222528;
  border-radius: 10px;
  margin-bottom: 15px;
}
.nft-spin-box .nft-spin-img-box {
  height: 75px;
  width: 60px;
}

.nft-spin-box .nft-spin-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  border: 2px solid #a3a3a5;
}

.nft-spin-box .nft-spin-img-details {
  margin-left: 10px;
}

.nft-spin-box .nft-spin-img-details p {
  margin-bottom: 3px;
  padding-bottom: 0;
}

.nft-spin-box .nft-spin-img-details .name-title {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #a3a3a5;
}

.nft-spin-box .nft-spin-img-details .eth-price {
  font-size: 14px;
  font-weight: 500;
  color: #f7f7f7;
  letter-spacing: 1px;
}

.nft-spin-box .nft-spin-img-details .d-price {
  font-size: 12px;
  color: #7f7f7f;
  font-weight: 400;
}

.giveaway-box .button-box {
  text-align: center;
  margin-top: 20px;
}

.giveaway-box .button-box .btn {
  width: 50%;
  height: 45px;
  border-radius: 25px;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(to bottom, #feda03, #f8db3b);
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.giveaway-box .button-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.display-giveaway-winners {
  margin-top: 50px;
  padding: 10px;
}

.giveaway-winners .title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}

.winner-wrapper {
  display: flex;
  flex-direction: row;
  padding: 15px 15px;
  border-radius: 15px;
  border: 1px solid #3d4145;
  margin-bottom: 30px;
}

.winner-wrapper .winner-img-box {
  height: 60px;
  width: 60px;
}

.winner-wrapper .winner-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #a3a3a3;
}

.winner-wrapper .winner-details {
  margin-left: 10px;
}

.winner-wrapper .winner-details p {
  margin-bottom: 0;
  padding-bottom: 0;
}
.winner-wrapper .winner-details .username {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #f7f7f7;
  margin-bottom: 5px;
}

.winner-wrapper .winner-details .note {
  font-size: 13px;
  font-weight: 400;
  color: #a3a3a3;
  margin-bottom: 8px;
}

.winner-wrapper .winner-details .note .eth-price {
  font-size: 14px;
  font-weight: 600; 
}


/* faq section */

.home-faq {
  background: #222528;
  padding: 40px 0;
  border-radius: 15px;
}

.home-faq-wrapper {
  margin-top: 20px;
}

.home-faq-box {
  border-radius: 10px;
  padding: 10px 15px;
  background: #191c1f;
  margin: 20px 10px;
}

.home-faq-box .home-faq-q {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 5px 0;
}

.home-faq-box .home-faq-q p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.home-faq-box .home-faq-q p.home-title {
  font-size: 14px;
  font-weight: 700;
}

.home-faq-box .home-faq-q p .fas {
  font-size: 14px;
  margin-right: 10px;
}

.home-faq-a {
  padding: 10px 0 5px;
}

.faq-answer {
  display: none;
  /* Hide the answer divs by default */
}

.faq-question i.fa-minus {
  display: none;
  /* Hide the minus icon by default */
}

.home-faq-a .faq-desc {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  max-width: 850px;
}