article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: 400ms all ease-in-out;
  -o-transition: 400ms all ease-in-out;
  transition: 400ms all ease-in-out;

  text-decoration: none;
  font-style: normal;
}

button {
  border: none;
}

a:hover,
a:focus,
button:focus,
input:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
  text-decoration: none;
}

:focus-visible {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a,
label,
span {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: 400ms all ease-in-out;
  -o-transition: 400ms all ease-in-out;
  transition: 400ms all ease-in-out;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

a {
  cursor: pointer;
  color: var(--primary-color);
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

b,
strong {
  font-weight: 700;
}

:root {
  --primary_font: "Roboto", sans-serif;
  --transition: 400ms all ease-in-out;
  --white: #fff;
  --black: #000;
  --sec_bg: #0B0D1F;
  --primary-color: #C8A96E;
  --button-color: #CCAB64;
  --globe-base: min(70vw, 70vh);
}

body {
  font-family: var(--primary_font);
  font-size: 14px;
  line-height: 1.7;
  color: #000;
  padding-top: 100px;
  font-weight: 500;
}

h1 {
  font-size: 64px;
  line-height: 1.125;
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: 800;
}

h2 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  font-weight: 400;
}

h3 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: 400;
}


/* =========================== Button =========================== */

.primary_btn,
.border_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all .35s ease;
}

/* Hover Lift */
.primary_btn:hover,
.border_btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.primary_btn{
    background: var(--button-color);
    border:1px solid var(--button-color);
    color: var(--black);
}

.primary_btn::before{
    content:"";
    position:absolute;
    inset:0;
    width:0;
    background:var(--black);
    transition:width .35s ease;
    z-index:-1;
}

.primary_btn:hover::before{
    width:100%;
}

.primary_btn:hover{
    color:var(--button-color);
    background-color: var(--white);
}

.primary_btn.white{
    background:var(--white);
    border-color:var(--white);
    color:var(--black);
}

.primary_btn.white::before{
    background:var(--black);
}

.primary_btn.white:hover{
    color:var(--white);
}

.primary_btn.red{
    background:var(--button-color);
    border-color:var(--button-color);
}

.primary_btn.red::before{
    background:var(--white);
}

.primary_btn.red:hover{
    color:var(--button-color);
}

.border_btn{
    background:var(--white);
    border:1px solid var(--button-color);
    color:var(--black);
}

.border_btn::before{
    content:"";
    position:absolute;
    inset:0;
    width:0;
    background:var(--button-color);
    transition:width .35s ease;
    z-index:-1;
}

.border_btn:hover::before{
    width:100%;
}

.border_btn:hover{
    color:var(--black);
}

/* =========================== Button =========================== */

/* frm_orbt_sec */
.frm_orbt_sec {
  padding: 100px 0 25px;
  min-height: 800px;
  position: relative;
  z-index: 1;
  background-color: var(--sec_bg);
  display: flex;
  flex-direction: column;
}

/* .frm_orbt_sec::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 6px solid var(--white);
  border-left-color: transparent;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  z-index: -1;
  animation: rotateload 2s infinite linear;
} */

@keyframes rotateload {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sec_tle {
  text-align: center;
}

.sec_tle h6 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--white);
}

.orbt_cnct_bx {
  padding: 32px 24px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.32);
  max-width: 370px;
}

.orbt_cnct_bx_cntnr {
  position: absolute;
  bottom: 180px;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  max-width: 1390px;
  padding: 0 15px;
  margin: 0 auto;
}

.orbt_cnct_bx h3 {
  margin-bottom: 20px;
  font-size: 28px;
}

.orbt_cnct_bx p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
  margin-bottom: 24px;
}

.lrn_btn {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  /* font-family: var(--title_font); */
  color: var(--white);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  position: relative;
}

.lrn_btn::after {
  content: "";
  display: block;
  margin-left: 8px;
  background: url(../images/lrnbtn_arw.svg) no-repeat center;
  width: 9px;
  height: 9px;
}

.lrn_btn::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  right: 17px;
  bottom: -3px;
  background-color: var(--white);
  transition: var(--transition);
}

.lrn_btn:hover::before {
  width: calc(100% - 17px);
  right: unset;
  left: 0;
}

.frm_orbt_sec .nav {
  justify-content: center;
  gap: 8px 4px;
  max-width: 1080px;
  margin: 100px auto 0;
}

.orbt_tb_sec .nav_link {
  height: 64px;
  padding: 4px 24px;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
  color: var(--white);
  /* font-family: var(--title_font); */
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 50px;
  z-index: 1;
  transition: var(--transition);
}

/* .orbt_tb_sec .nav_link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
} */

.orbt_tb_sec .nav_link:hover,
.orbt_tb_sec .nav_link.active {
  /* background-color: var(--white); */
  background-color: rgb(255 255 255 / 60%);
  color: var(--black);
}

.orbt_cnct_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  opacity: 0;
  visibility: hidden;
  inset: 0;
  z-index: 1;
}

.orbt_cnct_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Show only two centered orbit buttons; prevent marquee duplication */
.orbt_tb_sec {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  overflow: hidden;
  width: 100%;
}

.orbt_tb_sec .marquee-track {
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform 300ms ease;
}

.orbt_tb_sec .nav_link {
  min-width: 220px;
  flex: 0 0 auto;
  text-align: center;
}

/* Make the two center pills visually prominent */
.orbt_tb_sec .nav_link:not(:nth-child(1)):not(:nth-child(2)) {
  opacity: 0.6;
}

.orbt_cnct_bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgb(11, 13, 31) 20%, rgba(11, 13, 31, 0) 100%);
  backdrop-filter: blur(5px);
  /* background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 10%,
      rgba(0, 0, 0, 0) 20%,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0.2) 85%,
      rgba(0, 0, 0, 0.6) 100%); */
}


.orbt_cnct_bg::after{
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: #000;
  background: linear-gradient(  180deg,  rgba(0, 0, 0, 0) 0%,  rgba(0, 0, 0, 0.02) 10%,  rgba(0, 0, 0, 0.08) 30%,  rgba(0, 0, 0, 0.25) 50%,  rgba(0, 0, 0, 0.55) 70%,  rgba(0, 0, 0, 1) 100%);
}

.frm_orbt_sec .sec_tle h2 {
  font-size: 64px;
  line-height: 1.125;
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: 400;
}

/* frm_orbt_sec */

/* capablty_sec */

.capablty_sec {
  padding: 100px 0;
}

.sec_ttle {
  margin-bottom: 50px;
  max-width: 550px;
}

.sec_ttle p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.4;
}

.cap_bx_wrrpr {
  display: flex;
  flex-wrap: wrap;
}

.cap_info_bx {
  flex: 0 0 auto;
  width: 25%;
  border-left: 1px solid #ededed;
  position: relative;
}

.cap_info_bx::after,
.cap_info_bx::before {
  top: 0;
  left: -0.5px;
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border: 0 solid var(--primary-color);
  border-width: 1px 0 0 1px;
}

