
:root {
    --main_color: #1164c9;
    --a_link: #333;
    --main_light: #e4e0f2;
    --gray: #fafafa;
    --body-color: #878D97;
    --step-background-color: #d7dde5;
    --step-main-color: #1164c9;
  }
  
  html, body {
    height: 100%;
    margin: 0;
  }
  
body {
    background: #edf2f9;   
    /* background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2); 
    background: linear-gradient(to right, #4A00E0, #8E2DE2);   */
/* display: flex; 
align-items: center;
justify-content: center; */
font-family: 'Nunito Sans', sans-serif;
font-size: 14px;
}
  
.logo img{
    max-height: 50px;
    margin-bottom: 10px;
}
header nav{
    background: #fff;
    border-bottom: 1px solid #d5d5d5;
}
header .nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.banner img{
    max-height: 400px;
}

.track_box .card{
    padding: 1rem 6rem;
}
.track_box h1{
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-size: 1.575rem;
}
.track_box label{
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-size: 15px;
}

.form-control {
    font-size: 13px;
    background: #f7f7f7;
}



.tracking_boxs {
    /* background: #ebe7ecbd; */
}
.tracking_boxs .box_cont {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
}

.tracking_boxs .status_xo{
    background: #fff;
    padding: 1rem 12px;
    color: var(--main_color);
    font-size: 17px;
    margin-bottom: 25px;
    text-align: center;
    border:dashed 1px #000
}
.tracking_boxs .box-header{
    background: var(--main_color);
    padding: 1rem 12px;
    color: #fff;
    font-size: 17px;
    margin-bottom: 25px;
    text-align: center;
}

.tracking_boxs h2{
    text-transform: uppercase;
}

.tracking_boxs h1{
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
}

.tracking_boxs h3{
    font-size: 48px;
    font-weight: 300;
}

.tracking_xb p{
    font-size: 14px;
    margin-bottom: 0px;
}


.tracking_xb .progress-container {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  
  .tracking_xb .step-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
  }
  
  .tracking_xb .step {
    position: relative;
    width: 30px;
    height: 30px;
    background-color: var(--step-background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    z-index: 1;
    color: var(--step-main-color);
}
  
  .tracking_xb .progress {
    position: absolute;
    top: 0rem;
    left: 4%;
    width: 2px;
    height: 79%;
    background-color: var(--main_color);
    transform: translateX(-50%);
    z-index: 0;
  }
  
  .tracking_xb .step.active {
    background-color: var(--main_color);
    color: #fff;
  }
  
  .tracking_xb .step.active .progress {
    background-color: var(--main_color);
  }
  
  .tracking_xb .step-info {
    text-align: left;
  }
  .w-md-50 {
    width: 50% !important;
  }



  @media (max-width: 480px) {
    .w-md-50 {
        width: 100% !important;
      }
      .track_box .card {
        padding: 1rem 1rem;
    }
  }

footer{
    background: #fff;
    padding: 1rem 0;
    margin-top: 3rem;
}
footer a{
    text-transform: capitalize;
    text-decoration: none;
    color: #000;
    padding: 0 1rem;
}