:root {
  --gx-red: #ff5800;
  --gx-blue: #b8cdf8;
  --gx-green: #012f37;
  --gx-silver: #bebebe;
  --gx-black: #031c26;
  --gx-black-40: #031c2640;
  --gx-orange-cr: #ffa97c;
  --gx-orange: #ff8a4d;
  --gx-purple: #831553;
  --gx-light-green: #a4bc98;
  --gx-cambridge-blue: #a4bc98;
  --gx-dark-purple: #31081f;
  --gx-dark-blue: #09307e;
  --gx-off-white: #d9d9d9;
  --gx-light-blue: #a7bef057;
  --gx-technological-innovations-red: #ff5800;
  --gx-ai-green: #a4bc98;
  --gx-automobile-red: #21a957;
  --gx-cellular-blue: #b8cdf8;
  --gx-smartphone-blue: #8db1ff00;
  --gx-electric-power-silver: #bebebe;
  --gx-home-air-conditioning-yellow: #e9db60;
  --gx-internet-blue: #00b7ff;
  --gx-social-media-purple: #a898bc;
  /* create color variables with opacity 0.4 */
  --gx-blue-40: #b8cdf8bf;
  --gx-dark-purple-40: #31081fbf;
  --gx-red-40: #ff5800bf;
  --gx-cambridge-blue-40: #a4bc98bf;
  --gx-green-40: #012f37bf;
  /* create color variables with opacity 0.3 */
  --gx-blue-30: #b8cdf84d;
  --gx-dark-purple-30: #31081fb3;
  --gx-red-30: #ff5800b3;
  --gx-cambridge-blue-30: #a4bc98b3;
  --gx-green-30: #012f37b3;
  /* create color variables with opacity 0.2 */
  --gx-blue-20: #b8cdf820;
  --gx-dark-purple-20: #31081f20;
  --gx-red-20: #ff580020;
  --gx-cambridge-blue-20: #a4bc9820;
  --gx-green-20: #012f3720;
  /* create color variables with opacity 0.1 */
  --gx-blue-10: #b8cdf810;
  --gx-blue-green: #038096;
  --gx-dark-purple-10: #31081f10;
  --gx-red-10: #ff580010;
  --gx-cambridge-blue-10: #a4bc9810;
  --gx-green-10: #012f3710;
  --gx-light-green-pb: #e7eee4;
  --gx-light-orange-pb: #ffeee5;
  --gx-gold: #a79b2a;
}
html {
  scroll-behavior: auto;
}
@font-face {
  font-family: "Apercu Pro";
  src: url("./assets/fonts/apercu_regular_pro.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Apercu Pro";
  src: url("./assets/fonts/apercu_medium_pro.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "Apercu Pro";
  src: url("./assets/fonts/apercu_bold_pro.otf") format("opentype");
  font-weight: 700;
}

/* // define breakpoints for xm md and lg */
@media (min-width: 992px) {
  .tooltip {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {
  .tooltip {
    padding: 20px 30px;
  }
}

body {
  font-family: Apercu Pro, arial, Helvetica, sans-serif;
  font-size: 16px;
}
/* // fadeOut */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* // fadeIn */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  backdrop-filter: blur(10px);
}
.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navbar-logo {
  font-size: 1.5em;
  font-weight: bold;
}
.navbar-menu ul {
  display: flex;
  gap: 20px;
}
.navbar-menu ul li {
  list-style: none;
}

/* // tooltip */
.tooltip {
  padding: 20px 30px;
  font-family: Apercu Pro, arial, Helvetica, sans-serif;
}

.year {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}
.total-value {
  font-family: Public Sans, arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 30.55px;
}
.breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 25px;
  align-items: center;
}

.item-wrapper {
  display: flex;
  min-width: 90px;
  align-items: center;
  margin-bottom: 5px;
}
.item-wrapper.index {
  display: flex;
  min-width: 90px;
  align-items: center;
}
.color-box {
  width: 20px;
  min-width: 20px;
  height: 3px;
  display: inline-block;
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .color-box {
    width: 9px;
    min-width: 9px;
    height: 5px;
    display: inline-block;
    margin-right: 3px;
  }
}

.color-box.gx-red {
  background-color: var(--gx-red);
}
.color-box.gx-blue {
  background-color: var(--gx-blue);
}
.color-box.gx-green {
  background-color: var(--gx-green);
}
.color-box.gx-silver {
  background-color: var(--gx-silver);
}
.color-box.gx-black {
  background-color: var(--gx-black);
}
.color-box.gx-orange {
  background-color: var(--gx-orange);
}
.color-box.gx-purple {
  background-color: var(--gx-purple);
}
.color-box.gx-blue-green {
  background-color: var(--gx-blue-green);
}
.color-box.gx-light-green {
  background-color: var(--gx-light-green);
}
.color-box.gx-dark-purple {
  background-color: var(--gx-dark-purple);
}
.color-box.gx-dark-blue {
  background-color: var(--gx-dark-blue);
}
.color-box.gx-off-white {
  background-color: var(--gx-off-white);
}
.color-box.gx-gold {
  background-color: var(--gx-gold);
}
.bg-gx-red {
  background-color: var(--gx-red);
}
.bg-gx-blue {
  background-color: var(--gx-blue);
}
.bg-gx-green {
  background-color: var(--gx-green);
}
.bg-gx-silver {
  background-color: var(--gx-silver);
}
.bg-gx-black {
  background-color: var(--gx-black);
}
.bg-gx-orange {
  background-color: var(--gx-orange);
}
.bg-gx-purple {
  background-color: var(--gx-purple);
}
.bg-gx-light-green {
  background-color: var(--gx-light-green);
}
.bg-gx-dark-purple {
  background-color: var(--gx-dark-purple);
}
.bg-gx-dark-blue {
  background-color: var(--gx-dark-blue);
}
.bg-gx-off-white {
  background-color: var(--gx-off-white);
}
.color-black {
  color: #000;
  border-radius: 10px;
  padding: 5px 15px;
}

.bg-color-black {
  color: #fff;
  background-color: #000;
  border-radius: 10px;
  padding: 5px 15px;
}

.section3_chp3_01-icon {
  fill: "red !important";
}
#section2_bespoke {
  position: relative;
}
.tooltip-section2_chp1_01 {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background: transparent;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s;
  strong {
    font-size: 96px;
    font-weight: bolder;
    line-height: 121px;
    margin-bottom: -10px;
  }
}

.disable-section2_chp1_01 {
  position: absolute;
  pointer-events: none;
  z-index: 999;
  background: #102e36bf;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  text-align: left;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.my-tick-text {
  background: #000;
}
.tick {
  background: #000 !important;
}
.heading {
  font-family: Apercu Pro, arial, Helvetica, sans-serif;
  font-size: 42px;
  text-align: center;
  font-weight: 700;
  line-height: 44px;
  color: #000;
}
.description {
  font-family: Apercu Pro, arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  line-height: 28px;
}
/* //  */
img.sg-chart-placeholder {
  display: none;
}

p {
  margin-bottom: 10px;
  margin-top: 10px;
  font-family: Public Sans, arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

.full-report-btn {
  font-family: Public Sans, arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 28px;
  background-color: transparent;
  color: #fff;
  padding: 15px 30px;
  border: 2px solid var(--gx-technological-innovations-red);
  border-radius: 100px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  min-width: 318px;
}

.full-report-small {
  font-family: Public Sans, arial, Helvetica, sans-serif;
  background-color: transparent;
  border: 2px solid var(--gx-technological-innovations-red);
  border-radius: 68.99px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 215px;
  gap: 10px;
  padding: 8px 15px;
  width: 215px;
  max-height: 40px;
  max-width: 215px;
  font-size: 15px;
  line-height: 19.3px;
  font-weight: 300;
  color: black;
  text-transform: capitalize;
  margin-top: 5px;
}

.full-report-small-in-nav {
  font-family: Public Sans, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18.2px;
  font-weight: 300;
  background-color: transparent;
  border: 2px solid var(--gx-technological-innovations-red);
  border-radius: 68.99px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 8px 15px;
  width: 182px;
  max-height: 40px;
  max-width: 182px;
  color: white;
  text-transform: capitalize;
  margin-top: 2px;
}

.full-report-small-in-nav:hover {
  background-color: var(--gx-red);
  color: white;
  transition: all 0.3s;
}

.full-report-small:hover {
  background-color: var(--gx-red);
  color: white;
  transition: all 0.3s;
}

.full-report-small:hover > svg > path {
  transition: all 0.3s;
  fill: white;
}

.full-report-small:hover > svg > line {
  transition: all 0.3s;
  stroke: white;
}

@media (max-width: 735px) {
  .full-report-btn {
    font-size: 18px;
    padding: 10px 20px;
    gap: 10px;
  }
}
.full-report-btn:hover {
  background-color: var(--gx-red);

  transition: all 0.3s;
}

.sg-bespoke-title {
  font-family: Apercu Pro, arial, Helvetica, sans-serif;
  font-size: 42.62px;
  font-weight: 700;
  line-height: 42.6px;
  color: #000;
  text-align: center;
}

.sg-bespoke-description {
  font-family: Public Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: #031c26;
  text-align: center;
  margin-top: 20px;
}

.sg-chart-takeway,
.sg-chart-block {
  opacity: 1 !important;
}

.correct-linking {
  padding-top: 145px !important;
  margin-top: -145px !important;
}

.correct-linking-chapter {
  padding-top: 50px !important;
  margin-top: -50px !important;
}

/* Make all sections center aligned */
@media (max-width: 764px) and (orientation: landscape) {
  body [id^="section"] {
    display: flex;
    justify-content: center;
  }
}

/* Add your CSS styles here */

#section3_chp3_04 {
  margin-top: 50px;
}
#section2_chp1_03_table_Japan {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#section2_chp1_03_table_US {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#section2_chp1_03_table_Japan.visible {
  display: block;
  opacity: 1;
}
#section2_chp1_03_table_US.visible {
  display: block;
  opacity: 1;
}

