:root {
  /* -------------------------------- 
    Typography
    -------------------------------- */
  --font-primary: 'Robots', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-tertiary: 'Audiowide', sans-serif;
  /* set base values */
  --text-base-size: 10px;
  /* type scale */
  --fs-display-text: calc(1rem * 5.7);
  --fs-xxxl: calc(1rem * 4.8);
  --fs-xxl: calc(1rem * 3.2);
  --fs-xl: calc(1rem * 2.4);
  --fs-md: calc(1rem * 2.2);
  --fs-md-small: calc(1rem * 2);
  --fs-body: calc(1rem * 1.8);
  --fs-sm: calc(1rem * 1.6);
  --fs-xs: calc(1rem * 1.4);
  --fs-xxs: calc(1rem * 1.2);
  /* font-weight */
  --fw-bold: 700;
  --fw-semi-bold: 600;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-light: 300;
  /* line-height */
  --lh-xxxl: calc(1rem * 6.4);
  --lh-xxl: calc(1rem * 5.2);
  --lh-xl-lg: calc(1rem * 4.4);
  --lh-xl: calc(1rem * 4);
  --lh-md: calc(1rem * 3.8);
  --lh-sm: calc(1rem * 3.2);
  --lh-body: calc(1rem * 2.8);
  --lh-body-sm: calc(1rem * 2);
  /* letter-spacing */
  --ls-body: .54px; }

@media screen and (max-width: 1200px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 5);
    --fs-xxxl: calc(1rem * 4.6);
    --fs-xxl: calc(1rem * 3);
    --fs-xl: calc(1rem * 2.2);
    /* line-height */
    --lh-xxxl: calc(1rem * 6);
    --lh-xxl: calc(1rem * 5);
    --lh-xl-lg: calc(1rem * 4.2);
    --lh-xl: calc(1rem * 3.8);
    --lh-md: calc(1rem * 3.4);
    --lh-sm: calc(1rem * 3);
    --lh-body: calc(1rem * 2.6); } }

@media screen and (max-width: 992px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.6);
    --fs-xxxl: calc(1rem * 4.4);
    --fs-xxl: calc(1rem * 2.8);
    --fs-xl: calc(1rem * 2.1);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.8);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 768px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.4);
    --fs-xxxl: calc(1rem * 4.2);
    --fs-xxl: calc(1rem * 2.6);
    --fs-xl: calc(1rem * 2);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.6);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 576px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4);
    --fs-xxxl: calc(1rem * 4);
    --fs-xxl: calc(1rem * 2.4);
    --fs-xl: calc(1rem * 1.8);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.2);
    --lh-xxl: calc(1rem * 4.4);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body,
html {
  width: 100%;
  font-family: var(--font-primary);
  font-size: var(--text-base-size);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-light);
  background-color: #FFFFFF !important; }

