html, body {
    max-width: 100%;
    overflow-x: hidden;
}
.bg-nav{
    background-color: #1d4e9e;
}
.skip-link {
    color: white;
    padding: 10px;
    text-decoration: none;
}
#maincontent{
    margin-top:100px;
}
body{
    font-family: 'Open Sans', sans-serif;
}
#inquiryForm {
    max-width: 500px;
    background-color: #ffffff;
    margin: 40px auto;
    padding: 40px;
    box-shadow: 0px 6px 12px rgb(0 0 0 / 9%);
    border-radius: 12px;
}
#inquiryForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: .9em;
}
#inquiryForm .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
}
#inquiryForm .form-header .stepIndicator.active {
    font-weight: 600;
}
#inquiryForm .form-header .stepIndicator.finish {
    font-weight: 600;
    color: #0463ca;
}
#inquiryForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #e2f5fc;
    border-radius: 50%;
    border: 3px solid #e2f5fcd9;
}
#inquiryForm .form-header .stepIndicator.active::before {
    background-color: #74b1da;
    border: 3px solid #c9e2f2;
}
#inquiryForm .form-header .stepIndicator.finish::before {
    background-color: #0463ca;
    border: 3px solid #0476CA;
}
#inquiryForm .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
}
#inquiryForm .form-header .stepIndicator.active::after {
    background-color: #e2f5fc;
}
#inquiryForm .form-header .stepIndicator.finish::after {
    background-color: #0463ca;
}
#inquiryForm .form-header .stepIndicator:last-child:after {
    display: none;
}

#inquiryForm input.invalid {
    border: 1px solid #ffaba5;
}
#inquiryForm .step {
  display: none;
}
#inquiryForm .form-footer{
    overflow:auto;
    gap: 20px;
}
#inquiryForm .form-footer button{
    background-color: #0463ca;
    border: 1px solid #0463ca !important;
    color: #ffffff;
    border: none;
    padding: 13px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin-top: 5px;
}
#inquiryForm .form-footer button:hover {
  opacity: 0.8;
}

#inquiryForm .form-footer #prevBtn {
    background-color: #fff;
    color: #0463ca;
}



/* Remove the default list style (bullet) */
.no-bullet {
    list-style: none;
}
  
/* Remove any additional space around the list items */
.no-bullet li {
    margin: 0;
    padding: 0;
}

.btn-default{
    background-color: #FFF;
    color: #000;;
}
 
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { 
    background-color: #000000;
    color:#FFF;
    border-color: #31347B;
}
  