#section2_chp1_03_table_Japan h2,
#section2_chp1_03_table_US h2 {
  font-family: Public Sans;
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0 !important;
  max-width: 60%;
}

@media screen and (max-width: 768px) {
  #section2_chp1_03_table_Japan,
  #section2_chp1_03_table_US {
    width: 100%;
  }
  #section2_chp1_03_table_Japan h2,
  #section2_chp1_03_table_US h2 {
    font-size: 18px;
    max-width: 100%;
  }

  .sg-sec-two-bespoke .sg-bespoke-description {
    margin-bottom: 60px;
  }

  .source-line.bespoke.sec2 {
    margin: 20px 0 40px 0 !important;
  }
}

.usTooltip {
  position: absolute;
  top: 40px;
  left: 30px;
}

.japanTooltip {
  position: absolute;
  top: 80px;
  left: 55px;
  width: 720px;
}

/** SECTION TWO UNDER VIDEO SPACING **/

.chart-vertical-margin-mobile {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .total-value {
    font-size: 20px;
    line-height: 23.5px;
    margin-bottom: 2px;
  }

  .usTooltip {
    position: relative;
    top: 40px;
    left: 0px;
  }

  .japanTooltip {
    position: relative;
    top: 40px;
    left: 0px;
    width: 100%;
  }
  .world-map-tooltip .infrastructure-container {
    padding: 30px 20px !important;
  }
  .world-map-tooltip .infrastructure-container table {
    width: 100% !important;
  }
  .world-map-tooltip .infrastructure-container table tr th {
    font-size: 14px !important;
  }
  .world-map-tooltip .infrastructure-container table tr th,
  .world-map-tooltip .infrastructure-container table tr td {
    width: 70px !important;
    max-width: 70px !important;
    word-break: break-word;
    white-space: normal !important;
    padding: 12px 10px !important;
    font-size: 14px !important;
  }
  .world-map-tooltip .infrastructure-container table tr th:first-child,
  .world-map-tooltip .infrastructure-container table tr td:first-child {
    width: 96px !important;
    max-width: 96px !important;
    word-break: break-word;
    padding-left: 0 !important;
    font-size: 14px !important;
  }
  .usTooltip .infrastructure-container table tr th,
  .usTooltip .infrastructure-container table tr td {
    width: 90px !important;
    max-width: 90px !important;
  }
  .world-map-tooltip #infrastructureTable {
    padding-right: 0 !important;
    padding-bottom: 0 !important;
  }
  .section2_chp1_04  {
    margin-bottom: 40px !important;
  }
  .section2_chp2_03 {
    margin-top: 40px;
  }
  .section2_chp2_04 {
    margin-bottom: 40px;
  }
  .chart-vertical-margin-mobile {
    margin-top: 126px;
  }
  .section2_chp3_02 {
    margin-top: 30px;
  }
  #section2_chp2_08 {
    margin-bottom: 30px !important;
  }
  #section2_chp3_03 {
    margin-bottom: 30px !important;
  }
}