.dq--button {
  display: flex;
  justify-self: flex-start;
  justify-content: center;
  align-items: center;
  border: unset;
  cursor: pointer;
  border-radius: 5px;
  background: var(--Schemes-Tertiary, #F84153);
  color: var(--material-theme-sys-light-surface, #F8F9FF);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-medium);
  line-height: var(--lh-md);
  padding: 0.8rem 2.4rem; }
  .dq--button > img {
    margin-left: 1rem;
    width: 2.4rem;
    height: 2.4rem; }

.text-subheader {
  color: var(--Schemes-On-Surface-Variant, #858587);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl);
  letter-spacing: 1px;
  text-transform: uppercase; }

.text-header {
  color: var(--Schemes-On-Surface, #191C20);
  /* material-theme/display/small */
  font-family: var(--font-primary);
  font-size: var(--fs-xxl);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl-lg);
  /* 137.5% */
  text-transform: uppercase; }

.text-content {
  color: var(--Schemes-On-Surface, #191C20);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-regular);
  line-height: var(--lh-md); }
  .text-content > span {
    color: var(--Schemes-Tertiary, #F84153);
    font-weight: var(--fw-bold); }

.background-blue {
  background: var(--Schemes-Background, #F5F9FF); }

.background-yellow {
  background: var(--Schemes-Secondary, #FFCD29); }

.background-darkblue {
  background: var(--Schemes-Primary, #0D1A51);
  overflow: hidden;
  padding: 0 0 8.5rem; }
  @media (max-width: 1400px) {
    .background-darkblue {
      padding: 8rem 0; } }

section {
  padding: 10rem 0;
  background: var(--Schemes-Surface, #FFF); }
  @media (max-width: 1200px) {
    section {
      padding: 5rem 0; } }

/* -------------------------------- 
Scroll Bar
-------------------------------- */
::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

/* Track */
::-webkit-scrollbar-track {
  background: var(--material-theme-sys-light-surface, #F8F9FF); }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #dfe2ee;
  border-radius: 10px; }

.lightbox-col {
  flex: 0 0 auto;
  width: 50%; }
  @media (max-width: 576px) {
    .lightbox-col {
      width: 100%; } }

:root {
  /* -------------------------------- 
    Typography
    -------------------------------- */
  --font-primary: 'Robots', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-tertiary: 'Audiowide', sans-serif;
  /* set base values */
  --text-base-size: 10px;
  /* type scale */
  --fs-display-text: calc(1rem * 5.7);
  --fs-xxxl: calc(1rem * 4.8);
  --fs-xxl: calc(1rem * 3.2);
  --fs-xl: calc(1rem * 2.4);
  --fs-md: calc(1rem * 2.2);
  --fs-md-small: calc(1rem * 2);
  --fs-body: calc(1rem * 1.8);
  --fs-sm: calc(1rem * 1.6);
  --fs-xs: calc(1rem * 1.4);
  --fs-xxs: calc(1rem * 1.2);
  /* font-weight */
  --fw-bold: 700;
  --fw-semi-bold: 600;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-light: 300;
  /* line-height */
  --lh-xxxl: calc(1rem * 6.4);
  --lh-xxl: calc(1rem * 5.2);
  --lh-xl-lg: calc(1rem * 4.4);
  --lh-xl: calc(1rem * 4);
  --lh-md: calc(1rem * 3.8);
  --lh-sm: calc(1rem * 3.2);
  --lh-body: calc(1rem * 2.8);
  --lh-body-sm: calc(1rem * 2);
  /* letter-spacing */
  --ls-body: .54px; }

@media screen and (max-width: 1200px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 5);
    --fs-xxxl: calc(1rem * 4.6);
    --fs-xxl: calc(1rem * 3);
    --fs-xl: calc(1rem * 2.2);
    /* line-height */
    --lh-xxxl: calc(1rem * 6);
    --lh-xxl: calc(1rem * 5);
    --lh-xl-lg: calc(1rem * 4.2);
    --lh-xl: calc(1rem * 3.8);
    --lh-md: calc(1rem * 3.4);
    --lh-sm: calc(1rem * 3);
    --lh-body: calc(1rem * 2.6); } }

@media screen and (max-width: 992px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.6);
    --fs-xxxl: calc(1rem * 4.4);
    --fs-xxl: calc(1rem * 2.8);
    --fs-xl: calc(1rem * 2.1);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.8);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 768px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.4);
    --fs-xxxl: calc(1rem * 4.2);
    --fs-xxl: calc(1rem * 2.6);
    --fs-xl: calc(1rem * 2);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.6);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 576px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4);
    --fs-xxxl: calc(1rem * 4);
    --fs-xxl: calc(1rem * 2.4);
    --fs-xl: calc(1rem * 1.8);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.2);
    --lh-xxl: calc(1rem * 4.4);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body,
html {
  width: 100%;
  font-family: var(--font-primary);
  font-size: var(--text-base-size);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-light);
  background-color: #FFFFFF !important; }

.dq--button {
  display: flex;
  justify-self: flex-start;
  justify-content: center;
  align-items: center;
  border: unset;
  cursor: pointer;
  border-radius: 5px;
  background: var(--Schemes-Tertiary, #F84153);
  color: var(--material-theme-sys-light-surface, #F8F9FF);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-medium);
  line-height: var(--lh-md);
  padding: 0.8rem 2.4rem; }
  .dq--button > img {
    margin-left: 1rem;
    width: 2.4rem;
    height: 2.4rem; }

.text-subheader {
  color: var(--Schemes-On-Surface-Variant, #858587);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl);
  letter-spacing: 1px;
  text-transform: uppercase; }

.text-header {
  color: var(--Schemes-On-Surface, #191C20);
  /* material-theme/display/small */
  font-family: var(--font-primary);
  font-size: var(--fs-xxl);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl-lg);
  /* 137.5% */
  text-transform: uppercase; }

.text-content {
  color: var(--Schemes-On-Surface, #191C20);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-regular);
  line-height: var(--lh-md); }
  .text-content > span {
    color: var(--Schemes-Tertiary, #F84153);
    font-weight: var(--fw-bold); }

.background-blue {
  background: var(--Schemes-Background, #F5F9FF); }

.background-yellow {
  background: var(--Schemes-Secondary, #FFCD29); }

.background-darkblue {
  background: var(--Schemes-Primary, #0D1A51);
  overflow: hidden;
  padding: 0 0 8.5rem; }
  @media (max-width: 1400px) {
    .background-darkblue {
      padding: 8rem 0; } }

section {
  padding: 10rem 0;
  background: var(--Schemes-Surface, #FFF); }
  @media (max-width: 1200px) {
    section {
      padding: 5rem 0; } }


/* -------------------------------- 
Scroll Bar
-------------------------------- */
::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

/* Track */
::-webkit-scrollbar-track {
  background: var(--material-theme-sys-light-surface, #F8F9FF); }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #dfe2ee;
  border-radius: 10px; }

.lightbox-col {
  flex: 0 0 auto;
  width: 50%; }
  @media (max-width: 576px) {
    .lightbox-col {
      width: 100%; } }

header.header-bar {
  border-radius: 5px;
  background: var(--material-theme-sys-light-surface, #F8F9FF);
  box-shadow: 0px 4px 8px 0px rgba(85, 89, 91, 0.18);
  position: fixed;
  left: 6rem;
  right: 6rem;
  top: 32px;
  z-index: 99;
  transition: .15s ease-in-out;
  padding: 1.8rem 4rem; }
  @media (max-width: 1200px) {
    header.header-bar {
      padding: 1.2rem 2rem;
      top: 0;
      left: unset;
      right: unset;
      border-radius: unset;
      max-width: 100% !important;
      position: unset; } }
  header.header-bar .header-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    header.header-bar .header-inner .brand_wraper {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      margin-left: 5px; }
      header.header-bar .header-inner .brand_wraper > ul {
        display: flex;
        align-items: center; }
        header.header-bar .header-inner .brand_wraper > ul::before {
          content: '';
          background: #C3C6CF;
          width: 1px;
          height: 31px;
          margin-left: 2.5rem;
          margin-right: 5px; }
        header.header-bar .header-inner .brand_wraper > ul > li {
          display: flex;
          align-items: center;
          padding: 0 7px; }
          header.header-bar .header-inner .brand_wraper > ul > li > a {
            color: var(--material-theme-sys-light-primary, #033C6A);
            font-family: var(--font-secondary);
            font-size: var(--fs-sm);
            font-weight: var(--fw-regular);
            line-height: var(--lh-body); }
    header.header-bar .header-inner .nav_wrapper {
      margin-left: auto;
      display: flex;
      align-items: center; }
      header.header-bar .header-inner .nav_wrapper .nav_menu {
        display: inline-flex; }
        header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline {
          display: inline-flex;
          align-items: center;
          margin-right: 10px; }
          @media (max-width: 1400px) {
            header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline {
              margin-right: 8px; } }
          header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item {
            padding: 5px 15px; }
            @media (max-width: 1700px) {
              header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item {
                padding: 5px 10px; } }
            header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item a {
              color: var(--Schemes-On-Surface, #191C20);
              text-align: right;
              font-family: var(--font-secondary);
              font-size: var(--fs-md-small);
              font-weight: var(--fw-regular);
              line-height: var(--lh-md);
              /* 190% */ }
              header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item a.active {
                color: var(--Schemes-Tertiary, #F84153); }
        header.header-bar .header-inner .nav_wrapper .nav_menu .nav_button {
          margin-right: 20px; }
  header.header-bar .dq--header-mobile .dq--menu-box .btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 0px;
    text-align: center;
    border: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    @media (max-width: 1400px) {
      header.header-bar .dq--header-mobile .dq--menu-box .btn {
        width: 40px;
        height: 40px; } }
    header.header-bar .dq--header-mobile .dq--menu-box .btn:focus {
      box-shadow: none; }
    header.header-bar .dq--header-mobile .dq--menu-box .btn .dq--menu-btn {
      border: 1px solid transparent; }
      header.header-bar .dq--header-mobile .dq--menu-box .btn .dq--menu-btn:focus {
        box-shadow: none;
        outline: none; }
      header.header-bar .dq--header-mobile .dq--menu-box .btn .dq--menu-btn:active {
        border-color: unset !important; }

header.header-bar-sticky {
  border-radius: 0px;
  position: sticky;
  left: 0rem;
  right: 0rem;
  top: 0px;
  transition: .15s ease-in-out;
  padding: 5px 10px;
  max-width: 100%;
  transition: 0.3s; }

.dq--mobile-full-menu {
  overflow: auto;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  padding: 30px 16px 40px;
  display: none;
  background: var(--Schemes-Primary, #0D1A51);
  animation-name: entryAnimation;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out; }
  .dq--mobile-full-menu.bg-right {
    background-image: url("../../images/2024/svg/logo-bg-right.svg");
    background-position: calc(100% + 1.6rem) calc(100% - 3rem); }
  .dq--mobile-full-menu .dq--menu-colse-btn {
    padding: 0px; }
    .dq--mobile-full-menu .dq--menu-colse-btn:focus {
      outline: none;
      box-shadow: none; }
    .dq--mobile-full-menu .dq--menu-colse-btn.mobile-menu-logout-btn {
      font-size: 1.6rem;
      color: var(--dark-white);
      line-height: 1;
      display: inline-flex;
      align-items: center; }
      .dq--mobile-full-menu .dq--menu-colse-btn.mobile-menu-logout-btn img {
        margin-right: 10px; }
  .dq--mobile-full-menu .dq--mobile-menu-list {
    margin-top: 50px;
    margin-left: 4rem; }
    @media screen and (max-width: 320px) {
      .dq--mobile-full-menu .dq--mobile-menu-list {
        margin-left: 1rem; } }
    .dq--mobile-full-menu .dq--mobile-menu-list li {
      line-height: 1; }
      .dq--mobile-full-menu .dq--mobile-menu-list li:not(:last-child) {
        margin-bottom: 15px; }
      .dq--mobile-full-menu .dq--mobile-menu-list li .dq--mobile-menu-item {
        color: #FFFFFF;
        font-family: var(--font-secondary);
        font-size: var(--fs-md-small);
        font-weight: var(--fw-regular);
        line-height: var(--lh-md);
        display: flex;
        align-items: center; }

@keyframes entryAnimation {
  0% {
    opacity: 0;
    transform: translateY(-30px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }

:root {
  /* -------------------------------- 
    Typography
    -------------------------------- */
  --font-primary: 'Robots', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-tertiary: 'Audiowide', sans-serif;
  /* set base values */
  --text-base-size: 10px;
  /* type scale */
  --fs-display-text: calc(1rem * 5.7);
  --fs-xxxl: calc(1rem * 4.8);
  --fs-xxl: calc(1rem * 3.2);
  --fs-xl: calc(1rem * 2.4);
  --fs-md: calc(1rem * 2.2);
  --fs-md-small: calc(1rem * 2);
  --fs-body: calc(1rem * 1.8);
  --fs-sm: calc(1rem * 1.6);
  --fs-xs: calc(1rem * 1.4);
  --fs-xxs: calc(1rem * 1.2);
  /* font-weight */
  --fw-bold: 700;
  --fw-semi-bold: 600;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-light: 300;
  /* line-height */
  --lh-xxxl: calc(1rem * 6.4);
  --lh-xxl: calc(1rem * 5.2);
  --lh-xl-lg: calc(1rem * 4.4);
  --lh-xl: calc(1rem * 4);
  --lh-md: calc(1rem * 3.8);
  --lh-sm: calc(1rem * 3.2);
  --lh-body: calc(1rem * 2.8);
  --lh-body-sm: calc(1rem * 2);
  /* letter-spacing */
  --ls-body: .54px; }

@media screen and (max-width: 1200px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 5);
    --fs-xxxl: calc(1rem * 4.6);
    --fs-xxl: calc(1rem * 3);
    --fs-xl: calc(1rem * 2.2);
    /* line-height */
    --lh-xxxl: calc(1rem * 6);
    --lh-xxl: calc(1rem * 5);
    --lh-xl-lg: calc(1rem * 4.2);
    --lh-xl: calc(1rem * 3.8);
    --lh-md: calc(1rem * 3.4);
    --lh-sm: calc(1rem * 3);
    --lh-body: calc(1rem * 2.6); } }

@media screen and (max-width: 992px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.6);
    --fs-xxxl: calc(1rem * 4.4);
    --fs-xxl: calc(1rem * 2.8);
    --fs-xl: calc(1rem * 2.1);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.8);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 768px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.4);
    --fs-xxxl: calc(1rem * 4.2);
    --fs-xxl: calc(1rem * 2.6);
    --fs-xl: calc(1rem * 2);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.6);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 576px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4);
    --fs-xxxl: calc(1rem * 4);
    --fs-xxl: calc(1rem * 2.4);
    --fs-xl: calc(1rem * 1.8);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.2);
    --lh-xxl: calc(1rem * 4.4);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body,
html {
  width: 100%;
  font-family: var(--font-primary);
  font-size: var(--text-base-size);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-light);
  background-color: #FFFFFF !important; }

.dq--button {
  display: flex;
  justify-self: flex-start;
  justify-content: center;
  align-items: center;
  border: unset;
  cursor: pointer;
  border-radius: 5px;
  background: var(--Schemes-Tertiary, #F84153);
  color: var(--material-theme-sys-light-surface, #F8F9FF);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-medium);
  line-height: var(--lh-md);
  padding: 0.8rem 2.4rem; }
  .dq--button > img {
    margin-left: 1rem;
    width: 2.4rem;
    height: 2.4rem; }
	@media (max-width: 576px) {
		.banner-inner .dq--button{
			position: relative;
			left: 27%;
		}
		.locationSection .dq--button {
			position: relative !important;
			left: 22% !important;
			bottom:0px !important;
		}
	}

.text-subheader {
  color: var(--Schemes-On-Surface-Variant, #858587);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl);
  letter-spacing: 1px;
  text-transform: uppercase; }

.text-header {
  color: var(--Schemes-On-Surface, #191C20);
  /* material-theme/display/small */
  font-family: var(--font-primary);
  font-size: var(--fs-xxl);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl-lg);
  /* 137.5% */
  text-transform: uppercase; }

.text-content {
  color: var(--Schemes-On-Surface, #191C20);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-regular);
  line-height: var(--lh-md); }
  .text-content > span {
    color: var(--Schemes-Tertiary, #F84153);
    font-weight: var(--fw-bold); }

.background-blue {
  background: var(--Schemes-Background, #F5F9FF); }

.background-yellow {
  background: var(--Schemes-Secondary, #FFCD29); }

.background-darkblue {
  background: var(--Schemes-Primary, #0D1A51);
  overflow: hidden;
  padding: 0 0 8.5rem; }
  @media (max-width: 1400px) {
    .background-darkblue {
      padding: 8rem 0; } }

section {
  padding: 10rem 0;
  background: var(--Schemes-Surface, #FFF); }
  @media (max-width: 1200px) {
    section {
      padding: 5rem 0; } }

/* -------------------------------- 
Scroll Bar
-------------------------------- */
::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

/* Track */
::-webkit-scrollbar-track {
  background: var(--material-theme-sys-light-surface, #F8F9FF); }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #dfe2ee;
  border-radius: 10px; }

.lightbox-col {
  flex: 0 0 auto;
  width: 50%; }
  @media (max-width: 576px) {
    .lightbox-col {
      width: 100%; } }

.banner {
  background: url('../../images/2024/svg/Banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 72rem;
  position: relative; 
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
}

.timeline-banner {
	min-height: 50rem !important;
	padding: 0;
}

.banner-inner {
  position: relative;
  text-align:center;
  margin-top: 8%;
  background: url("../../images/2024/icons/Banner right image.svg") right top no-repeat, url("../../images/2024/icons/Banner left image.svg") left bottom no-repeat;
  padding: 30px;
 max-width: 75%;
}

.banner-container {
	align-items: center;
    justify-content: center;
    display: flex;
}

  @media (max-width: 576px) {
    .banner-inner {
      width: 100%;
      text-align: center;
      z-index: 1; } }
  .banner-inner > h1 {
    color: var(--Schemes-Secondary, #FFCD29);
    font-family: var(--font-tertiary);
    font-size: var(--fs-xxl);
    font-weight: var(--fw-regular);
    line-height: 44px;
    margin-bottom: 3rem; }
    @media (max-width: 1200px) {
      .banner-inner > h1 {
        margin-bottom: 2rem; } }
  .banner-inner > h3 {
    color: #FFF;
    font-family: var(--font-secondary);
    font-size: var(--fs-display-text);
    font-weight: var(--fw-bold);
    line-height: var(--lh-xxxl);
    letter-spacing: -0.25px;
    margin-bottom: 2rem;
    max-width: 100%; 
    text-transform: uppercase;
    margin-top: 4%;}
    @media (max-width: 1200px) {
      .banner-inner > h3 {
        margin-bottom: 2.5rem; } }

.banner-container h2{
	transform: rotate(-1deg) !important;
	letter-spacing: 3px;
}

ul.list-inline.dq-tagline {
    color: #FFF;
    font-family: var(--font-secondary);
    font-size: var(--fs-display-text);
    font-weight: var(--fw-bold);
    line-height: var(--lh-xxxl);
    letter-spacing: -0.25px;
    margin-bottom: 15rem;
    text-transform: uppercase;
    background: #F84153;
    display: inline;
    padding: 15px 30px;
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
	
}

ul.list-inline.dq-tagline li {
	letter-spacing: 3px;
	
}
.tagline-circle {
    margin-bottom: 12px;
}

.success-color {color: #FFCD29;}

@media (max-width: 767px) {
	.banner{padding:0px !important;}
	ul.list-inline.dq-tagline {
		display: block;
		 margin-bottom: 15px;
	}
	
	.banner-inner {
		max-width: 100%;
	}
	.tagline-circle {
		display: none;
	}
}

@media (min-width: 768px) and (max-width:1180px) {
	ul.list-inline.dq-tagline {
		font-size: 24px !important;
	}
}

.banner_left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }
  @media (max-width: 1200px) {
    .banner_left {
      position: absolute;
      bottom: 0%;
      left: 50%;
      transform: translateX(-50%); } }
  .banner_left > img {
    width: 100%; }
    @media (max-width: 1200px) {
      .banner_left > img {
        width: 90%; } }
    @media (max-width: 576px) {
      .banner_left > img {
        width: 125%;
        position: relative;
        left: -26px;
        top: 90px; } }
    .banner_left > img .banner-inner button.dq--button {
      position: relative;
      left: 25%; }
  .banner_left .banner_content {
    display: grid;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%; }
    @media (max-width: 1200px) {
      .banner_left .banner_content {
        left: 48%;
        top: 65%; } }
    @media (max-width: 576px) {
      .banner_left .banner_content {
        left: 51%;
        top: 55%; } }
    .banner_left .banner_content > h3 {
      text-align: center;
      -webkit-text-stroke: 5px var(--material-theme-sys-light-surface, #F8F9FF);
      -webkit-text-fill-color: transparent;
      font-family: var(--font-tertiary);
      font-size: 9.6rem;
      font-weight: var(--fw-regular);
      line-height: var(--lh-xxl);
      letter-spacing: 10px; }
      @media (max-width: 1200px) {
        .banner_left .banner_content > h3 {
          font-size: 7.6rem; } }
      @media (max-width: 576px) {
        .banner_left .banner_content > h3 {
          font-size: 5.6rem; } }
    .banner_left .banner_content > h5 {
      color: #FFF;
      text-align: center;
      font-family: var(--font-tertiary);
      font-size: var(--fs-xxl);
      font-weight: var(--fw-regular);
      line-height: var(--lh-xl-lg);
      text-transform: uppercase;
      margin-top: 3rem;
      margin-bottom: 3rem; }
      @media (max-width: 1200px) {
        .banner_left .banner_content > h5 {
          margin-top: 1rem;
          margin-bottom: 1rem; } }
    .banner_left .banner_content > span {
      color: var(--material-theme-sys-light-on-primary, #FFF);
      text-align: center;
      font-family: var(--font-tertiary);
      font-size: 55.552px;
      font-weight: var(--fw-regular);
      line-height: 30.091px;
      letter-spacing: -0.21px; }
      @media (max-width: 1200px) {
        .banner_left .banner_content > span {
          font-size: 48px;
          line-height: 26px; } }
      @media (max-width: 576px) {
        .banner_left .banner_content > span {
          font-size: 48px;
          line-height: unset; } }

.about_us {
  padding: 10rem 0 5rem; }
  @media (max-width: 1200px) {
    .about_us {
      padding: 6rem 0 3rem; } }
  @media (max-width: 768px) {
    .about_us {
      padding: 4rem 0 2rem; } }
  @media (max-width: 576px) {
    .about_us {
      padding: 2.5rem 1rem 4rem; } }

.meet_up {
  padding: 5rem 0; }
  @media (max-width: 1200px) {
    .meet_up {
      padding: 3rem 0; } }
  @media (max-width: 768px) {
    .meet_up {
      padding: 4rem 0 2rem; } }
  @media (max-width: 576px) {
    .meet_up {
      padding: 2.5rem 1rem 4rem; } }

.card_img {
  max-width: 61.6rem;
  border-radius: 1.8rem; }
  @media (max-width: 1200px) {
    .card_img {
      max-width: 40rem;
      margin: auto; } }
  @media (max-width: 576px) {
    .card_img {
      max-width: 100%; } }
  .card_img > div {
    width: 100%;
    min-height: 32rem;
    border-radius: 1.8rem;
    background-color: #CDCDCD; }
    @media (max-width: 576px) {
      .card_img > div {
        min-height: 20rem; } }
    .card_img > div > img {
      max-width: 100%;
      height: 100%;
      display: block;
      border-radius: 1.8rem;
      object-fit: cover; }

.card_logo {
  display: grid;
  align-items: center;
  justify-content: center;
  min-width: 365px;
  margin: auto;
  margin-bottom: 3rem; }
  @media (max-width: 1200px) {
    .card_logo {
      margin-bottom: 2rem; } }
  .card_logo > p {
    color: var(--Schemes-On-Surface, #191C20);
    text-align: center;
    font-family: var(--font-tertiary);
    font-size: var(--fs-xl);
    font-weight: var(--fw-regular);
    line-height: var(--lh-sm);
    margin-bottom: 5rem; }
    @media (max-width: 1200px) {
      .card_logo > p {
        margin-bottom: 0.5rem; 
		}
		.card-logoimage {
			margin-bottom: 30px;
		}	
}

.socailIcon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--material-theme-sys-light-on-primary, #FFF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  margin-bottom: 4rem;
  cursor: pointer; }
  @media (max-width: 576px) {
    .socailIcon {
      margin: 0 5px;
      margin-bottom: 3rem; } }

.copyright-text {
  color: var(--Schemes-Surface-Variant, #DFE2EB);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 26px;
  opacity: 0.75;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 5rem; }

.locationSection .container {
  position: relative; }
  .locationSection .container .dq--button {
    position: absolute;
    bottom: 20px; }
    @media (max-width: 1200px) {
      .locationSection .container .dq--button {
        position: unset;
        margin-top: 20px; } }

.slider {
  width: 70%;
  margin-top: 6rem;
  padding-top: unset !important;
  padding-bottom: unset !important; }
  @media (max-width: 992px) {
    .slider {
      margin: 20px auto; } }
  .slider .sliderCard {
    width: 30rem;
    height: 44.5rem;
    flex-shrink: 0;
    border-radius: 18.695px;
    background: #FFF; }
    .slider .sliderCard .slidercardBanner {
      width: 100%;
      height: 32rem; }
      .slider .sliderCard .slidercardBanner > img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-top-right-radius: 1.9rem;
        border-top-left-radius: 1.9rem; }
    .slider .sliderCard .cardInfor {
      padding: 2rem 0rem; }
      .slider .sliderCard .cardInfor > h2 {
        color: var(--Schemes-On-Surface, #191C20);
        text-align: center;
        font-family: var(--font-tertiary);
        font-size: var(--fs-sm);
        font-weight: var(--fw-regular);
        letter-spacing: 1.6px;
        text-transform: uppercase;
        margin-bottom: 2rem;
        white-space: nowrap; }
      .slider .sliderCard .cardInfor > span {
        color: var(--Schemes-On-Surface-Variant, #858587);
        text-align: center;
        font-family: var(--font-primary);
        font-size: var(--fs-xs);
        font-weight: var(--fw-regular);
        line-height: var(--lh-body-sm);
        /* 142.857% */
        letter-spacing: 0.25px;
        display: block; }
  .slider .slider-nav-btn {
    background-color: transparent;
    border: unset;
    position: absolute;
    right: -15%;
    bottom: 30%;
    cursor: pointer; }
    .slider .slider-nav-btn.right-nav {
      right: -37%; }
    .slider .slider-nav-btn .dq--rotate-right {
      transform: rotate(180deg); }
    @media (max-width: 992px) {
      .slider .slider-nav-btn {
        bottom: -20%;
        right: unset; }
        .slider .slider-nav-btn.right-nav {
          right: 0%; } }
    @media (max-width: 768px) {
      .slider .slider-nav-btn {
        bottom: -28%; } }
    @media (max-width: 576px) {
      .slider .slider-nav-btn {
        bottom: -39%; } }

.slick-slide {
  margin: 0px 10px; }

.slick-slide img {
  width: 100%; }

.slick-prev:before,
.slick-next:before {
  content: '';
  color: black !important; }

.slick-prev {
  left: unset !important;
  right: -15px !important; }

.slick-next {
  right: -50px !important; }

.slick-slide {
  transition: all ease-in-out .3s;
  opacity: 1; }

.slick-active {
  opacity: .5; }

.slick-disabled {
  opacity: 0.5;
  cursor: unset !important; }

.slick-active {
  opacity: 1; }

.slick-current {
  opacity: 1; }

.keynote-header {
  color: var(--Schemes-On-Surface, #191C20);
  font-family: var(--font-tertiary);
  font-size: var(--fs-xxxl);
  font-weight: var(--fw-regular);
  line-height: var(--lh-xxxl);
  letter-spacing: -0.25px;
  text-transform: uppercase;
  width: 30%;
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center; }
  @media (max-width: 992px) {
    .keynote-header {
      width: unset;
      position: unset;
      right: unset;
      top: unset;
      transform: unset;
      margin: 20px 26% 0; } }
  @media (max-width: 768px) {
    .keynote-header {
      margin: 20px auto; } }

.aboutUs {
  width: 50%; }
  .aboutUs .sliderCard {
    border-radius: 18.695px;
    background: rgba(255, 255, 255, 0.25); }

.marvelour_wrapper {
  padding-bottom: 5rem; }
  @media (max-width: 768px) {
    .marvelour_wrapper {
      padding-bottom: 5rem;
      height: 630px !important; } }
  .marvelour_wrapper > h3 {
    color: var(--Schemes-On-Secondary, #1A1403);
    /* material-theme/headline/large */
    font-family: var(--font-secondary);
    font-size: var(--fs-body);
    font-weight: var(--fw-semi-bold);
    line-height: var(--lh-xl);
    letter-spacing: 1px;
    text-transform: uppercase; }
  .marvelour_wrapper > h2 {
    color: var(--Schemes-On-Secondary, #1A1403);
    /* material-theme/display/large */
    font-family: var(--font-tertiary);
    font-size: 48px;
    font-weight: var(--fw-regular);
    line-height: var(--lh-xxxl);
    /* 133.333% */
    letter-spacing: -0.25px;
    text-transform: uppercase;
    padding-bottom: 5rem; }
    @media (max-width: 768px) {
      .marvelour_wrapper > h2 {
        padding-bottom: 2rem; } }
  .marvelour_wrapper .center-slider .slick-slide {
    border-radius: 18.695px;
    background: rgba(255, 255, 255, 0.25);
    color: #FFF;
    height: 362px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
    padding: 6rem 8.5rem; }
    @media (max-width: 460px) {
      .marvelour_wrapper .center-slider .slick-slide {
        padding: 4rem; } }
  .marvelour_wrapper .center-slider .slider-nav-btn {
    position: absolute;
    z-index: 1;
    background-color: transparent;
    border: unset;
    bottom: -30%; }
    .marvelour_wrapper .center-slider .slider-nav-btn.left-nav {
      left: 45%; }
      @media (max-width: 1400px) {
        .marvelour_wrapper .center-slider .slider-nav-btn.left-nav {
          left: 5%; } }
    .marvelour_wrapper .center-slider .slider-nav-btn.right-nav {
      right: 45%; }
      @media (max-width: 1400px) {
        .marvelour_wrapper .center-slider .slider-nav-btn.right-nav {
          right: 5%; } }
      .marvelour_wrapper .center-slider .slider-nav-btn.right-nav > img {
        transform: rotate(-180deg); }

.center-slider .slick-slide,
.center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] {
  transform: scale(0.8, 0.8);
  transition: all 0.4s ease-in-out; }

/* Active center slide (You can change anything here for cenetr slide)*/
.center-slider .slick-center,
.center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
  transform: scale(1);
  border-radius: 18.695px;
  background: rgba(255, 255, 255, 0.25); }

.center-slider .slick-current.slick-active {
  transform: scale(1);
  border-radius: 18.695px;
  background: rgba(255, 255, 255, 0.25);
  padding: 4rem 8.5rem; }
  @media (max-width: 420px) {
    .center-slider .slick-current.slick-active {
      padding: 4rem 3.5rem;
      margin-right: 10px;
      margin-left: 10px; } }

.center-slider .card-wrapper .card-inner {
  position: relative; }
  .center-slider .card-wrapper .card-inner > p {
    color: var(--Schemes-On-Secondary-Container, #241A00);
    /* material-theme/body/large v1 */
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-regular);
    line-height: var(--lh-body);
    width: 385px;
    position: relative;
    padding: 0 20px; }
    @media (max-width: 992px) {
      .center-slider .card-wrapper .card-inner > p {
        width: 320px; } }
    @media (max-width: 768px) {
      .center-slider .card-wrapper .card-inner > p {
        width: 100%;
        padding: 0 30px; } }
    @media (max-width: 460px) {
      .center-slider .card-wrapper .card-inner > p {
        width: unset;
        min-height: 200px; } }
  .center-slider .card-wrapper .card-inner > img {
    position: absolute;
    width: 28px;
    height: 28px; }
    @media (max-width: 768px) {
      .center-slider .card-wrapper .card-inner > img {
        width: 18px;
        height: 18px; } }
    .center-slider .card-wrapper .card-inner > img.top-annotation {
      left: -5%;
      top: 0; }
      @media (max-width: 768px) {
        .center-slider .card-wrapper .card-inner > img.top-annotation {
          left: 0%; } }
    .center-slider .card-wrapper .card-inner > img.bottom-annotation {
      right: 0;
      bottom: 0; }
      @media (max-width: 768px) {
        .center-slider .card-wrapper .card-inner > img.bottom-annotation {
          right: 0%; } }

.center-slider .card-wrapper .card-imagesection {
  display: flex;
  align-items: center;
  margin-top: 2rem; }
  @media (max-width: 768px) {
    .center-slider .card-wrapper .card-imagesection {
      display: flex;
      text-align: center;
      justify-content: center;
      flex-wrap: wrap;
      margin: auto;
      margin-top: 10px; } }
  .center-slider .card-wrapper .card-imagesection > div {
    width: 75px;
    height: 75px; }
    @media (max-width: 768px) {
      .center-slider .card-wrapper .card-imagesection > div {
        width: unset;
        height: unset; } }
    .center-slider .card-wrapper .card-imagesection > div > img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%; }
  .center-slider .card-wrapper .card-imagesection .image-content {
    display: grid;
    align-items: center;
    margin-left: 2rem; }
    .center-slider .card-wrapper .card-imagesection .image-content > h3 {
      color: var(--Schemes-On-Secondary, #1A1403);
      font-family: var(--font-primary);
      font-size: var(--fs-xl);
      font-weight: var(--fw-semi-bold);
      line-height: var(--lh-xl-lg);
      text-transform: uppercase;
      white-space: nowrap;
      text-align: left; }
    .center-slider .card-wrapper .card-imagesection .image-content > h5 {
      color: var(--material-theme-sys-light-on-secondary-container, var(--Schemes-On-Secondary-Container, #241A00));
      font-family: var(--font-primary);
      font-size: var(--fs-xs);
      font-weight: var(--fw-regular);
      line-height: var(--lh-body);
      white-space: nowrap;
      text-align: left; }

.register_section .text-headerlarge {
  color: var(--Schemes-On-Surface, #191C20);
  text-align: center;
  /* material-theme/display/large */
  font-family: var(--font-tertiary);
  font-size: var(--fs-xxxl);
  font-weight: var(--fw-regular);
  line-height: var(--lh-xxxl);
  letter-spacing: -0.25px;
  text-transform: uppercase;
  margin-top: 5rem;
  margin-bottom: 4rem; }

.register_section .register_date {
  color: var(--Schemes-On-Surface, #191C20);
  font-family: var(--font-tertiary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-md);
  margin-bottom: 6rem;
  margin-top: 4rem; }
  .register_section .register_date > sup {
    color: var(--material-theme-sys-light-on-surface, var(--Schemes-On-Surface, #191C20));
    font-family: var(--font-primary);
    font-size: var(--fs-xs);
    font-weight: var(fw-medium);
    line-height: var(--lh-body-sm);
    /* 142.857% */
    letter-spacing: 0.25px; }

iframe {
  border-radius: 18.69px;
  width: 762px;
  height: 538px; }
  @media (max-width: 768px) {
    iframe {
      width: 100%;
      height: 538px; } }

.lightbox-images .gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
  width: 26rem;
  height: 26rem; }

.lightbox-images .gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35); }

.lightbox-images .lightbox-modal .modal-content {
  background-color: #001C37 !important; }

@keyframes zoomin {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.05); }
  100% {
    transform: scale(1); } }

.gallery-item {
  display: block;
  width: 259px;
  height: 259px;
  padding-bottom: 10px;
  margin: auto;
  justify-content: center;
  display: flex; }
  @media (max-width: 768px) {
    .gallery-item {
      width: 100%;
      height: auto; } }

.gallery-item img {
  transition: box-shadow 0.2s;
  border-radius: 18.69px;
  width: 100%;
  height: 100%;
  object-fit: cover; }

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100); }

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
  background: rgba(13, 26, 81, 0.6); }

.lightbox-modal .lightbox-content {
  width: 100%; }

.lightbox-modal .carousel-indicators {
  margin-bottom: 0; }

.lightbox-modal .carousel-inner {
  width: 75%; }

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite; }

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  color: var(--carousel-text) !important; }

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto; }

.lightbox-modal .carousel-control-prev {
  left: 1.25rem; }

.lightbox-modal .carousel-control-next {
  right: 1.25rem; }

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%; } }

[data-bs-theme="dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme="dark"] .lightbox-modal .carousel-control-prev-icon {
  filter: none; }

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: .6;
  font-size: 1.25rem; }

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor; }

.panelwrapper {
  padding: 20px; }
  @media (max-width: 1200px) {
    .panelwrapper {
      display: flex;
      align-items: center;
      justify-content: space-around;
      padding: 0; } }
  @media (max-width: 768px) {
    .panelwrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      margin: auto;
      justify-content: center; } }
  .panelwrapper.lastcol {
    margin-top: 15rem; }
    @media (max-width: 1200px) {
      .panelwrapper.lastcol {
        margin-top: unset; } }
  .panelwrapper .panelCard {
    width: 30rem;
    height: 44.5rem;
    flex-shrink: 0;
    border-radius: 18.695px;
    background: var(--Schemes-Surface-Tint, #233996);
    margin-bottom: 40px; }
    @media (max-width: 1200px) {
      .panelwrapper .panelCard {
        margin: 20px; } }
    .panelwrapper .panelCard .slidercardBanner {
      width: 100%;
      height: 32rem; }
      .panelwrapper .panelCard .slidercardBanner > img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-top-right-radius: 1.9rem;
        border-top-left-radius: 1.9rem; }
    .panelwrapper .panelCard .cardInfor {
      padding: 2rem 0rem; }
      .panelwrapper .panelCard .cardInfor > h2 {
        color: var(--Schemes-On-Primary, #FFF);
        text-align: center;
        font-family: var(--font-tertiary);
        font-size: var(--fs-sm);
        font-weight: var(--fw-regular);
        letter-spacing: 1.6px;
        text-transform: uppercase;
        margin-bottom: 18px; }
      .panelwrapper .panelCard .cardInfor > span {
        color: var(--Schemes-On-Primary, #FFF);
        text-align: center;
        font-family: var(--font-primary);
        font-size: var(--fs-xs);
        font-weight: var(--fw-regular);
        line-height: 20px;
        letter-spacing: 0.25px;
        display: block; }

.panel-header {
  width: 300px;
  margin-bottom: 4rem; }
  @media (max-width: 1200px) {
    .panel-header {
      width: unset;
      margin-bottom: 0; } }
  .panel-header > h3 {
    color: var(--Schemes-Primary-Container, #D2E4FF);
    /* material-theme/headline/large */
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    /* 222.222% */
    letter-spacing: 1px;
    text-transform: uppercase; }
  .panel-header > h2 {
    color: var(--Schemes-On-Primary, #FFF);
    /* material-theme/display/small */
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    /* 137.5% */
    text-transform: uppercase;
    text-align: left; }

.mobilemenu-socailIcon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; }

.ytp-chrome-top,
.ytp-show-cards-title {
  display: none !important; }

.ytp-chrome-top-buttons {
  display: none; }

.registraion-modal {
  max-width: 127rem;
  padding: 20px; }
  .registraion-modal .modal-content {
    background-color: #FFF; }

.video-wrapper > iframe .ytp-chrome-top,
.video-wrapper > iframe .ytp-chrome-bottom {
  display: none !important; }

:root {
  /* -------------------------------- 
    Typography
    -------------------------------- */
  --font-primary: 'Robots', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-tertiary: 'Audiowide', sans-serif;
  /* set base values */
  --text-base-size: 10px;
  /* type scale */
  --fs-display-text: calc(1rem * 5.7);
  --fs-xxxl: calc(1rem * 4.8);
  --fs-xxl: calc(1rem * 3.2);
  --fs-xl: calc(1rem * 2.4);
  --fs-md: calc(1rem * 2.2);
  --fs-md-small: calc(1rem * 2);
  --fs-body: calc(1rem * 1.8);
  --fs-sm: calc(1rem * 1.6);
  --fs-xs: calc(1rem * 1.4);
  --fs-xxs: calc(1rem * 1.2);
  /* font-weight */
  --fw-bold: 700;
  --fw-semi-bold: 600;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-light: 300;
  /* line-height */
  --lh-xxxl: calc(1rem * 6.4);
  --lh-xxl: calc(1rem * 5.2);
  --lh-xl-lg: calc(1rem * 4.4);
  --lh-xl: calc(1rem * 4);
  --lh-md: calc(1rem * 3.8);
  --lh-sm: calc(1rem * 3.2);
  --lh-body: calc(1rem * 2.8);
  --lh-body-sm: calc(1rem * 2);
  /* letter-spacing */
  --ls-body: .54px; }

@media screen and (max-width: 1200px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 5);
    --fs-xxxl: calc(1rem * 4.6);
    --fs-xxl: calc(1rem * 3);
    --fs-xl: calc(1rem * 2.2);
    /* line-height */
    --lh-xxxl: calc(1rem * 6);
    --lh-xxl: calc(1rem * 5);
    --lh-xl-lg: calc(1rem * 4.2);
    --lh-xl: calc(1rem * 3.8);
    --lh-md: calc(1rem * 3.4);
    --lh-sm: calc(1rem * 3);
    --lh-body: calc(1rem * 2.6); } }

@media screen and (max-width: 992px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.6);
    --fs-xxxl: calc(1rem * 4.4);
    --fs-xxl: calc(1rem * 2.8);
    --fs-xl: calc(1rem * 2.1);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.8);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 768px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.4);
    --fs-xxxl: calc(1rem * 4.2);
    --fs-xxl: calc(1rem * 2.6);
    --fs-xl: calc(1rem * 2);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.6);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 576px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4);
    --fs-xxxl: calc(1rem * 4);
    --fs-xxl: calc(1rem * 2.4);
    --fs-xl: calc(1rem * 1.8);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.2);
    --lh-xxl: calc(1rem * 4.4);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body,
html {
  width: 100%;
  font-family: var(--font-primary);
  font-size: var(--text-base-size);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-light);
  background-color: #FFFFFF !important; }

.dq--button {
  display: flex;
  justify-self: flex-start;
  justify-content: center;
  align-items: center;
  border: unset;
  cursor: pointer;
  border-radius: 5px;
  background: var(--Schemes-Tertiary, #F84153);
  color: var(--material-theme-sys-light-surface, #F8F9FF);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-medium);
  line-height: var(--lh-md);
  padding: 0.8rem 2.4rem; }
  .dq--button > img {
    margin-left: 1rem;
    width: 2.4rem;
    height: 2.4rem; }

.text-subheader {
  color: var(--Schemes-On-Surface-Variant, #858587);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl);
  letter-spacing: 1px;
  text-transform: uppercase; }

.text-header {
  color: var(--Schemes-On-Surface, #191C20);
  /* material-theme/display/small */
  font-family: var(--font-primary);
  font-size: var(--fs-xxl);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl-lg);
  /* 137.5% */
  text-transform: uppercase; }

.text-content {
  color: var(--Schemes-On-Surface, #191C20);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-regular);
  line-height: var(--lh-md); }
  .text-content > span {
    color: var(--Schemes-Tertiary, #F84153);
    font-weight: var(--fw-bold); }

.background-blue {
  background: var(--Schemes-Background, #F5F9FF); }

.background-yellow {
  background: var(--Schemes-Secondary, #FFCD29); }

.background-darkblue {
  background: var(--Schemes-Primary, #0D1A51);
  overflow: hidden;
  padding: 0 0 8.5rem; }
  @media (max-width: 1400px) {
    .background-darkblue {
      padding: 8rem 0; } }

section {
  padding: 10rem 0;
  background: var(--Schemes-Surface, #FFF); }
  @media (max-width: 1200px) {
    section {
      padding: 5rem 0; } }


/* -------------------------------- 
Scroll Bar
-------------------------------- */
::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

/* Track */
::-webkit-scrollbar-track {
  background: var(--material-theme-sys-light-surface, #F8F9FF); }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #dfe2ee;
  border-radius: 10px; }

.lightbox-col {
  flex: 0 0 auto;
  width: 50%; }
  @media (max-width: 576px) {
    .lightbox-col {
      width: 100%; } }

.registrationForm {
  padding: 2.5rem;
  background: #FFFFFF;
  max-width: 500px;
  width: 100%;
  border-radius: 38px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  margin: auto;
  max-width: 127rem; }
  .registrationForm > form > h1 {
    color: var(--Schemes-On-Surface, #191C20);
    text-align: center;
    /* material-theme/headline/large */
    font-family: var(--font-secondary);
    font-size: var(--fs-body);
    font-weight: var(--fw-semi-bold);
    line-height: var(--lh-xl);
    letter-spacing: 1px;
    text-transform: uppercase; }
  .registrationForm > form > h2 {
    color: var(--Schemes-Primary, #0D1A51);
    text-align: center;
    font-family: var(--font-primary);
    font-size: var(--lh-sm);
    font-weight: var(--fw-bold);
    line-height: 88px;
    letter-spacing: 1.92px; }
    @media (max-width: 992px) {
      .registrationForm > form > h2 {
        line-height: 4rem; } }
  .registrationForm > form .form-group {
    position: relative;
    margin-bottom: 3rem; }
    .registrationForm > form .form-group > label {
      display: block;
      color: #010112;
      font-family: var(--font-primary);
      font-size: var(--fs-xs);
      font-weight: var(--fw-regular);
      line-height: var(--lh-body); }
    .registrationForm > form .form-group > input {
      height: 42px;
      padding: 12px 16px;
      width: 100%;
      font-size: var(--fs-body);
      outline: none;
      color: #000;
      border-radius: 6px;
      border-top: 0;
      border-left: 0;
      border-right: 0;
      border-bottom: 1px solid #8b93b3;
      border-radius: 0;
      padding-left: 0;
      background: unset; }

.radioBtn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .radioBtn-group .radion_container {
    display: block;
    position: relative;
    padding-left: 40px;
    padding-right: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    font-size: var(--fs-body);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .radioBtn-group .radion_container > input {
      position: absolute;
      opacity: 0;
      cursor: pointer; }

/* Hide the browser's default radio button */
.radion_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer; }

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #001C37; }

/* On mouse-over, add a grey background color */
/* When the radio button is checked, add a blue background */
.radion_container input:checked ~ .checkmark {
  background-color: #FFFFFF;
  border: 1px solid #233996; }

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the indicator (dot/circle) when checked */
.radion_container input:checked ~ .checkmark:after {
  display: block; }

/* Style the indicator (dot/circle) */
.radion_container .checkmark:after {
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #233996; }

.form-group .inputField {
  display: none; }

.error {
  color: red;
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body); }

.designquest_modal .modal-content {
  border-radius: 37.38px; }
  .designquest_modal .modal-content .modal-header {
    border-bottom: unset !important;
    padding: 2rem 3rem; }
    .designquest_modal .modal-content .modal-header .btn-close {
      border: unset !important;
      box-shadow: unset !important; }
  .designquest_modal .modal-content .modal-body {
    padding: 5rem 5rem 4rem;
    box-shadow: 1px 1px 12px #a4aac9;
    border-radius: 30px; }
    .designquest_modal .modal-content .modal-body .modaltitle {
      text-align: center;
      font-family: var(--font-primary);
      font-size: var(--fs-md);
      font-weight: var(--fw-semi-bold);
      line-height: 28px; }
      .designquest_modal .modal-content .modal-body .modaltitle.failure_messgae {
        color: var(--material-theme-sys-light-error, #BA1A1A); }
      .designquest_modal .modal-content .modal-body .modaltitle.sucess_messgae {
        color: var(--material-theme-sys-light-success, #1AA703); }
    .designquest_modal .modal-content .modal-body > img {
      margin: auto;
      display: flex;
      margin: auto;
      padding: 3rem 0; }
    .designquest_modal .modal-content .modal-body > p {
      color: var(--material-theme-sys-light-high-contrast-on-surface, #282B2D);
      /* material-theme/body/medium */
      font-family: var(--font-primary);
      font-size: var(--fs-xs);
      font-weight: var(--fw-regular);
      line-height: 20px;
      letter-spacing: 0.25px; }
    .designquest_modal .modal-content .modal-body > span {
      font-size: var(--fs-body);
      font-family: var(--font-secondary);
      font-weight: var(--fw-semi-bold);
      text-align: center;
      justify-content: center;
      display: flex;
      color: var(--Schemes-On-Surface, #191C20); }
      .designquest_modal {
			background: rgba(0,0,0,0.5);
	   }

.dq--modal_close {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: var(--Schemes-Primary-Container, #D2E4FF);
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 2rem;
  top: 2rem; }
  .dq--modal_close > img {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 20px;
    height: 20px; }

:root {
  /* -------------------------------- 
    Typography
    -------------------------------- */
  --font-primary: 'Robots', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-tertiary: 'Audiowide', sans-serif;
  /* set base values */
  --text-base-size: 10px;
  /* type scale */
  --fs-display-text: calc(1rem * 5.7);
  --fs-xxxl: calc(1rem * 4.8);
  --fs-xxl: calc(1rem * 3.2);
  --fs-xl: calc(1rem * 2.4);
  --fs-md: calc(1rem * 2.2);
  --fs-md-small: calc(1rem * 2);
  --fs-body: calc(1rem * 1.8);
  --fs-sm: calc(1rem * 1.6);
  --fs-xs: calc(1rem * 1.4);
  --fs-xxs: calc(1rem * 1.2);
  /* font-weight */
  --fw-bold: 700;
  --fw-semi-bold: 600;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-light: 300;
  /* line-height */
  --lh-xxxl: calc(1rem * 6.4);
  --lh-xxl: calc(1rem * 5.2);
  --lh-xl-lg: calc(1rem * 4.4);
  --lh-xl: calc(1rem * 4);
  --lh-md: calc(1rem * 3.8);
  --lh-sm: calc(1rem * 3.2);
  --lh-body: calc(1rem * 2.8);
  --lh-body-sm: calc(1rem * 2);
  /* letter-spacing */
  --ls-body: .54px; }

@media screen and (max-width: 1200px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 5);
    --fs-xxxl: calc(1rem * 4.6);
    --fs-xxl: calc(1rem * 3);
    --fs-xl: calc(1rem * 2.2);
    /* line-height */
    --lh-xxxl: calc(1rem * 6);
    --lh-xxl: calc(1rem * 5);
    --lh-xl-lg: calc(1rem * 4.2);
    --lh-xl: calc(1rem * 3.8);
    --lh-md: calc(1rem * 3.4);
    --lh-sm: calc(1rem * 3);
    --lh-body: calc(1rem * 2.6); } }

@media screen and (max-width: 992px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.6);
    --fs-xxxl: calc(1rem * 4.4);
    --fs-xxl: calc(1rem * 2.8);
    --fs-xl: calc(1rem * 2.1);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.8);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 768px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4.4);
    --fs-xxxl: calc(1rem * 4.2);
    --fs-xxl: calc(1rem * 2.6);
    --fs-xl: calc(1rem * 2);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.8);
    --lh-xxl: calc(1rem * 4.6);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

@media screen and (max-width: 576px) {
  :root {
    /* type scale */
    --fs-display-text: calc(1rem * 4);
    --fs-xxxl: calc(1rem * 4);
    --fs-xxl: calc(1rem * 2.4);
    --fs-xl: calc(1rem * 1.8);
    /* line-height */
    --lh-xxxl: calc(1rem * 5.2);
    --lh-xxl: calc(1rem * 4.4);
    --lh-xl-lg: calc(1rem * 4);
    --lh-xl: calc(1rem * 3.6);
    --lh-md: calc(1rem * 3.2);
    --lh-sm: calc(1rem * 2.8);
    --lh-body: calc(1rem * 2.4); } }

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body,
html {
  width: 100%;
  font-family: var(--font-primary);
  font-size: var(--text-base-size);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-light);
  background-color: #FFFFFF !important; }

.dq--button {
  display: flex;
  justify-self: flex-start;
  justify-content: center;
  align-items: center;
  border: unset;
  cursor: pointer;
  border-radius: 5px;
  background: var(--Schemes-Tertiary, #F84153);
  color: var(--material-theme-sys-light-surface, #F8F9FF);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-medium);
  line-height: var(--lh-md);
  padding: 0.8rem 2.4rem; }
  .dq--button > img {
    margin-left: 1rem;
    width: 2.4rem;
    height: 2.4rem; }

.text-subheader {
  color: var(--Schemes-On-Surface-Variant, #858587);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl);
  letter-spacing: 1px;
  text-transform: uppercase; }

.text-header {
  color: var(--Schemes-On-Surface, #191C20);
  /* material-theme/display/small */
  font-family: var(--font-primary);
  font-size: var(--fs-xxl);
  font-weight: var(--fw-semi-bold);
  line-height: var(--lh-xl-lg);
  /* 137.5% */
  text-transform: uppercase; }

.text-content {
  color: var(--Schemes-On-Surface, #191C20);
  font-family: var(--font-primary);
  font-size: var(--fs-md-small);
  font-weight: var(--fw-regular);
  line-height: var(--lh-md); }
  .text-content > span {
    color: var(--Schemes-Tertiary, #F84153);
    font-weight: var(--fw-bold); }

.background-blue {
  background: var(--Schemes-Background, #F5F9FF); }

.background-yellow {
  background: var(--Schemes-Secondary, #FFCD29); }

.background-darkblue {
  background: var(--Schemes-Primary, #0D1A51);
  overflow: hidden;
  padding: 0 0 8.5rem; }
  @media (max-width: 1400px) {
    .background-darkblue {
      padding: 8rem 0; } }

section {
  padding: 10rem 0;
  background: var(--Schemes-Surface, #FFF); }
  @media (max-width: 1200px) {
    section {
      padding: 5rem 0; } }

/* -------------------------------- 
Scroll Bar
-------------------------------- */
::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

/* Track */
::-webkit-scrollbar-track {
  background: var(--material-theme-sys-light-surface, #F8F9FF); }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #dfe2ee;
  border-radius: 10px; }

.lightbox-col {
  flex: 0 0 auto;
  width: 50%; }
  @media (max-width: 576px) {
    .lightbox-col {
      width: 100%; } }

.timelinewrapper {
  width: 60%;
  margin: 30px auto;
  position: relative;
  padding: 0 10px; }
  @media (max-width: 1200px) {
    .timelinewrapper {
      width: 75%; } }
  @media (max-width: 992px) {
    .timelinewrapper {
      width: 100%; } }
  .timelinewrapper:before {
    content: "";
    /* width: 3px; */
    height: 98%;
    /* background: #ee4d4d; */
    left: 50%;
    top: 0;
    position: absolute;
    border: 1px dotted red; }
    @media (max-width: 768px) {
      .timelinewrapper:before {
        left: 10px; } }
  .timelinewrapper:after {
    content: "";
    clear: both;
    display: table;
    width: 100%; }
  .timelinewrapper .timeline-item {
    margin-bottom: 30px;
    position: relative; }
    .timelinewrapper .timeline-item::before {
      content: "";
      display: block;
      width: 100%;
      clear: both; }
    .timelinewrapper .timeline-item::after {
      content: "";
      display: block;
      width: 100%;
      clear: both; }
    .timelinewrapper .timeline-item .timeline-icon {
      width: 56px;
      height: 56px;
      position: absolute;
      top: 0;
      left: 50%;
      margin-left: -32px; }
      @media (max-width: 768px) {
        .timelinewrapper .timeline-item .timeline-icon {
          left: 0; } }
    .timelinewrapper .timeline-item .timeline-content {
      width: 310px;
      background: #fff;
      padding: 2rem 2rem;
      text-align: center;
      border-radius: 2rem;
      background: var(--Schemes-Surface, #FFF);
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      min-height: 124px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
      @media (max-width: 768px) {
        .timelinewrapper .timeline-item .timeline-content {
          width: 360px;
          margin-left: 10%; } }
      @media (max-width: 576px) {
        .timelinewrapper .timeline-item .timeline-content {
          width: 100%;
          margin-left: 5%; } }
      .timelinewrapper .timeline-item .timeline-content.right {
        float: right; }
        @media (max-width: 768px) {
          .timelinewrapper .timeline-item .timeline-content.right {
            float: left; } }
      .timelinewrapper .timeline-item .timeline-content > h2 {
        color: var(--Schemes-On-Surface, #191C20);
        font-family: var(--font-primary);
        font-size: var(--fs-md);
        font-weight: var(--fw-semi-bold);
        line-height: var(--lh-body);
        margin-bottom: 15px; }
      .timelinewrapper .timeline-item .timeline-content > h5 {
        color: var(--Schemes-On-Surface-Variant, #858587);
        font-family: var(--font-primary);
        font-size: var(--fs-xs);
        font-weight: var(--fw-regular);
        line-height: var(--lh-body-sm);
        letter-spacing: 0.25px;
        margin-bottom: 1.5rem; }
      .timelinewrapper .timeline-item .timeline-content .badge {
        color: var(--Schemes-Tertiary, #F84153);
        font-family: var(--font-primary);
        font-size: var(--fs-xxs);
        font-weight: var(--fw-regular);
        line-height: 16px;
        letter-spacing: 0.4px;
        border-radius: 9px;
        background: var(--Schemes-Tertiary-Container, #FFDAD9);
        padding: 1px 8px;
        justify-content: center;
        align-items: center;
        margin-bottom: 5px; }
      .timelinewrapper .timeline-item .timeline-content > p {
        color: var(--Schemes-Surface-Tint, #233996);
        text-align: center;
        font-family: var(--font-primary);
        font-size: var(--fs-xs);
        font-weight: var(--fw-medium);
        line-height: var(--lh-body-sm);
        letter-spacing: 0.1px; }
    .timelinewrapper .timeline-item .time-block {
      color: var(--Schemes-On-Surface, #191C20);
      font-family: var(--font-tertiary);
      font-size: var(--fs-xl);
      font-weight: var(--fw-regular);
      line-height: var(--lh-sm);
      width: 300px;
      padding-top: 20px; }
      @media (max-width: 768px) {
        .timelinewrapper .timeline-item .time-block {
          display: none; } }
      .timelinewrapper .timeline-item .time-block.right {
        float: right; }
        @media (max-width: 768px) {
          .timelinewrapper .timeline-item .time-block.right {
            float: left; } }
    .timelinewrapper .timeline-item.right {
      float: right; }

.mobile-timerespoosnive {
  display: none; }
  @media (max-width: 768px) {
    .mobile-timerespoosnive {
      display: block;
      color: var(--Schemes-On-Surface, #191C20);
      font-family: var(--font-tertiary);
      font-size: var(--fs-xl);
      font-weight: var(--fw-regular);
      line-height: var(--lh-sm);
      padding-top: 20px;
      display: block;
      left: 0;
      margin-left: auto;
      margin-left: 100px;
      margin-bottom: 10px; } }
  @media (max-width: 576px) {
    .mobile-timerespoosnive {
      margin-left: 50px; } }

body {
  font-family: var(--font-primary); }

a {
  text-decoration: none; }

/* -------------------------------- 
Typography
-------------------------------- */
.font-primary {
  font-family: var(--font-primary) !important; }

.font-secondary {
  font-family: var(--font-secondary) !important; }

.font-tertiary {
  font-family: var(--font-tertiary) !important; }

/* -------------------------------- 
Media Breakpoints
-------------------------------- */
@media screen and (min-width: 1700px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px; } }

@media screen and (max-width: 1400px) and (min-width: 1200px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px; } }

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 960px; } }

@media screen and (max-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: calc(100% - 3rem); } 


}


@media screen and (max-width: 820px) and (min-width: 576px) {
	.banner_left > img {
		width: 70% !important;
		position: relative;
		left: 11%;
		top: 23%;
	}
	.banner_left .banner_content {
		left: 47%;
		top: 58%;
	}
	.banner-inner .dq--button {
		position: relative;
		left: 24%;
	}
	.card_img > div {
		width: 100%;
		min-height: unset;
		}
	.locationSection .container .dq--button {
		position: relative;
		margin-top: 50px;
		left: 33%;
	}
	
   }

/*------- Update mobile menu from hamburger to navigation item --*/
.dq--menu-box ul li a {
    color: var(--Schemes-On-Surface, #191C20);
    text-align: right;
    font-family: var(--font-secondary);
    font-size: var(--fs-md-small);
    font-weight: var(--fw-regular);
    line-height: var(--lh-md);
}

 @media (max-width: 576px) {
    .slick-list {
		margin-top: 50px !important;
	}
	 
	 .marvelour_wrapper .center-slider .slider-nav-btn {
		top: -60px !important;
		bottom: inherit !important;
	}
	 
	 .banner {
		 padding-top: 1rem;
		 background-size: auto;
	 }
	 .marqueea {
		display: none !important;
	}
	 
	.banner-inner > h3 {
		font-size: 3rem;
	 }
	 
.marqueea-mobile {
	line-height: 36px;
	font-size: 18px;
	color: #fff;
	display: block !important;
	background: rgba(0,0,0,0.5);
    border-radius: 20px;
    padding: 10px
	}
	 
	.bubble3 {
		display: none;
	}
	 
	.form-message {
		top: 0px !important;
		padding: 20px 0px !important;
	}
	 
}




.marqueea {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  max-width: 600px;
  overflow: hidden;
  white-space: nowrap;
}

.marquee--inner {
  display: block;
  width: 440%;
  position: absolute;
  animation: marquee 10s linear infinite;
  &:hover {
    animation-play-state: paused;
    color: red;
  }
}

.marquee--inner span {
  float: left;
  width: 50%;
  overflow: hidden;
}

@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -120%;
  }
}

.marqueea div {
    font-size: 26px;
    color: #fff;
}

.marqueea-mobile {
	display: none;
}


.banner-inner .dq--button {
    margin-top: 2%;
}



.blink_me {
    animation: 0.3s linear infinite blinker;
}

@keyframes blinker {
    45%,55% {
        opacity: 100%
    }

    50% {
        opacity: 0
    }
}

.marquee--inner .blink_me, .marqueea-mobile .blink_me {
    color: var(--Schemes-Tertiary, #F84153);
    font-weight: var(--fw-bold);
}


/*----------------- Reg Closed Animation -------*/
.swing {
  animation: swing ease-in-out 1s infinite alternate;
  transform-origin: center -20px;
  float: left;
}

@keyframes swing {
    0% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}


.bubble3 {
  position: relative;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  top: 12px;
  left: 1%;
  background: #ffcd29;
}

.bubble3 h4 {
    font-size: 24px;
    color: #f84153;
}

.bubble3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 13px solid transparent;
  border-bottom-color: #ffcd29;
  border-top: 0;
  margin-left: -13px;
  margin-top: -13px;
}

/*--- Event ticket sold message in form --------*/
.form-message {
    text-align: center;
    color: #f84153;
    position: relative;
    top: -20px;
    padding: 0px 40px;
}

/*--- Timeline Speakers image --------*/
.timeline-image {
	border-radius:8px;
	margin-bottom: 10px;
}


.timeline-content {
	box-shadow: 1px 1px 16px #ebe1ef;
}

/*--- Metrics section --------*/
section.container-fluid.metrics-sections {
    background: #F8F9FF;
}



.container.metrics-container {
    width: 50%;
}

.container.metrics-container .left-section {
    display: flex;
	justify-content: right;
}

.metric-wrapper {
	margin-top: 20%;
    margin-right: 40px;
}

.metrics-card {
    width: 400px;
    height: auto;
    flex-shrink: 0;
    border-radius: 18px;
    background: var(--Schemes-Surface-Bright, #F8F9FF);
    box-shadow: 0px 4px 20px 0px #ECE6F3;
	padding: 40px;
}


.metrics-card ul li {
	vertical-align: top;
}

.metrics-card h2 {
	color: var(--Schemes-Tertiary, #F84153);
font-family: Audiowide;
font-size: 96px;
font-style: normal;
font-weight: 400;
line-height: 83px; /* 71.552% */
letter-spacing: -0.25px;
text-transform: uppercase;
padding: 15px 0px;
margin-bottom: 10px;
}

.metrics-card.card-2 h2 {
color: #5DC7C3 !important;
}

.metrics-card.card-3 h2 {
color: #FFCD29 !important;
}

.card-2 {
	margin-bottom: 40px;
}


@media screen and (max-width: 1024px) {
	.container.metrics-container, .metrics-card {
    width: 100%;
}

.container.metrics-container .left-section {
    display: inherit;
    justify-content: inherit;
}
	
.card-1 {
	margin-bottom: 40px;
}
	
.metric-wrapper {
    margin-top: 0%;
    margin-right: 0px;
}
}