.cap_info_bx::after {
  border-width: 0 0 1px 1px;
  top: unset;
  bottom: 0;
}

.cap_bx_wrrpr .cap_info_bx:last-of-type,
.cap_bx_wrrpr .cap_info_bx:nth-of-type(4n) {
  border-right: 1px solid #ededed;
}

.cap_info_innr {
  padding: 40px 24px 32px;
  display: flex;
  height: 100%;
  flex-direction: column;
  position: relative;
}

.cap_info_innr::after,
.cap_info_innr::before {
  top: 0;
  right: -1px;
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border: 0 solid var(--primary-color);
  border-width: 1px 1px 0 0;
}

.cap_info_innr::after {
  border-width: 0 1px 1px 0;
  top: unset;
  bottom: 0;
}

.cap_info_innr h6 {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-family: var(--primary_font);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cap_info_innr h4 {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.cap_info_innr p {
  color: #999999;
  padding-top: 70px;
}

/* capablty_sec */

/* elveigh_sec */

.elveigh_sec {
  padding: 400px 0;
  position: relative;
  margin-top: -160px;
  margin-bottom: -200px;
}

.elveigh_sec::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  background: url(../images/elveigh_bgtop2.png) no-repeat bottom / 100% 100%;
}

.elveigh_sec::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 550px;
  background: url(../images/elveigh_bgbtm2.png) no-repeat top / 100% 100%;
  z-index: -1;
}

.elveigh_sec_cnct {
  /* background-color: var(--black);
  position: relative; */
  padding-bottom: 20px;
}

.elveigh_sec_cnct::before {
  position: absolute;
  content: "";
  height: calc(100% - 800px);
  background-color: var(--sec_bg);
  top: 400px;
  left: 0;
  width: 100%;
  z-index: -1;
}

#solutions{
  scroll-margin-top: 100px;
}

.elvt_ttle {
  text-align: center;
  margin-bottom: 160px;
  position: relative;
}

.elvt_ttle sup {
  top: -0.9em;
  font-size: 0.5625em;
}

.elvt_ttle p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

.elvt_ttle p+p {
  margin-top: 0;
}

.elvt_ttle a {
  margin-top: 32px;
}

.sol_tb_mn .nav {
  width: fit-content;
  padding: 4px;
  background-color: #10142D;
  border-radius: 50px;
  gap: 4px;
  margin-bottom: -56px;
  margin-left: 35px;
  position: sticky;
  top: 10px;
  z-index: 1;
}

.sol_tb_mn .nav .nav_link {
  height: 48px;
  padding: 0 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background-color: transparent;
  border: none;
}

.sol_tb_mn .nav .nav_link:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.sol_tb_mn .nav .nav_link.active {
  /* background-color: var(--white); */
  color: var(--sec_bg);
}

.sol_tb_mn .nav_slider {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: calc(100% - 8px);
  background: var(--button-color);
  transition: all .3s ease;
  border-radius: 50px;
  z-index: -1;
}

