* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Adjust the z-index as needed */
  background-color: rgba(0, 0, 0, 0.7); /* Background color when sticky */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optional: Add box shadow */
}

img {
  width: 100%;
}
/* Hide hamburger menu on screens wider than 768px */
@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }
  
  /* Show the navigation menu items */
  .navigation {
    display: flex !important; /* Display horizontally by default */
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .navigation li {
    margin-left: 10px; /* Adjust the spacing between menu items */
  }
}

/* Hamburger menu styles */
.hamburger-menu {
  display: block; /* Display hamburger menu by default */
  position: relative; /* Ensure proper positioning */
  z-index: 999; /* Ensure it's above other content */
  cursor: pointer; /* Change cursor to pointer for better usability */
}

/* Hide navigation menu items by default on smaller screens */
.navigation {
  display: none;
}

/* Show navigation menu items when hamburger menu is clicked */
.hamburger-menu:checked + .navigation {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
}

@media screen and (max-width: 768px) {
    .menu .navigation {
        display: none;
    }

    .menu .navigation:not(.hidden) {
        display: block;
    }
}
.head-logo {
    font-size: 24px; /* Adjust the font size as needed for wider screens */
}

@media screen and (max-width: 768px) {
    .head-logo {
        font-size: 18px; /* Adjust the font size for smaller screens */
    }
}
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-and-translator {
    display: flex;
    align-items: center;
}

.head-logo {
    font-size: 24px; /* Adjust the font size as needed for wider screens */
    margin-right: 10px; /* Add some space between the logo and the translator */
}

@media screen and (max-width: 768px) {
    .head-logo {
        font-size: 18px; /* Adjust the font size for smaller screens */
    }
}

body {
  /* Remove background-color */
  background-color: #141414;
  /* Set other styles */
  font-family: "good-times", sans-serif;
  font-weight: 500;
  font-style: normal;
  overflow-x: hidden;
  color: #FCFCFC;
  /* Ensure the background image covers the entire viewport */
  background-size: cover;
  background-position: center;
}

#video-bg {
  /* Set video to cover the entire page */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure the video is behind other content */
  object-fit: cover; /* Maintain aspect ratio while covering whole viewport */
}
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

table {
    width: 100%;
    border-collapse: separate; /* Allows for border spacing to work with rounded corners */
    margin: 20px 0;
    background-color: rgba(0, 0, 0, 0.8); /* Slightly darker for better contrast */
    color: #FCFCFC;
    border-radius: 10px; /* Rounded corners for the table */
    overflow: hidden; /* Ensures the inner elements do not overflow the rounded corners */
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #85BB65;
}

th {
    background-color: #85BB65;
    border-top-left-radius: 8px; /* Rounded corners for the first header */
    border-top-right-radius: 8px; /* Rounded corners for the last header */
}

tr:last-child td {
    border-bottom: none;
}

td {
    background-color: rgba(255, 255, 255, 0.1); /* Slight background for cells for legibility */
}

button.remove-btn {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px; /* Rounded corners for buttons */
}

button.remove-btn:hover {
    background-color: #c9302c;
}

.add-btn {
    display: inline-block;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #85BB65; /* Green background color */
    border: none;
    border-radius: 25px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transitions */
}

.add-btn:hover {
    background-color: #28a745; /* Slightly darker green on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Box shadow effect */
}

.add-btn:active {
    background-color: #218838; /* Even darker green on click */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Smaller shadow on click */
    transform: translateY(2px); /* Slight movement on click */
}

.add-btn:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 4px rgba(49, 176, 62, 0.4); /* Custom focus outline */
}

.container {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
}


