:root {
  --white: #ffffff;
  --black: #000000;
  --midnightExpress: #020337;
  --heliotrope: #b463ff;
  --heliotropeDark: #9633f3;
  --whisper: #e9e9e9;
  --magnolia: #f3edff;
  --whiteSmoke: #f1f1f1;
  --eclipse: #3b3b3b;
  --amaranth: #dc3545;
  --pattensBlue: #dee2e6;
  --suvaGrey: #898989;
  --ceruleanBlue: #2146ec;
  --whiteSmoke1: #f4f4f4;
}

html {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica Neue,
    Segoe UI, sans-serif; /* 1 */
  font-size: 62.5%;
  line-height: 1.5; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100%;
  font-family: Roboto !important;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #2a2a2a;
  background: #ffffff;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

html,
body {
  height: 100%;
}

::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
  border-style: none;
}

/**
    * 1. Remove the gray background on active links in IE 10.
    * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
    */

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
  text-decoration: none;
}

/**
    * Remove the outline on focused links when they are also active or hovered
    * in all browsers (opinionated).
    */

a:active,
a:hover {
  outline-width: 0;
}

/**
    * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
    */

b,
strong {
  font-weight: inherit;
}

/**
    * Add the correct font weight in Chrome, Edge, and Safari.
    */

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  max-width: 100%;
  border-style: none;
}

/**
    * Hide the overflow in IE.
    */

svg:not(:root) {
  overflow: hidden;
}

/* Forms
      ========================================================================== */

/**
    * 1. Change font properties to `inherit` in all browsers (opinionated).
    * 2. Remove the margin in Firefox and Safari.
    */

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* 1 */
  margin: 0; /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

/**
    * Remove the inheritance of text transform in Edge, Firefox, and IE.
    * 1. Remove the inheritance of text transform in Firefox.
    */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
    * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
    *    controls in Android 4.
    * 2. Correct the inability to style clickable types in iOS and Safari.
    */

button,
  html [type='button'], /* 1 */
  [type='reset'],
  [type='submit'] {
  -webkit-appearance: button; /* 2 */
}

/**
    * 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 and cancel buttons in Chrome and Safari on OS X.
    */

[type="search"]::-webkit-search-cancel-button,
[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 */
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: none;
}

body {
  padding-top: 112px;
}
.pt24 {
  padding-top: 24px;
}
.pt32 {
  padding-top: 32px;
}
.pb0 {
  padding-bottom: 0 !important;
}
.pb12 {
  padding-bottom: 12px;
}
.pb16 {
  padding-bottom: 16px;
}
.mb24 {
  margin-bottom: 24px;
}
.rowCenter {
  display: flex;
  align-items: center;
}
.overflowBody {
  overflow: hidden;
}
.pg-title {
  font-family: "Playfair Display";
  font-size: 40px;
  color: var(--midnightExpress);
  font-weight: 700;
  line-height: 1.4;
}
.pg-details {
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.4;
  padding-top: 8px;
}
/*** Button Style  ***/
.mobileData {
  display: none;
}
.default-btn {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 16px;
  background: var(--heliotrope);
  border-radius: 16px;
  cursor: pointer;
}
.default-btn:hover {
  color: var(--white);
  background: var(--heliotropeDark);
}
.outline-btn {
  font-size: 14px;
  color: var(--heliotrope);
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--heliotrope);
  border-radius: 16px;
  cursor: pointer;
}
.outline-btn svg {
  margin-left: 10px;
}
.outline-btn:hover {
  color: var(--white);
  background: var(--heliotropeDark);
  border: 1px solid var(--heliotropeDark);
}
.outline-btn:hover svg path {
  fill: var(--white);
}

.signUpBtn {
  display: inline-flex;
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  padding: 12px 32px;
  background: var(--heliotrope);
  border-radius: 24px;
  cursor: pointer;
}
.signUpBtn:hover {
  color: var(--white);
  background: var(--heliotropeDark);
}

