@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --Dark-dark-400: #4e4e4e;
  --Main-main-500: #6200ee;
  --Main-main-800: #360083;
  --White-white-50: #fff;
  --Main-main-700: #4600a9;
  --Gradient: linear-gradient(90deg, #6200ee 0%, #380088 100%);
  --Dark-dark-500: #222;
  --Dark-dark-600: #1f1f1f;
  --Dark-dark-700: #181818;
  --Black-400: #121f30;
  --Black-200: #90979e;
  --Dark-dark-300: #6b6b6b;
  --Dark-dark-50: #e9e9e9;
  --Dark-dark-200: #999;
  --Other-Color-Line-Color: #dedfe4;
  --Black-200: #90979e;
  --Backgrounds-Secondary: #f7f8fa;
  --Alt-Text: #777;

  /* typography */
  --Font-FontSize-Callout: 16px;
  --fs-08: 0.8rem;
  --fs-10: 1rem;
  --fs-11: 1.1rem;
  --fs-12: 1.2rem;
  --fs-13: 1.3rem;
  --fs-14: 1.4rem;
  --fs-16: 1.6rem;
  --fs-15: 1.5rem;
  --fs-17: 1.7rem;
  --fs-18: 1.8rem;
  --fs-20: 2rem;
  --fs-21: 2.1rem;
  --fs-22: 2.2rem;
  --fs-23: 2.3rem;
  --fs-24: 2.4rem;
  --fs-25: 2.5rem;
  --fs-28: 2.8rem;
  --fs-30: 3rem;
  --fs-32: 3.2rem;
  --fs-34: 3.4rem;
  --fs-35: 3.5rem;
  --fs-36: 3.6rem;
  --fs-40: 4rem;
  --fs-45: 4.5rem;
  --fs-50: 5rem;
}

/* reset css */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

li {
  list-style: none;
}

