* {
    font-family: 'Montserrat', sans-serif;
}

/* form header css start */

header nav .nav-ul-div .cta_num .number {
    font-family: 'Roboto', sans-serif;
}

label.error {
    color: #ff0000;
    /* position: absolute; */
    /* bottom: -28px; */
    /* left: 0; */
    font-weight: 500;
    font-size: 15px;
}

@media (max-width: 991px) {
    .hambar {
        display: none;
    }

    header nav .nav-ul-div {
        margin-right: 0;
    }

    header nav .nav-ul-div .cta_num {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 15px;
        border-radius: 24px;
        border: 1px solid #BDA8BD;
        font-size: 16px;
        color: #BDA8BD;
        font-weight: 600;
    }

    header nav .nav-ul-div .cta_num:hover {
        background-color: #BDA8BD;
        color: var(--white);
    }

    header nav .nav-ul-div .cta_num:hover img {
        filter: brightness(0) invert(1);
    }

    header nav .nav-ul-div .cta_num .number {
        display: none;
    }

    header nav .nav-ul-div .cta_num img,
    header nav .nav-ul-div .cta_num .text {
        display: block;
    }
}

/* form header css start */

/* Main form section css start */
.step-form-sec {
    padding: 40px 0;
    min-height: calc(100svh - 145px);
}

.step-form-sec .wizard {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
}

.step-form-sec .wizard h2 {
    font-weight: 700;
    font-size: 36px;
    color: var(--black);
}

.step-form-sec .tab-content .tab-pane {
    display: none;
}

.step-form-sec .tab-pane.active {
    display: block;
}

.step-form-sec .form-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
    min-height: 580px;
}

.step-form-sec .form-content .select-all,.select-sex {
    font-weight: 400;
    font-size: 18px;
    color: var(--black);
    display: block;
    margin-top: 12px;
}

.step-form-sec .step-form-inner {
    display: grid;
    gap: 24px;
    position: relative;
}

.step-form-sec .step-form-inner.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.step-form-sec .step-form-inner.col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.step-form-sec .step-form-inner.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.step-form-sec .form-field {
    position: relative;
    text-align: center;
    cursor: pointer;
}

.step-form-sec .form-field input[type=radio],
.step-form-sec .form-field input[type=checkbox] {
    position: absolute;
    top: 12px;
    right: 12px;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 6px;
    border: 1px solid #EAD3EA;
    margin: 0;
    cursor: pointer;
}

.step-form-sec .form-field input[type=radio]:focus,
.step-form-sec .form-field input[type=checkbox]:focus {
    outline: 2px solid #BDA8BD;
}

.step-form-sec .form-field input[type=radio]::after,
.step-form-sec .form-field input[type=checkbox]::after {
    position: absolute;
    content: '';
    background-color: var(--white);
    width: 8px;
    height: 8px;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.step-form-sec .form-field .form-label {
    width: 100%;
    padding: 24px;
    cursor: pointer;
    margin: 0;
    text-align: center;
    height: 100%;
    width: 100%;
    background-color: #FDF7FD;
    display: block;
    border-radius: 12px;
    min-height: 116px;
    align-content: center;
}

.step-form-sec .form-field .form-label img {
    width: auto;
    height: 48px;
    object-fit: cover;
    margin-bottom: 24px;
}

.step-form-sec .form-field .form-label p {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    line-height: 120%;
    margin-bottom: 0;
}

.step-form-sec .form-field input:checked+.form-label {
    background-color: #BDA8BD;
}

.step-form-sec .form-field input:checked+.form-label img {
    filter: invert(1);
}

.step-form-sec .form-field input:checked+.form-label p {
    color: var(--white);
}

.step-form-sec .form-field input[type=radio]:checked::after,
.step-form-sec .form-field input[type=checkbox]:checked::after {
    display: block;
}

.step-form-sec .form-group .col-2 {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

.step-form-sec .form-group .form-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: var(--black);
    display: block;
    margin-bottom: 12px;
}

.step-form-sec .form-group :where(input, select) {
    border: 1px solid #DEDEDE;
    background-color: var(--white);
    padding: 16px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: var(--black);
    width: 100%;
    appearance: none;
}

.step-form-sec .form-group :where(input, select):focus {
    border-color: var(--black);
}

.step-form-sec .form-group select {
    background-image: url('../images/down-arrow.svg');
    background-size: 20px 20px;
    background-position: 97% center;
    background-repeat: no-repeat;
}

.step-form-sec .tab-content .form-btn {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    padding: 16px;
    background-color: #4A4A4A;
    color: var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    border: 0;
    outline: 0;
}

.step-form-sec .tab-content .form-btn:is(:hover, :focus) {
    background-color: #BDA8BD;
}

.terms-text,
.terms-text a {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--black);
}

.terms-text span {
    margin-bottom: 12px;
    display: block;
}

.terms-text a {
    text-decoration: underline;
}

.progress-bar-wrapper {
    width: 100%;
    margin-bottom: 36px;
}

.progress-bar {
    background-color: #FAEDFA;
    height: 4px;
    border-radius: 0;
    overflow: hidden;
}

.progress-bar-fill {
    background-color: #BDA8BD;
    height: 100%;
    width: 11.11%;
    transition: width 0.3s ease;
}

.progress-bar-wrapper .prev {
    display: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--black);
    border: 0;
    outline: 0;
    background-color: transparent;
    margin-top: 12px;
    padding-left: 20px;
    cursor: pointer;
    position: relative;
}

.progress-bar-wrapper .prev::before {
    position: absolute;
    content: '';
    background-image: url('../images/down-arrow.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 20px;
    transform: rotate(90deg);
    left: -6px;
    top: -2px;
    width: 20px;
    height: 20px;
}

.form-group label.error {
    margin-top: 5px;
    display: inline-block;
    font-size: 14px;
}

@media (max-width: 767px) {
    .step-form-sec {
        min-height: auto;
    }

    .progress-bar-wrapper {
        margin-bottom: 24px;
    }

    .step-form-sec .wizard h2 {
        font-size: 24px;
    }

    .step-form-sec .form-content .select-all {
        font-size: 14px;
    }

    .step-form-sec .tab-content .form-btn,
    .step-form-sec .form-group .form-label {
        font-size: 16px;
    }

    .step-form-sec .step-form-inner.col-2,
    .step-form-sec .step-form-inner.col-3,
    .step-form-sec .step-form-inner.col-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .step-form-sec .form-field .form-label {
        padding: 16px 40px 16px 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        min-height: auto;
    }

    .step-form-sec .form-field .form-label img {
        height: 24px;
        flex: 0 0 24px;
        margin-bottom: 0;
    }

    .step-form-sec .form-field input[type=radio],
    .step-form-sec .form-field input[type=checkbox] {
        top: 50%;
        transform: translateY(-50%);
        right: 12px;
    }

    .step-form-sec .form-content {
        gap: 24px;
        min-height: auto;
    }
}

/* Main form section css end */