/* ==================== [ Root CSS Start ] ==================== */
/* ==================== [ Core Colors ] ==================== */
:root {
  --white: #ffffff;
  --black: #000000;
  --transparent: #0000;
}

/* ==================== [ Brand / Theme ] ==================== */
:root {
  --primary: #0312e4;
  --secondary: #171717;
  --body: #ededed;
  --grey: #757575;
  --light-grey: #e6e6e6;
  --lighter-grey: rgba(230, 230, 230, 0.8);
  --grey-bordered: rgba(0, 0, 0, 0.4);
  --primary-gradient: linear-gradient(180deg, #3440e8 0%, #0312e4 100%);
}



/* ==================== [ Fonts ] ==================== */
:root {
  --font-primary: "SpaceGroteskMedium", sans-serif;
  --font-primary-regular: "SpaceGroteskRegular", sans-serif;
  --font-primary-bold: "SpaceGroteskBold", sans-serif;
  --font-secondary: "SatoshiMedium", sans-serif;
  --font-secondary-bold: "SatoshiBold", sans-serif;
  --font-secondary-regular: "SatoshiRegular", sans-serif;
}

/* ==================== [ Layout / Container ] ==================== */
:root {
  --container: 1360px;
  --container-padding: 15px;
  --row-gutter-space: 24px;
}

/* ==================== [ Typography – Common ] ==================== */
:root {
  --a-color: var(--white);
  --a-hover-color: var(--primary);

  --marker-color: var(--primary);

  --blockquote-border-color: var(--primary);
  --blockquote-bg: var(--white);

  --pre-bg: var(--white);
  --pre-color: var(--primary);
}

/* ==================== [ Table ] ==================== */
:root {
  --table-border: rgba(0, 0, 0, 0.2);

  --table-th-bg: var(--primary);
  --table-th-color: var(--white);

  --table-td-bg: var(--transparent);
  --table-td-color: var(--primary);
}

/* ==================== [ Headings ] ==================== */
:root {
  --heading-color: var(--secondary);
  --heading-strong-color: var(--secondary);
  --heading-font-family: var(--font-primary);
  --heading-mb: 20px;
  --heading-fw: 500;

  --h1-letter-spacing: -4.2px;
  --h2-letter-spacing: -2.88px;

  --body-letter-spacing: -0.36px;

  --h1-fs: 70px;
  --h1-lh: 120%;

  --h2-fs: 48px;
  --h2-lh: 130%;

  /* --h3-fs: 32px;
	--h3-lh: 40px;

	--h4-fs: 26px;
	--h4-lh: 34px;

	--h5-fs: 22px;
	--h5-lh: 30px;

	--h6-fs: 18px;
	--h6-lh: 26px; */

  --h3-fs: 24px;
  --h3-lh: 120%;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Transistion CSS Start ] ==================== */
:root {
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.4s ease-in-out;
  --transition-extraslow: 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==================== [ Transistion CSS End ] ==================== */

/* ==================== [ Brand Global CSS Start ] ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: var(--secondary);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  background: var(--body);
  overflow-x: hidden;
  letter-spacing: var(--body-letter-spacing);
}

/* ==================== [ Brand Global CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
  margin: 0;
}

strong,
b {
  font-weight: 700 !important;
}

a,
input,
button,
textarea {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--transparent) inset !important;
  -webkit-text-fill-color: var(--secondary) !important;
  transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
textarea:autofill,
select:autofill {
  background-color: var(--transparent) !important;
  color: var(--secondary) !important;
}

a {
  color: var(--a-color);
  word-break: break-word;
  transition: var(--transition-normal);
  -webkit-transition: var(--transition-normal);
  -moz-transition: var(--transition-normal);
  -ms-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
}

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

p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 20px;
  letter-spacing: inherit;
}

ol,
ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

ol li,
ul li {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

ol li::marker,
ul li::marker {
  color: var(--marker-color);
}

ul li:has(> ul),
ul li:has(> ol) {
  list-style-type: none;
}

blockquote {
  padding: 16px 16px 16px 24px;
  border-left: 5px solid var(--blockquote-border-color);
  margin-bottom: 20px;
  background-color: var(--blockquote-bg);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

pre {
  background-color: var(--pre-bg);
  padding: 16px;
  overflow: auto;
  font-family: inherit;
  border-radius: 12px;
  position: relative;
  color: var(--pre-color);
}

pre code {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: inherit;
}

th,
td {
  border: 1px solid var(--table-border);
  padding: 8px 12px;
  text-align: left;
}

th {
  background-color: var(--table-th-bg);
  font-weight: 600;
  font-size: inherit;
  color: var(--table-th-color);
}

td {
  background-color: var(--table-td-bg);
  font-weight: 400;
  font-size: inherit;
  color: var(--table-td-color);
}

:is(h1, h2, h3, h4, h5, h6) strong {
  color: var(--heading-strong-color);
}

h1,
.h1 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
  letter-spacing: var(--h1-letter-spacing);
}

h2,
.h2 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
  letter-spacing: var(--h2-letter-spacing);
}

h2 span {
  color: var(--primary);
}

h3,
.h3 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h4,
.h4 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h4-fs);
  line-height: var(--h4-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h5,
.h5 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h5-fs);
  line-height: var(--h5-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h6,
.h6 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h6-fs);
  line-height: var(--h6-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

hr {
  margin-block: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

.typography {
  padding-block: 120px;
}

.typography img {
  max-width: 300px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
}

.typography img.align-left {
  margin-right: 40px;
  float: left;
}

.typography img.align-right {
  margin-left: 40px;
  float: right;
}

.typography img.align-center {
  margin-inline: auto;
  display: block;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
  margin-inline: calc(var(--row-gutter-space) / -2);
  row-gap: var(--row-gutter-space);
}

.row > * {
  padding-inline: calc(var(--row-gutter-space) / 2);
}

.img-cover * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
  width: fit-content;
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-secondary-bold);
  font-size: 18px;
  line-height: 120%;
  border: 1px solid;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  letter-spacing: inherit;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: transparent;
  border-color: var(--primary);
  box-shadow: 0px 12px 20px 0px rgba(34, 48, 252, 0.2);
  z-index: 1;
  border: 0px;
}

.btn-primary .btn-icon {
  display: inline-flex;
}

.btn-primary {
  display: inline-flex;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.btn-primary:is(:hover, :focus-visible, :active, .active)::before {
  opacity: 0;
}

.btn-primary:is(:hover, :focus-visible, :active, .active) {
  color: var(--primary) !important;
  background: transparent !important; 
  border-color: var(--transparent) !important;
  outline: 0 !important;
  box-shadow: 0px 12px 40px 0px rgba(34, 48, 252, 0.4);
}



.btn-primary:is(:hover, :focus-visible, :active, .active) img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(3693%) hue-rotate(238deg) brightness(79%) contrast(136%);
    -webkit-filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(3693%) hue-rotate(238deg) brightness(79%) contrast(136%);
}

.btn-secondary {
  color: var(--grey);
  background: var(--transparent);
  border-color: var(--grey-bordered);
  
}

.btn-secondary:is(:hover, :focus-visible, :active, .active) {
  color: var(--black) !important;
  background-color: var(--white) !important;
  border-color: var(--transparent) !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.btn-secondary:is(:hover, :focus-visible, :active, .active) img {
  filter: brightness(100) invert(1);
  -webkit-filter: brightness(100) invert(1);
}

/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
}

.error-404 .heading {
  text-align: center;
}

.error-404 .action * {
  width: fit-content;
  margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
  padding-inline: var(--container-padding);
  margin-inline: auto;
}

.swiper-linear .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ==================== [ Extra Common End ] ==================== */

/* ==================== [ Banner Start ] ==================== */
.comingsoon-header {
  padding: 20px 0 18px;
}

.comingsoon-header .header-inner {
  display: flex;
  justify-content: center;
}

.comingsoon-banner-inner {
  padding-top: 112px;
}

.comingsoon-banner {
  margin: 0 0 -87px 0;
}

.comingsoon-banner-inner .heading {
  max-width: 1186px;
  margin: 0 auto;
  text-align: center;
}

.comingsoon-banner-inner .disc {
  margin: 0 auto;
  text-align: center;
  max-width: 704px;
}

.comingsoon-banner-inner .disc * {
  color: var(--grey);
  font-size: 20px;
  line-height: 140%;
}

.comingsoon-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.comingsoon-flx {
  background: var(--lighter-grey);
  border: 1px solid var(--white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(25px);
}

.comingsoon-block {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: space-between;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  row-gap: 100px;
}

.comingsoon-block .disc {
  margin: 0;
}

.comingsoon-block .disc * {
  color: var(--white);
  margin: 0;
}

.comingsoon-block .link * {
  color: var(--white);
  text-decoration: none;
  margin: 0;
}

.comingsoon-block .link a:hover {
  color: var(--secondary);
}

.commingsoon-vector {
  margin: 0 0 -80px 0;
  text-align: center;
  z-index: -1;
  position: relative;
}

.commingsoon-vector * {
  font-size: 172px;
  line-height: 120%;
  font-family: var(--font-primary-bold);
  color: rgba(0, 0, 0, 0.1);
}

.comingsoon-block .sub-disc {
  margin-bottom: 16px;
}

.comingsoon-block .sub-disc * {
  color: var(--grey);
  margin: 0;
}

.comingsoon-block .disc * {
  color: var(--secondary);
  text-align: left;
}

.comingsoon-block .disc-white * {
  color: var(--white);
}

.comingsoon-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.comingsoon-link .link {
  color: var(--secondary);
  text-decoration: unset;
}
.comingsoon-link .link * {
  color: var(--secondary);
}

.comingsoon-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.comingsoon-banner-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.comingsoon-horizontal-vector {
  max-width: 1452px;
  margin: 0 auto;
  position: relative;
  top: -84px;
}

.comingsoon-horizontal-vector * {
  width: 100%;
  height: 100%;
}

.comingsoon-disc .disc * {
	font-size: 18px;
}
/* ==================== [ Banner End ] ==================== */


.our-services-main {
  padding: 120px 0;
  position: relative;
  z-index: 11;
      border-top: 1px solid var(--white);
}

.our-services-wrapper .section-title * {
  text-align: center;
}
.our-services-wrapper .section-title {
  margin-bottom: 48px;
}

.our-services-inner {
  background: var(--lighter-grey);
  padding: 24px;
  border: 1px solid var(--white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  backdrop-filter: blur(25px);
}

.our-service-block {
  background: var(--lighter-grey);
  padding: 8px;
  border: 1px solid var(--white);
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.our-service-block-inner {
  background: var(--white);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 100px;
  height: 100%;
}

.our-service-icon {
  background: var(--primary);
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 5px 10.13px 0px rgba(34, 48, 252, 0.6);
}
.our-service-icon img {
  filter: drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.6));
  -webkit-filter: drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.6));
}

.our-service-block-inner .service-title * {
  margin: 0;
  letter-spacing: -0.04em;
}

.comingsoon-footer {
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--white);
}

.comingsoon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comingsoon-footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.comingsoon-footer-bottom .disc * {
  margin: 0;
  color: var(--white);
  font-family: var(--font-secondary-regular);
}

.comingsoon-footer-bottom ul {
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 20px;
}
.comingsoon-footer-bottom ul li {
  list-style-type: none;
  color: var(--white);
  font-family: var(--font-secondary-regular);
}
.comingsoon-footer-bottom ul li a {
  text-decoration: none;
}

.comingsoon-footer-bottom ul li a:hover {
  color: var(--secondary);
}

.comingsoon-left-vector *,
.comingsoon-right-vector * {
  width: 100%;
  height: 100%;
}

.footer-logo * {
  width: 100%;
  height: 100%;
}


.genq-socials ul li a{
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.8);
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.genq-socials ul li a:hover {
  background:rgba(255, 255, 255, 0.8);
}

.genq-socials ul li a img { 
  filter: drop-shadow(0px 4px 8.1px rgba(34, 48, 252, 0.4)); -webkit-filter: drop-shadow(0px 4px 8.1px rgba(34, 48, 252, 0.4));
    width: 20px;
    height: 20px;
}