
/* --font-size-xs:  calc(var(--font-size) * 0.75);    12px */
/* --font-size-sm:  calc(var(--font-size) * 0.875);   14px */
/* --font-size-md:  calc(var(--font-size) * 1.0625);  17px */
/* --font-size-body: calc(var(--font-size) * 1.125);  18px */
/* --font-size-lg:  calc(var(--font-size) * 1.25);    20px */
/* --font-size-xl:  calc(var(--font-size) * 1.5);     24px */
/* --font-size-2xl: calc(var(--font-size) * 1.5625);  25px */
/* --font-size-3xl: calc(var(--font-size) * 1.875);   30px */
/* --font-size-4xl: calc(var(--font-size) * 2.1875);  35px */
/* --font-size-5xl: calc(var(--font-size) * 2.5);     40px */

.gc-field-wrap,
.gc-field-wrap .input-icon {
    position: relative;
}

.gc-field-wrap .form-control {
    padding: 0.60rem .75rem;
}

.gc-field-wrap .with-icon.form-control {
    padding-left: 46px;
}

.gc-field-wrap .input-icon-text {
    position: absolute;
    top: 50%;
    z-index: auto;
    margin-top: -12px;
    left: 18px;
    color: var(--button-bg, #1e7ae0);
}

/* Location Cascade - Validation Styles */
.gc-field-wrap.has-error .form-control,
.gc-field-wrap.has-error select {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.gc-field-wrap.has-error .fa,
.gc-field-wrap.has-error .icons{ color: #dc3545;}

.gc-field-wrap.is-focused .fa,
.gc-field-wrap.is-focused .icons{ color:var(--button-hover-bg, #1e7ae0);}

.gc-field-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.gc-field-wrap select:disabled {
    background-color: #e9ecef;
    opacity: 0.6;
    cursor: not-allowed;
}

.gc-field-wrap select[name="state"]:disabled,
.gc-field-wrap select[name="city"]:disabled {
    background-color: #f8f9fa;
}

/* Page Loader Styles */
.gc-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #003566;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Faster fade (was 0.5s) */
}

.gc-page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.gc-loader-content {
  text-align: center;
  max-width: 300px;
  width: 100%;
  /* padding: 20px; */
}

.gc-loader-logo {
  position: relative;
  margin-bottom: 16px;
  display: inline-block;
}

.gc-loader-logo svg {
  display: block;
  margin: 0 auto;
}

.gc-loader-circle {
  animation: gc-loader-rotate 1.2s linear infinite; /* Faster rotation (was 2s) */
  transform-origin: 50% 50%;
}

@keyframes gc-loader-rotate {
  0% {
    stroke-dashoffset: 283;
    transform: rotate(0deg);
  }
  50% {
    stroke-dashoffset: 70;
    transform: rotate(180deg);
  }
  100% {
    stroke-dashoffset: 283;
    transform: rotate(360deg);
  }
}
.gc-loader-text, .gc-loader-sub-text {
  color: #ffffff;
}

.gc-loader-sub-text{
font-size: 80%;
}

.gc-loader-text {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
   
}

.gc-progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(206, 206, 206, 0.3);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.gc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color, #00ffff) 0%, #60a5fa 100%);
  border-radius: 2px;
  width: 0%;
  transition: width 0.2s ease; /* Faster progress (was 0.3s) */
}

.gc-loader-percentage {
  font-size: 14px;
  color: var(--text-color, #1a1a1a);
  font-weight: 500;
  opacity: 0.7;
}

/* Prevent body scroll when loader is visible */
body.gc-loading {
  overflow: hidden;
}

@media (max-width: 576px) {
  .gc-loader-logo svg {
    width: 60px;
    height: 60px;
  }
  
  .gc-loader-text {
    font-size: 16px;
  }
  
  .gc-loader-content {
    max-width: 340px;
  }
}
/* End Page Loader Styles */

@font-face {
  font-family: 'Maison Neue';
  src: url('../fonts/MaisonNeueExtendedTRIAL-Demi.eot');
  src:
    url('../fonts/MaisonNeueExtendedTRIAL-Demi.eot?#iefix') format('embedded-opentype'),
    url('../fonts/MaisonNeueExtendedTRIAL-Demi.woff2') format('woff2'),
    url('../fonts/MaisonNeueExtendedTRIAL-Demi.woff') format('woff'),
    url('../fonts/MaisonNeueExtendedTRIAL-Demi.ttf') format('truetype'),
    url('../fonts/MaisonNeueExtendedTRIAL-Demi.svg#MaisonNeueExtendedTRIAL-Demi') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


.h1,
h1 {
  font-size: calc(var(--font-size) * 2.5);    /* 40px */
}
.h2,
h2 {
  font-size: calc(var(--font-size) * 2);      /* 32px */
}
.h3,
h3 {
  font-size: calc(var(--font-size) * 1.75);   /* 28px */
}
.h4,
h4 {
  font-size: calc(var(--font-size) * 1.5);    /* 24px */
}
.h5,
h5 {
  font-size: calc(var(--font-size) * 1.25);   /* 20px */
}
.h6,
h6 {
  font-size: calc(var(--font-size) * 1);      /* 16px */
}
.lead {
  font-size: calc(var(--font-size) * 1.25);   /* 20px */
  font-weight: 300;
}
.display-1 {
  font-size: calc(var(--font-size) * 6);      /* 96px */
  font-weight: 300;
  line-height: 1.2;
}
.display-2 {
  font-size: calc(var(--font-size) * 5.5);    /* 88px */
  font-weight: 300;
  line-height: 1.2;
}
.display-3 {
  font-size: calc(var(--font-size) * 4.5);    /* 72px */
  font-weight: 300;
  line-height: 1.2;
}
.display-4 {
  font-size: calc(var(--font-size) * 3.5);    /* 56px */
  font-weight: 300;
  line-height: 1.2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Metrophobic', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  color: var(--text-color, #262424);
  background-color: var(--body-bg, #ffffff); 
  font-size: calc(var(--font-size) * 1);
  line-height: var(--line-height, 25px);
  letter-spacing: var(--letter-spacing, normal);
  word-spacing: var(--word-spacing, 0.05em);
}

.gap-1 { gap: calc(var(--font-size) * 0.25) !important; }
.gap-2 { gap: calc(var(--font-size) * 0.5) !important; }
.gap-3 { gap: calc(var(--font-size) * 0.75) !important; }
.gap-4 { gap: calc(var(--font-size) * 1) !important; }
.gap-5 { gap: calc(var(--font-size) * 1.25) !important; }
.gap-6 { gap: calc(var(--font-size) * 1.5) !important; }
.gap-7 { gap: calc(var(--font-size) * 1.75) !important; }
.gap-8 { gap: calc(var(--font-size) * 2) !important; }
.gap-9 { gap: calc(var(--font-size) * 2.5) !important; }
.gap-10 { gap: calc(var(--font-size) * 3) !important; }

body.menu_open {
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  body {
    font-size: calc(var(--font-size) * 1);
    padding-top: 60px;
  }
}

ul:not([class]) {
  padding-left: 20px;
  list-style: none;
}

ul:not([class]) li {
  position: relative;
  margin-bottom: 20px;
}

ul:not([class]) li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #1e7ae0;
  border-radius: 50%;
  left: -16px;
  top: 10px;
  position: absolute;
}

.no-pad {
  padding: 0px !important;
}

.gc_max_400 {
  max-width: 400px;
}

.gc_max_750 {
  max-width: 750px;
  padding: 0 15px;
}

.gc_max_920 {
  max-width: 1120px;
  padding: 0 15px;
}

.gc_max_1100 {
  max-width: 1120px;
  padding: 0 15px;
  margin: 0 auto;
}

.gc_max_1200 {
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}

.gc_max_1300 {
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}

.border_radius_10 {
  border-radius: 10px;
}

.gc_image_full img {
  width: 100%;
}

.gc_gap_10 {
  height: 10px;
}

.gc_gap_20 {
  height: 20px;
}

.gc_gap_30 {
  height: 30px;
}

.gc_gap_40 {
  height: 40px;
}

@media (max-width: 768px) {
  .gc_gap_40 {
    height: 30px;
  }
}

.gc_gap_60 {
  height: 60px;
}

@media (max-width: 768px) {
  .gc_gap_60 {
    height: 40px;
  }
}

.gc_gap_80 {
  height: 80px;
}

@media (max-width: 768px) {
  .gc_gap_80 {
    height: 50px;
  }
}

.gc_gap_100 {
  height: 100px;
}

@media (max-width: 768px) {
  .gc_gap_100 {
    height: 30px;
  }
}

.gc_gap_120 {
  height: 120px;
}

@media (max-width: 768px) {
  .gc_gap_120 {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .gc_gap_50--mob {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .gc_gap_20--mob {
    height: 20px;
  }
}

.gc_overflow_hidden {
  overflow: hidden;
  height: 100%;
}

.gc_btn_w200 {
  min-width: 200px;
}

@media (max-width: 768px) {
  .no_gap_mob {
    height: 0px !important;
  }
}

.gc_btn_primary, .gc_btn_primary_reverse {
  background: #1e7ae0;
  color: #ffffff !important;
  border-radius: 5px;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 25px;
  font-family: 'Maison Neue', sans-serif;
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  cursor: pointer;
  border: none;
  padding-top: 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  -webkit-transition: 0.25s linear;
  transition: 0.25s linear;
}

.gc_btn_primary:hover,
.gc_btn_primary_reverse:hover {
  text-decoration: none;
  color: #ffffff;
}

.gc_btn_primary_v2 {
  background: #1e7ae0;
  color: #ffffff;
  border-radius: 5px;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 25px;
  font-family: 'Maison Neue', sans-serif;
  font-size: calc(var(--font-size) * 0.875);
  padding-top: 1px;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  border: transparent 1px solid;
  -webkit-transition: 0.25s linear;
  transition: 0.25s linear;
}

.gc_btn_primary_v2:hover {
  text-decoration: none;
  color: var(--blue-color, #1e7ae0);
  border: #1e7ae0 1px solid;
  background: #f9fafb;
}

.gc_btn_primary_v2:disabled {
  text-decoration: none;
  color: #ffffff;
  opacity: 03;
  border: #292b2e 1px solid;
  background: #292b2e;
  cursor: not-allowed;
}

.gc_btn_primary_v3 {
  background: #064487;
  color: #ffffff;
  border-radius: 0;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 25px;
  font-family: 'Maison Neue', sans-serif;
  font-size: calc(var(--font-size) * 0.875);
  padding-top: 1px;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  border: transparent 1px solid;
  -webkit-transition: 0.25s linear;
  transition: 0.25s linear;
}

.gc_btn_primary_v3:hover {
  text-decoration: none;
  color: #ffffff;
  border: #001833 1px solid;
  background: #001833;
}

.gc_btn_secondary {
  background: #ffffff;
  color: var(--blue-color, #1e7ae0);
  border-radius: 5px;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 25px;
  font-family: 'Maison Neue', sans-serif;
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  padding-top: 2px;
  cursor: pointer;
  border: var(--card-border, #bbd7f6) 1px solid;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  -webkit-transition: 0.25s linear;
  transition: 0.25s linear;
}

.gc_btn_secondary:hover,
.gc_btn_secondary:focus {
  text-decoration: none;
  color: #f9fafb;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #1e7ae0;
}

.gc_btn_secondary_v2 {
  background: #ffffff;
  color: var(--blue-color, #1e7ae0);
  border-radius: 5px;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 25px;
  font-family: 'Maison Neue', sans-serif;
  font-size: calc(var(--font-size) * 0.875);
  padding-top: 1px;
  cursor: pointer;
  border: var(--border-color, #bbd7f6) 1px solid;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 2px 3px;
  -webkit-transition: 0.25s linear;
  transition: 0.25s linear;
}

.gc_btn_secondary_v2 img,
.gc_btn_secondary_v2 svg {
  margin-left: 16px;
}

.gc_btn_secondary_v2 img path,
.gc_btn_secondary_v2 svg path {
  -webkit-transition: 0.25s linear;
  transition: 0.25s linear;
}

.gc_btn_secondary_v2:hover,
.gc_btn_secondary_v2:focus {
  text-decoration: none;
  color: #f9fafb;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #1e7ae0;
}

.gc_btn_secondary_v2:hover svg path,
.gc_btn_secondary_v2:focus svg path {
  fill: #f9fafb;
}

.gc_link {
  font-size: calc(var(--font-size) * 1.0625);
  color: var(--link-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.gc_link img {
  margin-left: 8px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_link:hover {
  text-decoration: none;
  opacity: 0.8;
  color: var(--link-color, #1e7ae0);
}

.gc_link:hover img {
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

img {
  background-color: transparent;
}

.blue_bg {
  background: var(--blue-color, #1e7ae0);
}

.grey_bg {
  background: var(--grey-color, #262424);
}

.yellow_bg {
  background: var(--yellow-color, #fdf6c9);
}

.light_blue_bg {
  background: var(--light-blue-color, #bbd7f6);
}

.light_white_bg {
  background: var(--light-white-color, #f9fafb);
}

.sky_blue_bg {
  background: var(--sky-blue-color, #e9f7fd);
}

.white_color {
  color: #ffffff !important;
}

@media (min-width: 1024px) {
  .white_color_desk {
    color: #ffffff !important;
  }
}

.black_color {
  /* color: var(--text-color, #1e7ae0); */
}

.gc_main_title {
  font-size: calc(var(--font-size) * 2.5);
  line-height: 50px;
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
}

@media (max-width: 768px) {
  .gc_main_title {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gc_main_title span {
  color: var(--link-color, #1e7ae0);
}

.gc_title {
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .gc_title {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gc_subtitle {
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 35px;
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
}

@media (max-width: 768px) {
  .gc_subtitle {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gc_subtitle2 {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  /* font-family: 'Maison Neue', sans-serif; */
  color: var(--link-color, #1e7ae0);
  /* font-weight: bold; */
}

.gc_text {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
}

@media (max-width: 768px) {
  .gc_text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gc_text2 {
  font-size: var(--font-size, 30px);
  color: var(--text-color, #1e7ae0);
  line-height: 45px;
}

@media (max-width: 768px) {
  .gc_text2 {
    font-size: var(--font-size, 24px);
    line-height: 34px;
  }
}

/* .form-label {
  color: var(--text-color, #262424);
} */

.gc_label {
  font-size: calc(var(--font-size) * 0.75);
  color: var(--blue-color, #1e7ae0);
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
}

.gc_footer {
  position: relative;
  padding: 60px 0 40px 0;
  background: var(--footer-bg, #f8f9fa);
}

@media (max-width: 768px) {
  .gc_footer {
    padding: 50px 10px;
  }
}

.gc_footer .gc_ring {
  position: absolute;
  left: 0;
  bottom: 25%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .gc_footer .gc_ring {
    display: none;
  }
}

.gc_footer .gc_dots {
  position: absolute;
  right: 0;
  bottom: 30%;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .gc_footer .gc_dots {
    display: none;
  }
}

.gc_footer_main {
  border-right: var(--border-color, #1e7ae0) 1px solid;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .gc_footer_main {
    margin-right: 0px;
    border: none;
    border-bottom: var(--border-color, #1e7ae0) 1px solid;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.gc_footer_links {
  padding: 35px 0;
}

@media (max-width: 768px) {
  .gc_footer_links {
    padding: 30px 0;
  }
}

.gc_footer_links_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 30px;
}

.gc_footer_links_each svg,.gc_footer_links_each .svg{
  width: 100%;
  height: 100%;
}


.gc_footer_links_each--icon {
  height: 50px;
  width: 50px;
  background: #e9f7fd;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
  padding: 14px;
}

.gc_footer_links_each--icon .svg, .gc_footer_links_each--icon svg {
  width: calc(var(--font-size) * 1.8);
  height: calc(var(--font-size) * 1.8);
}

.gc_footer_links_each_info--title {
  font-size: calc(var(--font-size) * 1.0625);
  color: var(--text-color, #262424);
  font-family: 'Metrophobic', sans-serif;
}

@media (max-width: 768px) {
  .gc_footer_links_each_info--title {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gc_footer_links_each_info a {
  font-size: calc(var(--font-size) * 1.0625);
  color: var(--link-color, #1e7ae0);
  font-family: 'Metrophobic', sans-serif;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_footer_links_each_info a p{ margin: 0;}

@media (max-width: 768px) {
  .gc_footer_links_each_info a {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gc_footer_links_each_info a:hover {
  opacity: 0.9;
  text-decoration: none;
}

.gc_footer_social_list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gc_footer_social_list li {
  margin-right: 18px;
}

.gc_footer_social_list li:last-child {
  margin-right: 0px;
}

.gc_footer_social_list li a {
  width: 30px;
  height: 30px;
  background: #1e7ae0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_footer_social_list li a:hover {
  opacity: 0.9;
  text-decoration: none;
}

.gc_footer_list {
  padding-bottom: 30px;
  border-bottom: var(--border-color, #1e7ae0) 1px solid;
}

@media (max-width: 768px) {
  .gc_footer_list {
    padding-bottom: 30px;
  }
}

.gc_footer_list_each--title {
  font-size: calc(var(--font-size) * 0.75);
  text-transform: uppercase;
  color: var(--blue-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  padding-bottom: 25px;
}

@media (max-width: 768px) {
  .gc_footer_list_each--title {
    padding-bottom: 18px;
  }
}

.gc_footer_list_each ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.gc_footer_list_each ul li {
  padding-bottom: 10px;
}

.gc_footer_list_each ul li::before {
  display: none;
}

@media (max-width: 768px) {
  .gc_footer_list_each ul li {
    padding-bottom: 12px;
  }
}

.gc_footer_list_each ul li:last-child {
  padding-bottom: 0px;
}

.gc_footer_list_each ul li a {
  font-size: calc(var(--font-size) * 1.0625);
  font-family: 'Metrophobic', sans-serif;
  color: var(--text-color, #262424);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

@media (max-width: 768px) {
  .gc_footer_list_each ul li a {
    font-size: calc(var(--font-size) * 0.75);
    font-weight: bold;
    font-family: 'Maison Neue', sans-serif;
  }
}

.gc_footer_list_each ul li a:hover {
  opacity: 0.9;
  text-decoration: none;
  color: var(--link-hover-color, #ffffff);
}

.gc_footer_terms {
  padding: 36px 0;
}

@media (max-width: 768px) {
  .gc_footer_terms {
    padding: 30px 0;
    border-bottom: var(--border-color, #1e7ae0) 1px solid;
    margin-bottom: 50px;
  }
}

.gc_footer_terms_list, .gc_footer_terms_list ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .gc_footer_terms_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.gc_footer_terms_list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 40px;
}

@media (max-width: 768px) {
  .gc_footer_terms_list li {
    margin-right: 0px;
    margin: auto 20px;
  }
}

.gc_footer_terms_list li:last-child {
  margin-right: 0px;
}

.gc_footer_terms_list li a {
  font-size: calc(var(--font-size) * 1.0625);
  font-family: 'Metrophobic', sans-serif;
  color: var(--link-color, #262424);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

@media (max-width: 768px) {
  .gc_footer_terms_list li a {
    font-size: calc(var(--font-size) * 0.75);
    font-weight: bold;
    font-family: 'Maison Neue', sans-serif;
  }
}

.gc_footer_terms_list li a:hover {
  opacity: 0.9;
  text-decoration: none;
  color: var(--link-hover-color, #ffffff);
}

.gc_footer_stores_list {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.gc_footer_stores_list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 12px;
}

.gc_footer_stores_list.apps svg,.gc_footer_stores_list.apps .svg,.gc_footer_stores_list.apps .img-fluid {
  border-radius: 6px;
  border: 2px solid transparent;
  border-color: color-mix(in srgb, var(--link-color, #1e7ae0) 24%, transparent);
}

.gc_footer_stores.partner .gc_footer_stores_list li {
  display: block;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .gc_footer_stores_list li img {
    max-height: 32px;
  }
}

.gc_footer_stores_list li:last-child {
  margin-right: 0px;
}

.gc_footer_copyright {
  /* padding-top: 40px; */
}

.gc_footer_copyright p {
  margin-bottom: 0px;
  font-size: calc(var(--font-size) * 0.875);
  line-height: 22px;
}

@media (max-width: 768px) {
  .gc_footer_copyright p {
    padding-bottom: 30px;
    font-size: calc(var(--font-size) * 0.75);
  }
}

.gc_footer_copyright .read_details--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gc_footer_copyright .read_details--title {
    font-size: calc(var(--font-size) * 0.875);
  }
}

.gc_footer_copyright .read_details--title.in span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.gc_footer_copyright .read_details--title span {
  width: 22px;
  height: 22px;
  color: #ffffff;
  background: #1e7ae0;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  line-height: 19px;
  text-align: center;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_footer_copyright .read_details_content {
  display: none;
  padding: 25px 0;
  font-size: calc(var(--font-size) * 0.875);
}

@media (max-width: 768px) {
  .gc_footer_copyright .read_details_content {
    padding-bottom: 0px;
  }
}

.gc_footer_copyright .read_details_content p {
  font-size: calc(var(--font-size) * 0.875);
  font-family: 'Metrophobic', sans-serif;
  line-height: 25px;
}

@media (max-width: 768px) {
  .gc_footer_copyright .read_details_content p {
    font-size: calc(var(--font-size) * 0.875);
  }
}

.gc_whatsnew {
  position: relative;
}

.gc_whatsnew .gc_solid {
  position: absolute;
  left: 0;
  bottom: 25%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .gc_whatsnew .gc_solid {
    display: none;
  }
}

.gc_tabs {
  padding-bottom: 10px;
}

.gc_tabs .nav-item {
  margin-right: 50px;
}

.gc_tabs .nav-item:last-child {
  margin-right: 0px;
}

.gc_tabs .nav-item .nav-link {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 35px;
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  padding: 0px;
  border-bottom: transparent 2px solid;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

@media (max-width: 768px) {
  .gc_tabs .nav-item .nav-link {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gc_tabs .nav-item .nav-link.active {
  background: transparent;
  color: var(--blue-color, #1e7ae0);
  border-bottom: #1e7ae0 2px solid;
  border-radius: 0px;
}

.gc_news {
  /*height: 380px;
  overflow-y: auto;*/
  padding-right: 60px;
  margin-top: 20px;
}

.gc_news_each {
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: var(--border-color, #1e7ae0) 1px solid;
}

.gc_news_each:first-child {
  padding-top: 0px;
}

.gc_news_each:last-child {
  margin-bottom: 0px;
}

.gc_news_each_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .gc_news_each_flex {
    display: block;
  }

  .gc_news {
    padding-right: 0px;
  }
}

.gc_news_each_img {
  margin-right: 15px;
}

@media (max-width: 768px) {
  .gc_news_each_img {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}

.gc_news_each_img img {
  border-radius: 10px;
  max-width: 180px;
  min-width: 180px;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gc_news_each_img img {
    min-width: 100%;
  }
}

.gc_news_each_date {
  font-size: calc(var(--font-size) * 0.875);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
}

.gc_news_each_date--icon {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 2px;
  margin-right: 10px;
}

.gc_news_each_date--icon svg{
    width: calc(var(--font-size) );
    height: calc(var(--font-size));

}

.gc_news_each_date--day {
  font-size: calc(var(--font-size) * 0.875);
}

.gc_news_each_date--date {
  font-size: calc(var(--font-size) * 0.875);
}

.gc_news_each_date--label {
  font-size: calc(var(--font-size) * 0.875);
}

.gc_news_each_date--time {
  font-size: calc(var(--font-size) * 0.875);
}

.gc_news_each_date_space {
  padding: 0 6px;
}

.gc_news_each--title {
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  padding-bottom: 20px;
}

.gc_stars {
  color: var(--text-color, #262424);
}

.gc_stars .checked {
  color: #fbce73;
}

.gc_stars span {
  font-size: calc(calc(var(--font-size) * 1) - 1px);
}

.gc_btn_arrow {
  opacity: 1;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  width: auto;
  background: #e9f7fd;
  height: 30px;
  padding: 0 10px;
  border-radius: 4px;
}

.gc_btn_arrow.swiper-button-disabled {
  opacity: 0.5;
}

.gc_btn_arrow:hover {
  opacity: 1;
  background: #1e7ae0;
}

.gc_btn_arrow svg path {
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_btn_arrow:hover svg path {
  fill: #fff;
}

.gc_btn_arrow::after {
  display: none;
}

.gc_btn_arrow.swiper-button-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.gc_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gc_testimonials {
  padding-top: 30px;
}

.gc_testimonials--btns {
  position: relative;
  min-width: 140px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .gc_testimonials--btns {
    display: none;
  }
}

.gc_testimonials_wrap {
  position: relative;
  overflow: hidden;
}

.gc_testimonials_wrap .gc_dots {
  position: absolute;
  right: 0;
  top: 30px;
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .gc_testimonials_wrap .gc_dots {
    display: none;
  }
}

.gc_testimonials .swiper-slide {
  height: auto;
}

.gc_testimonials .gc_testimonials_each {
  border: var(--card-border, #ecf7fc) 1px solid;
  background: var(--data-bg, #ffffff);
  border-radius: 5px;
  padding: 30px;
  height: 100%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.03) 0 7px 8px;
  box-shadow: rgba(0, 0, 0, 0.03) 0 7px 8px;
}

.gc_testimonials .gc_testimonials_each--stars {
  padding-bottom: 10px;
}

.gc_testimonials .gc_testimonials_each--title {
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  padding-bottom: 20px;
}

.gc_testimonials .gc_testimonials_each_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gc_testimonials .gc_testimonials_each_info--img {
  min-width: 50px;
  height: 50px;
  border-right: 50%;
  margin-right: 10px;
}

.gc_testimonials .gc_testimonials_each_info_text--title {
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 20px;
  color: var(--link-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
}

.gc_testimonials .gc_testimonials_each_info_text--copy {
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 20px;
}

.gc_image_dots {
  position: relative;
}

.gc_image_dots .gc_dots_1 {
  position: absolute;
  left: -20px;
  top: 30px;
}

.gc_image_dots .gc_dots_1.dots_width {
  left: -60;
  top: -40;
}

.gc_image_dots .gc_dots_1.dots_width img,
.gc_image_dots .gc_dots_2.dots_width img {
  max-width: 60%;
}

@media (max-width: 768px) {
  .gc_image_dots .gc_dots_1 {
    display: none;
  }
}

.gc_image_dots .gc_dots_2 {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(40%, 25%);
  transform: translate(40%, 25%);
}

@media (max-width: 768px) {
  .gc_image_dots .gc_dots_2 {
    display: none;
  }
}

.gc_globe {
  padding: 60px;
  border-radius: 10px;
  border: var(--card-border, #ecf7fc) 1px solid;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 10px 30px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 10px 30px;
  margin: 0 60px;
}

@media (max-width: 768px) {
  .gc_globe {
    margin: 0 -15px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 20px 15px;
  }
}

.gc_globe_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gc_globe_inner .gc_globe_each {
  /* max-width: 185px; */
  width: 100%;
}

@media (max-width: 768px) {
  .gc_globe_inner .gc_globe_each {
    /* max-width: 125px; */
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gc_globe_inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.gc_globe_wrap {
  position: relative;
  margin: 60px auto 0px auto;
}

.gc_globe_wrap .gc_dots {
  position: absolute;
  left: 0;
  top: -80px;
}

@media (max-width: 768px) {
  .gc_globe_wrap .gc_dots {
    display: none;
  }
}

.gc_globe_each {
  border-radius: 25px;
  background: var(--card-bg, #ffffff);
  border: var(--card-border, #ecf7fc) 1px solid;
  padding: 40px 10px 20px;
  text-align: center;
  margin: 20px 0px;
  min-width: 185px;
}

.gc_globe_each.with-bg {background: var(--data-bg, #ffffff); border-color: transparent; min-height: 33vh;}
.gc_globe_each.with-margin {background: var(--data-bg, #ffffff); margin: auto 10px;}

@media (max-width: 768px) {
  .gc_globe_each {
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
    margin: 5px 0;
  }
  .gc_globe_each.with-margin{
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin: 5px;
  }
  .gc_globe_wrap{
    margin: 0px auto;
  }
}

.gc_globe_each--icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
  z-index: 1;
}
.gc_globe_each_bg--icon {
  position: relative;
  width: 60px;
  height: 60px;
  /* margin: 0 auto; */
  margin-bottom: 20px;
  z-index: 1;
}

.gc_globe_each--icon::before {
  content: '';
  width: 48px;
  height: 48px;
  background: #e9f7fd;
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 6px;
  z-index: -1;
}

.gc_globe_each--number {
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 35px;
  color: var(--link-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
}

@media (max-width: 768px) {
  .gc_globe_each--number {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gc_globe_each--desc {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .gc_globe_each--desc {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 24px;
  }
}

.gc_globe_each--subtitle {
  font-size: calc(var(--font-size) * 1);
  line-height: 20px;
  font-family: 'Maison Neue', sans-serif;
  color: var(--link-color, #1e7ae0);
  margin-top: 20px;
  font-weight: bold;
}

.gc_globe_each--list {
  margin-top: 20px;
}

.gc_globe_each--list ul {
  padding-left: 20px;
  margin-bottom: 0px;
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
}

@media (max-width: 768px) {
  .gc_globe_each--list ul {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gc_globe_each--list ul li {
  margin-bottom: 10px;
}

.gc_notify {
  background: #f2f2f2;
  padding: 6px 0;
  position: relative;
}



@media (max-width: 768px) {
  .gc_notify {
    margin-top: 10px;
    padding: 10px;
  }

  .gc_notify_inner {
    padding: 10px;
  }

  .gc_notify_inner a {
    min-width: fit-content;
    padding-left: 20px;
  }

  .gc_notify--close {
    top: 0;
    right: 0;
  }
}

.gc_notify_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gc_notify_inner p {
  margin-bottom: 0px;
  font-size: calc(var(--font-size) * 0.875);
  line-height: 18px;
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
}

.gc_notify_inner a {
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 0.75);
  line-height: 18px;
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  margin-left: 6px;
}

.gc_notify_inner a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.gc_notify--close {
  min-width: 22px;
  height: 22px;
  background: #e9f7fd;
  border-radius: 50%;
  position: absolute;
  right: 6px;
  top: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.gc_invest {
  position: relative;
}

.gc_invest .gc_dots {
  position: absolute;
  left: 0;
  top: 40%;
}

@media (max-width: 768px) {
  .gc_invest .gc_dots {
    display: none;
  }
}

.gc_invest_slide {
  position: relative;
}

@media (max-width: 768px) {
  .gc_invest_slide {
    padding: 10px 0 30px;
  }
}

.gc_invest_slide--btns {
  position: relative;
  max-width: 140px;
  margin-left: auto;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .gc_invest_slide--btns {
    display: none;
  }
}

.gc_invest_slide_each {
  background: var(--data-bg);
  padding: 28px;
  border-radius: 10px;
  /* max-width: 300px; */
  min-height: 350px;
  border: color-mix(in srgb, var(--data-bg, #ffffff) 86%, white)  1px solid;
}

@media (max-width: 768px) {
  .gc_invest_slide_each {
    margin-bottom: 20px;
  }
}

.gc_invest_slide_each--icon {
  width: 76px;
  height: 76px;
  background: color-mix(in srgb, var(--blue-color, #1e7ae0) 0%, white);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

.gc_invest_slide_each--title {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  color: var(--text-color, #262424);
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .gc_invest_slide_each--title {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 25px;
  }
}

.gc_image_abs {
  position: absolute;
  z-index: 1;
}

.btm_neg_40 {
  bottom: -40px;
}

.gc_trade_wrap {
  position: relative;
}

@media (max-width: 768px) {
  .gc_trade_wrap {
    margin: 0 -15px;
    padding: 0 40px;
    border-radius: 0;
  }
}

.gc_trade_wrap .gc_image_abs {
  bottom: -80px;
}

.gc_trade_wrap .gc_image_abs::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: 0;
  left: 0;
  background: #ffffff;
  z-index: 2;
}

@media (max-width: 768px) {
  .gc_trade_wrap .gc_image_abs {
    position: relative;
    bottom: 0;
    max-width: 235px;
    margin: 0 auto;
    margin-top: -80px;
  }

  .gc_trade_wrap .gc_image_abs::before {
    display: none;
  }
}

.gc_trade_wrap .gc_ring {
  position: absolute;
  top: -60px;
  left: 50px;
  z-index: -1;
}

@media (max-width: 768px) {
  .gc_trade_wrap .gc_ring {
    display: none;
  }
}

.gc_trade_wrap .gc_solid_2 {
  position: absolute;
  top: -60px;
  right: 100px;
  z-index: -1;
  max-width: 150px;
}

@media (max-width: 768px) {
  .gc_trade_wrap .gc_solid_2 {
    display: none;
  }
}

.gc_trade_mobile {
  position: relative;
  height: 100%;
}

@media (max-width: 768px) {
  .gc_trade_mobile {
    padding-bottom: 20px;
  }
}

.gc_trade_mobile .gc_dots {
  position: absolute;
  -webkit-transform: translateX(-120px);
  transform: translateX(-120px);
  top: 60px;
}

@media (max-width: 768px) {
  .gc_trade_mobile .gc_dots {
    display: none;
  }
}

.gc_trade_mobile .gc_solid {
  position: absolute;
  right: 0;
  bottom: 80px;
  -webkit-transform: translateX(40%);
  transform: translateX(40%);
  z-index: -1;
}

@media (max-width: 768px) {
  .gc_trade_mobile .gc_solid {
    display: none;
  }
}

.gc_trade_mobile .gc_trade_swiper {
  position: absolute;
  left: 13px;
  max-width: 210px;
  bottom: 30px;
}

.gc_slider {
  position: relative;
  overflow: hidden;
}

.gc_slider .gc_dots {
  position: absolute;
  left: 0;
  bottom: -80px;
}

.gc_slider_bg {
  background: #f9fafb;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gc_slider_bg img {
  width: 100%;
}

@media (max-width: 768px) {
  .gc_slider_bg {
    bottom: 0px;
    left: -15px;
    width: calc(100% + 30px);
  }

  .gc_slider_bg img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .gc_main_slider {
    margin: 0 -15px;
    margin-bottom: 30px;
  }
}

.gc_main_slider--btns {
  min-width: 140px;
  position: absolute;
  left: 10px;
  bottom: -50px;
}

@media (max-width: 768px) {
  .gc_main_slider--btns {
    bottom: auto;
    top: -50px;
  }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}
.gc_form .gc-terms-label {
  padding-left: 2.4rem;
}

.gc_form .form-check-input {
  height: 22px;
  color: var(--blue-color, #1e7ae0);
  border-radius: 5px;
  min-width: 22px;
  margin-left: -2.2rem;
  margin-top: 0.2rem;
}

.gc_form input::-webkit-input-placeholder {
  color: #ced4da;
}

.gc_form input:-ms-input-placeholder {
  color: #ced4da;
}

.gc_form input::-ms-input-placeholder {
  color: #ced4da;
}

.gc_form input::placeholder {
  color: #ced4da;
}

.gc_form input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  color: var(--blue-color, #1e7ae0);
}

@media (max-width: 768px) {
  .gc_form .form-inline {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .gc_form .form-inline .form-group {
    margin-bottom: 0px;
  }
}

@media (max-width: 768px) {
  .gc_form .form-inline input {
    height: 45px;
    min-width: 100%;
    font-size: calc(var(--font-size) * 0.875);
  }
}

.gc_form .form-inline button {
  margin-left: -5px;
}

@media (max-width: 768px) {
  .gc_form .form-inline button {
    height: 45px;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

.gc_error {
  color: red;
  font-size: calc(var(--font-size) * 0.75);
  display: block;
  position: absolute;
  width: 100%;
  padding-left: 4px;
}

.gc_bank_info {
  position: absolute;
  width: 100%;
  font-size: calc(var(--font-size) * 0.75);
  display: block;
  text-align: right;
  color: var(--blue-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  padding-right: 4px;
}

.gc_form_v2 .form-group {
  margin-bottom: 20px;
}

.gc_form_v2 .form-group.gc_required input {
  border: red 1px solid;
}

.gc_form_v2 .form-group label {
  display: block;
  font-size: calc(var(--font-size) * 0.875);
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  margin-bottom: 4px;
}

.gc_form_v2 .form-group input,
.gc_form_v2 .form-group select.form-control {
  height: 45px;
  border-radius: 5px;
  border: var(--border-color, #dadce0) 1px solid;
  font-size: calc(var(--font-size) * 0.875);
  color: var(--blue-color, #1e7ae0);
  padding: 0 15px;
}

.gc_form_v2 .form-group select.form-control {
  color: #000;
}

.gc_form_v2 .form-group input::-webkit-input-placeholder {
  font-size: calc(var(--font-size) * 0.875);
  color: #5f6368;
}

.gc_form_v2 .form-group input:-ms-input-placeholder {
  font-size: calc(var(--font-size) * 0.875);
  color: #5f6368;
}

.gc_form_v2 .form-group input::-ms-input-placeholder {
  font-size: calc(var(--font-size) * 0.875);
  color: #5f6368;
}

.gc_form_v2 .form-group input::placeholder {
  font-size: calc(var(--font-size) * 0.875);
  color: #5f6368;
}

.gc_form_v2 .form-group input:not(:placeholder-shown) {
  border: #1e7ae0 1px solid;
}

.gc_form_v2 .form-group input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: #1e7ae0 1px solid;
}

.gc_form_v2 .form-group textarea {
  height: 80px;
  border-radius: 5px;
  border: var(--border-color, #dadce0) 1px solid;
  font-size: calc(var(--font-size) * 0.875);
  color: var(--blue-color, #1e7ae0);
  padding: 10px 15px;
}

.gc_form_v2 .form-group textarea::-webkit-input-placeholder {
  font-size: calc(var(--font-size) * 0.875);
  color: #5f6368;
}

.gc_form_v2 .form-group textarea:-ms-input-placeholder {
  font-size: calc(var(--font-size) * 0.875);
  color: #5f6368;
}

.gc_form_v2 .form-group textarea::-ms-input-placeholder {
  font-size: calc(var(--font-size) * 0.875);
  color: #5f6368;
}

.gc_form_v2 .form-group textarea::placeholder {
  font-size: calc(var(--font-size) * 0.875);
  color: #5f6368;
}

.gc_form_v2 .form-group textarea:not(:placeholder-shown) {
  border: #1e7ae0 1px solid;
}

.gc_form_v2 .form-group textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: #1e7ae0 1px solid;
}

.gc_form_v2 .gc_radio_box {
  position: relative;
}

.gc_form_v2 .gc_radio_box input {
  position: absolute;
  width: 100%;
  height: 100% !important;
  cursor: pointer;
  left: 0;
  top: 0;
  opacity: 0;
}

.gc_form_v2 .gc_radio_box input:checked + span {
  background: #bbd7f6;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 3px 6px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 3px 6px;
}

.gc_form_v2 .gc_radio_box span {
  padding: 0 30px;
  border: #1e7ae0 1px solid;
  background: #ffffff;
  border-radius: 5px;
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 0.875);
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_form_v2 .gc_check_box label {
  font-size: calc(var(--font-size) * 0.875);
  font-family: 'Metrophobic', sans-serif;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 0px;
}

.gc_form_v2 .gc_check_box input {
  height: auto;
  opacity: 0;
  width: 6px;
}

.gc_form_v2 .gc_check_box input:checked + span {
  position: relative;
}

.gc_form_v2 .gc_check_box input:checked + span::before {
  opacity: 1;
}

.gc_form_v2 .gc_check_box span {
  width: 20px;
  height: 20px;
  border: #1e7ae0 1px solid;
  border-radius: 3px;
  display: block;
  position: relative;
}

.gc_form_v2 .gc_check_box span::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #1e7ae0 url('../images/icons/check.svg') center no-repeat;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_form_v2 .gc_check2_box {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 50px;
  padding: 0 15px;
}

.gc_form_v2 .gc_check2_box.gc_checked .checked_box {
  border: #1e7ae0 1px solid;
}

.gc_form_v2 .gc_check2_box label {
  font-size: calc(var(--font-size) * 0.875);
  font-family: 'Metrophobic', sans-serif;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: var(--text-color, #1e7ae0);
  margin-bottom: 0px;
}

.gc_form_v2 .gc_check2_box input {
  height: auto;
  opacity: 0;
  width: 6px;
}

.gc_form_v2 .gc_check2_box input:checked + .checked {
  position: relative;
  border: #1e7ae0 1px solid;
}

.gc_form_v2 .gc_check2_box input:checked + .checked::before {
  opacity: 1;
}

.gc_form_v2 .gc_check2_box input:checked + .checked .checked_box {
  background: #e9f7fd;
}

.gc_form_v2 .gc_check2_box .checked {
  width: 20px;
  height: 20px;
  border: var(--border-color, #dadce0) 1px solid;
  border-radius: 3px;
  display: block;
  position: relative;
}

.gc_form_v2 .gc_check2_box .checked::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #1e7ae0 url('../images/icons/check.svg') center no-repeat;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_form_v2 .gc_check2_box .checked_box {
  border: var(--border-color, #dadce0) 1px solid;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_placeholder .form-group {
  position: relative;
}

.gc_placeholder .form-group input,
.gc_placeholder .form-group select.form-control {
  height: 50px;
  border-radius: 10px;
}

.gc_placeholder .form-group .form-check .form-check-label,
.gc_placeholder .form-group .form-check label.form-check-label,
.gc_placeholder .form-group .form-check label {
  position: relative !important;
  top: auto;
  left: auto;
  font-size: calc(var(--font-size) * 1);
  line-height: 1.3;
  color: #222;
  z-index: 20;
  pointer-events: all;
}

.gc_placeholder .form-group .form-check .form-check-input,
.gc_placeholder .form-group .form-check input.form-check-input {
  height: auto !important;
}

.gc_placeholder .form-group input::-webkit-input-placeholder {
  opacity: 0;
}

.gc_placeholder .form-group input:-ms-input-placeholder {
  opacity: 0;
}

.gc_placeholder .form-group input::-ms-input-placeholder {
  opacity: 0;
}

.gc_placeholder .form-group input::placeholder {
  opacity: 0;
}

.gc_placeholder .form-group input:focus + label {
  top: -6px;
  font-size: calc(var(--font-size) * 0.75);
  color: var(--blue-color, #1e7ae0);
}

.gc_placeholder .form-group input:not(:placeholder-shown) + label {
  top: -6px;
  font-size: calc(var(--font-size) * 0.75);
  color: var(--blue-color, #1e7ae0);
}

.gc_placeholder .form-group label {
  font-size: calc(var(--font-size) * 0.875);
  color: #5f6368;
  font-weight: 400;
  font-family: 'Metrophobic', sans-serif;
  position: absolute;
  top: calc(50% - 6px);
  left: 16px;
  line-height: 100%;
  pointer-events: none;
  background: #ffffff;
  padding: 0 4px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}



.gc_grow_wrap {
  background: url('../images/grow_bg.png') bottom no-repeat;
  background-size: 100% 125%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gc_grow_wrap {
    background: #dbe9f0;
  }
}

.gc_grow_wrap .gc_solid {
  position: absolute;
  top: 0;
  left: 15%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .gc_grow_wrap .gc_solid {
    display: none;
  }
}

.gc_grow_wrap .gc_ring {
  position: absolute;
  top: 30%;
  right: 0;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

@media (max-width: 768px) {
  .gc_grow_wrap .gc_ring {
    display: none;
  }
}

.gc_grow_wrap .gc_image {
  position: relative;
  left: 50px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .gc_grow_wrap .gc_image {
    left: 0;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 70px;
  }
}

@media (max-width: 767px) {
  .gc_grow_wrap .gc_image {
    left: 0;
    max-width: 240px;
    margin: 0 auto;
    margin-top: 70px;
  }
}

@media (max-width: 768px) {
  .gc_grow_wrap .gc_text {
    display: none;
  }
}

@media (max-width: 768px) {
  .gc_grow_slide_text {
    padding-top: 40px;
  }
}

.gc_grow_slide {
  position: absolute;
  top: 40px;
  left: 16px;
  max-width: 210px;
}

.gc_grow_slide_btn {
  /*background: #ffffff;*/
  padding: 4px 8px;
  border-radius: 5px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .gc_grow_slide_btn .swiper-slide {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}

@media (max-width: 768px) {
  .gc_grow_slide_btn .swiper-slide {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .gc_grow_slide_btn {
    position: absolute;
    top: 140px;
    width: 100%;
    left: 0;
  }
}

.gc_grow_slide_btn_each {
  text-align: center;
  font-size: calc(var(--font-size) * 0.875);
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  color: var(--blue-color, #1e7ae0);
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 10px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  cursor: pointer;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  line-height: 16px;
}

.gc_grow_slide_btn .swiper-slide-thumb-active .gc_grow_slide_btn_each {
  background: #1e7ae0;
  color: #ffffff;
}

.apexcharts-toolbar,
.apexcharts-legend {
  display: none !important;
}

/* ApexCharts Theme Support */
#apexchartsebmsaypi,
[id^="apexcharts"],
.apexcharts-canvas {
  color: var(--text-color, #262424);
}

/* ApexCharts Text Elements */
#apexchartsebmsaypi .apexcharts-text,
[id^="apexcharts"] .apexcharts-text,
.apexcharts-text {
  fill: color-mix(in srgb, var(--text-color, #262424) 10%, white) !important;
}

/* ApexCharts Tooltip Theme */
#apexchartsebmsaypi .apexcharts-tooltip,
[id^="apexcharts"] .apexcharts-tooltip,
.apexcharts-tooltip.apexcharts-theme-light {
  background: var(--card-bg, #ffffff) !important;
  border: 1px solid var(--border-color, #e5e5e5) !important;
  color: var(--text-color, #262424) !important;
}

#apexchartsebmsaypi .apexcharts-tooltip-title,
[id^="apexcharts"] .apexcharts-tooltip-title,
.apexcharts-tooltip-title {
  background: var(--secondary-bg, #f8f9fa) !important;
  border-bottom: 1px solid var(--border-color, #e5e5e5) !important;
  color: var(--text-color, #262424) !important;
}

/* ApexCharts Grid Lines */
#apexchartsebmsaypi .apexcharts-gridline,
[id^="apexcharts"] .apexcharts-gridline,
.apexcharts-gridline {
  stroke: var(--border-color, #e5e5e5) !important;
}

/* ApexCharts Axis Labels */
#apexchartsebmsaypi .apexcharts-xaxis-label,
#apexchartsebmsaypi .apexcharts-yaxis-label,
[id^="apexcharts"] .apexcharts-xaxis-label,
[id^="apexcharts"] .apexcharts-yaxis-label,
.apexcharts-xaxis-label,
.apexcharts-yaxis-label {
  fill: var(--text-color, #262424) !important;
}

/* ApexCharts Data Labels */
#apexchartsebmsaypi .apexcharts-datalabel,
[id^="apexcharts"] .apexcharts-datalabel,
.apexcharts-datalabel {
  fill: var(--text-color, #262424) !important;
}

/* ApexCharts Series Colors - Primary Set */
#apexchartsebmsaypi .apexcharts-series[seriesName="series-1"] path,
[id^="apexcharts"] .apexcharts-series[seriesName="series-1"] path {
  fill: var(--accent-color, #1e3a8a) !important;
  stroke: var(--accent-color, #1e3a8a) !important;
}

#apexchartsebmsaypi .apexcharts-series[seriesName="series-2"] path,
[id^="apexcharts"] .apexcharts-series[seriesName="series-2"] path {
  fill: var(--blue-color, #1e7ae0) !important;
  stroke: var(--blue-color, #1e7ae0) !important;
}

/* ApexCharts Background */
#apexchartsebmsaypi .apexcharts-inner,
[id^="apexcharts"] .apexcharts-inner,
.apexcharts-inner {
  background: var(--bg-color, #ffffff) !important;
}

.gc_graph {
  position: relative;
}

.gc_graph .gc_ring {
  position: absolute;
  left: 50px;
  top: 100px;
  max-width: 110px;
}

@media (max-width: 768px) {
  .gc_graph .gc_ring {
    display: none;
  }
}

.gc_graph .gc_dots {
  position: absolute;
  top: -80px;
  right: 0;
}

@media (max-width: 768px) {
  .gc_graph .gc_dots {
    display: none;
  }
}

.gc_graph_inner {
  min-height: 350px;
}

@media (max-width: 768px) {
  .gc_account {
    padding: 50px 40px 60px;
  }
}

@media (max-width: 768px) {
  .gc_help {
    padding: 30px 15px 0px;
  }
}

@media (max-width: 768px) {
  .pad-mob-25 {
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .pad-mob-40 {
    padding: 0 40px;
  }
}

.br-10 > img {
  border-radius: 10px !important;
}

.br-right-10 > img {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 768px) {
  .br-mob-10 img {
    border-radius: 10px;
  }
}

.gc_btn_fluid {
  width: 100%;
}

@media (max-width: 768px) {
  .gc_btn_fluid_mob {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.gc_open_account_fixed {
  display: none;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_open_account_fixed.show {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

@media (max-width: 768px) {
  .gc_open_account_fixed {
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 99;
  }

  .download-app-qr {
    display: none;
  }
}

@media (max-width: 768px) {
  .gc_open_account_fixed .gc_btn_primary_v2 {
    border-radius: 0px;
  }
}

.gc_flex_column_reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media (max-width: 768px) {
  .gc_flex_column_reverse {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
  }
}

@media (max-width: 768px) {
  .gc_gap_mob_0 {
    height: 0px;
  }
}

.dropdown-menu {
  margin-top: 0;
}

.dropdown-menu .dropdown-toggle::after {
  vertical-align: middle;
  border-left: 4px solid;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
}

.dropdown-menu .dropdown .dropdown-menu {
  left: 100%;
  top: 0%;
  margin: 0 20px;
  border-width: 0;
}

.dropdown-menu .dropdown .dropdown-menu.left {
  right: 100%;
  left: auto;
}

.dropdown-menu > li a:hover,
.dropdown-menu > li.show {
  background: #007bff;
  color: white;
}

.dropdown-menu > li.show > a {
  color: white;
}

@media (min-width: 768px) {
  .dropdown-menu .dropdown .dropdown-menu {
    margin: 0;
    border-width: 1px;
  }
}

.gc_navbar {
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 12;
  background:var(--nav-bg, #ffffff);
}

.gc_navbar .navbar {
  /* max-width: 1200px; */
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gc_navbar {
    position: relative;
    z-index: 999;
  }
}

.gc_navbar_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (max-width: 768px) {
  .gc_navbar_inner {
    height: calc(100vh - 50px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
}

@media (max-width: 768px) {
  .gc_navbar .gc_footer_main {
    padding: 20px;
    border-bottom: none;
  }
}

.gc_navbar .navbar-toggler {
  border: none;
  outline: none;
  padding: 0px;
  border-radius: 0px;
}

.gc_navbar .navbar-toggler[aria-expanded='true'] span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateX(8px) translateY(2px);
  transform: rotate(45deg) translateX(8px) translateY(2px);
}

.gc_navbar .navbar-toggler[aria-expanded='true'] span:nth-child(2) {
  -webkit-transform: rotate(-45deg) translateX(3px) translateY(2px);
  transform: rotate(-45deg) translateX(3px) translateY(2px);
}

.gc_navbar .navbar-toggler[aria-expanded='true'] span:nth-child(3) {
  width: 0px;
}

.gc_navbar .navbar-toggler span {
  width: 23px;
  height: 3px;
  /* background: #1e7ae0; */
  background: var(--link-color,#ffffff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_navbar .navbar-toggler span:nth-child(3) {
  width: 13px;
  margin-left: auto;
}

.gc_navbar .navbar {
  padding: 0 5px;
}

@media (max-width: 768px) {
  .gc_navbar .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: var(--nav-bg, #ffffff);
    padding: 0px 15px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
    box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  }
}

@media (max-width: 768px) {
  .gc_navbar .navbar .navbar-collapse {
    margin: 0 -15px;
    overflow-x: auto;
    overflow-y: auto;
  }

  .gc_navbar .navbar .navbar-collapse .navbar-nav {
    background: #1e7ae0;
    padding: 30px 20px;
  }
}

.gc_navbar .navbar .navbar-brand {
  margin-right: 30px;
  padding: 0px;
}

.gc_navbar .navbar .navbar-brand img {
  height: 30px;
}

.gc_navbar .navbar .svg-logo-link svg,
.svg-logo-main {
  height: 30px;
}
.svg-logo-main {
  height: 30px;
}

@media (max-width: 768px) {
  .gc_navbar .navbar .navbar-brand {
    padding: 16px 0;
  }

  .gc_navbar .navbar .navbar-brand {
    margin-right: 0px;
    max-width: 160px;
  }

  .gc_navbar .navbar .gc_opn_acc {
    padding: 0px 10px;
    height: 35px;
    font-size: calc(var(--font-size) * 0.75);
    line-height: 12px;
    position: absolute;
    top: 14px;
    right: 50px;
  }

  .gc_navbar .navbar .gc_opn_research {
    padding: 0px 8px;
    height: 35px;
    font-size: calc(var(--font-size) * 0.75);
    line-height: 12px;
  }

  .gc_signup_wrap.campaign .terms-text-mob {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .gc_navbar .navbar .navbar-brand {
    max-width: 100px;
  }
}

.gc_navbar .navbar .gc_navbar_right .nav-item {
    margin-right: 6px;
}

.gc_navbar .navbar .nav-item {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .gc_navbar .navbar .nav-item {
    margin-right: 0px;
  }
}

.gc_navbar .navbar .nav-item:last-child {
  margin-right: 0px;
}

.gc_navbar .navbar .nav-item.dropdown.show {
  background: transparent;
}

.gc_navbar .navbar .nav-item.dropdown.show > a {
  color: var(--blue-color, #1e7ae0);
}

@media (max-width: 768px) {
  .gc_navbar .navbar .nav-item.dropdown.show > a {
    color: #ffffff;
  }
}

.gc_navbar .navbar .nav-item .nav-link {
  height: 70px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: calc(var(--font-size) * 0.875);
  color: var(--text-color, #262424);
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

@media (max-width: 768px) {
  .gc_navbar .navbar .nav-item .nav-link {
    font-size: calc(var(--font-size) * 1.25);
    color: #ffffff;
    height: 60px;
    width: 100%;
  }
}

.gc_navbar .navbar .nav-item .nav-link.dropdown-toggle {
  position: relative;
}

@media (max-width: 768px) {
  .gc_navbar .navbar .nav-item .nav-link.dropdown-toggle::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .gc_navbar .navbar .nav-item .nav-link.dropdown-toggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('../images/icons/nav-arrow-mob.svg') center right no-repeat;
  }
}

.gc_navbar .navbar .nav-item .nav-link:hover {
  background: transparent;
  color: var(--blue-color, #1e7ae0);
}

.gc_navbar .navbar .dropdown-menu {
  border: none;
  border-radius: 0 0 10px 10px;
  padding: 10px 26px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: color-mix(in srgb, var(--nav-bg, #ffffff) 90%, white);
  /* -webkit-overflow-scrolling: touch; */
  max-height: calc(100vh - 80px);
}

.gc_navbar .navbar .dropdown-menu .go_back {
  display: none;
}

@media (max-width: 768px) {
  .gc_navbar .navbar .dropdown-menu .go_back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: calc(var(--font-size) * 1.25);
    color: #ffffff;
    height: 60px;
    width: 100%;
    border-bottom: #ffffff 2px solid;
    font-family: 'Maison Neue', sans-serif;
    font-weight: bold;
    margin-bottom: 20px;
    cursor: pointer;
    gap: calc(10px);
  }

  .gc_navbar .navbar .dropdown-menu .go_back img {
    margin-right: 20px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .gc_navbar .navbar .nav-item .nav-link:hover {
    color: #fff;
  }
}

@media (max-width: 768px) {
  .gc_navbar .navbar .dropdown-menu {
    position: fixed;
    width: 100%;
    height: calc(100vh - 66px);
    z-index: 9;
    top: 66px;
    left: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    display: block;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    background: #1e7ae0;
    padding: 10px 20px;
    border-radius: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    margin-left: 0px;
  }

  .gc_navbar .navbar .dropdown-menu .dropdown-menu {
    top: 0px;
  }

  .gc_navbar .navbar .dropdown-menu.show {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.gc_navbar .navbar .dropdown-menu li .dropdown-item {
  font-size: calc(var(--font-size) * 0.875);
  color: var(--text-color, #262424);
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  padding: 8px 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

@media (max-width: 768px) {
  .gc_navbar .navbar .dropdown-menu li .dropdown-item {
    font-size: calc(var(--font-size) * 1.25);
    color: #ffffff;
    min-height: 40px;
    white-space: normal;
    width: 100%;
  }
}

.gc_navbar .navbar .dropdown-menu li .dropdown-item:hover {
  color: var(--blue-color, #1e7ae0);
  background: transparent;
}

@media (max-width: 768px) {
  .gc_navbar .navbar .dropdown-menu li .dropdown-item:hover {
    color: #ffffff;
  }
}

.gc_navbar_right {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .gc_navbar_right {
    padding: 0 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.gc_navbar_right li {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: calc(var(--font-size) * 0.875);
  color: var(--text-color, #262424);
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  margin-right: 6px;
}

.gc_navbar_right li:last-child {
  margin-right: 0px;
}

.gc_dropdown_lg {
  min-width: 620px;
  min-height: 440px;
}

@media (max-width: 768px) {
  .gc_dropdown_lg {
    min-width: 100%;
  }

  .gc_navbar_right li .gc_btn_primary_v2 {
    min-width: 150px;
  }
}

@media (min-width: 1200px) {
  .gc_dropdown_lg .navbar-nav {
    display: block;
    max-width: 50%;
    position: relative;
  }

  .gc_dropdown_lg .navbar-nav .nav-item .dropdown-toggle::before {
    content: '';
    position: absolute;
    background: url('../images/icons/nav-arrow.svg') center right 35px no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .gc_dropdown_lg .navbar-nav .nav-item.show .dropdown-toggle::before {
    opacity: 1;
  }

  .gc_dropdown_lg .navbar-nav .dropdown {
    position: static;
    margin-right: 0px;
  }

  .gc_dropdown_lg .navbar-nav .gc_dropdown_lg_dropdown {
    display: block !important;
  }

  .gc_dropdown_lg .navbar-nav .dropdown .nav-link {
    height: 40px;
  }

  .gc_dropdown_lg .navbar-nav .dropdown .nav-link::after {
    display: none;
  }

  /* Main dropdown container - doesn't apply to nested gc_dropdown_lg_dropdown-menu */
  .gc_dropdown_lg .navbar-nav > .dropdown-menu:not(.gc_dropdown_lg_dropdown-menu) {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    min-width: 100%;
  }

  /* Nested dropdown menus - hidden by default */
  .gc_dropdown_lg .navbar-nav .gc_dropdown_lg_dropdown-menu {
    display: none !important;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    margin: 0;
  }

  /* Nested dropdown menus - visible when shown */
  .gc_dropdown_lg .navbar-nav .gc_dropdown_lg_dropdown-menu.show {
    display: block !important;
    background-color: color-mix(in srgb, var(--nav-bg, #ffffff) 90%, white);
    padding: 10px 26px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0 0 10px 10px;
  }

  .gc_dropdown_lg .navbar-nav .dropdown-menu li {
    border-bottom: color-mix(in srgb, var(--border-color, #e5e5e5) 70%, white) 1px solid;
  }
}

.gc_dropdown_lg .nav-pills {
  width: calc(50% - 10px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 768px) {
  .gc_dropdown_lg .nav-pills {
    display: none;
  }
}

.gc_dropdown_lg .nav-pills li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gc_dropdown_lg .nav-pills li a {
  font-size: calc(var(--font-size) * 0.875);
  color: var(--text-color, #262424);
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  position: relative;
  width: 100%;
}

.gc_dropdown_lg .nav-pills li a::before {
  content: '';
  position: absolute;
  background: url('../images/icons/nav-arrow.svg') center right 35px no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_dropdown_lg .nav-pills li a.show {
  color: var(--blue-color, #1e7ae0);
}

@media (max-width: 768px) {
  .gc_dropdown_lg .nav-pills li a.show {
    color: #ffffff;
  }
}

.gc_dropdown_lg .nav-pills li a.show::before {
  opacity: 1;
}

.gc_dropdown_lg .nav-pills li a:hover {
  color: var(--blue-color, #1e7ae0);
  text-decoration: none;
}

.gc_dropdown_lg .tab-content {
  width: calc(50% - 10px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 768px) {
  .gc_dropdown_lg .tab-content {
    width: 100%;
    display: block;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

.gc_dropdown_lg .tab-content .tab-pane {
  width: 100%;
}

@media (max-width: 768px) {
  .gc_dropdown_lg .tab-content .tab-pane {
    display: block;
  }
}

.gc_dropdown_lg .tab-content .tab-pane.active {
  -webkit-animation: fadeIn 0.35s ease-in-out;
  animation: fadeIn 0.35s ease-in-out;
}

.gc_dropdown_lg .tab-content ul {
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0px;
}

.gc_dropdown_lg .tab-content ul li {
  border-bottom: var(--card-border, #ecf7fc) 1px solid;
}

.gc_dropdown_lg .tab-content ul li a {
  font-size: calc(var(--font-size) * 0.875);
  color: var(--text-color, #262424);
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_dropdown_lg .tab-content ul li a:hover {
  color: var(--blue-color, #1e7ae0);
  text-decoration: none;
}

.pl-20 {
  padding-left: 20px;
}

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

  100% {
    opacity: 1;
  }
}

.gc_signup .gc_multi_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .gc_signup .gc_multi_btns {
    max-width: 100%;
    display: block;
  }

  .gc_signup .gc_multi_btns a {
    margin-bottom: 10px;
    margin-right: 0px;
    width: 100%;
  }
}

.gc_signup .gc_multi_btns .gc_btn_primary_v2 {
  min-width: 180px;
}

@media (max-width: 768px) {
  .gc_signup .gc_title {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 25px;
  }
}

.gc_signup_wrap {
  background: url('../images/sign-up-bg.png') top right no-repeat;
  background-attachment: fixed;
  background-size: auto 100%;
}

.gc_signup_wrap.campaign.campaign-research {
  min-height: auto;
  background: #154ba0;
  /* padding-top: 0; */
}

.campaign_wofa_register.step {
  display: none;
}

.campaign_wofa_register.step.active {
  display: block;
}

.gcmoag_algoginie_register.step {
  display: none;
}

.gcmoag_algoginie_register.step.active {
  display: block;
}

.user-ucc {
  background-color: var(--yellow-color, #febe5e);
  padding: 0 6px;
  font-weight: 600;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .gc_signup_wrap {
    background: url('../images/sign-up-bg.png') top -20px right -50px no-repeat;
    background-size: contain;
  }

  .gc_signup_wrap.campaign {
    background: url('../images/sign-up-bg.png') top 0px right -50px no-repeat;
    background-size: contain;
    min-height: 500px;
    padding-top: 80px;
    padding-bottom: 10px;
    background-color: #f8f9fe;
  }

  .gc_signup_wrap.campaign.campaign-research {
    min-height: auto;
    background: #154ba0;
    padding-top: 0;
  }

  .gc_signup_wrap.campaign.with-img {
    padding-top: 10px;
  }

  .gc_signup_wrap.campaign .gc_title {
    font-size: var(--font-size, 54px);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .gc_signup_wrap.campaign-wofa .gc_title {
    font-size: var(--font-size, 42px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .gc_signup_wrap.campaign-algo .gc_title {
    font-size: var(--font-size, 42px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .gc_signup_wrap.campaign .gc_title_camp {
    font-size: var(--font-size, 36px);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .gc_signup_wrap.campaign .gc_title.with-img {
    position: relative;
  }

  .gc_signup_wrap.campaign.with-img .img-bank {
    margin-bottom: 20px;
  }

  .gc_signup_wrap.campaign.with-img .img-campaign {
    margin-bottom: 20px;
  }

  .gc_signup_wrap.campaign .gc_title.lic {
    font-size: var(--font-size, 50px);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .gc_signup_wrap.campaign .block-tittle {
    font-family: sans-serif;
    font-size: 1.1rem;
  }

  .gc_signup_wrap.campaign .text-small {
    /* color: #ddc32f; */
    color: #af9722;
    display: inline-block;
    background: #febe5e22;
    padding: 4px 14px;
    margin-top: 10px;
    border-radius: 30px;
    font-weight: 600;
  }
}

.gc_signup_wrap.campaign .terms-text {
  font-size: 0.8rem;
  /* text-align: center; */
  margin-top: 60px;
}

.gc_signup_form {
  max-width: 360px;
}

@media (max-width: 768px) {
  .gc_signup_form {
    max-width: 100%;
  }
}

.gc_signup_form--title {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px; 
  color: var(--text-color,#122a46);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  /* max-width: 320px; */
}

@media (max-width: 768px) {
  .gc_signup_form--title {
    font-size: calc(calc(var(--font-size) * 1) - 1px);
    line-height: 24px;
  }
}

.gc_signup_form--title .gc_edit {
  font-size: calc(var(--font-size) * 0.75);
  font-family: 'Maison Neue', sans-serif;
  color: var(--blue-color, #1e7ae0);
  margin-left: 15px;
}

.gc_signup_form--title .gc_edit img {
  margin-right: 4px;
}

.gc_signup_block {
  display: none;
  max-width: 420px;
}

.gc_signup_block.fullwidth {
  max-width: 100%;
}

.gc_signup_block.in {
  display: block;
  -webkit-animation: fadeIn 0.35s ease-in-out;
  animation: fadeIn 0.35s ease-in-out;
}

.gc_signup_block.in.centered {
  margin: 0 auto;
}

.gc_signup_block_steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.gc_signup_block_steps::before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  height: 1px;
  background: var(--card-border, #ecf7fc);
  z-index: -1;
}

.gc_signup_block_steps--title {
  font-size: calc(var(--font-size) * 0.75);
  color: var(--blue-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  background: #fff;
  padding-right: 10px;
}

.gc_signup_block_steps--number {
  font-weight: bold;
  font-size: calc(var(--font-size) * 0.875);
  color: #bbd7f6;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f9fafb;
  border: var(--card-border, #ecf7fc) 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gc_signup_block_steps--number span {
  color: var(--blue-color, #1e7ae0);
}

.gc_signup_block--img img {
  width: 100%;
}

.gc_multi_btns a,
.gc_multi_btns button {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .gc_multi_btns a,
  .gc_multi_btns button {
    margin-bottom: 20px;
  }
}

.gc_multi_btns a:last-child,
.gc_multi_btns button:last-child {
  margin-right: 0px;
}

.gc_form_info {
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  color: var(--text-color, #262424);
  text-align: center;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.gc_form_info a {
  font-family: 'Maison Neue', sans-serif;
  display: inline-block;
  padding-left: 6px;
  line-height: 20px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.gc_form_info a:hover {
  text-decoration: none;
  opacity: 0.75;
}

.gc_form_otp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gc_form_otp input {
  width: 48px;
  height: 58px;
  border-radius: 5px;
  text-align: center;
  font-size: var(--font-size, 28px);
  line-height: 100%;
  color: var(--blue-color, #1e7ae0);
  border: var(--border-color, #1e7ae0) 1px solid;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.gc_form_otp input:focus {
  outline: none;
}

.ui-datepicker {
  display: none;
  background-color: var(--card-bg, #fff);
  -webkit-box-shadow: 0 0.125rem 0.3rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.125rem 0.3rem rgba(0, 0, 0, 0.2);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.ui-datepicker-calendar table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-color, #262424);
}

.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
}

.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 50%;
  line-height: 2rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: var(--text-color, #262424);
  font-size: 0.875rem;
  text-decoration: none;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
}

.ui-datepicker-calendar tbody td a:hover {
  background: #61a2ea;
  color: #ffffff;
}

.ui-datepicker-calendar tbody td a.ui-state-active {
  background: #1e7ae0;
  color: #ffffff;
}

.ui-datepicker-calendar tbody td a.ui-state-highlight {
  color: var(--blue-color, #1e7ae0);
  border: 1px solid #1e7ae0;
}

.ui-datepicker-header a span {
  display: none;
}

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.5rem;
}

.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ui-datepicker-header a.ui-datepicker-prev::after {
  font-family: 'Material Icons';
  content: '\e314';
  font-size: 1.5rem;
  color: var(--text-color, #262424);
}

.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ui-datepicker-header a.ui-datepicker-next::after {
  font-family: 'Material Icons';
  content: '\e315';
  font-size: 1.5rem;
  color: var(--text-color, #262424);
}

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ui-datepicker-month,
.ui-datepicker-year {
  width: 80px;
  padding: 6px 8px 4px;
  height: 30px;
  margin: 0 4px;
  border-radius: 4px;
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.ui-datepicker-week-col {
  color: var(--text-color, #262424);
  font-weight: 400;
  font-size: 0.75rem;
}

.gc_radio_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gc_radio_flex .gc_radio_box {
  margin-right: 6px;
}

.gc_radio_flex .gc_radio_box:last-child {
  margin-right: 0px;
}

.gc_check2_flex .gc_check2_box {
  margin-right: 6px;
  margin-bottom: 6px;
}

.gc_check2_flex .gc_check2_box:last-child {
  margin-right: 0px;
}

.select2-container {
  display: block;
}

.select2-selection__placeholder {
  opacity: 0.4;
  color: var(--blue-color, #1e7ae0);
}

.select2-container--default .select2-selection--single {
  border-radius: 5px;
  border: #1e7ae0 1px solid;
  font-size: calc(var(--font-size) * 0.875);
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url('../images/icons/dropdown.svg') top 10px right 15px no-repeat;
  padding: 0 15px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  color: var(--blue-color, #1e7ae0);
}

.select2-selection__arrow {
  display: none;
}

.select2-results__option {
  font-size: calc(var(--font-size));
  opacity: 0.4;
  margin: 0 15px;
  padding: 14px 0;
  border-bottom: var(--border-color, #1e7ae0) 1px solid !important; 
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.select2-container--default .select2-results__option--selected {
  background: transparent;
  opacity: 1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: transparent;
  opacity: 1;
  color: var(--link-color, #1e7ae0);
}

.select2-container--open .select2-dropdown--below {
  border-radius: 0px;
}

.select2-search--dropdown {
  padding-top: 20px;
}

.select2-search--dropdown input {
  border-radius: 4px;
}

.select2-search--dropdown input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-dropdown {
  border: none;
  background: var(--card-bg, #ffffff);
  margin-top: -1px;
  border: #1e7ae0 1px solid;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 220px;
}

.select2-container--default .select2-results > .select2-results__options .select2-results__option:last-child {
  border-bottom: 0px;
}

::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background-color: var(--card-border, #ecf7fc);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--blue-color, #1e7ae0);
  border-radius: 2px;
}

.gc_pricing {
  max-width: 950px;
}

@media (max-width: 768px) {
  .gc_pricing .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

.gc_pricing_each {
  background: #f9fafb;
  border: var(--card-border, #ecf7fc) 1px solid;
  border-radius: 5px;
  padding: 10px 10px 20px;
  position: relative;
}

@media (max-width: 768px) {
  .gc_pricing_each {
    min-width: 70vw;
    margin-top: 20px;
  }
}

.gc_pricing_each--label {
  background: #fdf6c9;
  font-size: calc(var(--font-size) * 0.875);
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 5px;
  position: absolute;
  top: -16px;
  left: 26px;
}

.gc_pricing_each_info {
  background: var(--card-bg, #ffffff);
  border-radius: 5px;
  padding: 20px 20px;
}

.gc_pricing_each_info--title {
  color: var(--blue-color, #1e7ae0);
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  font-family: 'Maison Neue', sans-serif;
}

.gc_pricing_each_info--text {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 18px;
  font-family: 'Metrophobic', sans-serif;
  margin-bottom: 20px;
}

.gc_pricing_each_info--price {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 18px;
  font-family: 'Metrophobic', sans-serif;
}

.gc_pricing_each_info--price span {
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
}

.gc_pricing_each_list {
  padding: 30px 20px;
  min-height: 280px;
}

.gc_pricing_each_list ul {
  list-style: none;
  padding-left: 0;
}

.gc_pricing_each_list ul li {
  padding-left: 20px;
  position: relative;
  font-size: calc(var(--font-size) * 0.875);
  line-height: 16px;
  color: var(--text-color, #262424);
  margin-bottom: 8px;
}

.gc_pricing_each_list ul li::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: url('../assets/images/icons/check-white.svg') center no-repeat;
  left: 0;
  top: 3px;
}

.gc_pricing_each--btns a {
  margin-bottom: 10px;
}

.gc_pricing_each--btns a:last-child {
  margin-bottom: 0px;
}

.modal-backdrop.show {
  opacity: 0.75;
}

.gc_modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

@media (max-width: 768px) {
  .gc_modal .close img {
    height: 14px;
  }
}

.gc_modal .modal-body {
  padding: 50px;
}

@media (max-width: 768px) {
  .gc_modal .modal-body {
    padding: 50px 20px;
  }
}

.gc_pricing_details {
  max-height: 360px;
  overflow-y: auto;
}

.gc_pricing_details_each--title {
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #262424);
  margin-bottom: 10px;
}

.gc_pricing_details_each_wrap {
  margin-bottom: 20px;
}

.gc_pricing_details_each_wrap_info {
  font-size: calc(var(--font-size) * 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}

.gc_pricing_details_each_wrap_info--title {
  min-width: 250px;
}

@media (max-width: 768px) {
  .gc_pricing_details_each_wrap_info--title {
    min-width: 220px;
  }
}

.gc_documents {
  max-width: 860px;
}

.gc_documents_each {
  background: #f9fafb;
  border: var(--card-border, #ecf7fc) 1px solid;
  border-radius: 5px;
  padding: 25px 15px;
  text-align: center;
  position: relative;
}

.gc_documents_each.gc_done {
  background: #d9f1fb;
}

.gc_documents_each.gc_done .gc_done_check {
  opacity: 1;
}

.gc_documents_each .gc_done_check {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #1e7ae0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 6px;
  top: 6px;
  opacity: 0;
}

.gc_documents_each .gc_done_check.in {
  opacity: 1;
}

.gc_documents_each--img {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.gc_documents_each--img::before {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e9f7fd;
  top: 0;
  z-index: -1;
}

.gc_documents_each--title {
  font-size: calc(var(--font-size) * 0.75);
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #262424);
  min-height: 28px;
  margin-bottom: 10px;
  line-height: 15px;
}

.gc_documents_each--btn a {
  font-size: calc(var(--font-size) * 0.75);
  font-family: 'Maison Neue', sans-serif;
  color: #3c78d9;
  border: var(--border-color, #1e7ae0) 1px solid;
  border-radius: 5px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10px;
  line-height: 100%;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  padding-top: 1px;
}

.gc_documents_each--btn a:hover {
  text-decoration: none;
  background: #3c78d9;
  color: var(--border-color, #1e7ae0);
}

.gc_documents_each--btn2 a {
  width: 100%;
}

.gc_documents--info {
  font-size: var(--font-size, 10px);
  color: #818181;
  line-height: 15px;
  text-align: center;
  padding: 4px;
}

@media (max-width: 768px) {
  .gc_documents--info {
    margin-bottom: 20px;
  }
}

.sign_up_navbar .dropdown-menu {
  right: 0;
  left: auto;
}

.sign_up_navbar .dropdown-toggle {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
}

.sign_up_navbar .dropdown-toggle::before {
  display: none;
}

.sign_up_navbar .dropdown-toggle::after {
  display: none;
}

.sign_up_navbar .dropdown-toggle .dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1e7ae0;
  margin-bottom: 2px;
}

.tooltip-inner {
  font-size: calc(var(--font-size) * 0.75);
}

.gc_thankyou--title {
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-family: 'Maison Neue', sans-serif;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .gc_thankyou--title {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 25px;
  }
}

.gc_thankyou--text {
  color: var(--text-color, #262424);
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 25px;
  font-family: 'Maison Neue', sans-serif;
  margin-bottom: 40px;
}

.gc_thankyou--file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: calc(var(--font-size) * 0.875);
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .gc_thankyou--file {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.gc_thankyou--file img {
  margin-right: 8px;
}

.gc_upload--title {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 26px;
  color: var(--text-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  margin-bottom: 10px;
}

.gc_upload--text {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 22px;
}

.gc_upload--text ul li {
  padding-bottom: 10px;
}

.gc_upload .files_btn {
  font-size: calc(var(--font-size) * 0.75);
  color: #0b0b0b;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin: 20px 0 60px;
}

.wpcf7-file-online .wpcf7-form-control-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.gc_upload .files_btn img {
  margin-right: 6px;
}

.gc_upload .files_btn input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.gc_upload .fileList {
  list-style: none;
  padding-left: 0px;
}

.gc_upload .fileList li {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 18px;
  position: relative;
  padding: 20px;
  padding-left: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: var(--card-border, #ecf7fc) 1px solid;
}

.gc_upload .fileList li::before {
  content: '';
  position: absolute;
  width: 42px;
  height: 42px;
  background: url('../images/icons/pdf.svg') center no-repeat;
  left: 0px;
}

.gc_upload .fileList li span {
  max-width: 240px;
  word-break: break-word;
  min-width: 200px;
  margin-right: 20px;
}

.gc_upload .fileList .removeFile {
  width: 42px;
  height: 42px;
  background: url('../images/icons/delete.svg') center no-repeat;
  background-size: 100%;
}

.gc_capture .end_camera {
  display: none;
}

.gc_capture .gc_documents--info {
  padding-top: 10px;
}

.ef_camera {
  background: #ffffff;
  border-radius: 4px;
}

.ef_camera_wrapper {
  padding: 20px;
  background: #f6f9ff;
  border: 1px dashed #b8ceef;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ef_camera_content {
  padding: 20px 0;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ef_camera_content {
    padding: 0px;
  }
}

.ef_camera_content--number {
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 28px;
  color: #666666;
}

.ef_camera_content--value {
  font-weight: 600;
  font-size: calc(var(--font-size) * 1.25);
  line-height: 26px;
  color: #0b3c84;
  margin-bottom: 10px;
}

.ef_camera_content_video video {
  min-width: 280px;
  max-width: 280px;
  height: 210px;
  display: block;
}

.ef_camera_content_video_wrapper {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.ef_camera_content_video_wrapper--rec {
  font-weight: 600;
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 22px;
  text-transform: uppercase;
  color: #ff0000;
  position: absolute;
  right: 10px;
  top: 10px;
}

.ef_camera_content_photo--snap {
  width: 300px;
  height: 225px;
  border-radius: 5px;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .ef_camera_content_photo--snap {
    height: 360px;
    width: 270px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
  }
}

.ef_camera_content_photo--result img {
  border-radius: 5px;
}

@media only screen and (max-width: 768px) {
  .ef_camera_content_photo--result img {
    margin: 0 auto;
    display: block;
  }
}

.ef_camera_content_btn {
  text-align: center;
  min-width: 300px;
}

.ef_camera_content_btn--capture {
  border-radius: 100px;
  border: #cc171e 1px solid;
  height: 42px;
  margin-bottom: 10px;
}

.ef_camera_content_btn--capture::before {
  background: #cc171e;
}

.ef_camera_content_btn--change {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 24px;
  color: #0b3c84;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.ef_camera_content_btn--change img {
  margin-right: 6px;
}

.ef_camera_content_btn--change:hover {
  text-decoration: none;
}

.ef_camera_instructions {
  border-top: 1px solid #e5edf8;
  padding: 20px 0;
  margin: 0 20px;
}

.ef_camera_instructions_swiper {
  position: relative;
}

.ef_camera_instructions--title {
  font-weight: 600;
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 22px;
  color: #0b3c84;
  padding-bottom: 10px;
}

.signature_pad_wrapper {
  margin-bottom: 20px;
}

.signature_pad_wrapper .form-label-group {
  margin-left: 10px;
}

.signature_pad canvas {
  display: block;
  border: #a2a8b2 1px solid;
  border-radius: 4px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .signature_pad canvas {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.signature_pad--sign {
  font-size: calc(var(--font-size) * 0.75);
  line-height: 16px;
  color: #dae0e9;
  border-top: 1px solid #e5edf8;
  padding: 15px 0 0;
  text-align: center;
}

.gc_achievments {
  border: var(--card-border, #ecf7fc) 1px solid;
  background: var(--card-bg, #ffffff);
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 10px 30px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 10px 30px;
  padding: 60px 0;
}

@media (max-width: 768px) {
  .gc_achievments {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding: 30px 0;
  }

  .gc_achievments .gc_title {
    padding: 0 15px;
  }
}

.gc_achievments_slide {
  position: relative;
}

@media (max-width: 768px) {
  .gc_achievments_slide {
    background: #f8fcff;
    padding: 25px 15px;
  }
}

.gc_achievments_slide .gc_globe_each {
  text-align: left;
  padding: 40px 20px 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .gc_achievments_slide .gc_globe_each {
    border-radius: 5px;
  }
}

.gc_achievments_slide .gc_globe_each--icon {
  margin-left: 0;
}

@media (max-width: 768px) {
  .gc_achievments_slide .gc_globe_each--icon {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}

.gc_achievments_slide .gc_globe_each--icon::before {
  left: -2px;
}

@media (max-width: 768px) {
  .gc_achievments_slide .gc_globe_each {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .gc_achievments_slide .gc_globe_each--number {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
    margin-top: -10px;
  }
}

@media (max-width: 768px) {
  .gc_achievments_slide .gc_globe_each--text {
    font-size: calc(calc(var(--font-size) * 1) - 1px);
    line-height: 25px;
  }
}

.gc_achievments_slide--btns {
  position: relative;
  max-width: 140px;
  margin-left: auto;
  padding-bottom: 40px;
  margin-bottom: -40px;
}

@media (max-width: 768px) {
  .gc_achievments_slide--btns {
    display: none;
  }
}

.gc_pillar { 
  background: var(--section-secondary-bg, #ffffff);
  /* border-radius: 10px; */
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 10px 30px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 10px 30px;
  padding: 60px 0;
}

@media (max-width: 768px) {
  .gc_pillar {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding: 30px 0;
  }

  .gc_pillar .gc_title {
    padding: 0 15px;
  }
}

.gc_pillar_slide {
  position: relative;
}

@media (max-width: 768px) {
  .gc_pillar_slide {
    background: #f8fcff;
    padding: 25px 15px;
  }
}

@media (max-width: 768px) {
  .gc_pillar_slide .gc_globe_each {
    max-width: 100%;
  }
}

.gc_pillar_slide--btns {
  position: relative;
  max-width: 140px;
  margin-left: auto;
  padding-bottom: 40px;
  margin-bottom: -40px;
}

@media (max-width: 768px) {
  .gc_pillar_slide--btns {
    display: none;
  }
}

.gc_values {
  position: relative;
}

@media (max-width: 768px) {
  .gc_values {
    padding-left: 15px;
  }
}

.gc_values .gc_dots {
  position: absolute;
  top: 150px;
}

@media (max-width: 768px) {
  .gc_values .gc_dots {
    display: none;
  }
}

.gc_values .gc_invest_slide--btns {
  padding-bottom: 40px;
  margin-bottom: -40px;
}

@media (max-width: 768px) {
  .gc_values .gc_invest_slide--btns {
    display: none;
  }
}

.gc_pms {
  position: relative;
}

@media (max-width: 768px) {
  .gc_pms {
    padding-left: 15px;
  }
}

.gc_pms .gc_dots {
  position: absolute;
  top: 150px;
}

@media (max-width: 768px) {
  .gc_pms .gc_dots {
    display: none;
  }
}

.gc_pms .gc_pms_slide--btns {
  padding-bottom: 40px;
  margin-bottom: -40px;
}

@media (max-width: 768px) {
  .gc_pms .gc_pms_slide--btns {
    display: none;
  }
}

.gc_leading {
  position: relative;
  overflow: hidden;
}

.gc_leading .gc_ring {
  position: absolute;
  left: 0;
  top: 100px;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}

@media (max-width: 768px) {
  .gc_leading .gc_ring {
    display: none;
  }
}

@media (max-width: 768px) {
  .gc_leading .gc_image {
    display: none;
  }
}

.gc_awards {
  max-width: 960px;
  margin: 0 auto;
}

.gc_awards_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.gc_awards_slide_each--icon {
  background: url('../images/award.svg') center no-repeat;
  background-size: contain;
  width: 240px;
  height: 160px;
  margin: 0 auto;
  text-align: center;
  color: var(--link-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  line-height: 26px;
  font-size: calc(var(--font-size) * 1.125);
  padding-top: 30px;
}

.gc_awards_slide_each--icon span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin-top: 4px;
}

.gc_awards_slide_each--icon span::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 10px;
  background: #707070;
  left: -16px;
  top: 13px;
}

.gc_awards_slide_each--icon span::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 10px;
  background: #707070;
  right: -16px;
  top: 13px;
}

.gc_awards_slide_each--text {
  text-align: center;
  font-size: calc(var(--font-size) * 1.125);
  color: #1f1d1d;
  line-height: 26px;
  margin-top: 20px;
}

.gc_awards_slide--btns {
  position: relative;
  max-width: 140px;
  min-width: 140px;
}

@media (max-width: 768px) {
  .gc_awards_slide--btns {
    display: none;
  }
}

/*  */

.gc_awards_full {
  margin: 20px auto;
}

.gc_awards_full_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.gc_awards_full_slide_each--icon {
  background: url('../images/award-2.svg') center no-repeat;
  background-size: contain;
  width: 280px;
  height: 230px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  line-height: 26px;
  font-weight: 800;
  font-size: calc(var(--font-size) * 1.125);
  /* padding-top: 30px; */
}

.gc_awards_full_slide_each--icon .year {
  position: relative;
  font-weight: 800;
  font-family: 'Maison Neue', sans-serif;
  margin-top: 10px;
  font-size: 130%;
  display: inline-block;
  line-height: 0.9;
}

.gc_awards_full_slide_each--icon .year::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 10px;
  background: #707070;
  left: -22px;
  top: 50%;
  margin-top: -5%;
}

.gc_awards_full_slide_each--icon .year::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 10px;
  background: #707070;
  right: -22px;
  top: 50%;
  margin-top: -5%;
}

.gc_awards_full_slide_each--text {
  text-align: center;
  font-size: 160%;
  color: #1f1d1d;
  line-height: 26px;
  margin-top: 20px;
  font-weight: 800;
  font-family: 'Maison Neue', sans-serif;
}

.gc_awards_full_slide--btns {
  position: relative;
  max-width: 140px;
  min-width: 140px;
}

@media (max-width: 768px) {
  .gc_awards_full_slide--btns {
    display: none;
  }
}

/*  */

.gc_vission {
  position: relative;
  z-index: 1;
}

.gc_vission::before {
  content: '';
  position: absolute;
  width: calc(50%);
  left: 0;
  top: 0;
  height: 360px;
  background: #1e7ae0;
  border-radius: 0 10px 10px 0;
  z-index: -1;
}

@media (max-width: 768px) {
  .gc_vission::before {
    height: 150px;
    top: 40px;
    width: 70%;
  }
}

.gc_vission .gc_dots {
  position: absolute;
  top: -130px;
  right: -20px;
}

@media (max-width: 768px) {
  .gc_vission .gc_dots {
    display: none;
  }
}

.gc_vission .gc_solid {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: -1;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
}

@media (max-width: 768px) {
  .gc_vission .gc_solid {
    display: none;
  }
}

.gc_vission .gc_image {
  padding-right: 30px;
}

@media (max-width: 768px) {
  .gc_vission .gc_image {
    padding-right: 0px;
  }
}

.gc_vission .gc_image > img {
  border-radius: 10px;
  width: 100%;
}

@media (max-width: 768px) {
  .gc_vission .gc_image > img {
    height: 175px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 30px;
  }
}

.gc_mission {
  position: relative;
  z-index: 1;
}

.gc_mission::before {
  content: '';
  position: absolute;
  width: calc(50%);
  right: 0;
  top: 0;
  height: 360px;
  background: #1e7ae0;
  border-radius: 10px 0px 0px 10px;
  z-index: -1;
}

@media (max-width: 768px) {
  .gc_mission::before {
    height: 150px;
    top: 40px;
    width: 70%;
  }
}

.gc_mission .gc_dots {
  position: absolute;
  top: -130px;
  right: -20px;
}

@media (max-width: 768px) {
  .gc_mission .gc_dots {
    display: none;
  }
}

.gc_mission .gc_solid {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: -1;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
}

@media (max-width: 768px) {
  .gc_mission .gc_solid {
    display: none;
  }
}

.gc_mission .gc_image {
  padding-left: 30px;
}

@media (max-width: 768px) {
  .gc_mission .gc_image {
    padding-left: 0px;
  }
}

.gc_mission .gc_image > img {
  border-radius: 10px;
  width: 100%;
}

@media (max-width: 768px) {
  .gc_mission .gc_image > img {
    height: 175px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 30px;
  }
}

.gc_overview {
  background: url('../images/icons/circle-big2.svg') left 250px bottom -80px no-repeat;
}

.gc_overview.no-bg {
  background: transparent;
}

@media (max-width: 768px) {
  .gc_overview .gc_image {
    padding: 0 15px;
    margin-bottom: 20px;
  }
}

.gc_overview .gc_image > img {
  border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
  .gc_overview .gc_image > img {
    border-radius: 10px;
  }
}

.gc_overview .gc_dots_1 {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .gc_overview .gc_dots_1 {
    display: none;
  }
}

.gc_overview .gc_dots_2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
}

@media (max-width: 768px) {
  .gc_overview .gc_dots_2 {
    display: none;
  }
}

.gc_about_banner {
  padding: 100px 0;
  background: #f8fcff url('../images/map.png') center bottom no-repeat;
  position: relative;
  background-color: var(--data-bg, #E0F7FA);
}

@media (max-width: 768px) {
  .gc_about_banner {
    padding: 80px 0px 120px;
  }
}

.gc_about_banner--text {
  font-size: calc(var(--font-size) * 2.5);
  line-height: 50px;
  color: var(--text-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
}

@media (max-width: 768px) {
  .gc_about_banner--text {
    font-size: var(--font-size, 24px);
    line-height: 36px;
    margin-top: 40px;
    text-align: center;
    padding: 0 20px;
  }
}

.gc_about_banner--text span {
  color: var(--link-color, #1e7ae0);
}

.gc_about_banner--img {
  position: relative;
}

@media (max-width: 768px) {
  .gc_about_banner--img {
    margin: 0 30px;
  }
}

.gc_about_banner--img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  /*background: #f8fcff;*/
  left: 0;
  bottom: 0;
  -webkit-transition: 1.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 1.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gc_about_banner--img.aos-animate::before {
  height: 0%;
}

.gc_about_banner--btn {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 30px;
}

.gc_team {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gc_team .gc_dots {
  position: absolute;
  left: 0;
  top: 15%;
  z-index: -1;
}

@media (max-width: 768px) {
  .gc_team .gc_dots {
    display: none;
  }
}

.gc_team .gc_solid {
  position: absolute;
  right: 0;
  top: 25%;
  z-index: -1;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

@media (max-width: 768px) {
  .gc_team .gc_solid {
    display: none;
  }
}

@media (max-width: 768px) {
  .gc_team_wrapper {
    padding: 0px;
  }
}

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

  100% {
    opacity: 1;
  }
}

.gc_team_slide--btns {
  position: relative;
  height: 50px;
  max-width: 140px;
  margin-left: 130px;
}

@media (max-width: 768px) {
  .gc_team_slide--btns {
    display: none;
  }
}

.gc_team .gc_team_slide_img .swiper-slide .gc_team_each--img {
  -webkit-transform: scale(0.65);
  transform: scale(0.65);
  -webkit-transition: 0.85s ease-in-out;
  transition: 0.85s ease-in-out;
}

@media (max-width: 768px) {
  .gc_team .gc_team_slide_img .swiper-slide .gc_team_each--img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.gc_team .gc_team_slide_img .swiper-slide.swiper-slide-active .gc_team_each--img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.gc_team_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .gc_team_each {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.gc_team_each--img {
  min-width: 400px;
}

@media (max-width: 768px) {
  .gc_team_each--img {
    min-width: 100%;
  }
}

.gc_team_each--img img {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .gc_team_each--img img {
    height: 380px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 5px;
  }
}

.gc_team_each_content {
  padding-right: 20px;
}

@media (max-width: 768px) {
  .gc_team_each_content {
    width: 100%;
    padding: 30px 0;
  }
}

.gc_team_each_content--name {
  font-size: var(--font-size, 24px);
  line-height: 30px;
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  color: var(--blue-color, #262424);
}

@media (max-width: 768px) {
  .gc_team_each_content--name {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 25px;
  }
}

.gc_team_each_content--title {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  padding-bottom: 20px;
  color:color-mix(in srgb, var(--text-color, #ffffff) 70%, white);
}

@media (max-width: 768px) {
  .gc_team_each_content--title {
    font-size: calc(var(--font-size) * 1);
    padding-bottom: 16px;
  }
}

.gc_team_each_content--text {
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 28px;
  color: var(--text-color, #262424);
}

@media (max-width: 768px) {
  .gc_team_each_content--text {
    font-size: calc(var(--font-size) * 1);
  }
}

.gc_team--btns {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 50%;
  right: 0;
}

@media (max-width: 768px) {
  .gc_team--btns {
    display: none;
  }
}

.gc_team--btns > div::after {
  display: none;
}

.gc_team--btns .swiper-button-prev {
  -webkit-transform: rotate(0deg) rotateY(180deg);
  transform: rotate(0deg) rotateY(180deg);
}

.gc_milestones {
  position: relative;
  background: var(--data-bg, #f9fafb);
  overflow: hidden;
}

.gc_milestones--btns {
  position: absolute;
  right: 0;
  bottom: 80px;
}

@media only screen and (max-width: 768px) {
  .gc_milestones--btns {
    bottom: auto;
    top: 35px;
  }
}

.gc_milestones .gc_ring {
  position: absolute;
  right: 0;
  top: 20%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.gc_milestones_slide_each {
  position: relative;
}

.gc_milestones_slide_each--content {
  position: absolute;
  bottom: 0px;
  left: 0;
  background: #1e7ae0;
  border-radius: 10px;
  padding: 25px;
  color: #ffffff;
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  min-width: 400px;
}

.ef_history {
  padding: 60px 0;
}

@media only screen and (max-width: 768px) {
  .ef_history {
    padding: 30px 0;
  }
}

.ef_history_inner_swiper {
  position: relative;
  z-index: 1;
}

.ef_history_inner_swiper .swiper-container {
  margin-left: 0;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper .swiper-container {
    max-width: 100%;
  }
}

.ef_history_inner_swiper--next {
  top: auto;
  bottom: 0;
}

.ef_history_inner_swiper--prev {
  top: auto;
  bottom: 0;
  right: 60px;
  left: auto;
}

.ef_history_inner_swiper_text .swiper-slide.swiper-slide-active .ef_history_inner_swiper_text_each {
  opacity: 1;
}

.ef_history_inner_swiper_text .swiper-slide.swiper-slide-active .ef_history_inner_swiper_text_each--text {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.ef_history_inner_swiper_text_each {
  background: #1e7ae0;
  border-radius: 10px;
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  color: #fff;
  min-width: 400px;
  padding: 30px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  max-width: 400px;
  opacity: 0;
  font-family: 'Metrophobic', sans-serif;
  -webkit-transition: 0.65s ease-in-out;
  transition: 0.65s ease-in-out;
}

.ef_history_inner_swiper_text_each--text {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: 0.45s ease-in-out 0.5s;
  transition: 0.45s ease-in-out 0.5s;
  text-transform: capitalize;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper_text_each {
    font-weight: normal;
    font-size: calc(calc(var(--font-size) * 1) - 1px);
    line-height: 22px;
    margin-bottom: 10px;
    min-width: 100%;
  }
}

.ef_history_inner_swiper_text_each::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 20px solid transparent;
  border-top: 10px solid #1e7ae0;
  bottom: -10px;
  left: 50px;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper_text_each::before {
    left: 40px;
  }
}

.ef_history_inner_swiper_years {
  margin-left: 40px !important;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper_years {
    margin-left: 20px !important;
  }
}

.ef_history_inner_swiper_years .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ef_history_inner_swiper_years .swiper-slide {
  font-weight: normal;
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 24px;
  color: var(--text-color, #262424);
  font-family: 'Maison Neue', sans-serif;
  font-weight: 600;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper_years .swiper-slide {
    font-size: calc(calc(var(--font-size) * 1) - 1px);
    line-height: 24px;
  }
}

.ef_history_inner_swiper_years .swiper-slide.swiper-slide-active {
  opacity: 1;
  font-weight: 500;
  font-size: calc(var(--font-size) * 1.25);
  line-height: 36px;
}

@media only screen and (max-width: 768px) {
  .ef_history_inner_swiper_years .swiper-slide.swiper-slide-active {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 36px;
  }
}

.ef_history_inner_swiper_years .swiper-slide.swiper-slide-active .ef_history_inner_swiper_years_each::before {
  height: 14px;
  width: 14px;
  background: #fff;
  left: 16px;
  top: -8px;
}

.ef_history_inner_swiper_years .swiper-slide.swiper-slide-active .ef_history_inner_swiper_years_each::after {
  background: #1e7ae0;
  width: 46px;
  height: 46px;
  left: 0;
  top: -24px;
}

.ef_history_inner_swiper_years_each {
  cursor: pointer;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  border-top: #bbd7f6 4px solid;
  padding-top: 20px;
  position: relative;
  margin-top: 50px;
  z-index: 1;
}

.ef_history_inner_swiper_years_each::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1e7ae0;
  top: -5px;
  left: 12px;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
}

.ef_history_inner_swiper_years_each::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f9fafb;
  top: -9px;
  left: 8px;
  z-index: -1;
  -webkit-transition: 0.45s ease-in-out;
  transition: 0.45s ease-in-out;
}

.gc_banner {
  position: relative;
  height: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  background: var(--data-bg);
}

.gc_banner.is-dark,
.gc_banner.is-dark .globec-lead-form-wrapper ,
.gc_banner.is-dark .globec-lead-form-wrapper label
 {
  color: color-mix(in srgb, var(--text-color, #ffffff) 0%, black);
}

@media (max-width: 768px) {
  .gc_banner {
    display: block;
    height: auto;
    padding-bottom: 30px;
  }
}

.gc_banner .gc_image img {
  display: block;
  margin: 0 auto;
}

.gc_banner_img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  -o-object-position: center;
  object-position: center;
}

.gc_banner_img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gc_banner .gc_image img {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .gc_banner_img {
    position: relative;
    overflow: hidden;
  }
}

.gc_banner_content {
  max-width: 1250px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

@media (max-width: 768px) {
  .gc_banner_content {
    margin-top: 25px;
  }
}

.gc_banner_content .gc_main_title {
  max-width: 520px;
}

.gc_banner_content p,
.gc_banner_content .single-line-form {
  max-width: 490px; 
}

.single-line-form .field-tel {
  min-width: 300px;
}

.gc_offerings {
  padding: 50px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gc_offerings::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: #1e7ae0;
  z-index: -1;
}

@media (max-width: 768px) {
  .gc_offerings::before {
    height: 100%;
  }
}

.gc_offerings .gc_dots_1 {
  position: absolute;
  right: 0px;
  top: 50px;
}

@media (max-width: 768px) {
  .gc_offerings .gc_dots_1 {
    display: none;
  }
}

.gc_offerings .gc_dots_2 {
  position: absolute;
  left: 0px;
  top: 35%;
}

@media (max-width: 768px) {
  .gc_offerings .gc_dots_2 {
    display: none;
  }
}

.gc_offerings .gc_globe_each {
  text-align: left;
  padding: 30px 30px;
  margin-bottom: 30px; 
  height: 100%;
  min-height: 50vh;
  position: relative;
  border-radius: 0;
  background-color: var(--data-bg);
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 1px 1px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 1px 1px; 
}

@media (max-width: 768px) {
  .gc_offerings .gc_globe_each {
    max-width: 100%;
    margin-bottom: 20px;
    height: auto;
    border-radius: 10px;
    padding: 40px 20px;
  }
}

.gc_offerings .gc_globe_each--icon {
  margin-left: 0px;
}

.gc_offerings .gc_multi_btns {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 40px;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .gc_offerings .gc_multi_btns {
    position: relative;
    padding-left: 0px;
    bottom: 0px;
  }

  .gc_offerings .gc_multi_btns .gc_btn_secondary_v2 {
    padding: 0 15px;
    margin-right: 5px;
    width: 100%;
  }

  .gc_offerings .gc_multi_btns .gc_btn_secondary_v2:last-child {
    margin-right: 0px;
  }
}

.gc_offerings_full {
  padding: 70px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gc_offerings_full::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: #1e7ae0;
  z-index: -1;
}

@media (max-width: 768px) {
  .gc_offerings_full::before {
    height: 100%;
  }
}

.gc_offerings_full .gc_dots_1 {
  position: absolute;
  right: 0px;
  top: 50px;
}

@media (max-width: 768px) {
  .gc_offerings_full .gc_dots_1 {
    display: none;
  }
}

.gc_offerings_full .gc_dots_2 {
  position: absolute;
  left: 0px;
  top: 35%;
}

@media (max-width: 768px) {
  .gc_offerings_full .gc_dots_2 {
    display: none;
  }
}

.gc_offerings_full .gc_globe_each {
  text-align: left;
  padding: 40px 30px;
  height: 100%;
  min-height: 56vh;
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 1px 1px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 1px 1px;
}

@media (max-width: 768px) {
  .gc_offerings_full .gc_globe_each {
    max-width: 100%;
    margin-bottom: 30px;
    height: auto;
    padding: 40px 20px;
  }
}

.gc_offerings_full .gc_globe_each--icon {
  margin-left: 0px;
}

.gc_offerings_full .gc_multi_btns {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 40px;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .gc_offerings_full .gc_multi_btns {
    position: relative;
    padding-left: 0px;
    bottom: 0px;
  }

  .gc_offerings_full .gc_multi_btns .gc_btn_secondary_v2 {
    padding: 0 15px;
    margin-right: 5px;
    width: 100%;
  }

  .gc_offerings_full .gc_multi_btns .gc_btn_secondary_v2:last-child {
    margin-right: 0px;
  }
}

.gc_offerings_full_slide {
  margin-right: -15px;
}

.gc_offerings_full_slide--btns {
  position: relative;
  max-width: 140px;
  margin-left: auto;
  padding-bottom: 40px;
  margin-bottom: -60px;
}

.gc_offerings_full_slide--btns svg path {
  /* fill: #fff; */
}

@media (max-width: 768px) {
  .gc_offerings_full_slide--btns {
    display: none;
  }
}

.gc_globe_graph {
  position: relative;
  overflow: hidden;
}

.gc_globe_graph .gc_ring {
  position: absolute;
  left: 0;
  bottom: 30%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .gc_globe_graph .gc_ring {
    display: none;
  }
}

.gc_globe_graph .gc_solid {
  position: absolute;
  right: 0px;
  top: 40%;
  -webkit-transform: translateX(10%);
  transform: translateX(10%);
}

@media (max-width: 768px) {
  .gc_globe_graph .gc_solid {
    display: none;
  }
}

.gc_partners_each {
  background: #f9fafb;
  padding: 0 20px;
  border-radius: 5px;
  height: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.gc_partners .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.gc_pcd {
  display: none;
}

#timer {
  padding-left: 4px;
  font-weight: bold;
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #262424);
  line-height: 20px;
  font-size: calc(var(--font-size) * 0.875);
}

.gc_works {
  padding-top: 50px;
}

.gc_works .row > div:last-child .gc_works_each_circle::before {
  display: none;
}

.gc_works_each {
  position: relative;
}

@media (max-width: 768px) {
  .gc_works_each {
    padding-left: 50px;
  }
}

.gc_works_each_circle {
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 768px) {
  .gc_works_each_circle {
    position: static;
  }
}

.gc_works_each_circle::before {
  content: '';
  position: absolute;
  width: calc(100% + 30px);
  left: 0;
  height: 1px;
  background: #bbd7f6;
  top: 50%;
}

@media (max-width: 768px) {
  .gc_works_each_circle::before {
    width: 1px;
    height: calc(100% + 50px);
    top: 0;
    left: 16px;
  }
}

.gc_works_each_circle--span {
  width: 32px;
  height: 32px;
  border: #e0f5ff 1px solid;
  border-radius: 50%;
  top: 0;
  position: relative;
  background: #ffffff;
}

@media (max-width: 768px) {
  .gc_works_each_circle--span {
    left: 0px;
    position: absolute;
    z-index: 2;
  }
}

.gc_works_each_circle--span::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #1e7ae0;
  border-radius: 50%;
  top: 10px;
  left: 10px;
}

.gc_calc {
  position: relative;
  z-index: 1;
}

.gc_calc::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  top: 0;
  background: #1e7ae0;
  z-index: -1;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
  .gc_calc::before {
    width: 100%;
    height: 80%;
  }
}

.gc_calc_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 1220px;
}

@media (max-width: 768px) {
  .gc_calc_inner {
    display: block;
  }
}

.gc_calc_inner_info {
  padding: 60px 0;
  max-width: 650px;
  min-width: 650px;
}

@media (max-width: 768px) {
  .gc_calc_inner_info {
    min-width: 100%;
  }
}

.gc_calc_inner_info .gc_form_v2 {
  padding-top: 50px;
}

.gc_calc_inner_info .form-group {
  margin-bottom: 40px;
}

.gc_calc_inner_info .gc_form_v2 .form-group label {
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .gc_calc_inner_info .gc_form_v2 .form-group label {
    font-size: calc(var(--font-size) * 0.875);
  }
}

.gc_calc_inner_info .gc_form_v2 .form-group input {
  font-size: calc(var(--font-size) * 1.0625);
  color: var(--text-color, #262424);
}

@media (max-width: 768px) {
  .gc_calc_inner_info .gc_form_v2 .form-group input {
    font-size: calc(var(--font-size) * 0.875);
  }
}

.gc_calc_inner_info .gc_form_v2 .gc_radio_box span {
  font-size: calc(var(--font-size) * 1.0625);
  color: var(--text-color, #262424);
  height: 45px;
}

@media (max-width: 768px) {
  .gc_calc_inner_info .gc_form_v2 .gc_radio_box span {
    font-size: calc(var(--font-size) * 0.875);
  }
}

.gc_calc_inner_result {
  min-width: 410px;
  max-width: 410px;
  padding: 40px;
  background: var(--card-bg, #ffffff);
  border: var(--card-border, #bbd7f6) 1px solid;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0 10px 15px;
  box-shadow: rgba(0, 0, 0, 0.08) 0 10px 15px;
  border-radius: 10px;
  margin-bottom: -20px;
}

@media (max-width: 768px) {
  .gc_calc_inner_result {
    min-width: 100%;
    margin-bottom: 0px;
    padding: 30px 20px;
  }
}

.gc_calc_inner_result_each {
  text-align: center;
  margin-bottom: 40px;
}

.gc_calc_inner_result_each--title {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .gc_calc_inner_result_each--title {
    font-size: calc(var(--font-size) * 0.875);
    margin-bottom: 2px;
  }
}

.gc_calc_inner_result_each--title.main {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
}

@media (max-width: 768px) {
  .gc_calc_inner_result_each--title.main {
    font-size: calc(var(--font-size) * 1.0625);
  }
}

.gc_calc_inner_result_each--info {
  color: var(--blue-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 35px;
}

@media (max-width: 768px) {
  .gc_calc_inner_result_each--info {
    font-size: calc(var(--font-size) * 1.25);
  }
}

.gc_calc_inner_result_each--info.main {
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
}

@media (max-width: 768px) {
  .gc_calc_inner_result_each--info.main {
    font-size: var(--font-size, 30px);
  }
}

.range-wrap {
  position: relative;
  margin: 0 auto 3rem;
}

.range {
  width: 100%;
}

.bubble {
  background: #ffffff;
  font-size: calc(var(--font-size) * 1.0625);
  color: var(--text-color, #262424);
  padding: 4px 8px;
  position: absolute;
  border-radius: 4px;
  bottom: -45px;
}

@media (max-width: 768px) {
  .bubble {
    font-size: calc(var(--font-size) * 0.875);
  }
}

.bubble::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #ffffff;
  top: -6px;
  left: calc(50% - 5px);
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px !important;
  background: #d3d3d3;
  outline: none;
  opacity: 1;
  -webkit-transition: 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  padding: 0px !important;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.gc_trade_tools {
  background:var(--data-bg);
  position: relative;
  overflow: hidden;
}

.gc_trade_tools .gc_dots_1 {
  position: absolute;
  left: 0;
  top: 50px;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}

@media (max-width: 768px) {
  .gc_trade_tools .gc_dots_1 {
    display: none;
  }
}

.gc_trade_tools .gc_dots_2 {
  position: absolute;
  right: 0;
  bottom: 0px;
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

@media (max-width: 768px) {
  .gc_trade_tools .gc_dots_2 {
    display: none;
  }
}

.gc_trade_tools .gc_ring {
  position: absolute;
  right: 0;
  top: 100px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

@media (max-width: 768px) {
  .gc_trade_tools .gc_ring {
    display: none;
  }
}

.gc_trade_tools .gc_solid {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .gc_trade_tools .gc_solid {
    display: none;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@media (max-width: 768px) {
  .gc_trade_tools_img {
    padding: 0px 0 30px;
    display: none;
  }
}

.gc_trade_tools_img_each {
  display: none;
  text-align: center;
}

.gc_trade_tools_img_each.active {
  display: block;
  -webkit-animation: fadeInRight 0.35s linear;
  animation: fadeInRight 0.35s linear;
}

.gc_accordion .gc_trade_tools_swiper--btns {
  display: none;
}

@media (max-width: 768px) {
  .gc_accordion .gc_trade_tools_swiper--btns {
    display: block;
    position: absolute;
    min-width: 140px;
    top: 220px;
    left: calc(50% - 55px);
  }
}

.gc_accordion .swiper-slide {
  display: block;
}

@media (max-width: 768px) {
  .gc_accordion .swiper-slide .gc_trade_tools_img_each {
    display: block;
  }

  .gc_accordion .swiper-slide .gc_trade_tools_img_each img {
    max-height: 180px;
    margin-bottom: 60px;
  }
}

.gc_accordion .swiper-wrapper {
  display: block;
}

@media (max-width: 768px) {
  .gc_accordion .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.gc_accordion .card {
  margin-bottom: 20px;
  background-color: transparent;
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gc_accordion .card {
    border: none;
    background: transparent;
  }
}

@media (max-width: 768px) {
  .gc_accordion .collapse {
    display: block;
  }
}

.gc_accordion .card-header {
  background: var(--card-bg, #ffffff);
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 40px;
}

@media (max-width: 768px) {
  .gc_accordion .card-header {
    padding: 0px;
    height: 60px;
    background: transparent;
  }
}

.gc_accordion .card-header h5 button {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.5625);
  font-family: 'Maison Neue', sans-serif;
  text-decoration: none;
  padding: 0px;
  -webkit-transition: 0.35s linear;
  transition: 0.35s linear;
}

@media (max-width: 768px) {
  .gc_accordion .card-header h5 button {
    font-size: calc(var(--font-size) * 1.25);
    color: var(--blue-color, #1e7ae0);
  }
}

.gc_accordion .card-header h5 button[aria-expanded='true'] {
  color: var(--link-color, #1e7ae0);
}

.gc_accordion .card-body {
  padding-top: 0px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: var(--card-bg, #ffffff);
}

@media (max-width: 768px) {
  .gc_accordion .card-body {
    padding: 0px;
  }
}

.gc_accordion .card-body p {
  font-size: calc(var(--font-size) * 1);
  line-height: 25px;
  color: var(--text-color, #ffffff);
}

@media (max-width: 768px) {
  .gc_accordion .card-body p {
    font-size: calc(var(--font-size) * 1);
  }
}

.gc_accordion--text {
  color: var(--text-color, #262424);
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 25px;
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
}

@media (max-width: 768px) {
  .gc_accordion--text {
    font-size: calc(var(--font-size) * 1);
  }
}

.gc_offerings_slide {
  margin-right: -15px;
}

.gc_offerings_slide--btns {
  position: relative;
  max-width: 140px;
  margin-left: auto;
  padding-bottom: 40px;
  margin-bottom: -40px;
}

.gc_offerings_slide--btns svg path {
  fill: #fff;
}

@media (max-width: 768px) {
  .gc_offerings_slide--btns {
    display: none;
  }
}

.gc_strengths {
  position: relative;
  overflow: hidden;
}

.gc_strengths .gc_ring {
  position: absolute;
  right: 0;
  bottom: 50px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

@media (max-width: 768px) {
  .gc_strengths .gc_ring {
    display: none;
  }
}

.gc_strengths .gc_solid {
  position: absolute;
  left: 0;
  top: 50px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .gc_strengths .gc_solid {
    display: none;
  }
}

.gc_strengths .gc_invest_slide_each {
  max-width: 100%;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .gc_strengths .gc_invest_slide_each {
    min-width: calc(100vw - 60px);
  }
}

@media (max-width: 768px) {
  .gc_strengths .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: auto;
  }
}

/* 
.resend_otp_dis.disable {
  opacity: 0.5;
  pointer-events: none;
} */

.event_resend_btn.disable,
.resend_otp_dis.disable,
.otp_resend_btn.disable {
  opacity: 0.5;
  pointer-events: none;
}

.gc_nonresidency,
.gc_exposed {
  display: none;
}

.gc_resend_btn.disable {
  opacity: 0.5;
  pointer-events: none;
}

.gc_promocode a {
  font-family: 'Maison Neue', sans-serif;
  font-size: calc(var(--font-size) * 0.875);
}

#gc_promocode {
  display: none;
}

.gc_trade_pro_main {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .gc_trade_pro_main {
    padding: 40px 0;
  }
}

.gc_trade_pro_main--content {
  border: var(--card-border, #bbd7f6) 1px solid;
  padding: 30px 40px;
  border-radius: 10px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .gc_trade_pro_main--content {
    padding: 20px;
  }
}

.gc_trade_pro_main--content p {
  margin-bottom: 0px;
}

.gc_text_img {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gc_text_img {
    padding: 40px 0;
  }
}

.gc_text_img .gc_ring {
  position: absolute;
  left: 0;
  top: 20%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .gc_text_img .gc_ring {
    display: none;
  }
}

.gc_text_img .gc_solid {
  position: absolute;
  right: 0;
  bottom: 20%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

@media (max-width: 768px) {
  .gc_text_img .gc_solid {
    display: none;
  }
}

.gc_text_img--pic {
  margin-top: 40px;
  position: relative;
  display: inline-block;
}

.gc_text_img--pic::before {
  content: '';
  position: absolute;
  width: calc(100% - 8px);
  height: 100%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.52) 24px 16px 36px;
  box-shadow: rgba(0, 0, 0, 0.52) 24px 16px 36px;
  border-radius: 50px;
  left: 4px;
}

.gc_chain {
  background: url('../images/chain_bg.jpg') left 40% center no-repeat;
  background-size: 102%;
  position: relative;
  overflow: hidden;
  min-height: 720px;
}

@media (max-width: 1024px) {
  .gc_chain {
    background: #d3e4ec url('../images/grow_bg.png') bottom left -180px no-repeat;
    background-size: 180%;
  }

  .gc_chain .gc_text_img--pic {
    margin-top: 50px !important;
    margin-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .gc_chain {
    background: #d3e4ec url('../images/grow_bg.png') bottom no-repeat;
    background-size: 280%;
  }

  .gc_chain .gc_text_img--pic {
    margin-top: 50px !important;
    margin-bottom: 90px;
  }
}

.gc_text_img_v2 {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gc_text_img_v2 {
    padding: 40px 0;
  }
}

.gc_text_img_v2--img {
  /* background: var(--data-bg); */
  padding: 50px 0;
}

.gc_text_img_v2--img img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .gc_text_img_v2--img {
    margin-bottom: 30px;
    padding: 0 15px !important;
  }
}

.gc_text_img_v2--content {
  padding: 0 100px;
}

@media (max-width: 768px) {
  .gc_text_img_v2--content {
    padding: 0px 15px;
  }
}

.gc_text_img_v2 .gc_solid {
  position: absolute;
  right: 0;
  bottom: 20%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

@media (max-width: 768px) {
  .gc_text_img_v2 .gc_solid {
    display: none;
  }
}

.gc_text_img_v2 .gc_ring {
  position: absolute;
  left: 0;
  top: 20%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .gc_text_img_v2 .gc_ring {
    display: none;
  }
}

.gc_block_blue {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-family: 'Metrophobic', sans-serif;
  background: #e9f7fd;
  border: var(--card-border, #bbd7f6) 1px solid;
  min-height: 250px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .gc_block_blue {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .gc_offerings_2 .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: auto;
  }

  .gc_offerings_2 .gc_block_blue {
    width: 220px;
  }
}

.gc_finance_strengths {
  background: url('../images/icons/circle-big2.svg') center top no-repeat;
  background-attachment: fixed;
}

.gc_finance_strengths--title {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.gc_finance_strengths_list_each {
  background: var(--data-bg, #bbd7f6);
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 25px;
  -webkit-box-shadow: rgba(8, 46, 63, 0.04) 0 23px 28px;
  box-shadow: rgba(8, 46, 63, 0.04) 0 23px 28px;
}

.gc_finance_strengths_list_each--title {
  color: var(--link-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .gc_finance_strengths_list_each--title {
    font-size: calc(var(--font-size) * 1.25);
  }
}

.gc_finance_strengths_list_each--text {
  color: var(--text-color, #122a46);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-family: 'Maison Neue', sans-serif;
}

.gc_highlights .gc_globe_each {
  border-radius: 4px;
  height: calc(100% - 40px);
  background-color: var(--data-bg,"#FFFFFF");
}

@media (max-width: 768px) {
  .gc_highlights .gc_globe_each {
    max-width: 100%;
    height: calc(100% - 20px);
  }
}

.progress {
  width: 220px;
  height: 220px;
  line-height: 220px;
  background: none;
  margin: 0 auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
}

.progress:after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 28px solid #fdf6c9;
  position: absolute;
  top: 0;
  left: 0;
}

.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 28px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: var(--blue-color, #1e7ae0);
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 110px;
  border-bottom-right-radius: 110px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 110px;
  border-bottom-left-radius: 110px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress .progress-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  font-size: calc(var(--font-size) * 1);
  text-align: center;
  color: var(--card-color, #ffffff);
  line-height: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-family: 'Metrophobic', sans-serif;
}

.progress .progress-value span {
  font-size: calc(var(--font-size) * 1);
}

/* This for loop creates the necessary css animation names 
Due to the split circle of progress-left and progress right, we must use the animations on each side. 
*/
.progress[data-percentage='1'] .progress-right .progress-bar {
  -webkit-animation: loading-1 0.5s linear forwards;
  animation: loading-1 0.5s linear forwards;
}

.progress[data-percentage='1'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='2'] .progress-right .progress-bar {
  -webkit-animation: loading-2 0.5s linear forwards;
  animation: loading-2 0.5s linear forwards;
}

.progress[data-percentage='2'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='3'] .progress-right .progress-bar {
  -webkit-animation: loading-3 0.5s linear forwards;
  animation: loading-3 0.5s linear forwards;
}

.progress[data-percentage='3'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='4'] .progress-right .progress-bar {
  -webkit-animation: loading-4 0.5s linear forwards;
  animation: loading-4 0.5s linear forwards;
}

.progress[data-percentage='4'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='5'] .progress-right .progress-bar {
  -webkit-animation: loading-5 0.5s linear forwards;
  animation: loading-5 0.5s linear forwards;
}

.progress[data-percentage='5'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='6'] .progress-right .progress-bar {
  -webkit-animation: loading-6 0.5s linear forwards;
  animation: loading-6 0.5s linear forwards;
}

.progress[data-percentage='6'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='7'] .progress-right .progress-bar {
  -webkit-animation: loading-7 0.5s linear forwards;
  animation: loading-7 0.5s linear forwards;
}

.progress[data-percentage='7'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='8'] .progress-right .progress-bar {
  -webkit-animation: loading-8 0.5s linear forwards;
  animation: loading-8 0.5s linear forwards;
}

.progress[data-percentage='8'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='9'] .progress-right .progress-bar {
  -webkit-animation: loading-9 0.5s linear forwards;
  animation: loading-9 0.5s linear forwards;
}

.progress[data-percentage='9'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='10'] .progress-right .progress-bar {
  -webkit-animation: loading-10 0.5s linear forwards;
  animation: loading-10 0.5s linear forwards;
}

.progress[data-percentage='10'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='11'] .progress-right .progress-bar {
  -webkit-animation: loading-11 0.5s linear forwards;
  animation: loading-11 0.5s linear forwards;
}

.progress[data-percentage='11'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='12'] .progress-right .progress-bar {
  -webkit-animation: loading-12 0.5s linear forwards;
  animation: loading-12 0.5s linear forwards;
}

.progress[data-percentage='12'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='13'] .progress-right .progress-bar {
  -webkit-animation: loading-13 0.5s linear forwards;
  animation: loading-13 0.5s linear forwards;
}

.progress[data-percentage='13'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='14'] .progress-right .progress-bar {
  -webkit-animation: loading-14 0.5s linear forwards;
  animation: loading-14 0.5s linear forwards;
}

.progress[data-percentage='14'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='15'] .progress-right .progress-bar {
  -webkit-animation: loading-15 0.5s linear forwards;
  animation: loading-15 0.5s linear forwards;
}

.progress[data-percentage='15'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='16'] .progress-right .progress-bar {
  -webkit-animation: loading-16 0.5s linear forwards;
  animation: loading-16 0.5s linear forwards;
}

.progress[data-percentage='16'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='17'] .progress-right .progress-bar {
  -webkit-animation: loading-17 0.5s linear forwards;
  animation: loading-17 0.5s linear forwards;
}

.progress[data-percentage='17'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='18'] .progress-right .progress-bar {
  -webkit-animation: loading-18 0.5s linear forwards;
  animation: loading-18 0.5s linear forwards;
}

.progress[data-percentage='18'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='19'] .progress-right .progress-bar {
  -webkit-animation: loading-19 0.5s linear forwards;
  animation: loading-19 0.5s linear forwards;
}

.progress[data-percentage='19'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='20'] .progress-right .progress-bar {
  -webkit-animation: loading-20 0.5s linear forwards;
  animation: loading-20 0.5s linear forwards;
}

.progress[data-percentage='20'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='21'] .progress-right .progress-bar {
  -webkit-animation: loading-21 0.5s linear forwards;
  animation: loading-21 0.5s linear forwards;
}

.progress[data-percentage='21'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='22'] .progress-right .progress-bar {
  -webkit-animation: loading-22 0.5s linear forwards;
  animation: loading-22 0.5s linear forwards;
}

.progress[data-percentage='22'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='23'] .progress-right .progress-bar {
  -webkit-animation: loading-23 0.5s linear forwards;
  animation: loading-23 0.5s linear forwards;
}

.progress[data-percentage='23'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='24'] .progress-right .progress-bar {
  -webkit-animation: loading-24 0.5s linear forwards;
  animation: loading-24 0.5s linear forwards;
}

.progress[data-percentage='24'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='25'] .progress-right .progress-bar {
  -webkit-animation: loading-25 0.5s linear forwards;
  animation: loading-25 0.5s linear forwards;
}

.progress[data-percentage='25'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='26'] .progress-right .progress-bar {
  -webkit-animation: loading-26 0.5s linear forwards;
  animation: loading-26 0.5s linear forwards;
}

.progress[data-percentage='26'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='27'] .progress-right .progress-bar {
  -webkit-animation: loading-27 0.5s linear forwards;
  animation: loading-27 0.5s linear forwards;
}

.progress[data-percentage='27'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='28'] .progress-right .progress-bar {
  -webkit-animation: loading-28 0.5s linear forwards;
  animation: loading-28 0.5s linear forwards;
}

.progress[data-percentage='28'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='29'] .progress-right .progress-bar {
  -webkit-animation: loading-29 0.5s linear forwards;
  animation: loading-29 0.5s linear forwards;
}

.progress[data-percentage='29'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='30'] .progress-right .progress-bar {
  -webkit-animation: loading-30 0.5s linear forwards;
  animation: loading-30 0.5s linear forwards;
}

.progress[data-percentage='30'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='31'] .progress-right .progress-bar {
  -webkit-animation: loading-31 0.5s linear forwards;
  animation: loading-31 0.5s linear forwards;
}

.progress[data-percentage='31'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='32'] .progress-right .progress-bar {
  -webkit-animation: loading-32 0.5s linear forwards;
  animation: loading-32 0.5s linear forwards;
}

.progress[data-percentage='32'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='33'] .progress-right .progress-bar {
  -webkit-animation: loading-33 0.5s linear forwards;
  animation: loading-33 0.5s linear forwards;
}

.progress[data-percentage='33'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='34'] .progress-right .progress-bar {
  -webkit-animation: loading-34 0.5s linear forwards;
  animation: loading-34 0.5s linear forwards;
}

.progress[data-percentage='34'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='35'] .progress-right .progress-bar {
  -webkit-animation: loading-35 0.5s linear forwards;
  animation: loading-35 0.5s linear forwards;
}

.progress[data-percentage='35'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='36'] .progress-right .progress-bar {
  -webkit-animation: loading-36 0.5s linear forwards;
  animation: loading-36 0.5s linear forwards;
}

.progress[data-percentage='36'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='37'] .progress-right .progress-bar {
  -webkit-animation: loading-37 0.5s linear forwards;
  animation: loading-37 0.5s linear forwards;
}

.progress[data-percentage='37'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='38'] .progress-right .progress-bar {
  -webkit-animation: loading-38 0.5s linear forwards;
  animation: loading-38 0.5s linear forwards;
}

.progress[data-percentage='38'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='39'] .progress-right .progress-bar {
  -webkit-animation: loading-39 0.5s linear forwards;
  animation: loading-39 0.5s linear forwards;
}

.progress[data-percentage='39'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='40'] .progress-right .progress-bar {
  -webkit-animation: loading-40 0.5s linear forwards;
  animation: loading-40 0.5s linear forwards;
}

.progress[data-percentage='40'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='41'] .progress-right .progress-bar {
  -webkit-animation: loading-41 0.5s linear forwards;
  animation: loading-41 0.5s linear forwards;
}

.progress[data-percentage='41'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='42'] .progress-right .progress-bar {
  -webkit-animation: loading-42 0.5s linear forwards;
  animation: loading-42 0.5s linear forwards;
}

.progress[data-percentage='42'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='43'] .progress-right .progress-bar {
  -webkit-animation: loading-43 0.5s linear forwards;
  animation: loading-43 0.5s linear forwards;
}

.progress[data-percentage='43'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='44'] .progress-right .progress-bar {
  -webkit-animation: loading-44 0.5s linear forwards;
  animation: loading-44 0.5s linear forwards;
}

.progress[data-percentage='44'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='45'] .progress-right .progress-bar {
  -webkit-animation: loading-45 0.5s linear forwards;
  animation: loading-45 0.5s linear forwards;
}

.progress[data-percentage='45'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='46'] .progress-right .progress-bar {
  -webkit-animation: loading-46 0.5s linear forwards;
  animation: loading-46 0.5s linear forwards;
}

.progress[data-percentage='46'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='47'] .progress-right .progress-bar {
  -webkit-animation: loading-47 0.5s linear forwards;
  animation: loading-47 0.5s linear forwards;
}

.progress[data-percentage='47'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='48'] .progress-right .progress-bar {
  -webkit-animation: loading-48 0.5s linear forwards;
  animation: loading-48 0.5s linear forwards;
}

.progress[data-percentage='48'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='49'] .progress-right .progress-bar {
  -webkit-animation: loading-49 0.5s linear forwards;
  animation: loading-49 0.5s linear forwards;
}

.progress[data-percentage='49'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='50'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s linear forwards;
  animation: loading-50 0.5s linear forwards;
}

.progress[data-percentage='50'] .progress-left .progress-bar {
  -webkit-animation: 0;
  animation: 0;
}

.progress[data-percentage='51'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='51'] .progress-left .progress-bar {
  -webkit-animation: loading-1 0.5s linear forwards 0.5s;
  animation: loading-1 0.5s linear forwards 0.5s;
}

.progress[data-percentage='52'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='52'] .progress-left .progress-bar {
  -webkit-animation: loading-2 0.5s linear forwards 0.5s;
  animation: loading-2 0.5s linear forwards 0.5s;
}

.progress[data-percentage='53'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='53'] .progress-left .progress-bar {
  -webkit-animation: loading-3 0.5s linear forwards 0.5s;
  animation: loading-3 0.5s linear forwards 0.5s;
}

.progress[data-percentage='54'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='54'] .progress-left .progress-bar {
  -webkit-animation: loading-4 0.5s linear forwards 0.5s;
  animation: loading-4 0.5s linear forwards 0.5s;
}

.progress[data-percentage='55'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='55'] .progress-left .progress-bar {
  -webkit-animation: loading-5 0.5s linear forwards 0.5s;
  animation: loading-5 0.5s linear forwards 0.5s;
}

.progress[data-percentage='56'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='56'] .progress-left .progress-bar {
  -webkit-animation: loading-6 0.5s linear forwards 0.5s;
  animation: loading-6 0.5s linear forwards 0.5s;
}

.progress[data-percentage='57'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='57'] .progress-left .progress-bar {
  -webkit-animation: loading-7 0.5s linear forwards 0.5s;
  animation: loading-7 0.5s linear forwards 0.5s;
}

.progress[data-percentage='58'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='58'] .progress-left .progress-bar {
  -webkit-animation: loading-8 0.5s linear forwards 0.5s;
  animation: loading-8 0.5s linear forwards 0.5s;
}

.progress[data-percentage='59'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='59'] .progress-left .progress-bar {
  -webkit-animation: loading-9 0.5s linear forwards 0.5s;
  animation: loading-9 0.5s linear forwards 0.5s;
}

.progress[data-percentage='60'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='60'] .progress-left .progress-bar {
  -webkit-animation: loading-10 0.5s linear forwards 0.5s;
  animation: loading-10 0.5s linear forwards 0.5s;
}

.progress[data-percentage='61'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='61'] .progress-left .progress-bar {
  -webkit-animation: loading-11 0.5s linear forwards 0.5s;
  animation: loading-11 0.5s linear forwards 0.5s;
}

.progress[data-percentage='62'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='62'] .progress-left .progress-bar {
  -webkit-animation: loading-12 0.5s linear forwards 0.5s;
  animation: loading-12 0.5s linear forwards 0.5s;
}

.progress[data-percentage='63'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='63'] .progress-left .progress-bar {
  -webkit-animation: loading-13 0.5s linear forwards 0.5s;
  animation: loading-13 0.5s linear forwards 0.5s;
}

.progress[data-percentage='64'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='64'] .progress-left .progress-bar {
  -webkit-animation: loading-14 0.5s linear forwards 0.5s;
  animation: loading-14 0.5s linear forwards 0.5s;
}

.progress[data-percentage='65'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='65'] .progress-left .progress-bar {
  -webkit-animation: loading-15 0.5s linear forwards 0.5s;
  animation: loading-15 0.5s linear forwards 0.5s;
}

.progress[data-percentage='66'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='66'] .progress-left .progress-bar {
  -webkit-animation: loading-16 0.5s linear forwards 0.5s;
  animation: loading-16 0.5s linear forwards 0.5s;
}

.progress[data-percentage='67'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='67'] .progress-left .progress-bar {
  -webkit-animation: loading-17 0.5s linear forwards 0.5s;
  animation: loading-17 0.5s linear forwards 0.5s;
}

.progress[data-percentage='68'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='68'] .progress-left .progress-bar {
  -webkit-animation: loading-18 0.5s linear forwards 0.5s;
  animation: loading-18 0.5s linear forwards 0.5s;
}

.progress[data-percentage='69'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='69'] .progress-left .progress-bar {
  -webkit-animation: loading-19 0.5s linear forwards 0.5s;
  animation: loading-19 0.5s linear forwards 0.5s;
}

.progress[data-percentage='70'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='70'] .progress-left .progress-bar {
  -webkit-animation: loading-20 0.5s linear forwards 0.5s;
  animation: loading-20 0.5s linear forwards 0.5s;
}

.progress[data-percentage='71'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='71'] .progress-left .progress-bar {
  -webkit-animation: loading-21 0.5s linear forwards 0.5s;
  animation: loading-21 0.5s linear forwards 0.5s;
}

.progress[data-percentage='72'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='72'] .progress-left .progress-bar {
  -webkit-animation: loading-22 0.5s linear forwards 0.5s;
  animation: loading-22 0.5s linear forwards 0.5s;
}

.progress[data-percentage='73'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='73'] .progress-left .progress-bar {
  -webkit-animation: loading-23 0.5s linear forwards 0.5s;
  animation: loading-23 0.5s linear forwards 0.5s;
}

.progress[data-percentage='74'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='74'] .progress-left .progress-bar {
  -webkit-animation: loading-24 0.5s linear forwards 0.5s;
  animation: loading-24 0.5s linear forwards 0.5s;
}

.progress[data-percentage='75'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='75'] .progress-left .progress-bar {
  -webkit-animation: loading-25 0.5s linear forwards 0.5s;
  animation: loading-25 0.5s linear forwards 0.5s;
}

.progress[data-percentage='76'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='76'] .progress-left .progress-bar {
  -webkit-animation: loading-26 0.5s linear forwards 0.5s;
  animation: loading-26 0.5s linear forwards 0.5s;
}

.progress[data-percentage='77'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='77'] .progress-left .progress-bar {
  -webkit-animation: loading-27 0.5s linear forwards 0.5s;
  animation: loading-27 0.5s linear forwards 0.5s;
}

.progress[data-percentage='78'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='78'] .progress-left .progress-bar {
  -webkit-animation: loading-28 0.5s linear forwards 0.5s;
  animation: loading-28 0.5s linear forwards 0.5s;
}

.progress[data-percentage='79'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='79'] .progress-left .progress-bar {
  -webkit-animation: loading-29 0.5s linear forwards 0.5s;
  animation: loading-29 0.5s linear forwards 0.5s;
}

.progress[data-percentage='80'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='80'] .progress-left .progress-bar {
  -webkit-animation: loading-30 0.5s linear forwards 0.5s;
  animation: loading-30 0.5s linear forwards 0.5s;
}

.progress[data-percentage='81'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='81'] .progress-left .progress-bar {
  -webkit-animation: loading-31 0.5s linear forwards 0.5s;
  animation: loading-31 0.5s linear forwards 0.5s;
}

.progress[data-percentage='82'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='82'] .progress-left .progress-bar {
  -webkit-animation: loading-32 0.5s linear forwards 0.5s;
  animation: loading-32 0.5s linear forwards 0.5s;
}

.progress[data-percentage='83'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='83'] .progress-left .progress-bar {
  -webkit-animation: loading-33 0.5s linear forwards 0.5s;
  animation: loading-33 0.5s linear forwards 0.5s;
}

.progress[data-percentage='84'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='84'] .progress-left .progress-bar {
  -webkit-animation: loading-34 0.5s linear forwards 0.5s;
  animation: loading-34 0.5s linear forwards 0.5s;
}

.progress[data-percentage='85'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='85'] .progress-left .progress-bar {
  -webkit-animation: loading-35 0.5s linear forwards 0.5s;
  animation: loading-35 0.5s linear forwards 0.5s;
}

.progress[data-percentage='86'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='86'] .progress-left .progress-bar {
  -webkit-animation: loading-36 0.5s linear forwards 0.5s;
  animation: loading-36 0.5s linear forwards 0.5s;
}

.progress[data-percentage='87'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='87'] .progress-left .progress-bar {
  -webkit-animation: loading-37 0.5s linear forwards 0.5s;
  animation: loading-37 0.5s linear forwards 0.5s;
}

.progress[data-percentage='88'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='88'] .progress-left .progress-bar {
  -webkit-animation: loading-38 0.5s linear forwards 0.5s;
  animation: loading-38 0.5s linear forwards 0.5s;
}

.progress[data-percentage='89'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='89'] .progress-left .progress-bar {
  -webkit-animation: loading-39 0.5s linear forwards 0.5s;
  animation: loading-39 0.5s linear forwards 0.5s;
}

.progress[data-percentage='90'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='90'] .progress-left .progress-bar {
  -webkit-animation: loading-40 0.5s linear forwards 0.5s;
  animation: loading-40 0.5s linear forwards 0.5s;
}

.progress[data-percentage='91'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='91'] .progress-left .progress-bar {
  -webkit-animation: loading-41 0.5s linear forwards 0.5s;
  animation: loading-41 0.5s linear forwards 0.5s;
}

.progress[data-percentage='92'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='92'] .progress-left .progress-bar {
  -webkit-animation: loading-42 0.5s linear forwards 0.5s;
  animation: loading-42 0.5s linear forwards 0.5s;
}

.progress[data-percentage='93'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='93'] .progress-left .progress-bar {
  -webkit-animation: loading-43 0.5s linear forwards 0.5s;
  animation: loading-43 0.5s linear forwards 0.5s;
}

.progress[data-percentage='94'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='94'] .progress-left .progress-bar {
  -webkit-animation: loading-44 0.5s linear forwards 0.5s;
  animation: loading-44 0.5s linear forwards 0.5s;
}

.progress[data-percentage='95'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='95'] .progress-left .progress-bar {
  -webkit-animation: loading-45 0.5s linear forwards 0.5s;
  animation: loading-45 0.5s linear forwards 0.5s;
}

.progress[data-percentage='96'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='96'] .progress-left .progress-bar {
  -webkit-animation: loading-46 0.5s linear forwards 0.5s;
  animation: loading-46 0.5s linear forwards 0.5s;
}

.progress[data-percentage='97'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='97'] .progress-left .progress-bar {
  -webkit-animation: loading-47 0.5s linear forwards 0.5s;
  animation: loading-47 0.5s linear forwards 0.5s;
}

.progress[data-percentage='98'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='98'] .progress-left .progress-bar {
  -webkit-animation: loading-48 0.5s linear forwards 0.5s;
  animation: loading-48 0.5s linear forwards 0.5s;
}

.progress[data-percentage='99'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='99'] .progress-left .progress-bar {
  -webkit-animation: loading-49 0.5s linear forwards 0.5s;
  animation: loading-49 0.5s linear forwards 0.5s;
}

.progress[data-percentage='100'] .progress-right .progress-bar {
  -webkit-animation: loading-50 0.5s forwards;
  animation: loading-50 0.5s forwards;
}

.progress[data-percentage='100'] .progress-left .progress-bar {
  -webkit-animation: loading-50 0.5s linear forwards 0.5s;
  animation: loading-50 0.5s linear forwards 0.5s;
}

@-webkit-keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(3.6);
    transform: rotate(3.6deg);
  }
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(3.6);
    transform: rotate(3.6deg);
  }
}

@-webkit-keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(7.2);
    transform: rotate(7.2deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(7.2);
    transform: rotate(7.2deg);
  }
}

@-webkit-keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(10.8);
    transform: rotate(10.8deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(10.8);
    transform: rotate(10.8deg);
  }
}

@-webkit-keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(14.4);
    transform: rotate(14.4deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(14.4);
    transform: rotate(14.4deg);
  }
}

@-webkit-keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(18);
    transform: rotate(18deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(18);
    transform: rotate(18deg);
  }
}

@-webkit-keyframes loading-6 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(21.6);
    transform: rotate(21.6deg);
  }
}

@keyframes loading-6 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(21.6);
    transform: rotate(21.6deg);
  }
}

@-webkit-keyframes loading-7 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(25.2);
    transform: rotate(25.2deg);
  }
}

@keyframes loading-7 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(25.2);
    transform: rotate(25.2deg);
  }
}

@-webkit-keyframes loading-8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(28.8);
    transform: rotate(28.8deg);
  }
}

@keyframes loading-8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(28.8);
    transform: rotate(28.8deg);
  }
}

@-webkit-keyframes loading-9 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(32.4);
    transform: rotate(32.4deg);
  }
}

@keyframes loading-9 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(32.4);
    transform: rotate(32.4deg);
  }
}

@-webkit-keyframes loading-10 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}

@keyframes loading-10 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}

@-webkit-keyframes loading-11 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(39.6);
    transform: rotate(39.6deg);
  }
}

@keyframes loading-11 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(39.6);
    transform: rotate(39.6deg);
  }
}

@-webkit-keyframes loading-12 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(43.2);
    transform: rotate(43.2deg);
  }
}

@keyframes loading-12 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(43.2);
    transform: rotate(43.2deg);
  }
}

@-webkit-keyframes loading-13 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(46.8);
    transform: rotate(46.8deg);
  }
}

@keyframes loading-13 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(46.8);
    transform: rotate(46.8deg);
  }
}

@-webkit-keyframes loading-14 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(50.4);
    transform: rotate(50.4deg);
  }
}

@keyframes loading-14 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(50.4);
    transform: rotate(50.4deg);
  }
}

@-webkit-keyframes loading-15 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(54);
    transform: rotate(54deg);
  }
}

@keyframes loading-15 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(54);
    transform: rotate(54deg);
  }
}

@-webkit-keyframes loading-16 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(57.6);
    transform: rotate(57.6deg);
  }
}

@keyframes loading-16 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(57.6);
    transform: rotate(57.6deg);
  }
}

@-webkit-keyframes loading-17 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(61.2);
    transform: rotate(61.2deg);
  }
}

@keyframes loading-17 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(61.2);
    transform: rotate(61.2deg);
  }
}

@-webkit-keyframes loading-18 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(64.8);
    transform: rotate(64.8deg);
  }
}

@keyframes loading-18 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(64.8);
    transform: rotate(64.8deg);
  }
}

@-webkit-keyframes loading-19 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(68.4);
    transform: rotate(68.4deg);
  }
}

@keyframes loading-19 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(68.4);
    transform: rotate(68.4deg);
  }
}

@-webkit-keyframes loading-20 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}

@keyframes loading-20 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}

@-webkit-keyframes loading-21 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(75.6);
    transform: rotate(75.6deg);
  }
}

@keyframes loading-21 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(75.6);
    transform: rotate(75.6deg);
  }
}

@-webkit-keyframes loading-22 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(79.2);
    transform: rotate(79.2deg);
  }
}

@keyframes loading-22 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(79.2);
    transform: rotate(79.2deg);
  }
}

@-webkit-keyframes loading-23 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(82.8);
    transform: rotate(82.8deg);
  }
}

@keyframes loading-23 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(82.8);
    transform: rotate(82.8deg);
  }
}

@-webkit-keyframes loading-24 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(86.4);
    transform: rotate(86.4deg);
  }
}

@keyframes loading-24 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(86.4);
    transform: rotate(86.4deg);
  }
}

@-webkit-keyframes loading-25 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90);
    transform: rotate(90deg);
  }
}

@keyframes loading-25 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90);
    transform: rotate(90deg);
  }
}

@-webkit-keyframes loading-26 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(93.6);
    transform: rotate(93.6deg);
  }
}

@keyframes loading-26 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(93.6);
    transform: rotate(93.6deg);
  }
}

@-webkit-keyframes loading-27 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(97.2);
    transform: rotate(97.2deg);
  }
}

@keyframes loading-27 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(97.2);
    transform: rotate(97.2deg);
  }
}

@-webkit-keyframes loading-28 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(100.8);
    transform: rotate(100.8deg);
  }
}

@keyframes loading-28 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(100.8);
    transform: rotate(100.8deg);
  }
}

@-webkit-keyframes loading-29 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(104.4);
    transform: rotate(104.4deg);
  }
}

@keyframes loading-29 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(104.4);
    transform: rotate(104.4deg);
  }
}

@-webkit-keyframes loading-30 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}

@keyframes loading-30 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}

@-webkit-keyframes loading-31 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(111.6);
    transform: rotate(111.6deg);
  }
}

@keyframes loading-31 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(111.6);
    transform: rotate(111.6deg);
  }
}

@-webkit-keyframes loading-32 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(115.2);
    transform: rotate(115.2deg);
  }
}

@keyframes loading-32 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(115.2);
    transform: rotate(115.2deg);
  }
}

@-webkit-keyframes loading-33 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(118.8);
    transform: rotate(118.8deg);
  }
}

@keyframes loading-33 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(118.8);
    transform: rotate(118.8deg);
  }
}

@-webkit-keyframes loading-34 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(122.4);
    transform: rotate(122.4deg);
  }
}

@keyframes loading-34 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(122.4);
    transform: rotate(122.4deg);
  }
}

@-webkit-keyframes loading-35 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126);
    transform: rotate(126deg);
  }
}

@keyframes loading-35 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126);
    transform: rotate(126deg);
  }
}

@-webkit-keyframes loading-36 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(129.6);
    transform: rotate(129.6deg);
  }
}

@keyframes loading-36 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(129.6);
    transform: rotate(129.6deg);
  }
}

@-webkit-keyframes loading-37 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(133.2);
    transform: rotate(133.2deg);
  }
}

@keyframes loading-37 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(133.2);
    transform: rotate(133.2deg);
  }
}

@-webkit-keyframes loading-38 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(136.8);
    transform: rotate(136.8deg);
  }
}

@keyframes loading-38 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(136.8);
    transform: rotate(136.8deg);
  }
}

@-webkit-keyframes loading-39 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(140.4);
    transform: rotate(140.4deg);
  }
}

@keyframes loading-39 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(140.4);
    transform: rotate(140.4deg);
  }
}

@-webkit-keyframes loading-40 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}

@keyframes loading-40 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}

@-webkit-keyframes loading-41 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(147.6);
    transform: rotate(147.6deg);
  }
}

@keyframes loading-41 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(147.6);
    transform: rotate(147.6deg);
  }
}

@-webkit-keyframes loading-42 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(151.2);
    transform: rotate(151.2deg);
  }
}

@keyframes loading-42 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(151.2);
    transform: rotate(151.2deg);
  }
}

@-webkit-keyframes loading-43 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(154.8);
    transform: rotate(154.8deg);
  }
}

@keyframes loading-43 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(154.8);
    transform: rotate(154.8deg);
  }
}

@-webkit-keyframes loading-44 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(158.4);
    transform: rotate(158.4deg);
  }
}

@keyframes loading-44 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(158.4);
    transform: rotate(158.4deg);
  }
}

@-webkit-keyframes loading-45 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(162);
    transform: rotate(162deg);
  }
}

@keyframes loading-45 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(162);
    transform: rotate(162deg);
  }
}

@-webkit-keyframes loading-46 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(165.6);
    transform: rotate(165.6deg);
  }
}

@keyframes loading-46 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(165.6);
    transform: rotate(165.6deg);
  }
}

@-webkit-keyframes loading-47 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(169.2);
    transform: rotate(169.2deg);
  }
}

@keyframes loading-47 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(169.2);
    transform: rotate(169.2deg);
  }
}

@-webkit-keyframes loading-48 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(172.8);
    transform: rotate(172.8deg);
  }
}

@keyframes loading-48 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(172.8);
    transform: rotate(172.8deg);
  }
}

@-webkit-keyframes loading-49 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(176.4);
    transform: rotate(176.4deg);
  }
}

@keyframes loading-49 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(176.4);
    transform: rotate(176.4deg);
  }
}

@-webkit-keyframes loading-50 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}

@keyframes loading-50 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}

@media (max-width: 768px) {
  .gc_market .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: auto;
  }
}

.gc_market--name {
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  color: var(--text-color, #262424);
  font-family: 'Maison Neue', sans-serif;
  text-align: center;
  margin-top: 10px;
}

.gc_market_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gc_market_list_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Maison Neue', sans-serif;
  margin: 0 20px;
}

.gc_market_list_each span {
  background: var(--data-bg);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .gc_pillar .gc_globe_each {
    max-width: 100%;
  }
}

.gc_benefits {
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gc_benefits .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: auto;
  }
}

.gc_benefits .gc_ring {
  position: absolute;
  left: 0;
  top: 30%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .gc_benefits .gc_ring {
    display: none;
  }
}

.gc_benefits .gc_solid {
  position: absolute;
  right: 0;
  bottom: 10%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

@media (max-width: 768px) {
  .gc_benefits .gc_solid {
    display: none;
  }
}

.gc_benefits .gc_invest_slide_each {
  margin-bottom: 20px;
  max-width: 100%;
  min-height: calc(100% - 20px);
}

@media (max-width: 768px) {
  .gc_benefits .gc_invest_slide_each {
    width: 70vw;
  }
}

.gc_ipo {
  background: url('../images/icons/circle-big2.svg') right -250px center no-repeat;
  background-size: contain;
  position: relative;
  overflow: hidden;
}

.gc_ipo .gc_solid {
  position: absolute;
  left: 0;
  bottom: 10%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .gc_ipo .gc_solid {
    display: none;
  }
}

table.dataTable,
.dataTables_scrollHeadInner {
  width: 100% !important;
}

.data_table .dataTables_scroll {
  border-radius: 10px;
  -webkit-box-shadow: rgba(206, 206, 206, 0.5) 0 5px 20px;
  box-shadow: rgba(206, 206, 206, 0.5) 0 5px 20px;
  padding: 25px;
}

@media (max-width: 768px) {
  .data_table .dataTables_scroll {
    padding: 15px;
    padding-right: 0px;
    margin-right: -15px;
    border-radius: 10px 0 0 10px;
  }
}

.data_table thead tr th {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 25px;
  color: var(--text-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  border: none;
  padding: 10px 25px;
  background: #e9f7fd;
  min-width: 80px;
}

.data_table thead tr th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.data_table thead tr th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 768px) {
  .data_table thead tr th {
    min-width: 160px;
  }
}

.data_table tbody tr td {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1);
  font-family: 'Metrophobic', sans-serif;
  border-bottom: #bbd7f6 1px solid;
  padding: 25px;
  border-top: 0;
  vertical-align: bottom;
  min-width: 80px;
  max-width: 125px;
}

.data_table .dataTables_filter {
  text-align: left !important;
}

@media (max-width: 768px) {
  .data_table .dataTables_filter label {
    display: block;
  }
}

.data_table .dataTables_filter input {
  font-size: calc(var(--font-size) * 0.875);
  color: var(--text-color, #1e7ae0);
  border-radius: 10px;
  -webkit-box-shadow: #e6e6e6 0 2px 20px;
  box-shadow: #e6e6e6 0 2px 20px;
  height: 52px;
  min-width: 275px;
  border: none;
  margin-left: 0 !important;
  margin-bottom: 10px;
  border: 1px solid transparent;
  background: url('../images/icons/search.svg') center left 25px no-repeat;
  padding-left: 50px;
}

@media (max-width: 768px) {
  .data_table .dataTables_filter input {
    margin-top: 20px;
    width: 100% !important;
  }
}

.data_table .dataTables_filter input::-webkit-input-placeholder {
  color: var(--blue-color, #1e7ae0);
}

.data_table .dataTables_filter input:-ms-input-placeholder {
  color: var(--blue-color, #1e7ae0);
}

.data_table .dataTables_filter input::-ms-input-placeholder {
  color: var(--blue-color, #1e7ae0);
}

.data_table .dataTables_filter input::placeholder {
  color: var(--blue-color, #1e7ae0);
}

.gc_ipo_tabs .nav-tabs {
  border: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: -40px;
}

@media (max-width: 768px) {
  .gc_ipo_tabs .nav-tabs {
    margin-bottom: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
  }

  .gc_ipo_tabs .nav-tabs .nav-item:last-child {
    width: 100%;
  }
}

.gc_ipo_tabs .nav-tabs .nav-item {
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 4px;
  height: 52px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  font-size: calc(var(--font-size) * 0.875);
}

@media (max-width: 768px) {
  .gc_ipo_tabs .nav-tabs .nav-item {
    border-radius: 0px;
    margin-right: 0px;
    width: 50%;
  }
}

.gc_ipo_tabs .nav-tabs .nav-item:last-child {
  margin-right: 0px;
}

.gc_ipo_tabs .nav-tabs .nav-item.active {
  background: #1e7ae0;
  color: #fff;
}

.gc_ipo_tabs .nav-tabs .nav-item span {
  background: #fdf6c9;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  margin-left: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: calc(var(--font-size) * 0.75);
  color: var(--text-color, #262424);
}

.gc_accordian .dataTables_filter {
  display: none;
}

.gc_accordian .dataTables_scroll {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0px;
}

.gc_accordian .card {
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color: var(--data-bg, #ffffff);
}

.gc_accordian .card-header {
  padding: 25px;
  border: none;
  background: transparent;
}

.gc_accordian .card-header .btn-link {
  font-size: calc(var(--font-size) * 1.25);
  font-family: 'Maison Neue', sans-serif;
  line-height: 30px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0px;
  color: var(--text-color, #262424);
  position: relative;
  white-space: normal;
}

.gc_accordian .card-header .btn-link[aria-expanded='true']::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.gc_accordian .card-header .btn-link::before {
  content: '';
  position: absolute;
  right: 0px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: url('../images/icons/arrow-blue.svg') center no-repeat;
  background-size: 10px;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.gc_accordian .card-header .btn-link::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 5px;
  width: 20px;
  height: 20px;
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 6px;
}

.gc_accordian .card-header .btn-link:hover,
.gc_accordian .card-header .btn-link:focus {
  text-decoration: none;
}

.gc_accordian .card-body {
  padding: 25px;
  padding-top: 0px;
}

.gc_accordian .card-body p {
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
}

.gc_ipo_single {
  padding: 25px;
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 10px;
  margin-bottom: 20px;
}

.gc_ipo_single--title {
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 30px;
  color: var(--text-color, #262424);
  font-family: 'Maison Neue', sans-serif;
  margin-bottom: 10px;
}

.gc_ipo_single--label {
  font-family: 'Maison Neue', sans-serif;
  font-size: calc(var(--font-size) * 1);
  background: color-mix(in srgb, var(--warning-color, #ffffff) 86%, white);
  border-radius: 4px;
  height: 34px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 30px;
}

.gc_ipo_single_list_each {
  margin-bottom: 30px;
}

.gc_ipo_single_list_each--title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  margin-bottom: 4px;
}

.gc_ipo_single_list_each--text {
  font-size: calc(var(--font-size) * 1.125);
  color: var(--text-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  /* max-width: 200px; */
}

.gc_timeline {
  padding: 25px;
  -webkit-box-shadow: #cecece 0 5px 20px;
  box-shadow: #cecece 0 5px 20px;
  border-radius: 10px;
}

.gc_timeline--title {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  color: var(--text-color, #262424);
  font-family: 'Maison Neue', sans-serif;
  margin-bottom: 20px;
}

.gc_timeline_options {
  position: relative;
}

.gc_timeline_options::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 2px;
  background: #bbd7f6;
  height: calc(100% - 40px);
  width: 1px;
}

.gc_timeline_options_each {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.gc_timeline_options_each::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border: #7e7373 1px solid;
  border-radius: 50%;
  left: 0;
  top: 2px;
  background: #fff;
}

.gc_timeline_options_each::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background: #7e7373;
  border-radius: 50%;
  left: 9px;
  top: 11px;
}

.gc_timeline_options_each.done::before {
  border: #4caf50 1px solid;
}

.gc_timeline_options_each.done::after {
  background: #4caf50;
}

.gc_timeline_options_each.done .gc_timeline_options_each--title,
.gc_timeline_options_each.done .gc_timeline_options_each--date {
  color: var(--text-color, #262424);
}

.gc_timeline_options_each--title {
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 20px;
  color: #919191;
  font-family: 'Maison Neue', sans-serif;
}

.gc_timeline_options_each--date {
  font-size: calc(var(--font-size) * 0.75);
  color: #919191;
}

.gc_single_bond {
  background: #f6f7f8;
  padding: 80px 0;
}

@media (min-width: 1200px) {
  .gc_single_bond .row > div:nth-child(5) .gc_single_bond_wrap_each,
  .gc_single_bond .row > div:nth-child(6) .gc_single_bond_wrap_each,
  .gc_single_bond .row > div:nth-child(7) .gc_single_bond_wrap_each,
  .gc_single_bond .row > div:nth-child(8) .gc_single_bond_wrap_each {
    margin-bottom: 0px;
  }
}

@media (max-width: 768px) {
  .gc_single_bond {
    padding: 50px 0;
  }

  .gc_single_bond .row > div:nth-child(7) .gc_single_bond_wrap_each,
  .gc_single_bond .row > div:nth-child(8) .gc_single_bond_wrap_each {
    margin-bottom: 0px;
  }
}

.gc_single_bond--title {
  font-size: var(--font-size, 64px);
  color: var(--text-color, #262424);
  font-family: 'Maison Neue', sans-serif;
  line-height: 100%;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .gc_single_bond--title {
    font-size: calc(var(--font-size) * 1.875);
  }
}

.gc_single_bond--yield {
  color: var(--blue-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  font-size: var(--font-size, 56px);
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .gc_single_bond--yield {
    font-size: var(--font-size, 30px);
  }
}

.gc_single_bond--label {
  background: #fdf6c9;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 34px;
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1);
  font-family: 'Maison Neue', sans-serif;
  padding: 0 16px;
}

.gc_single_bond_wrap {
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 10px;
  padding: 25px;
  background: var(--card-bg, #fff);
  margin: 20px 0;
}

.gc_single_bond_wrap_each {
  margin-bottom: 40px;
}

.gc_single_bond_wrap_each--title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.125);
  line-height: 25px;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .gc_single_bond_wrap_each--title {
    font-size: calc(var(--font-size) * 1);
  }
}

.gc_single_bond_wrap_each--text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 25px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .gc_single_bond_wrap_each--text {
    font-size: calc(var(--font-size) * 1.125);
  }
}

.gc_bonds .gc_bonds_category_list {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  position: relative;
}

.gc_bonds .gc_bonds_category_list::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.gc_bonds_category--title {
  font-size: calc(var(--font-size) * 1);
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #262424);
  margin-bottom: 10px;
}

.gc_bonds_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gc_bonds_category_list_wrap {
  position: relative;
}

/* .gc_bonds_category_list_wrap::before {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0px;
  right: 0px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(50%, white));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, white 50%);
  z-index: 1;
} */

.gc_bonds_category_list_each {
  margin-right: 10px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.gc_bonds_category_list_each label {
  cursor: pointer;
}

.gc_bonds_category_list_each label input {
  display: none;
}

.gc_bonds_category_list_each label input:checked + span,
.gc_bonds_category_list_each .segment.active {
  color: #fff;
  background: #1e7ae0;
}

.gc_bonds_category_list_each .segment.active:hover {
  color: #fff !important;
}

.gc_bonds_category_list_each label span,
.gc_bonds_category_list_each .segment {
  font-size: calc(var(--font-size) * 0.875);
  color: var(--blue-color, #1e7ae0);
  height: 34px;
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 4px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 16px;
  -webkit-box-shadow: rgba(146, 153, 184, 0.05) 0 3px 6px;
  box-shadow: rgba(146, 153, 184, 0.05) 0 3px 6px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.gc_bonds_grid {
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 10px;
  padding: 30px;
}

@media (max-width: 768px) {
  .gc_bonds_grid {
    padding: 15px;
  }
}

.gc_bonds_grid_slider_wrap {
  position: relative;
  margin-right: -15px;
}

.gc_bonds_grid_slider_wrap .gc_bonds_grid_slider--btns {
  position: absolute;
  top: -30px;
  right: 0;
  /* right: 10%; */
  min-width: 140px;
  z-index: 1;
}

@media (max-width: 768px) {
  .gc_bonds_grid_slider_wrap .gc_bonds_grid_slider--btns {
    display: none;
  }
}

.gc_bonds_grid--title {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-family: 'Maison Neue', sans-serif;
}

.gc_bonds_grid_info_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: #f1f2f6 1px solid;
  padding: 25px 0;
}

@media (max-width: 768px) {
  .gc_bonds_grid_info_each {
    padding: 15px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.gc_bonds_grid_info_each--yield {
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.125);
  line-height: 25px;
  font-family: 'Maison Neue', sans-serif;
  font-weight: 700;
}

@media (max-width: 768px) {
  .gc_bonds_grid_info_each--yield {
    width: 100%;
    margin-bottom: 10px;
  }
}

.gc_bonds_grid_info_each--label {
  font-size: calc(var(--font-size) * 0.875);
  color: var(--text-color, #262424); 
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  background: color-mix(in srgb, var(--warning-color, #ffc107) 35%, white);
  -webkit-box-shadow: rgba(146, 153, 184, 0.05) 0 3px 6px;
  box-shadow: rgba(146, 153, 184, 0.05) 0 3px 6px;
  padding: 6px 12px;
  line-height: 1;
  font-family: 'Maison Neue', sans-serif;
  white-space: nowrap;
}

.gc_bonds_grid_info_each--label.recommend-to-sell {
   background: color-mix(in srgb, var(--error-color, #dc3545) 35%, white);
}

.gc_bonds_grid_info_each--name {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1);
  font-family: 'Maison Neue', sans-serif;
}

.gc_bonds_grid_info_each--text {
  font-size: calc(var(--font-size) * 1);
}

.gc_bonds_grid_info_each--link {
  color: var(--blue-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  margin-top: 25px;
  display: inline-block;
}

.gc_bonds_grid_info_each--link:hover {
  text-decoration: none;
}

.gc_explore_bonds--title {
  color: var(--text-color, #1e7ae0);
  font-size: var(--font-size, 24px);
  line-height: 30px;
  font-family: 'Maison Neue', sans-serif;
  margin-bottom: 20px;
}

.gc_explore_bonds--close {
  position: absolute;
  right: 10px;
  top: 15px;
}

.gc_explore_bonds_filter {
  background: #f9fafb;
  padding: 25px 20px;
}

@media (max-width: 768px) {
  .gc_explore_bonds_filter {
    position: fixed;
    width: 100%;
    height: calc(100vh - 60px);
    left: 0;
    top: 60px;
    z-index: 9;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    overflow-y: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .gc_explore_bonds_filter.in {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.gc_options_mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  margin: 0 -15px;
}

.gc_options_mob_each {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 66px;
  font-size: calc(var(--font-size) * 0.75);
  color: var(--text-color, #262424);
  font-family: 'Maison Neue', sans-serif;
  position: relative;
}

.gc_options_mob_each:first-child::before {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 20px);
  top: 10px;
  background: #bbd7f6;
  right: 0px;
}

.gc_options_mob_each img {
  margin-right: 10px;
}

.data_table .sorting::before,
.data_table .sorting::after {
  display: none !important;
}

.gc_sort_opt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: -70px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .gc_sort_opt {
    position: fixed;
    width: 100%;
    height: calc(100vh - 60px);
    left: 0;
    top: 60px;
    z-index: 9;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    overflow-y: auto;
    margin: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    display: block;
    padding: 25px;
    background: #f9fafb;
  }

  .gc_sort_opt.in {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.gc_sort_opt--close {
  position: absolute;
  right: 10px;
  top: 15px;
}

.gc_sort_opt--title {
  font-size: calc(var(--font-size) * 0.875);
  font-family: 'Maison Neue', sans-serif;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .gc_sort_opt--title {
    margin-bottom: 10px;
  }
}

.gc_sort_opt_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .gc_sort_opt_btns {
    display: block;
  }
}

.gc_sort_opt_btns label {
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .gc_sort_opt_btns label {
    margin-bottom: 10px;
  }
}

body.gc_overlay::before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 8;
  left: 0;
  top: 30px;
  -webkit-transition: 0.45s linear;
  transition: 0.45s linear;
}

.gc_overlay {
  position: relative;
}

.gc_overlay::before {
  opacity: 1;
}

.gc_list_v1 {
  padding-left: 35px;
  list-style: none;
}

.gc_list_v1 li {
  position: relative;
  margin-bottom: 15px;
}

.gc_list_v1 li::before {
  content: '';
  position: absolute;
  background: url('../images/icons/tick.svg') center no-repeat;
  width: 21px;
  height: 21px;
  top: 3px;
  left: -35px;
}

.gc_press {
  padding: 100px 0;
}

.gc_press_main {
  position: relative;
  overflow: hidden;
}

.gc_press_main::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/icons/circle-big2.svg') center right no-repeat;
  background-attachment: fixed;
  -webkit-transform: translateX(30%);
  transform: translateX(30%);
  z-index: -1;
}

.gc_press_main .gc_solid {
  position: absolute;
  left: 0;
  top: 5%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

@media (max-width: 768px) {
  .gc_press_main .gc_solid {
    display: none;
  }
}

.gc_press_wrap {
  position: relative;
}

.gc_press_wrap::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #bbd7f6;
  left: 16px;
  top: 0;
}

.gc_press_each {
  padding-left: 60px;
  position: relative;
}

@media (max-width: 768px) {
  .gc_press_each {
    padding-left: 40px;
  }
}

.gc_press_each--year {
  font-size: calc(var(--font-size) * 1.5625);
  color: var(--blue-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  margin-bottom: 25px;
  position: relative;
  font-weight: bold;
}

.gc_press_each--year .gc_works_each_circle--span {
  position: absolute;
  left: -60px;
  top: -5px;
}

@media (max-width: 768px) {
  .gc_press_each--year .gc_works_each_circle--span {
    left: -40px;
  }
}

.gc_press_each--content .gc_news_each {
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  background: var(--data-bg, #fff);
}

.gc_press_each--content .gc_news_each.gc_news_each_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gc_press_each--content .gc_news_each.gc_news_each_flex .gc_subtitle2 {
  max-width: calc(100% - 120px);
}

@media (max-width: 768px) {
  .gc_press_each--content .gc_news_each.gc_news_each_flex .gc_subtitle2 {
    font-size: calc(var(--font-size) * 1.0625);
  }
}

.gc_press_tabs .nav-tabs {
  border: none;
  padding-bottom: 80px;
  padding-left: 60px;
}

.gc_press .gc_press_tabs .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 40px;
  padding-left: 0px;
}

.gc_press .gc_press_tabs .nav-tabs li {
  min-width: fit-content;
}

.gc_press .gc_press_tabs .nav-tabs li a {
  font-size: calc(var(--font-size) * 1.25);
  cursor: pointer;
}

@media (max-width: 768px) {
  .gc_press_tabs .nav-tabs {
    padding-left: 40px;
  }
}

.gc_press_tabs .nav-tabs li {
  margin-right: 30px;
}

.gc_press_tabs .nav-tabs li:last-child {
  margin-right: 0px;
}

.gc_press_tabs .nav-tabs li a {
  font-size: calc(var(--font-size) * 1.5625);
  font-family: 'Maison Neue', sans-serif;
  color: var(--link-color, #1e7ae0);
  -webkit-transition: 0.35s linear;
  transition: 0.35s linear;
  border-bottom: transparent 2px solid;
  padding-bottom: 11px;
}

@media (max-width: 768px) {
  .gc_press_tabs .nav-tabs li a {
    font-size: calc(var(--font-size) * 1.25);
  }
}

.gc_press_tabs .nav-tabs li a:hover {
  text-decoration: none;
}

.gc_press_tabs .nav-tabs li a.active {
  color: var(--text-color, #1e7ae0);
  border-bottom: var(--text-color, #1e7ae0) 2px solid;
}

.gc_block_v1 {
  margin-bottom: 20px;
}

.gc_block_v1 .gc_image img {
  border-radius: 10px;
}

.gc_block_v1 .gc_link {
  font-size: calc(var(--font-size) * 1);
}

.gc_block_v1 .gc_link img {
  max-height: 15px;
}

.gc_block_v1 .gc_news_each {
  border: none;
}

@media (max-width: 768px) {
  /* .gc_stock_reports .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-y: auto;
  }*/
  .gc_stock_reports .row .gc_block_v1 {
    min-width: 80vw;
  }
}

.custom_stocks_loader {
    display: flex;
    gap: 32px;
    /* padding: 6px; */
    /* overflow: hidden; */
    /* min-height: 390px; */
}
.gc_stocks_skeleton {
    flex: 0 0 calc(33.333% - 28px);
    min-width: 220px;
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gc_skel {
    background: linear-gradient(90deg, #e8eef4 25%, #d0dbe6 50%, #e8eef4 75%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: gc_shimmer 1.4s infinite;
}
.gc_skel--title  { height: calc(var(--font-size) * 1.5); width: 65%; }
.gc_skel--line   { height: calc(var(--font-size)); width: 100%; }
.gc_skel--short  { width: 55%; }
.gc_skel--divider{ height: calc(var(--font-size) * .1); background: #e2e8f0; animation: none; }
.gc_skel--btn    { height: calc(var(--font-size) * 2.5); width: 120px; border-radius: 40px; margin-top: 6px; }

@keyframes gc_shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 640px) {
    .custom_stocks_loader { flex-direction: column; }
    .gc_stocks_skeleton   { flex: none; min-width: auto; }
}

.gc_picks_each {
  background: var(--data-bg, #fff);
  border: var(--border-color, #fff) 1px solid;
  border-radius: 10px;
  padding: 25px;
}

.gc_picks_each--title {
  color: var(--link-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  font-family: 'Maison Neue', sans-serif;
  margin-bottom: 20px;
}

.gc_picks_each--btns {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .gc_picks_each--btns {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.gc_picks_each .gc_border_btm {
  border-bottom: var(--border-color, #fff)1px solid;
  margin-bottom: 20px;
}

.gc_picks_each_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gc_picks_each_info .gc_bonds_grid_info_each--label {
  margin-bottom: 15px;
}

.gc_picks_each_info_each {
  margin-bottom: 20px;
  width: 50%;
}

.gc_picks_each_info_each--title {
  font-size: calc(var(--font-size) * 1);
  color: var(--text-color, #1e7ae0);
  margin-bottom: 6px;
}

.gc_picks_each_info_each--text1 {
  font-size:calc(var(--font-size) * 1.875);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  color: var(--text-color, #1e7ae0);
  line-height: 100%;
  display: flex;
  align-items: center;
}

.gc_picks_each_info_each--text1 img {
  margin-left: 4px;
}

.gc_picks_each_info_each--text2 {
  font-size: calc(var(--font-size) * 1.5625);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  color: var(--text-color, #1e7ae0);
  line-height: 100%;
}

.gc_picks_each_info_each--text3 {
  font-size: calc(var(--font-size) * 1.125);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  color: var(--text-color, #1e7ae0);
  line-height: 100%;
}

.gc_events_each {
  border: var(--card-bg, #bbd7f6) 1px solid;
  padding: 35px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 5px 20px #cecece80;
  box-shadow: 0px 5px 20px #cecece80;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .gc_events_each {
    padding: 20px;
  }
}

.gc_events_each_price {
  margin-bottom: 10px;
}

.gc_events_each_price span {
  text-decoration: line-through;
  opacity: 0.5;
}

.gc_events_each_price .gc_bonds_grid_info_each--label {
  font-size: calc(var(--font-size) * 1.125);
  /* color: var(--blue-color, #1e7ae0); */
  font-weight: bold;
}

.gc_events_each_price--btn {
  text-align: right;
}

@media (max-width: 768px) {
  .gc_events_each_price--btn {
    text-align: left;
  }
}

.gc_events_each_info {
  border-bottom: var(--border-color, #1e7ae0) 1px solid;
  border-right: var(--border-color, #1e7ae0) 1px solid;
  height: 100%;
  margin-right: -30px;
}

@media (max-width: 768px) {
  .gc_events_each_info {
    border: none;
    margin-right: 0px;
  }
}

.gc_events_each_info_each {
  color: var(--link-color, #1e7ae0);
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  font-size: calc(calc(var(--font-size) * 0.875) );
  margin-bottom: calc(calc(var(--font-size) * 0.875) );
}

.gc_events_each_info_each .gc_image {
  width: calc(var(--font-size) * 1.875);
  height: calc(var(--font-size) * 1.875);
  display: block;
  margin-top: calc(var(--font-size) * -0.2);
}
.gc_events_each_info_each .gc_image svg,.gc_events_each_info_each .gc_image .svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc_events_each_content {
  border-bottom:var(--border-color, #1e7ae0) 1px solid;
  height: 100%;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .gc_events_each_content {
    padding-left: 0px;
  }
}

.gc_events_each_content--title {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1);
  font-family: 'Maison Neue', sans-serif;
  margin-bottom: 10px;
}

.gc_research_detail .gc_image img {
  border-radius: 10px;
}

.gc_social_share {
  position: relative;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gc_social_share {
    width: 100%;
    margin-top: 10px;
  }
}

.gc_social_share:hover .gc_social_share_icons {
  opacity: 1;
}

.gc_social_share_icons {
  background: #f9fafb;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  right: 0px;
  opacity: 0;
  -webkit-box-shadow: #f2f2f2 0 2px 1px;
  box-shadow: #f2f2f2 0 2px 1px;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
}

@media (max-width: 768px) {
  .gc_social_share_icons {
    opacity: 1;
    left: 0;
    right: auto;
  }
}

.gc_social_share_icons a {
  width: 30px;
  height: 30px;
  background: #1e7ae0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 6px;
}

.gb-csrmenu .gb-csrwrap::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.gb-csrsections {
  min-height: 450px;
}

.gb-responsibilities {
  position: static !important;
}

.gb h1,
.gb h2,
.gb h3,
.gb h4,
.gb h5,
.gb h6 {
  padding: 0px;
  margin: 0px;
  font-family: 'Maison Neue', sans-serif;
}

.gb p,
.gb span,
.gb a {
  padding: 0px;
  margin: 0px;
  font-family: 'Metrophobic', sans-serif;
}

.gb ul,
.gb li {
  padding: 0px;
  margin: 0px;
}
/* 
.gb label,
.gb input,
.gb textarea,
.gb select,
.gb button
 {
  padding: 0px;
  margin: 0px;
  border: none;
  outline: none;
  font-family: 'Metrophobic', sans-serif;
} */

.gb-bluebg {
  background-color: #e9f7fd;
}

.gb-paleyellowbg {
  background-color: #fdf8d6;
}

.gb-skybluebg {
  background-color: #e9f7fd;
}
.gb-pagebanner {
  background-color: var(--data-bg, #E0F7FA);
}

.gb-pagebanner .gb-item {
  padding: 8% 0px;
}

@media only screen and (max-width: 600px) {
  .gb-pagebanner .gb-item {
    padding: 60px 30px;
  }
}

@media only screen and (max-width: 350px) {
  .gb-pagebanner .gb-item {
    padding: 30px 20px;
  }
}

.gb-pagebanner.is-dark, .gb-pagebanner.is-dark .gb-item .gb-title {
  color: color-mix(in srgb, var(--text-color, #ffffff) 0%, white); 
}



@media only screen and (max-width: 768px) {
  .gb-pagebanner .gb-item .gb-title {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-pagebanner .gb-item .gb-content {
  padding-top: 20px;
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
}

@media only screen and (max-width: 768px) {
  .gb-pagebanner .gb-item .gb-content {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-gridform .input-group-text {
  background-color: var(--card-bg, #ffffff);
}

.gb-gridform .input-group-prepend {
  display: none;
}

.gb-gridform .gc_btn_primary {
  height: 45px;
}

@media only screen and (max-width: 600px) {
  .gb-gridform .gc_btn_primary {
    height: 45px;
    padding: 0 10px;
    font-size: calc(var(--font-size) * 0.875);
  }
}

.gb-homeotp .gb-close {
  float: none;
  display: inherit;
  margin-left: auto;
  margin-right: 0px;
}

.gb-plack {
  padding: 15px 25px;
}

.gb-plack .gb-block {
  height: 100%;
  padding: 25px 25px 25px 45px;
  border-radius: 5px;
  border: 2px solid #122a46;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .gb-plack .gb-block {
    padding: 10px 10px 10px 25px;
    margin: 0px 3px;
    margin-bottom: 20px;
    height: auto;
  }
}

.gb-plack .gb-block::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  top: 38px;
  left: 25px;
  background-color: var(--text-color, #1e7ae0);
  border-radius: 50%;
}

@media only screen and (max-width: 600px) {
  .gb-plack .gb-block::before {
    top: 20px;
    left: 12px;
    width: 7px;
    height: 7px;
  }
}

.gb-plack .gb-block .gb-title {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: 400;
  padding-bottom: 30px;
  margin: 0px;
}

.gb-plack .gb-block .gb-title span {
  font-weight: bold;
  font-size: var(--font-size, 24px);
  line-height: 34px;
  font-family: 'Maison Neue', sans-serif;
  display: block;
}

@media only screen and (max-width: 600px) {
  .gb-plack .gb-block .gb-title {
    font-size: calc(var(--font-size) * 1);
    line-height: 24px;
    padding-bottom: 20px;
  }

  .gb-plack .gb-block .gb-title span {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gb-plack .gb-block .gb-type {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 20px;
  font-weight: normal;
  padding-bottom: 0px;
  margin: 0px;
}

@media only screen and (max-width: 600px) {
  .gb-plack .gb-block .gb-type {
    font-size: calc(var(--font-size) * 0.75);
    line-height: 17px;
    padding-bottom: 10px;
  }
}

.gb-plack .gb-block .gb-cost {
  font-family: 'Maison Neue', sans-serif;
  font-size: var(--font-size, 24px);
  line-height: 24px;
  font-weight: bold;
  margin: 0px;
}

@media only screen and (max-width: 600px) {
  .gb-plack .gb-block .gb-cost {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gb-plack .gb-block.gb-datasavings {
  border: 2px solid #ddc32f;
}

.gb-plack .gb-block.gb-datasavings::before {
  background-color: #ddc32f;
}

.gb-plack .gb-block.gb-datasavings .gb-cost {
  color: #ddc32f;
}

.gb-plack .gb-block.gb-datainvesting {
  border: 2px solid #1e7ae0;
  background: #dbf2fb;
}

.gb-plack .gb-block.gb-datainvesting::before {
  background-color: var(--blue-color, #1e7ae0);
}

.gb-plack .gb-block.gb-datainvesting .gb-cost {
  color: var(--blue-color, #1e7ae0);
}

.gb-mobile-reverse {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
  -ms-flex-direction: initial;
  flex-direction: initial;
}

@media (max-width: 768px) {
  .gb-mobile-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.gb-sectionheader {
  padding: 0% 30px 3% 30px;
}

.gb-sectionheader .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-sectionheader .gb-title {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-homebanner .gb-homebanner-text p {
  margin-bottom: 0px;
}

.gb-chartrange p {
  color: var(--text-color, #1e7ae0);
  text-align: center;
  font-size: calc(var(--font-size) * 0.75);
  line-height: 14px;
  padding-left: 6%;
}

@media (max-width: 600px) {
  .gb-chartrange p {
    padding-left: 15%;
  }
}

@media (max-width: 600px) {
  .gb-banner-padd {
    padding: 0 30px;
  }
}

.gb-career {
  padding: 60px 0;
}

@media only screen and (max-width: 600px) {
  .gb-career {
    padding: 60px 5px;
  }
}

@media only screen and (max-width: 350px) {
  .gb-career {
    padding: 30px 5px;
  }
}

.gb-career .gb-category {
  padding-bottom: 20px;
}

.gb-career .gb-category .gb-category-select label {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 0.875);
  line-height: 18px;
}

.gb-career .gb-result {
  padding: 0px 15px;
}

.gb-career .gb-result .gb-list {
  padding: 10px 0px;
}

.gb-career .gb-result .gb-list .gb-job {
  position: relative;
  padding: 3% 3%;
  border-radius: 10px;
  background-color: #f9fafb;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 1;
}

.gb-career .gb-result .gb-list .gb-job.active {
  margin-bottom: -15px;
  /* -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 3px 6px;
          box-shadow: rgba(0, 0, 0, 0.2) 0 3px 6px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; */
}

.gb-career .gb-result .gb-list .gb-job .gb-title h3 {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 35px;
  font-weight: normal;
  padding-bottom: 5px;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-job .gb-title h3 {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gb-career .gb-result .gb-list .gb-job .gb-title p {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding: 5px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-job .gb-title p {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-career .gb-result .gb-list .gb-job .gb-title p.gb-exp-icon::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 20px;
  margin-right: 10px;
  background-image: url('../images/careers/experience-icon.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-job .gb-title p.gb-exp-icon::before {
    width: 20px;
    height: 16px;
    margin-right: 5px;
  }
}

.gb-career .gb-result .gb-list .gb-job .gb-title p.gb-loc-icon::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 20px;
  margin-right: 10px;
  background-image: url('../images/careers/location-icon.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-job .gb-title p.gb-loc-icon::before {
    width: 20px;
    height: 16px;
    margin-right: 5px;
  }
}

.gb-career .gb-result .gb-list .gb-job .gb-title p:last-child {
  padding: 5px 0px 0px 0px;
}

.gb-career .gb-result .gb-list .gb-job .gb-cta a {
  display: inline-block;
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 0.875);
  line-height: 18px;
  font-weight: normal;
  outline: none;
  text-decoration: none;
}

.gb-career .gb-result .gb-list .gb-job .gb-cta a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 15px;
  background-image: url('../images/careers/job-dropdown-icon.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
  -webkit-transform: rotate(-90deg);
  transform: rotata(-90deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-job .gb-cta a::after {
    display: block;
    margin: 2px auto 0px auto;
  }
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-job .gb-cta a {
    text-align: center;
  }
}

.gb-career .gb-result .gb-list .gb-job .gb-cta a.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-career .gb-result .gb-list .gb-detail {
  display: none;
  padding: 0% 3%;
  border-radius: 10px;
  background-color: #f9fafb;
}

.gb-career .gb-result .gb-list .gb-detail .gb-content {
  padding: 3% 15px;
}

.gb-career .gb-result .gb-list .gb-detail .gb-content h4 {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  padding-bottom: 15px;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-content h4 {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-content ul {
  list-style-type: none;
  padding-left: 25px;
}

.gb-career .gb-result .gb-list .gb-detail .gb-content ul li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-content ul li {
    margin-bottom: 10px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-content ul li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -19px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--blue-color, #1e7ae0);
  z-index: 2;
}

.gb-career .gb-result .gb-list .gb-detail .gb-content ul li::after {
  content: '';
  position: absolute;
  top: 2px;
  left: -25px;
  width: 16px;
  height: 16px;
  border: 2px solid #e9f7fd;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 1;
}

.gb-career .gb-result .gb-list .gb-detail .gb-content ul li:last-child {
  margin-bottom: 0px;
}

.gb-career .gb-result .gb-list .gb-detail .gb-application {
  position: relative;
  padding: 3% 15px;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application {
    padding: 3% 10%;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  padding: 5% 3%;
  border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 20px;
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-title {
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-title {
    padding-bottom: 5px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-title h5 {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.125);
  line-height: 24px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-title h5 {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data {
  padding: 10px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data {
    padding: 5px 0px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data label {
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 0.875);
  line-height: 18px;
  font-weight: normal;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data label {
    font-size: calc(var(--font-size) * 0.75);
    line-height: 16px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data input {
  width: 100%;
  padding: 10px 15px;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1);
  line-height: 22px;
  font-weight: normal;
  border-radius: 10px;
  border: 1px solid #bbd7f6;
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data input[type='tel'] {
  padding-left: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data input {
    font-size: calc(var(--font-size) * 0.875);
    line-height: 20px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data button {
  width: 100%;
  padding: 10px 15px;
  color: #ffffff;
  font-size: calc(var(--font-size) * 1);
  line-height: 22px;
  font-weight: normal;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #bbd7f6;
  background-color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data button {
    font-size: calc(var(--font-size) * 0.875);
    line-height: 20px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data button:hover {
  color: var(--blue-color, #1e7ae0);
  border: 1px solid #bbd7f6;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data.gb-form-required input {
  /* border: 1px solid #ff0000; */
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data .gb-form-error {
  font-size: calc(var(--font-size) * 0.75);
  line-height: 14px;
  color: #ff0000;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data .gb-form-error {
    font-size: var(--font-size, 10px);
    line-height: 12px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data .gb-form-note {
  font-size: calc(var(--font-size) * 0.75);
  line-height: 14px;
  color: var(--text-color, #262424);
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data .gb-form-note {
    font-size: var(--font-size, 10px);
    line-height: 12px;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data.gc_upload .files_btn {
  margin: 0px 0px;
  padding: 10px 15px;
  border: 1px solid #bbd7f6;
  background-color: transparent;
  border-radius: 10px;
  height: 45px;
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data.gc_upload .files_btn .uploadResume {
  display: block;
  width: 100%;
  height: 100%;
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data.gc_upload label p {
  display: block;
  width: 100%;
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1);
  line-height: 22px;
  font-weight: normal;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data.gc_upload label p {
    font-size: calc(var(--font-size) * 0.875);
    line-height: 20px;
  }
}

.gb-career .gb-result .gb-list .gb-detail.active {
  display: block;
}

.gb-popup .gb-content {
  text-align: center;
}

.gb-popup .gb-content h3 {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 35px;
  font-weight: normal;
  padding-bottom: 15px;
}

@media only screen and (max-width: 600px) {
  .gb-popup .gb-content h3 {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gb-popup .gb-content p {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1);
  line-height: 22px;
  font-weight: normal;
  padding-bottom: 15px;
}

@media only screen and (max-width: 600px) {
  .gb-popup .gb-content p {
    font-size: calc(var(--font-size) * 0.875);
    line-height: 20px;
  }
}

.gb-popup .gb-content p:last-child {
  padding-bottom: 0px;
}

.gb-popup .gb-content button {
  padding: 10px 15px;
  min-width: 120px;
}

.gb-responsibilities {
  position: relative;
  padding: 5% 0px;
}

@media only screen and (max-width: 600px) {
  .gb-responsibilities {
    padding: 40px 0px;
  }
}

@media only screen and (max-width: 350px) {
  .gb-responsibilities {
    padding: 20px 0px;
  }
}

.gb-csrsections {
  position: relative;
}

.gb-principle-wrap {
  padding: 10% 0px;
}

.gb-focusareas {
  overflow: hidden;
  padding: 5% 15px;
}

@media only screen and (max-width: 600px) {
  .gb-focusareas {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 350px) {
  .gb-focusareas {
    padding: 20px 20px;
  }
}

.gb-focusareas .gb-head .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-focusareas .gb-head .gb-title {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-focusareas .gb-focusareas-nav {
  position: relative;
  max-width: 140px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 600px) {
  .gb-focusareas .gb-focusareas-nav {
    padding-bottom: 30px;
    display: none;
  }
}

.gb-focusareas .gb-content {
  padding-top: 3%;
}

.gb-focusareas .gb-content .gb-focusswiper {
  overflow: visible;
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item {
  border: none;
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item img {
  display: block;
  width: 100%;
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-headtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
}

@media only screen and (max-width: 600px) {
  .gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-headtitle {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-subheadtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: var(--font-size, 30px);
  line-height: 45px;
}

@media only screen and (max-width: 600px) {
  .gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-subheadtitle {
    font-size: var(--font-size, 24px);
    line-height: 34px;
  }
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  padding: 30px 0px 10px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-title {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-cta {
  color: var(--link-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 768px) {
  .gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-cta {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-cta span {
  margin-left: 10px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-cta:hover {
  color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-focusareas .gb-content .gb-focusswiper .swiper-wrapper .gb-item .gb-body .gb-cta:hover span {
  margin-left: 20px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-csrmenu {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  padding: 0px 15px;
  background-color: var(--card-bg, #ffffff);
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  z-index: 5;
}

@media only screen and (max-width: 768px) {
  .gb-csrmenu {
    padding: 0px 0px;
    top: 65px;
  }
}

.gb-csrmenu .gb-csrwrap {
  overflow-x: auto;
}

.gb-csrmenu .gb-csrwrap ul {
  list-style-type: none;
  margin: 0 auto;
}

.gb-csrmenu .gb-csrwrap ul li {
  padding: 15px;
  text-align: center;
}

.gb-csrmenu .gb-csrwrap ul li::before {
  display: none;
}

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

.gb-csrmenu .gb-csrwrap ul li a {
  position: relative;
  font-family: 'Maison Neue', sans-serif;
  color: var(--link-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.125);
  line-height: 30px;
  font-weight: normal;
  white-space: nowrap;
  padding-bottom: 5px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 768px) {
  .gb-csrmenu .gb-csrwrap ul li a {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-csrmenu .gb-csrwrap ul li a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 2px;
  background-color: var(--link-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-csrmenu .gb-csrwrap ul li a:hover {
  color: var(--link-hover-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-csrmenu .gb-csrwrap ul li a:hover::after {
  width: 100%;
  background-color: var(--link-hover-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-csrmenu .gb-csrwrap ul li a.active {
  color: var(--link-hover-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-csrmenu .gb-csrwrap ul li a.active::after {
  width: 100%;
  background-color: var(--link-hover-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-listpanel {
  padding: 40px 0px;
}

@media only screen and (max-width: 768px) {
  .gb-listpanel {
    padding: 20px 0px;
  }
}

.gb-listpanel .gb-content {
  padding: 4% 15px;
}

@media only screen and (max-width: 768px) {
  .gb-listpanel .gb-content {
    padding: 4% 0px;
  }
}

.gb-listpanel .gb-content .gb-item {
  border: none;
  background-color: transparent;
}

.gb-listpanel .gb-content .gb-item .card-body {
  padding: 25px 0px;
}

@media only screen and (max-width: 768px) {
  .gb-listpanel .gb-content .gb-item .card-body {
    padding: 25px 30px;
  }
}

.gb-listpanel .gb-content .gb-item .card-body .gb-headtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-listpanel .gb-content .gb-item .card-body .gb-headtitle {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-listpanel .gb-content .gb-item .card-body .gb-subheadtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: var(--font-size, 30px);
  line-height: 45px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-listpanel .gb-content .gb-item .card-body .gb-subheadtitle {
    font-size: var(--font-size, 24px);
    line-height: 34px;
  }
}

.gb-listpanel .gb-content .gb-item .card-body .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .gb-listpanel .gb-content .gb-item .card-body .gb-title {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
    padding-bottom: 15px;
  }
}

.gb-listpanel .gb-content .gb-item .card-body .gb-text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding: 0px 0px 20px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-listpanel .gb-content .gb-item .card-body .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-listpanel .gb-content .gb-item .card-body .gb-text:last-child {
  padding-bottom: 0px;
}

.gb-listpanel .gb-content .gb-item .card-body .gb-list {
  list-style-type: none;
  margin-top: 30px;
}

.gb-listpanel .gb-content .gb-item .card-body .gb-list li {
  padding: 0px 0px 20px 30px;
  margin: 0px;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-listpanel .gb-content .gb-item .card-body .gb-list li {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-listpanel .gb-content .gb-item .card-body .gb-list li::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  background: url('../images/icons/tick.svg') center no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gb-listpanel .gb-content .gb-item .card-body .gb-list li:last-child {
  padding: 0px 0px 0px 30px;
}

@media only screen and (max-width: 768px) {
  .gb-listpanel .gb-image {
    margin-bottom: 15px;
  }
}

.gb-listpanel .gb-image img {
  display: block;
  width: 100%;
}

.gb-splitpanel {
  padding: 40px 0px;
}

@media only screen and (max-width: 768px) {
  .gb-splitpanel {
    padding: 20px 0px;
  }
}

.gb-splitpanel .gb-content {
  padding: 1% 15px;
}

@media only screen and (max-width: 768px) {
  .gb-splitpanel .gb-content {
    padding: 1% 0px;
  }
}

.gb-splitpanel .gb-content .gb-item {
  border: none;
  background-color: transparent;
}

.gb-splitpanel .gb-content .gb-item .card-body {
  padding: 25px 0px;
}

@media only screen and (max-width: 768px) {
  .gb-splitpanel .gb-content .gb-item .card-body {
    padding: 25px 30px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-headtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-headtitle {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-subheadtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: var(--font-size, 30px);
  line-height: 45px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-subheadtitle {
    font-size: var(--font-size, 24px);
    line-height: 34px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-highlight {
  font-family: 'Maison Neue', sans-serif;
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 25px;
  font-weight: bold;
  padding: 0px 0px 15px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-highlight {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-highlight::before {
  content: '';
  display: block;
  width: 16px;
  height: 14px;
  margin-bottom: 5px;
  background-image: url('../images/become-a-partner/highlight-icon.svg');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-author {
  font-family: 'Maison Neue', sans-serif;
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: bold;
  padding: 0px 0px 15px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-author {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-author::before {
  content: '-';
  display: inline-block;
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: bold;
  margin-right: 5px;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-author::before {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-title {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
    padding-bottom: 15px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding: 0px 0px 20px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-text:last-child {
  padding-bottom: 0px;
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-list {
  list-style-type: none;
  margin-top: 30px;
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-list li {
  position: relative;
  padding: 0px 0px 20px 30px;
  margin: 0px;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-list li {
    padding: 0px 0px 15px 25px;
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-list li::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  background-image: url('../images/icons/tick.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-list li::before {
    width: 16px;
    height: 16px;
  }
}

.gb-splitpanel .gb-content .gb-item .card-body .gb-list li:last-child {
  padding: 0px 0px 0px 30px;
}

@media only screen and (max-width: 600px) {
  .gb-splitpanel .gb-content .gb-item .card-body .gb-list li:last-child {
    padding: 0px 0px 0px 25px;
  }
}

.gb-splitpanel .gb-image img {
  display: block;
  width: 100%;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.gb-splitpanel.flex-row-reverse .gb-image img {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.gb-fullpanel {
  padding: 40px 0px;
}

@media only screen and (max-width: 768px) {
  .gb-fullpanel {
    padding: 20px 0px;
  }
}

.gb-fullpanel .gb-content {
  padding: 1% 15px;
}

@media only screen and (max-width: 768px) {
  .gb-fullpanel .gb-content {
    padding: 1% 0px;
  }
}

.gb-fullpanel .gb-content .gb-item {
  border: none;
  background-color: transparent;
}

.gb-fullpanel .gb-content .gb-item .card-body {
  padding: 25px 0px;
}

@media only screen and (max-width: 768px) {
  .gb-fullpanel .gb-content .gb-item .card-body {
    padding: 25px 30px;
  }
}

.gb-fullpanel .gb-content .gb-item .card-body .gb-headtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-fullpanel .gb-content .gb-item .card-body .gb-headtitle {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-fullpanel .gb-content .gb-item .card-body .gb-subheadtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: var(--font-size, 30px);
  line-height: 45px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-fullpanel .gb-content .gb-item .card-body .gb-subheadtitle {
    font-size: var(--font-size, 24px);
    line-height: 34px;
  }
}

.gb-fullpanel .gb-content .gb-item .card-body .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .gb-fullpanel .gb-content .gb-item .card-body .gb-title {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
    padding-bottom: 15px;
  }
}

.gb-fullpanel .gb-content .gb-item .card-body .gb-text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding: 0px 0px 20px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-fullpanel .gb-content .gb-item .card-body .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-fullpanel .gb-content .gb-item .card-body .gb-text:last-child {
  padding-bottom: 0px;
}

.gb-fullpanel .gb-image img {
  display: block;
  width: 100%;
}

.gb-multipanel {
  padding: 40px 0px;
}

@media only screen and (max-width: 768px) {
  .gb-multipanel {
    padding: 20px 0px;
  }
}

.gb-multipanel .gb-content .gb-item {
  border: none;
  padding: 20px 15px;
}

@media only screen and (max-width: 768px) {
  .gb-multipanel .gb-content .gb-item {
    padding: 0px 0px;
  }
}

.gb-multipanel .gb-content .gb-item .card-body {
  padding: 0px 0px;
}

@media only screen and (max-width: 768px) {
  .gb-multipanel .gb-content .gb-item .card-body {
    padding: 0px 30px 25px 30px;
  }
}

.gb-multipanel .gb-content .gb-item .card-body .gb-headtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-multipanel .gb-content .gb-item .card-body .gb-headtitle {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-multipanel .gb-content .gb-item .card-body .gb-subheadtitle {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: var(--font-size, 30px);
  line-height: 45px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-multipanel .gb-content .gb-item .card-body .gb-subheadtitle {
    font-size: var(--font-size, 24px);
    line-height: 34px;
  }
}

.gb-multipanel .gb-content .gb-item .card-body .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  padding: 20px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-multipanel .gb-content .gb-item .card-body .gb-title {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
    padding-bottom: 15px;
  }
}

.gb-multipanel .gb-content .gb-item .card-body .gb-text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding: 0px 0px 20px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-multipanel .gb-content .gb-item .card-body .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-multipanel .gb-content .gb-item .card-body .gb-text:last-child {
  padding-bottom: 0px;
}

.gb-impact {
  padding: 0% 0px 3% 0px;
}

@media only screen and (max-width: 768px) {
  .gb-impact {
    padding: 0px 30px;
  }
}

.gb-impact .gb-head .gb-headline {
  padding: 15px 20px;
}

@media only screen and (max-width: 768px) {
  .gb-impact .gb-head .gb-headline {
    padding: 10px 0px;
  }
}

.gb-impact .gb-list {
  padding: 0px 20px;
}

@media only screen and (max-width: 768px) {
  .gb-impact .gb-list {
    padding: 0px 0px;
  }
}

.gb-impact .gb-list .gb-item {
  padding: 15px 15px;
  border: none;
  /* min-height: 50vh; */
}

.gb-impact .gb-list .gb-item .gb-data {
  border: 1px solid #bbd7f6;
  padding: 40px 20px;
  border-radius: 20px;
  min-height: 20vh;
}

@media only screen and (max-width: 768px) {
  .gb-impact .gb-list .gb-item .gb-data {
    padding: 25px 20px;
  }
}




.gb-impact .gb-list .gb-item .gb-data .gb-title {
  font-family: 'Maison Neue', sans-serif;
  color: var(--link-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 35px;
  padding-bottom: 15px;
  font-weight: 800;
}

@media only screen and (max-width: 768px) {
  .gb-impact .gb-list .gb-item .gb-data .gb-title {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gb-faqs {
  padding: 5% 0px;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-list {
    overflow-x: auto;
  }
}

.gb-faqs .gb-list ul {
  list-style-type: none;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-list ul {
    display: table;
  }
}

.gb-faqs .gb-list ul li {
  padding: 10px 10px;
  margin: 0px 0px 0px 0px;
}

.gb-faqs .gb-list ul li:first-child {
  padding: 0px 10px 10px 10px;
}

.gb-faqs .gb-list ul li:last-child {
  padding: 10px 10px 0px 10px;
}

.gb-faqs .gb-list ul li::before {
  display: none;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-list ul li {
    display: table-cell;
  }
}

.gb-faqs .gb-list ul li button {
  width: 100%;
  color: var(--text-color, #1a1a1a);
  text-align: left;
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  text-decoration: none;
  outline: none;
  white-space: normal;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  pointer-events: auto;
}

.gb-faqs .gb-list ul li button:disabled {
  color: #919191;
}

.gb-faqs .gb-list ul li button[disabled] {
  color: #919191;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-list ul li button {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
    white-space: nowrap;
  }
}

.gb-faqs .gb-list ul li button:hover {
  color: var(--link-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-list ul li button.active {
  color: var(--link-color, #1e7ae0);
  pointer-events: none;
}

.gb-faqs .gb-list ul li button.active:disabled {
  color: var(--link-color, #1e7ae0);
}

.gb-faqs .gb-list ul li button.active[disabled] {
  color: var(--link-color, #1e7ae0);
}

.gb-faqs .gb-list ul li a {
  width: 100%;
  color: #919191;
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  text-decoration: none;
  outline: none;
  white-space: normal;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-list ul li a {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
    white-space: nowrap;
  }
}

.gb-faqs .gb-list ul li a:hover {
  color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-list ul li a.active {
  color: var(--blue-color, #1e7ae0);
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-content {
    padding-top: 5%;
  }
}

.gb-faqs .gb-content .gb-headtext .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 35px;
  font-weight: normal;
  padding-bottom: 5px;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-content .gb-headtext .gb-text {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gb-faqs .gb-content .gb-results-accordion {
  padding: 40px 15px;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-content .gb-results-accordion {
    padding: 0px 15px;
  }
}

.gb-faqs .gb-content .gb-results-accordion .gb-block {
  margin: 15px 0px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head {
  position: relative;
  padding: 0px 0px;
  background-color: transparent;
  border: none;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head button {
  display: block;
  width: 100%;
  color: var(--text-color, #101010);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: bold;
  padding: 25px 55px 25px 30px;
  text-align: left;
  text-decoration: none;
  outline: none;
  background: none;
  border: none;
  white-space: normal;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head button {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
    padding: 15px 40px 15px 20px;
  }
}

.gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head button:disabled {
  color: var(--link-color, #101010);
}

.gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head button span {
  position: absolute;
  top: 50%;
  right: 30px;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head button span svg {
  stroke: #bcbcbc;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head button span {
    right: 15px;
  }
}

.gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head a {
  display: block;
  width: 100%;
  color: var(--link-color, #101010);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: bold;
  padding: 25px 55px 25px 30px;
  text-align: left;
  text-decoration: none;
  outline: none;
  background: none;
  border: none;
  white-space: normal;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head a {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
    padding: 20px 20px;
  }
}

.gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head a span {
  position: absolute;
  top: 50%;
  right: 30px;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-head a span svg {
  stroke: #bcbcbc;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-body {
  padding: 0px 25px 30px 30px;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
}

@media only screen and (max-width: 600px) {
  .gb-faqs .gb-content .gb-results-accordion .gb-block .gb-accordion-body {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
    padding: 20px 20px;
  }
}

.gb-faqs .gb-content .gb-results-accordion .gb-block.active {
  border: 1px solid #bbd7f6;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block.active .gb-accordion-head button {
  color: var(--link-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block.active .gb-accordion-head button:disabled {
  color: var(--link-color, #1e7ae0);
  opacity: 1;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block.active .gb-accordion-head button span {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block.active .gb-accordion-head button span svg {
  stroke: #bbd7f6;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block.active .gb-accordion-head a {
  color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block.active .gb-accordion-head a:disabled {
  color: var(--blue-color, #1e7ae0);
  opacity: 1;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block.active .gb-accordion-head a span {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-faqs .gb-content .gb-results-accordion .gb-block.active .gb-accordion-head a span svg {
  stroke: #bbd7f6;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-contact {
  padding: 5% 0px;
}

.gb-graphic1 {
  background-image: url('../images/contact-us/dots-graphic1.svg');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 80px 99px;
}

@media only screen and (max-width: 600px) {
  .gb-graphic1 {
    background-size: 30px 37px;
    background-position: 100% center;
  }
}

.gb-graphic2 {
  background-image: url('../images/contact-us/dots-graphic2.svg'), url('../images/contact-us/halfcircle-graphic.svg');
  background-position:
    left 8%,
    right center;
  background-repeat: no-repeat;
  background-size:
    55px 95px,
    350px 700px;
}

@media only screen and (max-width: 600px) {
  .gb-graphic2 {
    background-size:
      30px 52px,
      150px 300px;
    background-position:
      left 2%,
      right center;
  }
}

.gb-contacttitle .gb-headline {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.5);
  line-height: 50px;
  font-weight: normal;
  padding-bottom: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-contacttitle .gb-headline {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
    padding-bottom: 15px;
  }
}

.gb-contactdetails {
  border-radius: 15px;
}

.gb-contactdetails .gb-block {
  padding: 25px 20px;
}

@media only screen and (max-width: 600px) {
  .gb-contactdetails .gb-block {
    padding: 15px 10px;
  }
}

.gb-contactdetails .gb-block .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  word-break: break-word;
}

@media only screen and (max-width: 600px) {
  .gb-contactdetails .gb-block .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-contactdetails .gb-block .gb-cta .gb-btn {
  display: inline-block;
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 25px;
  font-weight: normal;
  outline: none;
  text-decoration: none;
  word-break: break-word;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-contactdetails .gb-block .gb-cta .gb-btn {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 22px;
  }
}

.gb-contactdetails .gb-block .gb-cta .gb-btn:hover {
  color: var(--text-color, #262424);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-contactdetails-bg {
  background-color: #f9fafb;
  border-radius: 15px;
}

.gb-contactoffice {
  /* padding: 5% 0% 0% 0%; */
}

@media only screen and (max-width: 600px) {
  .gb-contactoffice .gb-content {
    padding: 20px 0px;
  }
}

.gb-contactoffice .gb-content .gb-title .gb-text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  padding: 0px 15px 20px 15px;
}

@media only screen and (max-width: 600px) {
  .gb-contactoffice .gb-content .gb-title .gb-text {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
    padding: 0px 15px 10px 15px;
  }
}

.gb-contactoffice .gb-content .gb-block {
  padding: 15px 20px;
}

@media only screen and (max-width: 600px) {
  .gb-contactoffice .gb-content .gb-block {
    padding: 10px 10px;
  }
}

.gb-contactoffice .gb-content .gb-block .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  word-break: break-word;
}

@media only screen and (max-width: 600px) {
  .gb-contactoffice .gb-content .gb-block .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-contactoffice .gb-content .gb-block .gb-cta .gb-btn {
  display: inline-block;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  outline: none;
  text-decoration: none;
  word-break: break-word;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-contactoffice .gb-content .gb-block .gb-cta .gb-btn {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-contactoffice .gb-content .gb-block .gb-cta .gb-btn:hover {
  color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-contactoffice .gb-map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

@media only screen and (max-width: 600px) {
  .gb-contactoffice .gb-map iframe {
    height: 350px;
  }
}

.gb-customercare {
  /* padding: 5% 0% 0% 0%; */
}

.gb-customercare .gb-wrap {
  padding: 0px 0px;
}

.gb-customercare .gb-wrap:nth-child(1) {
  padding-right: 30px;
}

.gb-customercare .gb-wrap:nth-child(2) {
  padding-left: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-customercare .gb-wrap {
    padding: 15px 0px;
  }

  .gb-customercare .gb-wrap:nth-child(1) {
    padding-right: 0px;
  }

  .gb-customercare .gb-wrap:nth-child(2) {
    padding-left: 0px;
  }
}

.gb-customercare .gb-wrap .gb-content {
  padding: 5% 5%;
  background-color: #e9f7fd;
  border-radius: 15px;
}

.gb-customercare .gb-wrap .gb-content .gb-title .gb-text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  padding: 0px 15px 20px 15px;
}

@media only screen and (max-width: 600px) {
  .gb-customercare .gb-wrap .gb-content .gb-title .gb-text {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-customercare .gb-wrap .gb-content .gb-block {
  padding: 15px 20px;
}

@media only screen and (max-width: 600px) {
  .gb-customercare .gb-wrap .gb-content .gb-block {
    padding: 10px 10px;
  }
}

.gb-customercare .gb-wrap .gb-content .gb-block .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  word-break: break-word;
}

@media only screen and (max-width: 600px) {
  .gb-customercare .gb-wrap .gb-content .gb-block .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-customercare .gb-wrap .gb-content .gb-block .gb-cta .gb-btn {
  display: inline-block;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  outline: none;
  text-decoration: none;
  word-break: break-word;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-customercare .gb-wrap .gb-content .gb-block .gb-cta .gb-btn {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-customercare .gb-wrap .gb-content .gb-block .gb-cta .gb-btn:hover {
  color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-branchoffice {
  /* padding: 5% 0% 0% 0%; */
}

.gb-branchoffice .gb-title .gb-headline {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-weight: normal;
  padding-bottom: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-branchoffice .gb-title .gb-headline {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
    padding-bottom: 15px;
  }
}

.gb-branchoffice .gb-options .gb-branch-select {
  padding-bottom: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-branchoffice .gb-options .gb-branch-select {
    padding-bottom: 15px;
  }
}

.gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap {
  height: 100%;
  padding: 15px 30px;
  border: 1px solid #bbd7f6;
  border-radius: 15px;
}

.gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block {
  padding: 15px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block {
    padding: 10px 0px;
  }
}

.gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block .gb-cta .gb-btn {
  display: inline-block;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  outline: none;
  text-decoration: none;
  word-break: break-word;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block .gb-cta .gb-btn {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block .gb-cta .gb-btn:hover {
  color: var(--link-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block .gb-cta .gb-direction {
  display: inline-block;
  color: var(--link-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  outline: none;
  text-decoration: none;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #bbd7f6;
  border-radius: 10px;
  word-break: break-word;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block .gb-cta .gb-direction {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block .gb-cta .gb-direction:hover {
  color: #ffffff;
  background-color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-compliance {
  /* padding: 8% 0%; */
}

.gb-compliance .gb-title .gb-headline {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-weight: normal;
  padding-bottom: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-compliance .gb-title .gb-headline {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
    padding-bottom: 15px;
  }
}

.gb-compliance .gb-block {
  padding: 25px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-compliance .gb-block {
    padding: 10px 0px;
  }
}

.gb-compliance .gb-block .gb-author {
  color: var(--link-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-compliance .gb-block .gb-author {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-compliance .gb-block .gb-designation {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding-bottom: 15px;
}

@media only screen and (max-width: 600px) {
  .gb-compliance .gb-block .gb-designation {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-compliance .gb-block .gb-cta a {
  display: inline-block;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  outline: none;
  text-decoration: none;
  word-break: break-word;
  vertical-align: middle;
  margin: 5px 10px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-compliance .gb-block .gb-cta a:first-child {
  margin: 5px 10px 5px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-compliance .gb-block .gb-cta a {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
    margin: 5px 5px;
  }

  .gb-compliance .gb-block .gb-cta a:first-child {
    margin: 5px 5px;
  }
}

.gb-compliance .gb-block .gb-cta a:hover {
  color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-compliance-bg {
  background-image: url('../images/contact-us/compliance-bg.svg');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
}

.gb-blog {
  padding: 2.5% 0%;
}

.gb-blogtemplate .gc_max_1200 {
  padding: 0px 0px;
}

.gb-blogtitle .gc_max_1200 {
  padding: 0px 0px;
}

.gb-blogtitle .gc_max_1200 .gb-headline {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-weight: normal;
  padding-bottom: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-blogtitle .gc_max_1200 .gb-headline {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
    padding-bottom: 15px;
  }
}

.gb-bloglist {
  padding: 30px 0px;
}

.gb-bloglist .gb-thumb img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .gb-bloglist .gb-thumb img {
    margin-bottom: 15px;
  }
}

.gb-bloglist .gb-blogcontent ul.gb-items {
  display: block;
  list-style-type: none;
  padding-bottom: 15px;
}

.gb-bloglist .gb-blogcontent ul.gb-items li {
  display: inline-block;
  color: #262424;
  font-size: calc(var(--font-size) * 0.875);
  line-height: 17px;
  vertical-align: middle;
}

.gb-bloglist .gb-blogcontent ul.gb-items li::before {
  display: none;
}

/*
.gb-bloglist .gb-blogcontent ul.gb-items li:first-child::after {
  content: "|";
  display: inline-block;
  margin: 0px 5px;
  vertical-align: middle;
}*/

.gb-bloglist .gb-blogcontent ul.gb-items li.gb-date::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 14px;
  margin-right: 5px;
  background-image: url('../images/blog/calendar-icon.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.gb-bloglist .gb-blogcontent ul.gb-items li.gb-category:first-child {
  margin-left: 0;
}

.gb-bloglist .gb-blogcontent ul.gb-items li.gb-category {
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0px 5px;
  background-color: color-mix(in srgb, var(--warning-color, #ffc107) 35%, white);
}

.gb-bloglist .gb-blogcontent .gb-title {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  padding-bottom: 10px;
}

.gb-bloglist .gb-blogcontent .gb-title.link {
  display: block;
  font-family: 'Maison Neue', sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.gb-bloglist .gb-blogcontent .gb-title.link:hover {
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  .gb-bloglist .gb-blogcontent .gb-title {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-bloglist .gb-blogcontent .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .gb-bloglist .gb-blogcontent .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-bloglist .gb-blogcontent .gb-cta {
  font-family: 'Maison Neue', sans-serif;
  color: var(--link-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-bloglist .gb-blogcontent .gb-cta {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-bloglist .gb-blogcontent .gb-cta span {
  font-size: calc(var(--font-size) * 0.875);
  line-height: 14px;
  margin-left: 10px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-bloglist .gb-blogcontent .gb-cta:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-bloglist .gb-blogcontent .gb-cta:hover span {
  margin-left: 20px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-tagcloud {
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #f9fafb;
}

@media only screen and (max-width: 600px) {
  .gb-tagcloud {
    padding: 20px 20px;
  }
}

.gb-tagcloud .gb-title {
  color: var(--text-color, #262424);
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 25px;
  padding-bottom: 10px;
}

.gb-tagcloud .gb-list ul {
  display: block;
  list-style-type: none;
}

.gb-tagcloud .gb-list ul li {
  display: inline-block;
  padding: 4px 4px;
  margin: 0px 0px;
  vertical-align: top;
}

.gb-tagcloud .gb-list ul li::before {
  display: none;
}

.gb-tagcloud .gb-list ul li a {
  display: block;
  color: #919191;
  font-size: calc(var(--font-size) * 0.875);
  line-height: 22px;
  padding: 8px 10px;
  border-radius: 5px;
  outline: none;
  text-decoration: none;
  border: 1px solid #bcbcbc;
  background-color: #ffffff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-tagcloud .gb-list ul li a.active {
  color: var(--text-color, #262424);
  background-color: #fdf6c9;
}

.gb-tagcloud .gb-list ul li a:hover {
  color: var(--text-color, #262424);
  border: 1px solid #fdf6c9;
  background-color: #fdf6c9;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-requestcall {
  margin-top: 5%;
  border-radius: 10px;
  background-color: #f9fafb;
}

.gb-requestcall .gb-image {
  padding-top: 30px;
}

.gb-requestcall .gb-image img {
  display: block;
  width: 100%;
}

.gb-requestcall .gb-content {
  /* padding: 40px 30px 0px 30px; */
  padding: 0px 30px;
}

@media only screen and (max-width: 600px) {
  .gb-requestcall .gb-content {
    /* padding: 20px 20px 0px 20px; */
    padding: 0px 20px;
  }
}

.gb-requestcall .gb-content .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  padding-bottom: 10px;
  padding-top: 25px;
}

.gb-requestcall .gb-content .gb-title span {
  font-family: 'Maison Neue', sans-serif;
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-requestcall .gb-content .gb-title {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-requestcall .gb-content .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
}

@media only screen and (max-width: 600px) {
  .gb-requestcall .gb-content .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-requestcall .gb-form {
  padding: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-requestcall .gb-form {
    padding: 20px 20px 20px 20px;
  }
}

.gb-blogabout {
  margin-top: 5%;
  border-radius: 10px;
  background-color: #f9fafb;
}

.gb-blogabout .gb-image {
  padding-top: 30px;
}

.gb-blogabout .gb-image img {
  display: block;
  width: 100%;
}

.gb-blogabout .gb-content {
  padding: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-blogabout .gb-content {
    padding: 20px 20px 20px 20px;
  }
}

.gb-blogabout .gb-content .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  padding-bottom: 10px;
}

.gb-blogabout .gb-content .gb-title span {
  font-family: 'Maison Neue', sans-serif;
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-blogabout .gb-content .gb-title {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-blogabout .gb-content .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .gb-blogabout .gb-content .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-blogoverview h1 {
  color: var(--text-color, #262424);
}

.gb-blogoverview h2,
.gb-blogoverview h3,
.gb-blogoverview h4,
.gb-blogoverview h5,
.gb-blogoverview h6 {
  color: var(--text-color, #1e7ae0);
}

.gb-blogoverview h1,
.gb-blogoverview h2,
.gb-blogoverview h3,
.gb-blogoverview h4,
.gb-blogoverview h5,
.gb-blogoverview h6,
.gb-blogoverview p {
  padding-bottom: 10px;
}

.gb-blogoverview img {
  display: block;
  width: 100%;
}

/* .gb-blogoverview .gb-blogdata {
	padding: 40px 0px;
} */

.gb-blogoverview .gb-blogdata ul {
  display: block;
  list-style-type: none;
  padding-bottom: 15px;
}

.gb-blogoverview .gb-blogdata ul li {
  display: inline-block;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1);
  line-height: 25px;
  vertical-align: middle;
}

@media only screen and (max-width: 600px) {
  .gb-blogoverview .gb-blogdata ul li {
    font-size: calc(var(--font-size) * 0.875);
    line-height: 23px;
  }
}

.gb-blogoverview .gb-blogdata ul li::before {
  display: none;
}

.gb-blogoverview .gb-blogdata ul li:first-child {
  margin-left: 0px;
}

.gb-blogoverview .gb-blogdata ul li.gb-date::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 14px;
  margin-right: 5px;
  background-image: url('../images/blog/calendar-icon.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}

.gb-blogoverview .gb-blogdata ul li.gb-category {
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0px 5px;
  color: #1a1a1a;
  background-color: #f9fafb;
  font-size: calc(var(--font-size) * 0.875);
  line-height: 22px;
  vertical-align: middle;
}

.gb-blogreads {
  padding: 5% 0%;
}

.gb-blogreadstitle {
  padding-bottom: 20px;
}

.gb-blogreadstitle .gb-headline {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-blogreadstitle .gb-headline {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-fisgraphic {
  background-image: url('../images/fis/fis-graphic.svg'), url('../images/fis/fis-graphic.svg');
  background-position:
    top right,
    right 40%;
  background-repeat: no-repeat, no-repeat;
  background-size:
    300px 750px,
    300px 750px;
}

@media only screen and (max-width: 600px) {
  .gb-fisgraphic {
    background-size:
      100px 250px,
      100px 250px;
  }
}

.gb-fismenu {
  position: -webkit-sticky;
  position: sticky;
  top: 65px;
  padding: 0px 15px;
  background-color: #f4f4f4;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 3px 6px;
  z-index: 5;
}

@media only screen and (max-width: 768px) {
  .gb-fismenu {
    padding: 0px 0px;
  }
}

.gb-fismenu .gb-fiswrap {
  overflow-x: auto;
}

.gb-fismenu .gb-fiswrap ul {
  width: auto;
  list-style-type: none;
  padding: 0px;
}

.gb-fismenu .gb-fiswrap ul li {
  padding: 15px 40px 10px 40px;
}

.gb-fismenu .gb-fiswrap ul li::before {
  display: none;
}

.gb-fismenu .gb-fiswrap ul li:first-child {
  padding: 15px 40px 10px 0px;
}

.gb-fismenu .gb-fiswrap ul li:last-child {
  padding: 15px 0px 10px 40px;
}

@media only screen and (max-width: 768px) {
  .gb-fismenu .gb-fiswrap ul li {
    padding: 15px 20px 10px 20px;
  }

  .gb-fismenu .gb-fiswrap ul li:first-child {
    padding: 15px 20px 10px 20px;
  }

  .gb-fismenu .gb-fiswrap ul li:last-child {
    padding: 15px 20px 10px 20px;
  }
}

.gb-fismenu .gb-fiswrap ul li a {
  position: relative;
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
  white-space: nowrap;
  padding-bottom: 5px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 768px) {
  .gb-fismenu .gb-fiswrap ul li a {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-fismenu .gb-fiswrap ul li a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--text-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-fismenu .gb-fiswrap ul li a:hover {
  color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-fismenu .gb-fiswrap ul li a:hover::after {
  width: 100%;
  background-color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-fismenu .gb-fiswrap ul li a.active {
  color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-fismenu .gb-fiswrap ul li a.active::after {
  width: 100%;
  background-color: var(--blue-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-pagecontent {
  padding: 5% 0%;
}

.gb-pagecontent-graphicbg1 {
  background-image: url('../images/pricing/graphic1.svg');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 300px 750px;
}

@media only screen and (max-width: 600px) {
  .gb-pagecontent-graphicbg1 {
    background-size: 100px 250px;
  }
}

.gb-pagecontent-circlebg {
  background-image: url('../images/pricing/graphic-circle.svg'), url('../images/pricing/graphic-circle.svg');
  background-position:
    left 1%,
    left 85%;
  background-repeat: no-repeat, no-repeat;
  background-size:
    50px 99px,
    50px 99px;
}

@media only screen and (max-width: 600px) {
  .gb-pagecontent-circlebg {
    background-size:
      20px 40px,
      20px 40px;
  }
}

.gb-chart {
  margin: 15px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-chart {
    padding: 0px 20px;
  }
}

.gb-chart.gb-standard .gb-blocks {
  background-color: #eafcf8;
}

.gb-chart.gb-standard .gb-blocks .gb-head {
  border-radius: 10px;
  background-color: #ccf8f0;
}

.gb-chart.gb-standard .gb-blocks .gb-head .gb-plan .gb-text {
  border-radius: 10px;
  background: #cbf8f0;
  background: -webkit-gradient(linear, left top, right top, from(#4c7ef7), to(#83f7ee));
  background: linear-gradient(to right, #4c7ef7 0%, #83f7ee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4c7ef7', endColorstr='#83f7ee', GradientType=0);
}

.gb-chart.gb-premium .gb-blocks {
  background-color: #f5fdf5;
}

.gb-chart.gb-premium .gb-blocks .gb-head {
  border-radius: 10px;
  background-color: #e8fce7;
}

.gb-chart.gb-premium .gb-blocks .gb-head .gb-plan .gb-text {
  border-radius: 10px;
  background: #cbf8f0;
  background: -webkit-gradient(linear, left top, right top, from(#64fe78), to(#dffde1));
  background: linear-gradient(to right, #64fe78 0%, #dffde1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#64fe78', endColorstr='#dffde1', GradientType=0);
}

.gb-chart.gb-ultimate .gb-blocks {
  background-color: #fefcee;
}

.gb-chart.gb-ultimate .gb-blocks .gb-head {
  border-radius: 10px;
  background-color: #fdf8d6;
}

.gb-chart.gb-ultimate .gb-blocks .gb-head .gb-plan .gb-text {
  border-radius: 10px;
  background: #cbf8f0;
  background: -webkit-gradient(linear, left top, right top, from(#feff99), to(#fdf878));
  background: linear-gradient(to right, #feff99 0%, #fdf878 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#feff99', endColorstr='#fdf878', GradientType=0);
}

.gb-chart.active {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

@media only screen and (max-width: 600px) {
  .gb-chart.active {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.gb-chart.active .gb-blocks {
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
}

.gb-costing {
  padding: 5% 0%;
}

.gb-costing .gb-blocks {
  border-radius: 10px;
}

.gb-costing .gb-blocks .gb-head {
  padding-bottom: 0px;
}

.gb-costing .gb-blocks .gb-head .gb-plan {
  text-align: right;
}

@media only screen and (max-width: 600px) {
  .gb-costing .gb-blocks .gb-head .gb-plan {
    text-align: center;
  }
}

.gb-costing .gb-blocks .gb-head .gb-plan .gb-text {
  display: inline-block;
  padding: 15px 30px;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
}

@media only screen and (max-width: 900px) {
  .gb-costing .gb-blocks .gb-head .gb-plan .gb-text {
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 600px) {
  .gb-costing .gb-blocks .gb-head .gb-plan .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-costing .gb-blocks .gb-head .gb-content {
  padding: 20px 30px 0px 30px;
}

@media only screen and (max-width: 900px) {
  .gb-costing .gb-blocks .gb-head .gb-content {
    padding: 20px 0px;
  }
}

.gb-costing .gb-blocks .gb-head .gb-content .gb-title {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 35px;
  margin: 0px;
  padding: 0px 0px 20px 0px;
}

@media only screen and (max-width: 900px) {
  .gb-costing .gb-blocks .gb-head .gb-content .gb-title {
    padding: 0px 0px 10px 0px;
  }
}

@media only screen and (max-width: 600px) {
  .gb-costing .gb-blocks .gb-head .gb-content .gb-title {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gb-costing .gb-blocks .gb-head .gb-content .media {
  padding: 0px 0px 20px 0px;
}

@media only screen and (max-width: 900px) {
  .gb-costing .gb-blocks .gb-head .gb-content .media {
    padding: 0px 0px 10px 0px;
  }
}

.gb-costing .gb-blocks .gb-head .gb-content .media:last-child {
  padding: 0px 0px 0px 0px;
}

.gb-costing .gb-blocks .gb-head .gb-content .gb-margin {
  color: var(--text-color, #262424);
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 30px;
  font-weight: bold;
  border-top: 2px solid #ffffff;
  margin: 0px;
  padding: 20px 0px 20px 0px;
}

@media only screen and (max-width: 900px) {
  .gb-costing .gb-blocks .gb-head .gb-content .gb-margin {
    padding: 10px 0px 10px 0px;
  }
}

@media only screen and (max-width: 600px) {
  .gb-costing .gb-blocks .gb-head .gb-content .gb-margin {
    font-size: calc(var(--font-size) * 1);
    line-height: 28px;
  }
}

.gb-costing .gb-blocks .gb-select {
  padding: 30px 30px 0px 30px;
}

@media only screen and (max-width: 900px) {
  .gb-costing .gb-blocks .gb-select {
    padding: 10px 20px 0px 20px;
  }
}

.gb-costing .gb-blocks .gb-select a {
  font-family: 'Maison Neue', sans-serif;
  width: 100%;
}

.gb-costing .gb-blocks .gb-list {
  padding: 30px 30px 0px 30px;
}

@media only screen and (max-width: 900px) {
  .gb-costing .gb-blocks .gb-list {
    padding: 20px 20px 0px 20px;
  }
}

.gb-costing .gb-blocks .gb-list ul {
  list-style-type: none;
}

.gb-costing .gb-blocks .gb-list ul li {
  position: relative;
  padding: 0px 0px 15px 28px;
  margin: 0px;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 0.875);
  line-height: 20px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-costing .gb-blocks .gb-list ul li {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-costing .gb-blocks .gb-list ul li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  background: transparent url('../images/icons/tick.svg') center no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.gb-costing .gb-blocks .gb-list ul li:last-child {
  padding: 0px 0px 0px 30px;
}

.gb-costing .gb-blocks .gb-details {
  padding: 30px 30px 30px 30px;
}

@media only screen and (max-width: 900px) {
  .gb-costing .gb-blocks .gb-details {
    padding: 20px 20px 20px 20px;
  }
}

.gb-costing .gb-blocks .gb-details .gb-cta {
  font-family: 'Maison Neue', sans-serif;
  color: var(--link-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 768px) {
  .gb-costing .gb-blocks .gb-details .gb-cta {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-costing .gb-blocks .gb-details .gb-cta span {
  margin-left: 10px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-costing .gb-blocks .gb-details .gb-cta:hover {
  color: var(--link-hover-color, #1e7ae0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-costing .gb-blocks .gb-details .gb-cta:hover span {
  margin-left: 20px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-head {
  padding-bottom: 15px;
}

@media only screen and (max-width: 600px) {
  .gb-head {
    padding: 0px 30px 15px 30px;
  }
}

.gb-head .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-weight: normal;
  padding-bottom: 15px;
}

@media only screen and (max-width: 600px) {
  .gb-head .gb-title {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-head .gb-text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .gb-head .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-head .gb-text:last-child {
  padding-bottom: 0px;
}

.gb-pricingcarousel-btn {
  position: relative;
  max-width: 140px;
  margin-left: auto;
  padding-bottom: 15px;
}

.gb-pricingcarousel-btn .gb-btn-arrows {
  position: relative;
  display: inline-block;
  width: auto;
  top: 0px;
  right: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px 5px;
  height: auto;
  opacity: 0.5;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  vertical-align: middle;
}

.gb-pricingcarousel-btn .gb-btn-arrows:hover {
  opacity: 1;
}

.gb-pricingcarousel-btn .gb-btn-arrows.swiper-button-disabled {
  opacity: 0.05;
}

.gb-pricingcarousel-btn .gb-btn-arrows.swiper-button-prev {
  margin-top: 2px;
  -webkit-transform: rotate(180deg);
  -moz-webkit-transform: rotate(180deg);
  -ms-webkit-transform: rotate(180deg);
  -o-webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.gb-pricingcarousel-btn .gb-btn-arrows::after {
  display: none;
}

.gb-pricingcarousel {
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .gb-pricingcarousel {
    padding: 0px 15px 15px 15px;
  }
}

.gb-pricingcarousel .swiper-container {
  overflow: visible;
}

.gb-pricingcarousel .swiper-container .gb-item {
  position: relative;
  padding: 30px 30px;
  border: var(--border-color, #bbd7f6) solid 1px;
  background-color: var(--data-bg, #ffffff);
  border-radius: 10px;
  height: auto;
}

.gb-pricingcarousel .swiper-container .gb-item .card {
  border: none;
  background-color: transparent;
}

.gb-pricingcarousel .swiper-container .gb-item .card img {
  display: block;
  width: 100%;
  max-width: 75px;
}

.gb-pricingcarousel .swiper-container .gb-item .card .gb-body {
  padding: 30px 0px;
}

.gb-pricingcarousel .swiper-container .gb-item .card .gb-body .gb-title {
  font-family: 'Maison Neue', sans-serif;
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.5625);
  line-height: 35px;
  padding-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .gb-pricingcarousel .swiper-container .gb-item .card .gb-body .gb-title {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 30px;
  }
}

.gb-pricingcarousel .swiper-container .gb-item .card .gb-body .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding: 0px 0px 15px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-pricingcarousel .swiper-container .gb-item .card .gb-body .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-pricingcarousel .swiper-container .gb-item .card .gb-body .gb-text:last-child {
  padding-bottom: 0px;
}

.gb-pricingcarousel .swiper-container .gb-item .card .gb-footer {
  background-color: transparent;
  border-radius: 0px;
  padding: 0px;
  margin: 0px;
  border: none;
}

.gb-pricingcarousel .swiper-container .gb-item .card .gb-footer .gb-cta {
  display: inline-block;
  font-family: 'Maison Neue', sans-serif;
  color: var(--blue-color, #1e7ae0);
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 22px;
  font-weight: normal;
  border: 1px solid #bbd7f6;
  border-radius: 5px;
  padding: 15px 50px 15px 50px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media only screen and (max-width: 600px) {
  .gb-pricingcarousel .swiper-container .gb-item .card .gb-footer .gb-cta {
    font-size: calc(var(--font-size) * 0.875);
    line-height: 20px;
  }
}

.gb-pricingcarousel .swiper-container .gb-item .card .gb-footer .gb-cta:hover {
  background-color: var(--blue-color, #1e7ae0);
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.gb-subtext {
  padding-top: 20px;
}

@media only screen and (max-width: 600px) {
  .gb-subtext {
    padding: 0px 15px 20px 15px;
  }
}

.gb-subtext .gb-text {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-subtext .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-businessAssociateProgram {
  padding: 5% 0px;
}

.gb-pagecolums {
  padding: 5% 0px;
}

.gb-pagecolums .gb-headcontent {
  padding-bottom: 5%;
}

@media only screen and (max-width: 600px) {
  .gb-pagecolums .gb-headcontent {
    padding: 0px 15px 15px 15px;
  }
}

.gb-pagecolums .gb-headcontent .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-weight: normal;
  padding-bottom: 15px;
}

@media only screen and (max-width: 600px) {
  .gb-pagecolums .gb-headcontent .gb-title {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-pagecolums .gb-headcontent .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding: 0px 0px 15px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-pagecolums .gb-headcontent .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-pagecolums .gb-headcontent .gb-text:last-child {
  padding-bottom: 0px;
}

@media only screen and (max-width: 600px) {
  .gb-pagecolums .gb-stable {
    padding: 0px 15px 15px 15px;
  }
}

.gb-pagecolums .gb-stable .gb-columns {
  -webkit-column-count: 4;
  column-count: 4;
}

@media only screen and (max-width: 1280px) {
  .gb-pagecolums .gb-stable .gb-columns {
    -webkit-column-count: 3;
    column-count: 3;
  }
}

@media only screen and (max-width: 768px) {
  .gb-pagecolums .gb-stable .gb-columns {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@media only screen and (max-width: 600px) {
  .gb-pagecolums .gb-stable .gb-columns {
    -webkit-column-count: 1;
    column-count: 1;
  }
}

.gb-pagecolums .gb-stable .gb-columns .gb-item {
  padding: 35px 35px;
  border: 1px solid #bbd7f6;
  border-radius: 10px;
  background-color: var(--data-bg, #ffffff);
}

@media only screen and (max-width: 600px) {
  .gb-pagecolums .gb-stable .gb-columns .gb-item {
    padding: 25px 25px;
  }
}

.gb-pagecolums .gb-stable .gb-columns .gb-item img {
  display: inline-block;
  width: 100%;
  max-width: 76px;
  margin-bottom: 15px;
}

.gb-pagecolums .gb-stable .gb-columns .gb-item .gb-body {
  margin: 0px;
  padding: 0px;
  margin-top: 30px;
}

.gb-pagecolums .gb-stable .gb-columns .gb-item .gb-body .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-pagecolums .gb-stable .gb-columns .gb-item .gb-body .gb-title {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-contentfuse {
  padding: 5% 0px;
}

@media only screen and (max-width: 600px) {
  .gb-contentfuse {
    padding: 5% 15px;
  }
}

.gb-contentfuse .gb-content .gb-title {
  color: var(--text-color, #1e7ae0);
  font-size: calc(var(--font-size) * 2.1875);
  line-height: 45px;
  font-weight: normal;
  padding-bottom: 15px;
}

@media only screen and (max-width: 600px) {
  .gb-contentfuse .gb-content .gb-title {
    font-size: calc(var(--font-size) * 1.5625);
    line-height: 35px;
  }
}

.gb-contentfuse .gb-content .gb-text {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-weight: normal;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .gb-contentfuse .gb-content .gb-text {
    font-size: calc(var(--font-size) * 1);
    line-height: 22px;
  }
}

.gb-contentfuse .gb-content .gb-list {
  padding-top: 30px;
}

@media only screen and (max-width: 600px) {
  .gb-contentfuse .gb-content .gb-list {
    padding-top: 15px;
  }
}

.gb-contentfuse .gb-content .gb-list .gb-item {
  padding: 10px 0px;
}

.gb-contentfuse .gb-content .gb-list .gb-item:first-child {
  padding: 0px 0px 10px 0px;
}

.gb-contentfuse .gb-content .gb-list .gb-item:last-child {
  padding: 10px 0px 0px 0px;
}

@media only screen and (max-width: 600px) {
  .gb-contentfuse .gb-content .gb-list .gb-item {
    padding: 5px 0px;
  }

  .gb-contentfuse .gb-content .gb-list .gb-item:first-child {
    padding: 0px 0px 5px 0px;
  }

  .gb-contentfuse .gb-content .gb-list .gb-item:last-child {
    padding: 5px 0px 0px 0px;
  }
}

.gb-contentfuse .gb-content .gb-list .gb-item .gb-para {
  color: var(--text-color, #262424);
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .gb-contentfuse .gb-content .gb-list .gb-item .gb-para {
    font-size: calc(var(--font-size) * 1.125);
    line-height: 28px;
  }
}

.gb-contentfuse .gb-image img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .gb-contentfuse .gb-image img {
    margin-bottom: 15px;
  }
}

/*# sourceMappingURL=style.css.map */

.mobile_no input,
.input-group-prepend + input {
  height: 45px;
  margin-left: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  background: url(../images/icons/call_icon_grey.svg) center left 10px no-repeat;
  padding-left: 35px;
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  transition: 0.15s linear;
}

.mobile_no input:focus,
.input-group-prepend + input:focus,
.mobile_no input:not(:placeholder-shown),
.input-group-prepend + input:not(:placeholder-shown) {
  background: url(../images/icons/call_icon.svg) center left 10px no-repeat;
}

#inputGroupPrepend {
  height: 45px;
  background: var(--card-bg, #fff);
  position: relative;
}

#inputGroupPrepend img {
  max-height: 18px;
}

#inputGroupPrepend::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 1px;
  right: 1px;
  background: #e9f7fd;
}

.gc_values_slide .swiper-slide {
  height: auto;
}

.gc_values_slide .gc_invest_slide_each {
  height: 100%;
}

.gc_trade_swiper .swiper-slide img {
  max-width: 100%;
  height: 100% !important;
  width: 100% !important;
}

.mobile_no input {
  max-width: 280px;
}

.gc_text_img--pic img {
  /* max-height: 470px; */
}

.gc_text_img--pic.app-image {
  max-width: 48.5%;
  text-align: left;
  display: block;
  box-shadow: none;
}

.gc_text_img--pic.app-image:before {
  display: none;
}

.sec-image_with_text-centre.app-img-center {
  max-width: 35%;
  box-shadow: none;
  margin: 0 auto;
}

.gc_text_img--pic.thumbnai-app-pic {
  max-width: 62%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gc_text_img--pic.app-image {
    max-width: 28.5%;
    margin: 0 auto;
  }

  .gc_text_img--pic.thumbnai-app-pic {
    max-width: 50%;
    margin: 0 auto;
    margin-top: 20px;
  }
}

.list-unstyled.gb-list li {
  padding-left: 0px !important;
}

.list-unstyled.gb-list li::before {
  display: none;
}

.gc_quote {
  background: url('../images/icons/quote.svg') left top no-repeat;
  color: var(--text-color, #262424);
  font-size: calc(calc(var(--font-size) * 1) - 1px);
  line-height: 20px;
  font-family: 'Maison Neue';
  padding-top: 20px;
  margin-top: -15px;
  margin-bottom: 10px;
}

.gc_quote + p {
  color: var(--blue-color, #1e7ae0);
  font-size: calc(var(--font-size) * 1.0625);
  line-height: 25px;
  font-family: 'Maison Neue';
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .gb-result .gb-cta {
    text-align: left !important;
  }

  .gb-result .gb-cta a {
    display: inline-flex !important;
    align-items: center;
    margin-top: 20px;
  }

  .gb-result .gb-cta a::after {
    margin-left: 8px !important;
  }
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data input {
  min-width: 100%;
}

.gb-pricingcarousel-btn {
  padding-bottom: 40px;
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data input[type='submit'] {
  color: #fff;
  font-family: 'Maison Neue', sans-serif;
  font-size: calc(var(--font-size) * 0.875);
  border-radius: 5px;
  height: 45px;
}

.gb-career .gb-result .gb-list .gb-detail .gb-application .gb-credentials .gb-form .gb-form-data input[type='submit']:hover {
  color: var(--blue-color, #1e7ae0);
}

.gb-gridform .input-group {
  max-width: 240px;
  min-width: 240px;
}

/*  */

.gb-side-gridform .input-group-text {
  background-color: var(--card-bg, #ffffff);
}

.gb-side-gridform .input-group-prepend {
  display: none;
}

.gb-side-gridform input {
  min-width: auto;
  height: 45px;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

@media only screen and (max-width: 600px) {
  .gb-side-gridform input {
    height: 45px;
  }
}

.gb-side-gridform .col-auto {
  width: 100%;
}

.gb-side-gridform .gc_btn_primary {
  height: 45px;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .gb-side-gridform .gc_btn_primary {
    height: 45px;
    padding: 0 10px;
    font-size: calc(var(--font-size) * 0.875);
  }
}

.gb-side-gridform .input-group {
  /* max-width: 240px;
	min-width: 240px; */
  border: 2px solid #ddd;
  border-radius: 10px;
}

/*  */

.gb-accordion-body h4 {
  font-size: calc(var(--font-size) * 1.125);
  margin-bottom: 8px;
}

.gb-accordion-body p {
  margin-bottom: 20px;
}

.gb-accordion-body ul {
  padding-left: 18px;
  margin-top: 20px;
}

.gb-accordion-body ul li {
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .gc_apps a {
    margin-bottom: 10px;
    display: inline-block;
  }

  .gc_offerings_slide .swiper-slide {
    height: auto;
  }

  .gc_offerings_slide .gc_offerings_slide_each,
  .gc_offerings_slide .gc_globe_each {
    height: 100%;
  }

  .gc_offerings_slide_each {
    border-radius: 10px;
    overflow: hidden;
  }

  .gb-foreign-investors-institutions .gb-image,
  .gb-non-resident-indian .gb-image {
    padding: 0 15px;
  }

  .gb-foreign-investors-institutions .gb-image img,
  .gb-non-resident-indian .gb-image img {
    border-radius: 10px;
  }
}

.gc_full_height .gc_image_full,
.gc_full_height .gc_image_full img {
  height: 100%;
  object-fit: cover;
}

.gb-contact .gb-branchoffice .gb-multipleoffices .gb-wrap {
  padding-top: 30px;
  margin-bottom: 20px;
  height: calc(100% - 30px);
}

.gb-contact .gb-branchoffice .gb-multipleoffices .gb-wrap .gb-title .gb-text {
  font-size: calc(var(--font-size) * 1.25);
}

.gc_stock_reports .gc_block_v1 {
  box-shadow: rgb(0 0 0 / 12%) 0 3px 6px;
  border-radius: 6px;
  padding: 15px 30px;
}

.gc_stock_reports .gc_block_v1 .gc_image {
  display: none;
}

.gc_invest_slide {
  position: relative;
}

.gc_invest_slide_each_hight {
  background: var(--data-bg);
  padding: 28px;
  border-radius: 10px;
  margin-bottom: 20px;
  max-width: 400px;
  min-height: 280px;
}

@media (max-width: 768px) {
  .gc_invest_slide_each_hight {
    margin-bottom: 20px;
    min-width: 300px;
    min-height: 320px;
  }
}

.gc_invest_slide_each_hight--icon {
  width: 76px;
  height: 76px;
  background: #ffffff;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

.gc_invest_slide_each_hight--title {
  font-size: calc(var(--font-size) * 1.25);
  line-height: 30px;
  font-family: 'Maison Neue', sans-serif;
  font-weight: bold;
  color: var(--text-color, #262424);
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .gc_invest_slide_each_hight--title {
    font-size: calc(var(--font-size) * 1.25);
    line-height: 25px;
  }
}

.gc_footer_stores.partner {
  margin-top: 50px;
}

.partener-header {
  font-weight: 700;
  font-size: 120%;
}

.img-bank {
  max-width: 200px;
  margin-top: 20px;
}

.img-campaign {
  max-width: 230px;
  margin-top: 20px;
}

.img-campaign.mini {
  max-width: 120px;
  margin-top: 20px;
}

.img-campaign-camp.mini {
  max-width: 80px;
  margin-top: 20px;
  margin-right: 20px;
}

.img-campaign img {
  display: block;
  width: 100%;
  height: auto;
}

.img-campaign-camp img {
  display: block;
  width: 100%;
  height: auto;
}

.gb-offer-card .gb-blocks {
  border: 1px dashed #0078fd;
  padding: 22px 0;
  border-radius: 30px;
  background-color: var(--bg-color, #fff);
  /* background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: linear-gradient(180deg, #fff, #fff); */
  padding-bottom: 35px;
  position: relative;
}

.gb-header {
  font-size: 0.92rem;
  font-weight: 500;
  margin: 25px auto !important;
}

.gb-pricing-type {
  font-size: 1.2rem;
  margin-bottom: 10px !important;
}

.gb-offer-price {
  font-size: 1rem;
  margin: 30px auto;
  margin-top: 0 !important;
}

.gb-pricing-note {
  font-size: 0.8rem;
  margin-top: 25px;
  color: #8a8a8a;
}

.final-price {
  font-size: 1.8rem;
  font-weight: 700;
  background-image: linear-gradient(62deg, #0054f7, #0183ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.source-price {
  text-decoration: line-through;
}

.nft-price {
  display: inline-block;
}

.offer-header b {
  background-image: linear-gradient(62deg, #0054f7, #0183ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.offer-sub-header {
  font-weight: 400;
}

.offer-image {
  position: absolute;
  /* top: -50px; */
  right: -5px;
  z-index: 10;
  max-width: 100px;
}

h4.offer-image-text {
  /* position: absolute; */
  margin-top: 10px;
  font-size: calc(var(--font-size) * 1);
  left: 30px;
  top: 20px;
  color: #0054f7;
  z-index: 2;
}

.off-img {
  display: block;
  width: 100%;
}

.single-blog .blog_title {
  margin-bottom: 15px;
}

.single-blog blockquote {
  background: #f6f6f6;
  font-style: italic;
  border-left: 5px solid;
  border-color: #000;
  padding: 5px 15px;
  margin: 30px auto;
}

.basic-editor ul li p,
.basic-editor ol li p {
  margin: 14px auto;
}

.basic-editor ul,
.basic-editor ol {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ul li,
.basic-editor ol li {
  margin-bottom: 15px;
}

.basic-editor ul.number-ol {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ul.number-ol li {
  margin-bottom: 15px;
  list-style: auto;
}

.basic-editor ul.lower-alpha {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ul.lower-alpha li {
  margin-bottom: 15px;
  list-style: lower-roman;
}

.basic-editor ul.upper-alpha {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ul.upper-alpha li {
  margin-bottom: 15px;
  list-style: lower-roman;
}

.basic-editor ul.upper-roman {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ul.upper-roman li {
  margin-bottom: 15px;
  list-style: upper-roman;
}

.basic-editor ul.lower-roman {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ul.lower-roman li {
  margin-bottom: 15px;
  list-style: upper-roman;
}

.basic-editor ul.upper-latin {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ul.upper-latin li {
  margin-bottom: 15px;
  list-style: upper-latin;
}

.basic-editor ul.lower-latin {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ul.lower-latin li {
  margin-bottom: 15px;
  list-style: lower-latin;
}

.basic-editor ol.number-ol {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ol.number-ol li {
  margin-bottom: 15px;
  list-style: auto;
}

.basic-editor ol.lower-alpha {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ol.lower-alpha li {
  margin-bottom: 15px;
  list-style: lower-roman;
}

.basic-editor ol.upper-alpha {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ol.upper-alpha li {
  margin-bottom: 15px;
  list-style: lower-roman;
}

.basic-editor ol.upper-roman {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ol.upper-roman li {
  margin-bottom: 15px;
  list-style: upper-roman;
}

.basic-editor ol.lower-roman {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ol.lower-roman li {
  margin-bottom: 15px;
  list-style: upper-roman;
}

.basic-editor ol.upper-latin {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ol.upper-latin li {
  margin-bottom: 15px;
  list-style: upper-latin;
}

.basic-editor ol.lower-latin {
  margin: 20px auto;
  padding: 0;
  padding-left: 20px;
}

.basic-editor ol.lower-latin li {
  margin-bottom: 15px;
  list-style: lower-latin;
}

.basic-editor ul.list-no-margin {
  margin: 10px auto;
}

.basic-editor ul.list-no-margin li {
  margin-bottom: 0;
}

.table-centered td,
.table-centered th {
  vertical-align: middle !important;
  font-size: 80%;
  padding: 3px 20px;
}

.texta-end {
  text-align: right !important;
}

.gb-requestcall-ipo {
  padding: 25px;
  border: var(--card-border, #bbd7f6) 1px solid;
  border-radius: 10px;
  margin-top: 0;
}

.single_title {
  font-weight: 700;
}

.download-app-qr {
  width: 140px;
  background-color: #fff;
  padding: 12px 8px;
  border-radius: 8px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.download-app-qr h3 {
  font-size: calc(var(--font-size) * 0.75);
  font-weight: 700;
  line-height: 16px;
  margin: 0px 0px 8px 0px;
}

.download-app-qr .close-qr {
  position: absolute;
  right: -7px;
  top: -8px;
  width: 20px;
  text-align: center;
  cursor: pointer;
  height: 20px;
  background-color: var(--text-color, #1e7ae0);
  border-radius: 50%;
  line-height: 16px;
}

.download-app-qr .close-qr img {
  width: 10px;
  height: 10px;
}

.download-app-qr .image-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.download-app-qr .image-content .image {
  max-width: 96px;
  padding: 0;
  border: 1px solid var(--border-color, #e5e5e5);
  border-radius: 4px;
}

.download-app-qr .image-content .image img {
  display: block;
  width: 100%;
  height: 100%;
}

.download-app-qr .image-content .content-img {
  padding-top: 8px;
}

.download-app-qr .image-content .content-img a {
  padding-right: 12px;
}

.download-app-qr .image-content .content-img a:last-child {
  padding-right: 0px;
}

.download-app-qr .image-content .content {
  width: 180px;
}

.download-app-qr .image-content .content h3 {
  font-size: calc(var(--font-size) * 0.875);
  font-weight: 700;
  line-height: 20px;
  margin-top: 0px;
}

.download-app-qr .image-content .content-main {
  display: flex;
  align-items: center;
}

.download-app-qr .image-content .content-main p {
  font-size: calc(var(--font-size) * 0.75);
  font-weight: 500;
  line-height: 16px;
  margin: 0;
  padding-right: 8px;
}

.bold {
  font-weight: 600;
}

.vigilance-commission {
  padding: 0 25px;
}

.vigilance-commission blockquote {
  border-left: 10px solid #ccc;
  margin: 20px auto;
  padding: 20px;
  background-color: #e9e9e9;
}

.vigilance-commission blockquote p {
  margin: 0;
}

.gb-investor-form br {
  display: none;
}

.gb-investor-form .gb-form {
  margin: 0;
}

.gb-investor-form .wpcf7 form.sent .wpcf7-response-output {
  display: block !important;
}

.whatsapp-ico {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.phone-solid-ico {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  fill: #ffffff;
}

.whatsapp-ico:hover {
  fill: #ffffff;
}

.phone-solid-ico:hover {
  fill: #1e7ae0 !important;
}


.theme-mode-dark .gc_notify{
  background: #ea0202;
}

.mobile-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}


/* =========================================
   Multi-Step Form - Modern Step Indicator
   ========================================= */

/* Desktop Step Indicator (Horizontal) */
.gc-step-indicator-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 30px;
    padding: 0 15px;
    flex-wrap: wrap;
}

/* Mobile Step Headers - Hidden on Desktop */
.gc-mobile-step-header {
    display: none;
}

/* Progress Bar */
.gc-ms-progress-wrap {
    width: 100%;
    background: #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
    margin: 15px 0 5px;
}

.gc-ms-progress-bar {
    height: 4px;
    background: var(--button-bg, #1e7ae0);
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Step Counter */
.gc-ms-step-counter { 
    color: var(--text-color, #1e7ae0); 
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: calc(var(--font-size) * 0.875); 
    margin: 4px 0 16px;
}

.gc-ms-current-step {
    font-weight: 700;
    color:var(--link-color, #1e7ae0);
}

.gc-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.gc-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e8e8e8;
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #999;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.gc-step-number {
    display: block;
    transition: opacity 0.3s ease;
}

.gc-step-check {
    display: none;
    width: 24px;
    height: 24px;
    /* color: #fff; */
    position: absolute;
}

.gc-step-label {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-color, #1e7ae0);
    font-weight: 500;
    text-align: center;
    max-width: 120px;
    transition: color 0.3s ease;
    line-height: 1.3;
    text-transform: uppercase;
}

.gc-step-connector {
    flex: 1 1 auto;
    height: 2px;
    background: #e8e8e8;
    margin: 0 8px;
    position: relative;
    top: -12px;
    min-width: 30px;
    max-width: 100px;
    transition: background 0.3s ease;
}

/* Active Step - Blue Ring Design */
.gc-step-item.active .gc-step-circle {
    background: var(--link-color, #1e7ae0);
    border: 3px solid var(--link-color, #1e7ae0);
    color: #fff;
    box-shadow: 0 0 0 6px rgba(66, 133, 244, 0.2);
}

.gc-step-item.active .gc-step-label {
    color: var(--link-color, #1e7ae0);
    font-weight: 600;
}

/* Completed Step - Green with Checkmark */
.gc-step-item.completed .gc-step-circle {
    background: #34a853;
    border-color: #34a853;
    color: #fff;
}

.gc-step-item.completed .gc-step-number {
    display: none;
}

.gc-step-item.completed .gc-step-check {
    display: block;
}

.gc-step-item.completed .gc-step-label {
    color: #34a853;
    font-weight: 500;
}

.gc-step-item.completed ~ .gc-step-connector {
    background: #34a853;
}

/* Mobile/Tablet - Vertical Timeline Layout */
@media (max-width: 768px) {
    /* Hide Desktop Step Indicator */
    .gc-step-indicator-desktop {
        display: none !important;
    }
    
    /* Progress Bar - Full width on mobile */
    .gc-ms-progress-wrap {
        margin: 10px 0 5px;
    }
    
    /* Step Counter - Mobile friendly */
    .gc-ms-step-counter {
        text-align: left;
        margin: 4px 0 12px;
        padding: 0 20px;
    }
    
    /* Show Mobile Step Headers */
    .gc-mobile-step-header {
        display: flex;
        flex-direction: column;
        position: relative;
        margin-bottom: 0;
        padding: 0 20px;
    }
    
    /* Step Item in Mobile - Horizontal Layout */
    .gc-mobile-step-header .gc-step-item {
        flex-direction: row;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 10px 0;
    }
    
    .gc-mobile-step-header .gc-step-circle {
        width: 44px;
        height: 44px;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .gc-mobile-step-header .gc-step-label {
        margin-top: 0;
        margin-left: 15px;
        text-align: left;
        font-size: 14px;
        max-width: none;
        flex: 1;
        font-weight: 600;
    }
    
    /* Vertical Connector in Mobile */
    .gc-mobile-step-header .gc-step-connector {
        position: absolute;
        left: 22px;
        top: 54px;
        width: 2px;
        height: calc(100% - 44px);
        min-width: 2px;
        max-width: 2px;
        min-height: 20px;
        margin: 0;
        background: #e8e8e8;
    }
    
    .gc-mobile-step-header .gc-step-item.completed ~ .gc-step-connector {
        background: #34a853;
    }
    
    /* Form Panel - Only Visible When Active */
    .gc-ms-step-panel {
        padding-left: 64px;
        position: relative;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 20px;
    }
    
    /* Hide connector after panel when panel is visible (active) */
    .gc-ms-step-panel.gc-ms-step-active + .gc-mobile-step-header .gc-step-connector {
        top: 0;
    }
    
    /* Remove extra padding from inner containers */
    .gc-ms-step-panel > div[class*="container"] {
        padding-left: 0;
        padding-right: 0;
    }
    
    .gc-ms-step-panel > div[class*="container"] > div[class*="inner"] {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Vertical line through active step panel */
    .gc-ms-step-panel::before {
        content: '';
        position: absolute;
        left: 22px;
        top: 0;
        width: 2px;
        height: 100%;
        background: var(--link-color, #1e7ae0);
        z-index: 0;
    }
    
    /* Navigation buttons on mobile */
    .gc-ms-step-panel .gc-ms-step-actions {
        margin: 20px 0 20px -64px !important;
        padding-left: 64px;
        display: flex !important;
        gap: 10px !important;
        flex-wrap: wrap;
    }
    
    .gc-ms-step-panel .gc-ms-step-actions button {
        flex: 1 1 auto;
        min-width: 120px;
    }
}

/* Smaller Mobile Screens */
@media (max-width: 480px) {
    .gc-mobile-step-header {
        padding: 0 15px;
    }
    
    .gc-mobile-step-header .gc-step-circle {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    
    .gc-mobile-step-header .gc-step-label {
        font-size: 13px;
        margin-left: 12px;
    }
    
    .gc-mobile-step-header .gc-step-connector {
        left: 20px;
        top: 50px;
    }
    
    .gc-mobile-step-header .gc-step-check {
        width: 20px;
        height: 20px;
    }
    
    .gc-ms-step-panel {
        padding-left: 56px;
    }
    
    .gc-ms-step-panel::before {
        left: 20px;
    }
    
    .gc-ms-step-panel .gc-ms-step-actions {
        margin-left: -56px !important;
        padding-left: 56px;
    }
}

/* =========================================================
   VALIDATION MODAL STYLES
   ========================================================= */

/* Validation errors container in modal */
.gc-validation-errors {
    max-height: 60vh;
    overflow-y: auto;
    padding: 0;
}

/* Scroll styling for validation errors */
.gc-validation-errors::-webkit-scrollbar {
    width: 8px;
}

.gc-validation-errors::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.gc-validation-errors::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.gc-validation-errors::-webkit-scrollbar-thumb:hover {
    background: #555;
}
 
/* Code blocks in validation errors */
.gc-validation-errors code {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Icons in validation errors */
.gc-validation-errors .fa {
    animation: pulse 0.5s ease-in-out;
}

/* Animation keyframes */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Modal body spacing for validation errors */
.gc-fb-modal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

/* Enhanced invalid field styles */
.is-invalid {
    border-color: #dc3545 !important;
    animation: shake 0.4s ease-in-out;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive adjustments for validation modal */
@media (max-width: 767px) {
    .gc-validation-errors {
        max-height: 50vh;
    }
    
    .gc-validation-errors ul li {
        padding: 10px !important;
        font-size: 0.9em;
    }
    
    .gc-fb-modal .modal-body {
        max-height: 60vh;
    }
}

.gc-validation-error-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.gc-validation-error-item{
    margin: 15px auto;
    padding: 12px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    animation: slideInFromLeft 0.3s ease-out 0s backwards;
}

.gc-validation{
  border-radius: 0;
  padding-bottom: 0;
}

/*  */

.theme-mode-dark .gc_whatsnew .gc_solid { opacity: 0.1;}
.theme-mode-dark .gc_footer .gc_ring,
.theme-mode-dark .gc_trade_wrap .gc_ring,
.theme-mode-dark .gc_trade_wrap .gc_solid_2,
.theme-mode-dark .gc_trade_wrap .gc_solid_1,
.theme-mode-dark .gc_offerings_slide_each .gc_ring,
.theme-mode-dark .gc_offerings_slide_each .gc_solid_2,
.theme-mode-dark .gc_offerings_slide_each .gc_solid_1,
.theme-mode-dark .gc_invest_slide_each .gc_ring,
.theme-mode-dark .gc_invest_slide_each .gc_solid_2,
.theme-mode-dark .gc_invest_slide_each .gc_solid_1,
.theme-mode-dark .gc_text_img--pic .gc_ring,
.theme-mode-dark .gc_text_img--pic .gc_solid_2,
.theme-mode-dark .gc_text_img--pic .gc_solid_1,
.theme-mode-dark .gc_quote .gc_ring,
.theme-mode-dark .gc_quote .gc_solid_2,
.theme-mode-dark .gc_quote .gc_solid_1,
.theme-mode-dark .gc_testimonials_wrap .gc_ring,
.theme-mode-dark .gc_testimonials_wrap .gc_solid_2,
.theme-mode-dark .gc_testimonials_wrap .gc_solid_1,
.theme-mode-dark .gc_values_slide_each .gc_ring,
.theme-mode-dark .gc_values_slide_each .gc_solid_2,
.theme-mode-dark .gc_values_slide_each .gc_solid_1,
.theme-mode-dark .overview-bg
 { opacity: 0.2;}
 
.theme-mode-dark .gc_footer .gc_dots, 
.theme-mode-dark .gc_testimonials_wrap .gc_dots
{ opacity: 0.3;}

.theme-mode-dark .gc_grow_wrap {
  background-image: url('../images/grow_bg_dark.png'); 
}
.theme-mode-dark .gc_grow_slide_btn_each{ color: #ffffff;}
.theme-mode-dark .gc_trade_wrap .gc_image_abs::before{ background-color: var(--body-bg, #ffffff); }
.theme-mode-dark .gc_btn_primary { background-color: #001833;}
.theme-mode-dark .gc_btn_primary:hover { background-color: #003566;}

.theme-mode-dark .progress:after { border-color: rgba(255, 255, 255, .2);}
.theme-mode-dark .gc_btn_arrow.swiper-button-disabled { background-color: rgba(255, 255, 255, .3);}
.theme-mode-dark .gc_finance_strengths , .theme-mode-dark .gc_overview{ background-image: url('../images/icons/circle-big-dark.svg');}

.theme-mode-dark .gc_footer_links_each--icon,
.theme-mode-dark .gc_invest_slide_each--icon { background-color:color-mix(in srgb, var(--body-bg, #1e7ae0) 40%, #1e7ae0) ;}
.theme-mode-dark .gc_globe_each--icon::before { background-color:color-mix(in srgb, var(--body-bg, #ffffff) 70%, white) ;}

.post-edit-footer {
  padding: 16px 0;
  background-color: var(--body-bg, #ffffff);
}
.post-edit-footer .permalink { font-size: 200%; line-height: 1; font-weight: 700;}
.theme-mode-dark .modal-content{ background-color: color-mix(in srgb, var(--body-bg, #ffffff) 80%, white);}
.theme-mode-dark .modal-footer, .theme-mode-dark .modal-header{ border-color: color-mix(in srgb, var(--body-bg, #ffffff) 90%, white);}
.theme-mode-dark .gc_calculators_wrap_each_grey,
.theme-mode-dark .gc_calculators_wrap_each_white,
.theme-mode-dark .gb-faqs .gb-content .gb-results-accordion .gb-block {
  background-color: color-mix(in srgb, var(--body-bg, #ffffff) 86%, white);
  border-color: color-mix(in srgb, var(--body-bg, #ffffff) 80%, white);
      box-shadow: none;
   } 
.theme-mode-dark .gc_footer_list_each ul li a:hover {color: color-mix(in srgb, var(--link-hover-color, #ffffff) 86%, white);}
.theme-mode-dark .gb-plack .gb-block.gb-datainvesting {background-color: var(--button-bg, #1e7ae0);}
.theme-mode-dark .gc_stock_reports .gc_block_v1 { background-color: color-mix(in srgb, var(--body-bg, #ffffff) 86%, white); border-color: color-mix(in srgb, var(--body-bg, #ffffff) 80%, white); box-shadow: none;}
/* .theme-mode-dark {} */


.theme-mode-dark .gc_navbar .navbar .nav-item .nav-link:hover,
.theme-mode-dark .gc_navbar .navbar .dropdown-menu li .dropdown-item:hover, 
.theme-mode-dark .gc_navbar .navbar .nav-item.dropdown.show > a { 
  color: var(--nav-hover-text, #1e7ae0);
}

.theme-mode-dark .gc_bonds_grid_info_each--label{ color: #001833;}

.theme-mode-dark .gb-chart.gb-standard .gb-blocks {background-color: #00509d;}
.theme-mode-dark .gb-chart.gb-premium .gb-blocks {background-color: #058c42;}
.theme-mode-dark .gb-chart.gb-ultimate .gb-blocks {background-color: #ff6600;}

.theme-mode-dark .gb-chart.gb-standard .gb-blocks .gb-head,
.theme-mode-dark .gb-chart.gb-premium   .gb-blocks .gb-head,
.theme-mode-dark .gb-chart.gb-ultimate .gb-blocks .gb-head{ background-color: rgba(0, 0, 0, 0.3);}
.theme-mode-dark .gb-costing .gb-blocks .gb-list ul li::before{ background-image: url('../images/icons/tick-white.svg'); }
.theme-mode-dark .gb-splitpanel .gb-content .gb-item .card-body .gb-list li::before{ background-image: url('../images/icons/tick-green.svg'); }

.theme-mode-dark .gb-chart.gb-standard .gb-blocks .gb-head .gb-plan .gb-text {
  border-radius: 10px;
  background: #00509d;
  background: -webkit-gradient(linear, left top, right top, from(#00509d), to(#2a6fdb));
  background: linear-gradient(to right, #00509d 0%, #2a6fdb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00509d', endColorstr='#2a6fdb', GradientType=0);
}

.theme-mode-dark .gb-chart.gb-premium .gb-blocks .gb-head .gb-plan .gb-text {
  border-radius: 10px;
  background: #058c42;
  background: -webkit-gradient(linear, left top, right top, from(#058c42), to(#2fbf71));
  background: linear-gradient(to right, #058c42 0%, #2fbf71 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#058c42', endColorstr='#2fbf71', GradientType=0);
}

.theme-mode-dark .gb-chart.gb-ultimate .gb-blocks .gb-head .gb-plan .gb-text {
  border-radius: 10px;
  background: #ff6600;
  background: -webkit-gradient(linear, left top, right top, from(#ff6600), to(#ff9f43));
  background: linear-gradient(to right, #ff6600 0%, #ff9f43 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6600', endColorstr='#ff9f43', GradientType=0);
}

.theme-mode-dark .gc_picks_each{ border: none ;}

.theme-mode-dark .gc_events_each { box-shadow: none; border: 1px solid color-mix(in srgb, var(--border-color, #ffffff) 60%, black);}

.theme-mode-dark .gc_placeholder .form-group label.form-check-label {
  background-color: transparent;
  color: var(--text-color, #262424);
}
.theme-mode-dark .user-ucc { background-color: var(--blue-color, #1e7ae0);}
.theme-mode-dark .gb-bloglist .gb-blogcontent ul.gb-items li.gb-category, .theme-mode-dark .gb-blogoverview .gb-blogdata ul li.gb-category {background-color: color-mix(in srgb, var(--warning-color, #ffffff) 86%, white);}
.theme-mode-dark .gb-pricingcarousel .swiper-container .gb-item,.theme-mode-dark .gc_globe_each.with-margin {
  border-color: color-mix(in srgb, var(--border-color, #ffffff) 56%, black);
}


.theme-mode-dark .text-muted{ color: color-mix(in srgb, var(--text-color, #ffffff) 75%, black) !important; }
.theme-mode-dark .close { color: color-mix(in srgb, var(--text-color, #ffffff) 75%, black) !important; opacity: 1;}
.theme-mode-dark .gc_awards_full_slide_each--icon { background-image: url("../images/award-dark.svg");}
.theme-mode-dark .gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap{ border-color: color-mix(in srgb, var(--link-color, #1e7ae0) 40%, transparent);}

.theme-mode-dark .gb-customercare .gb-wrap .gb-content, .theme-mode-dark .gb-contactdetails-bg { background-color: #003566;}
.theme-mode-dark .gb-branchoffice .gb-multipleoffices .gb-content .gb-wrap .gb-block .gb-cta .gb-direction,
.theme-mode-dark .gb-impact .gb-list .gb-item .gb-data,
.theme-mode-dark .gc_press_each--content .gc_news_each {     border-color: color-mix(in srgb, var(--link-color, #1e7ae0) 24%, transparent);}

.theme-mode-dark .gc_awards_slide_each--icon{ background-image: url("../images/award-gold.svg"); }
.theme-mode-dark .gc_vission::before, .theme-mode-dark .gc_mission::before { background-color: #023e7d;}
.theme-mode-dark .gb-requestcall , .theme-mode-dark .gb-blogabout {background-color: color-mix(in srgb, var(--blue-color, #1e7ae0) 15%, transparent); }
.theme-mode-dark .gb-pagecolums .gb-stable .gb-columns .gb-item { border: 0;}

.theme-mode-dark  .gc_navbar {
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 4px 6px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 4px 6px;
}
.theme-mode-dark .gc_ipo_tabs .nav-tabs .nav-item span {
  background-color: color-mix(in srgb, var(--blue-color, #1e7ae0) 80%, black);
}
.theme-mode-dark .gc_ipo_tabs .nav-tabs .nav-item {
  border-color: color-mix(in srgb, var(--blue-color, #1e7ae0) 90%, white);
}

.theme-mode-dark .gc_accordian .card, .theme-mode-dark .gc_ipo_single {
  background-color: color-mix(in srgb, var(--data-bg, #ffffff) 90%, #003554);
  border-color: color-mix(in srgb, var(--data-bg, #ffffff) 80%, white); 
}

.theme-mode-dark .gc_ipo_single--label { color: #001833; }
.theme-mode-dark .gc_chain { background-image: url('../images/chain_dark_bg.png');}
.theme-mode-dark .gc_banner.is-dark,
.theme-mode-dark .gc_banner.is-dark .globec-lead-form-wrapper ,
.theme-mode-dark .gc_banner.is-dark .globec-lead-form-wrapper label
 {
  color: color-mix(in srgb, var(--text-color, #ffffff) 0%, white);
}

.theme-mode-dark .gc-field-error {
      color: #ff9999;
}
.theme-mode-dark .gc-step-number {
  color: color-mix(in srgb, var(--text-color, #1e7ae0) 50%, black);
}
/* .theme-mode-dark  */
/* .theme-mode-dark  */
.theme-mode-dark .gc_about_banner {
  background-image: url('../images/map-dark.png');
}

.theme-mode-dark .data_table .dataTables_scroll{
  background-color: color-mix(in srgb, var(--blue-color, #1e7ae0) 30%, transparent);
  box-shadow: none;
}
.theme-mode-dark  div.dataTables_wrapper div.dataTables_filter input {
  box-shadow: none; 
  border-color: color-mix(in srgb, var(--blue-color, #1e7ae0) 90%, white);
}
.theme-mode-dark .data_table thead tr th {
  background-color: color-mix(in srgb, var(--blue-color, #ffffff) 90%, white);
}


.mobile-form-container {
  display: flex; 
  gap: .6rem;
}

.mobile-form-inner  {
  /* display: flex; */
  flex: 1 1 auto !important;
}

.gc-submit-wrapper .btn {
    padding-left: 24px;
    padding-right: 24px;
}

.blog-form-submit {
  margin-top: 30px;
}

.blog-form-submit .btn { width: 100%;}


/* ===== Share this post widget ===== */
.gc-blog-body-wrap {
    padding: 0;
}
.gc-blog-main-content .basic-editor .container,
.gc-blog-main-content section > .container,
.gc-blog-main-content section > .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}
.gc-blog-sidebar-col {
    padding-top: 40px;
}
.gc-blog-sidebar {
    position: sticky;
    top: 100px;
}
.gc-share-widget {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px 18px;
}
.gc-share-widget__title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
}
.gc-share-widget__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gc-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #444;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.gc-share-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}
.gc-share-btn--linkedin:hover { background: #0077b5; color: #fff; }
.gc-share-btn--facebook:hover { background: #1877f2; color: #fff; }
.gc-share-btn--twitter:hover  { background: #000;    color: #fff; }
.gc-share-btn--copy:hover     { background: #555;    color: #fff; }
.gc-share-btn--copy.copied    { background: #28a745; color: #fff; }
.gc-share-btn svg { display: block; }
@media (max-width: 991px) {
    .gc-blog-sidebar-col { padding-top: 24px; }
    .gc-blog-sidebar { position: static; }
    .gc-share-widget { max-width: 240px; }
}

/* ===== Share & Like widget — counts + like button ===== */
.gc-sidebar-widget { margin-bottom: 20px; }
.gc-sidebar-widget__title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
}
.gc-share-total {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}
.gc-share-total .gc-total-count { font-weight: 600; color: #444; }
.gc-hidden { display: none !important; }

/* Like wrap */
.gc-like-wrap { margin-top: 16px; border-top: 1px solid #eee; padding-top: 14px; }
.gc-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    padding: 6px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #888;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.gc-like-btn:hover { border-color: #e94560; color: #e94560; }
.gc-like-btn.liked { border-color: #e94560; color: #e94560; background: #fff0f3; }
.gc-like-btn.liked .gc-like-icon { fill: #e94560; }
.gc-like-icon {
    fill: #ccc;
    transition: fill 0.2s ease, transform 0.15s ease;
}
.gc-like-btn:hover .gc-like-icon { fill: #e94560; }
.gc-like-btn.liked .gc-like-icon { transform: scale(1.2); }
.gc-like-count { font-weight: 600; min-width: 16px; }

/* ===== Blog featured image ===== */
.gc-blog-featured-img {
    margin-bottom: 32px;
}
.gc-blog-featured-img img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 8px;
}


.gc-a11y-tab-pane {display: none;}
.gc-a11y-tab-pane.active {display: block;}
 
.gc-a11y-tabs-wrap {
   background-color: var(--link-color, #1e7ae0);
  /* background-color: color-mix(in srgb, var(--blue-bg, #ffffff) 90%, #003554); */
  padding: 0 calc(var(--font-size) * 1.2);
  padding-top: calc(var(--font-size) * 0.75);
}

.gc-a11y-tabs {
  display: flex;
  gap: 8px; 
  flex-wrap: wrap;
  list-style: none;
}

.gc-a11y-tabs .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.gc-a11y-tabs .nav-item a,.gc-a11y-tabs .nav-item .btn {
   width: 100%; display: block; border-radius: calc(var(--font-size) * 1.2);
   border-bottom-left-radius: 0; border-bottom-right-radius: 0;
   text-decoration: none;
   font-weight: 600;
   color: #fff; 
}

.gc-font-presets .btn.active, .gc-style-wrap .btn.active,.gc-case-wrap .btn.active {
  background-color: var(--link-color, #1e7ae0);
  color: #fff;
}

.gc-a11y-tabs .nav-item.active a,.gc-a11y-tabs .nav-item.active .btn,
.gc-a11y-tabs .nav-item.active a:hover,.gc-a11y-tabs .nav-item.active .btn:hover {
  background-color: #fff;
  color: var(--link-color, #1e7ae0);
}

.gc-a11y-tabs .nav-item a:hover,.gc-a11y-tabs .nav-item .btn:hover {
  color: #00ffff; 
}
.theme-mode-dark  .gc-a11y-tabs-wrap {
   background-color: color-mix(in srgb, var(--link-color, #1e7ae0) 20%, black); 
}

.theme-mode-dark .gc-font-presets .btn.active {
  background-color: var(--link-color, #1e7ae0);
  color: #000;
}

.theme-mode-dark .gc-a11y-tabs .nav-item a, .theme-mode-dark .gc-a11y-tabs .nav-item .btn 
{ color: var(--link-color, #1e7ae0); }

.theme-mode-dark .gc-a11y-tabs .nav-item.active a,.theme-mode-dark .gc-a11y-tabs .nav-item.active .btn,
.theme-mode-dark .gc-a11y-tabs .nav-item.active a:hover,.theme-mode-dark .gc-a11y-tabs .nav-item.active .btn:hover {
  background-color: color-mix(in srgb, var(--body-bg, #ffffff) 80%, white);
  color: var(--link-color, #1e7ae0); 
}
.theme-mode-dark .gc-a11y-tabs .nav-item a:hover,.theme-mode-dark .gc-a11y-tabs .nav-item .btn:hover {
  color: #1e7ae0; 
}