.sol_tab_wrp {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.sol_tab_wrp .sol_tab_lft {
  flex: 0 0 auto;
  width: 480px;
  padding-top: 160px;
  position: sticky;
  top: -60px;
}

.sol_tab_wrp .sol_tab_lft p {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  font-weight: 500;
  /* font-family: var(--title_font); */
  max-width: 400px;
  margin: -80px auto 0;
}

.sol_tab_wrp .sol_tab_rgt {
  width: 0;
  flex-grow: 1;
}

.sol_rgt_ttle h2 {
  color: var(--white);
  margin-bottom: 40px;
}

.sol_rgt_ttle p {
  color: rgba(255, 255, 255, 0.64);
  padding-right: 10px;
  /* font-size: 16px; */
}

.sol_lstngs ul {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px 16px;
}

.sol_lstngs ul li {
  flex: 0 0 auto;
  width: calc((100% - 32px) / 3);
}

.sol_lst_itm {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 24px;
  border-top: 2px solid var(--white);
  align-items: flex-start;
  gap: 20px;
}

.sol_lst_itm h4 {
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
  font-weight: 400;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; */
  max-width: 230px;
}

.sol_lst_itm p {
  color: #999;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sol_lst_itm .lrn_btn {
  text-transform: none;
  margin-top: auto;
}

.lrn_btn.no_arw::after {
  display: none;
}

.lrn_btn.no_arw::before {
  width: 100%;
  right: unset;
  left: 0;
}

.lrn_btn.no_arw:hover::before {
  right: 0;
  left: unset;
  width: 0;
}

/* elveigh_sec */

/* our_wrk_sec */

.our_wrk_sec {
  padding: 120px 0;
  position: relative;
}

.ourwrk_ttl {
  font-size: 16px;
  line-height: 1.75;
}

.ourwrk_ttl::after {
  margin: 48px auto 0;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  width: calc(100% - 24px);
  height: 1px;
}

.team_sldr.slick-dotted.slick-slider,
.work_sldr.slick-dotted.slick-slider {
  margin-bottom: 0;
  padding-top: 40px;
  margin-left: -12px;
  margin-right: -12px;
}

.work_sldr .slick-track {
  display: flex;
}

.team_sldr .slick-arrow.slick-disabled,
.work_sldr .slick-arrow.slick-disabled {
  opacity: 0.2;
  cursor: auto;
}

.work_sldrinnr .img_wrp {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.work_sldrinnr .img_wrp img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.work_sldrinnr .cnct_wrp h6 {
  font-size: 12px;
  line-height: 1;
  color: var(--primary-color);
  font-weight: 500;
  font-family: var(--primary_font);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.work_sldrinnr .cnct_wrp h4 {
  font-size: 20px;
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 20px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
}

.work_sldrinnr .cnct_wrp p {
  color: #999;
  margin-bottom: 24px;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 20px;
  /* text-transform: capitalize; */
}

.work_sldrinnr .cnct_wrp a {
  margin-top: auto;
  color: var(--black);
}

.lrn_btn_dark::before {
  background-color: var(--black);
  width: calc(100% - 17px);
  right: unset;
  left: 0;
}

.lrn_btn_dark:hover::before {
  right: 17px;
  left: unset;
  width: 0;
}


.lrn_btn_dark.no_arw::before {
  width: 100%;
}

.lrn_btn_dark.no_arw:hover::before {
  right: 0;
}

.lrn_btn_dark::after {
  filter: brightness(0) saturate(100%)
}

.work_sldrinnr {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 5px;
}

.work_sldrinnr .cnct_wrp {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.work_sldr_itm {
  padding: 0 12px;
  height: auto;
}

.team_sldr .slick-dots,
.work_sldr .slick-dots {
  position: static;
  width: 320px;
  margin: 60px auto 0;
  display: flex;
  pointer-events: none;
}

.team_sldr .slick-dots li,
.work_sldr .slick-dots li {
  margin: 0;
  width: 0;
  height: auto;
  flex-grow: 1;
  height: auto;
}

.team_sldr .slick-dots li button,
.work_sldr .slick-dots li button {
  padding: 0;
  width: 100%;
  height: 2px;
  /* background-color: rgba(0, 0, 0, 1); */
  position: relative;
}

.team_sldr .slick-dots li button::before,
.work_sldr .slick-dots li button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black);
  transition: var(--transition);
  opacity: 1;
}

.team_sldr .slick-dots li.slick-active~li button::before,
.work_sldr .slick-dots li.slick-active~li button::before {
  width: 0;
}

.team_sldr .slick-dots li.slick-active~li button,
.work_sldr .slick-dots li.slick-active~li button {
  background-color: rgba(0, 0, 0, 0.1);
}

.team_sldr .slick-arrow::before,
.work_sldr .slick-arrow::before {
  display: none;
}

.team_sldr .slick-arrow,
.work_sldr .slick-arrow {
  width: 12px;
  height: 10px;
  background: url(../images/vctr_arw.svg) no-repeat center;
  padding: 0;
  top: unset;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -175px;
}

.team_sldr .slick-arrow.slick-next,
.work_sldr .slick-arrow.slick-next {
  margin-left: 175px;
  transform: translateX(-50%) scaleX(-1);
}

.team_sldr ul.slick-dots:has(> li:only-child) button::before,
.work_sldr ul.slick-dots:has(> li:only-child) button::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.slick-disabled {
  cursor: auto !important;
}

/* our_wrk_sec */

.prtnr_sec {
  padding-bottom: 80px;
}

.prnr_wrp {
  padding-top: 100px;
  border-top: 1px solid var(--black);
  text-align: center;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.prnr_ttle {
  max-width: 650px;
  margin-inline: auto;
}

.prnr_ttle h2 {
  margin-bottom: 10px;
}

.prtnrs_icns {
  overflow: hidden;
  width: 100%;
  margin-block: 40px;
}

.marquee-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 24px;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 64px;
  padding: 8px 20px;
  flex-shrink: 0;
}

.logo-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  padding: 4px;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.logo-item a:hover {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
}

.logo-item img {
  max-width: 140px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition:
    filter 0.4s ease,
    opacity 0.4s ease;
}

.logo-item a:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.prnt_conclu {
  max-width: 475px;
  margin-inline: auto;
  text-align: center;
  font-size: 16px;
}

/* xpo_btm_sec */
.xpo_btm_sec {
  padding: 200px 0;
  background: linear-gradient(#fed7d7 0%,
      #fed7d7 5%,
      #91d1d5 40%,
      #91d1d5 100%);
  margin-top: -2px;
}

.xpo_btm_cnct {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.xpo_btm_cnct img {
  margin-bottom: 64px;
}

.xpo_btm_cnct h6 {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: var(--primary_font);
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.xpo_btm_cnct h2 {
  font-size: 40px;
  line-height: 1.1;
}

.xpo_btm_cnct h2 b {
  font-weight: 600;
  display: inline-block;
}

/* xpo_top_sec */

.xpo_top_sec {
    background-color: var(--sec_bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 270px 0 200px;
    position: relative;
    overflow: hidden;
}

.xpo_top_sec::before {
  position: absolute;
  content: "";
  width: 480px;
  height: 480px;
  background: url(../images/xpotp-bg-crcl.png) no-repeat center;
  animation: rotateload 80s infinite linear;
  background-size: contain;
}

.xpo_scrl_cnct {
  position: relative;
  width: 100%;
  text-align: center;
  opacity: 1;
  transform: none;
  will-change: auto;
  left: auto;
  padding: 0 20px;
}

.xpo_scrl_cnct h2 {
  font-size: 34px;
  line-height: 1.1;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto;
}

.xpo_scrl_cnct h2 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

/* counter_sec */
.counter_sec {
  padding: 70px 0 120px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.counter_wrp {
  display: flex;
  flex-wrap: wrap;
}

.counter_wrp .counter_itm {
  flex: 0 0 auto;
  width: 25%;
  padding: 8px 0 12px;
}

.counter_wrp .counter_itm+.counter_itm {
  border-left: 1px dashed var(--primary-color);
}

.counter_wrp .counter_itm h6 {
  margin-bottom: 20px;
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  color: var(--black);
  color: var(--primary-color);
}

.counter_wrp .counter_itm p {
  padding-inline: 15px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #999;
}

.counter_sec .countr_para {
  /* font-family: var(--title_font); */
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  /* max-width: 1250px; */
  margin: 120px auto 0;
}

.counter_sec .countr_para p span {
  display: block;
}

/* counter */

.secondary_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: 50px;
  border: 1px solid var(--white);
  background-color: var(--white);
  padding: 0 20px;
  color: var(--black);
  position: relative;
  z-index: 1;
}

.secondary_btn:hover {
  color: var(--white);
  background-color: transparent;
}

/* HEade css */
.hdr_sec {
  background: var(--sec_bg);
  padding-block: 16px;
  z-index: 99;
  transition:
    padding 0.4s ease,
    background 0.4s ease,
    backdrop-filter 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.hdr_sec .container {
  transition: var(--transition);
}

.hdr_sec.scrolled .container {
  max-width: 1100px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-block: 8px;
  box-shadow: 0 2px 20px rgb(255 255 255 / 10%);
  border-radius: 100px;
  padding-left: 20px;
}

.hdr_sec.scrolled {
  position: fixed;
  background-color: transparent;
}

.hdr_sec.scrolled .container .primary_btn {
  border-radius: 50px;
}

.hdr_sec.scrolled .container .sub-mnu {
    background: rgba(0, 0, 0, 0.9);
}

.hdr_sec.scrolled .logo {
  height: 32px;
  width: auto;
}

.hdr_sec.scrolled .navbar {
  padding-inline: 8px;
}

.hdr_sec.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.hdr_sec.header-visible {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.hdr_sec .navbar {
  padding: 0;
  transition: var(--transition);
}

.hdr_sec .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr_logo {
  transition: var(--transition);
}

.nav_wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu_toggle {
  display: none;
}

.menu_close,
.submenu_toggle {
  display: none;
}

.nav_wrapper ul.navbar_nav {
  display: flex;
  gap: 40px;
}

.nav_wrapper ul.navbar_nav li.nav_item {
  padding-block: 17px;
}

.nav_wrapper ul.navbar_nav li.nav_item .nav_link {
  color: rgba(255, 255, 255, 1);
  /* font-family: var(--title_font); */
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.03px;
  text-align: left;
  transition: var(--transition);
}

.nav_wrapper ul.navbar_nav li.nav_item .nav_link:hover {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.nav_wrapper ul.navbar_nav li.nav_item.has-sub-mnu {
  position: relative;
}

.sub-mnu {
  width: 200px;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.32);
  position: absolute;
  top: 100%;
  left: -10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav_wrapper ul.navbar_nav li.nav_item .sub-mnu .nav_link{
  font-size: 14px;
}

.nav_wrapper ul.navbar_nav li.nav_item.has-sub-mnu:hover .sub-mnu {
  opacity: 1;
  visibility: visible;
}

.sub-mnu .sub-mnu-itm {
  padding: 16px 14px;
  border-bottom: 1px solid #ffffff2e;
  background: transparent;
  transition: var(--transition);
}

/* .sub-mnu .sub-mnu-itm:hover{
  background: #ffffff41;
} */
.sub-mnu .sub-mnu-itm:last-child {
  border-bottom: none;
}


/* HEade css */

.newsroom_Sec {
  padding: 120px 0 90px;
  background-color: #D6E2E4;
}

.newsroom-hdng {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.newsroom-hdng .hdngwrp {
  max-width: 618px;
}

.newsroom-hdng .hdngwrp h2 {
  margin-bottom: 20px;
}

.newsroom-hdng .hdngwrp p {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
}

.space-economy-sec {
  padding: 120px 0;
}

.space-economy-sec .hdng {
  /* max-width: 520px; */
  /* margin-inline: auto; */
  text-align: center;
  margin-bottom: 40px;
}

.space-economy-sec .space-economy-con {
  display: flex;
  flex-wrap: wrap;
}

.space-economy-con .econmy-crd {
  width: 20%;
  padding-inline: 20px;
  border-right: 1px solid rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
  padding-block: 12px;
}

.space-economy-con .econmy-crd:last-of-type {
  border: none;
}

.space-economy-con .econmy-crd .img-wrp {
  max-width: 35px;
  margin-bottom: 45px;
}

.space-economy-con .econmy-crd h4 {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.6px;
  margin-bottom: 22px;
  min-height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.space-economy-con .econmy-crd p {
  color: rgba(153, 153, 153, 1);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;

  /* margin-top: auto; */
}

.our_orbit_sec {
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}

.orbit-map-con {
  padding-right: 86px;
}

.orbit-map-con p {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0;
}

.orbit-map-con .country-list {
  margin-block: 44px;
}

.worldmap-img {
  margin-top: 80px;
}

.country-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.country-list .fndCntryBtn {
  color: rgb(0 0 0 / 32%);
  /* font-family: var(--title_font); */
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  box-sizing: border-box;
  border: 1px solid rgb(0 0 0 / 32%);
  border-radius: 50px;
  padding: 11px 14px;
  transition: var(--transition);
  cursor: pointer;
}

.country-list .fndCntryBtn:hover {
  background-color: var(--black);
  color: var(--white);
  border-color: 1px solid transparent;
}

.country-list .fndCntryBtn.active-bnt {
  background-color: var(--black);
  color: var(--white);
  border-color: 1px solid transparent;
}

.formWraper h2 {
  margin-bottom: 36px;
}

.formWraper p {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
  text-align: left;
  max-width: 500px;
}

.emailshow {
  margin-top: 33px;
}

.emailshow a {
  color: var(--primary-color);
  /* font-family: var(--title_font); */
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.2px;
  text-align: left;
  text-decoration-line: underline;
}

.frm_wrp {
  margin-top: 29px;
}

.frm-wrp select.reqtypslct {
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  width: 100%;
  padding: 16px 0;
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/customdrop-arrow.png");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px 6px;
  background-color: transparent;
}

.mainFrm-wraper {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.mainFrm-wraper .frm-wrp {
  width: calc(50% - 8px);
}

.frm-box {
  width: 100%;
  border: none;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  background-color: transparent;
  padding: 12px 0;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
  text-align: left;
}

.frm-box::placeholder {
  color: rgba(153, 153, 153, 1);
}

.wrap-dtls {
  margin-top: 32px;
}

.frm-dtls-msg {
  height: 120px;
  resize: none;
  padding-top: 24px;
}

.frm_wrp .btn-wrap {
  margin-top: 37px;
}

/* globe */
.orbit-map-con .buttons-nav {
  margin-block: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 7px;
  /* overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 10px; */
}

.orbit-map-con .buttons-nav::-webkit-scrollbar {
  height: 4px;
}

.orbit-map-con .buttons-nav::-webkit-scrollbar-track {
  background: transparent;
}

.orbit-map-con .buttons-nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.orbit-map-con .city-btn {
  color: rgb(0 0 0 / 32%);
  /* font-family: var(--title_font); */
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  box-sizing: border-box;
  border: 1px solid rgb(0 0 0 / 32%);
  border-radius: 50px;
  padding: 10px;
  transition: var(--transition);
  cursor: pointer;
  background-color: transparent;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.orbit-map-con .city-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  border-radius: 50px;
  z-index: -1;
  transform: scale(0);
  transition: var(--transition);
  opacity: 0.8;
}

.orbit-map-con .city-btn:hover::before {
  transform: scale(1);
}

.orbit-map-con .city-btn:hover {
  color: var(--white);
  border-color: transparent;
}

.orbit-map-con .city-btn.active {
  background-color: var(--black);
  color: var(--white);
  border-color: transparent;
}

#globeViz {
  width: 100%;
  height: 580px;
  cursor: grab;
}

.locat_pin {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

/* footer */
.footer_sec {
  margin-top: auto;
  position: relative;
  padding-top: 480px;
  background-color: var(--white);
  margin-top: -170px;
}

.footer_sec::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  background: url(../images/elveigh_bgtop2.png) no-repeat bottom / 100% 100%;
}

.footerlist_wrp {
  padding-bottom: 30px;
  background-color: var(--sec_bg);
}

.footerlist_wrp .container {
  position: relative;
}

.footerList {
  display: flex;
  justify-content: space-between;
  padding-bottom: 90px;
  flex-wrap: wrap;
}

.footericon {
  /* max-width: 59px; */
  flex: 0 0 auto;
  width: 275px;
  /* display: inline; */
}

.footericon h2 {
  font-size: 20px;
  line-height: 1.1;
  color: var(--white);
  margin-top: 28px;
}

.ftrlist {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 275px);
  flex-wrap: wrap;
  padding-left: 100px;
}

.ftrlist_item h6 {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.2px;
  text-align: left;
}

.ftrlist_item ul {
  margin-top: 40px;
}

.ftrlist_item li a {
  color: rgb(255 255 255 / 48%);

  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  transition: var(--transition);
}

.ftrlist_item li a:hover {
  color: var(--white);
}

.ftrlist_item li+li {
  margin-top: 24px;
}

.copyright-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  /* border-top: 1px solid rgb(255 255 255 / 20%); */
}

.copyright-sec p {
  color: #f5f6ed;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.2px;
  text-align: center;
}

.copyright-sec ul {
  display: flex;
  align-items: center;
}

.copyright-sec ul li {
  padding-inline: 7px;
  position: relative;
}

.copyright-sec ul li a {
  color: #f5f6ed;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.2px;
  text-align: center;
  transition: var(--transition);
}

.copyright-sec ul li:last-child {
  padding-right: 0;
}

.copyright-sec ul li:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #f5f6ed;
  height: 18px;
  width: 1px;
  top: 3px;
}

.copyright-sec ul li a:hover {
  color: rgb(255 255 255 / 48%);
}

/* news room slider css */

.widget-wrapper {
  background: #dce8f0;
  border-radius: 16px;
  padding: 28px 32px 36px;
  width: 100%;
  max-width: 920px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

/* ── NAV TABS ── */
.tabAreaWrp .nav-tabs {
  margin-bottom: 40px;
  gap: 20px;
  border-bottom: 2px solid rgb(0 0 0 / 10%);
}

.tabAreaWrp .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 6px 2px;
  margin-bottom: -2px;
  background: transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  color: rgba(0, 0, 0, 1);
  /* font-family: var(--title_font); */
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0;
  text-align: left;
}

.tabAreaWrp .nav-tabs .nav-link:hover,
.tabAreaWrp .nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
}

/* ── SLICK SLIDER ── */
.news-slider {
  position: relative;
  margin: 0 -10px;
}

.slick-list {
  border-radius: 10px;
}

/* ── CARD ── */
.news-card {
  overflow: hidden;
  margin: 0 10px;
  display: flex !important;
  flex-direction: column;
  height: auto;
}

.card-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.card-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.card-img-wrap .ctg_tg{
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: var(--white);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  color: var(--black);
  text-transform: uppercase;
  padding: 8px 10px;
  letter-spacing: 0.08em;
}

.news-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: var(--white);
  border-radius: 0 0 12px 12px;
}

.card-meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-meta span {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 10%;
  text-align: left;
  text-transform: uppercase;
  position: relative;
}

.card-meta .time-cls {
  padding-left: 10px;
}

.card-meta .time-cls::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
}

.card-meta .category {
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 1.5px;
  text-align: left;
  text-transform: uppercase;
  padding-left: 13px;
  position: relative;
}

.card-meta .category::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--black);
  top: 50%;
  transform: translateY(-50%);
}

.card-title {
  margin-bottom: 14px;
}
.card_ttlewrp {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.card-title h4 {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.02em;
}

.card-desc {
  /* margin-bottom: 56px; */
  margin-top: auto;
}

.card-desc p {
  color: rgba(102, 102, 102, 1);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-brand {
  font-size: 12px;
  font-weight: 700;
  color: #222;
  margin-top: auto;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 48px;
}

.card-brand >img{
  max-height: 100%;
}

/* ── SLICK CUSTOM ARROWS & PROGRESS ── */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 48px;
}

.slick-arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #444;
  font-size: 20px;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.slick-arrow-btn:hover {
  color: #c0392b;
}

/* Progress bar track */
.slider-progress-track {
  flex: 1;
  max-width: 340px;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.slider-progress-fill {
  height: 100%;
  background: #333;
  border-radius: 2px;
  transition: width 0.35s ease;
  width: 0%;
}

.news-slider .slick-arrow {
  top: calc(100% - -44px);
  width: 10px;
  height: 10px;
}

.news-slider .slick-arrow::before {
  display: none;
}

.news-slider .slick-prev::after {
  content: "";
  position: absolute;
  background: url("../images/arrow-left-normal.svg") no-repeat center;
  background-size: contain;
  z-index: 2;
  transition: var(--transition);
  width: 10px;
  height: 10px;
}

.news-slider .slick-next::after {
  content: "";
  position: absolute;
  background: url("../images/arrow-right-normal.svg") no-repeat center;
  background-size: contain;
  z-index: 2;
  transition: var(--transition);
  width: 10px;
  height: 10px;
}

.news-slider .slick-next.slick-disabled::after {
  background: url("../images/arrow-right-disabled.svg") no-repeat center;
}

.news-slider .slick-prev.slick-disabled::after {
  background: url("../images/arrow-left-disabled.svg") no-repeat center;
}

.news-slider .slick-next {
  right: calc(50% - 210px);
}

.news-slider .slick-prev {
  left: calc(50% - 220px);
}

.news-slider .slick-track {
  display: flex;
}

/* news room slider css */

/* dev -R 21-04-26 */

/* ════════════ SCROLL STORY start ══════════════ */
#scroll-story {
  position: relative;
  width: 100%;
  height: 400vh;
}

.section-bg {
  position: absolute;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

#section1 .section-bg {
  top: 0vh;
  background-color: var(--sec_bg);
}

#section2 .section-bg {
  top: 100vh;
  background-color: var(--sec_bg);
}

#section3 .section-bg {
  top: 200vh;
  background-color: #fff;
  /* background-image: url(../images/bg-day-grad.png); */
  background-image: url(../images/bg-day-grad2.png);
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
}

#section4 .section-bg {
  top: 300vh;
  background-color: #fff;
}

#sticky-layer {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

#stars-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  top: 30px;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--dur, 3s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  from {
    opacity: var(--lo, 0.1);
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.5);
  }
}

#stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

#tick-ring {
  position: absolute;
  width: min(82vw, 82vh);
  height: min(82vw, 82vh);
  pointer-events: none;
  transform-origin: center center;
}

#tick-ring svg {
  width: 100%;
  height: 100%;
}

#glow-disc {
  position: absolute;
  width: min(76vw, 76vh);
  height: min(76vw, 76vh);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
  transform-origin: center center;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

#globe {
  position: absolute;
  width: var(--globe-base);
  height: var(--globe-base);
  border-radius: 50%;
  background: url(../images/planet-earth.png) no-repeat center;
  background-size: 100%;
  box-shadow:
    inset -28px -18px 60px rgba(0, 0, 0, 0.65),
    inset 14px 10px 40px rgba(255, 255, 255, 0.07),
    0 0 90px rgba(21, 101, 192, 0.12);
  filter: grayscale(1) brightness(0.42);
  transition: filter 0.35s ease;
  transform-origin: center center;
  will-change: transform, filter, opacity;
}

#headline {
  position: absolute;
  text-align: center;
  pointer-events: none;
  transform-origin: center center;
  will-change: opacity, transform;
}

#headline .line1,
#headline .line2 {
  display: block;
  /* font-family: var(--title_font); */
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 108px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: #fff;
}

#curve-path {
  width: 100%;
  height: 100%;
}

