html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gotham-Book", Times, serif;

  /* overflow-x:hidden; */

  background-color: #0d101f;

  color: #fff;
}

@font-face {
  font-family: "Gotham-Light";

  src: url("../fonts/Gotham-Light.otf") format("truetype");

  font-weight: normal;

  font-style: normal;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  font-smoothing: antialiased;
}

@font-face {
  font-family: "Gotham-Book";

  src: url("../fonts/Gotham-Book.otf") format("truetype");

  font-weight: normal;

  font-style: normal;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  font-smoothing: antialiased;
}

@font-face {
  font-family: "Gotham-Medium";

  src: url("../fonts/Gotham-Medium.otf") format("truetype");

  font-weight: normal;

  font-style: normal;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  font-smoothing: antialiased;
}

@font-face {
  font-family: "Gotham-Bold";

  src: url("../fonts/Gotham-Bold.otf") format("truetype");

  font-weight: normal;

  font-style: normal;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  font-smoothing: antialiased;
}

@font-face {
  font-family: "Gotham-Book";

  src: url("../fonts/Gotham-Book.otf") format("truetype");

  font-weight: normal;

  font-style: normal;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  font-smoothing: antialiased;
}

a {
  text-decoration: none;

  -moz-transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

/* Preloader Styles */

.preloader {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: #0d101f;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 9999;

  transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
  opacity: 0;

  pointer-events: none;
}

.loader {
  position: relative;

  width: 200px;

  height: 200px;

  perspective: 1000px;
}

.loader img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  animation: bounce-rotate 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-progress {
  position: absolute;

  bottom: -30px;

  left: 0;

  width: 100%;

  height: 3px;

  background: rgba(255, 255, 255, 0.1);

  border-radius: 10px;

  overflow: hidden;
}

.loader-progress::after {
  content: "";

  display: block;

  width: 40%;

  height: 100%;

  background: linear-gradient(90deg, #97f058, #1047c7);

  animation: progress 1.5s ease-in-out infinite;

  border-radius: 10px;
}

@keyframes bounce-rotate {

  0%,
  100% {
    transform: translateY(0) rotateY(0);
  }

  50% {
    transform: translateY(-20px) rotateY(180deg);
  }
}

@keyframes progress {
  0% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(300%);
  }
}

section {
  overflow: hidden;
}

/* 

 .btnstyle {

 	text-align: center;

 	background-image: linear-gradient(to right, #92eb53, #a6be67, #bb8e7d, #cd638f);

 	display: inline-block;

 	padding: 34.5px 90px !important;

 	font-size: 32px !important;

 	font-family: 'Gotham-Bold', Times, serif;

 	border-radius: 90px;

 	-webkit-border-radius: 90px;

 	-moz-border-radius: 90px;

 	-ms-border-radius: 90px;

 	-o-border-radius: 90px;

 	color: #fff;

 	min-width: 379px;

 }



 .btnstyle:hover {

 	background-image: linear-gradient(to right, #cd638f);

 	color: #fff !important;

 } */

.btnstyle {
  position: relative;

  text-align: center;

  background-image: linear-gradient(90deg,
      #92eb53,
      #a6be67,
      #bb8e7d,
      #cd638f,
      #92eb53);

  background-size: 400% 400%;

  display: inline-block;

  padding: 34px 90px;

  font-size: 32px;

  font-weight: bold;

  border-radius: 90px;

  color: #fff;

  min-width: 379px;

  border: none;

  cursor: pointer;

  transition: all 0.3s ease;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

  overflow: hidden;

  outline: none;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.btnstyle:before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: rgba(255, 255, 255, 0.2);

  transform: skewX(-30deg);

  transition: all 0.6s ease;
}

.btnstyle:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);

  transform: translateY(-3px);
}

.btnstyle:hover:before {
  left: 100%;
}

.btnstyle {
  animation: gradientAnimation 6s ease infinite, float 3s ease-in-out infinite;
}

/* Animation */

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.header {
  padding: 16px 0;

  background: rgba(9, 16, 44, 0.9);

  position: absolute;

  z-index: 999;

  width: 100%;
}

.header.header-fixed {
  padding: 0 0 0 0;

  position: fixed;

  top: -100px;

  left: 0;

  width: 100%;

  -webkit-transition: -webkit-transform 0.5s;

  transition: -webkit-transform 0.5s;

  transition: transform 0.5s;

  transition: transform 0.5s, -webkit-transform 0.5s;

  -webkit-transform: translateY(100px);

  transform: translateY(100px);

  border: none;

  -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);

  box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);

  z-index: 999;
}

.header .navbar .nav-item {
  display: flex;

  align-items: center;
}

.header .navbar .nav-link {
  color: #fff;

  font-size: 21px;

  padding: 0;

  margin-left: 34px;

  font-family: "Gotham-Light", Times, serif;
}

.header .navbar .nav-link:hover {
  color: #9cec5c;
}

.header .navbar .nav-link.active {
  color: #9cec5c;

  font-family: "Gotham-Medium", Times, serif;
}

.header .navbar .nav-link.btnstyle:hover {
  transform: unset;
}

.header .navbar .nav-link.btnstyle {
  font-size: 22px !important;

  padding: 14px 35px !important;

  margin-left: 35px;

  min-width: auto;

  color: #fff !important;

  font-family: "Gotham-Bold", Times, serif;

  animation: gradientAnimation 6s ease infinite;
}