/***  Header Style  ***/
header {
  position: fixed;
  top: 0;
  z-index: 999;
  background: var(--white);
  width: 100%;
  height: 112px;
  border-bottom: 1px solid var(--whisper);
}
.headerFixed {
  height: 65px;
}
.menuInfo {
  width: 32px;
  margin-right: 16px;
}
.menuInfo img {
  width: 100%;
}
.headerFixed .headerTopRow {
  padding-top: 12px;
  padding-bottom: 12px;
}
.headerTopRow {
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}
.logoArea {
  display: flex;
  width: 100px;
  height: 40px;
}
.logoArea img {
  width: 100%;
}
.topLinkInfo {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.linkList {
  display: flex;
  align-items: center;
}
.linkBtn {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
.linkBtn img {
  margin-right: 4px;
}
.langBtn {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
.langBtn img {
  width: 100%;
}
.langBtn span {
  display: inline-flex;
  margin: 0 4px;
}
.langMenuInfo {
  position: relative;
}
.langMenuInfo:hover .langDropdownMenu {
  display: block;
}
.langDropdownMenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  width: 200px;
  background: var(--white);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 16px;
}
.langDownMenuList {
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-height: 216px;
  overflow-y: scroll;
}
.langDownMenuList li {
  display: block;
}
.langDownMenuList li:not(:last-child) {
  margin-bottom: 8px;
}
.langDownMenuList li img {
  width: 16px;
  margin-right: 12px;
}
.langDownMenuList li a {
  display: block;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  background-color: var(--white);
  border-radius: 12px;
  padding: 12px;
}
.langDownMenuList li a:hover {
  background-color: var(--magnolia);
}

/***  Navigation Link Section ***/
.navArea {
  display: flex;
  flex: 1;
  padding: 0 0 0 76px;
}
.navSection {
  position: absolute;
  left: 0;
  top: 72px;
  width: 100%;
  height: 39px;
}
.headerFixed .navSection {
  position: relative;
  left: 0;
  top: 0;
}
.headerFixed .langMenuInfo,
.headerFixed .shareInfo {
  display: none;
}
.navBarInfo {
  display: flex;
  flex-direction: row;
  gap: 24px;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.navBarInfo li {
  display: flex;
  align-items: center;
}
.navLink {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  border-bottom: 3px solid var(--white);
}
.navLink:hover {
  color: var(--midnightExpress);
}
.navLink.active,
.navLink:hover {
  border-bottom: 3px solid var(--heliotrope);
}
.navDropdown {
  position: relative;
}
.navLink .navArrow {
  width: 10px;
  margin-left: 8px;
  transition: all 0.3s ease-in;
}
.navLink:hover .navArrow {
  transform: rotate(180deg);
}
.navDropdown:hover .navLink {
  border-bottom: 3px solid var(--heliotrope);
}
.navDropdown:hover .navArrow {
  transform: rotate(180deg);
}
.navDropdown:hover .navDropdownMenu {
  display: block;
}
.navDropdownMenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  width: 280px;
  background: var(--white);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  border-radius: 0 0 16px 16px;
  padding: 16px;
}

.dropdownMenuList {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.dropdownMenuList li {
  display: block;
}
.dropdownMenuList li:not(:last-child) {
  margin-bottom: 8px;
}
.dropdownMenuList li img {
  width: 16px;
  margin-right: 12px;
}
.dropdownMenuList li a {
  display: block;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  background-color: var(--white);
  border-radius: 12px;
  padding: 12px;
}
.dropdownMenuList li a:hover {
  background-color: var(--magnolia);
}

/***  ***/
.labSection {
  position: relative;
  z-index: 0;
}
.bannerImage {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.bannerImage img {
  object-fit: fill;
  width: 100%;
  height: 100%;
}
.labContainer {
  position: relative;
  top: 0;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
.labTitle {
  font-family: "Playfair Display";
  font-size: 64px;
  color: var(--midnightExpress);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
.labSubTitle {
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 48px;
}

.labListBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: 15px;
  padding: 32px;
  text-align: center;
}
.labListImage {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
}
.labListImage img {
  width: 100%;
}
.labListHeading {
  font-family: "Playfair Display";
  font-size: 20px;
  color: var(--midnightExpress);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.labListDetails {
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
}
.labListButtonInfo {
  display: flex;
  justify-content: center;
}
.labViewBtn {
  font-size: 14px;
  color: var(--heliotrope);
  font-weight: 500;
  line-height: 1.15;
}
.labViewBtn img {
  width: 6px;
  margin-left: 8px;
}
.labViewBtn:hover {
  text-decoration: underline;
}

/***  ***/

.newsSection {
  background: var(--white);
  padding: 40px 0;
}
.newsHeadRow {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.newsTitle {
  display: flex;
  flex: 1;
  font-family: "Playfair Display";
  font-size: 40px;
  color: var(--midnightExpress);
  font-weight: 700;
  line-height: 1.4;
}
.newsImageBox {
  width: 100%;
  height: 292px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.readDetails {
  display: flex;
  align-items: end;
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 136px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(180, 99, 255, 0) 0%, #b463ff 100%);
}

.newsListingBox {
  display: flex;
  width: 100%;
  height: 292px;
  overflow-y: scroll;
}
.newsItemList {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.newsItemList li {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
}
.newsItemList li:not(:last-child) {
  margin-bottom: 8px;
}
.newsItemList li:hover {
  background: var(--whiteSmoke);
}
.newsItemList li .newsItemHead {
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 8px;
}
.newsItemList li .newsItemDetails {
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
}
.viewMoreBtn::after {
  display: inline-block;
  content: "";
  margin-left: 6px;
  margin-top: 0;
  border-right: 2px solid var(--heliotrope);
  border-bottom: 2px solid var(--heliotrope);
  border-left: 0 none;
  border-top: 0 none;
  width: 8px;
  height: 8px;
  transition: transform 0.3s ease-in, margin 0.3s ease-in;
  transform: rotate(-45deg);
  vertical-align: middle;
}
.viewMoreBtn:hover::after {
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
/***  ***/
.featureSection {
  background: var(--white);
  padding: 40px 0;
}
.featureContainer {
  display: flex;
}
.feaItemData {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 12px;
  border-right: 1px solid var(--whisper);
}
.feaItemData:first-child {
  padding-left: 0;
}
.feaItemData:last-child {
  padding-right: 0;
  border-right: none;
}
.feaItemHeadRow {
  display: flex;
  margin-bottom: 8px;
}
.feaItemHeading {
  display: flex;
  flex: 1;
  font-family: "Playfair Display";
  font-size: 24px;
  color: var(--midnightExpress);
  font-weight: 700;
  line-height: 1.4;
}
.feaItemArrow {
  display: flex;
  align-items: center;
  width: 24px;
}
.feaItemArrow img {
  width: 100%;
}
.feaItemList {
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.4;
}
/***  Footer Section  ***/

footer {
  background: var(--midnightExpress);
  padding: 40px 0;
}
.footerTopRow {
  padding-bottom: 40px;
}
.footerLinkInfo {
  display: flex;
  gap: 40px;
}
.footerLinkInfo .footerLink {
  font-size: 12px;
  color: var(--white);
  line-height: 1.35;
}
.footerLinkInfo .footerLink:hover {
  color: var(--heliotrope);
}
.footerLinkInfo .footerLink:hover svg path {
  fill: var(--heliotrope);
}

.footerLogo {
  display: flex;
  justify-content: end;
}
.footerLogo img {
  width: 80px;
}
.footerBottomRow {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 40px;
}
.footerCopyText {
  font-size: 12px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
}
/*******************/
/***  ***/
.mobileMenuSection {
  position: fixed;
  width: 100%;
  top: 0;
  left: -100%;
  z-index: 999;
}
.mobileMenuSection.show {
  left: 0;
}
.mobileMenuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #000;
}
.mobileMenuBody {
  display: flex;
  position: fixed;
  left: -100%;
  top: 0;
  width: 300px;
  height: 100%;
  background: var(--white);
  overflow-y: auto;
  transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.mobileMenuSection.show .mobileMenuOverlay {
  opacity: 0.7;
  visibility: visible;
}
.mobileMenuSection.show .mobileMenuBody {
  left: 0;
}
.mobileMenuContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  flex: 1;
  padding: 16px;
  overflow-y: scroll;
  position: relative;
}
.closeMenuInfo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 990;
  width: 100%;
}
.closeMenu {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menuLinkInfo {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menuLinkInfo li {
  margin-bottom: 8px;
}
.menuLinkInfo li a {
  display: block;
  position: relative;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  background-color: var(--white);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}
.menuLinkInfo li a:hover,
.menuLinkInfo li a:active {
  background-color: var(--magnolia);
}
.accordion-item {
  border: none;
}
.menuLinkInfo li .accordion-item:last-child .accordion-button.collapsed {
  margin-bottom: 0;
}
.menuLinkInfo li .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;

  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  background-color: var(--white);
  border-radius: 12px !important;
  padding: 12px;
  text-align: left;
  border: 0;
  margin-bottom: 8px;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}
.menuLinkInfo li .accordion-button:hover {
  color: var(--midnightExpress);
  background-color: var(--magnolia);
}
.menuLinkInfo li .accordion-button:focus {
  box-shadow: none;
}
.menuLinkInfo li .accordion-button:not(.collapsed) {
  color: var(--midnightExpress);
  background-color: var(--magnolia);
  box-shadow: none;
}
.menuLinkInfo li .accordion-body {
  padding: 0;
}
.menu-expand-container {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  background: var(--white);
}
.menu-expand-container li a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  background-color: var(--white);
  border-radius: 12px !important;
  padding: 12px;
  cursor: pointer;
}
.menu-expand-container li a:hover {
  color: var(--midnightExpress);
  background-color: var(--magnolia);
}

.menu-expand-container li a img {
  width: 16px;
  margin-right: 12px;
}

/***  ***/
.mainContainer {
  background: var(--white);
  padding: 32px 0 40px;
}
.sideMenuInfo.sticky-top {
  top: 80px;
  z-index: 99;
}
.sideMenuInfo .accordion-item {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--whisper);
  box-shadow: 0px 4px 12px 0px #00000014;
  margin-bottom: 16px;
}
.sideMenuInfo .accordion-button {
  font-family: "Playfair Display";
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 700;
  line-height: 1.4;
  padding: 0;
  padding-inline: 0;
}
.sideMenuInfo .accordion-button::after {
  display: none;
}
.sideMenuInfo .accordion-button .accordion-button-label {
  flex: 1;
}
.sideMenuInfo .accordion-button img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.sideMenuInfo .accordion-button .sideMeArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 20px;
  background: var(--whisper);
}
.sideMenuInfo .accordion-button .sideMeArrow::after {
  display: inline-block;
  content: "";
  margin-top: -3px;
  border-right: 2px solid var(--midnightExpress);
  border-bottom: 2px solid var(--midnightExpress);
  border-left: 0 none;
  border-top: 0 none;
  width: 8px;
  height: 8px;
  transition: transform 0.3s ease-in, margin 0.3s ease-in;
  transform: rotate(45deg);
}

.sideMenuInfo .accordion-button:hover {
  color: var(--midnightExpress);
  background-color: var(--white);
}
.sideMenuInfo .accordion-button:focus {
  box-shadow: none;
}
.sideMenuInfo .accordion-button:not(.collapsed) {
  color: var(--midnightExpress);
  background-color: var(--white);
  box-shadow: none;
}
.sideMenuInfo .accordion-button:not(.collapsed) .sideMeArrow::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.sideMenuInfo .accordion-body {
  padding: 0;
}
.sideMenu-expand-container {
  margin: 8px 0 0;
  padding: 0;
  list-style-type: none;
}
.sideMenu-expand-container li a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  background-color: var(--white);
  padding: 8px 24px;
  cursor: pointer;
}
.sideMenu-expand-container li a:hover,
.sideMenu-expand-container li a.active {
  color: var(--heliotrope);
  font-weight: 500;
  background-color: var(--white);
}
.sideMenu-sub-expand-info {
  margin: 0 0 0 24px;
  padding: 2px 0;
  list-style-type: none;
  border-left: 2px solid var(--whisper);
}
.sideMenu-sub-expand-info li a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  background-color: var(--white);
  padding: 6px 16px;
  cursor: pointer;
}
.sideMenu-sub-expand-info li a:hover,
.sideMenu-sub-expand-info li a.active {
  color: var(--heliotrope);
  font-weight: 500;
  background-color: var(--white);
}

.breadcrumbSection {
  width: 100%;
  display: flex;
  margin-bottom: 16px;
}
.breadcrumbSection .breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.breadcrumbSection .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--eclipse);
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
}
.breadcrumbSection .breadcrumb-item:not(:first-child) {
  margin-left: 8px;
}
.breadcrumbSection .breadcrumb-item a {
  font-size: 14px;
  color: var(--eclipse);
  font-weight: 400;
  line-height: 1.2;
}

.breadcrumbSection .breadcrumb-item a:hover {
  font-weight: 500;
}
.breadcrumbSection .breadcrumb-item.active {
  font-weight: 500;
}
.breadcrumb-bgItem {
  background: var(--whiteSmoke);
  border-radius: 4px;
  padding: 8px 6px 8px 12px !important;
  margin-right: 10px;
  position: relative;
}
.breadcrumb-bgItem::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 12px solid var(--whiteSmoke);
  border-right: 0;
  display: inline-block;
  position: absolute;
  top: 0;
  right: -10px;
}

.truncate-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
/***********************/
.navTabsSection {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.navTabsInfo {
  background: var(--white);
  border-bottom: 1px solid var(--whisper);
}
.navTabsSection .navTabsInfo.sticky-top {
  padding-top: 16px;
  top: 64px;
  z-index: 99;
}
.navTabsSection .nav-tabs {
  background: var(--white);
  border-bottom: none;
}
.navTabsSection .nav-tabs .nav-item:not(:first-child) {
  margin-left: 8px;
}
.navTabsSection .nav-tabs .nav-link {
  font-size: 16px;
  color: var(--eclipse);
  font-weight: 400;
  line-height: 1.2;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
  border: none;
  white-space: nowrap;
}
.navTabsSection .nav-tabs .nav-link.active {
  font-weight: 500;
  background: var(--whisper);
  border-bottom: 3px solid var(--heliotrope);
}
.tabContentSection {
  padding-top: 16px;
}
.tabContentSection p {
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}
.tabContentSection p:not(:last-child) {
  padding-bottom: 16px;
}

.navVariable .slick-prev::before {
  display: inline-block;
  content: "";
  margin-top: -3px;
  margin-left: 4px;
  border-right: 2px solid var(--midnightExpress);
  border-bottom: 2px solid var(--midnightExpress);
  border-left: 0 none;
  border-top: 0 none;
  width: 8px;
  height: 8px;
  transition: transform 0.3s ease-in, margin 0.3s ease-in;
  transform: rotate(135deg);
}
.navVariable .slick-next::before {
  display: inline-block;
  content: "";
  margin-top: -3px;
  margin-right: 4px;
  border-right: 2px solid var(--midnightExpress);
  border-bottom: 2px solid var(--midnightExpress);
  border-left: 0 none;
  border-top: 0 none;
  width: 8px;
  height: 8px;
  transition: transform 0.3s ease-in, margin 0.3s ease-in;
  transform: rotate(-45deg);
}
.fixedBottomBtn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: auto;
  height: 48px;
  font-size: 16px;
  color: var(--heliotrope);
  font-weight: 500;
  line-height: 1.2;
  background: var(--white);
  padding: 14px 16px;
  border-radius: 32px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
}
.fixedBottomBtn span {
  margin-right: 8px;
}
.fixedBottomBtn img {
  width: 16px;
  height: 16px;
  transform: all 300ms ease-in-out;
  transform: rotate(45deg);
}
.fixedBottomBtn.showExpand img {
  transform: rotate(0deg);
}

/*** From Section ***/
.sectionArea {
  width: 100%;
}
.formDetails {
  width: 100%;
  padding-top: 24px;
}
.formRow {
  padding-bottom: 24px;
}
.formLabel {
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.3;
}
.formInput {
  width: 100%;
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--pattensBlue);
}
.formInput:invalid,
.formInput.input-error {
  border: 1px solid var(--amaranth);
}
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 9;
  pointer-events: none;
  margin-top: -3px;
  border-right: 1.5px solid var(--midnightExpress);
  border-bottom: 1.5px solid var(--midnightExpress);
  border-left: 0 none;
  border-top: 0 none;
  width: 8px;
  height: 8px;
  transition: transform 0.3s ease-in;
  transform: rotate(45deg) translateY(-50%);
}
.formSelect {
  width: 100%;
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
  padding: 10px 32px 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--pattensBlue);
  cursor: pointer;
}
.formSelect::placeholder {
  color: var(--suvaGrey);
}
.formSelect.select-error {
  border: 1px solid var(--amaranth);
}

