@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Noto+Sans+SC:wght@100..900&display=swap");
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  5% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: rotate(0deg) scale(1.2) skew(0deg) translate(0px);
  }
  100% {
    opacity: 0;
  }
}
/**
 * * Modern CSS Reset Tweaks
 * * ==================================================
 * * A collection of modern CSS reset and normalization styles
 * * to ensure consistent behavior across browsers, OS and devices.
 * */
/* Ensure consistent font resizing on mobile devices */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * * CSS Reset Tweaks
 * * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * * URL: http://meyerweb.com/eric/tools/css/reset/
 * */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
rtc,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
  outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
  display: block;
}

canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default list styling */
ol,
ul {
  list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
  box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

video {
  background: #000;
}

/**
 * * Prevent modern browsers from displaying `audio` without controls.
 * * Remove excess height in iOS 5 devices.
 * */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * */
[hidden] {
  display: none;
}

/**
 * * Improve readability when focused and also mouse hovered in all browsers.
 * */
a:active,
a:hover {
  outline: none;
}

/**
 * * Make media easier to work with
 * */
audio,
img,
picture,
svg,
video {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/**
 * * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * * the UA stylesheet.
 * */
button,
input {
  line-height: normal;
}

/**
 * * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * * All other form control elements do not inherit `text-transform` values.
 * * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * * Correct `select` style inheritance in Firefox 4+ and Opera.
 * */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * * Re-set default cursor for disabled elements.
 * */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled=true],
[aria-disabled=true] {
  pointer-events: none;
}

/**
 * * Address box sizing set to content-box in IE 8/9.
 * */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 * *    (include `-moz` to future-proof).
 * */
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * * Remove inner padding and search cancel button in Safari 5 and Chrome
 * * on OS X.
 * */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * * Remove inner padding and border in Firefox 3+.
 * */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * * Remove most spacing between table cells.
 * */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * * Based on normalize.css v8.0.1
 * * github.com/necolas/normalize.css
 * */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * * Correct the inheritance and scaling of font size in all browsers.
 * */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * * Remove the gray background on active links in IE 10.
 * */
a {
  background-color: transparent;
}

/**
 * * 1. Remove the bottom border in Chrome 57-
 * * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
 * * Add the correct font size in all browsers.
 * */
small {
  font-size: 75%;
}

/**
 * * Prevent `sub` and `sup` elements from affecting the line height in
 * * all browsers.
 * */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * * 1. Change the font styles in all browsers.
 * * 2. Remove the margin in Firefox and Safari.
 * */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * * Show the overflow in IE and Edge.
 * */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * * Correct the inability to style clickable types in iOS and Safari.
 * */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * * Remove the inner border and padding in Firefox.
 * */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 * */
progress {
  vertical-align: baseline;
}

/**
 * * Correct the cursor style of increment and decrement buttons in Chrome.
 * */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * * 1. Correct the odd appearance in Chrome and Safari.
 * * 2. Correct the outline style in Safari.
 * */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
}

/* 2 */
/**
 * * Remove the inner padding in Chrome and Safari on macOS.
 * */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * * 1. Correct the inability to style clickable types in iOS and Safari.
 * * 2. Change font properties to `inherit` in Safari.
 * */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
}

/* 2 */
/* Interactive
 * ========================================================================== */
/* * Add the correct display in all browsers.
 * */
summary {
  display: list-item;
}

/* Misc
 * ========================================================================== */
template {
  display: none;
}

body {
  font-family: "Google Sans Flex", "Noto Sans SC", sans-serif;
  max-width: 100%;
  height: auto;
  background-color: #152D52;
  line-height: 1.75;
  letter-spacing: 0.32px;
  overflow: hidden;
  overflow-y: scroll;
  color: #ffffff;
  font-size: 1rem;
}
body .scroll-locked {
  overflow: hidden;
  touch-action: none;
  width: 100%;
}
body.pri_fix {
  background-color: #f1f1f1;
}

small {
  font-size: 0.75rem;
  letter-spacing: 2%;
}

div {
  box-sizing: border-box;
}

button {
  outline: none;
}
button:focus {
  outline: none;
}

a {
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a:focus {
  outline: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

input {
  outline: none;
}

.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

.disabled {
  color: #8b9090 !important;
  cursor: default !important;
}
.disabled:after, .disabled:before {
  display: none !important;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.96px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.96px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 1.125rem;
  }
}

h4 {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 1.125rem;
  }
}

h5 {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 1.92px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  h5 {
    font-size: 1rem;
  }
}

video {
  background: transparent;
}