.header .navbar .nav-link.dropdown-toggle {
  font-size: 16px;

  padding: 5px 8px;

  border-radius: 8px;

  margin-left: 16px;

  background: linear-gradient(45deg, #667eea, #764ba2);
}

.header .navbar-nav {
  align-items: center;
}

.hero-section {
  background-image: url(../images/hero-bg.jpg);

  background-size: 100% auto;

  background-repeat: no-repeat;
}

.bannerbg {
  position: relative;

  /* padding-bottom: 235px; */

  z-index: 4;
}

.bannerbg .bannerimg {
  width: 100%;

  visibility: hidden;
}

/* .bannerbg::after {

 	content: "";

 	position: absolute;

 	right: 0;

 	bottom: -450px;

 	background: url(../images/banner-gradientbg.png) no-repeat;

 	width: 600px;

 	height: 785px;

 	z-index: 9;

 } */

.bannerbg-inner {
  text-align: center;
}

/* .bannerbg-inner {

 	position: absolute;

 	width: 100%;

 	left: 0;

 	bottom: 0;

 	text-align: center;

 	z-index: 99;

 } */

.bannerbg-inner h1 {
  color: #fff;

  font-size: 83px;

  line-height: 89px;

  font-family: "Montserrat", Times, serif;

  font-weight: 600;

  margin-bottom: 54px;
}

.bannerbg-inner h1 span {
  font-weight: 800;

  display: block;
}

.bannerbg-inner p {
  font-size: 35px;

  color: #fff;

  line-height: 1.5;

  margin-bottom: 1.5rem;
}

.bannerbg-inner p strong {
  color: #98ef59;

  font-family: "Gotham-Bold", Times, serif;
}

.bannerbg-inner .btnstyle {
  /* margin-top: 30px; */
}

@media screen and (min-width: 1670px) {
  .container {
    max-width: 1610px;
  }

  .bannerbg .bannerimg {
    height: 1275px;
  }
}

.aboutbg {
  padding: 150px 0 185px;

  position: relative;
}

/* 

 .aboutbg::before {

 	content: "";

 	position: absolute;

 	top: 0;

 	left: 0;

 	background: url(../images/aboutshadow.png) no-repeat;

 	width: 655px;

 	height: 1600px;

 	z-index: -9;

 }



 .aboutbg::after {

 	content: "";

 	position: absolute;

 	bottom: 0;

 	right: 0;

 	background: url(../images/aboutshadow-bottom.png) no-repeat;

 	width: 730px;

 	height: 1040px;

 	z-index: -9;

 } */

.aboutbg .floating-coin {
  width: 240px;

  position: absolute;

  right: -100px;

  bottom: -140px;

  z-index: 99;

  margin: 0;

  animation: float 3s ease-in-out infinite;
}

.float-animate {
  animation: float 3s ease-in-out infinite;
}

.aboutbg .row.g-lg-5 {
  --bs-gutter-x: 34px;
}

.about-bottom-box-img img.w-100 {
  animation: float 3s ease-in-out infinite;

  animation-delay: 1.5s;

  aspect-ratio: 783 / 862;

  object-fit: contain;
}

.buybackbox {
  height: 100%;

  padding: 45px;

  border: solid 2px #ef53af;

  border-radius: 5px;

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  -ms-border-radius: 5px;

  -o-border-radius: 5px;

  background-color: rgba(239, 83, 175, 0.15);

  position: relative;

  z-index: 99;
}

.buybackbox h3 {
  color: #fff;

  font-size: 36px;

  font-family: "Gotham-Medium", Times, serif;

  margin: 0 0 25px 0;
}

.buybackbox p {
  color: #fff;

  font-size: 25px;

  line-height: 1.6;

  margin: 0;

  text-align: left !important;
}

.buybackbox p strong {
  font-family: "Gotham-Bold", Times, serif;
}

.buybackbox-outer .floating-coin {
  width: 160px;

  position: absolute;

  right: -20px;

  bottom: -140px;

  z-index: 99;

  animation: float 3s ease-in-out infinite;

  animation-delay: 1s;
}

.greenbox {
  border: solid 2px #8ee154;

  background-color: rgba(142, 225, 84, 0.15);

  text-align: left;
}

.greenbox .greenbox-text {
  color: #97f058;

  font-family: "Gotham-Bold", Times, serif;
}

.greenbox .greenbox-text span {
  color: #fff;

  font-family: "Gotham-Book", Times, serif;
}

.about-bottom-box {
  padding-top: 220px;
}

/* .headingbig {

 	position: relative;

 	color: #fff;

 	font-size: 72px;

 	line-height: 82px;

 	font-weight: 700;

 	margin: 0 0 70px 0;

 	padding-bottom: 30px;

 	font-family: 'Montserrat', Times, serif;

 } */

.headingbig {
  position: relative;

  color: #fff;

  font-size: 72px;

  line-height: 82px;

  font-weight: 700;

  margin: 0 0 70px 0;

  padding-bottom: 30px;

  font-family: "Montserrat", Times, serif;
}

.aboutbg .headingbig {
  padding-bottom: 85px;

  margin-bottom: 80px;
}

.headingbig img {
  width: 50px;
}

.headingbig::after {
  content: "";

  height: 5px;

  max-width: 100%;

  width: 450px;

  position: absolute;

  bottom: 0;

  background-image: linear-gradient(to right, #d45496, #8cfa4d);

  left: 0;
}

.about-bottom-box .headingbig::after {
  left: 50%;

  transform: translate(-50%, 0);
}

.about-bottom-box-text {
  padding-left: 52px;
}

.about-bottom-box-text h3 {
  color: #fff;

  font-size: 45px;

  font-family: "Gotham-Medium", Times, serif;

  margin: 0 0 25px 0;
}

.about-bottom-box-text h4 {
  color: #fff;

  font-size: 30px;

  font-family: "Gotham-Medium", Times, serif;

  text-transform: uppercase;
}

.about-bottom-box-text p {
  font-size: 25px;

  line-height: 1.6;

  color: #fff;

  margin: 0 0 35px 0;
}

.about-bottom-box-text p strong {
  font-family: "Gotham-Bold", Times, serif;
}

.keytext {
  font-family: "Gotham-Bold", Times, serif;

  color: #98ef59;
}

.keycopy {
  color: #98ef59;
}

.keycopy:hover {
  color: #fff;
}

.aboutfollowrow {
  display: flex;

  gap: 50px;

  align-items: center;

  padding-left: 52px;
}

.aboutfollow h3 {
  color: #fff;

  font-size: 25px;

  font-family: "Gotham-Bold", Times, serif;

  margin: 0 0 10px 0;
}

.aboutfollow a {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

.aboutfollow img {
  width: 54px;
}

.footer {
  padding: 45px 0;

  background-color: #000;
}

.footer-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.footer-left p {
  font-size: 25px;

  line-height: 40px;

  color: #fff;
}

.footer-left p span {
  font-family: "Gotham-Bold", Times, serif;

  color: #98ef59;

  display: block;
   word-wrap: break-word;    /* Long text wrap karega */
    overflow-wrap: break-word;
    word-break: break-all;    /* Continuous text ko tod dega */
    white-space: normal;      /* Ek line me chipke nahi */
}

.footer-right p {
  font-size: 25px;
  color: #fff;
  margin: 0;
  text-align: right;
}

.footersocial {
  display: flex;

  gap: 15px;

  justify-content: end;

  margin-bottom: 35px;
}

.footersocial img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.inner-header {
  position: inherit;
}

.about-section-bg .about-section-text {
  padding-left: 54px;
}

.about-section-bg p {
  font-size: 25px;

  line-height: 1.6;

  color: #fff;

  margin: 0 0 35px 0;
}

.about-section-bg h5,
.andys-songs-text h5 {
  font-size: 30px;

  line-height: 1.6;

  color: #fff;

  margin: 0 0 35px 0;

  font-family: "Gotham-Bold", Times, serif;
}

.about-section-bg p strong {
  font-family: "Gotham-Bold", Times, serif;
}

.aboutpageimg {
  padding-top: 100px;
}

.aboutpage-bottomtext h3 {
  font-family: "Gotham-Medium", Times, serif;

  font-size: 30px;

  line-height: 1.6;

  margin: 0 0 35px 0;
}

.margin100 {
  margin-top: 110px;
}

.andys-songs-bg {
  padding: 150px 0 0;

  position: relative;
}

.andys-songs-section {
  background-image: url(../images/andys-song-bg.jpg);

  background-size: 100% 100%;

  background-repeat: no-repeat;

  padding-bottom: 90px;
}

/* .andys-songs-bg::before {

 	content: "";

 	position: absolute;

 	top: 0;

 	left: 0;

 	background: url(../images/aboutshadow.png) no-repeat;

 	width: 655px;

 	height: 1600px;

 	z-index: -9;

 } */

.andys-songs-bg p {
  font-size: 25px;

  line-height: 1.6;

  color: #fff;

  margin: 0 0 35px 0;
}

/* .andys-songs-bg .headingbig {

 	font-size: 55px;

 	margin: 0 0 70px 0;

 	padding-bottom: 30px;

 } */

.andys-songs-bg p strong {
  font-family: "Gotham-Bold", Times, serif;
}

.andys-songs-hero {
  margin-top: -240px;
}

#andy_books p {
  hyphens: auto;

  word-break: break-word;
}

#andy_books .btnstyle {
  padding: 34.5px 50px !important;
}

.audiorow h5 {
  font-size: 25px;

  color: #fff;

  margin: 0 0 20px 0;

  display: flex;

  align-items: center;

  gap: 12px;
}

.audiorow audio {
  min-width: 80%;
}

.spotify {
  border-top: solid 1px #629342;

  padding-top: 40px;

  margin-top: 40px;
}

.spotify h4 {
  font-family: "Gotham-Medium", Times, serif;

  font-size: 30px;

  margin: 0 0 35px 0;

  text-transform: uppercase;
}

.devider {
  color: #629342;

  display: inline-block;

  margin: 0 6%;
}

.buyrow {
  display: flex;

  align-items: center;

  gap: 50px;
}

.buyrow-left {
  font-size: 25px;

  color: #fff;

  margin: 0;

  display: flex;

  align-items: center;

  gap: 12px;
}

.buyrow-right {
  display: flex;

  gap: 20px;

  align-items: center;
}

/* @media only screen and (min-width: 1200px) and (max-width: 1399px) {



 	.header .navbar .nav-link {

 		font-size: 18px;

 	}





 	.buyrow-right img {

 		width: 50px;

 	}

 } */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* .header {

 		position: inherit;

 	}



 	.bannerbg-inner p {

 		font-size: 25px;

 	}



 	.navbar-brand img {

 		width: 150px;

 	}



 	.header .navbar .nav-item {

 		padding-left: 15px;

 	}



 	.header .navbar .nav-link {

 		font-size: 16px;

 	}



 	.btnstyle {

 		padding: 15px 30px !important;

 		font-size: 15px !important;

 	}



 	.headingbig {

 		font-size: 52px;

 		line-height: 62px;

 	}



 	.about-bottom-box-text p {

 		font-size: 21px;

 	}



 	.buybackbox h3 {

 		font-size: 32px;

 		margin: 0 0 20px 0;

 	}



 	.buybackbox p {

 		font-size: 21px;

 		line-height: 1.5;

 	}



 	.devider {

 		display: none;

 	}



 	.buyrow {

 		align-items: start;

 		flex-direction: column;

 		gap: 0px;

 	}



 	.buyrow-right img {

 		width: 40px;

 	} */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header {
    position: inherit;
  }

  .btnstyle {
    padding: 10px 30px !important;

    font-size: 25px !important;
  }

  .bannerbg-inner p {
    font-size: 25px;

    margin-bottom: 5px !important;
  }

  /* .bannerbg-inner h1 {

 		font-size: 40px;

 		line-height: 50px;

 	} */

  /* .bannerbg-inner img {

 		width: 150px;

 	} */

  /* .bannerbg .img-fluid {

 		min-height: 340px;

 		object-fit: cover;

 	} */

  .navbar-toggler {
    background-color: #fff;
  }

  .header .navbar-nav {
    gap: 15px;

    margin-top: 20px;
  }

  /* .header .navbar .nav-item {

 		padding-left: 0;

 	}



 	.aboutbg {

 		padding: 70px 0;

 	}



 	.buybackbox {

 		padding: 25px;

 	}



 	.buybackbox h3 {

 		font-size: 32px;

 	}



 	.about-bottom-box {

 		padding-top: 70px;

 	}



 	.headingbig {

 		font-size: 26px;

 		line-height: 32px;

 		padding-bottom: 40px;

 	}



 	.headingbig br {

 		display: none;

 	}



 	.headingbig::after {

 		width: 300px;

 	} 



 	.aboutfollow a {

 		margin-right: 5px;

 	} */

  .footer-inner {
    justify-content: center;

    flex-direction: column;

    text-align: center;

    gap: 20px;
  }

  .footer-left p {
    font-size: 18px;
  }

  .footersocial {
    justify-content: center;
  }

  /* .aboutfollowrow {

 		gap: 20px;

 	}



 	.aboutfollowrow .btnstyle {

 		font-size: 19px !important;

 	}



 	.andys-songs-bg .headingbig {

 		font-size: 26px;

 		line-height: 32px;

 		text-align: center;

 		margin: 0 0 55px 0;

 	} */
}

