html {
  font-size: 10px;
}

:root {
  --clr-yellow: #ffac0b;
  --clr-btn: #ff6d1b;
  --clr-accent: #f37603;
  --clr-body: #4b4b4b;
  --clr-grey: #2b2828;
  --clr-lightblue: #d4f0ff;
  --clr-iceblue: #e0fbff;
  --clr-lightbg: #fefefe;
  --clr-offwhite: #f8f8f8;
  --clr-lightyellow: #ffeab7;
  --clr-white: #fff;
  --clr-hawkesBlue: #c9f1ff;
  --clr-bodybg: #fffcf4;
  --clr-green: #cfd2b0;
  --clr-orange: #fff2d1;
  --clr-cream: #ffe5a5;
  --clr-brown: #977d3e;
  --clr-lightgrey: #777777;
  --clr-darkgreen: #626b00;
  --clr-black: #232323;

  /* font sizes */

  --fs-700: 4rem;
  --fs-600: 3.6rem;
  --fs-500: 2.2rem;
  --fs-300: 1.6rem;
  --fs-body: 1.6rem;
  --fs-btn: 1.6rem;

  --fw-bolder: 800;
  --fw-bold: 700;
  --fw-semibold: 600;
  --fw-medium: 500;
  --fw-regular: 400;

  /* font family */
  --ff-main: "Poppins", sans-serif;
}

body {
  font-family: var(--ff-main);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  /* line-height: 1.4; */
  color: var(--clr-body);
  background: var(--clr-bodybg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-main);
  line-height: 1.4;
  margin: 0;
  font-weight: var(--fw-bolder);
}

a,
a:hover {
  text-decoration: none;
}

a {
  color: var(--clr-accent);
  transition: 0.5s;
}

a:hover {
  color: var(--clr-yellow);
}

p {
  letter-spacing: 0.2px;
}

.btn,
.btn:hover,
.btn:active,
.btn:focus {
  outline: none;
  box-shadow: none;
}

.text-yellow {
  color: var(--clr-yellow);
}

.text-orange {
  color: var(--clr-accent);
}

.blue-bg {
  background: var(--clr-lightblue);
}

.bg-ice {
  background: var(--clr-iceblue);
}

.yellow-bg {
  background: var(--clr-lightyellow);
}

.bg-green {
  background: var(--clr-green);
}

.overflow-hidden {
  overflow: hidden;
}

.section-padding {
  padding: 8rem 0;
}

