


/* header section */



.navbar-nav{
    gap: 20px;
    margin-left: -3.6rem !important;
}

.navbar{
    margin-bottom: -1.6rem;
}

.nav-right{
    margin-right: 8rem !important;
}

.header-line{
    color: #fff;
    margin-bottom: 0rem;
}


.bg{
    background-image: url("../images/bg/hero_bg.png");
    background-position: top;
    background-size: cover;
}



.background1{
    background-color: #150725;
    color: #fff;
    padding: 2rem;
}



.background{
    background-color: #150725;
    color: #000;
}

.nav-right{
    margin-right: 197px;
}

.active{
    color: #f57c48;
}

#ff-compose{
    padding-bottom: 90px;
}

.break{
    border: 10px solid rgb(7, 3, 51);
    padding: 0px;
}










/* ===== End of Site Wrapping */



/* <!-- ===== Back to Top Button ===== --> */

#backToTopBtn{
    position: fixed;
    bottom: 40px;
    right: 20px;
    padding: 0px 0px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    z-index: 999999999;
}

#backToTopBtn i{
    font-size: 50px;
    color: #fff;
}

#backToTopBtn i:hover{
    color: #e94200;
}

/* Scroll full Website */

::-webkit-scrollbar{
    width: 5px;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(23deg, #150725 0.1%, #bb3104 100%);
    border-radius: 2px;
}







.form-main{
    background-color: #150725;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150vh;
    color: #fff;
  }
  
  .form-container {
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); */
  }
  
  .form-container h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
  }
  
  .form-group {
    margin-bottom: 50px;

  }
  
  .form-group label{
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 1.2rem;
  }
  
.form-group input, select{
    width: 100%;
    padding: 15px 15px;
    border: 1px solid #fff;
    border-radius: 6px;
    background-color: transparent;
    color: #fff;
    outline: none;
    transition: 0.3s;
    margin-top: 10px;
  }

  select option:focus{
    background-color: #150725 !important;
    color: #000 !important;     
  }
 
  input:focus,
  select:focus {
    background-color: #150725 !important;
  }


  .choices__inner {
    background-color: #150725 !important;
    border: 1px solid #fff;
  }
  
  .choices__item--selectable {
    background-color: #150725 !important;
    color: #fff !important;
  }
  
  
  .submit2 {
    position: relative;
    width: 100%;
    margin-top: 2vh;
    padding: 12px;
    background: #f57c48;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #000 ;
    transition: all 0.5s ease-in-out;   
    border: 1px solid #150725;
  }
  
  .submit2:hover{
    background: #320c24;
    color: #fff;
  }

  
  .submit2 .btn-text {
    position: relative;
    z-index: 2;
  }
  
  .submit2 .btn-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.216);
    width: 0%;
    z-index: 1;
    transition: width 2s ease-in-out;
    border-radius: 8px;
  }
  