@media only screen and (max-width: 767px) {
  .header {
    position: inherit;
  }

  .navbar-toggler {
    background-color: #fff;

    padding: 5px;

    font-size: 15px;

    border-radius: 5px;
  }

  .header .navbar .nav-link.dropdown-toggle {
    padding: 4px 12px;
  }

  .header .navbar-nav {
    gap: 0;

    margin-top: 20px;
  }

  .header .navbar .nav-item {
    padding-left: 0;
  }

  .footer-inner {
    justify-content: center;

    flex-direction: column;

    text-align: center;

    gap: 20px;
  }

  .footer-left p {
    font-size: 16px;
  }

  .footer-right p {
    font-size: 16px;
  }

  .footersocial {
    justify-content: center;
  }

  /* 

 	.about-section-bg,

 	.andys-songs-bg {

 		padding: 50px 0;

 	}



 	.andys-songs-bg .headingbig {

 		font-size: 25px;

 	}



 	.devider {

 		display: none;

 	}



 	.buyrow {

 		align-items: start;

 		flex-direction: column;

 		gap: 0px;

 	}



 	.buyrow-right img {

 		width: 40px;

 	} */
}

.token-details-bg {
  padding: 150px 0 0;

  position: relative;
}

/* .token-details-bg::before {

 	content: "";

 	position: absolute;

 	bottom: 0;

 	right: 0;

 	background: url(../images/tokenshadow-bg.png) no-repeat;

 	background-size: contain;

 	background-position: bottom right;

 	width: 550px;

 	height: 600px;

 	z-index: -10;

 } */

.token-details-bg .buybackbox {
  padding: 110px 30px;

  margin-top: 30px;
}

.token-details-bg .buybackbox p {
  text-align: center !important;

  max-width: 652px;

  margin-left: auto;

  margin-right: auto;
}

.token-details-bg .buybackbox h3 {
  margin: 0 0 52px 0;

  text-transform: capitalize;
}

.gradient-text-link {
  position: relative;

  font-size: 30px;

  background: linear-gradient(90deg, #8cfa4d, #d45496);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: transparent;

  font-family: "Gotham-Medium", Times, serif;

  display: inline-block;

  margin-bottom: 40px;
}

.gradient-text-link::after {
  position: absolute;

  content: "";

  background: linear-gradient(90deg, #8cfa4d, #d45496);

  width: 100%;

  height: 2px;

  left: 0;

  top: 100%;
}

.roadmap-section {
  /* background: linear-gradient(180deg, #0B0B1F 0%, #1A1A3F 100%); */

  background-image: url(../images/roadmap-bg.png);

  background-repeat: no-repeat;

  background-size: 100% 100%;

  background-color: #0d101f;

  padding: 80px 0;
}

.roadmap-timeline {
  position: relative;

  width: 100%;

  /* padding: 40px 0; */
}

.roadmap-timeline::before {
  content: "";

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  position: absolute;

  /* padding: 40px 0; */

  background-image: url("../images/bg-border.png");

  filter: drop-shadow(0 0 5px #11ff00);

  background-size: 100% auto;
}

#faceonpath {
  position: absolute;

  width: 90px;

  height: auto;

  transform-origin: center center;

  z-index: 10;

  left: 0;
}

#svgpath {
  position: absolute;

  width: 100%;

  height: auto;

  top: -10px;

  left: 0;

  visibility: hidden;
}

.roadmap-item {
  margin-top: -5px;
}

.roadmap-item:nth-of-type(3) .roadmap-content,
.roadmap-item:nth-of-type(5) .roadmap-content {
  justify-content: end;

  gap: 100px;
}

.roadmap-item:nth-of-type(3) .roadmap-text,
.roadmap-item:nth-of-type(5) .roadmap-text {
  width: 710px;
}

.month-title {
  color: #fff;

  font-size: 30px;

  font-family: "Gotham-Medium", Times, serif;

  text-transform: uppercase;

  margin-bottom: 24px;

  position: absolute;

  left: 0;

  top: -35px;

  transform: translate(-3px, -50%);

  /* background-color: #0b0b1f;

 	padding-right: 20px; */
}

.roadmap-content {
  display: flex;

  position: relative;

  justify-content: space-between;

  font-size: 25px;

  padding-top: 36px;

  padding-bottom: 36px;

  padding-left: 0;

  padding-right: 36px;

  z-index: 5;
}

.roadmap-item.reverse .roadmap-content {
  flex-direction: row-reverse;

  padding-right: 5px;

  padding-left: 36px;
}

.roadmap-text ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.roadmap-text li {
  font-size: 25px;

  line-height: 1.6;

  color: #ffffff;

  margin-bottom: 10px;

  position: relative;

  padding-left: 50px;
}

.roadmap-text li::before {
  position: absolute;

  left: 0;

  top: 8px;

  content: "\f05d";

  display: inline-block;

  font: normal normal normal 14px / 1 FontAwesome;

  font-size: inherit;

  text-rendering: auto;

  -webkit-font-smoothing: antialiased;
}

.roadmap-text {
  width: 688px;

  position: relative;
}

.roadmap-item.reverse .roadmap-image {
  width: 500px;

  position: relative;

  flex-shrink: 0;

  justify-content: start;
}

.roadmap-image {
  width: 500px;

  position: relative;

  flex-shrink: 0;

  display: flex;

  justify-content: end;

  padding: 10px;
}

.roadmap-image img {
  /* max-width: 500px; */

  max-width: 100%;

  height: 493px;

  object-fit: contain;
}

.bam-token {
  position: absolute;

  right: -20px;

  top: -20px;

  filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}

.bam-token img {
  width: 40px;

  height: 40px;
}

.roadmap-finale {
  margin-top: -180px;

  width: 35%;
}

.roadmap-finale img {
  max-width: 100%;
}

.contact-us-section {
  text-align: center;

  padding: 50px 0;
}

.contact-us-section .headingbig {
  margin-bottom: 80px;
}

.contact-header {
  max-width: 1030px;
}

.contact-us-section p {
  font-size: 25px;
}

.contact-us-section h5 {
  font-size: 30px;

  font-family: "Gotham-Bold", Times, serif;
}

.contact-us-section .headingbig::after {
  left: 50%;

  transform: translate(-50%, 0);
}

.contact-form {
  max-width: 1300px;
}

.contact-us-section .form-control {
  background-color: #151a33;

  border-color: rgb(104 127 239 / 29%);

  border-radius: 50px;

  padding: 30.75px 40px;

  font-size: 25px;

  color: #fff;
}

.contact-us-section .form-control::placeholder {
  color: #777777;
}

.contact-us-section .btnstyle {
  margin-top: 60px;
}

.fair-launch-bg {
  background: url(../images/fair-launch-bg.jpg);

  background-size: 100% 100%;

  background-position: top center;

  background-repeat: no-repeat;

  padding: 150px 0;

  position: relative;
}

.fair-launch-bg .buybackbox {
  padding: 80px 80px;

  margin-top: 30px;
}

#join-bam {
  background: url(../images/join-bg.jpg);

  background-size: 100% auto;

  background-position: top center;

  background-repeat: no-repeat;

  position: relative;
}

