nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #0b081d;
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  /* background: #3a3b3c; */
  color: #ffffff;
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: #110c29;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  border-radius: 0 0 5px 5px;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}

.row .mega-links li a:hover {
  color: #f2f2f2;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn {
    display: block;
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #242526;
  }

  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }

  #menu-btn:checked~.nav-links {
    left: 0%;
  }

  #menu-btn:checked~.btn.menu-btn {
    display: none;
  }

  #close-btn:checked~.btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDrop:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }
  #showDrop1:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }
  #showDrop2:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }
  #showDrop3:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }
  #showDrop4:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }
  #showDrop5:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    background: #3a3b3c;
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-links li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }
}

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-text div {
  font-size: 45px;
  font-weight: 600;
}

/* step-section-start */
/* step-section-start */
.step-circle {
  width: 40px;
  height: 40px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.active-step {
  background-color: #009f00;
}

.step-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
}

.step-card .card-header {
  background-color: #0d00ff;
  color: #009f00;
  font-weight: bold;
  padding: 15px 0px 1px 10px;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
  font-size: 16px;
}

.step-card .card-body {
  background: #0d00ff;
  padding: 20px 0 0 0;
  border-radius: 0px 0px 9px 9px;
  border: 1px solid #c6c6c6bf;
}

.step-card .card-body p {
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 500;
}

.step-card .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* .steps-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  z-index: 0;
} */
/* step-section-end */
/* step-section-end */

/* web-trade-section-start */
/* most-popular-section-start */
.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.display-1 {
  font-size: 40px;
  font-weight: 600;
  color: white;
}

.product .list-group-item {
  background-color: #0b112000;
  border: none;
  color: white;
}

.product .list-group-item span {
  /* content: ""; */
  margin-right: 10px;
  height: 15px;
}

.product .list-group-item span img {
  height: 20px;
  width: 20px;
}

.product .card {
  position: relative;
  background: linear-gradient(145deg, #1c2541, #0b132b);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  color: white;
  height: 114px;
  margin-bottom: 20px;
  overflow: hidden;
}

.product .card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #1c2541, #0b132b);
  z-index: -1;
  border-radius: 10px;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.product .card-body {
  position: relative;
  z-index: 1;
}

.product .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.most-popular-icon {
  height: 60px;
}

.product .card h5 {
  font-size: 13px;
}

.product .card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0d00ff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* most-popular-section-start */
.w-60 {
  width: 60%;
  margin: auto;
}

@media (max-width: 768px) {
  .w-60 {
    width: 100%;
    margin: auto;
  }
}

/* most-popular-section-end */

/* center-mobile-section-start */
.center-web .feature-section {
  padding: 2rem 0 0rem 0;
  background: linear-gradient(264deg, rgb(18 18 18), rgb(18 18 18));
}

.center-web .feature-box {
  /* background-color: #161b2d; */
  border-radius: .5rem;
  padding: 1.5rem;
  /* margin-bottom: 1rem; */
}

.center-web .feature-box h5 {
  color: #ffffff;
}

.center-web .feature-title {
  margin-bottom: 1rem;
}

.center-web .feature-list {
  list-style: none;
  padding: 0;
}

.center-web .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.center-web .feature-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.center-web .feature-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.center-web .feature-image {
  max-width: 100%;
  border-radius: .5rem;
}

.center-web .feature-box {
  /* background-color: #161b2d; */
  border-radius: .5rem;
  padding: 1.5rem;
  /* margin-bottom: 1rem; */
}

.center-web .feature-box h5 {
  color: #ffffff;
}

.center-web .feature-title {
  margin-bottom: 1rem;
}

.center-web .feature-list {
  list-style: none;
  padding: 0;
}

.web-mobile .app-card {
  background-color: #161b2d;
  border: 3px solid #6b6b6b87;
  border-radius: .5rem;
}

.web-mobile .app-image {
  max-width: 100%;
  border-radius: .5rem;
}

.web-mobile .card-title {
  color: white;
  font-weight: 600;
}

.web-mobile .card-text {
  color: white;
  /* font-weight: 600; */
}

.web-mobile .btn-custom {
  background: linear-gradient(88.9deg, #467bff, #75d9d9 50%, #75d9d9 75%, #467bff 146%) !important;
  border: none;
  border-radius: .5rem;
  width: fit-content;
  color: #fff;
  padding: .5rem 1rem;
}

.web-mobile .app-card {
  background-color: #161b2d;
  border: 3px solid #6b6b6b87;
  border-radius: .5rem;
}

.web-mobile .app-image {
  max-width: 100%;
  border-radius: .5rem;
}

/* center-mobile-section-nd */

/* trading-conditions-section-start */
.trading-conditions .container {
  padding: 2rem;
  border-radius: 8px;
}

.trading-conditions .card {
  background-color: #1a1c2c;
  color: white;
  border: none;
}

.trading-conditions .card-body {
  display: flex;
  align-items: center;
}

.trading-conditions .card-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.card-text:last-child {
  margin-bottom: 0;
}

.trading-conditions .card {
  background-color: #1a1c2c;
  color: white;
  border: none;
}

.trading-conditions .card-body {
  display: flex;
  align-items: center;
  padding: 20px 20px;
}

.trading-conditions .card-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.trading-conditions .card {
  background-color: #1a1c2c;
  color: white;
  border: none;
}

/* trading-conditions-section-end */

/* contact-us-section-start */
.contact .contact-container {
  /* background-color: #0d0d21; */
  padding: 30px 0;
}

.contact .contact-option {
  background-color: #1a1a2e;
  color: white;
  text-align: center;
  padding: 20px;
  border: 1px solid;
  border-radius: 10px;
  margin: 10px;
  transition: transform 0.3s ease;
}

.contact .contact-option:hover {
  transform: translateY(-10px);
}

.contact .contact-option img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.contact .contact-option h4,
.contact-option p {
  margin: 0;
}

/* contact-us-section-end */

/* footer-section-start */
.footer-logo {
  font-size: 30px;
  font-weight: 800;
  color: white;
}
/* footer-section-end */
.text-orange
{
  color: #0d00ff;
}