/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxxl: 2560px;
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.featured-games {
  position: relative;
  z-index: 100;
  margin: clamp(80px, 72.5714285714px + 0.019047619 * 100vw, 100px) 0 clamp(52px, 39.3714285714px + 0.0323809524 * 100vw, 86px) 0;
}
.featured-games .sk-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 24px;
}
.featured-games__title {
  margin: 0 0 44px 0;
  text-transform: uppercase;
}
.featured-games .sk-btn {
  margin-top: clamp(44px, 37.3142857143px + 0.0171428571 * 100vw, 62px);
}
.featured-games-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 768px) {
  .featured-games-list {
    gap: 40px;
  }
}
.featured-games-item {
  display: flex;
  height: clamp(226px, 153.9428571429px + 0.1847619048 * 100vw, 420px);
  width: calc(50% - 50px + 25px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: clamp(22px, 15.3142857143px + 0.0171428571 * 100vw, 40px);
  filter: drop-shadow(0 10px 20px rgba(25, 33, 128, 0.29));
  box-shadow: 0 0 0 10px var(--sk-color-fourth-light);
}
@media (max-width: 768px) {
  .featured-games-item {
    width: 100%;
  }
}
.featured-games-item video {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.featured-games-item.goforreal video {
  -o-object-position: right;
     object-position: right;
}
.featured-games-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto auto 0 auto;
  border-radius: 60px;
  height: clamp(52px, 34.1714285714px + 0.0457142857 * 100vw, 100px);
}
.featured-games-item__icon picture,
.featured-games-item__icon img {
  position: relative;
  z-index: 2;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
}
.featured-games-item__icon::before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 60px;
  /* stylelint-disable-next-line max-line-length */
  background: linear-gradient(90deg, rgb(255, 89, 34) 0%, rgb(255, 172, 59) 15%, rgb(221, 215, 77) 35%, rgb(147, 226, 116) 55%, rgb(0, 213, 182) 70%, rgb(0, 169, 250) 85%, rgb(82, 113, 255) 100%);
}
