@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@font-face {
  font-family: 'SofiaPro';
  src: url('../fonts/SofiaProRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SofiaPro';
  src: url('../fonts/SofiaProMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SofiaPro';
  src: url('../fonts/SofiaProSemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'SofiaPro';
  src: url('../fonts/SofiaProBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'SofiaPro';
  src: url('../fonts/SofiaProBlack.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

:root {
  --body-font-family: "Raleway", sans-serif;
  --sofia-pro: 'SofiaPro', sans-serif;
  --body-font-size: 1rem;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  --body-color: #171819;
  --color-primary: #083c5e;
  --color-secondry: #404040;
  --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  --color-black: #171717;
  --color-gray-100: #e3e5e6;
  --color-gray-200: #c9cccf;
  --color-gray-300: #afb4b8;
  --color-gray-400: #969ca1;
  --color-gray-500: #7c84ba;
  --color-gray-600: #626c73;
  --color-gray-700: #48535c;
  --color-gray-800: #2f3b45;
  --color-orbit: #15232e;
  --color-medium-blue: #264580;
  --color-electric-blue: #4040d9;
  --color-lilac: #758ce5;
  --color-plum: #914796;
  --color-plum-light: #f3edf5;
  --color-bmc-orange: #ff5a4d;
  --color-midnight: #052140;
  --color-sky: #e6f6ff;
  --color-cloud: #f7f8fd;
  --text-primary: #212529;
  --color-dark-black: #000000;
}

body {
  font-family: var(--body-font-family);
  line-height: var(--body-line-height);
}

a {
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
.custom-font{
  font-family: var(--sofia-pro);  
}

.text-black {
  color: var(--color-black);
}

.navbar{
  --bs-navbar-toggler-focus-width: 0.1rem;
}

.navbar-brand {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.1rem;
}

.nav-item {
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-item .nav-link {
  text-decoration: none;
  color: var(--text-primary);
}
.nav-item .nav-link:hover{
    text-decoration: underline;
  color: var(--color-midnight);
}

.section-padding {
  --top-padding: 5rem;
  --bottom-padding: 5rem;
  padding-top: var(--top-padding);
  padding-bottom: var(--bottom-padding);
}

.slides-card .swiper-slide figure {
  height: 200px;
  overflow: hidden;
}

.slides-card .swiper-slide figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.slides-card .swiper-slide .badge {
  background-color: #e1e1ea;
  color: var(--color-dark-black);
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}
.slides-card .swiper-slide .card-title {
  color: #101037;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.02rem;
}
.slides-card .swiper-slide p {
  line-height: 1.5;
  letter-spacing: -0.01rem;
}
.text-button {
border: 2px solid var(--color-dark-black);
    color: var(--color-dark-black);
    border-radius: 0.25rem;
    font-weight: 500;
    letter-spacing: -0.01rem;
    padding: 0.8rem 1.5rem;
    font-size: 1.5rem;
    line-height: 1.2;
}

.text-button:hover{
  --color-dark-black : var(--color-midnight);
  background: var(--color-midnight);
  color:#fff;
}

.card-section {
  background-image: url(../img/bg-1.jpg);
  background-size: cover;
  position: relative;
  color: var(--bs-white);
}

.card-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.card-section .container {
  position: relative;
  z-index: 1;
}

.card-section .card {
  background-color: transparent;
  border: 1.3px solid var(--bs-white);
  box-shadow: none;
  border-radius: 0.5rem;
  transition: 0.3s;
  color: #fff;
}

.card-section .card .card-body {
  padding: 2rem 1.75rem;
  
  

}

.card-section .card:hover {
 background-color: #fff;
 transition: 0.3s;
 color: var(--color-midnight);
}

.card-section .card:hover .card-body .btn-link{
  color: var(--color-midnight);
}

.card-section .card:hover .card-body .btn-link i{
  color: var(--color-bmc-orange);
}


.card-section .card .card-body .card-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}
.slides-card .swiper-slide .btn-link,
.card-section .card .card-body .btn-link {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 0.85;
  color: var(--bs-white);
  text-decoration: none;
}
.slides-card .swiper-slide .btn-link i,
.card-section .card .card-body .btn-link i {
  font-size: 1rem;
}
.slides-card .swiper-slide .btn-link{
    color: var(--color-medium-blue);
}

.leader-bg{
  background-color: #E1E1EA4D;
  margin-bottom: 5rem;
}

footer .navbar-brand {
  font-size: 1.625rem;
  letter-spacing: 0.135rem;
}

.footer-link,
.copyright-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-dark-black);
}

.bg-content{
  background: var(--color-dark-black);
  padding: 4rem;
}



    .value  {
       margin-top: 5rem;
      position: relative;
      overflow: hidden;
      color: white;
      background: url('../img/bg-page2.svg');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
    }

    .value::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Overlay with 60% opacity */
      z-index: 0;
    }

   .value .video-content {
      position: relative;
      z-index: 1;
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    .value-steps {
  position: relative;
  margin-top: 50px;
}

.step {
  position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 24%;
    left: -3px;
    width: 55px;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
    z-index: 1;

}
.step::before {
    content: '';
    position: absolute;
top: 24%;
    left: 40px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 2;
}

.step p{
  font-size: 14px;
  line-height: 24px;
}



    .roadmap-sidebar {
      position: sticky;
      top: 0;
      background-color: #E1E1EA;
      padding: 32px 25px;
      height: 100vh;
      display: flex;
      flex-direction: column;
    }
    
    .highlight {
      color: #b0ff00;
      text-transform: uppercase;
      font-size: 0.8rem;
    }
 
.boxes .card{
  background: rgba(255, 255, 255, 0.4);
  border-radius: 27px;
  padding: 18px 15px;
  color: #fff;
}

.roadmap-sidebar ul {
  font-family: var(--sofia-pro);
    font-size: 0.875rem;
}




.roadmap-sidebar ul li{
  margin-bottom: 20px;
 }

 .roadmap-sidebar ul li a{
  color: var(--color-midnight);
 }

  .roadmap-sidebar ul li a:hover{
    text-decoration: underline;
 }

 .roadmap-sidebar .btn{
    --bs-btn-padding-y: 0.875rem;
    --bs-btn-font-family: var(--sofia-pro) ;
    --bs-btn-font-size:14px;
        --bs-btn-font-weight: 500;
        --bs-btn-border-radius:4px;
            --bs-btn-bg: #000;
    --bs-btn-border-color: #000;
 }
 .image-map-container {
    position: relative;
    width: 100%;
  }

  .image-map-container img {
    width: 100%;
    height: auto;
    display: block;
  }

  .map-link {
   position: absolute;
    display: block;
    width: 170px;
    height: 75px;
  }

  .link1 { top: 44%;
    left: 13%; }
  .link2 { top: 52%;
    left: 63%;
    width: 115px;}
  .link3 {     top: 59%;
    left: 71%;
    width: 120px;}

.cst-heading{
  font-size: 52px}

@media (max-width: 767.98px)  { 
  .section-padding {
    --top-padding: 2rem;
    --bottom-padding: 2rem;
  }

  .text-button {
    padding: 1rem;
    font-size: 1.5rem;
  }
  .footer-link, .copyright-text{
    font-size: 1rem;
  }

.leader-bg {
    margin-bottom: 2rem;
}

.bg-content {
    padding: 1.5rem;
}
.roadmap-sidebar{
  height: auto;
}
.value {
    margin-top: 2rem;
   }

   .step::after,
  .step::before {
    display: none;
  }

}