.section-heading {
  font-size: var(--fs-600);
  font-weight: var(--fw-bold);
  color: var(--clr-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* banner css */

.banner_section {
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  background: #160300e5;
}

.h1_heading {
  font-family: var(--ff-main);
  color: var(--clr-white);
  font-size: var(--fs-700);
  font-weight: var(--fw-bold);
  margin-bottom: 20px;
  max-width: 17ch;
}

.h3_heading {
  color: var(--clr-body);
  font-size: var(--fs-500) !important;
  font-weight: var(--fw-medium);
}

.banner_text {
  font-family: var(--ff-main);
  color: var(--clr-offwhite);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  margin-bottom: 20px;
}

.cta-btn {
  background: var(--clr-btn);
  color: var(--clr-white);
  font-size: var(--fs-btn);
  font-weight: var(--fw-medium);
  border-radius: 5.7rem;
  padding: 1.5rem 3.2rem;
  line-height: 1.6;
  margin-top: 1rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.cta-arrow svg {
  transform: translateX(0px);
  transition: 0.5s;
  margin-left: 8px;
}

.cta-btn:hover,
.cta-btn:active {
  color: var(--clr-white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transform: translateY(-2px);
}

.cta-btn:hover .cta-arrow svg,
.cta-btn:active .cta-arrow svg {
  transform: translateX(10px);
}

.services_Section {
  background: var(--clr-lightyellow);
}

.blog-section .splide__pagination__page.is-active {
  border-radius: 50%;
  background: #00a79f !important;
  border: 1px solid transparent;
  transform: none;
  outline: none;
}

.blog-section .splide__pagination__page {
  height: 15px;
  width: 15px;
  border: 1px solid #00a79f;
  background: #fff;
}

.blog-section .splide:not(.is-overflow) .splide__pagination {
  display: block;
  text-align: center;
}

.blog-section .splide__pagination {
  bottom: -1.7rem;
}

.blog-card {
  flex-direction: column;
  display: flex;
  height: 100%;
}

.blog-card:hover .blog-image {
  filter: brightness(70%);
}

.blog-title {
  margin-top: 0;
  font-size: var(--fs-400);
  font-weight: var(--fw-semibold);
  color: #4b4b4b;
  margin-bottom: 5px;
}

.blog-title a {
  color: #4b4b4b;
}

.exerpt {
  margin-bottom: 25px;
}

.readmore-btn {
  background-image: linear-gradient(117deg, rgb(255, 88, 35), rgb(255, 153, 0));
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-size: var(--fs-body);
  margin-top: auto;
  align-self: flex-start;
  transition: border-radius 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  padding: 9px 15px;
  color: #fff;
  line-height: inherit;
}

.readmore-btn:hover {
  border-radius: 0 15px;
  color: #fff;
}

.blog-image {
  width: 100%;
  margin-bottom: 20px;
  transition: 0.5s;
  border-radius: 10px;
}

/* blog css end */

/* portfolio css start */

.btn-group,
.btn-group-vertical {
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: #f1f1f1;
  color: #262626;
  margin: 0 10px 8px;
  border-radius: 2px;
  padding: 6px 12px;
  font-size: var(--fs-body);
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: #f47412;
}

/* carousel css */


/* ==============================
   CAROUSEL LAYOUT
================================ */
.main-carousel {
  height: 70vh;
}

.carousel {
  padding: 20px;
  perspective: 2000px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.carousel > * {
  flex: 0 0 auto;
}

/* ==============================
   FIGURE / SLIDES
================================ */
.carousel figure {
  margin: 0;
  width: 30%;
  height: 50vh;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  position: relative;
}

/* NORMAL IMAGES */
.carousel figure img {
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 0 10px;
  display: block;
}

/* STACK ALL SLIDES */
.carousel figure img:not(:first-of-type),
.carousel figure > .thumb-3d:not(:first-of-type) {
  position: absolute;
  left: 0;
  top: 0;
}

/* ==============================
   3D THUMBNAIL SUPPORT
================================ */
.carousel figure > .thumb-3d {
  position: absolute;
  inset: 0;
  padding: 0 10px;
  box-sizing: border-box;
  display: block;
}

/* FIRST ITEM VISIBLE */
.carousel figure > .thumb-3d:first-child {
  position: relative;
}

/* IMAGE INSIDE 3D WRAPPER */
.carousel figure > .thumb-3d img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* ==============================
   PLAY BUTTON
================================ */
.play-3d {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.thumb-3d:hover .play-3d {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}

/* ==============================
   CAROUSEL NAV
================================ */
.carousel nav {
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

.carousel nav button {
  flex: 0 0 auto;
  margin: 0 5px;
  cursor: pointer;
  color: white;
  background: orangered;
  border: none;
  border-radius: 50%;
  padding: 5px 10px;
  outline: none;
}

/* ==============================
   MODAL
================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 13;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100dvw;
  height: 100dvh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content */
.modal-content {
  margin: auto;
  display: block;
  width: 60%;
  animation: zoom 0.6s;
}

#modal__nav {
  position: absolute;
  top: 40%;
  width: 100%;
}

.modal__prev {
  float: left;
  margin-left: 20px;
}

.modal__next {
  float: right;
  margin-right: 20px;
}

/* ==============================
   CLOSE BUTTON
================================ */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  transition: 0.3s;
}

.close:hover {
  color: #bbb;
  cursor: pointer;
}

/* ==============================
   ANIMATIONS
================================ */
@keyframes zoom {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ==============================
   SECTION FIX
================================ */
.portfolio-section.section-padding {
  padding-bottom: 2rem;
}

/* Required so pseudo-element can position */
/* .carousel figure img.has-3d {
  position: relative;
} */

/* Play button overlay */
.carousel figure img.has-3d::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin-left: -32px;   /* half width */
  margin-top: -32px;    /* half height */

  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;

  font-size: 28px;
  line-height: 64px;    /* vertical centering */
  text-align: center;

  pointer-events: none;
  z-index: 2;
}

/* Hover polish */
.carousel figure img.has-3d:hover::after {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}

/* portfolio css end */

.fancybox-content {
  background: transparent !important;
}

.hide {
  /* display: none; */
  opacity: 0;
}

.showCard {
  animation: fadeIn 0.5s ease;
  opacity: 1;
}

.btn-group,
.btn-group-vertical {
  flex-wrap: wrap;
  justify-content: center;
}

/* scroll to top */
.gotop {
  position: fixed;
  left: auto;
  top: auto;
  right: 0;
  bottom: 20px;
  width: 31px;
  height: 31px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding-top: 0;
  border-radius: 80px;
  background-color: #f47412;
  background-image: url("../img/gotop.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto;
  z-index: 10;
  cursor: pointer;
  display: none;
}

.gotop:hover {
  background-color: #000;
}

/* testimonials css */

.testimonials {
  background-color: #d7dabe;
  overflow: hidden;
}

.t_quotes {
  background: url("../img/t_quotes.png") no-repeat;
  top: -5px;
  left: -51px;
  height: 130px;
  background-size: contain;
  width: 146px;
}

.t_heading {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.testimonials #nav-tabContent {
  padding: 2.2rem;
}

.testimonials_wrapper {
  background: #fff;
  border-radius: 16px;
  padding-top: 1.2rem;
  position: relative;
  box-shadow: 0px 6px 8px 0px #00000026;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 2rem;
}

.testimonials_wrapper .nav-tabs {
  border-bottom: 0;
  border-top: 1px solid #e7e7e7;
}

.testimonials_wrapper .nav-link {
  padding: 1.2rem 0.5rem;
  color: #6b6b6b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.testimonials_wrapper .nav-tabs .nav-item {
  margin-bottom: 0;
}

.testimonials_wrapper .nav-tabs .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-right-color: #e7e7e7;
  flex: 1;
  text-align: center;
}

.testimonials_wrapper .nav-tabs .nav-link:first-child {
  border-bottom-left-radius: 16px;
}

.testimonials_wrapper .nav-tabs .nav-link:last-child {
  border-bottom-right-radius: 16px;
}

.testimonials_wrapper .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent #ededed #ededed #ededed;
  background-color: #ffeadc;
  color: #21262b;
}

.testimonials_wrapper .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #21262b;
  background-color: #ffeadc;
  border-color: transparent #ededed #ededed transparent;
}

.t_shapes {
  position: absolute;
  display: inline-block;
}

.t_name {
  font-weight: 700;
  font-size: 20px;
}

.t_content {
  padding-left: 42px;
  min-height: 148px;
}

.t_content::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  background: url("../img/quotes.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  height: 22px;
  width: 22px;
}

.t_content::after {
  content: "";
  position: absolute;
  top: 53px;
  right: calc(100% - 12px);
  height: 62%;
  width: 2px;
  background: #585858;
}

/* end testimonial css */

/* faq css */

.hiddentext {
  display: none;
}

.readMoreText-btn {
  background: transparent;
  color: var(--clr-accent);
  padding: 0;
  vertical-align: baseline;
}

.accordion-wrapper .card {
  border-radius: 2.5rem;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.25rem;
}

.accordion-wrapper .card-header {
  padding: 3.2rem 4.7rem;
  margin-bottom: 0;
  background-color: transparent;
  border-bottom: 0;
}

.question {
  color: #121111;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.8rem;
  font-weight: var(--fw-medium);
}

.btn-link:hover,
.btn-link:focus {
  text-decoration: none;
  color: inherit;
}

.question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  white-space: normal;
  text-align: left;
}

.faq-answer {
  font-size: var(--fs-body);
  margin-bottom: 0;
  font-weight: 400;
  padding: 0 4.7rem 3.2rem;

}

.accordion-icon .arrow-down {
  border: solid #666666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(224deg);
  -webkit-transform: rotate(224deg);
}

.arrow-down {
  transition: all 0.3s ease;
}

.question-btn.collapsed .arrow-down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* scroll effects css */

.fade-in {
  opacity: 0;
  transition: opacity 400ms ease-in;
}

.fade-in.appear {
  opacity: 1;
}

.from-bottom {
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
}

.from-left {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.from-right {
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.from-bottom,
.from-right,
.from-left {
  transition: opacity 250ms ease-in, -webkit-transform 500ms ease-in;
  transition: opacity 250ms ease-in, transform 500ms ease-in;
  transition: opacity 250ms ease-in, transform 500ms ease-in,
    -webkit-transform 450ms ease-in;
  opacity: 0;
}

.from-bottom.appear,
.from-right.appear,
.from-left.appear {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.scroll_effect {
  animation: slide-up 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-box-left {
  padding: 1.5rem 2.8rem 1rem 1.2rem;
  margin-top: -15px;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.service-box-right {
  margin-top: -15px;
  padding: 1.5rem 1.2rem 1rem 3.5rem;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.service-box-left.left-down {
  clip-path: polygon(0 4%, 91% 0, 100% 100%, 0% 100%);
}

.service-box-left.left-middle {
  clip-path: polygon(0 3%, 98% 0, 94% 95%, 0% 100%);
}

.service-box-right.right-down {
  clip-path: polygon(9% 0, 100% 5%, 100% 100%, 0% 100%);
}

.service-box-right.right-middle {
  clip-path: polygon(2% 0, 100% 2%, 100% 100%, 6% 96%);
}

.h3-heading {
  font-size: var(--fs-500);
  font-weight: var(--fw-bold);
  margin-bottom: 10px;
}

.image-group {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.heading-wrapper {
  max-width: 80ch;
  margin: auto;
  text-align: center;
}

.mode_block {
  margin-bottom: 30px;
}

.box {
  display: grid;
  background-color: var(--clr-bodybg);
  padding: 1rem;
  align-content: center;
  text-align: center;
}

.blue_circle {
  margin: 15px auto;
}

.sprite {
  display: inline-block;
  background: url("../img/icons-spritesheet.png") no-repeat;
}

.bg-icon1 {
  width: 120px;
  height: 146px;
  background-position: -10px -10px;
}

.bg-icon2 {
  width: 90px;
  height: 138px;
  background-position: -287px -10px;
}

.bg-icon3 {
  width: 117px;
  height: 128px;
  background-position: -150px -10px;
}

.bg-icon4 {
  width: 80px;
  height: 142px;
  background-position: -10px -176px;
}

.choose_us {
  background-color: #280a0ae5;
  background-image: url("../img/whyls_bg.png");
  background-size: cover;
}

.feature-block {
  flex: 1;
  align-self: stretch;
  margin-bottom: 3rem;
  position: relative;
  padding-left: 6.5rem;
}

.feature-block .h3-heading,
.feature-block p {
  color: var(--clr-white);
}

.feature-block::before {
  content: "01";
  position: absolute;
  top: -12px;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 4.3rem;
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.7);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
}

.feature-block:nth-of-type(2):before {
  content: "02";
}

.feature-block:nth-of-type(3):before {
  content: "03";
}

.feature-block:nth-of-type(4):before {
  content: "04";
}

.feature-block:nth-of-type(5):before {
  content: "05";
}

.board_images {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: auto;
}

.board_img {
  width: 45%;
}

.board_img:nth-of-type(2),
.board_img:nth-of-type(4) {
  justify-self: self-end;
}

.match3Game_developers img {
  width: 75%;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
  align-items: baseline;
  padding-top: 2rem;
}

.other-heading {
  font-size: var(--fs-300);
  font-weight: var(--fw-bold);
  padding: 10px 0;
  text-align: center;
}

.choose_us.section-padding,
.gameMode_section.section-padding {
  padding: 3rem 0 0;
}

.blurred-img {
  background-image: url("../img/banner_bg_blur.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.blurred-img::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: pulse 2.5s infinite;
}

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

  50% {
    opacity: 0.1;
  }

  100% {
    opacity: 0;
  }
}

.blurred-img.loaded::before {
  animation: none;
  content: none;
}

.blurred-img img {
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}

.blurred-img.loaded img {
  opacity: 1;
}

.gameFeatures_section h2 {
  max-width: 32ch;
  margin: auto;
  text-align: center;
}

/* accordion code start */

.accordion_grouping {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.analytics_content,
.ai_content,
.engagement_content,
.monetisation_content {
  flex: 1;
}

.faq_imgblock,
.monetisation_imgBlock,
.ai_imgBlock,
.engagement_imgBlock,
.analytics_imgBlock {
  flex: 0.8;
  text-align: center;
}

.common_accordion {
  margin-bottom: 1em;
  /* background-color: var(--clr-cream); */
  position: relative;
}

.accordion_btn {
  width: 100%;
  border-radius: 6px;
  padding: 9px 30px;
  background: none;
  border: none;
  text-align: left;
  font-size: var(--fs-400);
}

.accordion_block .accordion_text {
  padding: 5px 20px 10px;
  font-size: 0.9rem;
}

.flex_spacing {
  width: 5%;
}

.bg_orange {
  background: var(--clr-orange);
}

.analytics_features,
.ai_features,
.monetisation_features,
.engagement_features {
  padding: 4rem;
}

.gameFeatures_subheading {
  /* font-size: 1rem; */
  display: inline-block;
  max-width: 43ch;
  font-weight: var(--fw-medium);
}

.accordion_content {
  display: none;
}

/* accordion code end */

/* bootstrap accordion */

.gameFeatures_section .card {
  border: none;
  background: none;
}

.button:focus {
  outline: none;
}

.card-header {
  background: none;
  border-bottom: none;
  padding: 0;
}

.gameFeatures_section .card-header .btn {
  border-radius: 0;
}

.btn-link,
.card-header button:focus {
  color: #000;
}

.gameFeatures_section .card-body {
  padding: 0 2.25rem 1rem;
}

.gameFeatures_section .card-header button {
  font-size: var(--fs-400);
  padding-left: 2rem;
}

.userEng_content .accordion-button:not(.collapsed),
.userEng_content .collapsing,
.userEng_content .collapse.show {
  background-color: #ffe5a5;
}

.monetization_content .accordion-button:not(.collapsed),
.monetization_content .collapsing,
.monetization_content .collapse.show {
  background-color: #bcc089;
}

.analytics_content .accordion-button:not(.collapsed),
.analytics_content .collapsing,
.analytics_content .collapse.show {
  background-color: #9ed6f3;
}

.match3Game_card,
.monetization_card,
.clubRake_card,
.analytics_card {
  position: relative;
  margin-bottom: 1rem;
}

.match3Game_card::before,
.monetization_card::before,
.clubRake_card::before,
.analytics_card::before {
  content: "";
  position: absolute;
  left: 11px;
  width: 5px;
  height: 32px;
  display: inline-block;
  background-color: var(--clr-darkgreen);
  top: 7px;
}

.match3Game_card::before {
  background-color: var(--clr-brown);
}

.analytics_card::before {
  /* background-color: var(--clr-brown); */
  background-color: #003653;
}

.match3Game_img {
  position: sticky;
  top: 5vh;
}

.match3Game_section h2 {
  max-width: 24ch;
  margin: auto;
}

/* match 3 page css start */

.match3Game_section ul {
  padding-left: 24px;
}

.match3Game_section ul li {
  padding-bottom: 20px;
}

.match3Game_section ul li::marker {
  color: #f37603;
  font-size: 22px;
}

.features_section h2 {
  max-width: 23ch;
  margin: auto;
}

.developBox {
  padding-bottom: 1rem;
}

.match3_stickyImg {
  position: sticky;
  top: 3vh;
}

.hosting-grid,
.multiplayer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: baseline;
  padding-top: 2rem;
}

.strategy_accBtn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  white-space: normal;
  text-align: left;
}

.match3_accordBlock button[aria-expanded="false"] .accordion_symbol {
  content: url(../img/plus.png);
}

.match3_accordBlock button[aria-expanded="true"] .accordion_symbol {
  content: url(../img/minus.png);
}

.match3_accordBlock button[aria-expanded="true"] .h3_heading {
  color: #f37603;
}

.match3_accordBlock .card-body {
  background-color: #ffe4cc;
}

.match3_accordBlock .card {
  border: none;
  /* padding-left: 66px; */
  padding-bottom: 28px;
}

.match3_accordBlock .card-header .btn {
  padding: 0.375rem 0;
}

.match3_accordBlock .card-header {
  position: relative;
}

.match3Custom_section h2 {
  max-width: 27ch;
}

/* strategy game */

.gaming-section {
  background-color: var(--clr-green);
}

.monetisation_features {
  background-color: #fff2d1;
}

.features_section {
  background-color: var(--clr-green);
}

.techStack-section .tech-stackblock1 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding-bottom: 2rem;
  padding-top: 1rem;
  align-items: baseline;
}

.techStack-section .tech-stackblock2 {
  display: flex;
  justify-content: space-evenly;
  align-items: baseline;
}

.section-subheading {
  color: #424242;
  font-weight: var(--fw-semibold);
  font-size: 2rem;
  display: inline-block;
  padding: 2rem 0 1rem;
}

.about_section ul li,
.match3Custom_section ul li,
.ai_strategy_section ul li {
  padding-bottom: 0.8rem;
}

.about_section ul li::marker,
.match3Custom_section ul li::marker,
.ai_strategy_section ul li::marker {
  color: #ff6d1b;
  font-size: 22px;
}

.gameFeatures_section ul li {
  padding-bottom: 1rem;
}

.gameFeatures_section .h3-heading {
  padding-bottom: 1rem;
  font-size: 2.8rem;
}

.tagline {
  font-weight: var(--fw-medium);
  font-size: 2rem;
}

.strategy-video {
  border-radius: 4.1rem;
}

.bg-white{
  background-color: var(--clr-white);
}

.game-commonBlock ul li {
  position: relative;
  list-style: none;
}

.game-commonBlock ul li::before {
  content: "";
  position: absolute;
  left: -23px;
  width: 5px;
  height: 27px;
  display: inline-block;
  background-color: var(--clr-brown);
  top: -3px;
}

.game-commonBlock ul {
  padding-left: 26px;
}

.analytics_features .game-commonBlock ul li::before {
  background-color: var(--clr-darkgreen);
}

.engagement_features .game-commonBlock ul li::before {
  background-color: #003653;
}

#modelContainer {
  margin: auto;
  display: block;
 
}

#modelContainer iframe {
  width: 100%;
  height: 80vh;
  display: block;
}


.thumb-3d {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.thumb-3d img {
  display: block;
}

/* Play / 3D button */
.play-3d {
  position: absolute;
  inset: 0; /* centers automatically */
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* clicks go to image */
}

/* Optional hover effect */
.thumb-3d:hover .play-3d {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}


video{
  width: 100%;
  height: auto;
}

  .portfolio-img{
  width: 80%;
}

/* =========== Media Queries ======== */

@media (min-width: 1440px) {
  :root {
    --fs-700: 3rem;
    --fs-600: 2.5rem;
    --fs-500: 2.3rem;
    --fs-400: 1.6rem;
    --fs-300: 1.4rem;
    --fs-body: 1.1rem;
  }

  .container {
    max-width: 1260px;
  }

  .stack-grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 0;
    row-gap: 25px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }

  :root {
    --fs-700: 6.4rem;
    --fs-600: 4.6rem;
    --fs-500: 1.625rem;
    --fs-400: 1.6rem;
    --fs-300: 1.5rem;
    --fs-body: 2rem;
    --fs-btn: 2rem;
  }

  .match3Game_developers img {
    width: 100%;
  }

  .stack-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 35px 18px;
  }

  .match3Game_developers.section-padding {
    padding: 0 0;
  }

  .gameFeatures_subheading {
    max-width: 90%;
  }

  .gameFeatures_section .h3-heading {
    font-size: 3.2rem;
  }

  .gameFeatures_section .gameFeatures_subheading,
  .gameFeatures_section .card-header button {
    font-size: 1.375rem;
  }


  .techStack-section .other-heading {
    font-size: 1.6rem;
  }

  .features_section .h3-heading {
    font-size: 2.5rem;
  }

  .question {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1366px) {
  /* :root {
    --fs-700: 2.25rem;
    --fs-600: 1.875rem;
    --fs-500: 1.5rem;
    --fs-400: 1.2rem;
    --fs-300: 1.125rem;
  } */

  .carousel figure {
    height: 55vh;
  }

  .accordion-wrapper .card-header{
    padding: 3rem;
  }

  .faq-answer{
    padding: 0 3rem 3.2rem;
  }
}

@media screen and (max-width: 1199px) {
  :root {
    --fs-700: 3.6rem;
  }

  .feature-block::before {
    font-size: 3.8rem;
  }

  .quotes::before {
    display: none;
  }

  .quotes img {
    position: absolute;
    top: 2rem;
    left: 3%;
  }

  .choose_us.section-padding,
  .gameMode_section.section-padding {
    padding: 2rem 0 0;
  }

  .stack-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .analytics_features,
  .userEng_features,
  .monetization_features,
  .clubRake_features {
    padding: 4rem 3rem;
  }

  .monetization_imgBlock img {
    width: 85%;
  }

  .match3Game_section img {
    position: sticky;
    top: 3vh;
  }
}

@media screen and (max-width: 991px) {
:root {
    --fs-700: 3.2rem;
    --fs-600: 3rem;
}

  .container {
    max-width: 100%;
    padding: 0 25px;
  }

  .board_images {
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
    padding-bottom: 1.5rem;
  }

  .blog-image {
    border-radius: 5px;
  }

  .quotes img {
    top: -1rem;
    width: 10%;
    left: 3%;
  }

  .board_img {
    width: 77%;
  }

  .stack-grid {
    gap: 30px;
  }

  .tech_img {
    width: 65%;
  }

  .board_img:nth-of-type(2),
  .board_img:nth-of-type(4) {
    justify-self: center;
    margin-top: -41px;
  }

  .feature-block {
    padding-left: 4.5rem;
  }

  .feature-block::before {
    font-size: 3.1rem;
  }

  .blog-section .splide__pagination__page {
    height: 11px;
    width: 11px;
  }

  .service-box-left.left-down {
    clip-path: polygon(0 4%, 96% 0, 100% 100%, 0% 100%);
  }

  .service-box-left.left-middle {
    clip-path: polygon(0 2%, 100% 0, 95% 95%, 0% 100%);
  }

  .service-box-left,
  .service-box-right {
    margin-top: -9px;
  }

  .service-box-right.right-down {
    clip-path: polygon(4% 0, 100% 4%, 100% 100%, 0% 100%);
  }

  .service-box-right.right-middle {
    clip-path: polygon(1% 0, 100% 2%, 100% 100%, 4% 98%);
  }

  .image-group {
    flex-direction: row;
    justify-content: center;
  }

  .image-group img {
    width: 30%;
    margin: 1rem 0;
  }

  /* testimonials css start */

  .testimonials .container {
    max-width: 100%;
  }

  .testimonials {
    background-image: none;
  }

  .t_quotes {
    top: 4px;
    left: 17px;
    height: 80px;
  }

  /* testimonials css end */

  /* new css */

  .analytics_features,
  .userEng_features,
  .monetization_features,
  .clubRake_features {
    padding: 2rem;
  }

  .gameFeatures_section img {
    width: 85%;
    position: sticky;
    top: 5vh;
  }

  .match3Game_card::before,
  .monetization_card::before,
  .clubRake_card::before,
  .analytics_card::before {
    height: 25px;
  }

  .analytics_imgBlock {
    position: sticky;
    top: 5vh;
  }

  .carousel figure {
    width: auto;
  }
  .carousel figure img {
    padding: 0 12px;
  }

  .match3_cta {
    margin-left: 0;
    text-align: right !important;
  }

  /* .match3Game_section .row{
    flex-direction: column-reverse;
  } */
}

@media screen and (max-width: 800px) {


  .blog-section .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .container {
    max-width: 100%;
    padding: 0 22px;
  }

  .accordion-wrapper .card {
    border-radius: 1em;
    margin-bottom: 1rem;
  }

  .blog-section .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {


  .banner_section {
    height: auto;
    padding-top: 7rem;
    padding-bottom: 1rem;
    text-align: center;
  }

  .image-wrapper img,
  .match3Game_developers img {
    width: 60%;
  }

  .about_section img {
    width: 55%;
    margin-top: 45px;
  }

  .blog-section .splide__pagination__page {
    height: 10px;
    width: 10px;
  }

  .readmore-btn {
    align-self: center;
  }

  .blog-image {
    border-radius: 5px;
  }

  .image-wrapper {
    padding-top: 50px;
    text-align: center;
  }

  .feature-block::before {
    font-size: 2.5rem;
    top: -4px;
    -webkit-text-stroke-width: 1px;
  }

  .gameFeatures_section img {
    display: none;
  }

  .analytics_content,
  .userEng_content,
  .monetization_content,
  .clubRake_content {
    flex: 100%;
  }

  .gameFeatures_subheading {
    font-size: 0.9rem;
    max-width: 100%;
    padding-bottom: 1rem;
  }

  .match3Game_img {
    padding-top: 3rem;
    width: 80%;
  }

  .tech_img {
    width: 50%;
  }

  .t_wrapper {
    padding: 2rem 1.8rem;
  }

  .t_mcontent p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/quotes_mobile.webp") center/contain no-repeat;
    height: 45px;
    width: 100%;
  }

  .t_mcontent {
    padding-top: 3.5rem;
    display: grid;
    grid-template-rows: 1fr;
    height: 100%;
  }

  .t_mcontent p {
    align-self: center;
  }

  .t_name {
    font-size: 20px;
  }

  .t_wrapper .splide__arrow {
    background: 0 0;
    opacity: 0.7;
    top: 94%;
  }

  .t_wrapper .splide__arrow svg {
    fill: #939699;
  }

  .t_wrapper .splide__arrow--prev {
    left: 2em;
  }

  .t_wrapper button {
    outline: 0;
    box-shadow: none;
  }

  .t_wrapper .splide__pagination {
    bottom: -1.5rem;
  }

  .t_wrapper .splide__pagination__page.is-active {
    background: #de8502;
    transform: none;
    height: 4px;
    width: 15px;
    border-radius: 20px;
  }

  .t_wrapper .splide__pagination__page {
    background: #de8502;
    border-radius: 20px;
    display: inline-block;
    height: 4px;
    opacity: 1;
    width: 6px;
    margin: 2px;
  }

  .t_wrapper .splide__list {
    height: auto;
}

  .analytics_features,
  .userEng_features,
  .monetization_features,
  .clubRake_features {
    padding: 2rem;
  }

  .match3Game_section img {
    display: none;
  }

  .match3_cta {
    text-align: center !important;
  }

  .carousel figure {
    width: auto;
  }

  .about_section {
    text-align: center;
  }
  .h1_heading {
    max-width: 100%;
  }

  .features_section {
    padding-bottom: 2rem;
  }

  .match3Custom_section h2 {
    max-width: 100%;
  }

  .analytics_content, .ai_content, .engagement_content, .monetisation_content {
    flex: 100%;
}

 .gameFeatures_section .h3-heading {
    font-size: 2.4rem;
}

.ai_strategy_section .row{
    flex-direction: column-reverse;
}

.accordion-wrapper .card-header {
    padding: 2.6rem 2.7rem;
    
}

.faq-answer{
    padding: 0 2.7rem 2.6rem;

}

  .faq-section.section-padding{
    padding: 4rem 0;
  }


}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
  #modal__nav {
    position: relative;
    top: 10px;
    text-align: center;
  }
  .modal__prev {
    float: inherit;
    margin-left: 0;
  }
  .modal__next {
    float: inherit;
    margin-right: 0;
  }
}

@media screen and (max-width: 575px) {
  :root {
    --fs-700: 2.8rem;
    --fs-600: 2.8rem;
    --fs-500: 1.8rem;
  }

  .section-padding {
    padding: 6rem 0;
  }

  .stack {
    padding: 0;
  }

  .stack-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .feature-block::before {
    font-size: 2.5rem;
    top: -5px;
  }

  .feature-block {
    padding-left: 3.5rem;
  }

  .cta-btn {
    margin-top: 0;
  }

  .accordion-wrapper .card-header {
    padding: 1.5rem 1.2rem;
  }

  .accordion-wrapper .card {
    border-radius: 0.8rem;
  }

  .accordion-icon .arrow-down {
    margin-left: 1rem;
  }

  .other-heading {
    font-size: 1.4rem;
    padding: 5px 0 15px;
   
  }

  .service-box-left {
    padding: 1.5rem 2rem 1rem 1rem;
  }

  .service-box-right {
    padding: 1.5rem 1rem 1rem 2rem;
  }

  .mode_block {
    margin-bottom: 17px;
  }

  .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }

  .image-wrapper img,
  .match3Game_developers img,
  .about_section img {
    width: 80%;
  }

  .gameFeatures_section .card-header button {
    padding-left: 1.5rem;
  }

  .gameFeatures_section .card-body {
    padding: 0 1rem 1rem 1.5rem;
  }

  .t_quotes {
    display: none;
  }

  .hosting-grid,
  .multiplayer-grid,
  .stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .carousel {
    perspective: 450px;
  }
  .carousel figure {
    width: 80%;
  }
  .carousel figure img {
    width: 80%;
    padding: 0 8px;
  }

  .tagline {
    font-size: 1.8rem;
}

.accordion-wrapper .card-header {
    padding: 2rem 1.2rem;
}

.gameFeatures_section .h3-heading {
    font-size: 2rem;
}

.techStack-section .tech-stackblock2, .techStack-section .tech-stackblock1 {
  display: grid;
   grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 479px) {
  /* media testimonials start */

  .testimonials_wrapper {
    min-height: auto;
  }

  .t_wrapper .splide__arrow--prev {
    left: 0.5em;
  }

  .t_wrapper .splide__arrow--next {
    right: 0.5em;
  }

  .testimonials_wrapper {
    margin: 0 0;
  }

  .t_wrapper {
    padding: 2rem 1rem;
  }

  .t_wrapper .splide__arrow svg {
    height: 1em;
    width: 1em;
  }

  .t_wrapper .splide__arrow {
    top: 96%;
  }

  .t_mcontent::before {
    height: 35px;
  }

  .testimonials {
    margin-top: 2rem;
  }

  /* testimonials end */

  .main-carousel {
    height: 43vh;
  }

}

@media only screen and (max-width: 450px) {
  .carousel figure {
    height: 30vh;
  }
}

@media screen and (max-width: 385px) {
 :root {
    --fs-700: 2.4rem;
    --fs-600: 2.4rem;
    
}

  .container {
    padding: 0 15px;
  }

  .feature-block::before {
    font-size: 2rem;
  }

  .feature-block {
    padding-left: 3.4rem;
  }

  .tech_img {
    width: 55%;
  }
}

@media only screen and (max-width: 320px) {
  .carousel {
    perspective: 200px;
  }
  .carousel figure {
    height: 25vh;
  }
}