#stat-block {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: clamp(28px, 6vw, 90px); */
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  width: calc(100% - 100px);
  max-width: 1384px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.stat-year {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -1px;
  /* font-family: var(--title_font); */
}

.stat-num {
  /* font-family: var(--title_font); */
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--primary-color);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* .stat-item {
  min-width: 30%;
  flex: 0 0 auto;
}

.stat-item:nth-child(1) {
  text-align: left;
  align-items: flex-start;
}

.stat-item:nth-child(2) {
  text-align: center;
  align-items: center;
}

.stat-item:nth-child(3) {
  text-align: right;
  align-items: flex-end;
} */

#scroll-hint {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

#scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
}

.mwheel {
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: mw 1.7s ease-in-out infinite;
}

.typing-text {
  visibility: hidden;
  /* reserves space, hides text */
}

@keyframes mw {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(11px);
  }
}

.btm_scroll_story {
  padding: 50px 0;
}

.btm_scroll_story h3 span {
  color: var(--primary-color);
}

.btm_scroll_story h3 {
  /* font-family: var(--title_font); */
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--black);
}

/* ════════════ SCROLL STORY end ══════════════ */

/* ════════════ Banner-home Start ══════════════ */

.stage {
  position: relative;
  z-index: 2;
  width: 100vw;
  height: auto;
  padding-block: 160px 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.text-block {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
}

.headline {
  margin-bottom: 20px;
}

.subtitle {
  font-size: clamp(22px, 2vw, 32px);
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  /* font-family: var(--title_font); */
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 40px;
}

/* GRAPHIC */
.graphic-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HORIZONTAL LINE */
.line-h-wrap {
  position: relative;
  width: 400px;
  height: 1px;
}

.line-h-left,
.line-h-right {
  position: absolute;
  top: 0;
  height: 1px;
  width: 0;
  opacity: 0.4;
}

.line-h-left {
  right: 50%;
  background: linear-gradient(270deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
}

.line-h-right {
  left: 50%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
}

/* VERTICAL LINE */
.line-v {
  width: 1px;
  height: 0;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0.4;
}

/* ARC WRAPPER */
.arcwrp {
  display: flex;
  align-self: flex-start;
  gap: 20px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
}

.arcwrp p {
  margin-top: -10px;
  width: 500px;
  text-align: center;
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  /* font-family: var(--title_font); */
  color: var(--white);
}

.arclft,
.arcrgt {
  width: 0;
  flex-grow: 1;
}

.arinnr {
  width: 0;
  overflow: hidden;
}

.arinnr img {
  width: 100%;
  display: block;
}

/* control direction */
.arcrgt {
  transform: scaleX(-1);
}

.arcrgt img {
  transform: scaleX(-1);
}

.sstar {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8);
}

.strail {
  position: absolute;
  width: 40px;
  height: 2px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
  top: 1px;
  left: 4px;
  transform-origin: left center;
}

.bnr_home {
  background-image: url(../images/bnr-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;
  background-color: #000;
  position: relative;
}

.bnr_home::before {
  background: radial-gradient(103% 73% at 50% 73%,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1));
  opacity: 0.56;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

/* ════════════ Banner-home end ══════════════ */

/* banner_nw */

.hm_bnnr {
  background-color: var(--sec_bg);
  padding: 0 16px 80px;
}

.bnnr_cnct_wrp {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding: 280px 0 100px;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: flex-end;
}

.bnnr_cnct_wrp .bnnr_vdo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bnnr_cnct_wrp .bnnr_vdo::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bnnrvdoly.png) no-repeat center / 100% 100%;
}