.footer .btnstyle {
  min-width: auto;

  font-size: 25px !important;

  padding: 11.5px 64.5px !important;
}

.coin-overlays {
  position: absolute;

  height: 100%;

  width: 100%;

  top: 0;

  left: 50%;

  transform: translateX(-50%);

  margin-top: 190px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.coin-overlays img {
  position: absolute;

  animation: float 3s ease-in-out infinite;
}

.coin-overlays img:nth-child(1) {
  left: 60px;

  width: 118px;

  top: 0;

  animation-delay: 0s;
}

.coin-overlays img:nth-child(2) {
  left: -78px;

  width: 190px;

  top: 105px;

  animation-delay: 1s;
}

.coin-overlays img:nth-child(3) {
  left: 55px;

  width: 145px;

  top: 565px;

  animation-delay: 2s;
}

.coin-overlays img:nth-child(4) {
  right: -6px;

  width: 138px;

  top: 165px;

  animation-delay: 1.5s;
}

.coin-overlays img:nth-child(5) {
  right: -35px;

  width: 190px;

  top: 575px;

  animation-delay: 0.5s;
}

.aboutbg>.container {
  position: relative;

  z-index: 5;
}

.aboutbgshapeleft {
  background: #fa9e7c;

  background: linear-gradient(205deg, #fa9e7c 0%, #9443bb 50%, #102097 100%);

  width: 190px;

  height: 530px;

  filter: blur(60px);

  position: absolute;

  left: -80px;

  transform: rotateZ(-10deg);

  transition: left 0.1s, top 0.1s;

  top: 0;
}

.map-overlay {
  width: 100%;

  aspect-ratio: 16/9;

  position: absolute;

  opacity: 0.5;

  top: 950px;

  animation: mapOverlay 6s linear infinite;

  background: url(../images/map-overlay.png) no-repeat;

  background-size: contain;

  background-position: left top;

  z-index: 3;
}

#myChart {
  width: 100%;

  height: 100%;

  object-position: center;

  animation: float 2s ease-in-out infinite;
}

@keyframes mapOverlay {
  0% {
    background-position: -40% top;
  }

  100% {
    background-position: 150% top;
  }
}

@media screen and (max-width: 1669px) {
  /* .header .navbar .nav-link {

 		font-size: 16px;

 	} */

  .navbar-brand img {
    width: 200px;
  }

  .header .navbar .nav-item .nav-link {
    margin-left: 25px;

    font-size: 18px;
  }

  .header .navbar .nav-link.btnstyle {
    font-size: 16px !important;

    padding: 8px 30px !important;
  }

  .btnstyle {
    font-size: 21px !important;

    padding: 25px 35px !important;

    min-width: 300px;
  }

  /* .header .navbar .nav-link.btnstyle {

 		padding: 15px 35px !important;

 	} */

  .hero-section {
    padding-top: 85px;

    background-size: 100% 100%;

    position: relative;
  }

  .bannerbg-inner h1 {
    font-size: 60px;

    margin-bottom: 20px !important;

    line-height: 1.15;
  }

  .bannerbg-inner p {
    font-size: 26px;

    line-height: 1.25;

    margin-bottom: 8px;
  }

  .bannerbg-inner img {
    width: 250px;
  }

  .about-bottom-box {
    padding-top: 230px;
  }

  .buybackbox p {
    font-size: 20px;
  }

  .buybackbox h3 {
    font-size: 28px;

    margin: 0 0 20px 0;
  }

  .buybackbox {
    padding: 35px;
  }

  .aboutbg {
    padding: 90px 0 0;
  }

  .headingbig {
    font-size: 58px;

    line-height: 70px;
  }

  .headingbig::after {
    width: 345px;
  }

  .aboutbg .headingbig {
    padding-bottom: 55px;

    margin-bottom: 75px;
  }

  .about-section-bg p,
  .about-bottom-box-text p,
  .andys-songs-bg p {
    font-size: 20px;

    margin: 0 0 24px 0;
  }

  .aboutfollow h3 {
    font-size: 20px;
  }

  .about-section-bg h5,
  .andys-songs-text h5 {
    font-size: 23px;

    line-height: 1.6;

    margin: 0 0 24px 0;
  }

  .andys-songs-text {
    padding-right: 40px;
  }

  .aboutfollow h3 {
    font-size: 20px;
  }

  .aboutfollow a img {
    width: 45px;
  }

  .bannerbg-inner .btnstyle {
    /* margin-top: 25px; */

    font-size: 25px !important;

    padding: 25px 55px !important;

    min-width: auto;
  }

  .aboutpage-bottomtext {
    max-width: 850px;

    margin-right: auto !important;

    margin-left: auto !important;
  }

  .aboutpage-bottomtext h3 {
    font-size: 24px;

    margin-bottom: 20px;
  }

  .margin100 {
    margin-top: 75px;
  }

  .fair-launch-bg {
    padding: 70px 0;
  }

  .token-details-bg {
    padding: 180px 0 0;
  }

  .about-bottom-box-text h3 {
    font-size: 36px;
  }

  .about-bottom-box-text {
    padding-left: 54px;
  }

  .fair-launch-bg .buybackbox {
    padding: 75px 42px;
  }

  #join-bam {
    padding-top: 70px;
  }

  #join-bam .about-bottom-box-text {
    padding-right: 26px;
  }

  .gradient-text-link,
  .about-bottom-box-text h4 {
    font-size: 24px;
  }

  .buyrow-right img {
    width: 50px;
  }

  .buyrow {
    gap: 30px;
  }

  .roadmap-item:nth-of-type(3) .roadmap-content,
  .roadmap-item:nth-of-type(5) .roadmap-content {
    gap: 0px;
  }

  .roadmap-item:nth-of-type(3) .roadmap-text,
  .roadmap-item:nth-of-type(5) .roadmap-text {
    width: 575px;
  }

  .roadmap-text {
    width: 560px;
  }

  .month-title {
    font-size: 25px;

    top: -32px;
  }

  .roadmap-image {
    width: 495px;
  }

  .roadmap-image img {
    height: 390px;
  }

  .roadmap-text li {
    font-size: 20px;
  }

  .roadmap-content {
    padding-top: 34px;

    padding-bottom: 34px;

    padding-right: 34px;
  }

  .roadmap-finale {
    margin-top: -150px;
  }

  .contact-us-section p {
    font-size: 20px;
  }

  .contact-us-section h5 {
    font-size: 24px;
  }

  .contact-header {
    max-width: 820px;
  }

  .contact-form {
    max-width: 1050px;
  }

  .contact-us-section .form-control {
    font-size: 20px;

    padding: 25px 35px;
  }
}

