:root {
    --primary-color: #8a171a;
    --secondary-color: #2c3343;
    --background-color:  #f7f3f6;
    --helper-color-1: #1f2a7a;
    --helper-color-2:#f8fbff;
    --red: #ff0000;
    --white: #ffffff;
  }
  *{
    box-sizing: border-box;
    scroll-behavior: "smooth";
  }
  h3,h4,h5,h6{
    color: var(--primary-color) !important;
  }
  .list-style-none{
    list-style: none;
  }
  .bg-transparent{
    background-color: transparent;
  }
  .pos-fixed{
    position: fixed;
  }
  .primary-color{
    color: var(--primary-color);
  }
  textarea{
    resize: none;
  }
  h6::after{
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    background-color: var(--white);
    position: absolute;
    margin-top: 8px;
  }
  .getFreeDemo-btn, .getFreeDemo-btn:hover{
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white);

  }

/********************************** Top Nav  *******************************************/
.nav-item a{
    color: var(--primary-color) !important;
    line-height: 50px;
    /* text-decoration: none; */
    font-size: 13px;
    padding: 0 24px;
    margin: 0;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    font-weight: 700;
    /* width: 141px; */
}
.nav-item:hover, .nav-item:hover a {
    color: var(--white) !important;
    background-color: var(--secondary-color);
}

/* Banner Section  */
.banner {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 100px 25px 50px;
}
.banner p span {
    opacity: 0.5;
  }

/********************************** Feature and Benefits section  **********************************/
.feature_box {
    display: flex;
    justify-content: center;
    height: 425px;
    transition: .5s ease-in-out;
  }
  .feature_box:hover {
    transform: scale(1.1);
    background-color: var(--primary-color) !important;
    color: white !important;
  }
  .feature_box:hover .card-body h5 {
    color: var(--white) !important;
  }

  /****************************** How it works section  ******************************************/
#features,#howItWorks {
    background-color: var(--background-color) !important;
  }

  .timeline {
    position: relative;
    margin: 50px auto;
    margin-bottom: 0;
  }
  
 .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 5px;
    height: 100%;
    background-color: var(--helper-color-1);
    border-radius: 14%;
  }
  .timeline ul li {
    list-style: none;
    position: relative;
    padding: 20px 40px;
    box-sizing: border-box;
  }
  .timeline ul li:nth-child(odd) {
    float: left;
    text-align: right;
    clear: both;
  }
  .timeline ul li:nth-child(even) {
    float: right;
    text-align: left;
    clear: both;
  }
  .timeline ul li:nth-child(odd) .content {
    float: left;
    text-align: right;
    padding: 20px;
    width: 50%;
  }
  .timeline ul li:nth-child(odd) .time {
    float: right;
    text-align: left;
    padding: 30px;
    width: 50%;
  }
  .timeline ul li:nth-child(even) .content {
    float: right;
    text-align: left;
    padding: 20px;
    width: 50%;
  }
  .timeline ul li:nth-child(even) .time {
    float: left;
    text-align: right;
    padding: 30px;
    width: 50%;
  }
  .process_step_div img {
    transition: .5s ease-in-out;
  }
  .timeline ul li:nth-child(odd) .content div{
    border-radius: 50% 0 50% 0;
    background-color: var(--helper-color-2);
  }
  .timeline ul li:nth-child(even) .content div{
    border-radius: 0 50% 0 50%;
    background-color: var(--helper-color-2);
  }
  .process_step_div img:hover {
    transform: scale(1.1);
  }
  .timeline ul li::before {
    outline: auto;
    content: "";
    position: absolute;
    top: 32px;
    left: 49.7%;
    height: 15px;
    width: 15px;
    background-color: var(--red);
    border-radius: 50%;
  }

/********************************* Contact Us Section  ******************************************/
.contact_info_div small {
    position: absolute;
    top: -8px;
    left: 18px;
    background: var(--white);
    padding: 0 10px;
  }

  .form-control {
    box-shadow: inset 0 0 6px 1px var(--secondary-color);
}

/*********************************** Copyright Footer Section  *******************************************/
  .footer_heading::after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: var(--white);
    width: 80px;
  }
#copyright{
    background-color: var(--primary-color)!important;
    color: var(--white);
}


/****************************************** Carousel / Model  ********************************************/
.carousel-indicators button {
  background-color: var(--primary-color) !important;
  height: 20px !important;
  width: 20px !important;
  border-radius: 50%;
}
