:root {
  --primary-color: #141414;
  --secondary-color: rgb(60,255,159,1);
  --tertiary-color: #141414;
  --text-color: #ffffff;
  --text-color-d: #a9a9a9;
}

* {
  box-sizing: border-box;
}

*,
*:focus,
*:hover,
*:active,
*:before,
*:after {
  outline: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #424242;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

html {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

body {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: montserrat, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  background: var(--tertiary-color);
  color: #ffffff;
}

a {
  text-decoration: none !important;
  color: var(--text-color);
  border: 0;
  cursor: pointer;
  transition: 150ms ease 0s;
  user-select: none;
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

nav,
header,
.section-main,
footer {
  min-width: 100%;
  position: relative;
  display: block;
}

.grid-1,
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6,
.grid-7,
.grid-8,
.grid-9 {
  display: grid;
  grid-gap: 30px;
}

.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
  grid-template-columns: repeat(8, 1fr);
}

.navbar-in,
.header-in,
.section-in,
.footer-in {
  width: 100%;
  padding-left: 40px;
  height: 100%;
  margin-left: auto;
  max-width: 1500px;
  position: relative;
  padding-right: 40px;
  margin-right: auto;
}

nav {
  height: 100px;
  z-index: 10;
  position: absolute;
}

.navbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-l,
.navbar-m,
.navbar-r,
.social-icons {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}

.navbar-m {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
}

.site-logo:hover img {
  filter: drop-shadow(3px 3px 0px gray);
}

.site-logo img {
  transition: 120ms linear 0s;
}

.site-logo:hover {
  transform: scale(1.1);
}

.navbar-link,
.btn-primary,
.btn-secondary,
.footer-link {
  font-size: 14px;
  /* text-transform: uppercase; */
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  text-align: center;
  font-family: montserrat, sans-serif !important;
  transition: 150ms ease 0s;
}

.btn-secondary:hover {
  transform: translateX(5px);
}

.btn-primary {
  padding: 10px 30px;
  background: white;
  border: 2px solid white;
  color: var(--primary-color);
  border-radius: 200px;
  text-align: center;
  justify-content: center;
  font-weight: 700;
}

.navbar-link,
.footer-link {
  padding: 12px 18px;
  border-radius: 5px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  height: 40px;
  width: 40px;
  border-radius: 100px;
  border: 1px solid #333333;
}

.navbar-link:hover,
.social-icon:hover,
.footer-link:hover {
  background: #ffffff1a;
}

.btn-primary:hover {
  background: transparent;
  color: white;
}

header,
footer {
  padding-top: 100px;
  background-image: radial-gradient(circle at 10% 20%, #272727, #ffffff00 30%),
    radial-gradient(circle at 90% 90%, #272727, #ffffff00 40%);
  background-color: var(--primary-color);
  height: auto;
  background-size: 200% 100%;
  animation: gradientAnimation 11s ease infinite;
}

.section-main {
  padding: 120px 0;
  border-bottom: 1px solid #535353;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

header:before,
footer:before {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/logo.png) no-repeat;
  background-size: 120%;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.006;
}

/* header:after {
    background: var(--primary-color);
    content: "";
    position: absolute;
    width: calc(20vw + 100px);
    height: calc(100% - 100px);
    top: 100px;
    right: 0;
    border-radius: 30px 0 0 0;
} */
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 120px;
}

.header-container {
  width: clamp(200px, 100%, 900px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  justify-content: center;
  align-items: center;
}

.flex-row,
.review-line {
  display: flex;
  align-items: center;
  grid-gap: 30px;
  justify-content: center;
}

.review-line {
  grid-gap: 10px;
  margin: 0 auto;
  width: fit-content;
  border: 1px solid rgb(61, 61, 61);
  padding: 3px 18px 3px 18px;
  border-radius: 40px;
}
.review-line .stars{
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 3px;
}
.review-line img{
  max-width: 19px;
  height: 18px;
}

.stars {
  font-size: 14px;
  color: #fecb3d;
}

.header-container > .flex-row {
  margin: 10px 0;
  justify-content: center;
}

.header-container h1 {
  font-size: 53px;
  text-transform: uppercase;
  font-weight: 900;
}

.fa-spin {
  animation-duration: 8s;
}

.header-container h1 i {
  font-size: 44px;
  height: 37px;
  color: var(--secondary-color);
}

.header-container h1 span {
  padding: 0 13px;
  background: #1F543A;
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  font-style: italic;
}

p {
  font-size: 15px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.header-show {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-image {
  border-radius: 10px;
  max-width: 500px !important;
  background: #141414;
}

.header-image img {
  object-fit: cover;
  min-height: 500px;
  height: 100%;
  width: 500px;
}

.scroll-row {
  height: 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #212121;
  /* box-shadow: inset 0 -1px 0 #535353; */
}

.scroll-row:before {
  background: var(--primary-color);
  content: "";
  position: absolute;
  width: calc(20vw + 100px);
  height: 100%;
  right: 0;
  top: 0;
  border-radius: 0 0 0 30px;
  z-index: 1;
}

.scroll-row-in {
  font-size: 44px;
  white-space: nowrap;
  font-weight: 900;
  text-transform: uppercase;
  grid-gap: 20px;
  display: flex;
  align-items: center;
}

.scroll-row-in span {
  margin-right: 20px;
  letter-spacing: 2px;
}

#sports {
  background-image: radial-gradient(circle at 0% 90%, #272727, #ffffff00 30%),
    radial-gradient(circle at 100% 10%, #272727, #ffffff00 40%);
}

.sports-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
  padding: 30px;
}

.sports-card i {
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 9px;
  font-size: 32px;
}

.sports-card h3 {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.info {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(18, minmax(0, 1fr));
  position: relative;
  margin-top: 120px;
}

.info-l {
  grid-column: span 8;
  position: relative;
}

.info-r {
  grid-column-start: 10;
  grid-column-end: 19;
  position: relative;
}

.info-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 35px);
  max-height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ffffff14;
}

.info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-l-c {
  position: absolute;
  right: 0;
  bottom: 40px;
  padding: 2px;
  border-radius: 10px;
  transition: 180ms ease 0s;
}

.info-l-c-in {
  padding: 28px;
  background: #181818;
  box-shadow: 0 0 0 1px #535353;
  border-radius: 8px;
  z-index: 1;
  position: relative;
}

.info-l-c h4 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 21px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.info-r h2 {
  color: var(--text-color-b);
  font-size: 37px;
  font-weight: 900;
  line-height: 48px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.info-r h2 span,
.header-container h1 span {
  position: relative;
}

.info-r h2 span:before {
  content: "";
  width: 100%;
  height: 5px;
  background: linear-gradient(45deg, var(--secondary-color), transparent);
  border-radius: 10px;
  position: absolute;
  left: -5px;
  bottom: -5px;
  display: block;
}

.info-r .flex-row {
  margin-top: 20px;
}

#plans {
  background-image: radial-gradient(circle at 0% 90%, #272727, #ffffff00 30%),
    radial-gradient(circle at 85% 0%, #272727, #ffffff00 40%);
}
.feature{
  padding-top: 50px;
}
.title-set {
  display: block;
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.title-set.x {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title-set h3 {
  text-transform: uppercase;
  font-size: 33px;
  font-weight: 900;
}

.product-card {
  background: linear-gradient(323deg, #1e1e1e, #101010, #272727);
  border: 1px solid #3d3d3d;
  border-radius: 10px;
  position: relative;
  height: fit-content;
  min-height: 300px;
}

.product-card .btn-primary {
  border-radius: 4px;
}

.pc-header {
  position: relative;
  padding: 40px;
}

.pc-header .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.pc-header-l p {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
}

.pc-header-l h2 {
  font-size: 27px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

.pc-price {
  text-align: right;
}

.pc-price h4 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 32px;
}

.pc-price span {
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  color: #e5e5e5;
}

.pc-body {
  display: flex;
  flex-direction: column;
}

.pc-body p {
  line-height: 24px;
  padding: 15px 40px;
  border-top: 1px solid #ffffff12;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.pc-body p i {
  font-size: 20px;
  margin-right: 10px;
  width: 30px;
}

.pc-body p.extra {
  color: goldenrod;
}

.product-card.promoted .pc-body p {
  border-color: #494949;
}
.product-card .pc-body p:nth-child(4){
  font-size: 12px;

}

.product-card.promoted {
  border-color: var(--secondary-color);
  transform: translateY(-25px);
}

.product-card.promoted:before {
  width: 50%;
  content: "Client Favorite";
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  margin: auto;
  background: var(--secondary-color);
  height: 36px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  color: var(--primary-color);
}

.feature-card,
.review-card,
.success-card,
.sports-card {
  padding: 40px;
  background: linear-gradient(212deg, #1e1e1e, #101010, #272727);
  border-radius: 10px;
  border: 1px solid #3d3d3d;
  transition: 159ms ease 0s;
}

.feature-card{
  padding: 40px 20px;
}
.feature-card:hover,
.review-card:hover,
.success-card:hover,
.sports-card:hover {
  transform: translateY(-10px);
  border: 1px solid #7d7d7d;
}

.feature-card {
  text-align: center;
}

.feature-card i,
.sports-card i {
  min-width: 55px;
  width: 55px;
  height: 55px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: linear-gradient(128deg, #ffffff36, var(--primary-color));
  color: var(--secondary-color);
}

.feature-card h4 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.feature-card .flex-row {
  margin-bottom: 20px;
  grid-gap: 20px;
  justify-content: center;
}

.feature-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin: 12px 0;
  object-fit: cover;
}

.bet-img-single {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 16px auto 12px auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* new section */

.arbitrage-set .features-set {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.arbitrage-set .feature-card,
.arbitrage-set .feature-card-column .feature-card {
  border: 2px solid #b9b9b9 !important;
  flex: 1 1 23%;
  max-width: none;
}

.arbitrage-set .feature-card-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  flex: 1 1 23%;
  max-width: none;
}

@media (max-width: 768px) {
  .arbitrage-set .feature-card,
  .arbitrage-set .feature-card-column {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.wechat-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(99, 255, 169, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.wechat-badge img.wechat-icon {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}

.wechat-badge p {
  margin: 0;
  font-weight: 500;
}

.wechat-prefix {
  opacity: 0.75;
  margin-right: 4px;
}

.wechat-qr {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* When active, show it */
.wechat-badge.active .wechat-qr {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wechat-qr img {
  width: 150px;
  height: auto;
  display: block;
}

/* Hide the close button by default, only show on mobile/touch devices */
.wechat-close {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  display: none;
}

@media (hover: none) and (pointer: coarse) {
  .wechat-close {
    display: block;
  }
}

/* Desktop: show QR on hover */
@media (hover: hover) and (pointer: fine) {
  .wechat-badge:hover .wechat-qr {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}


.feature-footer {
  margin: 0 auto;
  margin-top: 60px;
  align-items: center;
  display: flex;
  justify-content: center;
}

#features {
  background-image: radial-gradient(circle at 0% 90%, #272727, #ffffff00 30%),
    radial-gradient(circle at 100% 10%, #272727, #ffffff00 40%);
}

.reviews-holder {
  max-width: 740px;
}

.reviews-holder .owl-stage-outer {
  overflow: hidden;
}

.review-card {
  margin: 10px 0;
  /* text-align: left; */
}

#reviews {
  background-image: radial-gradient(circle at 15% 0%, #272727, #ffffff00 30%),
    radial-gradient(circle at 90% 80%, #272727, #ffffff00 20%);
}

.review-card > p {
  padding: 20px 0;
}

.reviews-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-gap: 10px;
}

.pos-cred {
  padding: 4px 15px;
  background: #ffffff12;
  border-radius: 4px;
}

.reviews-card-footer p {
  line-height: 19px;
  font-size: 13px;
}

.reviews-card > i {
  font-size: 70px;
  position: absolute;
  top: -30px;
  right: 40px;
  color: #0c0e10;
  text-shadow: 2px 2px 0px #353535;
}

.success-img {
  width: 100%;
  border-radius: 10px;
  height: 400px;
  object-fit: cover;
}

.success-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

/* OWL */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 10px;
}

.owl-dot {
  width: 10px;
  height: 10px;
  background: #a7a7a7 !important;
  display: block;
  border-radius: 10px;
  transition: 150ms ease 0s;
  border: 0;
  padding: 0;
}

.owl-dot.active {
  background: var(--secondary-color) !important;
  transform: scale(1.3);
}

.owl-dots {
  position: absolute;
  bottom: -40px;
  right: 0;
}

.header-image .owl-stage-outer {
  overflow: hidden;
  border-radius: 10px;
}

.header-image .owl-item {
  justify-content: center;
  display: flex;
  align-items: center;
}

.owl-nav button {
  display: none;
  align-items: center;
  background: #3d3d3d;
  color: #ffffff;
  border: 1px solid #656565;
  font-size: 18px;
  border-radius: 30px;
  height: 40px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-nav {
  display: none;
  justify-content: space-between;
  margin-top: 10px;
  width: fit-content;
  grid-gap: 30px;
  margin-left: auto;
  margin-right: auto;
}

/* OWL */
#questions {
  background-image: radial-gradient(circle at -5% -20%, #2b2b2b, #ffffff00 50%),
    radial-gradient(circle at 120% 120%, #4d4d4d, #ffffff00 30%);
}

.support {
  overflow: hidden;
}

.faq-holder {
  margin-top: 80px;
}

.faq {
  display: block;
  position: relative;
  margin: 120px 0;
}

.faq-title-x {
  display: block;
}

.faq-title-x h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 10px;
}

.faq-row {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}

.faq-body {
  padding: 28px;
  background: linear-gradient(212deg, #1e1e1e, #101010, #272727);
  border: 1px solid #3d3d3d;
  cursor: pointer;
  border-radius: 10px;
}

.faq-title {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.faq-title i {
  color: #ffffff;
  display: flex;
  font-size: 13px;
  margin-right: 20px;
  align-items: center;
  justify-content: center;
  background: #474a4f;
  border-radius: 4px;
  border: 1px solid #6f6f6f;
  transition: 150ms ease 0s;
  padding: 6.5px;
}

.faq-body:hover .faq-title i {
  color: var(--secondary-color);
}

.faq-inf {
  margin-top: 20px;
  color: var(--text-color-d);
  display: none;
  transition: 150ms ease 0s;
  line-height: 30px;
  font-weight: 400;
}

.faq-body.active .faq-inf {
  display: block;
}

.faq-body.active .faq-title i {
  transform: rotate(45deg);
}

.faq-row:nth-child(odd) .faq-body:nth-child(odd) {
  border: solid 1px #ffffff21;
}

.faq-row:nth-child(even) .faq-body:nth-child(even) {
  border: solid 1px #ffffff21;
}

footer {
  height: auto;
  border-bottom: 8px solid var(--secondary-color);
  padding: 0;
}

.footer-in {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-content {
  max-width: 429px;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}

.site-logo {
  display: block;
  width: fit-content;
}

.footer-bod-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links > span {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-link {
  margin-left: -14px;
  padding: 8px 14px;
  font-weight: 500;
}

.footer-in.secondary {
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-in.secondary:before {
  content: "";
  background: radial-gradient(#414141, transparent 75%);
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.footer-in.secondary {
  display: flex;
  justify-content: space-between;
}

.footer-in.secondary .footer-links {
  flex-direction: row;
  grid-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-in.secondary .footer-links .footer-link {
  margin: 0;
}

.mobile-only {
  display: none !important;
}

.navbar-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  position: relative;
  background: content-box;
}

.navbar-mobile-btn:before {
  transform: translateY(-12px);
}

.navbar-mobile-btn:after {
  transform: translateY(12px);
}

.navbar-mobile-btn:before,
.navbar-mobile-btn:after,
.navbar-mobile-btn > i {
  width: 100%;
  border-radius: 1000px;
  height: 2.5px;
  background: #fff;
  content: "";
  position: absolute;
  transition: 350ms ease 0s;
  transform-origin: center;
}

.mobile-nav-open .navbar-mobile-btn:before {
  transform: rotate(45deg);
}

.mobile-nav-open .navbar-mobile-btn:after {
  transform: rotate(-45deg);
}

.mobile-nav-open .navbar-mobile-btn > i {
  width: 0;
}

.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 10;
  height: calc(100vh - 100px);
  background: #101010;
  width: 100%;
  transition: 150ms ease 0s;
  left: -100%;
}

.mobile-menu-in {
  padding: 30px;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  width: 100%;
  position: relative;
  background-image: radial-gradient(circle at 0% 90%, #272727, #ffffff00 30%),
    radial-gradient(circle at 100% 10%, #272727, #ffffff00 40%);
  border-top: 1px solid var(--secondary-color);
}

.mobile-menu-in .btn-primary {
  width: 100%;
  border-radius: 5px;
  background: #ffffff;
}

.mobile-nav-open .mobile-menu {
  left: 0;
}

.mobile-nav-open {
  overflow: hidden;
}

#signup {
  background: linear-gradient(144deg, #1e1e1e, #101010, #272727);
}

.subscribe-area {
  max-width: 700px;
  margin: 0 auto;
}

.subscribe-area .needsclick form {
  border-radius: 10px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.subscribe-area .needsclick form * {
  font-family: montserrat, sans-serif !important;
}

.subscribe-area .needsclick form h3,
.subscribe-area .needsclick form p {
  color: #ffffff !important;
}

.subscribe-area .go2206629520 {
  border: 1px solid #292929 !important;
  padding: 20px 10px !important;
}

.sports-holder {
  text-transform: uppercase;
}

button.owl-next {
  background: #e0563b;
}

.section-main {
  overflow: hidden;
}

.header-in {
  overflow: hidden;
}

input {
  color: white !important;
}

button.needsclick.go2151733121.kl-private-reset-css-Xuajs1 svg {
  fill: #676767 !important;
}

/* MODAL */
.modal {
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background: #00000054;
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: 150ms ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-in {
  background: var(--primary-color);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #424242;
  box-shadow: 13px 13px 40px -8px #e0563b2e;
  position: relative;
  transform: translateY(-50px);
  transition: 250ms ease 0s;
  text-align: center;
}

.close-form,
.close-popup {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 14px;
  transition: 100ms ease 0s;
}

.modal-in.active {
  transform: translateY(0px);
}

.close-form:hover,
.close-popup:hover {
  color: var(--secondary-color);
  transform: scale(1.05);
}

.modal-header {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.modal-header h2 {
  text-transform: uppercase;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: 1px;
}

.modal-header h3 {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 18px;
}

.modal-form {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-bar {
  height: 3px;
  background: #efefef3b;
  border-radius: 10px;
  width: clamp(200px, 60%, 380px);
  margin: 20px auto;
  position: relative;
}

.progress-bar span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  transition: 200ms ease 0s;
  background: var(--secondary-color);
}

.form-group {
  display: none;
}

.form-group.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  grid-gap: 20px;
}

.modal-footer {
  font-size: 13px;
  letter-spacing: 0;
}

.modal-footer i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.form-group h4 {
  font-size: 20px;
  font-weight: 700;
}

.form-group button,
.form-group .btn-row {
  width: 100%;
}

input[type="radio"] {
  display: none;
}

.form-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 15px;
}

.form-option {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-option label {
  cursor: pointer;
  border: 1px solid #383838;
  background: #181818;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 150ms ease 0s;
}

.form-option input:checked + label {
  border: 1px solid #e0563b;
  transform: scale(1.05);
  background: #1b1b1b;
}

.form-option label:hover {
  background: #1b1b1b;
  transform: scale(1.05);
}

form .error {
  margin-top: 20px;
  background: #231717;
  border: 1px solid #680000;
  font-size: 14px;
  padding: 5px 10px;
  text-align: center;
  width: 100%;
  border-radius: 4px;
  font-weight: 500;
}

.form-denied,
.form-success {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  grid-gap: 20px;
  max-width: 400px;
}

.form-denied i,
.form-success i {
  font-size: 33px;
}

.form-denied h3,
.form-success h3 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 21px;
}

.form-denied p,
.form-success p {
  color: var(--secondary-color);
  line-height: normal;
}

.modal-in .btn-row {
  display: flex;
  grid-gap: 20px;
  margin-top: 10px;
}

.flp-input {
  border: 1px solid #494949;
  font-family: montserrat, sans-serif !important;
  background: #262626;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

.modal-form button[type="submit"].loading:before {
  content: "Loading";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000;
  pointer-events: none;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.modal-form button[type="submit"].loading {
  pointer-events: none;
  cursor: none;
  background: black;
}

.iti__country-list {
  background-color: #141414 !important;
  border: none !important;
}

.popup-open {
  overflow: hidden;
}

.btn-primary.continue {
  animation: scaleAnimation 1000ms infinite;
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

.popup {
  position: fixed;
  bottom: 20px;
  left: -100%;
  z-index: 100;
  width: 380px;
  background: linear-gradient(212deg, #1e1e1e, #101010, #272727);
  border: 1px solid var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  transition: 450ms ease 0s;
}

.popup.active {
  left: 20px;
}

.popup-in {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  grid-gap: 10px;
}

.popup-in p {
  line-height: 26px;
}

.popup-in h4 {
  font-size: 22px;
  font-weight: 800;
}
/* ------------------------- CODE FOR ADDITIONS --------------------------- */
body{
  background-image: radial-gradient(circle at 10% 20%, #272727, #ffffff00 30%), radial-gradient(circle at 90% 90%, #272727, #ffffff00 40%);
    background-color: var(--primary-color);
}
.features-set{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1500px;
  width: 95%;
  margin: auto;
  padding: 50px 10px;
}
.features-set .feature-card{
  flex: 1;
  flex-basis: 270px;
  flex-grow: 1;
  height: auto;

}
input[type="range"] {
  -webkit-appearance: none;
  max-width: 400px;
  width: 100%;
  height: 12px;
  background: transparent;
  border: 2px solid rgb(61, 61, 61);
  border-radius: 10px;
  outline: none;
  margin-bottom: 24px;
  font-size: 22px;
}
input[type="range"]:hover{
  border: 2px solid var(--text-color-d);

}

/* Slider Thumb (WebKit Browsers - Chrome, Safari) */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  margin-top: 0px;

}

/* Firefox Thumb */
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}
.inputRange{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.weeklyOffer .mainHeading{
  font-size: 40px;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 20px;
}

.weeklyOffer{
  max-width: 740px;
  margin: auto;
  padding: 50px 10px;
}
.weeklyOffer .calcultionResut{
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  
}
.weeklyOffer .priBox:nth-child(1){
  width: 100%;
  flex: 1;
  width: 100%;
  margin-bottom: 20px !important;  
}
.weeklyOffer .plus{
  font-size: 40px;
  color: var(--text-color);
}
.weeklyOffer .priBox:nth-child(2){
  width: 100%;
  flex: 1;
  width: 100%;
  margin-bottom: 0px !important;  
}

.weeklyOffer .priBox:nth-child(3) h1{
  font-size: 20px;
}
.downBox .dcal{
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 671px) {
  .calcultionResut{
    flex-direction: column;
    gap: 0px !important;
  }
  .downBox .dcal{
    flex-direction: column;
  }
  .weeklyOffer .dBoxes{
    flex-basis: 0px !important;
  }
}

.weeklyOffer .priBox,
.weeklyOffer .downBox{
  /* display: flex; */
  margin-bottom: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.weeklyOffer .col-12{
  border: 1.5px solid #3d3d3d;
  padding: 50px 25px;
  border-radius: 10px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 8px 24px;
}
.weeklyOffer .flexHeading,
.weeklyOffer .input.value-A,
.weeklyOffer .progressBar,
.weeklyOffer .dBoxes{
  flex: 1;
  flex-basis: 200px;
}

.weeklyOffer .input.value-A{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #3d3d3d;
  padding: 4px 0px;
  border-radius: 20px;
  background-color: #151515;
}
.weeklyOffer .flexHeading,
.weeklyOffer .progressBar h1{
  font-size: 16px;
}
.weeklyOffer .flexHeading{
  margin-bottom: 10px;
}
@media screen and (max-width: 544px) {
  
.weeklyOffer .flexHeading,
.weeklyOffer .progressBar h1,.weeklyOffer .downBox h1{
  text-align: left;
  font-size: 26px;
  margin-bottom: 10px;
}
.weeklyOffer .downBox h1{
  margin-bottom: 0px !important;
}
.progressBar{
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}
input[type="range"]{
  margin: auto;
  margin-bottom: 20px;
  width: 256px;
}  
}

.weeklyOffer .progressBar h1{
  margin-bottom: 10px;
}

.weeklyOffer .value-A input{
  border: none !important;
  outline: none !important;
  background-color: transparent;
  font-size: 22px;

}
.weeklyOffer .value-A p,
.weeklyOffer .value-A input::placeholder{
  color: white;
  font-size: 22px;
  padding: 0px;
  text-align: center;

}
.weeklyOffer .value-A input{
  padding: 20px 0px;
  color: white;
  font-size: 22px;
  padding: 0px;
  text-align: center;
  width: 50px;
}


.weeklyOffer .downBox{
  margin-bottom: 0px;
  text-align: center;
  gap: 20px;
  align-items: end;
}
.weeklyOffer .dBoxes.borderBox h3{
  font-size: 22px;
  text-align: center;
  margin-bottom: 10px;
}
.weeklyOffer .downBox h1{
  font-size: 20px;
  text-align: left;
}
.weeklyOffer .dBoxes.borderBox p,
.weeklyOffer .dBoxes.borderBox h5{
  font-size: 18px;
  border-radius: 0px;
  font-weight: 500;
}

.weeklyOffer .dBoxes.borderBox {
  padding: 6px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #3d3d3d;
    border-radius: 20px;
    background-color: #151515;
    gap: 10px;
}
.weeklyOffer .dBoxes.borderBox:nth-child(2){
  border: 2px solid var(--secondary-color);
  background-color: #191919;
}
.weeklyOffer h6{
  margin: 0px;
  padding: 0px;
  margin-top: 20px;
}






@media screen and (max-width: 1024px) {
  .navbar-l,
  .navbar-r,
  header:after,
  .scroll-row:before {
    display: none;
  }

  .navbar-m {
    position: relative;
    margin: 0;
  }

  header,
  footer {
    height: auto;
  }

  .header-in {
    flex-direction: column;
    padding-bottom: 60px;
    grid-gap: 40px;
    flex-direction: column-reverse;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .header-container h1 {
    padding-top: 89px;
    font-size: 40px;
    line-height: 52px;
  }

  .header-container h1 i {
    font-size: 28px;
    height: 28px;
  }

  .site-logo img {
    height: 42px;
  }

  .flex-row {
    flex-direction: column;
  }

  .navbar-link,
  .btn-primary,
  .btn-secondary,
  .footer-link {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .review-line {
    /* display: block; */
    text-align: center;
    /* order: -1; */
    background: #141414;
    border: 1px solid #2b2b2b;
    margin-bottom: 20px;
    border-radius: 40px;
    padding: 0px 20px;
  }

  .stars {
    width: fit-content;
  }

  /* .review-line .stars {
    display: none;
  } */

  .header-image img {
    height: 300px;
    min-height: auto;
    width: calc(100vw - 60px) !important;
  }

  .header-image {
    width: calc(100vw - 60px) !important;
    max-width: max-content;
  }

  .header-container {
    display: flex;
    flex-direction: column;
  }

  .review-line p {
    font-size: 12px;
    line-height: 32px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .info {
    display: flex;
    flex-direction: column;
    grid-gap: 30px;
    margin-top: 0;
  }

  .info .info-l-c {
    display: none;
  }

  .info-img {
    border: 0;
    width: calc(100% + 70px);
    margin-left: -40px;
    margin-right: -40px;
    border-radius: 0;
  }

  .info-r h2 {
    font-size: 25px;
    line-height: 40px;
  }

  .title-set,
  .title-set.x,
  .title-set-l {
    display: flex;
    flex-direction: column;
    grid-gap: 30px;
  }

  .grid-1,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6,
  .grid-7,
  .grid-8,
  .grid-9 {
    grid-template-columns: 1fr;
  }
  .grid-4{
    display: flex;
    flex-wrap: wrap;
  }
  .grid-4 .feature-card{
    flex-basis: 300px;
    height: auto;
    flex-grow: 1;
  }
  .navbar-in,
  .header-in,
  .section-in,
  .footer-in {
    padding-left: 30px;
    padding-right: 30px;
  }

  .pc-header .top {
    flex-direction: column;
    grid-gap: 20px;
  }

  .pc-header,
  .pc-body p {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pc-header-l {
    text-align: center;
  }

  .product-holder {
    grid-gap: 30px;
  }

  .title-set h3 {
    font-size: 27px;
  }

  .footer-in {
    grid-template-columns: 1fr;
  }

  .footer-in.secondary {
    flex-direction: column;
    grid-gap: 20px;
    text-align: center;
  }

  .footer-bod-right {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-link {
    justify-content: flex-start;
    white-space: nowrap;
    width: auto;
  }

  .social-icons {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .features-set {
    padding-bottom: 40px;
    margin-top: 80px;
  }

  .mobile-only {
    display: flex !important ;
  }

  .product-card.promoted {
    transform: none;
  }

  .feature-card .flex-row {
    flex-direction: row;
  }

  .feature-card i {
    min-width: 45px;
    height: 45px;
  }

  .feature-card h4 {
    font-size: 18px;
  }

  .feature-card,
  .review-card {
    padding: 30px;
  }

  .feature-footer {
    margin: 0;
    width: 100%;
  }

  .feature-footer .review-line {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .section-main {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .sports-holder {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for mobile screens */
    display: grid;
    grid-auto-rows: minmax(min-content, 1fr);
    /* Makes rows equal height */
    gap: 10px;
    /* Space between grid items */
  }

.success-card {
    height: auto !important;
}
.spotlight-card {
    width: 100% !important;
}

  .success-card img {
    height: 100%;
  }

  .sports-card h3 {
    font-size: 17px;
    letter-spacing: 0.5px;
  }

  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
    /* 2 columns on mobile */
  }
    
.title-set.aos-init.aos-animate.spotlight-title {
    margin-top: 30px;
}
  .features-set {
    display: grid;
    grid-auto-rows: 1fr;
    /* Ensures each row takes up equal height */
    gap: 10px;
    /* Space between grid items */
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content horizontally */
    text-align: center;
    padding: 10px;
    /* Add some padding */
  }

  .popup {
    bottom: 0;
    width: 100%;
    border-left: 0;
    border-radius: 0;
    border-bottom: 0;
    border-right: 0;
  }

  .close-popup {
    right: 10px;
    top: 10px;
  }

  .popup.active {
    left: 0;
  }

  .modal-in {
    max-width: 90%;
  }

  .form-option {
    width: 100%;
  }

  .form-option label {
    width: 100%;
  }
  .spotlight {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .spotlight-card {
    display: block;
  }
}

.spotlight-card {
  width: 350px;
  height: 100%;
  text-align: left;
  padding: 25px;
}

.spotlight-card h4 {
  font-size: 25px;
  padding-bottom: 10px;
}

.spotlight-card .flex-row {
  justify-content: left !important;
}

.emoji {
  font-size: 50px;
  padding-bottom: 10px;
}

.success-text {
  padding-bottom: 15px;
}

.owl-dots {
    display: none;
}

.features-set.grid-3.spotlight {
    margin-top: 0;
}

.spotlight-title {
    margin-bottom: 0;
    grid-gap: 10px !important;
}

.feature-card.spotlight-card.aos-init.aos-animate {
border: 1px solid var(--secondary-color);
}

.success-card {
    height: 970px;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
}



.riskPrice .stats {

  display: flex;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 660px) {
  
.riskPrice .stats {
  padding: 40px 0px;
}
}

.riskPrice .stat {
  flex-basis: 250px;
  flex-grow: 1;

  /* background-color: #1f1f1f; */
  padding: 40px 30px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--text-color-d);
  display: flex;
  gap: 10px;
  /* align-items: center; */
  justify-content: center;
}

.riskPrice .stat .icon{
  flex: 1;
}

.riskPrice .stat .icon img {
  max-width: 40px;
}

.riskPrice .stat .content{
  flex: 6;
}


.riskPrice .stat h3 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
}


.riskPrice .stat p {
  font-size: 16px;
  color: white;
  font-weight: 700;
  line-height: 20px;
}

@media screen and (max-width: 768px) {
  
.riskPrice .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  
.riskPrice .stats {
    grid-template-columns: 1fr;
  }
}

/* Remove arrows in Chrome, Safari, Edge, and Opera */
.bankroll::-webkit-outer-spin-button,
.bankroll::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove arrows in Firefox */
.bankroll {
    -moz-appearance: textfield;
}

















.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  max-width: 790px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 50px;
}

.marquee p{
  font-size: 27px;
  text-align: center;
  margin-bottom: 28px;
  font-weight: 700;
}
@media screen and (max-width: 705px) {

  .marquee p{
    font-size: 20px;
  }
  
}
@media screen and (max-width: 548px) {

  .marquee p{
    font-size: 14px;
  }
  
}
.track {
  white-space: nowrap;
  will-change: transform;
  animation: marquee 12s infinite forwards;
  display: flex;
  gap: 30px;
}


.marquee img{
  width: 120px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


























.wrapper {
  display: grid;
  grid-template-columns: repeat(9,minmax(12vmin,1fr));
  justify-content: center;
  margin: auto;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(0,0,0,1) 10%,
    rgba(0,0,0,1) 90%,
    rgba(0,0,0,0)
  );

  & img {
    --time: 35s;
    position: relative;
    width: 100%;
    /* aspect-ratio: 1; */
    grid-column: 1;
    grid-row: 1;
    left: calc(100% * 9);
    animation: marquee var(--time) linear infinite;

    &:nth-of-type(1) { animation-delay: calc((var(--time) / 9) * (9 - 1) * -1); }
    &:nth-of-type(2) { animation-delay: calc((var(--time) / 9) * (9 - 2) * -1); }
    &:nth-of-type(3) { animation-delay: calc((var(--time) / 9) * (9 - 3) * -1); }
    &:nth-of-type(4) { animation-delay: calc((var(--time) / 9) * (9 - 4) * -1); }
    &:nth-of-type(5) { animation-delay: calc((var(--time) / 9) * (9 - 5) * -1); }
    &:nth-of-type(6) { animation-delay: calc((var(--time) / 9) * (9 - 6) * -1); }
    &:nth-of-type(7) { animation-delay: calc((var(--time) / 9) * (9 - 7) * -1); }
    &:nth-of-type(8) { animation-delay: calc((var(--time) / 9) * (9 - 8) * -1); }
    &:nth-of-type(9) { animation-delay: calc((var(--time) / 9) * (9 - 9) * -1); }
  }
}

@keyframes marquee {
  to {
    left: -100%;
  }
}
html{
  scroll-behavior: smooth;
}