/* Font and Reset */
body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
}

.custom-header {
  background-color: #FFFFFF;
}

.logo-img {
  max-height: 100px;
}

.nav-link {
  color: #161616;
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  color: #8B5CF6;
}

.join-btn {
  background: linear-gradient(90deg, #8B5CF6, #3B82F6);
  color: #FFFFFF;
  border-radius: 5px;
  padding: 8px 18px;
  font-weight: 500;
  text-decoration: none;
}

.join-btn:hover {
  opacity: 0.9;
}

/* Hamburger Icon */
.navbar-toggler {
  border: none;
  background: none;
  outline: none;
  padding: 0;
  position: relative;
}

.hamburger {
  width: 26px;
  height: 2px;
  background-color: #161616;
  position: relative;
  display: block;
  transition: all 0.5s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: '';
  width: 26px;
  height: 2px;
  background-color: #161616;
  position: absolute;
  left: 0;
  transition: all 0.10s ease-in-out;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Transform hamburger to cross with rotation animation */
.navbar-toggler.open .hamburger {
  transform: rotate(45deg);
}

.navbar-toggler.open .hamburger::before {
  transform: rotate(90deg);
  top: 0;
}

.navbar-toggler.open .hamburger::after {
  opacity: 0;
}

/* Add rotation animation for the whole button when open */
.navbar-toggler.open {
  transition: transform 0.4s ease;
  transform: rotate(135deg);
}

/* Offcanvas Styling */
.offcanvas-header {
  border-bottom: 1px solid #ddd;
}

/* Menu links inside mobile offcanvas */
.offcanvas-body .nav-link {
  font-size: 18px;
  color: #161616;
  font-weight: 500;
}

.offcanvas-body .join-btn1 {
  margin-top: 10px;
}

/* Rotate close button on active click */
.offcanvas-header .btn-close {
  transition: transform 0.4s ease;
}

.offcanvas-header .btn-close:active {
  transform: rotate(360deg);
}

/* Banner Section */
.hero-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6);
  padding-top: 20px;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

/* Floating balls */
.hero-banner .ball {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: floatBall 6s ease-in-out infinite;
}

/* 3D Floating Balls */
.hero-banner .ball {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: floatBall 6s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Ball Variants with 3D effect using radial-gradient */
.hero-banner .ball1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, #7C4EF1, #130447);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero-banner .ball2 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 30%, #5B70F5, #130447);
  top: 70%;
  left: 15%;
  animation-delay: 2s;
}

.hero-banner .ball3 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, #6A5EF2, #130447);
  top: 30%;
  right: 10%;
  animation-delay: 4s;
}

.hero-banner .ball4 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, #4C4CF1, #2626C4);
  bottom: 10%;
  right: 5%;
  animation-delay: 1s;
}