.bnnr_cnct_wrp .bnnr_vdo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bnnr_cnct {
  max-width: 850px;
  position: relative;
}

.bnnr_title,
.bnnr_subtitle {
  opacity: 0;
  transform: translateY(50px);
}

.bnnr_title {
  background: linear-gradient(90deg, #ffffff 0%, #c8a96e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.bnnr_title span {
  display: block;
  width: 100%;
}

.bnnr_cnct p {
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  /* font-family: var(--title_font); */
  margin-top: 25px;
  max-width: 750px;
}

/* banner_nw */

/* ════════════ 25-04-2026 ══════════════ */

img#curve-svg {
  width: 100%;
  max-width: 1100px;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
  clip-path: inset(100% 0 0 0);
  margin: 0 auto;
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-55%, -50%);
}

#stat-block {
  justify-content: center;
  flex-direction: column-reverse;
  top: 45%;
}

.stat-num {
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--white);
  font-weight: 700;
}

.frm_orbt_sec .sec_tle h6 {
  margin-bottom: 10px;
}
/* marquee */
.orbt_tb_sec {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  /* height: 88px; */
  overflow: hidden;
  z-index: 10;
  /* background: rgba(0, 0, 0, .3); */
  display: flex;
  flex-direction: column;
  margin-top: auto;
  gap: 12px;
}

.marquee-track {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  will-change: transform;
  align-items: center;
  padding: 0 20px;
}

.marquee-track--rtl {
  /* height: 44px; */
  animation: rtl 90s linear infinite;
}

.marquee-track--ltr {
  /* height: 44px; */
  animation: ltr 90s linear infinite;
}

@keyframes rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* .frm_orbt_sec {
  min-height: 100vh;
} */

.sec_tle {
  text-align: center;
  position: relative;
  z-index: 999;
}

/* 28-04-2026 Form 7 edit start  */
.frm_wrp p {
  max-width: unset;
}

.frm_wrp .wpcf7-form-control-wrap {
  display: block;
}

.frm_wrp textarea {
  height: 120px;
}

/* 28-04-2026 Form 7 edit end  */

#journey-year {
  position: absolute;
  font-weight: 500;
  color: var(--primary-color);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -100%);
  white-space: nowrap;

  font-size: 38px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  /* font-family: var(--title_font); */
  transform-origin: center bottom;
}

.download_btn {
  margin-top: 15px;
  position: relative;
  display: inline-block;
}

.download_btn::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.download_btn:hover::before {
  right: unset;
  left: 0;
  width: 0px;
}


.solution_modal {
  backdrop-filter: blur(8px);
}

.solution_modal .modal-dialog {
  max-width: 780px;
  padding: 0 15px;
}

.solution_modal .modal-header {
  border-bottom: none;
  padding: 24px 24px 0;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.solution_modal .modal-body {
  padding: 0 24px 24px;
  /* max-width: 480px; */
  margin-top: -34px;
}

.solution_modal .modal-content {
  background-color: #000514;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  /* background-image: url(../images/erthorbtimg.png);
    background-size: 540px;
    background-repeat: no-repeat;
    background-position: bottom right; */
}

.solution_modal .modal-header .btn_close {
  opacity: 1;
  color: var(--white);
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  line-height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  margin-left: auto;
}

.solution_modal .mod_img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: none;
}

.solution_modal .modal-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  padding-bottom: 16px;
  display: flex;
  gap: 10px 25px;
  align-items: center;
  position: relative;
  padding-right: 60px;
}

.solution_modal .modal-title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100px;
  height: 2px;
  background: linear-gradient(100deg, rgba(204, 171, 100, 1) 25%, rgba(204, 171, 100, 0) 100%);
}

.solution_modal .modal-body p {
  color: #aaa;
  font-weight: 400;
  font-size: 16px;
}

.solution_modal .modal-body p+p {
  margin-top: 12px;
}

/* back to top */
#backToTop {
  position: fixed;
  bottom: 60px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s;
  z-index: 999;
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-4px);
}



/* company_page */

.inner_banner {
  height: 390px;
  position: relative;
}

.inner_banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--sec_bg);
}

.inner_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
}

.what_we_sec {
  padding: 120px 0;
}

.sec_ttle h6 {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--primary-color);
  font-family: var(--primary_font);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.join_sec {
  padding: 120px 0 240px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg,rgba(214, 226, 228, 1) 45%,rgba(214, 226, 228, 0) 100%);
}

.join_sec_col_igprt {
  height: 100%;
  border-radius: 12px;
  background: no-repeat center / cover;
}

.join_sec_col_cnct {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 35px 40px 30px 40px;
  align-items: flex-start;
  color: var(--white);
  max-width: 690px;
  margin-left: auto;
}