.formAsterik {
  color: var(--amaranth);
}
.formCheckbox {
  width: 20px;
  height: 20px;
  border: 1px solid var(--pattensBlue);
  outline: 1px solid var(--pattensBlue);
}
.errorMesg {
  font-size: 14px;
  color: var(--amaranth);
  font-weight: 400;
  line-height: 2;
}
.subCheckbox-row {
  margin: 12px 0 0 32px;
}
/*** End From Section ***/
/** Custom Input **/
.formCheckbox-wrapper {
  margin-bottom: 0;
  display: block;
  position: relative;
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.4;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.formCheckbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/*** Create a custom checkbox ***/
.formCheckbox-wrapper .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: var(--white);
  border: 1px solid var(--pattensBlue);
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.formCheckbox-wrapper:hover input ~ .checkmark {
  background: var(--white);
}

/* When the checkbox is checked, add a blue background */
.formCheckbox-wrapper input:checked ~ .checkmark,
.formCheckbox-wrapper:active input ~ .checkmark {
  background: var(--ceruleanBlue);
  border: 1px solid var(--ceruleanBlue);
}

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

/* Show the checkmark when checked */
.formCheckbox-wrapper input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.formCheckbox-wrapper .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.formCheckbox-wrapper:active input ~ .checkmark:after {
  display: block;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.textImageBox {
  display: flex;
  align-items: center;
}
.textImgInfo {
  width: 103px;
  height: 40px;
}
.refreshBtn {
  display: inline-flex;
  margin-left: 8px;
  cursor: pointer;
}
.refreshBtn img {
  width: 25px;
}
.declarationInfo {
  display: flex;
  border-radius: 12px;
  background: var(--whiteSmoke1);
  padding: 12px;
}
.decl-img {
  width: 16px;
  margin-right: 8px;
}
.decl-details {
  flex: 1;
  font-size: 14px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.5;
}
.decl-details a {
  color: var(--heliotrope);
}
.decl-details a:hover {
  color: var(--heliotropeDark);
  text-decoration: underline;
}

/*** ***/
.forgotBtn {
  font-size: 16px;
  color: var(--heliotrope);
  font-weight: 500;
  line-height: 1.2;
}
.forgotBtn:hover {
  color: var(--heliotropeDark);
  text-decoration: underline;
}
.createAccountInfo {
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 32px;
  border-top: 1px solid var(--whisper);
  padding-top: 32px;
}
.createAccBtn {
  font-size: 16px;
  color: var(--heliotrope);
  font-weight: 400;
  line-height: 1.2;
}
.createAccBtn:hover {
  color: var(--heliotropeDark);
  text-decoration: underline;
}

/***  ***/
.faqTabContent {
  padding-top: 4px;
}
.faqAccordionSection {
  width: 100%;
}

.faqAccordionSection .accordion-item {
  border-bottom: 1px solid #0203371a;
}
.faqAccordionSection .accordion-button {
  font-size: 18px;
  color: var(--midnightExpress);
  font-weight: 500;
  line-height: 1.3;
  padding: 20px 0;
  padding-inline: 0;
}
.faqAccordionSection .accordion-button::after {
  display: none;
}
.faqAccordionSection .accordion-button .faqCollTitle {
  flex: 1;
  padding-right: 10px;
}
.faqAccordionSection .accordion-button .faqCollIcon {
  display: flex;
  width: 16px;
  height: 16px;
  position: relative;
}
.faqAccordionSection .accordion-button .faqCollIcon::after,
.faqAccordionSection .accordion-button .faqCollIcon::before {
  content: "";
  position: absolute;
  background-color: var(--black);
  transition: transform 0.25s ease-out;
}
.faqAccordionSection .accordion-button .faqCollIcon::before {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}
.faqAccordionSection .accordion-button .faqCollIcon::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.faqAccordionSection .accordion-button:hover {
  color: var(--midnightExpress);
  background-color: var(--white);
}
.faqAccordionSection .accordion-button:focus {
  box-shadow: none;
}
.faqAccordionSection .accordion-button:not(.collapsed) {
  color: var(--midnightExpress);
  background-color: var(--white);
  box-shadow: none;
}
.faqAccordionSection .accordion-button:not(.collapsed) .faqCollIcon::before {
  transform: rotate(90deg);
}
.faqAccordionSection .accordion-button:not(.collapsed) .faqCollIcon::after {
  transform: rotate(180deg);
}

.faqAccordionSection .accordion-body {
  padding: 4px 0 0;
}
.faqDataDetails {
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.2;
}
.faqDataDetails p {
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.7;
  padding-bottom: 24px !important;
}
.accordionHeading {
  display: flex;
  font-weight: 500;
  padding-bottom: 8px;
}
/*** ***/
.performanceTabContent {
  padding-top: 24px;
}
/***   ***/
.subnavTabsSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.subnavTabsInfo {
  width: 100%;
  display: flex;
  background: var(--white);
}
.subnavTabsInfo .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  background: var(--white);
  border-bottom: none;
}
.subnavTabsInfo .nav-tabs .nav-item {
  margin: 0;
}
.subnavTabsInfo .nav-tabs .nav-item:not(:last-child) {
  margin-left: 0;
  margin-right: 8px;
}
.subnavTabsInfo .nav-tabs .nav-item:last-child {
  margin-left: 0;
}
.subnavTabsInfo .nav-tabs .nav-link {
  font-size: 14px;
  color: var(--heliotrope);
  font-weight: 500;
  line-height: 1.2;
  background: var(--magnolia);
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  white-space: nowrap;
}
.subnavTabsInfo .nav-tabs .nav-link.active {
  color: var(--white);
  background: var(--heliotrope);
  border: none;
}
.subnavTabsSection .tabContentSection {
  padding-top: 24px;
}

.currencyInfo {
  display: flex;
}
.currencyInfo .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 9;
  pointer-events: none;
  margin-top: -3px;
  border-right: 1px solid var(--midnightExpress);
  border-bottom: 1px solid var(--midnightExpress);
  border-left: 0 none;
  border-top: 0 none;
  width: 6px;
  height: 6px;
  transition: transform 0.3s ease-in;
  transform: rotate(45deg) translateY(-50%);
}
.currencyInfo .formSelect {
  width: 100%;
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.15;
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 20px 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--pattensBlue);
  cursor: pointer;
}
/*** ***/
.perforTableSection {
  width: 100%;
  padding-bottom: 16px;
}
.sectionBox {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0px 4px 16px 0px #00000014;
}
.tableTitle {
  font-size: 18px;
  color: var(--midnightExpress);
  font-weight: 500;
  line-height: 1.2;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 16px;
}
.perforTableBox {
  width: 100%;
  display: flex;
}
.perforTableInfo {
  width: 100%;
  display: flex;
  overflow: hidden;
  overflow-x: scroll;
}
.tableInfo {
  width: 1020px;
  border: 1px solid var(--pattensBlue);
}
.tableInfo thead {
  background: var(--whiteSmoke);
}
.tableInfo th,
.tableInfo td {
  min-width: 90px;
  font-size: 16px;
  color: var(--midnightExpress);
  line-height: 1.3;
  padding: 8px 12px;
  word-break: break-word;
}
.tableInfo th:not(:first-child),
.tableInfo td:not(:first-child) {
  border-left: 1px solid var(--pattensBlue);
}
.tableInfo tr:not(:first-child) {
  border-top: 1px solid var(--pattensBlue);
}
.tableInfo td.dropData {
  color: var(--amaranth);
}
/***   ***/
.perforTabDetailInfo {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.perforTabDetailRow {
  width: 100%;
  display: flex;
  font-size: 16px;
  color: var(--midnightExpress);
  font-weight: 400;
  line-height: 1.3;
  background: var(--white);
  border-top: 1px solid var(--pattensBlue);
}
.linkSection {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.linkItemInfo {
  display: flex;
  margin: 24px 0;
  padding: 0;
  list-style-type: none;
  flex-wrap: wrap;
}
.linkItemInfo li {
  display: flex;
  padding: 0 8px;
  border-right: 1px solid var(--pattensBlue);
}
.linkItemInfo li:last-child {
  padding: 0 0 0 8px;
  border-right: none;
}
.linkItemInfo li a {
  display: flex;
  font-size: 14px;
  color: var(--heliotrope);
  font-weight: 400;
  line-height: 1.2;
}
.linkItemInfo li a:hover {
  color: var(--heliotropeDark);
}
/***  ***/
.chartHeadingInfo {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 24px;
}
.chartTitle {
  display: flex;
  flex: 1;
  font-size: 18px;
  color: var(--midnightExpress);
  font-weight: 500;
  line-height: 1.2;
}

.chartBox {
  width: 100%;
  height: 281px;
  margin-bottom: 12px;
}
.chartBox img {
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  body {
    padding-top: 64px;
  }
  .mobileData {
    display: block;
  }
  .mobileHide {
    display: none !important;
  }
  .header {
    height: 64px;
  }
  .headerFixed .headerTopRow {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .headerTopRow {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .navArea {
    display: none;
  }
  .topLinkInfo {
    flex: 1;
  }
  .navBarInfo {
    gap: 12px;
  }
  .navLink {
    font-size: 12px;
  }
  .labContainer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .labSubTitle {
    margin-bottom: 24px;
  }
  .labListBox {
    padding: 24px;
  }
  .newsSection {
    padding: 32px 0;
  }
  .newsTitle {
    font-size: 34px;
  }
  .feaItemHeading {
    font-size: 22px;
  }
  .truncate-text {
    max-width: 200px;
  }
  .navVariable {
    margin: 0 20px;
  }
  .pg-title {
    font-size: 34px;
  }
  .currencyInfo {
    display: inline-block;
  }
  .perforTag {
    margin-bottom: 10px;
  }
  .subnavTabsInfo .nav-tabs .nav-link {
    margin-bottom: 10px;
  }
  .monthlyTable td:first-child,
  .monthlyTable th:first-child {
    display: block;
    width: 200px;
  }
  .chartBox {
    height: auto;
  }
  .signBtnInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .signBtnInfo .forgotBtn {
    display: flex;
    margin-top: 24px;
    margin-left: 0;
  }
}

@media screen and (min-width: 1920px) {
  .container {
    max-width: 1680px;
  }
}
@media screen and (max-width: 1400px) {
  .navArea {
    padding: 0 0 0 54px;
  }
  .hide12 {
    display: none !important;
  }
}

@media screen and (max-width: 1200px) {
  .navArea {
    padding: 0 0 0 54px;
  }
  .hide12 {
    display: none !important;
  }
}

@media screen and (max-width: 992px) {
  body {
    padding-top: 64px;
  }
  .mobileData {
    display: block;
  }
  .mobileHide {
    display: none !important;
  }
  .header {
    height: 64px;
  }
  .headerFixed .headerTopRow {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .headerTopRow {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .navArea {
    display: none;
  }
  .topLinkInfo {
    flex: 1;
  }
  .navBarInfo {
    gap: 20px;
  }
  /* .labContainer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .labSubTitle {
    margin-bottom: 24px;
  }
  .labListBox {
    padding: 24px;
  } */
  .newsSection {
    padding: 32px 0;
  }
  .newsTitle {
    font-size: 34px;
  }
  .feaItemHeading {
    font-size: 22px;
  }
  .pg-title {
    font-size: 34px;
  }
}

@media screen and (min-width: 310px) and (max-width: 767px) {
  body {
    padding-top: 64px;
  }
  .mobileData {
    display: block;
  }
  .mobileHide {
    display: none !important;
  }
  .header {
    height: 64px;
  }
  .headerFixed .headerTopRow {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .headerTopRow {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .navArea {
    display: none;
  }
  .topLinkInfo {
    gap: 8px;
    flex: 1;
  }
  .logoArea {
    width: 80px;
    height: 32px;
  }
  .topLinkInfo .default-btn {
    line-height: 1;
    padding: 8px 13px;
  }
  .topLinkInfo .outline-btn {
    line-height: 1;
    padding: 8px 11px;
  }
  .labContainer {
    padding: 24px;
  }

  .labTitle {
    font-size: 32px;
  }
  .labSubTitle {
    margin-bottom: 16px;
  }
  .labListBox {
    padding: 16px;
    margin-bottom: 16px;
  }
  .labListImage {
    width: 34px;
    height: auto;
    margin-bottom: 8px;
  }

  .navTabsSection .navTabsInfo.sticky-top {
    padding-top: 8px;
  }
  .subnavTabsInfo .nav-tabs {
    flex-wrap: nowrap;
    overflow-y: auto;
  }
  .navTabsSection .nav-tabs .nav-link {
    padding: 8px;
    font-weight: 12px;
  }

  .labListHeading {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .labListDetails {
    display: none;
  }

  .newsSection {
    padding: 32px 0;
  }
  .newsHeadRow {
    margin-bottom: 16px;
    padding-left: 17px;
    padding-right: 17px;
  }
  .newsTitle {
    font-size: 24px;
  }

  .newsImageBox {
    width: calc(100% - 34px);
    margin-left: 17px;
    margin-right: 17px;
    margin-bottom: 16px;
  }

  .newsMobileView .outline-btn {
    width: calc(100% - 34px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 17px;
    margin-right: 17px;
  }

  .newsListingBox {
    padding-left: 17px;
    padding-right: 17px;
    margin-bottom: 16px;
  }

  .featureSection {
    padding: 0 0 32px;
  }
  .featureContainer {
    display: flex;
    flex-direction: column;
  }
  .feaItemData {
    padding: 16px 0;
    margin: 0 17px;
    border-right: none;
    border-bottom: 1px solid var(--whisper);
  }
  .feaItemData:first-child {
    padding-top: 0;
    padding-left: 0;
    border-right: none;
  }
  .feaItemData:last-child {
    padding-right: 0;
    padding-bottom: 0;
    border-right: none;
    border-bottom: none;
  }
  .feaItemHeading {
    font-size: 18px;
  }
  .feaItemList {
    font-size: 14px;
  }

  footer {
    padding: 24px 0;
  }
  .footerTopRow {
    padding-left: 17px;
    padding-right: 17px;
    padding-bottom: 16px;
  }

  .footerLinkInfo {
    gap: inherit;
    margin-bottom: 16px;
  }
  .footerLinkInfo .footerLink {
    display: flex;
    align-items: center;
    flex: 1;
  }

  .footerLogo {
    justify-content: flex-start;
  }
  .footerBottomRow {
    border-top: none;
    padding-top: 0;
  }
  .footerCopyText {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 16px;
    margin-left: 17px;
    margin-right: 17px;
  }
  .truncate-text {
    max-width: 100px;
  }
  .navVariable {
    margin: 0 24px;
  }
  .navVariable .slick-prev {
    margin-top: 2px;
    margin-left: 2px;
  }
  .navVariable .slick-next {
    margin-top: 2px;
    margin-right: 2px;
  }

  .mainContainer {
    padding: 24px 0;
  }
  .mainContainer .mobContInfo,
  .mainContainer .mobContColInfo {
    padding: 0;
  }
  .mainContainer .mobContRow {
    margin: 0;
  }
  .sideMenuInfo .accordion-item {
    border-radius: 12px;
    box-shadow: none;
  }
  .sideMenuInfo {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 999;
    width: calc(100% - 48px);
    max-height: calc(100% - 100px);
    background: var(--white);
    padding: 14px 16px;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
    /* overflow: hidden;
    overflow-y: scroll; */
  }
  .sideMenuBoxInfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: scroll;
  }
  .mobileMenuModal {
    display: flex;
  }
  .sideMenuInfo.sticky-top {
    top: inherit;
    z-index: 999;
  }
  .breadcrumbSection {
    padding: 0 24px;
  }
  .tabContentSection {
    padding: 16px 24px 0;
  }
  .fixedBottomBtn {
    display: block;
  }
  .sectionArea {
    padding: 0 24px;
  }
  .pg-title {
    font-size: 24px;
  }
  .formLabel {
    padding-bottom: 12px;
  }
  .textImageBox {
    justify-content: center;
  }
  .signUpBtn {
    width: 100%;
    font-size: 18px;
    justify-content: center;
  }
  .forgotBtn {
    display: flex;
    justify-content: center;
    margin: 24px 0 0;
  }

  .faqAccordionSection .accordion-button {
    font-size: 16px;
    padding: 16px 0;
  }

  .faqDataDetails {
    font-size: 14px;
  }
  .faqDataDetails p {
    font-size: 14px;
    padding-bottom: 18px !important;
  }

  .subnavTabsInfo {
    flex-direction: column;
  }
  .subnavTabsInfo .nav-tabs .nav-link {
    margin-bottom: 10px;
  }

  .select-wrapper {
    width: 100%;
  }
  .subnavTabsSection .tabContentSection {
    padding: 24px 0 0;
  }
  .monthlyTable td:first-child,
  .monthlyTable th:first-child {
    display: block;
    width: 200px;
  }
  .performanceTable td:first-child,
  .performanceTable th:first-child {
    display: block;
    width: 140px;
  }
  .statisticsTable td:first-child,
  .statisticsTable th:first-child {
    display: block;
    width: 160px;
  }
  .correlationsTable td:first-child,
  .correlationsTable th:first-child {
    display: block;
    width: 150px;
  }
  .linkSection {
    justify-content: center;
  }
  .linkItemInfo {
    flex-direction: column;
  }
  .linkItemInfo li {
    padding: 4px 8px;
    justify-content: center;
    border-right: none;
  }
  .linkItemInfo li:last-child {
    padding: 4px 8px;
    border-right: none;
  }
  .chartBox {
    height: auto;
  }
  .chartHeadingInfo {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .chartHeadingInfo,
  .tableTitle {
    padding-left: 12px;
    padding-right: 12px;
  }
  .chartTitle {
    margin-bottom: 16px;
  }
  .perforCurrencyInfo {
    width: 100%;
  }
}

#chartdiv {
  width: 100%;
  height: 80vh;
}