@media screen and (max-width: 1399px) {
  .navbar-brand img {
    width: 160px;
  }

  .header .navbar .nav-item .nav-link {
    margin-left: 16px;

    font-size: 16px;
  }

  /* .header .navbar .nav-item .nav-link.btnstyle {

 		font-size: 20px !important;

 		padding: 12px 35px !important;

 	} */

  .header .navbar .nav-link.dropdown-toggle {
    font-size: 16px;

    padding: 3px 6px;

    border-radius: 6px;

    margin-left: 14px;
  }

  .map-overlay {
    top: 820px;
  }

  .bannerbg-inner img {
    width: 210px;

    margin-bottom: -15px;
  }

  .bannerbg-inner h1 {
    font-size: 48px;

    margin-bottom: 16px !important;
  }

  .bannerbg-inner p {
    font-size: 20px;
  }

  .bannerbg-inner .btnstyle {
    font-size: 20px !important;

    padding: 20px 34px !important;
  }

  .btnstyle {
    font-size: 20px !important;

    padding: 20px 34px !important;

    min-width: 265px;
  }

  .buybackbox {
    padding: 30px 20px;
  }

  .headingbig {
    font-size: 50px;

    line-height: 50px;
  }

  .headingbig::after {
    width: 320px;
  }

  .about-bottom-box {
    padding-top: 130px;
  }

  .about-bottom-box-text,
  .aboutfollowrow {
    padding-left: 20px;
  }

  .about-section-bg .about-section-text {
    padding-left: 20px;
  }

  .about-section-bg h5,
  .andys-songs-text h5 {
    font-size: 20px;

    line-height: 1.6;
  }

  #andy_books .btnstyle {
    min-width: 340px;

    padding: 20px 34px !important;
  }

  .about-bottom-box-text h3 {
    font-size: 32px;
  }

  .gradient-text-link,
  .about-bottom-box-text h4 {
    font-size: 22px;
  }

  .aboutpage-bottomtext {
    max-width: 775px;

    margin-right: auto !important;

    margin-left: auto !important;
  }

  .aboutfollowrow {
    gap: 40px;
  }

  .aboutbg .floating-coin {
    width: 170px;

    right: -60px;

    bottom: -100px;
  }

  .aboutpage-bottomtext h3 {
    font-size: 22px;
  }

  .aboutfollow a {
    margin-right: 10px;
  }

  .buybackbox h3 {
    font-size: 26px;

    margin: 0 0 12px 0;
  }

  .buybackbox p,
  .about-section-bg p,
  .about-bottom-box-text p,
  .andys-songs-bg p,
  .aboutfollow h3 {
    font-size: 18px;
  }

  .aboutfollow a img {
    width: 40px;
  }

  #andy_song .row {
    --bs-gutter-x: 24px;
  }

  .aboutbg .row.g-lg-5 {
    --bs-gutter-x: 24px;
  }

  .audiorow h5,
  .buyrow-left {
    font-size: 20px;
  }

  .spotify h4 {
    font-size: 25px;

    margin: 0 0 25px 0;
  }

  .spotify h4 img {
    width: 160px;
  }

  .andys-songs-hero {
    margin-top: -195px;
  }

  .roadmap-item.reverse .roadmap-content {
    padding-right: 0px;
  }

  .roadmap-item.reverse .roadmap-text {
    width: 490px;
  }

  .roadmap-item:nth-of-type(3) .roadmap-text,
  .roadmap-item:nth-of-type(5) .roadmap-text {
    width: 572px;
  }

  .roadmap-text li {
    padding-left: 30px;
  }

  .roadmap-image {
    width: 345px;
  }

  .roadmap-image img {
    height: 300px;

    margin-top: 25px;
  }

  .roadmap-text {
    width: 496px;
  }

  .month-title {
    font-size: 22px;
  }

  .roadmap-text li {
    font-size: 18px;
  }

  .roadmap-finale {
    margin-top: -150px;

    width: 40%;
  }

  .contact-us-section p {
    font-size: 18px;
  }

  .contact-us-section h5 {
    font-size: 21px;
  }

  .contact-header {
    max-width: 760px;
  }

  .contact-form {
    max-width: 850px;
  }

  .contact-us-section .form-control {
    font-size: 18px;

    padding: 20px 35px;

    border-radius: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .header .navbar .nav-item .nav-link {
    margin-left: 12px;

    font-size: 14px;
  }

  .header .navbar .nav-item .nav-link.btnstyle {
    font-size: 14px !important;

    padding: 8px 24px !important;
  }

  .header .navbar .nav-link.dropdown-toggle {
    font-size: 12px;

    padding: 2px 6px;

    border-radius: 6px;

    margin-left: 10px;
  }

  .navbar-brand img {
    width: 125px;
  }

  .hero-section {
    padding-top: 46px;
  }

  .map-overlay {
    top: 580px;
  }

  .bannerbg-inner h1 {
    font-size: 44px;
  }

  .bannerbg-inner p {
    font-size: 18px;
  }

  .about-section-bg p,
  .about-bottom-box-text p,
  .andys-songs-bg p,
  .buybackbox p,
  .aboutfollow h3 {
    font-size: 15px;

    margin: 0 0 14px 0;
  }

  .buybackbox {
    padding: 30px 20px;
  }

  .buybackbox h3 {
    font-size: 21px;

    margin: 0 0 14px 0;
  }

  .aboutbg .floating-coin {
    width: 170px;

    right: -60px;

    bottom: -100px;
  }

  .about-bottom-box {
    padding-top: 100px;
  }

  .bannerbg-inner .btnstyle {
    font-size: 18px !important;

    padding: 18px 40px !important;
  }

  .about-section-bg h5,
  .andys-songs-text h5 {
    font-size: 17px;

    margin-bottom: 14px;
  }

  .spotify h4 {
    font-size: 20px;
  }

  .spotify h4 img {
    width: 110px;
  }

  .fair-launch-bg .buybackbox {
    padding: 40px 42px;
  }

  .gradient-text-link,
  .about-bottom-box-text h4 {
    font-size: 18px;
  }

  #join-bam .btnstyle {
    min-width: 270px;
  }

  .buyrow {
    gap: 15px;
  }

  .andys-songs-bg,
  .about-section-bg {
    padding: 70px 0;
  }

  .contact-us-section {
    padding: 36px 0 70px;
  }

  .token-details-bg {
    padding: 60px 0 0;
  }

  #andy_song {
    padding: 0;
  }

  .aboutpageimg {
    padding-top: 70px;
  }

  .fair-launch-bg {
    padding: 0;
  }

  .margin100 {
    margin-top: 30px;
  }

  .andys-songs-hero {
    height: 100%;

    display: flex;

    align-items: center;

    margin-top: -120px;
  }

  .andys-songs-bg .headingbig,
  .headingbig {
    font-size: 42px;

    line-height: 1.15;
  }

  .about-bottom-box .headingbig,
  .contact-us-section .headingbig,
  .headingbig {
    margin-bottom: 60px;

    padding-bottom: 30px;
  }

  .about-bottom-box-text h3 {
    font-size: 26px;
  }

  .aboutpage-bottomtext h3 {
    font-size: 18px;

    margin-bottom: 14px;
  }

  .aboutpage-bottomtext {
    max-width: 640px;
  }

  .andys-songs-section {
    padding-bottom: 0;
  }

  .btnstyle {
    font-size: 18px !important;

    padding: 16px 34px !important;

    min-width: 220px;
  }

  .headingbig img {
    width: 50px;
  }

  .headingbig::after {
    width: 265px;
  }

  .roadmap-section {
    padding: 0;
  }

  .roadmap-item .month-title {
    font-size: 18px;

    left: 5px;
  }

  .roadmap-text {
    width: 420px;
  }

  .roadmap-item.reverse .roadmap-text {
    width: 415px;

    margin-left: -13px;
  }

  .roadmap-item:nth-of-type(3) .roadmap-content,
  .roadmap-item:nth-of-type(5) .roadmap-content {
    gap: 17px;
  }

  .roadmap-item:nth-of-type(3) .roadmap-text,
  .roadmap-item:nth-of-type(5) .roadmap-text {
    width: 480px;
  }

  .roadmap-image {
    width: 270px;
  }

  .roadmap-image img {
    height: 234px;
  }

  .roadmap-text li {
    font-size: 15px;

    padding-left: 32px;
  }

  .roadmap-text li::before {
    top: 5px;
  }

  .contact-us-section p {
    font-size: 15px;
  }

  .contact-us-section h5 {
    font-size: 18px;
  }

  .contact-header {
    max-width: 620px;
  }

  .contact-form {
    max-width: 750px;
  }

  .contact-us-section .form-control {
    font-size: 15px;

    padding: 15px 35px;
  }

  .aboutfollowrow {
    gap: 20px;
  }

  .aboutfollow a img {
    width: 35px;
  }
}