.join_sec_col_cnct h2 {
  margin-bottom: auto;
  color: var(--white);
}

.join_sec_col_cnct p {
  letter-spacing: -0.02em;
  font-size: 18px;
}

.join_sec_listing_pr {
  padding: 40px 0;
}

.join_sec_listing_wrp {
  margin-bottom: 70px;
}

.join_sec_listing_itm {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  letter-spacing: -0.02em;
  gap: 16px;
  justify-content: space-between;
  font-weight: 400;
}

.join_sec_listing_itm + .join_sec_listing_itm {
  margin-top: 30px;
}

.join_sec_listing_itm p {
  padding-left: 14px;
  position: relative;
}

.join_sec_listing_itm p::before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
}

.join_sec_listing_itm .apply_btn {
  margin-top: 6px;
}

.apply_btn {
  font-family: var(--primary_font);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1.2;
  position: relative;
  white-space: nowrap;
}

.apply_btn:after {
  margin-left: 8px;
  width: 10px;
  height: 10px;
  background: url(../images/rgt_arw_gldn.svg) no-repeat center / 10px;
  display: inline-block;
  content: "";
  transition: var(--transition);
}

.apply_btn::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  right: 18px;
  bottom: -3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.apply_btn:hover::before {
  width: calc(100% - 18px);
  right: unset;
  left: 0;
}

.team_sec {
  padding: 120px 0;
}


.sldr_itm {
  padding: 0 12px;
}


.team_sldr_cnct {
  height: 465px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: box-shadow .2s;
}

.team_sldr_img {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  transition: flex-basis .4s ease, max-height .4s ease;
  border-radius: 12px;
}

.team_sldr_cnct:has(.accordion-collapse.show) .team_sldr_img {
  flex-basis: 45%;
}

.team_sldr_img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: filter 200ms ease;
  ;
  /* object-position: top; */
  /* filter: grayscale(100%); */
}

.team_sldr_img>img.opend_img {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  transition: 200ms all ease-in-out;
}

.team_sldr_cnct:has(.accor_btn.collapsed) .team_sldr_img>img {
  opacity: 1;
}

.team_sldr_cnct:has(.accor_btn.collapsed) .team_sldr_img>img.opend_img {
  opacity: 0;
}

.team_sldr_cnct:has(.accor_btn.collapsed) .team_sldr_img>img {
  filter: grayscale(100%);
}


.team_sldr_cnct:hover .team_sldr_img>img {
  filter: none !important;
}


.team_sldr_img .lnkdn_icn {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--white);
  transition: var(--transition);
  z-index: 1;
}

.team_sldr_img .lnkdn_icn img {
  transition: var(--transition);
}

.team_sldr_acc {
  flex: 0 0 auto;
  background: var(--white);
  padding: 24px 0 0;
}

.lnkdn_icn:hover,
.team_sldr_cnct:has(.accordion-collapse.show) .team_sldr_img .lnkdn_icn {
  background-color: var(--primary-color);
}

.lnkdn_icn:hover img,
.team_sldr_cnct:has(.accordion-collapse.show) .team_sldr_img .lnkdn_icn img {
  filter: brightness(0) invert(1);
}

.team_sldr_cnct:has(.accordion-collapse.show) .team_sldr_img .lnkdn_icn:hover {
  background-color: var(--white);
  box-shadow: 0 0 8px 0px rgb(0 0 0 / 20%) !important;
}

.team_sldr_cnct:has(.accordion-collapse.show) .team_sldr_img .lnkdn_icn:hover img {
  filter: none;
}

.accor_btn {
  width: 100%;
  padding: 0;
  background-color: transparent;
  text-align: left;
}

.accor_btn:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.team_sldr_cnct .accor_body {
  max-height: 210px;
  overflow: auto;
  position: relative;
  z-index: 1;
}

.accor_body p {
  padding-top: 5px;
}

.accor_btn .btn_tp {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
}

