body{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

.navbar-brand{
    font-size: 1.875rem;
    color: #ffcebd;
}
.navbar-brand strong{
    font-weight: 600;
}
.navbar-nav .nav-link{
    color: #fff;
    font-weight: 400;
    font-size: .875rem;
}
.navbar-expand-lg .navbar-nav .nav-link{
    padding: .5rem 1.25rem;
}

.section{
    padding: 3rem 0;
}
.section-header{
    text-align: center;
    margin: 0 0 2rem;
}
.section-header .section-title{
    font-size: 1.875rem;
    font-weight: 400;
}
.section-primary {
    padding: 0;
    color: #ffcebd;
}
.section-primary .section-inner {
    width: 100%;
    max-width: 1400px;
    min-height: 580px;
    margin: 0 auto;
    padding: 5rem 0 30%;
    background-color: #2e26d9;
}
.form-wrapper {
    max-width: 720px;
    margin: 0 auto;
}
.form-wrapper .form-step{
    display: none;
}
.form-wrapper .form-step.active{
    display: block;
}
.form-wrapper .form-header {
    text-align: center;
    margin: 0 0 1.5rem;
}
.form-wrapper .form-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 1.5rem;
}
.form-wrapper .form-header p {
    color: #fff;
    font-size: .875rem;
}

.step-controls-wrapper{
    display: none;
}
.step-controls{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 480px;
    margin: 0 auto 2rem;
}
.step-controls:before{
    content: '';
    position: absolute;
    width: 98%;
    left: 1%;
    top: 50%;
    margin-top: -1.5px;
    height: 3px;
    background-color: #0a083b;
}
.step-controls .step{
    position: relative;
    z-index: 2;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    border: 3px solid #0a083b;
    background-color: #2e26d9;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    line-height: 2.875rem;
    perspective: 100px;
    transition: all .3s ease;
}
.step-controls .step .step-inner{
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.step-controls .step .step-num, .step-controls .step .step-end {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #0a083b;
    color: #2e26d9;
    border-radius: 50%;
    transition: all .3s ease;
}
.step-controls .step .step-end{
    transform: rotateY(180deg);
}
.step-controls .step.active .step-num,
.step-controls .step.finished .step-num,
.step-controls .step.active .step-end,
.step-controls .step.finished .step-end{
    background-color: #2e26d9;
    color: #fff;
}
.step-controls .step.finished .step-inner{
    transform: rotateY(180deg);
}

.form-wrapper .form-step .step-header{
    margin: 0 0 1.5rem;
}
.form-wrapper .form-step .step-title{
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}
.form-wrapper .form-step .form-group{
    margin: 0 auto 1.25rem;
}
.form-wrapper .form-step label{
    font-size: .875rem;
    font-weight: 500;
}
.form-wrapper .form-step .form-control{
    height: 3rem;
    border: solid 2px #979797;
}
.form-wrapper .form-step .step-fields .btn-light{
    height: 3.5rem;
    width: 100%;
    background-color: #ffcebd;
    color: #2e26d9;
    border: 0px;
    font-size: 1.25rem;
    font-weight: 600;
}

.form-switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: .125rem -.125rem 0;
}
.form-switch .form-switcher {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 16.666%;
    flex: 1 0 16.666%;
    padding: 0 .125rem;
}
.form-switch .form-switcher-input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.form-switch .form-switcher-label {
    position: relative;
    display: block;
    border: 2px solid #fff;
    border-radius: 4px;
    background-color: #ffcebd;
    color: #2e26d9;
    padding: .5rem;
    font-size: 1rem!important;
    font-weight: 500;
    text-align: center;
    margin: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}
.form-switch .form-switcher-input:checked + .form-switcher-label{
    border: 2px solid #2e26d9;
}

.custom-control{
    padding-left: 2.5rem;
}
.custom-control-label::before{
    width: 1.25rem;
    height: 1.25rem;
    top: .125rem;
    border: 2px solid #2e26d9;
    left: -2.5rem;
}
.custom-control-label::after {
    position: absolute;
    top: .375rem;
    left: -2.25rem;
    display: block;
    width: .75rem;
    height: .75rem;
    content: "";
    background: no-repeat 50%/50% 50%;
}
.custom-control-input:checked~.custom-control-label::before{
    background-color: #fff;
    border-color: #2e26d9;
}
.custom-control-input:checked~.custom-control-label::after{
    background: #2e26d9!important;
    border-radius: 50%;
}

.form-wrapper .form-step.step-main .step-fields{
    max-width: 290px;
    margin: 0 auto;
}
.form-wrapper .form-step.step-main .step-fields .form-control{
    height: 3.5rem;
    width: 100%;
    border: 0px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border-left: 20px solid #f9e7e0;
}
.form-wrapper .form-step.step-main .step-fields .form-control.not-valid{
    border-color: var(--danger);
}