@media (max-width: 991px) {
  .header .navbar .nav-item .nav-link {
    margin-left: 0;

    font-size: 16px;

    padding: 8px 0;

    font-family: "Gotham-Book", Times, serif;
  }

  .header .navbar .nav-link.dropdown-toggle {
    padding: 8px 12px;
  }

  .hero-section {
    background-size: 100% auto;

    padding-top: 0;
  }

  .bannerbg .bannerimg {
    display: none;
  }

  .bannerbg {
    padding-bottom: 0;
  }

  .bannerbg-inner {
    position: static;

    /* margin-top: -200px; */
  }

  .map-overlay {
    top: 500px;
  }

  .andys-songs-bg .headingbig,
  .headingbig {
    font-size: 32px;
  }

  .about-bottom-box-text {
    text-align: center;

    padding-left: 0;
  }

  .about-section-bg .about-section-text {
    padding-left: 0;
  }

  #andy_books p {
    hyphens: unset;

    word-break: unset;
  }

  .about-section-bg {
    padding: 70px 0;

    text-align: center;
  }

  .about-bottom-box-text,
  .aboutfollowrow {
    padding-left: 0;
  }

  .aboutfollowrow {
    text-align: center;

    justify-content: center;

    flex-direction: column;
  }

  #join-bam .about-bottom-box-text {
    padding-right: 0;
  }

  .headingbig::after {
    left: 50%;

    transform: translate(-50%, 0);
  }

  .headingbig {
    text-align: center;
  }

  .headingbig br {
    display: none;
  }

  .aboutpageimg {
    padding-top: 50px;
  }

  .margin100 {
    margin-top: 50px;
  }

  .andys-songs-hero {
    margin-top: 0;
  }

  .andys-songs-text {
    padding-right: 12px;

    text-align: center;
  }

  .spotify h4,
  .about-bottom-box-text h4,
  .gradient-text-link {
    font-size: 24px;
  }

  .spotify img {
    width: 135px;
  }

  .token-details-bg img,
  .andys-songs-hero .andys-songs-hero-img,
  .about-bottom-box-img img.w-100 {
    max-width: 500px;

    width: 100%;

    margin: 0 auto;

    display: block;
  }

  .andys-songs-section {
    padding-bottom: 0;
  }

  #andy_books {
    padding-top: 0;
  }

  #andy_song {
    padding: 0 0 70px;
  }

  #andy_song .row.g-lg-5.g-4 {
    flex-direction: column-reverse;
  }

  #bambitznomics {
    padding-bottom: 24px;
  }

  .chart-wrapper {
    position: relative;

    width: 100%;

    max-width: 600px;

    /* You can adjust this */

    margin: auto;

    padding: 20px;
  }

  #myChart {
    width: 100% !important;

    height: auto !important;

    aspect-ratio: 1 / 1;

    /* Ensures square canvas */

    min-height: 250px;

    /* Prevents shrinking on small screens */
  }

  .buybackbox-outer .floating-coin {
    width: 120px;

    right: -12px;

    bottom: -90px;
  }

  .fair-launch-bg .buybackbox .greenbox .greenbox-text {
    line-height: 1.75;
  }

  .token-details-bg .about-bottom-box-text {
    text-align: left;

    padding: 20px !important;

    background-color: #151a33;

    border-radius: 10px;

    border: 1px solid #687fef;
  }

  .token-details-bg .buybackbox h3 {
    margin: 0 0 24px 0;
  }

  .token-details-bg .about-bottom-box-text p br {
    display: none;
  }

  .token-details-bg {
    padding: 70px 0 0;
  }

  .fair-launch-bg .buybackbox {
    margin-top: 24px;

    padding: 20px;
  }

  .fair-launch-bg .buybackbox p {
    text-align: left !important;
  }

  .fair-launch-bg .buybackbox h3 {
    font-size: 26px;

    text-align: left !important;

    margin-bottom: 25px;
  }

  #svgpath,
  .faceonpath {
    display: none;
  }

  .roadmap-item:nth-of-type(3) .roadmap-content,
  .roadmap-item:nth-of-type(5) .roadmap-content {
    gap: 0;
  }

  .roadmap-item.reverse .roadmap-content {
    flex-direction: row;

    padding-left: 0;
  }

  .roadmap-item {
    margin-top: 0;
  }

  .roadmap-item .roadmap-content {
    padding-right: 0;
  }

  .roadmap-item .month-title {
    position: static;

    transform: unset;

    padding: 0;

    background: transparent;

    margin-bottom: 30px;
  }

  .roadmap-item:not(:first-child) .month-title {
    padding-left: 0;
  }

  .roadmap-text li {
    padding-left: 20px;
  }

  .roadmap-text {
    width: auto;

    flex-grow: 1;
  }

  .roadmap-item.reverse .roadmap-text {
    margin-left: 0;
  }

  .roadmap-item.reverse .roadmap-image,
  .roadmap-image {
    width: 200px;

    flex-shrink: 0;
  }

  .roadmap-image img {
    height: auto;

    margin-top: 0;
  }

  .roadmap-content {
    align-items: start;
  }

  .roadmap-timeline::before {
    display: none;
  }

  .roadmap-finale {
    margin-top: 0;
  }

  .roadmap-item .roadmap-content,
  .roadmap-item.reverse .roadmap-content {
    flex-direction: column-reverse;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 0 0 40px 0;
  }

  .roadmap-item .roadmap-content ul,
  .roadmap-item.reverse .roadmap-content ul {
    text-align: left;

    padding: 20px;

    background-color: #151a33;

    border-radius: 10px;

    border: 1px solid #687fef;
  }

  .roadmap-item:nth-of-type(3) .roadmap-text,
  .roadmap-item:nth-of-type(5) .roadmap-text,
  .roadmap-item .roadmap-text,
  .roadmap-item.reverse .roadmap-text {
    width: 100%;

    margin-top: 20px;
  }
}

@media screen and (max-width: 575px) {
  .bannerbg-inner img {
    width: 120px;

    margin-bottom: -8px;
  }

  .aboutbg {
    padding: 70px 0 0;
  }

  .bannerbg-inner h1 {
    font-size: 24px;
  }

  .bannerbg-inner p {
    font-size: 16px;
  }

  .about-section-bg p,
  .about-bottom-box-text p,
  .andys-songs-bg p,
  .buybackbox p {
    line-height: 1.4;
  }

  .aboutpage-bottomtext h3 {
    font-size: 18px;

    line-height: 1.25;
  }

  .about-section-bg p,
  .about-bottom-box-text p,
  .andys-songs-bg p,
  .buybackbox p,
  .aboutfollow h3 {
    font-size: 16px;
  }

  #andy_books .btnstyle {
    min-width: auto;
  }

  .bannerbg-inner .btnstyle,
  .btnstyle {
    font-size: 16px !important;

    padding: 16px 36px !important;
  }

  .andys-songs-section {
    background-size: 100% auto;
  }

  .andys-songs-bg .headingbig,
  .headingbig {
    font-size: 24px;
  }

  .buybackbox-outer .floating-coin,
  .aboutbg .floating-coin {
    width: 90px;

    right: -10px;

    bottom: -45px;
  }

  .chart-wrapper {
    max-width: 100%;

    padding: 0;
  }

  .headingbig::after {
    width: 180px;
  }

  .aboutpage-bottomtext h3 {
    font-size: 20px;

    line-height: 1.25;
  }

  .about-section-bg {
    padding: 70px 0;
  }

  .spotify h4,
  .about-bottom-box-text h4,
  .gradient-text-link {
    font-size: 18px;
  }

  .buyrow {
    flex-direction: column;

    align-items: start;
  }

  .token-details-bg .about-bottom-box-text h3 {
    font-size: 21px;

    margin-bottom: 14px;
  }

  #bambitznomics .about-bottom-box-text p br {
    display: none;
  }

  .audiorow h5,
  .buyrow-left {
    font-size: 18px;
  }

  .roadmap-text li {
    font-size: 16px;
  }

  .contact-us-section p {
    font-size: 16px;
  }

  .contact-us-section .form-control {
    padding: 18px 35px;

    font-size: 16px;
  }
}

.buybackbox {
  border: 0;

  transform: translate(0, 0);

  overflow: hidden;
}

.buybackbox>span {
  position: absolute;

  background: transparent;
}

.buybackbox>span:nth-child(1),
.buybackbox>span:nth-child(3) {
  width: 100%;

  height: 2px;
}

.buybackbox>span:nth-child(2),
.buybackbox>span:nth-child(4) {
  width: 2px;

  height: 100%;
}

