body {
  overflow-x: hidden;
}
.text-gradient {
    background: linear-gradient(7deg, rgba(0, 133, 195, 1) 0%, rgba(61, 226, 244, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-gradient {
    background: linear-gradient(7deg, rgba(0, 133, 195, 1) 0%, rgba(61, 226, 244, 1) 100%);
}
.box_border {
    border: 1px solid var(--white);
    border-radius: 6px;
    padding: 11px;
}
.bg-oxford-blue{
  background-color: #262D38;
}
.bg-light{
  background-color: var(--bg-light) !important;
}
.gap-10px {
    gap: 10px;
}
.title_box {
    border: 1px solid var(--base-color);
    padding: 7px 10px;
    border-radius: 6px;
    background: #1f1f1f;
}

.ct-custom {
  border: 5px solid white;
  border-radius: 9px;
  padding: 17px;
}

@media (max-width: 991px) { 
  .responsive-tab {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    white-space: nowrap;
    flex-wrap: nowrap;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
  }
}

  /* Customize the scrollbar */
  .responsive-tab::-webkit-scrollbar {
    width: 2px; 
    height: 5px;
  }
  
  .responsive-tab::-webkit-scrollbar-thumb {
    background-color: var(--base-color);
    border-radius: 6px; 
  }
  
  .responsive-tab::-webkit-scrollbar-track {
    background-color: var(--white); 
    border-radius: 6px;
  }

  .award-box {
    background: var(--bg-light) !important;
    padding: 7%;
    border-radius: 12px;
  }
  .h-63px {
    height: 63px !important;
  }
 .box-shadow-four {
  border: 1px solid #171717;
  border-radius: 9px;
  box-shadow: 1px 1px 2px 0px #2d2a2a;
 }
 .cost-box {
  padding: 17px;
  border-radius: 6px;
  text-align: center;
 }
 .f-invert {
  filter: invert(1) !important;
 }
 .card-business {
  border: 2px solid white;
  border-radius: 16px;
}


/* step section  */


.timeline-main {
  width: 100%;
  padding: 25px;
  .timeline-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    &::before {
      content: "";
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: calc(100% - 10px);
      background-color: #00283a;
      animation: line 1s linear;
      @media (max-width: 767px) {
        left: 95%;
      }
    }
    .timeline-card {
      width: 50%;
      margin-right: auto;
      position: relative;
      @media (max-width: 767px) {
        width: 95%;
      }
      &::after {
        content: "";
        position: absolute;
        top: 10px;
        right: -10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 3px solid #fff;
        background: #00283a;
        animation: fadeIn 1s;
        animation-fill-mode: both;
      }
      .timeline-card-wrap {
        height: 100%;
        margin-right: 35px;
        background-color: #00283a;
        border-radius: 10px;
        position: relative;
        padding: 30px;
        animation: fadeInRight 1s;
        animation-fill-mode: both;
        @media (max-width: 767px) {
          padding: 20px;
        }
        &::before {
          content: "";
          position: absolute;
          left: 30px;
          top: -8px;
          height: 8px;
          width: calc(100% - 60px);
          background-color: #00283a;
          border-radius: 5px 5px 0 0;
          opacity: 0.3;
        }
        &::after {
          content: "";
          position: absolute;
          top: 10px;
          right: -8px;
          width: 20px;
          height: 20px;
          background-color: #00283a;
          border-radius: 5px;
          transform: rotate(45deg);
        }
        .card-head-wrap {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 10px;
          @media (max-width: 1199px) {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
          }
          .timeline-card-head {
            font-size: 28px;
            line-height: 38px;
            font-weight: 500;
            color: #fff;
            margin-bottom: 0;
            @media (max-width: 767px) {
              font-size: 18px;
              line-height: 28px;
            }
          }
          .timeline-card-subhead {
            font-size: 16px;
            line-height: 26px;
            font-weight: 400;
            color: #bdbdbd;
            margin-bottom: 0;
            font-style: italic;
            @media (max-width: 767px) {
              font-size: 14px;
              line-height: 24px;
            }
          }
        }

        .timeline-card-text {
          font-size: 14px;
          line-height: 24px;
          font-weight: 400;
          color: #919ca1;
          margin: 25px 0 0;
          @media (max-width: 767px) {
            font-size: 12px;
            line-height: 22px;
          }
        }
      }

      &:nth-child(even) {
        @media (min-width: 768px) {
          margin-left: auto;
          margin-right: 0;
          &::after {
            right: unset;
            left: -10px;
            animation-delay: 1s;
          }
          .timeline-card-wrap {
            margin-right: 0;
            margin-left: 35px;
            animation: fadeInLeft 1s;
            animation-fill-mode: both;
            animation-delay: 1s;
            &::after {
              right: unset;
              border-left: none;
              left: -8px;
              border-right: 10px solid #00283a;
            }
          }
        }
      }
    }
  }
}
@keyframes line {
  0% {
    height: 0;
  }

  100% {
    height: calc(100% - 10px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.hire-box {
  border: 1px solid #242424;
  border-radius: 10px;
  background: var(--bg-light);
  padding: 28px;
}
.sm-border-radius-10px {
  border-radius: 10px;
}
.bg-gradient-chablis-red-quartz-white {
    background-image: linear-gradient(to right, #fce7e1, #fce7e1, #efe2ea, #dcdaf5, #dcdaf5) !important;
}

/* new csss */
.navbar .navbar-nav .simple-dropdown .dropdown-menu li{
  padding: 0 25px 0 25px;
}
[data-header-hover=dark] .navbar-nav .simple-dropdown .dropdown-menu{
  background-color: hsl(240deg 14.81% 10.59%);
}
.btn{line-height: normal;}