@import url('../fonts/hkgrotesk/stylesheet.css');
@import url('../fonts/larken/stylesheet.css');

body {
    top: 0;
    position: relative;
    font-family: 'HK Grotesk';
    font-weight: normal;
    overflow-x:hidden;
    font-style: normal;
}
body.modal-open {
    overflow: hidden !important;
    padding-right: 0px !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Larken';
    font-weight: 300;
    font-style: normal;
}
p {
    font-size: 16px;
}
p,
small,
a {
    font-family: 'HK Grotesk';
    font-weight: normal;
    font-style: normal;
}
a {
    text-decoration: none !important;
}
.text-primary {
    color: #041C2C !important;
}
.btn-primary {
    background-color: #041C2C !important;
    color: #fff !important;
    border: 1px solid #041C2C !important;
    border-radius: 5px !important;
}
.fs-18 {
    font-size: 18px;
}
.btn-white {
    background-color: #fff !important;
    color: #041C2C !important;
    border: 1px solid #fff !important;
    border-radius: 5px !important;
}
.form-control:focus, button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}
.mainBg {
    background: #041c2c;  /* fallback colour. Make sure this is just one solid colour. */
    background: url("../images/banner.webp");
    background: url("../images/banner.webp"); /* The least supported option. */
    background-attachment: fixed;
    background-size: cover; 
    background-repeat: no-repeat;
    width: 100%;
    background-position: bottom left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:100% !important;
    min-height:80vh !important;
}
.bannerHead h1 {
    font-size: 3.5rem;
}
.procesBox {
    background-color: #F2F7FA;
    border: 1px solid #6c757d21;
    padding: 30px;
    padding-top: 50px;
    position: relative;
    margin-bottom: 10px;
}
.procesBox small {
    color: #6c757d;
    font-size: 12px;
}
.procesBox .text-sec {
    font-size: 14px;
}
.procesBox .iconCont {
    position: absolute;
    top: -20%;
    left: 7%;
    width: 70px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 70px;
    background-color: #041C2C;
    border-radius: 50%;
}

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    background: white;
    box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.075);
    padding: 20px;
    z-index: 1;
    border-radius: 5px;
}

#msform fieldset {
    border: 0 none;
    box-sizing: border-box;
    width: 90%;
    margin: auto;
    position: relative;
}
.bg-gold {
    background-color: #fafaf7;
}
.modalForm  {
    background: white;
    box-shadow: none !important;
    padding: 0px !important;
}
.modalForm  fieldset {
    width: 100% !important;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea, #msform select {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 100% !important;
    font-size: 15px;
    border-color: #6c757d9c !important;
}

#msform input:focus, #msform textarea:focus ,#msform select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #041C2C;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}
.select2-dropdown {
    z-index:9999 !important;
}

/*buttons*/
#msform .action-button {
    width: 100px !important;
    background: #041C2C;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 0px 5px;
    margin-top:20px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: none !important;
}

#msform .action-button-previous {
    width: 100px !important;
    background: #F2F7FA;
    font-weight: bold;
    color: #041C2C;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 0px 5px;
    margin-top:20px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: none !important;
}

/*headings*/
.fs-title {
    font-size: 1.3rem;
    color: #041C2C;
    margin-bottom: 5px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin: 15px 0px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    padding-left: 0;
}

#progressbar li {
    list-style-type: none;
    color: #6c757d;
    text-transform: uppercase;
    font-size: 11px;
    width: 50%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 28px;
    height: 28px;
    line-height: 28px;
    display: block;
    font-size: 15px;
    color: #041C2C;
    background: #F2F7FA;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #F2F7FA;
    position: absolute;
    left: -50%;
    top: 13px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    padding: 12px !important;
    border-radius: 5px !important;
    width: 100% !important;
    font-size: 15px;
    border-color: #6c757d9c !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important; 
    line-height: 22px !important;
        text-align: start  !important;
    padding-left: 0px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
}
.select2-container .select2-selection--single {
    height: 50px !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000 !important;
}
.select2-container {
    width: 100% !important;
    margin-bottom: 20px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #474747 transparent transparent transparent !important;
    margin-left: -10px !important;
    margin-top: -3px !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 0px solid #aaa;
    outline-offset: 0px !important;
    box-shadow: none !important;
    outline-color: #6c757d9c !important;
    padding: 4px 10px !important;
}
/*marking active/completed steps blue*/
/*The number of the step and the connector before it = blue*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #041C2C;
    color: white;
}

.iti--allow-dropdown {
    width: 100%;
}
.bg-lightBlue {
    background-color: #F2F7FA;
}
.bg-primary {
    background-color: #041C2C !important;
    color: #fff;
}
.fs-11 {
    font-size: 11px;
}
label {
    display: inline-block;
    font-size: 14px;
}
.form-control::placeholder {
    font-size: 14px !important;
}

.valuationForm {
    border: 1px solid #6c757d9c;
    padding: 3rem;
    border-radius: 4px !important;
}
.valuationForm .form-control{
    border: 1px solid #6c757d9c;
    margin-bottom: 2rem;
    padding: 13px 20px;
    border-radius: 4px !important;
}
.valuationForm .labelMain {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 15px;
}
.valuationForm  .form-check-input { 
    width: 1.2rem;
    height: 1.2rem;
    margin-top: .1em;
    border: 1px solid #6c757d9c;
}
.valuationForm .form-check-label {
    font-size: 16px;
}
.valuationForm .form-check-input:checked {
    background-color: #041C2C;
    border-color: #041C2C;
}
.form-check-input:focus {
    border-color: #041C2C !important;
    outline: 0 !important;
    box-shadow: none !important;
}
/* CSS */
.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.step-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-sizing: border-box;
    border: none;
    margin: 0;
    background-color: #fff;
    transition: .4s;
    display: inline-flex;
    /* padding-block: 1px; */
    align-items: center;
    padding-inline: 6px;
    text-align: center;
    line-height: inherit;
}
.step-button.active, .step-button.done {
    background-color: #041C2C;
    color: #fff;
}
.step-button.active img, .step-button.done img {
    filter: brightness(0) invert(1);
}

.step-item {
    z-index: 10;
    text-align: center;
    margin-bottom: 10px;
}
.p-relative {
    position: relative;
}

#progress {
  -webkit-appearance:none;
    position: absolute;
    width: 95%;
    z-index: 5;
    height: 5px;
    margin-left: 18px;
    margin-bottom: 18px;
}

/* to customize progress bar */
#progress::-webkit-progress-value {
    background-color: #041C2C;
    transition: .5s ease;
}

#progress::-webkit-progress-bar {
    background-color: #fff;

}
.scrollspy-example {
    height: 350px;
    scroll-behavior: smooth;
    overflow-x:none;
    overflow-y: scroll;
}
.scrollspy-example::-webkit-scrollbar{display: none !important;scrollbar-width: none;  /* Firefox */}
.scrollspy-example::-webkit-scrollbar-thumb{
   display: none !important;
   scrollbar-width: none;  /* Firefox */
}
@media screen and (max-width: 720px) {
    #msform fieldset {
        width: 100%;
    }
    .fs-12 {
        font-size: 12px;
    }
    .valuationForm {
        padding: 1rem !important;
    }
    .steps {
        display: block;
    }
    #progress {
        display: none;
    }
    .step-item {
        margin-bottom: 10px !important;
    }
    .scrollspy-example {
        height: 100vh !important;
    }
    .bannerHead h1 {
        font-size: 2rem;
    }
}