.buybackbox>span:nth-child(1) {
  top: 0;

  left: 0;

  animation: animateTop 12s linear infinite;

  background: linear-gradient(to left, transparent, #ef53af);
}

.buybackbox>span:nth-child(2) {
  top: 0;

  right: 0;

  animation: animateRight 12s linear -6s infinite;

  background: linear-gradient(to top, transparent, #ef53af);
}

.buybackbox>span:nth-child(3) {
  bottom: 0;

  left: 0;

  animation: animateBottom 12s linear infinite;

  background: linear-gradient(to right, transparent, #ef53af);
}

.buybackbox>span:nth-child(4) {
  top: 0;

  left: 0;

  animation: animateLeft 12s linear -6s infinite;

  background: linear-gradient(to bottom, transparent, #ef53af);
}

.buybackbox.greenbox>span:nth-child(1) {
  background: linear-gradient(to left, transparent, #8ee154);
}

.buybackbox.greenbox>span:nth-child(2) {
  background: linear-gradient(to top, transparent, #8ee154);
}

.buybackbox.greenbox>span:nth-child(3) {
  background: linear-gradient(to right, transparent, #8ee154);
}

.buybackbox.greenbox>span:nth-child(4) {
  background: linear-gradient(to bottom, transparent, #8ee154);
}

@keyframes animateTop {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes animateRight {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes animateBottom {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes animateLeft {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

#about {
  position: relative;
}

#about .container {
  position: relative;

  z-index: 4;
}

#about::before {
  position: absolute;

  content: "";

  top: -80px;

  right: 0;

  width: 100%;

  height: 600px;

  position: absolute;

  opacity: 0.5;

  animation: lightoverlayone 8s linear infinite;

  background: url(../images/light-overlay-one.png) no-repeat;

  background-size: contain;

  background-position: right top;

  z-index: 3;
}

.about-section-bg::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  height: 100%;

  width: 100%;

  animation: lightoverlayTwo 3s linear infinite;

  background: url(../images/aboutbg.png) no-repeat center bottom;

  background-size: 100% auto;

  padding: 0 0 50px;
}

@keyframes lightoverlayone {
  0% {
    background-position: 300% top;
  }

  100% {
    background-position: -200% top;
  }
}

@keyframes lightoverlayThree {
  0% {
    background-position: 300% bottom;
  }

  100% {
    background-position: -200% bottom;
  }
}

@keyframes lightoverlayTwo {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fair-launch-bg,
.andys-songs-section {
  background: unset;

  position: relative;
}

.fair-launch-bg .container,
.andys-songs-section .container {
  position: relative;

  z-index: 2;
}

.fair-launch-bg::before {
  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 900px;

  opacity: 0.25;

  animation: lightoverlayone 8s linear infinite backwards;

  background: url(../images/light-overlay-two.png);

  background-size: contain;

  background-repeat: no-repeat;

  z-index: 1;

  transform: translateY(-50%);
}

.fair-launch-bg::after {
  position: absolute;

  content: "";

  right: 0;

  bottom: 0;

  width: 100%;

  height: 800px;

  animation: lightoverlayTwo 3s linear infinite;

  background-image: url(../images/light-overlay-three.png);

  background-size: contain;

  background-position: bottom right;

  background-repeat: no-repeat;

  z-index: 1;
}

.andys-songs-section::before {
  position: absolute;

  content: "";

  left: 0;

  bottom: 0;

  width: 100%;

  height: 900px;

  opacity: 0.25;

  animation: lightoverlayThree 8s linear infinite backwards;

  background: url(../images/light-overlay-two.png);

  background-size: contain;

  background-repeat: no-repeat;

  z-index: 1;

  transform: translateY(50%);
}

.andys-songs-section::after {
  position: absolute;

  content: "";

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  animation: lightoverlayTwo 3s linear infinite;

  background-image: url(../images/andys-song-bg.jpg);

  background-size: 100% 100%;

  background-repeat: no-repeat;
}

#join-bam {
  background: unset;
}

#join-bam::before {
  position: absolute;

  content: "";

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  animation: lightoverlayTwo 3s linear infinite;

  background: url(../images/join-bg.png);

  background-size: 100% auto;

  background-position: top center;

  background-repeat: no-repeat;
}

.roadmap-section {
  background: unset;

  position: relative;
}

.roadmap-section::before {
  position: absolute;

  content: "";

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  animation: lightoverlayTwo 3s linear infinite;

  background-image: url(../images/roadmap-bg.png);

  background-size: 100% 100%;

  background-repeat: no-repeat;

  z-index: -1;
}

.about-bottom-box-img {
  position: relative;
}

.about-bottom-box-img::before {
  position: absolute;

  content: "";

  right: 0;

  bottom: 50px;

  width: 100%;

  height: 30px;

  background-color: #102097;

  border-radius: 50%;

  filter: blur(20px);

  opacity: 0.7;

  z-index: -1;

  animation: float 3s ease-in-out infinite;

  animation-delay: 1.5s;
}

.about-bottom-box-img .coin-overlays {
  z-index: 1;

  margin-top: 0;
}

.about-bottom-box-img .coin-overlays img:nth-child(1) {
  left: -45px;

  width: 170px;

  top: 50%;

  animation-delay: 1s;
}

.about-bottom-box-img .coin-overlays img:nth-child(2) {
  right: 55px;

  left: unset;

  width: 125px;

  top: 43%;

  animation-delay: 0s;
}

.about-bottom-box-img .coin-overlays img:nth-child(3) {
  right: 50px;

  left: unset;

  width: 190px;

  top: 516px;

  animation-delay: 2s;
}

#mainCanvas {
  border: 2px solid #000;
}

#imageSelector {
  margin-bottom: 10px;
}

#imageSelector img {
  width: 80px;

  margin-right: 5px;

  cursor: grab;

  border: 2px solid #ccc;

  border-radius: 6px;
}

.andys-songs-hero .andys-songs-hero-img {
  aspect-ratio: 3185 / 2732;

  object-fit: contain;

  object-position: right;
}

.andys-songs-hero {
  position: relative;
}

.andys-songs-hero::before {
  position: absolute;

  content: "";

  right: 0;

  bottom: 10px;

  width: 85%;

  height: 30px;

  background-color: #102097;

  border-radius: 50%;

  filter: blur(20px);

  opacity: 0.7;

  z-index: -1;
}

.andys-songs-hero img.mobile-img {
  position: absolute;

  left: 50px;

  bottom: 50px;

  width: 35%;
}

#join-bam .about-bottom-box-img {
  transform: scale(0.75);

  transform-origin: top;
}

#join-bam .about-bottom-box-img::before {
  bottom: 0;
}

/* .language-floating {

 	position: absolute;

 	top: 50%;

 	right: 0;

 	z-index: 9999;

 	transform: translateY(-50%);

 } */

/* .language-floating .dropdown-toggle::after {

 	display: none;

 } */
.language-floating {
  margin-left: 20px;
}

.language-floating .btn {
  width: 50px;

  height: 50px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 12px;

  background: linear-gradient(45deg, #667eea, #764ba2);

  box-shadow: 0 0 8px 3px #979bff;

  border: 0;

  transition: all 0.3s ease;
}

.language-floating .dropdown-toggle {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.language-floating .dropdown-toggle img {
  width: 20px;
  height: 20px;
}

.language-floating .btn img {
  max-height: 100%;

  max-width: 100%;
}

.language-floating .btn:hover {
  transform: scale(1.05);
}

.language-floating .dropdown-menu {
  background: rgb(47 27 62);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 16px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

  padding: 12px;

  margin-top: 8px;

  min-width: 200px;

  right: 0;

  left: auto;

  margin-top: 10px !important;

  max-height: calc(100vh - 90px);

  overflow-y: auto;
}

.language-floating .dropdown-item {
  padding: 6px 8px;

  border-radius: 10px;

  margin: 0;

  color: #fff;

  text-decoration: none;

  font-weight: 500;

  transition: all 0.2s ease;

  position: relative;

  display: flex;

  align-items: center;

  gap: 12px;
}

.language-floating .dropdown-item:hover {
  background: linear-gradient(135deg,
      rgba(74, 144, 226, 0.1),
      rgba(53, 122, 189, 0.1));

  transform: translateX(4px);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.language-floating .dropdown-item:active {
  transform: translateX(2px) scale(0.98);
}

/* .header .navbar {

 	padding-right: 75px;

 } */

.indo .header .navbar .nav-link {
  font-size: 20px;
}

@media screen and (max-width: 1669px) {
  .indo .header .navbar .nav-link {
    font-size: 18px;

    margin-left: 20px;
  }

  .about-bottom-box-img .coin-overlays img:nth-child(1) {
    left: -70px;

    width: 145px;

    top: 60%;
  }

  .about-bottom-box-img .coin-overlays img:nth-child(3) {
    right: 80px;

    width: 160px;

    top: 450px;
  }

  .language-floating {
    margin-left: 25px;

    font-size: 18px;
  }

  .language-floating .btn {
    width: 45px;

    height: 45px;
  }
}

@media screen and (max-width: 1439px) {
  .indo .header .navbar .nav-link {
    font-size: 16px;

    margin-left: 14px;
  }

  .language-floating {
    font-size: 16px;

    margin-left: 14px;
  }

  #andy_books .about-bottom-box-img .img-fluid {
    margin-top: -90px;
  }
}

@media screen and (max-width: 1399px) {
  .about-bottom-box-img .coin-overlays img:nth-child(1) {
    left: -51px;

    width: 125px;

    top: 50%;
  }

  .about-bottom-box-img .coin-overlays img:nth-child(2) {
    right: 60px;

    width: 105px;

    top: 35%;
  }

  .about-bottom-box-img .coin-overlays img:nth-child(3) {
    right: 100px;

    width: 125px;

    top: 65%;
  }

  .andys-songs-hero {
    margin-top: -70px;
  }

  #join-bam .about-bottom-box-img {
    transform: scale(0.82);
  }

  .language-floating .btn {
    width: 40px;

    height: 40px;
  }
}

@media screen and (max-width: 1199px) {
  .indo .header .navbar-brand img {
    width: 120px;
  }

  .indo .header .navbar .nav-link {
    font-size: 14px;

    margin-left: 10px;
  }

  .language-floating {
    font-size: 14px;

    margin-left: 10px;
  }

  .indo .header .navbar .nav-item .nav-link.btnstyle {
    font-size: 14px !important;

    padding: 6px 20px !important;
  }

  .about-bottom-box-img .coin-overlays img:nth-child(1) {
    left: -51px;

    width: 125px;

    top: 50%;
  }

  .about-bottom-box-img .coin-overlays img:nth-child(2) {
    right: 30px;

    width: 105px;

    top: 35%;
  }

  .about-bottom-box-img .coin-overlays img:nth-child(3) {
    right: 50px;

    width: 125px;

    top: 65%;
  }

  #andy_books .about-bottom-box-img .img-fluid {
    margin-top: -70px;
  }

  .andys-songs-hero img.mobile-img {
    bottom: 0;
  }
}

@media screen and (max-width: 991px) {
  .indo .header .navbar .nav-item .nav-link {
    margin-left: 0;

    font-size: 16px;

    padding: 8px 0;
  }

  #andy_books .about-bottom-box-img .img-fluid {
    margin-top: 0;
  }

  #join-bam .aboutfollowrow {
    margin-top: 45px;
  }

  .andys-songs-hero {
    margin-top: 0;
  }

  .andys-songs-hero .andys-songs-hero-img {
    aspect-ratio: 783 / 662;

    max-width: 100%;
  }

  .andys-songs-hero img.mobile-img {
    bottom: 45px;
  }

  #join-bam .about-bottom-box-img {
    transform: scale(1);
  }

  .header .navbar {
    padding-right: 0;
  }

  .language-floating {
    position: absolute;

    right: 70px;

    top: 28px;

    z-index: 9999;

    transform: translateY(-50%);

    /* margin-left: 20px; */
  }
}