.stat-container {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

h1, h2, h3 {
    text-align: center;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    width: 30%;
    text-align: center;
}
.token-logo2 {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    margin-left: 5px;
}
.token-logo {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-left: 5px;
}
@media (max-width: 600px) {
    th, td {
        padding: 5px; /* Smaller padding for smaller screens */
        font-size: 12px; /* Smaller font size for better readability */
    }
    .stat-box {
        width: 100%; /* Each box takes full width on small screens */
    }
    .add-btn, button.remove-btn {
        padding: 10px 5px; /* Adjust padding for smaller screens */
        font-size: 14px; /* Adjust font size for better readability */
    }
}
.progress-bar {
    position: relative; /* Needed for absolute positioning of the percentage */
    background-color: #000000; /* Light grey background */
    border-radius: 5px; /* Rounded corners for the container */
    width: 100%; /* Full width */
    height: 20px; /* Set the height */
    margin: 10px 0; /* Some margin for spacing */
}

.progress-bar > div:first-child {
    background-color: #85BB65; /* Green color for the progress */
    height: 100%; /* Full height of the container */
    border-radius: 5px; /* Rounded corners for the progress bar */
    transition: width 0.3s ease; /* Smooth transition for width change */
}

.percentage {
    position: absolute; /* Absolute positioning within the relative container */
    top: 0; /* Align to the top of the container */
    left: 0; /* Align to the left of the container */
    width: 100%; /* Span the full width of the container */
    line-height: 20px; /* Center text vertically */
    text-align: center; /* Center text horizontally */
    color: white; /* Text color */
    font-weight: bold; /* Bold text */
}

html {
  scroll-behavior: smooth;
}
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7); /* Transparent black background */
    padding: 20px;
    border-radius: 20px; /* More rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
}
.scrollable-content {
    max-height: 70%; /* Adjust this value as needed */
    overflow-y: auto;
}
.scrollable-content h3 {
    margin-top: 20px; /* Add spacing above headers */
}

.scrollable-content p {
    margin-bottom: 20px; /* Add spacing below paragraphs */
}
.popup-content {
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

.header-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 10px 10px;
  align-items: center;
  margin: 0 auto;
}
.banner-wrap {
  padding: 60px 0 60px;
}
.cat-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.font-h1 {
  font-size: 52px;
  font-weight: 700;
}
.font-h2 {
  font-size: 42px;
  font-weight: 700;
}
ul.navigation {
  list-style: none;
  display: flex;
  justify-content: end;
  column-gap: 10px;
  align-items: center;
}
p {
  font-size: 16px;
  line-height: 1.4;
}
p.disclaimer {
	font-size: 12px;
}
 .container {
      text-align: center; /* Center-align the text */
    }
.cat-btn {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 25px;
 }
 
 .cat-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #85BB65;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
 }
 
 .cat-btn span {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  font-family: "good-times"
 }
  .cat-btn-contracts span {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  font-family: "good-times"
 }
 .cat-btn svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #E1E1E1;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
 }
 
 .cat-btn:hover:before {
  width: 100%;
  background: #85BB65;
 }
 
 .cat-btn:hover svg {
  transform: translateX(0);
 }
 
 .cat-btn:active {
  transform: scale(0.95);
 }
 a.head-logo {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: #FFFFFF;
  letter-spacing: 2px;
  white-space: wrap;
}
.bannerlogo {
  max-width: 300px;
  margin: 20px auto;
}