.accor_btn h6 {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.accor_btn .btn_tp span {
  text-transform: uppercase;
  /* font-family: var(--title_font); */
  font-weight: 500;
  min-width: 40px;
}

.accor_btn .btn_tp span::after {
  width: 10px;
  height: 6px;
  display: inline-block;
  content: "";
  margin-left: 6px;
  background: url(../images/trngle.svg) no-repeat center / contain;
  vertical-align: middle;
  transition: var(--transition);
}

.team_sldr_cnct:has(.accordion-collapse.show) .accor_btn .btn_tp span::after {
  transform: scaleY(-1);
}

.accor_btn p {
  margin-top: 8px;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1;
  color: #999999;
  overflow: hidden;
  text-overflow: ellipsis;
}

.accor_btn p.bio_hdng {
  font-size: 14px;
  color: var(--black);
  margin-top: 12px;
  font-weight: 500;
}

.accor_btn[aria-expanded="true"] p.bio_hdng {
  display: none;
}


.spch_sec{
  padding: 40px 0;
  background: no-repeat center / cover;
}
.spch_sc_wrp{
  display: flex;
  flex-wrap: wrap;
}
.spch_sc_img{
  flex: 0 0 auto;
  width: 700px;
  border: 15px solid var(--white);
  border-radius: 20px 0 0 20px;
  padding-left: 30px;
}
.spch_sc_img img{
  width: 100%;
  margin-top: -16px;
}
.spch_sc_cnct{
  flex: 0 0 auto;
  width: calc(100% - 700px);
  background-color: var(--white);
  border-radius: 0 20px 20px 0;
  padding: 50px 70px;
}

.spch_sc_cnct h6{
  font-size: 26px;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 40px;
}

.our_mission_sec{
  padding: 140px 0;
  background-color: var(--black);
}

.our_mission_sec .sec_ttle{
  max-width: 900px;
  margin: 0 auto;
}
.our_mission_sec .sec_ttle h2{
  color: var(--white);
  font-size: 34px;
}
.who_we_sec{
  padding: 120px 0 40px;
  background: var(--black);
}
.who_we_sec .sec_ttle{
  max-width: 650px;
  margin: 0;
}
.who_we_sec h2{
  font-size: 34px;
  color: var(--white);
}

.wht_we_box{
  max-width: 550px;
  margin-left: auto;
  padding: 20px 24px;
  border-inline: 1px solid rgba(237, 237, 237, 0.4);
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.wht_we_box::after, 
.wht_we_box::before {
    top: 0;
    left: -1px;
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    border: 0 solid var(--primary-color);
    border-width: 1px 0 0 1px;
}
.wht_we_box::after {
    border-width: 0 0 1px 1px;
    top: unset;
    bottom: 0;
}
.wht_we_box_innr::after, .wht_we_box_innr::before {
    top: 0;
    right: -1px;
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    border: 0 solid var(--primary-color);
    border-width: 1px 1px 0 0;
}
.wht_we_box_innr::after {
    border-width: 0 1px 1px 0;
    top: unset;
    bottom: 0;
}

.wht_we_box h6{
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.wht_we_box p+p{
  margin-top: 12px;
}

.who_accor_wrp{
  color: var(--white);
  margin-top: 120px;
}

.accor_item{
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.accor_item .accor_button{
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--white);
  position: relative;
  padding: 23px 60px 23px 0;
}
.accor_item .accor_button::after{
  position: absolute;
  content: "+";
  right: 0;
  top: 24px;
  font-weight: 300;
  font-size: 28px;
  transition: var(--transition);
}
.accor_item .accor_button:not(.collapsed):after{
  content: "-";
  transform: rotate(180deg);
}
.accor_body{
  padding: 10px 0 25px;
}

.compny_bnnr{
  padding: 50px 0 320px;
  background: no-repeat bottom center / cover;
  position: relative;
  background-color: var(--black);
}

.compny_bnnr_innr{
  display: flex;
  gap: 16px;
}
.compny_bnnr_innr .txt{
  text-align: center;
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--white);
  position: relative;
}

.compny_bnnr_innr .txt .line1{
  width: 1px;
  height: 90px;
  background-color: var(--white);
}
.compny_bnnr_innr .txt .line2{
  width: 400px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.compny_bnnr_innr .txt .top_t{
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    margin-bottom: 8px;
}
.compny_bnnr_innr .txt .btm_t{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 8px;
}

.compny_bnnr_innr .txt .btm_t .line2{
  width: 280px;
}

.compny_bnnr_innr .lft_arc,
.compny_bnnr_innr .rgt_arc{
  width: 0;
  flex-grow: 1;
  margin-top: 112px;
}
.compny_bnnr_innr .lft_arc img,
.compny_bnnr_innr .rgt_arc img{
  width: 100%;
}
.compny_bnnr_innr .rgt_arc img{
  transform: scaleX(-1);
}



.our_vision_sec {
  padding-block: 100px;
  background: no-repeat center / cover;
  background-attachment: fixed;
  color: var(--white);
}

.our_vision_sec .sec_ttle {
  margin-bottom: 60px;
  max-width: 600px;
}

.our_vision_sec .sec_ttle h2{
  color: var(--white);
}
.vsn_clps_ttle h5{
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.vsn_clps_ttle h6{
  font-size: 34px;
  line-height: 1.2;
  font-weight: 400;
  max-width: 1100px;
}

.vscnaccor{
  margin-top: 25px;
}

.vscnaccorbutton {
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  color: var(--white);
  padding: 0;
  background-color: transparent;
  transition: var(--transition);
}

.vscnaccorbutton .opnd_txt{
  display: none;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
}

.vscnaccorbutton:not(.collapsed){
  font-size: 0;
}
.vscnaccorbutton:not(.collapsed) .opnd_txt{
  display: block;
}

.vscnaccor_body{
  padding-bottom: 30px;
}

.whtwe_para_wrp{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  font-weight: 400;
  text-align: justify;
}

.whtwe_para p + p{
  margin-top: 20px;
}

.vscnaccor_body h6{
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
  color: var(--primary-color);
  font-style: italic;
}
.arch_sec{
  background-color: var(--black);
  padding: 60px 0;
  overflow: hidden;
}
.radial-section__inner{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1070px;
  margin: 0 auto;
}
.radial-visual{
  flex: 0 0 auto;
  width: 600px;
  text-align: center;
  position: relative;
}
.radial-visual object{
  max-width: 100%;
}
.radial-content{
    flex: 0 0 auto;
    width: calc(100% - 660px);
    padding: 40px 30px;
    border-inline: 1px solid rgba(237, 237, 237, 0.4);
    color: #999999;
    font-weight: 400;
    position: relative;
    text-align: justify;
}
.radial-visual::before {
    position: absolute;
    content: "";
    width: 550px;
    height: 550px;
    background: url(../images/xpotp-bg-crcl.png) no-repeat center;
    animation: rotateload 80s infinite linear;
    background-size: contain;
    top: -18px;
    left: 28px;
    pointer-events: none;
}


.radial-content::before,
.radial-content::after,
.radial-content__panel::before,
.radial-content__panel::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 0 solid var(--primary-color);
  top: 0;
  left: -1px;
  border-width: 1px 0 0 1px;
}
.radial-content::after {
  bottom: 0;
  top: unset;
  border-width: 0 0 1px 1px;
}
.radial-content__panel::before {
  left: unset;
  right: -1px;
  border-width: 1px 1px 0 0;
}
.radial-content__panel::after {
  bottom: 0;
  right: -1px;
  top: unset;
  left: unset;
  border-width: 0 1px 1px 0;
}
.radial-content h6 {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: #C8A96E;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: left;
}
.radial-content h6 span{
  font-weight: 400;
}


/* 404,default and single content page */
.sngle_cnct,.dflt_nwsroom,.secnotfnd{position:relative;z-index:1}
.secnotfnd,.secnotfnd h2,.secnotfnd h3{color:var(--white)}
.dflt_nwsroom{background-color:transparent}
.news-card-wrap{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(350px,100%),1fr));gap:32px 24px}
.news-card-wrap .news-card{margin:0;box-shadow:0 8px 16px 2px rgb(0 0 0 / 10%);border-radius:16px}
.secnotfnd{padding:60px 0 0;text-align:center;background-color:var(--sec_bg)}
.ntfnd_wrp{display:flex;flex-direction:column;gap:20px;max-width:450px;margin:0 auto}
.ntfnd_wrp h2{font-size:72px}
.secnotfnd+.footer_sec{margin-top:0;padding-top:120px;background-color:var(--sec_bg)}
.secnotfnd+.footer_sec::before{display:none}

.sngle_cnct{padding:20px 0 80px;position:relative;z-index:1}
.sngle_cnct *{color:var(--black)}
.sngle_cnct .container{max-width:1140px}
.sngle_cnct .imgwrp{margin-bottom:40px;text-align:center}
.sngle_cnct .imgwrp img{border-radius:12px;max-height:400px;object-fit:cover;width:100%}
.sngle_cnct h1,.sngle_cnct h2,.sngle_cnct h3,.sngle_cnct h4,.sngle_cnct h5,.sngle_cnct h6{font-weight:600;line-height:1.3;margin-bottom:8px}
.sngle_cnct h1{font-size:42px;margin-bottom:20px}
.sngle_cnct h2{font-size:34px}
.sngle_cnct h3{font-size:30px}
.sngle_cnct h4{font-size:26px}
.sngle_cnct h5{font-size:22px}
.sngle_cnct h6{font-size:18px}
.sngle_cnct p{font-size:14px;line-height:1.7;margin-bottom:16px}
.sngle_cnct ol,.sngle_cnct ul{margin:0 0 20px 25px;padding:0;list-style:decimal}
.sngle_cnct ul{list-style:disc}
.sngle_cnct ol li,.sngle_cnct ul li{font-size:16px;line-height:1.6;margin-bottom:8px}
.sngle_cnct blockquote{margin:20px 0;padding:25px 30px;background:rgb(200 169 110 / 15%);border-left:5px solid;font-size:18px;line-height:1.8;font-style:italic;border-radius:8px}
.sngle_cnct blockquote *{margin:0}
/* 404,default and single content page */