.color_main_1 {
  color: #152D52;
}
.color_main_2 {
  color: #64c0d5;
}
.color_main_3 {
  color: #0a172a !important;
}
.color_main_4 {
  color: #ffffff;
}
.color_main_5 {
  color: whitesmoke;
}
.color_main_6 {
  color: #02AFD7;
}
.color_main_7 {
  color: #d54027;
}
.color_main_8 {
  color: #bcd438;
}

.bg-c1 {
  background-color: #152D52;
}
.bg-c2 {
  background-color: #64c0d5;
}
.bg-c3 {
  background-color: #0a172a;
}
.bg-c4 {
  background-color: #ffffff;
}
.bg-c5 {
  background-color: whitesmoke;
}

.main-logo {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 150px;
  display: inline-block;
  background-size: contain;
}
@media only screen and (max-width: 991px) {
  .main-logo {
    width: 120px;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-collapse {
    margin-top: 20px;
    background-color: rgba(25, 30, 31, 0.85);
  }
}
.navbar-collapse.show {
  background-color: rgba(25, 30, 31, 0.85);
  margin-top: 20px;
}
.navbar-collapse.show ul.navbar-nav {
  font-size: 1.35rem;
  font-weight: normal;
}
.navbar-collapse.show ul.navbar-nav li.nav-item {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-collapse ul.navbar-nav {
  font-size: 1.35rem;
}
@media only screen and (max-width: 991px) {
  .navbar-collapse ul.navbar-nav li.nav-item {
    padding: 20px 0;
  }
}
.navbar-collapse .dropdown-menu {
  background-color: rgba(19, 30, 60, 0.7);
}
.navbar-collapse .dropdown-menu li a.dropdown-item {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 20px 1.5rem;
  color: whitesmoke;
  font-size: 1.35rem;
  filter: blur(0px);
}
.navbar-collapse .dropdown-menu li a.dropdown-item:hover {
  color: #152D52;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: #ffffff;
}

.main__footer {
  background-color: #0b1729;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: 320px;
  position: relative;
  line-height: 2;
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  .main__footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.footer--bottom__copyright {
  letter-spacing: 0;
  color: #ECECEC;
  position: relative;
  padding: 20px 0;
  line-height: 1.75;
  font-size: 0.75rem;
}
.footer--bottom__copyright:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 15px;
  top: 50%;
}
.footer--bottom__copyright .copyright {
  color: #cccccc;
}

.footer--virsion {
  color: #0b1729;
}

.guide_map .line_cov {
  position: relative;
  margin-bottom: 86px;
  margin-top: 10px;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .guide_map .line_cov {
    margin-bottom: 50px;
  }
}
.guide_map .title {
  text-align: left;
  font: normal normal bold 16px/32px proxima-nova, "Noto Sans", "Noto Sans JP", "Noto Sans TC", "Noto Sans SC", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  color: #ffffff;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .guide_map .title {
    border-bottom: 1px solid #ffffff;
    margin-top: 25px;
  }
}
.guide_map .title:after {
  content: "";
  border-bottom: 1px solid #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 42px;
}
@media only screen and (max-width: 767px) {
  .guide_map .title:after {
    display: none;
  }
}
.guide_map .title:before {
  content: "";
  border-bottom: 2px solid #0a172a;
  position: absolute;
  width: 50px;
  top: 40px;
}
@media only screen and (max-width: 767px) {
  .guide_map .title:before {
    display: none;
  }
}
.guide_map .title .footer--phonelist__cross {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 8px;
  opacity: 0.7;
}
.guide_map .title .footer--phonelist__cross:after, .guide_map .title .footer--phonelist__cross:before {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  content: "";
  width: 12px;
  height: 2px;
  top: 11px;
  left: 6px;
  background: whitesmoke;
  display: block;
  position: absolute;
}
.guide_map .title .footer--phonelist__cross:before {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.guide_map .title .footer--phonelist__cross:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.guide_map .title.collapsed .footer--phonelist__cross {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.guide_map .title.collapsed .footer--phonelist__cross:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.guide_map .title.collapsed .footer--phonelist__cross:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.guide_map a {
  display: block;
  text-align: left;
  font: normal normal normal 13px/32px Noto Sans;
  letter-spacing: 0;
  line-height: 40px;
  color: #152D52;
}
.guide_map a:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: whitesmoke;
}
.guide_map a.un_link {
  cursor: default;
  opacity: 0.5;
}
.guide_map a.un_link:hover {
  color: #848484;
}

.foot--bottombox__title {
  color: #64c0d5;
  font-size: 1rem;
  line-height: 32px;
  font-weight: bold;
}
.foot--bottombox__title.title {
  font-size: 1rem;
  font-weight: bold;
}
.foot--bottombox__title.title:before {
  display: none;
}
.foot--bottombox__text {
  color: whitesmoke;
  font-size: 1rem;
  line-height: 32px;
}
.foot--bottombox__text a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: underline;
  height: 32px;
  position: relative;
  top: -6px;
}
@media only screen and (max-width: 767px) {
  .foot--bottombox__text a {
    top: -3px;
  }
}
.foot--bottombox__text a:hover {
  text-decoration: underline;
}

.foot__info__title {
  position: relative;
}

.foot__info a {
  color: #d3d3d3;
  padding: 0.25rem 0;
  display: block;
  line-height: 2;
}
.foot__info a:hover {
  color: #fff;
}
.foot__info .foot--bottombox__text {
  color: #d3d3d3;
}

.btu__linkedin {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 44px;
  height: 44px;
  border: 1px solid #d3d3d3;
  line-height: 40px;
  border-radius: 15px;
  text-align: center;
  display: inline-block;
}
.btu__linkedin svg {
  display: inline-block;
}
.btu__linkedin:hover {
  background-color: #000;
  border: 1px sold #ffffff;
}

.icon-linkedin {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 16px;
  height: 16px;
}
.icon-linkedin path {
  fill: #cccccc;
  transition: fill 0.2s ease;
}
.icon-linkedin:hover path {
  fill: #fff;
}

.main--logo-phone.footer__style {
  width: 80px;
  position: absolute;
  top: 70px;
  right: 30px;
  opacity: 1;
}

@media only screen and (max-width: 575px) {
  .footer--img {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.section-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 400px at 20% -10%, rgba(255, 255, 255, 0.1), transparent), radial-gradient(1000px 300px at 80% 10%, rgba(13, 110, 253, 0.15), transparent);
  pointer-events: none;
  z-index: 1;
}

.bg-gradient-dark {
  background: linear-gradient(180deg, #0b0f19 0%, #131a2a 100%);
}

.hero-card {
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
}

.feature .card-body {
  padding: 1rem 1rem;
}

.stat-tile {
  border-radius: 1rem;
  background: var(--bs-body-bg);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
}

.pipeline-bar {
  position: relative;
  width: 100%;
  height: 0.75rem;
  background: rgba(13, 110, 253, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  height: 100%;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.bar-green {
  background: linear-gradient(90deg, #a6e3b8 0%, #27ae60 100%);
}

.bar-orange {
  background: linear-gradient(90deg, #ffe0cc 0%, #f4a261 100%);
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.sp__title.body--font {
  font-size: 2rem;
}
@media only screen and (max-width: 575px) {
  .sp__title.body--font {
    font-size: 1.6rem;
  }
}

.main__title {
  background: linear-gradient(to top, #152d52, #0b1729);
}
.main__title .about__maincenter {
  min-height: 81vh;
}

.note__article {
  background: linear-gradient(to top, #152d52, #10223e);
  padding-top: 100px;
  padding-bottom: 100px;
  line-height: 1.5;
}

.note__main__ul li {
  margin-left: 1rem;
}

.note__sub__ul {
  padding-left: 50px;
  list-style: disc;
}

.navbar__main {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1054;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar__main.scroll-active {
  top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 991px) {
  .navbar__main.scroll-active {
    top: 0;
  }
}
.navbar__main.scroll-active .navbar__main--logo {
  max-width: 110px;
}
.navbar__main.scroll-active .navbar__main--logo .main--logo {
  position: absolute;
  top: -150px;
}
.navbar__main.scroll-active .navbar__main--logo .main--logo-phone {
  position: absolute;
  top: 50%;
  margin-top: -25px;
}
.navbar__main.scroll-active .navbar__main--logo img {
  margin: 0;
}
.navbar__main.scroll-active a.nav-link {
  color: whitesmoke;
}
.navbar__main.scrolled-bg {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar__main--logo {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 175px;
  height: 100%;
  display: block;
  position: relative;
}
.navbar__main--logo .main--logo {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  position: absolute;
  top: 13px;
}
.navbar__main--logo .main--logo-phone {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 50px;
  position: absolute;
  top: -150px;
}
@media only screen and (max-width: 767px) {
  .navbar__main--logo img {
    max-width: 138px;
    margin: 0;
  }
}
.navbar__main .collapse {
  line-height: 0;
}
.navbar__main .navbar-nav {
  padding: 0 1rem;
}
.navbar__main .navbar-nav__topnav {
  font-size: 0.75rem;
}
.navbar__main .navbar-nav__topnav a.nav-link {
  padding-bottom: 0;
}
.navbar__main a.nav-link {
  color: whitesmoke;
  line-height: calc(2rem + 19px) !important;
  padding: 0;
  vertical-align: middle;
  font-weight: bold;
}
.navbar__main a.nav-link:hover, .navbar__main a.nav-link.show, .navbar__main a.nav-link.active {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #ffffff;
}
.navbar__main a.nav-link.disabled {
  color: #8b9090;
}
.navbar__main a.nav-link span {
  margin-left: 3px;
  position: relative;
  top: 3px;
}

.navbar-toggler {
  border: 0;
}
.navbar-toggler span {
  color: whitesmoke;
}
.navbar-toggler:focus, .navbar-toggler:hover {
  box-shadow: none;
  border: 0;
}

.nav--menu__mainbtu {
  position: relative;
  z-index: 2000;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
  margin-right: 0.75rem;
}
@media only screen and (max-width: 991px) {
  .nav--menu__mainbtu {
    margin-top: 0.5rem;
    margin-right: 0;
  }
}
.nav--menu__mainbtu.menu_active .nav--menu__mainbtu-cvbg div:nth-child(3n+1) {
  top: 23px;
  -webkit-transform: rotate(405deg);
  -moz-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  -o-transform: rotate(405deg);
  transform: rotate(405deg);
}
.nav--menu__mainbtu.menu_active .nav--menu__mainbtu-cvbg div:nth-child(3n+2) {
  width: 0;
  right: 22px;
  opacity: 0;
}
.nav--menu__mainbtu.menu_active .nav--menu__mainbtu-cvbg div:nth-child(3n+3) {
  top: 23px;
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.nav--menu__mainbtu-cvbg {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  float: right;
  width: 45px;
  height: 44px;
  position: relative;
}
.nav--menu__mainbtu-cvbg div {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 33px;
  height: 3px;
  background-color: whitesmoke;
  position: absolute;
}
.nav--menu__mainbtu-cvbg div:nth-child(3n+1) {
  top: 9px;
  left: 6px;
}
.nav--menu__mainbtu-cvbg div:nth-child(3n+2) {
  width: 25px;
  top: 21px;
  right: 6px;
}
.nav--menu__mainbtu-cvbg div:nth-child(3n+3) {
  top: 33px;
  right: 6px;
}
.nav--menu__mainbtu-cvbg:hover div:nth-child(3n+2) {
  width: 33px;
}

.scroll-active .nav--menu__mainbtu-cvbg div {
  background-color: whitesmoke;
}

.menu__bar {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom, #152D52, #254e8f);
  z-index: 50;
  overflow-y: scroll;
  overflow-x: hidden;
  opacity: 0;
}
.menu__bar.menu_active {
  width: 31.4%;
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  .menu__bar.menu_active {
    width: 100%;
  }
}
.menu__bar--box {
  color: #ffffff;
  max-width: 100vw;
  min-height: 100vh;
  padding: 4rem 3rem 6rem;
}
.menu__bar--title {
  position: relative;
  letter-spacing: 0px;
}
.menu__bar--title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #ffffff;
  opacity: 0.8;
}
.menu__bar .menu__bar--boxlink {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  display: block;
  font-size: 1rem;
  word-break: keep-all;
  color: whitesmoke;
}
.menu__bar .menu__bar--boxlink span {
  font-size: 1rem;
  margin-left: 3px;
  position: relative;
  top: 3px;
}
.menu__bar .menu__bar--boxlink:hover {
  color: #ffffff;
}
.menu__bar .menu__bar--boxlink.disabled {
  color: #5f5f5f;
  cursor: default !important;
}
.menu__bar .menu__bar--boxlink.navbar-nav__top__btu span {
  top: 10px;
}

.dropdown-menu[data-bs-popper] .nav-link:hover {
  background-color: #0b1729;
}

.navbar-nav__top {
  padding-top: 0.5rem !important;
}
.navbar-nav__top__btu {
  letter-spacing: 0;
  line-height: calc(1rem + 19px) !important;
}
.navbar-nav__bottom__btu {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  letter-spacing: 0;
  line-height: calc(2rem + 19px) !important;
}
.navbar-nav__bottom__btu::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  border-bottom: 1px solid #ffffff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-nav__bottom__btu.menu_active, .navbar-nav__bottom__btu:hover, .navbar-nav__bottom__btu.show, .navbar-nav__bottom__btu.active {
  color: #ffffff !important;
}
.navbar-nav__bottom__btu.menu_active::before, .navbar-nav__bottom__btu:hover::before, .navbar-nav__bottom__btu.show::before, .navbar-nav__bottom__btu.active::before {
  width: 100%;
  bottom: -1px;
  border-bottom: 1px solid #ffffff;
}

.header-bg {
  transition: background-color 0.3s ease;
}
.header-bg.scrolled-bg {
  background-color: rgba(255, 255, 255, 0.6);
}

.nav--menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: whitesmoke;
}

.btu {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: 0;
  cursor: pointer;
}
.btu.to_download {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
  border-radius: 36px;
  line-height: 1.5;
  font-weight: bold;
  font-size: 1.625rem;
  padding: 5px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  color: #152D52;
}
.btu.to_download:hover {
  background-color: #152D52;
  color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .btu.to_download {
    font-size: 1.3125rem;
  }
}

.text-link:hover {
  font-weight: bold;
}

.link_btu {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 200px;
  text-align: center;
  border: 1px solid #02AFD7;
  color: #02AFD7;
  line-height: 50px;
  border-radius: 25px;
}
.link_btu:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #02AFD7;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .link_btu {
    width: 100%;
  }
}
.link_btu span {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: inline-block;
  line-height: 0;
  position: relative;
  top: 6px;
}
.link_btu-type2 {
  color: #0a172a;
  border-color: #0a172a;
}
.link_btu-type2:hover {
  background-color: #0a172a;
}

.language--btu {
  position: relative;
}
.language--btu.active {
  color: #ffffff !important;
}

.border-animate {
  position: relative;
}
.border-animate::before, .border-animate::after,
.border-animate .border-animate__border::before,
.border-animate .border-animate__border::after {
  content: "";
  position: absolute;
  background-color: #152D52;
  transition: all 0.5s ease;
  z-index: 1;
}
.border-animate::before {
  height: 2px;
  width: 0%;
  top: 0;
  left: 0;
}
.border-animate::after {
  height: 2px;
  width: 0%;
  bottom: 0;
  right: 0;
}
.border-animate .border-animate__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.border-animate .border-animate__border::before {
  width: 2px;
  height: 0%;
  top: 0;
  left: 0;
}
.border-animate .border-animate__border::after {
  width: 2px;
  height: 0;
  bottom: 0;
  right: 0;
}
.border-animate:hover::before {
  width: 100%;
  transition-delay: 0s;
}
.border-animate:hover .border-animate__border::before {
  height: 100%;
  transition-delay: 0.2s;
}
.border-animate:hover::after {
  width: 100%;
  transition-delay: 0.4s;
}
.border-animate:hover .border-animate__border::after {
  height: 100%;
  transition-delay: 0.6s;
}

.video__btu {
  width: 300px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -33px;
  margin-left: -150px;
  font-size: 2rem;
}
.video__btu span {
  font-size: 2.5rem;
  top: 9px;
}
.video__btu--box {
  width: 100%;
  position: relative;
  display: block;
}
.video__btu--pvcbg {
  background: url("../../src/images/preview-pvc.jpg") 50% 50% no-repeat;
  background-size: contain;
  width: 100%;
  padding-top: 56.25%;
  z-index: 0;
}
.video__btu--about {
  background: url("../../src/images/preview.jpg") 50% 50% no-repeat;
  background-size: contain;
  width: 100%;
  padding-top: 56.25%;
  z-index: 0;
}

.modal-header .btn-close {
  background-color: #fff;
  border-radius: 50%;
  margin-right: 0;
}

.program-pipeline {
  background: #152D52;
}
.program-pipeline__header {
  display: flex;
  align-items: flex-end;
  column-gap: 2rem;
  width: 100%;
  min-width: 720px;
}
.program-pipeline__program-label {
  width: 240px;
  min-width: 200px;
}
.program-pipeline__phase-track {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  position: relative;
  padding-left: 20px;
}
.program-pipeline__phase-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.program-pipeline__phase {
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  border-bottom: 1px dashed #4c4b4b;
}
.program-pipeline__body {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  width: 100%;
  min-width: 720px;
}
.pipeline-group {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}
.pipeline-group__label {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
  margin-left: 0;
}

.program-pipeline__main {
  min-height: 820px;
}

.pipeline-row__track {
  padding: 0.5rem 0;
  flex: 1;
  display: block;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  min-height: 64px;
  align-items: center;
}
.pipeline-row__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  right: 0;
  background-image: repeating-linear-gradient(to right, #d4d8e0, #d4d8e0 1px, transparent 1px, transparent calc(25% - 1px));
  pointer-events: none;
  z-index: 0;
}
.pipeline-row__bar {
  position: relative;
  z-index: 1;
  overflow: visible;
  height: 52px;
  width: 100%;
}
.pipeline-row__bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 26px;
  background-image: linear-gradient(90deg, #063b4a 0%, #3fbf7f 100%);
  transition: width 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.pipeline-row__bar.is-active::before {
  width: var(--pipeline-progress, 100%);
}
.pipeline-row__indication {
  white-space: nowrap;
  position: absolute;
  left: 1rem;
  top: 50%;
  margin-top: -14px;
  z-index: 2;
}

.body__title__type-2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #02AFD7;
  margin-bottom: 12px;
}

.decoration__title__type-1 svg {
  height: 24px;
  position: relative;
  top: -3px;
}
.decoration__title__type-1 svg .cls-1 {
  fill: #bcd438;
}

.cell-network-section {
  position: relative;
  overflow: hidden;
}

.cell-network-bg {
  pointer-events: none;
  z-index: 1;
}

.cell-network-canvas {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  filter: blur(0.1px);
}

.container,
.row,
.col-12 {
  position: relative;
  z-index: 3;
}

.bottom-fix {
  height: 250px;
}
@media only screen and (max-width: 767px) {
  .bottom-fix.mobile-bottom-fix {
    height: 50px;
  }
}

.rounded-bc {
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .rounded-bc {
    border-radius: 12px;
  }
}

.info-article {
  margin-bottom: 20px;
}

.type-title {
  margin-bottom: 12px;
}

.img-base {
  margin-bottom: 26px;
}

.img-base-plat {
  margin-bottom: 14px;
}

.img-note {
  color: #FFF;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.24px;
  margin-bottom: 32px;
}

.dark-modal .modal-content {
  background-color: #152D52;
}
.dark-modal .modal-body {
  background-color: #152D52;
}

.RWD__box {
  color: whitesmoke;
  line-height: 2;
  width: 100%;
  position: relative;
}
.RWD__box__bg {
  width: 100%;
  padding-top: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-zoom__figure {
  width: 100%;
  background: initial;
}

.image-zoom__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  padding: 14px 0;
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-banner__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__content {
  max-width: 820px;
}

.cookie-banner__title {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #fff;
}

.cookie-banner__text {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.cookie-banner__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-banner__prefs {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding-left: 6px;
  padding-right: 6px;
}

.cookie-modal {
  border-radius: 16px;
}

.cookie-modal__group {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 16px;
}

.cookie-modal__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-modal__meta {
  flex: 1 1 auto;
}

.cookie-modal__name {
  font-weight: 700;
}

.cookie-modal__desc {
  color: rgba(0, 0, 0, 0.65);
}

.cookie-modal__switch {
  flex: 0 0 auto;
  min-width: 170px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-modal__footer {
  gap: 8px;
}

@media (max-width: 991.98px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
  }
}
.hero-dual-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  max-width: 1920px;
  max-height: 1080px;
  margin: auto;
  --pm-overlay-hide-duration: .6s;
}
.hero-dual-video.os_sup--noLoop .hero-dual-video__loop {
  display: none;
}

.hero-dual-video__loop,
.hero-dual-video__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
  transition: opacity var(--pm-overlay-hide-duration, 0.6s) ease, visibility 0s linear var(--pm-overlay-hide-duration, 0.6s);
}

.hero-dual-video__loop {
  z-index: 1;
}

.hero-dual-video__overlay {
  z-index: 2;
}

.hero-dual-video__overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-dual-video__cta {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-dual-video__ctaText,
.hero-dual-video__ctaBtn {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.85s ease;
  will-change: transform, opacity;
}

.hero-dual-video__ctaText.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.hero-dual-video__ctaBtn.is-shown {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero-dual-video {
    min-height: 520px;
  }
}
.hero-cta__text {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.85s ease, transform 0.7s ease;
}
.hero-cta__text.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta__btn {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.85s ease, transform 0.7s ease;
  pointer-events: none;
}
.hero-cta__btn.is-shown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-video-text {
  margin-top: 2rem;
}

.index__intro__main {
  height: 90vh;
  max-height: 800px;
}

.index__intro {
  max-width: 1920px;
  margin: 0 auto;
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  max-height: 1080px;
}
@media only screen and (max-width: 767px) {
  .hero-video {
    height: 57vh;
  }
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: transparent;
}

.hero-video__dimmer {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  pointer-events: none;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 2;
}

.hero-video__cta {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 400px;
  height: 130px;
  line-height: 68px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  top: 22%;
  background-color: transparent;
  color: #fff;
  border-radius: 999px;
  opacity: 0 !important;
  border: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}
.hero-video__cta:hover {
  background-color: #fff;
  color: #0a172a;
}

.stroke-btn__label {
  position: relative;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  text-align: center;
}

.stroke-btn__border {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.stroke-btn__svg {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}

.stroke-btn__path {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--strokeLen, 0);
  stroke-dashoffset: var(--strokeLen, 0);
  opacity: 1;
}

.hero-video__cta.is-border-animating .stroke-btn__path {
  animation: ctaDashDraw 1.1s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

.hero-video__cta.is-border-complete .stroke-btn__path {
  animation: none;
  stroke-dashoffset: 0;
}

@keyframes ctaDashDraw {
  0% {
    stroke-dashoffset: var(--strokeLen, 0);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video__dimmer {
    opacity: 0.45;
  }
  .hero-video__cta {
    opacity: 1;
    transform: none;
  }
  .stroke-btn__path {
    animation: none;
    stroke-dashoffset: 0;
  }
}
.index--science {
  background: #152D52;
  background-size: cover;
  padding: 50px 0;
}
.index--science--maincenter {
  position: relative;
}

.index__img__icon__pos {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 2rem;
  color: #152D52;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.js-science-zoom-trigger {
  position: relative;
  cursor: zoom-in;
}
.js-science-zoom-trigger:hover .index__img__icon__pos {
  opacity: 1;
}

.image-zoom__figure {
  width: 100%;
}

.image-zoom__stage {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  touch-action: none;
}

.image-zoom__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: 0 0;
  will-change: transform;
}

.index--science__vi {
  position: relative;
}

.section-platform {
  padding-bottom: 100px;
}

.pipeline-flow {
  border: 0;
  border-radius: 30px;
  margin-top: 50px;
  padding: 30px 15px;
}
.pipeline-flow .pipeline-timeline {
  position: relative;
  padding-left: 2rem;
}
.pipeline-flow .pipeline-timeline::before {
  content: "";
  position: absolute;
  left: 69px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #dbe6ea;
}
.pipeline-flow .pipeline-step {
  position: relative;
  margin-bottom: 2.5rem;
}
.pipeline-flow .pipeline-step:last-child {
  margin-bottom: 0;
}
.pipeline-flow .pipeline-step__marker {
  position: relative;
  z-index: 2;
  margin-right: 1.5rem;
}
.pipeline-flow .pipeline-step__circle {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid #64c0d5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pipeline-flow .pipeline-step__number {
  font-weight: 700;
  font-size: 0.95rem;
  color: #64c0d5;
}
.pipeline-flow .pipeline-step__content {
  flex: 1 1 auto;
}
.pipeline-flow .pipeline-step__card {
  border: 0;
  border-radius: 1rem;
  padding: 0 0.5rem;
}
.pipeline-flow .pipeline-step__card--end {
  border: 2px solid #dbe6ea;
  margin-bottom: 1rem;
}
.pipeline-flow .pipeline-step__card .card-body {
  padding-top: 0;
}
.pipeline-flow .pipeline-step__stage {
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #90bdd3;
}
.pipeline-flow .pipeline-badge {
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.2rem;
}
.pipeline-flow .pipeline-badge h6 {
  font-size: 0.9rem;
}
.pipeline-flow .pipeline-badge p {
  line-height: 1.4;
}
.pipeline-flow .pipeline-badge--green {
  background: #64c0d5;
}
.pipeline-flow .pipeline-badge--deepblue {
  background: #152c52;
}
.pipeline-flow .pipeline-badge--lightblue {
  background: #00afd7;
}
.pipeline-flow .pipeline-badge--red {
  background: #d53e27;
}
.pipeline-flow .pipeline-clinical__label {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #d53e27;
}
.pipeline-flow .pipeline-clinical__label span {
  position: relative;
  top: 5px;
}
.pipeline-flow .pipeline-clinical__arrow {
  font-size: 1.25rem;
  color: #d53e27;
}
@media (max-width: 767.98px) {
  .pipeline-flow .pipeline-timeline {
    padding-left: 0rem;
  }
  .pipeline-flow .pipeline-timeline::before {
    left: 36px;
  }
  .pipeline-flow .pipeline-step__marker {
    margin-right: 0;
  }
  .pipeline-flow .pipeline-step__card {
    padding: 0.25rem;
  }
  .pipeline-flow .pipeline-badge {
    padding: 0.85rem 1rem;
  }
}

.science-fix {
  padding: 45px;
}
@media only screen and (max-width: 767px) {
  .science-fix {
    padding: 25px;
  }
}

.index__team {
  min-height: 450px;
}

.team__avatar {
  margin-bottom: 12px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
.team__avatar span {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: rgba(11, 15, 25, 0.75);
  text-align: center;
  width: 33px;
  height: 33px;
  line-height: 33px;
  border-radius: 50%;
  color: #ffffff;
  opacity: 0;
}
.team__avatar:hover {
  -webkit-transform: translate(-3%, -3%);
  -moz-transform: translate(-3%, -3%);
  -ms-transform: translate(-3%, -3%);
  -o-transform: translate(-3%, -3%);
  transform: translate(-3%, -3%);
}
.team__avatar:hover span {
  opacity: 1;
}
.team__avatar-1 .RWD__box__bg {
  background-image: url(../../src/images/CS_portrait.jpg);
}
.team__avatar-2 .RWD__box__bg {
  background-image: url(../../src/images/sandeep_somani_profile_photo_color.JPG);
}
.team__avatar-3 .RWD__box__bg {
  background-image: url(../../src/images/Jerry_Wang_photo_color.jpg);
}
.team__avatar-4 .RWD__box__bg {
  background-image: url(../../src/images/David_Wang.jpg);
}
.team__avatar-5 .RWD__box__bg {
  background-image: url(../../src/images/Diyong_Xu.jpg);
}
.team__avatar-6 .RWD__box__bg {
  background-image: url(../../src/images/Kan_Chen.jpg);
}
.team__avatar-7 .RWD__box__bg {
  background-image: url(../../src/images/Jon_photo_color.jpg);
}
.team__avatar__title {
  font-size: 1.125rem;
}

.team__article {
  letter-spacing: 0;
}

.team__popup__modal .team-modal {
  background: #152D52;
}
.team__popup__modal .modal-header {
  border: 0;
  padding: 1rem;
}
.team__popup__modal .modal-content {
  padding: 2rem;
}

.team-card__data {
  margin-bottom: 8px;
}

.team-fix {
  padding-top: 58px;
}

.team__card__cop {
  padding: 3rem 2rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.team__card__cop img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.index__about {
  background-color: #152d52;
  padding: 50px 0;
}
.index__about__img {
  width: 75%;
  -webkit-transform: rotate(-35deg);
  -moz-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  -o-transform: rotate(-35deg);
  transform: rotate(-35deg);
}
@media only screen and (max-width: 767px) {
  .index__about__img {
    width: 60%;
  }
}

.about__vi .RWD__box__bg {
  background-image: url(../../src/images/p4.png);
}
.about__vi-2 {
  padding-top: 39.0625%;
  background-image: url(../../src/images/about_vi1.jpg);
}
@media only screen and (max-width: 991px) {
  .about__main {
    padding-top: 20px;
  }
}

.about__body__img {
  max-width: 300px;
}

.about__video {
  background: transparent;
  transform: translatex(0%) scale(220%);
}

.news__main {
  background-color: #152D52;
}

.news__card {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 1rem;
  background: radial-gradient(circle at 20% 0%, rgba(2, 15, 40, 0) 0%, rgba(27, 43, 97, 0) 55%, rgba(36, 147, 172, 0) 100%);
  border-radius: 2.5rem;
  display: block;
  border: 1px solid #254e8f;
  margin-bottom: 1rem;
  -webkit-transform: translate(1, 1);
  -moz-transform: translate(1, 1);
  -ms-transform: translate(1, 1);
  -o-transform: translate(1, 1);
  transform: translate(1, 1);
}
.news__card:hover {
  -webkit-transform: translate(-3%, -3%);
  -moz-transform: translate(-3%, -3%);
  -ms-transform: translate(-3%, -3%);
  -o-transform: translate(-3%, -3%);
  transform: translate(-3%, -3%);
  background: radial-gradient(circle at 20% 0%, rgb(8, 31, 53) 0%, rgb(27, 43, 97) 55%, rgb(2, 15, 40) 100%);
}
.news__card:hover .news__title {
  color: #ffffff;
}
.news__card .news__title {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #bbc8c8;
}
.news__card__time {
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}

.news__card__img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
.news__card__img .news__img-1 {
  background-image: url("../../src/images/news_image-1.jpg");
}
.news__card__img .news__img-2 {
  background-image: url("../../src/images/news_image-2.jpg");
}
.news__card__img .news__img-3 {
  background-image: url("../../src/images/news_image-3.jpg");
}

.pinsilico__main {
  padding-top: 50px;
  padding-bottom: 100px;
}

.pipeline-flow {
  background: radial-gradient(circle at 20% 0%, #152D52 0%, #141c2e 55%, #000 100%);
}
.pipeline-flow h2 {
  color: #0d6efd;
}

.carousel {
  margin-bottom: 2rem;
}
.carousel .carousel-inner {
  padding: 0 1rem;
}
.carousel .carousel-caption {
  position: relative;
  right: auto;
  left: auto;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

/*# sourceMappingURL=style.css.map */