ul {
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
input,
label,
button {
  display: block;
}

span {
  display: inline-block;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

input:focus {
  outline: none;
}

button {
  cursor: pointer;
}

i {
  pointer-events: none;
}

p {
  margin-bottom: 0;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Urbanist", serif;
}

.w-100 {
  width: 100%;
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: 100%;
  width: calc(100vw - 320px);
  margin: 0 auto;
  box-sizing: border-box;
}

.default-button-large {
  display: inline-flex;
  height: 50px;
  padding: 12px var(--Font-FontSize-Callout, 16px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--Main-main-500, #6200ee);
  color: var(--White-white-50, var(--White-white-50, #fff));
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
}

.default-button-medium {
  display: inline-flex;
  height: 40px;
  padding: 12px var(--Font-FontSize-Callout, 16px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--Main-main-500, #6200ee);
  color: var(--White-white-50, var(--White-white-50, #fff));
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  /* 131.25% */
}

.default-button-small {
  display: inline-flex;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 10px;
  background: var(--Main-main-500, #6200ee);
  color: var(--White-white-50);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-12);
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 133.333% */
}

.default-button-icon {
  display: inline-flex;
  height: 30px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: var(--White-white-50, var(--White-white-50, #fff));
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-12);
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

.default-button-icon:hover,
.default-button-large:hover,
.default-button-medium:hover,
.default-button-small:hover {
  background: var(--Main-main-700, #4600a9);
}

.regular-button-outline {
  display: flex;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 10px;
  border: 1px solid var(--Dark-dark-50, #e9e9e9);
  font-size: var(--fs-12);
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 133.333% */
}

.regular-textfield {
  display: flex;
  height: 50px;
  padding: var(--Font-FontSize-Callout, 16px);
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid var(--Dark-dark-50);
  background: var(--White-white-50);
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 131.25% */
}

textarea:focus {
  outline: none;
  border: 1px solid var(--Dark-dark-50);
}

/* index html */
header {
  display: flex;
  height: 80px;
  padding: 36px 160px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--Dark-dark-50);
  background: var(--White-white-50, #fff);

  box-shadow: 0px 2px 10px 0px rgba(202, 202, 202, 0.3);
}

.container>* {
  grid-column: span 12;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--Dark-dark-400);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 15% 5%;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: 5% 50%;
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-item {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--Dark-dark-400);
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  position: relative;
}

.nav-link:active,
.nav-link.active {
  color: var(--Main-main-500);
}

.nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 62px;
  height: 1px;
  background-color: var(--Main-main-500);
  transform: translateX(-50%);
}

.nav-link.default-button-medium {
  color: var(--White-white-50);
}

.hero-bg {
  height: 100%;
  width: 100%;
  background: url(../images/hero-bg.png) no-repeat center center;
  background-size: cover;
}

.hero {
  display: flex;
  align-items: center;
  gap: 200px;
}

.text-xs {
  color: var(--Dark-dark-400);
  font-feature-settings: "liga" off, "clig" off;

  font-size: var(--fs-12);
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 133.333% */
  letter-spacing: 0.2px;
}

.text-md {
  font-size: var(--fs-17);
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 129.412% */
}

.body-regular-text {
  font-size: var(--fs-17);
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 129.412% */
}

.callout-regular-text {
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 131.25% */
}

.lg-title-regular {
  font-size: var(--fs-34);
  font-style: normal;
  line-height: 41px;
  /* 120.588% */
}

.md-title-regular {
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}

.text-title {
  font-feature-settings: "liga" off, "clig" off;
  font-weight: 700;
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.small-text {
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-22);
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.title-1 {
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-28);
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  /* 121.429% */
}

.text-medium {
  font-family: "Inter Tight", serif;
  font-size: var(--fs-28);
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  /* 128.571% */
}

.text-small {
  font-family: "Inter Tight", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.regular-title {
  font-size: var(--fs-22);
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 127.273% */
}

.footnote-regular {
  font-size: var(--fs-13);
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 138.462% */
}

.subheadline-regular {
  font-size: var(--fs-15);
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 133.333% */
}

.caption1-regular {
  font-size: var(--fs-12);
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 133.333% */
}

.caption2-regular {
  font-size: var(--fs-11);
  font-style: normal;
  font-weight: 400;
  line-height: 13px;
  /* 118.182% */
}

.hero-text-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

::placeholder,
textarea::placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 131.25% */
}

textarea:focus-visible {
  outline: none;
}

textarea:focus {
  outline: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  align-self: stretch;
}

.hero-inner .text-md {
  color: var(--Dark-dark-400);
  font-feature-settings: "liga" off, "clig" off;
}

.hero-text-area-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  align-self: stretch;
}

.hero .default-button-large {
  width: 200px;
  padding: 12px 24px;
}

.platforms {
  display: flex;
  width: 478px;
  height: 78px;
  align-items: flex-start;
  align-content: space-between;
  column-gap: 40px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
}

.hero-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 182px;
  background: url(../images/ghosting.png) no-repeat center center;
  background-size: cover;
}

.hero-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 182px;
  background: url(../images/ghosting-b.png) no-repeat center center;
  background-size: cover;
}

.main-bg {
  height: 100%;
  width: 100%;
  background: url(../images/main-bg.png) no-repeat center center;
  background-size: cover;
  background-color: #f7f8fa;
}

.main-wrap {
  display: flex;
  padding-top: 75px;
  padding-bottom: 75px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
}

.main-title {
  color: var(--Dark-dark-500);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-weight: 400;
  margin: auto;
}

.regular-color-text {
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "liga" off, "clig" off;
  position: relative;
}

.regular-color-text::after {
  content: "";
  background-image: url(../icons/line.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 40px;
  left: 50%;
  right: 50%;
  transform: translate(-50%);
}

.main-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.main-items {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.main-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}

.main-item-inner {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--Dark-dark-50, #e9e9e9);
  background: var(--White-white-50, #fff);
  box-shadow: 0px 2px 10px 0px rgba(202, 202, 202, 0.3);
  flex: 1 0 0;
}

.item-icon {
  width: 64px;
  height: 64px;
}

.main-item-inner-text {
  display: flex;
  padding-bottom: 0.99px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}

.main-item-inner-text .md-title-regular {
  color: var(--Dark-dark-600);
  font-feature-settings: "liga" off, "clig" off;
}

.main-item-inner-text .text-md {
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
}

.main-title-wrap {
  width: 100%;
}

.services-bg {
  height: 100%;
  width: 100%;
  background: url(../images/services-bg.png) no-repeat center center;
  background-size: cover;
}

.services-title .regular-color-text::after {
  content: "";
  background-image: url(../icons/line2.svg);
}

.faq-title .regular-color-text::after {
  content: "";
  background-image: url(../icons/line3.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 40px;
  left: 50%;
  right: 50%;
  transform: translate(-50%);
}

.services-card-title {
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-main-card {
  position: relative;
}

.services-main-card-image {
  width: 126px;
  height: 126px;
  position: absolute;
  right: -16px;
  bottom: -28px;
  opacity: 0.5;
  background: url(../images/Arcad-Machine.png) no-repeat;
}

.second-services-main-card-image {
  width: 157px;
  height: 157px;
  position: absolute;
  right: -27px;
  bottom: -48px;
  opacity: 0.5;
  background: url(../images/Game-Star.png) no-repeat;
}

.services-wrap {
  height: 663px;
}

.services-wrap .main-items {
  height: 257px;
}

.services-main-card .main-item-inner {
  flex: 1 0 0;
  justify-content: center;
}

.faq-container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
}

.faq-accordion {
  display: flex;
  width: 564px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid var(--Dark-dark-50, #e9e9e9);
}

.faq-accordion .faq-line:last-child {
  display: none !important;
}

.faq-accordion-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.faq-accordion-item.active .faq-question-box button img {
  transform: rotate(180deg);
}

.faq-accordion-item .footnote-regular {
  color: var(--Dark-dark-400);
  font-feature-settings: "liga" off, "clig" off;
  width: 91.572%;
}

.faq-question-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--Font-FontSize-Callout, 16px);
  align-self: stretch;
}

.faq-question {
  color: var(--Main-main-500, #6200ee);
  font-feature-settings: "liga" off, "clig" off;
  font-weight: 600;
  flex: 1 0 0;
}

.faq-line {
  width: 100%;
  height: 1px;
  background: #e9e9e9;
}

.faq-image-wrap {
  display: flex;
  width: 496px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.faq-image {
  display: flex;
  height: 382px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--Dark-dark-50, #e9e9e9);
  position: relative;
}

.faq-img {
  width: 468px;
  height: 422px;
  position: absolute;
  left: 14px;
  top: -39.98px;
  background: url(../images/faq-image.png) no-repeat;
  background-size: cover;
}

footer {
  background: var(--White-white-500, #fcfcfc);
  box-shadow: 0px -1px 4px 0px rgba(217, 217, 217, 0.15);
}

.footer-wrap {
  display: flex;
  padding-top: 100px;
  padding-bottom: 100px;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.footer-left {
  display: flex;
  width: 338px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-left .subheadline-regular {
  color: var(--Dark-dark-400);
  font-feature-settings: "liga" off, "clig" off;
}

.footer-left .regular-button-outline {
  color: var(--Dark-dark-400);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-links .body-regular-text,
.footer-info .body-regular-text {
  color: var(--Dark-dark-600);
  font-feature-settings: "liga" off, "clig" off;
  font-weight: 600;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.footer-link.subheadline-regular,
.footer-info .subheadline-regular {
  color: var(--Dark-dark-400);
  font-feature-settings: "liga" off, "clig" off;
}

.infos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.info {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 382px;
  background: #e9e9e9;
  width: 100%;
  height: 1px;
}

.cop {
  display: flex;
  height: 18px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.cop .footnote-regular {
  color: var(--Dark-dark-200, #999);
  font-feature-settings: "liga" off, "clig" off;
}

.faq-accordion-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-accordion-item.active .answer {
  max-height: 500px;
  /* Set a value that fits your content size or adjust as needed */
}

.faq-accordion-item .answer p {
  padding-top: 10px;
}

.faq-question-box button img {
  transition: transform 0.3s ease-in-out;
  width: 24px;
  height: 24px;
}

/* contact us */
.contact-bg {
  height: 100%;
  width: 100%;
  background: url(../images/contact-bg.png) no-repeat center top,
    url(../images/contact-bg-b.png) no-repeat center bottom;
  background-size: contain, contain;
}

.contact-bg .container {
  width: calc(100vw - 224px);
}

.contact-form-wrap {
  display: flex;
  width: 100%;
  padding: 88px 0px;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  align-self: stretch;
}

.contact-head-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.contact-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.contact-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.contact-title .lg-title-regular {
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.contact-sub-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.contact-sub-text .body-regular-text {
  color: var(--Dark-dark-300);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  align-self: stretch;
}

.contact-form-wrapper {
  display: flex;
  padding: var(--Font-FontSize-Callout);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 32px;
  border: 1px solid var(--Other-Color-Line-Color);
  background: var(--White-white-50);
  box-shadow: 0px 64px 124px -56px rgba(0, 0, 0, 0.1);
}

.form-content-wrap {
  display: flex;
  width: 576px;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.form-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--Font-FontSize-Callout, 16px);
  align-self: stretch;
}

.form-content form {
  width: 100%;
}

.text-area.regular-textfield {
  height: 142px;
}

.check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.check-text {
  color: var(--Black-200);
  font-size: var(--fs-14);
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.check-text span {
  color: var(--Black-200);
  font-size: var(--fs-14);
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.contact-info {
  display: flex;
  width: 576px;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: var(--Font-LineHeight-8xl, 28px);
  border: 1px solid var(--Dark-dark-50);
  background: var(--Backgrounds-Secondary);
}

.contact-info-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.contact-info-head .text-medium {
  color: var(--Black-400);
}

.contact-info-head .text-small {
  color: var(--Black-200);
}

.c-info-box {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--Dark-dark-50);
  background: var(--White-white-50);
  box-shadow: 0px 2px 10px 0px rgba(202, 202, 202, 0.3);
  position: relative;
}

.c-info {
  display: flex;
  padding-bottom: 0.99px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}

.c-info .body-regular-text {
  font-weight: 600;
  color: var(--Dark-dark-600);
  font-feature-settings: "liga" off, "clig" off;
}

.c-info .callout-regular-text {
  color: var(--Dark-dark-300, var(--Dark-dark-300, #6b6b6b));
  font-feature-settings: "liga" off, "clig" off;
  align-self: stretch;
}

.body-regular-text.info-p {
  font-weight: 400;
  color: var(--Main-main-800);
  font-feature-settings: "liga" off, "clig" off;
}

.info-link-b {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 0.215px;
  bottom: 0.205px;
}

.c-info-box-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.info-link-b a img {
  display: flex;
  width: 24px;
  height: 24px;

  justify-content: center;
  align-items: center;
}

/* blogs */
.blogs {
  background-color: var(--Backgrounds-Secondary);
}

.blogs-title .regular-color-text::after {
  background-image: url(../icons/line4.svg);
}

.blogs-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.blogs-content-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.blog-card {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--Dark-dark-50);
  background: var(--White-white-50);

  box-shadow: 0px 2px 10px 0px rgba(202, 202, 202, 0.3);
}

.blog-img {
  height: 159px;
  align-self: stretch;
  border-radius: 10px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-text-container {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.blog-card-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}

.blog-card-title-wrap .caption2-regular {
  color: var(--Main-main-500);
  font-feature-settings: "liga" off, "clig" off;
  align-self: stretch;
}

.blog-card-title-wrap .md-title-regular {
  color: var(--Dark-dark-600);
  font-feature-settings: "liga" off, "clig" off;
}

.blog-card-text-container .body-regular-text {
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
  align-self: stretch;
}

.blog-info {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-time {
  display: flex;
  align-items: center;
  gap: 2px;
}

.blog-info .footnote-regular {
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
}

.pagination-wrap {
  display: flex;
  padding-top: 75px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-item {
  display: flex;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 45px;
  color: var(--Dark-dark-300, var(--Dark-dark-300, #6b6b6b));
  font-feature-settings: "liga" off, "clig" off;
}

.pagination-item.active,
.pagination-item:hover {
  background: var(--Main-main-500);
  color: var(--White-white-50);
}

.next-btn img {
  display: flex;
  width: 12px;
  height: 12px;
  justify-content: center;
  align-items: center;
}

.pagination .regular-button-outline {
  color: var(--Dark-dark-400);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
}

/* blog detail */
.blog-detail-img {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 300px;
  width: 100%;
  box-shadow: 0px -1px 4px 0px rgba(217, 217, 217, 0.15);
  object-fit: cover;
}

.blog-detail-img img {
  width: 100%;
  height: 100%;
}
.blog-detail-wrapper{
    display: flex;
    position: relative;
    align-items: flex-start;
}
.blog-detail-content {
  display: flex;
  padding: 100px 80px 100px 160px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  background: #fcfcfc;
  box-shadow: 0px -1px 4px 0px rgba(217, 217, 217, 0.15);
  position: relative;
}

.blogger-info-wrap {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.blogger-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blogger-img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}

.blogger-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.blogger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.blogger .regular-title {
  color: var(--Dark-dark-600);
  font-feature-settings: "liga" off, "clig" off;
}

.blog-time-info {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-time-info .footnote-regular {
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
}

.blog-time-info-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
}

.blog-detail-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}

.blog-detail-head .lg-title-regular {
  color: var(--Dark-dark-700);
  font-feature-settings: "liga" off, "clig" off;

  font-weight: 700;
}

.separator {
  height: 1px;
  width: 100%;
  opacity: 0.8;
  background: #e9e9e9;
}

.blog-detail-content .body-regular-text {
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
  align-self: stretch;
}

.blog-detail-content-img {
  height: 474px;
  align-self: stretch;
  border-radius: 20px;
}

.blog-detail-content-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.blogger-detail {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--Dark-dark-50);
  background: var(--White-white-50);
  box-shadow: 0px 2px 10px 0px rgba(202, 202, 202, 0.3);
}

.xs-line {
  width: 1px;
  height: 17px;
  opacity: 0.8;
  background: #e9e9e9;
}

.all-blog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  align-self: stretch;
}

.all-blog a {
  display: flex;
  align-items: center;
  gap: 24px;
}

.all-blog .lg-title-regular {
  font-weight: 100;
  font-feature-settings: "liga" off, "clig" off;
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-cards-wrapper {
    position: sticky;
    top: 100px;
    right: 0;
    margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.blog-detail-card {
  width: 362px;
  height: 338px;

  border-radius: 20px 0px 0px 20px;
  background: var(--Dark-dark-600);
  box-shadow: -5px 5px 20px 0px rgba(202, 202, 202, 0.8);
  overflow: hidden;
}

.blog-detail-card-content {
  display: flex;
  width: 217px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 25px;
  margin-left: 25px;
  position: relative;
}

.newslatter {
  display: flex;
  width: 362px;
  padding: 94px 18px 93px 18px;
  justify-content: center;
  align-items: center;
}

.newslatter-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
}

.newslatter-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}

.newslatter-head-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: stretch;
}

.news-line {
  width: 100%;
  height: 1px;
  background: #6200ee;
}

.newslatter-head .caption1-regular {
  letter-spacing: 0.2px;
  font-weight: 400;
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
  align-self: stretch;
}

.newslatter-head-inner .callout-regular-text {
  color: var(--Main-main-500);
  font-feature-settings: "liga" off, "clig" off;
  font-weight: 600;
}

.newslatter-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.newslatter-form .regular-textfield {
  height: 36px;
  font-size: var(--fs-12);
  line-height: 16px;
  /* 133.333% */
  letter-spacing: 0.2px;
}

.website-link {
  color: #00b281;
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-13);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.blog-detail-card-content-text {
  color: var(--White-white-50);
}

.blog-detail-card-content-text b {
  font-weight: 700;
}

.blog-detail-card-content .default-button-icon {
  border-radius: 10px;
  background: #00b281;
  width: 169px;
}

.blog-detail-icon {
  position: absolute;
  top: 44px;
  right: -78px;
  flex-shrink: 0;
}

.blog-detail-card-images {
  display: flex;
  gap: 10px;
  margin-top: 39px;
  display: inline-flex;
  transform: rotate(347deg);
  position: relative;
}

.blog-detail-card-image {
  display: flex;
  width: 61.607px;
  height: 104.73px;
  padding: 0.207px 0px 11.863px 0px;
  padding-bottom: 0;
  flex-direction: column;
  align-items: center;
  border-radius: 4.542px;
  border: 0.908px solid var(--Border-Subtle, #aaa);
}

.blog-detail-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 4.542px;
}

.detail-reg {
  position: absolute;
  top: -35px;
  left: 0px;
  width: 157px;
  height: 140px;
}

.detail-reg2 {
  width: 157px;
  height: 132px;
  flex-shrink: 0;
  position: absolute;
  right: 100px;
  top: -25px;
}

/* video games */
.video-games-head .lg-title-regular {
  font-weight: 400;
}

.video-games-head .bold-text {
  font-weight: 700;
}

.video-games-head-container {
  padding-left: 160px;
  padding-right: 160px;
}

.video-games-slider-container {
  padding-left: 40px;
  width: 100%;
}

.video-games-info-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.video-games-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.info-line {
  width: 1px;
  height: 44px;
  background: #e9e9e9;
  position: absolute;
  right: -10px;
  transform: translateX(-50%);
}

.video-games-info .regular-title {
  color: var(--Dark-dark-600);
  font-feature-settings: "liga" off, "clig" off;
}

.video-games-info .caption1-regular {
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
  letter-spacing: 0.2px;
  font-weight: 400;
}

.video-games-head .hero-text-area-inner {
  width: 94.027%;
}

.video-games-head .hero {
  gap: 172px;
}

.video-games-hero-right {
  margin: 59px 0px;
}

.video-games-hero-right::after,
.video-games-hero-right::before {
  content: none;
}

.main-bg.video-games-main {
  background-color: var(--White-white-50);
  overflow: hidden;
}

.video-games-main-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.video-games-slider {
  display: flex;
  align-items: center;
  gap: 22.756px;
  position: relative;
}

.video-games-slider::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -18px;
  width: 385px;
  height: 409px;
  transform: rotate(-90deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 79.35%);
  background-size: cover;
}

.slider-card {
  width: 200.533px;
  height: 256px;
  border-radius: 28.444px;
  border: 1px solid #f9f9f9;

  box-shadow: 0px 2px 2px 0px rgba(34, 34, 34, 0.15);
}

.slider-card img {
  width: 100%;
  height: 100%;
  border-radius: 28.444px;
}

.video-games-main-head-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1.24;
}

.video-games-main-head-left .lg-title-regular {
  background: var(--Gradient, linear-gradient(90deg, #6200ee 0%, #380088 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "liga" off, "clig" off;
  font-weight: 400;
}

.video-games-main-head-right {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  justify-content: end;
}

.video-games-main-head-button {
  display: flex;
  padding: 7.377px;
  align-items: center;
  gap: 7.377px;
  border-radius: 73.77px;
  background: var(--Main-main-500, #6200ee);
}

.video-games-main-head-button img {
  width: 26.557px;
  height: 26.557px;
}

.video-games-main-head-button.left-button img {
  transform: rotate(180deg);
}

.why-do-you-bg {
  height: 100%;
  width: 100%;
  background: url(../images/why-dou-you-bg.png) no-repeat center center;
  background-size: cover;
  background-color: var(--Backgrounds-Secondary);
}

.why-do-you-title .regular-color-text::after {
  content: "";
  background-image: url(../icons/line5.svg);
}

.why-do-you-main .main-item-inner {
  flex: 1 0 0;
}

.why-do-you-faq .lg-title-regular {
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* gift cards */
.gift-cards-title .regular-color-text::after {
  content: "";
  background-image: url(../icons/line6.svg);
}

.gift-cards-bg {
  background-color: var(--Backgrounds-Secondary);
}

.explore-bg .main-wrap {
  height: 686px;
}

.explore-bg {
  height: 100%;
  width: 100%;
  background: url(../images/explore-bg.png) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.explore-main-wrap {
  display: flex;
  gap: 140px;
  align-items: center;
}

.explore-main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  width: 55.87%;
}

.explore-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.explore-content .lg-title-regular {
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "liga" off, "clig" off;
  font-weight: 400;
}

.explore-main-content .default-button-large {
  width: 200px;
}

.explore-content .body-regular-text {
  color: var(--Alt-Text);
  font-feature-settings: "liga" off, "clig" off;
}

.explore-arrow {
  position: absolute;
  bottom: -160px;
  left: 30%;
}

.explore-main-right {
  width: 448px;
  height: 1161px;
  transform: rotate(15deg);
  position: absolute;
  right: 70px;
  bottom: -366.391px;
  display: flex;
  gap: 20px;
}

.ghosting {
  position: absolute;
  right: 0px;
  top: 0px;
}

.ghosting-b {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.explore-main-images {
  display: flex;
  width: 136.181px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.explore-main-image {
  display: flex;
  height: 204.271px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 10px;
  border: 2px solid var(--Border-Subtle, #aaa);
}

.explore-main-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* about us */
.about-bg {
  background-color: var(--White-white-50);
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  /* padding-top: 22px;
  padding-bottom: 22px; */
}

.about-wrapper {
  position: relative;
  height: 572px;
  align-self: stretch;
}

.about-frame {
  position: absolute;
  top: 74px;
  left: -65px;
}

.about-frame2 {
  bottom: 74px;
  top: unset;
  right: -65px;
  left: unset;
}

.about-frame img {
  margin-top: 18px;
  margin-left: auto;
  margin-right: 45px;
}

.about-frame2 img {
  margin-left: -17px;
  margin-right: auto;
  margin-top: unset;
}

.about-us-head {
  height: 500px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-inner {
  width: 100%;
  height: 528px;
  flex-shrink: 0;
}

.about-us-head-inner {
  display: flex;
  width: 100%;
  padding-bottom: 20px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 5px;
}

.about-us-head-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 82.457%;
}

.about-us-frame {
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: var(--Gradient);
  margin: auto;
  color: var(--White-white-50);
  font-feature-settings: "liga" off, "clig" off;
  font-size: var(--fs-12);
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 133.333% */
  text-transform: uppercase;
}

.big-title {
  color: var(--Dark-dark-500);
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px;
  /* 128.571% */
  letter-spacing: -1.12px;
}

.big-title-colorfull {
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 56px;
}

.about-us-head-inner .body-regular-text {
  color: var(--Dark-dark-300);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;

  width: 81.053%;
}

.about-frame .body-regular-text {
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "liga" off, "clig" off;
  text-transform: uppercase;
}

.about-main-bg {
  background-color: var(--Backgrounds-Secondary);
  position: relative;
  overflow: hidden;
}

.about-main-bg .services-bg {
  position: absolute;
  top: 200px;
  right: 0;
  z-index: 1;
}

.about-main-bg .main {
  gap: 48px;
  z-index: 2;
}

.about-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-title-wrap .body-regular-text {
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
  text-align: center;
  align-self: stretch;
}

.about-title-wrap .regular-color-text::after {
  content: "";
  background-image: url(../icons/line7.svg);
}

.main-item-inner-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.main-item-inner-head .lg-title-regular {
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: stretch;
  font-weight: 700;
}

.main-item-inner-head .md-title-regular {
  align-self: stretch;
}

.our-features-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.our-features-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
}

.our-features-card-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  align-self: stretch;
}

.our-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
}

.our-feature-card-inner {
  display: flex;
  padding: 0px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-left: 6px solid var(--Main-main-500);
}

.our-feature-card-text {
  display: flex;
  padding-bottom: 0.99px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.our-feature-card-text .title-1 {
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: stretch;
}

.our-feature-card-text .body-regular-text {
  color: var(--Dark-dark-300);
  font-feature-settings: "liga" off, "clig" off;
  align-self: stretch;
}

.our-partners-wrap.main-wrap {
  height: 930.583px;
  justify-content: center;
  align-items: center;
  gap: unset;
  align-self: unset;
  flex-direction: unset;
}

.our-partners-container {
  width: 100%;
  height: 780.583px;
  flex-shrink: 0;
}

.our-partners-container .main {
  align-items: center;
}

.map-container {
  width: 87.72%;
  height: 659.583px;
  flex-shrink: 0;
  position: relative;
}

.map-container .about-frame {
  display: block;
}

.map-container .map {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.map-container .about-frame {
  position: absolute;
  top: 40px;
  left: 10px;
}

.fairs-container .container {
  width: calc(100vw - 336px);
}

.fairs-container .main-wrap {
  padding: 100px 0px;
}

.fairs-container .main {
  gap: 132px;
}

.fairs-title .lg-title-regular {
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  background: var(--Gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: stretch;
}

.fairs-images {
  width: 100%;
  height: 178px;
}

.fairs-images img {
  width: 100%;
}

.pin-wrap {
  width: 103px;
  height: 123.6px;
  /* transform: rotate(-165deg); */
  flex-shrink: 0;
}

.pin-1 {
  position: absolute;
  top: 129px;
  right: 175px;
}

.pin-2 {
  position: absolute;
  bottom: 134px;
  right: 115px;
}

.pin-3 {
  position: absolute;
  bottom: 139px;
  left: 46.6%;
}

.pin-4 {
  position: absolute;
  top: 25.8%;
  left: 46%;
}

.pin-5 {
  position: absolute;
  top: 136px;
  left: 100px;
}

.pin-6 {
  position: absolute;
  bottom: 150px;
  left: 23.2%;
}

.chat-container {
  position: fixed;
  right: 33px;
  bottom: 33px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.chat-wrap {
  width: 113px;
  height: 113px;
  flex-shrink: 0;
  border-radius: 56.5px;
  background: #31BBF0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
}

.chat-wrap-inner {
  width: 99px;
  height: 99px;
  flex-shrink: 0;
  border-radius: 49.5px;
  background: #00AFF0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-box.show {
  display: flex !important;
}

.chat-box {
  display: none;
  width: 421px;

  flex-shrink: 0;
  border-radius: 25px;
  background: #FFF;
  flex-direction: column;
}
.chat-header-support{
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 17px;
  padding-bottom: 27px;
      background-size: cover;
    background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.chat-header-inner{
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.chat-header-left{
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-support{
  width: 59px;
  height: 59px;
  border: 3px solid rgba(255, 255, 255, 0.10);
}
.support-subtitle{
  font-size: var(--fs-22);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 27.65px;
  color: var(--White-white-50);
}
.support-title{
  font-size: var(--fs-22);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  line-height: 27.65px;
  color: var(--White-white-50);
}
.chat-close{
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.20);
}
.support-text{
  color: var(--White-white-50);
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: 20.11px;
  opacity: 0.75;
  width: 81.5%;
}

.chat-header {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 14px;

}

.user {
  width: 52.101px;
  height: 52.101px;
  flex-shrink: 0;
  border-radius: 52.101px;
  border: 3px solid rgba(255, 255, 255, 0.10);
  position: relative;
}

.dot-active {
  width: 14.373px;
  height: 14.373px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(21,255,0, 0.5);
  position: absolute;
  right: -2px;
  bottom: -2px;
display: flex;
align-items: center;
justify-content: center;
}

.dot-active-inner{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #15FF00;
}

.user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;

}

.message-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.m-name {
  color: #0C5B79;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.m-time {
  color: #0C5B79;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-14);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.5;
}

.user-message {
  font-size: 14px;
  color: #333;
}

.chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding-top: 22px;
  padding-left: 20px;
  height: 301px;

}

.message {
  display: flex;
  padding: 12px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 0px 15px 15px 15px;
  background: #00AFF0;
  max-width: 89%;
}

.message-right {
  border-radius: 15px 0px 15px 15px;
}

.message-text {
  color: #FFF;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  display: inline-block;
}

.chat-input-container {
  display: flex;
  gap: 11px;
  border-top: 1px solid rgba(13, 8, 44, 0.15);
  padding: 12.5px 25px 15px 28px;
}

.chat-input-container input::placeholder {
  opacity: 0.3;
}

.chat-input {
  flex-grow: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  color: #0D082C;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.send-button {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background-color: #00AFF0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* meadi query */
@media screen and (min-width: 768px) {
  .blogs-content-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-cards-wrapper {
    flex-direction: row;
  }

  .blog-detail-card {
    flex: 1;
    width: 100%;
  }

  .newslatter {
    width: 100%;
    flex: 1;
  }

  .video-games-slider-container {
    padding-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
.chat-container{
    right:10px;
}
  .footer-line {
    display: none;
  }

  .cop {
    flex-direction: column;
    gap: 2px;
  }

  .main-items {
    flex-direction: column;
  }

  .faq-image-wrap {
    width: 100%;
  }

  .faq-img {
    width: 100%;
    left: 0;
    top: -41.98px;
  }

  .video-games-slider::after {
    content: none;
  }

  .p-none {
    display: none;
  }

  .blog-detail-img {
    height: 100%;
  }

  .blog-detail-content-img {
    height: 100%;
  }

  .all-blog .lg-title-regular {
    font-size: var(--fs-24);
    line-height: normal;
  }

  .about-frame {
    display: none;
  }

  .about-wrapper {
    height: 100%;
  }

  .about-us-head {
    height: 100%;
  }

  .our-features-card-content {
    flex-direction: column;
  }

  .our-partners-wrap.main-wrap {
    height: 100%;
  }

  .our-partners-container {
    height: 100%;
  }

  .map-container {
    height: 100%;
    width: 100%;
  }

  .pin-wrap {
    width: 80px;
    height: 120px;
  }

  .pin-wrap img {
    width: 100%;
  }

  .pin-1 {
    top: 0px;
    right: 5px;
  }

  .pin-2 {
    bottom: 4px;
    right: 5px;
  }

  .pin-3 {
    bottom: 9px;
    left: 43.6%;
  }

  .pin-4 {
    top: 2.8%;
    left: 46%;
  }

  .pin-5 {
    top: 20px;
    left: 15px;
  }

  .pin-6 {
    bottom: 10px;
    left: 18.2%;
  }

  .map-container .about-frame {
    top: -40px;
    left: -30px;
  }

  .video-games-slider-container {
    padding-left: 0px;
  }

}

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

  .explore-main-right {
    display: none;
  }

  .explore-main-wrap {
    display: block;
  }

  .explore-main-content {
    width: 100%;
  }

  .explore-arrow {
    display: none;
  }

  .explore-bg .ghosting,
  .explore-bg .ghosting-b {
    display: none;
  }

  .explore-bg .main-wrap {
    height: 100%;
  }

  .explore-bg .main-wrap {
    margin-top: 0;
  }

  .form-content-wrap {
    width: 100%;
  }

  .contact-info {
    width: 100%;
    padding: 15px;
    margin-top: 16px;
  }

  .form-content-wrap {
    padding: 15px;
  }

  .contact-form-wrapper {
    flex-direction: column;
  }

  .about-wrapper {
    margin-top: 95px;
  }

  .fairs-images {
    height: 100%;
  }
}

@media screen and (max-width: 991px) {
  header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    background: var(--White-white-50, #fff);
    position: fixed;
    top: 80px;
    left: -100%;
    width: 280px;
    border-top: 1px solid var(--Dark-dark-50);
    box-shadow: 0px 2px 10px 0px rgba(202, 202, 202, 0.3);
    transition: left 0.5s;
    height: calc(100vh - 80px);
    z-index: 200;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-container.active {
    left: 0px;
  }

  .main-wrap {
    margin-top: 80px;
  }

  .fairs-container .main-wrap {
    margin-top: 0px;
  }

  .nav-items {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    height: 100%;
  }

  .nav-btn {
    margin-top: auto;
  }

  .nav-item {
    width: 100%;
    align-items: flex-start;
    justify-content: start;
  }

  .nav-link {
    width: 100%;
  }

  .nav-link.active::before {
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    gap: 100px;
    padding-top: 10px;
    margin-top: 80px;
  }

  .platforms {
    width: 100%;
    gap: 20px;
  }

  .hero-right img {
    width: 100%;
  }

  .faq-container {
    flex-direction: column;
  }

  .faq-accordion {
    width: 100%;
  }


  .faq-image-wrap {
    margin: auto;
  }

  .video-games-head .hero {
    gap: 0px;
  }

  .blog-detail-content {
    padding: 40px;
  }

  .blog-cards-wrapper {
    position: unset;
    gap: 0;
  }

  .blog-detail-card {
    border-radius: 20px;
  }

  .chat-wrap {
    width: 70px;
    height: 70px;
  }

  .chat-wrap-inner {
    width: 55px;
    height: 55px;
  }

  .chat-wrap-inner img {
    width: 30px;
  }

  .chat-box {
    width: 100%;

  }
  .blog-detail-wrapper{
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .hero {
    gap: 0px;
  }

  .video-games-main-head {
    display: block;
  }

  .about-frame {
    left: -5px;
  }

  .about-frame2 {
    right: -5px;
    left: unset;
  }

  .faq-img {
    width: 100%;
    left: 0;
    top: -41.98px;
  }

  .video-games-main-head-right {
    margin-top: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .blogs-content-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-cards-wrapper {
    flex-direction: column;
  }

  .blog-detail-card {
    width: 362px;
  }

  .newslatter {
    width: 362px;
  }
}

@media screen and (max-width: 1280px) {
  .container {
    width: calc(100vw - 80px);
  }

  .contact-bg .container {
    width: calc(100vw - 80px);
  }

  .video-games-slider::after {
    width: 370px;
  }

  .fairs-container .container {
    width: calc(100vw - 80px);
  }

  header {
    padding: 30px 40px;
  }

  .video-games-head-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .explore-main-right {
    width: 400px;
  }

  .blog-detail-content {
    padding-left: 40px;
  }

  .fairs-container .main {
    gap: 80px;
  }
}

@media screen and (min-width: 1281px) {
  .video-games-slider-container {
    padding-left: 160px;
    width: 100%;
  }

}
@media screen and (min-width: 1440px) {
  .chat-messages{
    height: 301px;
  }
}
@media (min-width: 1710px) {
  .container {
    width: calc(100vw - 600px);
    margin: 0 auto;
    box-sizing: border-box;
  }

  header {
    padding: 30px 295.500px;
  }

  .blog-detail-content {
    padding-left: 295.500px;
  }

  .video-games-head-container {
    padding-left: 295.500px;
    padding-right: 295.500px;
  }

  .contact-bg .container {
    width: calc(100vw - 524px);
  }
    .chat-messages{
    height: 401px;
  }
}