@keyframes floatBall {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Banner Text Styles */
.hero-title {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
}

.hero-subtitle {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin-top: 15px;
}

/* Banner Buttons */
.sign-up-btn {
  background: #FFFFFF;
  color: #3B82F6;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
}

.get-app-btn {
  background: transparent;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
}

.sign-up-btn:hover,
.get-app-btn:hover {
  opacity: 0.85;
}

/* Banner Image */
.hero-image {
  max-width: 100%;
  height: auto;
}

/* Why Choose Section */
.choose-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.choose-heading {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 40px;
}

.choose-heading .gradient-text {
  background: linear-gradient(90deg, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Inter', sans-serif;
}

.diagram-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.diagram-svg {
  width: 100%;
  height: auto;
}

.logo-img1 {
  filter: drop-shadow(0 4px 15px #8B5CF666);
  border-radius: 16px;
}

.icon-img {
  filter: drop-shadow(0 4px 10px #8B5CF666);
  border-radius: 12px;
}

.icon-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  fill: #1F2937;
  font-weight: 700;
  font-style: italic;
}

/* Join Now Button */
.join-btn1 {
  background: linear-gradient(to right, rgb(59, 130, 246), rgb(139, 92, 246));
  border: none;
  color: rgb(255, 255, 255);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
  font-family: Inter, sans-serif;
}

.join-btn1:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* Apply ripple to logo image */
.logo-img1 {
  animation: ripple 2.5s infinite ease-in-out;
  transform-origin: center center;
}

/* Apply ripple to icon images */
.icon-img {
  animation: ripple 3s infinite ease-in-out;
  transform-origin: center center;
}

/* Section Background */
/* Section Background */
.tools-section {
  background-color: #F3F4F6;
  font-family: 'Inter', sans-serif;
}

/* Heading Styling */
.tools-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
}

.tools-heading .gradient-text {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tool Card Styles */
.tool-card {
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  border-radius: 20px;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  margin: 10px;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tool-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.tool-card h4 {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 5px;
}

.tool-card p {
  margin: 0;
  font-size: 0.95rem;
  font-family: 'outfit';
}

/* Join Now Button */
.join-btn {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  border: none;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.join-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* Section Background */
.rewards-section {
  background: linear-gradient(to bottom, #06A6FD00, #3B82F64D);
  font-family: 'Inter', sans-serif;
}

/* Heading Styling */
.rewards-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.rewards-heading .text-dark {
  color: #1F2937;
}

.rewards-heading .gradient-text {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Reward Card Base */
.reward-card {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.reward-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(59, 130, 246, 0.2);
}

.white-card {
  background-color: #FFFFFF;
  color: #3B82F6;
}

.purple-card {
  background-color: #8B5CF6;
  color: #FFFFFF;
}

/* Headings & Text */
.reward-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: left;
}

.reward-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  margin: 0;
  text-align: left;
  color: #161616;
}

/* Image Styles */
.reward-img {
  width: 350px;
  height: 350px;
  object-fit: contain;
}

.reward-img-bottom {
  width: 160px;
  height: 198px;
  object-fit: contain;
  position: relative;
  bottom: 8px;
  right: -225px;
}

.purple-card .reward-img-bottom.left {
  left: 0px;
  right: auto;
}

/* Text Align in Cards */
.purple-card h4,
.purple-card p {
  text-align: right;
  color: #FFFFFF;
}

/* Join Now for Reward Button */
.reward-btn {
  background: #FFFFFF;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reward-btn span {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Hover Effect */
.reward-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* Fade Animation Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade Card Base State */
.fade-card {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

/* Staggered Animation Delays */
.fade-card:nth-child(1) {
  animation-delay: 0.2s;
}

.fade-card:nth-child(2) {
  animation-delay: 0.4s;
}

.fade-card:nth-child(3) {
  animation-delay: 0.6s;
}

.fade-card:nth-child(4) {
  animation-delay: 0.8s;
}

.fade-card:nth-child(5) {
  animation-delay: 1s;
}

/* Section Background */
.brokers-section {
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

/* Heading Styling */
.brokers-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.brokers-heading .text-dark {
  color: #1F2937;
}

.brokers-heading .gradient-text {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sub-heading Styling */
.brokers-subtext {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: #161616;
}

/* Image Styling */
.brokers-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Button Styling */
.brokers-btn {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  color: #FFFFFF;
  padding: 14px 30px;
  border: none;
  border-radius: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Button Hover Effect */
.brokers-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* Section Background */
.getting-started-section {
  background: #F3F4F6;
  font-family: 'Inter', sans-serif;
}

/* Heading Styling */
.getting-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
}

.getting-heading .gradient-text {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Styling */
.start-card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.start-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.start-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 0 15px 0;
}

/* Card Headings */
.start-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 700;
  color: #161616;
  margin-top: 10px;
  text-align: left;
}

/* Card Sub Text */
.start-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #161616;
  margin-top: 8px;
  text-align: left;
}

/* Button Styling */
.start-btn {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  color: #FFFFFF;
  padding: 14px 30px;
  border: none;
  border-radius: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Button Hover Effect */
.start-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.faq-section {
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.faq-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.faq-heading .text-dark {
  color: #1F2937;
}

.faq-heading .gradient-text {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  background: #F3F4F6;
  border-radius: 8px;
  padding: 18px 25px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  display: none;
}

.faq-item.active {
  display: block;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  color: #1F2937;
  font-size: 1.1rem;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #1F2937;
}

.faq-answer {
  margin-top: 12px;
  display: none;
  font-family: 'Outfit', sans-serif;
  color: #161616;
  font-size: 1rem;
}

.faq-btn {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  color: #FFFFFF;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.cta-section {
  position: relative;
  background-color: #3B82F6;
  overflow: hidden;
  padding: 50px 20px;
  border-radius: 20px;
  margin: 100px;
  margin-top: -20px;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.floating-ball {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  background: linear-gradient(to bottom right, #3B82F6, #8B5CF6);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.6), 0 0 50px rgba(1, 28, 70, 0.4);
  animation: floatBall 10s infinite ease-in-out;
}


.ball1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.ball2 {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 80%;
  animation-delay: 2s;
}

.ball3 {
  width: 100px;
  height: 100px;
  top: 70%;
  left: 30%;
  animation-delay: 4s;
}

.ball4 {
  width: 60px;
  height: 60px;
  top: 35%;
  left: 60%;
  animation-delay: 6s;
}

.ball5 {
  width: 90px;
  height: 90px;
  top: 80%;
  left: 10%;
  animation-delay: 8s;
}

@keyframes floatBall {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-30px);
    opacity: 0.6;
  }
}

#techCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

/* Text & Button Styles */
.cta-heading {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.cta-subtext {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
}

.cta-btn {
  font-family: 'Outfit', sans-serif;
  background-color: #FFFFFF;
  color: #8B5CF6;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-section {
  background-color: #1F2937;
  margin-top: -150px;
  padding-bottom: 100px;
  z-index: -1;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  padding-top: 50px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.subscribe-form input {
  border-radius: 5px;
  padding: 10px 14px;
  border: none;
}

.subscribe-btn {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  color: #FFFFFF;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  transform: scale(1.03);
}

.footer-divider {
  border-color: #FFFFFF;
  opacity: 0.2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .footer-social {
  display: flex;
  gap: 5px;
}

.footer-social a.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  text-decoration: none;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.footer-social a.social-icon:hover {
  background: linear-gradient(to right, #3B82F6, #8B5CF6);
  color: #FFFFFF;
  border-color: transparent;
}


.copyright-text {
  font-size: 0.9rem;
}

/* App Badges */
.app-badges img {
  border-radius: 5px;
  cursor: pointer;
}

/* Icon adjustments */
.footer-social i {
  vertical-align: middle;
}





/* Responsive adjustments */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-banner {
    padding-top: 60px;
  }

  .choose-heading {
    font-size: 20px;
  }

  .tools-heading {
    font-size: 1.3rem;
  }

  .icon-label {
    font-size: 12px;
  }

  .diagram-svg {
    height: 380px;
  }

  .join-btn {
    margin-top: 20px;
    padding: 8px 22px;
  }

  .footer-section {
    margin-top: -60px;
  }

  .cta-section {
    margin: 20px;
    padding: 10px 10px;
  }
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
  .logo-img {
    max-height: 45px;
  }
}

/* RESPONSIVE STYLES */

/* Tablet (up to 991px) */
@media (max-width: 991px) {
  .rewards-heading {
    font-size: 2rem;
  }

  .reward-card {
    padding: 16px;
    flex-direction: column !important;
    text-align: center;
  }

  .reward-card h4 {
    font-size: 1.5rem;
    text-align: center;
  }

  .reward-card p {
    text-align: center;
    font-size: 0.9rem;
  }

  .reward-img {
    width: 250px;
    height: 250px;
    margin-top: 15px;
  }

  .reward-img-bottom {
    width: 120px;
    height: 140px;
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
    right: -188px;
  }

  .purple-card .reward-img-bottom.left {
    left: 0;
  }

  .reward-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .rewards-heading {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .brokers-heading {
    font-size: 1.3rem;
  }

  .getting-heading {
    font-size: 1.3rem;
  }

  .faq-heading {
    font-size: 1.3rem;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .reward-card {
    padding: 14px;
  }

  .reward-card h4 {
    font-size: 1.3rem;
  }

  .reward-card p {
    font-size: 0.85rem;
  }

  .reward-img {
    width: 200px;
    height: 200px;
  }

  .reward-img-bottom {
    width: 100px;
    height: 120px;
    margin-top: 15px;
    right: -180px;
  }

  .reward-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 430px) {

  .reward-img-bottom {
    width: 100px;
    height: 120px;
    margin-top: 15px;
    right: -280px;
  }

}

@media (max-width: 395px) {

  .reward-img-bottom {
    width: 100px;
    height: 120px;
    margin-top: 15px;
    right: -230px;
  }

}

@media (max-width: 376px) {

  .reward-img-bottom {
    width: 100px;
    height: 120px;
    margin-top: 15px;
    right: -225px;
  }

}

@media (max-width:1285px) and (min-width:1200px) {
  .reward-img-bottom {
    width: 100px;
    height: 120px;
    margin-top: 15px;
    right: -225px;
  }
}

@media (max-width:1200px) and (min-width:1000px) {
  .reward-img-bottom {
    width: 100px;
    height: 120px;
    margin-top: 15px;
    right: -170px;
  }

  .reward-img {
    width: 200px;
    height: 350px;
    object-fit: contain;
  }
}