.banner-row {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.bannerlogo img {
  filter: drop-shadow(0px 0px 15px #85BB65); /* Adjust duration and other properties as needed */
}

@keyframes pulsate {
  0% {
    filter: drop-shadow(0px 0px 15px #85BB65);
    opacity: 1;
  }
  100% {
    filter: drop-shadow(0px 0px 30px #85BB65); /* Increase shadow size for pulsating effect */
    opacity: 0.7; /* Adjust opacity for pulsating effect */
  }
}
.banner-row p {
  max-width: 480px;
  margin: 20px auto 40px;
}
.banner-row .cat-btn {
  margin: 10px;
}
.footer-row {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.footer-links a {
  color: rgb(0 0 0 / 80%);
  text-decoration: none;
  margin: 0 15px;
    display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #000;
}
.logo-slider-item img {
  filter: grayscale(1);
  max-width: 120px;
  height: 40px;
  object-fit: contain;
  margin: 20px;
}
.logo-slider-main {
  padding: 60px 0 60px;
}
.logo-slider-row {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.logo-slider:before {
  background: linear-gradient(90deg, #f5eddb, transparent);
  content: "";
  width: 10%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
}
.logo-slider:after {
  background: linear-gradient(270deg, #f5eddb, transparent);
  content: "";
  width: 20%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
}
a.uniswap {
  background-image: url("img/piteas-icon.png");
  right: 0px; /* Adjust the positioning */
}

a.pancakeswap {
  background-image: url("img/PulseX_X.png");
  right: 20px; /* Adjust the positioning */
}
a.website {
	right: 200px;
	color: white;
}
.cat-social {
  bottom: 0; /* Align to the bottom */
  right: 0px; /* Align to the right */
  margin: 10px; /* Add some margin for spacing */
}
a.cat-social {
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: 24px;
  display: inline-block;
  background-repeat: no-repeat;
  opacity: .7;
}

a.cat-social:hover {
  opacity: 1;
}
.faq-main {
  padding: 60px 0;
}

.faq-row {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  background-color: rgb(10 80 10 / 60%);
  border-radius: 20px;
  text-align: left;
  margin: 10px 0;
}

.faq-q {
  position: relative;
  font-size: 20px;
  cursor: pointer;
  font-weight: 500;
  padding: 20px 40px 20px 20px;
}

.faq-a {
  padding: 0px 20px 20px;
}
.faq-q:after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.4'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  background-position: center;
  content: "";
  position: absolute;
  right: 15px;
  bottom: 50%;
  transform: translateY(50%);
  transition: 0.5s;
}

.faq-row p {
  max-width: 300px;
  margin: 20px auto 40px;
}
.faq-q.active:after {transform: translateY(50%) rotate(315deg);}
.cta-boxs-row {
  display: grid;
  grid-template-columns: 46% 46%;
  column-gap: 8%;
}

.cta-box {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  padding: 40px;
  border-radius: 140px;
  box-shadow: 0 1px 3px 0 #85BB65;
  height: 100%;
  text-align: center;
}

.cta-count-1 {
  height: 100px;
  width: 120px;
  border-radius: 10px;
  background: #EDEBEB;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  padding: 10px;
  font-size: 60px;
  font-weight: 300;
  margin: -100px auto 50px;
  display: center;
  align-items: center;
  color: #85BB65enrod;
}
.cta-count-2 {
  height: 100px;
  width: 120px;
  border-radius: 10px;
  background: #EDEBEB;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  padding: 10px;
  font-size: 60px;
  font-weight: 300;
  margin: -100px auto 50px;
  display: center;
  align-items: center;
  color: firebrick;
}
.cta-count-3 {
  height: 100px;
  width: 120px;
  border-radius: 10px;
  background: #EDEBEB;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  padding: 10px;
  font-size: 60px;
  font-weight: 300;
  margin: -100px auto 50px;
  display: center;
  align-items: center;
  color: green;
}
.cta-count-4 {
  height: 100px;
  width: 120px;
  border-radius: 10px;
  background: #EDEBEB;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  padding: 10px;
  font-size: 60px;
  font-weight: 300;
  margin: -100px auto 50px;
  display: center;
  align-items: center;
  color: #85BB65enrod;
}
.cta-boxs-main {
  padding: 120px 0 60px;
}
.font-h3 {
  font-size: 24px;
  font-weight: 500;
}

.cta-box p {
  margin: 20px auto 0;
  max-width: 400px;
  font-family: "good-times";
}
.what-is-cat-main {
  padding: 60px 0;
}

.what-is-cat-row {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.what-is-cat-row h2 {
  margin-bottom: 20px;
}
.copy-code-main {
  padding: 60px 0 120px;
}

.copy-code-row {
  text-align: center;
}

.copy-code-row p {
  margin: 20px 0 30px;
}
input.text-to-copy {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  margin: 5px 0 15px;
  max-width: 450px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid #85BB65;
  pointer-events: none;
}

.copy-text .label {
  font-size: 24px;
  font-weight: 700;
  color: #85BB65;
}
.token-boxs-col {
  grid-template-columns: 25% 25% 25% 25%;
  column-gap: 10%;
  row-gap: 10px;
  margin-top: 40px;
    display: flex;
  justify-content: center;
	
}

.token-box {
    background-color: rgba(133 187 101 /0.6);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
    text-align: center;
    position: relative;
    width: 200px;
    height: 180px;
}
.token-icon-1 {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: goldenrod;
  margin-top: 5px;
}

/* Target the <i> element for Font Awesome icons */
.token-icon-1 i {
  font-size: 50px; /* Adjust font size as needed */
}
.token-icon-2 {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2BC02B;
}

/* Target the <i> element for Font Awesome icons */
.token-icon-2 i {
  font-size: 50px; /* Adjust font size as needed */
}
.token-icon-3 {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: firebrick;
}

/* Target the <i> element for Font Awesome icons */
.token-icon-3 i {
  font-size: 50px; /* Adjust font size as needed */
}
.token-icon-4 {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: goldenrod;
  margin-top: 5px;
}

/* Target the <i> element for Font Awesome icons */
.token-icon-4 i {
  font-size: 50px; /* Adjust font size as needed */
}

.token-boxs-main {
  padding: 60px 0;
}

.token-boxs-row .font-h1 {
  text-align: center;
  margin-bottom: 40px;
}

.token-box:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  background-color: rgb(204 163 73 / 10%);
  border-radius: 30px;
  z-index: -1;
  top: 0;
  transition: 0.6s;
  max-width: 100%;
  max-height: 100%;
}

.token-box:hover:before {
  width: 500px;
  height: 500px;
}
.copy-logos {
  display: flex;
  column-gap: 15px;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.copy-logos img {
  max-width: 150px;
}
.copy-code-col > .cat-btn {
    margin: 10px;
}
.token-boxs-row p {
  text-align: center;
  max-width: 650px;
  margin: 30px auto 0;
  margin-bottom: 20px;
}
.banner-social {
  margin-top: 20px;
}

.banner-social 
a.cat-social {
  width: 60px;
  height: 60px;
  background-size: 45px;
}
.banner-col1 .font-h3 {
  margin: 20px 0;
}
a.trade-btn-item {
  background-position: calc(100% - 10px) 50%;
  background-size: 30px 25px;
  display: inline-block;
  background-repeat: no-repeat;
  padding: 15px 55px 15px 15px;
  border: 2px solid #85BB65;
  border-radius: 30px;
  margin: 15px 5px;
  color: #85BB65;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}
a.trade-btn-item.bitforex {
  display: block;
  max-width: 160px;
  margin: 15px auto;
}
a.btn-buy {
  background-color: rgba(0, 0, 0, 0.8); /* Transparent black background */
  background-position: calc(100% - 10px) 50%;
  background-size: 33px;
  display: inline-block;
  background-repeat: no-repeat;
  padding: 20px 65px 20px 25px;
  border: 2px solid #85BB65;
  border-radius: 40px;
  margin: 15px 5px;
  color: #85BB65;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}
.container.goog {
  display: flex; /* Ensure anchor and dropdown are on the same line */
  align-items: center; /* Vertically center items */
  padding-right: 20px; /* Add padding to the right to create space between the anchor and the dropdown */
}
select.goog-te-combo {
  border: 2px solid #85BB65;
  background-color: transparent;
  padding: 5px 10px;
  border-radius: 20px;
  color: #E1E1E1;
  font-family: "good-times";
}
a.chart-btn {
  display: inline-flex;
  align-items: center; /* Align items vertically */
  padding: 5px 15px; /* Adjust padding */
  margin: 15px 5px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #85BB65;
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.8);
}

a.chart-btn i {
  margin-left: 5px; /* Adjust margin */
}

a.chart {
  background-size: 18px;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 5px;
  color: #85BB65;
}

.social-icons .social-icon {
  color: #FFFFFF; /* White color */
  position: relative;
  padding: 5px;
}

/* Optional: Increase the size of the icons */
.social-icons .social-icon i {
  font-size: 28px;
}

.how-to-banner-row {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.how-to-banner-row p {
  margin: 20px 0;
}
.how-to-steps {
  display: grid;
  grid-template-columns: repeat(2 , calc(50% - 20px));
  gap: 40px;
  margin-top: 40px;
}

.how-to-step-item img {
  height: 140px;
  width: 140px;
  display: block;
  object-fit: contain;
}

.how-to-step-item h4 {
  margin: 20px 0;
}

.how-to-step-item {
  border-radius: 30px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust the alpha value for transparency */
}

.how-to-steps-wrap {
  padding: 80px 0;
}
.copy-add-wrap {
  border-radius: 30px;
  border: 2px solid #85BB65;
  background-color: #FFFFFF;
  margin: 20px auto;
  display: flex;
  max-width: 550px;
  overflow: hidden;
}
input#selectedValue {
width: calc(100% - 180px);
border: none;
font-weight: 700;
letter-spacing: 0.2px;
border-left: 2px solid #85BB65;
padding: 10px;
cursor: pointer;
outline: none;
text-align: left;
}

select#addressDropdown {border: none;-webkit-appearance:     none;-moz-appearance:        none;-ms-appearance:         none;-o-appearance:          none;appearance:             none;width: 180px;padding: 10px;outline: none;cursor: pointer;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M435.658 228.913L251.656 404.907C243.922 412.313 233.953 416 224 416S204.078 412.313 196.344 404.907L12.342 228.913C-3.611 213.633 -4.174 188.321 11.092 172.353C26.373 156.354 51.686 155.854 67.655 171.103L224 320.66L380.345 171.103C396.314 155.822 421.627 156.385 436.908 172.353C452.174 188.321 451.611 213.633 435.658 228.913Z' style='&%2310; fill: %2331B03E;&%2310;'/%3E%3C/svg%3E");background-repeat: no-repeat;background-position: right center;background-size: 18px;font-weight: 700;font-size: 18px;margin-right: 10px;background-color: #FFFFFF;}
.sticker-gallery a {
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 10px;
  break-inside: avoid;
  transition: 0.1s;
}
.sticker-gallery a:hover {
    transform: scale(1.2);
}
.sticker-gallery img {
  grid-row: 1 / -1;
  grid-column: 1;
}
.sticker-gallery {
  column-count: 5;
  column-gap: 10px;
  min-height: 80vh;
  margin: 60px 0;
}
.details-container {
  margin-top: 20px;
}
.options-container {
  margin-top: 20px;
}
#fullImage {
  max-width: 600px;
  max-height: 600px;
  object-fit: contain;
}
#imageTags span {background-color: rgb(204 163 73 / 20%);padding: 10px 20px;display: block;border-radius: 8px;}
#imageTags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  font-weight: 700;
  border-top: 1px solid #85BB65;
  border-bottom: 1px solid #85BB65;
  padding: 20px 0;
  justify-content: center;
}
.single-sticker-main {
  min-height: 80vh;
}
.back-stickers svg {
  margin-right: 10px;
  margin-left: 0;
}

.back-stickers {
  margin-bottom: 30px;
}
.image-container {
  text-align: center;
  margin-bottom: 40px;
}
.options-container {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home-sticker-gallery a img {
  width: 240px;
  height: 200px;
  margin: 0 20px;
  object-fit: contain;
}
.stickers-main {
  text-align: center;
  padding: 60px 0;
}

.home-sticker-gallery {
  margin: 40px 0;
}
.pagination-button {
  margin: 5px;
  padding: 5px;
  background-color: transparent;
  border: 1px solid #85BB65;
  color: #F0B625;
  font-weight: 700;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  cursor: pointer;
}

.pagination-button.active {
  background-color: #85BB65;
  color: #f5eddb;
}
@media (max-width:768px) {
  .menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    margin: 6px 0;
}
.menu-btn {
  width: 50px;
  margin: 0 0 0 auto;
  padding: 0 10px;
}
 /* .menu {
  display: none;
  position: absolute;
  right: 0;
  top: 70px;
  padding: 20px 20px 60px;
  width: 100%;
  background-color: #fff;
  z-index: 99;
} */
 navigation {
  position: sticky;
} 
.font-h1 {
  font-size: 36px;
  font-family: "good-times";
}

.font-h2 {
  font-size: 28px;
	font-family: "good-times";
}

p {
  font-size: 16px;
	font-family: "good-times";
}
.cta-boxs-row {
  grid-template-columns: 100%;
  row-gap: 100px;
}

.token-boxs-col {
  grid-template-columns: 100%;
  position: absolute;
  justify-content: center;
  
}

.banner-wrap , .what-is-cat-main , .faq-main , .token-boxs-main , .logo-slider-main{
  padding: 30px 0;
}

.cta-boxs-main {
  padding: 60px 0 30px;
}
.copy-code-main {
  padding: 30px 0 60px;
}
.cat-btn span {
  font-size: 14px;
	font-family: "good-times";
}
.header-row {
  padding: 10px 10px;
}
select.goog-te-combo {
  font-size: 12px;
  max-width: 120px;
}
.how-to-steps {
  grid-template-columns: 100%;
}
}

@media (max-width:520px) {
  .gt-btn {
    position: absolute;
    top: 5px;
    right: 5px;
}

ul.navigation {
    justify-content: space-between;
    margin-top: 10px;
}
.header-row {
  grid-template-columns: 100%;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .banner-wrap {
    padding: 40px 0 40px;
  }
  .font-h1 {
    font-size: 36px;
  }
  .font-h2 {
    font-size: 32px;
  }
  .banner-row p {
    max-width: 380px;
  }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .banner-wrap {
    padding: 60px 0 60px;
  }
  .font-h1 {
    font-size: 48px;
  }
  .font-h2 {
    font-size: 38px;
  }
  .banner-row p {
    max-width: 480px;
  }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .banner-wrap {
    padding: 80px 0 80px;
  }
  .font-h1 {
    font-size: 52px;
  }
  .font-h2 {
    font-size: 42px;
  }
  .banner-row p {
    max-width: 600px;
  }

}
}