.form-wrapper .form-step.step-second .step-fields{
    padding: 1.5rem 1rem;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    box-shadow:  0 0 25px 0 rgba(0, 0, 0, 0.2);
}
.form-wrapper .form-step.step-second .step-fields .form-control.not-valid{
    border-color: var(--danger);
}
.form-wrapper .form-step.step-last .step-fields{
    max-width: 485px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.form-wrapper .form-step.step-second .form-controls{
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-wrapper .form-step.step-second .form-controls .btn-next{
    width: auto;
    height: auto;
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem 1.5rem;
}
.form-wrapper .form-step.step-second .form-controls .btn-prev{
    font-size: 1rem;
    font-weight: 500;
    color: #2e26d9;
    padding: .5rem 0;
}

.car-wrapper{
    max-width: 720px;
    margin: -25% auto 0;
}
.car-wrapper img{
    display: block;
    width: 100%;
    height: auto;
}
@media(min-width:768px){
    .section-primary .section-inner{
        padding: 7rem 0 190px;
        border-radius: 0 0 40px 40px;
    }
    .form-wrapper .form-header h1{
        font-size: 2.25rem;
    }
    .form-wrapper .form-step.step-second .step-fields{
        padding: 3rem 4rem;
        border-radius: 40px;
    }
    .car-wrapper{
        max-width: 720px;
        margin: -170px auto 0;
    }
}

@media(max-width:767px){
    .site-footer .company-details{
        font-size: .7rem;
        padding: 0 1rem;
    }
}

.section-features{
    padding: 1rem 0;
}
.section-features .feature{
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
    padding: 2rem 0;
}
.section-features .feature .icon{
    position: relative;
    font-size: 2rem;
    line-height: 1;
    margin: 0 0 1.5rem;
}
.section-features .feature .icon:before{
    content: '';
    position: absolute;
    z-index: -1;
    left: .25rem;
    top: .25rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 5px;
    background-color: #ffcebd;
    transform: rotateZ(45deg);
}
.section-features .feature h4{
    position: relative;
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0 0 2rem;
}
.section-features .feature p{
    font-size: .875rem;
    line-height: 1.8;
    margin-top: auto;
}

.site-footer{
    text-align: center;
    padding: 4.5rem 0;
    background-color: #f6f6f6;
}
.site-footer .logo{
    font-size: 1.875rem;
    margin: 0 0 1.25rem;
    color: #000;
}
.site-footer .nav{
    justify-content: center;
    font-size: .875rem;
    margin: 0 0 1rem;
}
.site-footer .nav .nav-link{
    color: #000;
    font-weight: 500;
    padding: .5rem;
}
.site-footer .nav-social .nav-item{
    margin: 0 .5rem;
}
.site-footer .nav-social .nav-link{
    background-color: #2e26d9;
    color: #fff;
    font-size: 1.25rem;
    line-height: 3rem;
    width: 3rem;
    padding: 0;
    border-radius: 50%;
}
.site-footer .copyright{
    font-size: .875rem;
    font-weight: 500;
    color: #000;
}

.site-footer .company-details{
    font-size: .75rem;
    color: #666;
    line-height: 1.4;
    margin-top: 1rem;
}


.car-info{
    display: none;
    text-align: left;
}
.car-info .reg-number{
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #000;
    background-color: #fff;
    width: 200px;
    border-left: 20px solid #f9e7e0;
    border-radius: 5px;
    padding: .25rem 0;
    margin: 0 0 1rem;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}
.car-info .vehicle{
    
    font-size: 2rem;
    font-weight: 600;
}
.car-info .details-list{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.car-info .details{
    position: relative;
    display: inline-block;
    padding: .25rem 2rem .25rem 0;
    color: #fff;
    font-size: .875rem;
}
.car-info .details:not(:last-child):before{
    content: '';
    position: absolute;
    right: .875rem;
    top: 50%;
    margin-top: -.125rem;
    width: .25rem;
    height: .25rem;
    background-color: #fff;
    border-radius: 50%;
}
.condition-price{
    font-size: 3.5rem;
    font-weight: 500;
    text-align: center;
    margin: 0 0 1.5rem;
}
.condition-field{
    text-align: center;
    margin: 0 0 3rem;
}
.condition-field .condition-values{
    display: flex;
    justify-content: space-between;
}
.condition-field .condition-values span{
    flex: 0 0 33.333%;
    text-align: center;
}
.condition-field .condition-values span:first-child{
    text-align: left;
}
.condition-field .condition-values span:last-child{
    text-align: right;
}