@media screen and (max-width: 767px) {
  .about-bottom-box-img .coin-overlays img:nth-child(1) {
    left: -20px;

    width: 95px;

    top: 50%;
  }

  .about-bottom-box-img .coin-overlays img:nth-child(2) {
    right: 30px;

    width: 80px;

    top: 35%;
  }

  .about-bottom-box-img .coin-overlays img:nth-child(3) {
    right: 50px;

    width: 95px;

    top: 65%;
  }

  .language-floating {
    right: 45px;
  }
}

@media screen and (max-width: 574px) {
  .andys-songs-hero img.mobile-img {
    bottom: 30px;

    width: 30%;

    left: 20px;
  }

  .footersocial img {
    width: 35px;
    height: 35px;
  }

  .footersocial {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 390px) {
  .upload-content .slider-container {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1440px) {
  #andy_books .about-bottom-box-img img.w-100 {
    margin-top: -110px;
  }
}

@media screen and (min-width: 1440px) and (max-width: 1669px) {
  .aboutfollowrow {
    gap: 28px;
  }
}

#join-bam .btnstyle {
  font-size: 32px !important;
  padding: 16px 25px !important;
}

#join-bam .btnstyle img {
  width: 50px;
}





/* 19-08-2025 style  */
.countdown-timer-circles {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  background: linear-gradient(135deg, #181c2f 0%, #23294a 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(24, 28, 47, 0.37);
  padding: 30px 40px;
  max-width: 700px;
  width: 90%;
  flex-wrap: wrap;
}

.circle-timer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-timer svg {
  transform: rotate(-90deg);
  width: 120px;
  height: 120px;
}

.circle-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.circle-value {
  font-size: 2rem;
  font-weight: 700;
}

.circle-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* 📱 Tablet */
@media (max-width: 768px) {
  .countdown-timer-circles {
    gap: 20px;
    padding: 20px 25px;
  }

  .circle-timer svg {
    width: 90px;
    height: 90px;
  }

  .circle-value {
    font-size: 1.5rem;
  }

  .circle-label {
    font-size: 0.7rem;
  }
}

/* 📱 Mobile */
@media (max-width: 480px) {
  .countdown-timer-circles {
    gap: 15px;
    padding: 15px 20px;
  }

  .circle-timer svg {
    width: 70px;
    height: 70px;
  }

  .circle-value {
    font-size: 1rem;
  }

  .circle-label {
    font-size: 0.55rem;
  }
}

/* JUP Launchpad style */
.tge-banner-inner-copy {
  justify-content: flex-start !important;
}

.tge-banner-inner-copy span {
  font-size: 1.5rem !important;
}

.tge-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tge-tge {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #1eaafc;
  letter-spacing: 1px;
}

.tge-on {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  margin: 0 8px;
}

.tge-jup {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #97f058;
}

.tge-date {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
}

.tge-time {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  margin-left: 8px;
}

.footer .tge-banner-inner {
  align-items: unset;
  justify-content: unset;
  padding: 0;
}

@media (max-width: 992px) {
  .footer .tge-banner-inner {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .tge-tge,
  .tge-on,
  .tge-jup,
  .tge-date,
  .tge-time {
    font-size: 1.1rem;
  }
}

/* .tge-banner-inner-copy .tge-tge,
  .tge-on,
  .tge-jup,
  .tge-date,
  .tge-time {
    font-size: 1rem;
  } */







/* 10-09-25 */

/* Important Announcement Box Styles */
/* Container */
.important-announcement-box {
  font-size: 68px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

/* Title */
.important-announcement-title {
  display: inline-block;
}

.important-announcement-icon {
  margin: 0 5px;
  font-size: 68px;
}

/* Main text */
.important-announcement-main {
  font-size: 20px;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
}

.important-announcement-arrow {
  margin: 0 5px;
}

.important-announcement-link {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.important-announcement-link:hover {
  text-decoration: underline;
}

/* Details section */
.important-announcement-details {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.important-announcement-warning {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 20px;
}

.important-announcement-warning-icon {
  margin-right: 5px;
  font-size: 20px;
}

.important-announcement-check {
  font-weight: 500;
  font-size: 20px;
}

.important-announcement-check-icon {
  margin-right: 5px;
  font-size: 20px;
}


/* Responsive font sizes */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .important-announcement-box {
    font-size: 30px;
  }

  .important-announcement-icon {
    font-size: 28px;
  }

  .important-announcement-main {
    font-size: 18px;
  }

  .important-announcement-warning,
  .important-announcement-check {
    font-size: 18px;
  }

  .important-announcement-warning-icon,
  .important-announcement-check-icon {
    font-size: 18px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .important-announcement-box {
    font-size: 30px;
  }

  .important-announcement-icon {
    font-size: 30px;
  }

  .important-announcement-main {
    font-size: 16px;
  }

  .important-announcement-warning,
  .important-announcement-check {
    font-size: 16px;
  }

  .important-announcement-warning-icon,
  .important-announcement-check-icon {
    font-size: 16px;
  }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .important-announcement-box {
    font-size: 22px;
  }

  .important-announcement-icon {
    font-size: 20px;
  }

  .important-announcement-main {
    font-size: 14px;
  }

  .important-announcement-warning,
  .important-announcement-check {
    font-size: 14px;
  }

  .important-announcement-warning-icon,
  .important-announcement-check-icon {
    font-size: 14px;
  }
}








.countdown-timer-circles,
.tge-banner-inner {
  display: none;
}











/* heradr btn images */
.getbam-banner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.getbam-banner-row-2{
   gap: 40px !important;
}

.getbam-banner-row .getbam-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  height: 90px;
  width: auto;
}

.getbam-banner-row .getbam-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

.getbam-banner-row .getbam-icon:hover img {
  transform: scale(1.08);
}

.getbam-banner-row .getbam-icon-left{
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  height: 90px;
  width: 140px;
}

.getbam-banner-row .getbam-icon-left img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

.getbam-banner-row .getbam-icon-left:hover img {
  transform: scale(1.08);
}


@media (max-width: 600px) {
  .getbam-banner-row {
    gap: 10px;
    margin-top: 20px;
  }

  .getbam-banner-row .getbam-icon {
    height: 50px;
    width: 50px;
  }
  .getbam-banner-row .getbam-icon-left{
    height: 50px;
    width: 70px;
  }

  .getbam-banner-row .getbam-icon img {
    max-width: 100%;
    max-height: 100%;
  }

}

 /* x icon hide property */
/* .footersocial a:nth-child(2) {
  display: none;
}

.aboutfollow a:nth-child(3) {
  display: none;
} */




.getbam-banner-row-mobile {
  display: none;
}


/* Mobile view */
@media (max-width: 768px) {
  .getbam-banner-row-desktop {
    display: none;
  }
  .getbam-banner-row-mobile {
    display: flex; /* ya block, jo aapko chahiye */
    flex-direction: row; /* agar vertical chahiye */
    align-items: center;    /* center align */
    gap: 40px;
  }
}