/*Header*/

.navbar{
    padding: 0.8rem 1rem;
    background-color: rgb(30, 54, 80);
}

.navbar-nav a{
    color: rgb(224, 224, 224);
}

.navbar-nav a:hover{
    color: rgb(193, 192, 192);
}

.navbar-nav .active {
    background-color: #0f1d2b;
    border-radius: 3px;
}

.breadcrumb-wrapper{
    position: absolute;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 8% 80%);
    z-index: 999;
}

.breadcrumb{
    padding: calc(0.5rem - 3px) 1rem 0.5rem 2.5rem;
    border-radius: 0px;
}

.breadcrumb-item:not(:last-child){
    border-right: 1px solid rgb(103, 114, 125);
}

.breadcrumb-item+.breadcrumb-item::before{
    content: "";
    padding-right: 0px;
}

.breadcrumb a{
    color: rgb(30, 54, 80);
}

.advantage_list li{
    margin-bottom: 10px;
    list-style-type: none;
    font-size: 1.05rem;
}

.advantage_list .fa-angle-double-right{
    color: rgb(30, 54, 80);
    font-size: 1rem;
}

.advantage_list li .fas{
    position: relative;
    -webkit-animation: bullet .3s normal forwards 0.5s;
    animation: bullet .3s normal forwards 0.5s;
    opacity: 0;
    left: -5px;
}

.banner_subtitle{
    line-height: 1.7;
}

@-webkit-keyframes bullet {
    to {
    left: 7px;
    opacity: 1;
    }
  }
  
  @keyframes bullet {
    to {
    left: 7px;
    opacity: 1;
    }
  }

.border-warning{
    border-bottom: 3px solid #ffc107!important;
}

.border-primary{
    border-bottom: 2px solid rgb(30, 54, 80)!important;
}

.btn-primary{
    background-color: rgb(30, 54, 80);
    border-color: rgb(24, 43, 64);
}

.btn-primary:hover{
    background-color: rgb(24, 43, 64);
    border-color: rgb(24, 43, 64);
}

.btn-primary:not(:disabled):not(.disabled):active{
    background-color: rgb(24, 43, 64);
    border-color: rgb(24, 43, 64);
}

.btn-primary:not(:disabled):not(.disabled):focus{
    box-shadow: 0 0 0 0.2rem rgb(30, 54, 80, .5);
}

.section-header::after{
    display: block;
    content: " ";
    background-image: linear-gradient(to right, rgb(202, 151, 0), rgb(249, 197, 44), rgb(255, 247, 225));
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -10px;
}

.section-header-center::after{
    display: block;
    content: " ";
    background-image: linear-gradient(to right, rgb(255, 247, 225), rgb(249, 197, 44), rgb(202, 151, 0), rgb(249, 197, 44), rgb(255, 247, 225));
    width: 170px;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

/*Footer*/

footer{
    color: rgb(224, 224, 224);
}

.footer-bg{
    background-color: rgb(30, 54, 80);
}

.footer-bottom{
    background-color: rgb(24, 43, 64);
}

.footer-menu li{
    list-style-type: none;
    padding: 0.2rem 0rem;
}

.footer-menu li a{
   color: rgb(224, 224, 224);
}

.footer-menu li a:hover{
    text-decoration: none;
    color: rgb(193, 192, 192);
}

.fa-phone{
    transform: rotate(90deg);
}

/*custom Scrollbar*/

::-webkit-scrollbar {
    height: 8px !important;
    overflow: visible !important;
    width: 8px !important;
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 10rem;
    background: #ffc107 !important;
    background-clip: padding-box !important;
    border-image: initial !important;
    min-height: 28px !important;
    padding: 100px 0px 0px !important;
    box-shadow: rgba(0, 0, 0, 0.1280392) 1px 1px 0px inset, rgba(0, 0, 0, 0.09667) 0px -1px 0px inset !important;
  }
  
  /* :window-inactive inspired by cssTricks */
  
  ::-webkit-scrollbar-thumb:hover {
    background: #ffc107 !important;
    background-clip: padding-box !important;
  }
  
  /* :window-inactive inspired by cssTricks */
  
  ::-webkit-scrollbar-thumb:window-inactive {
    background: #ffc107 !important;
    background-clip: padding-box !important;
  }
  
  ::-webkit-scrollbar-button {
    height: 0px !important;
    width: 0px !important;
  }
  
  ::-webkit-scrollbar-track {
    background: #efefef;
    border: 1px solid #d6d6d6;
  }
  
  ::-webkit-scrollbar-corner {
    background: transparent !important;
  }

/*login form*/

#login .modal-header{
    background-color: rgb(30, 54, 80);
    color: white;
    border-top-left-radius: .15rem;
    border-top-right-radius: .15rem;
}

#login .modal-dialog{
    max-width: 420px;
}

#login .form-control:focus{
    box-shadow: none;
}

/* index banner*/

.banner{
    background-image: url("../img/home-banner.png");
    background-size: cover;
    background-position: center center;
    height: 360px;
}