* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section.main-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}



.tabs-side {
    background-image: url("../images/tabs-bg.webp");
    background-size: cover;
    background-position: center;
}

.form-group {
    margin-bottom: 15px;
}

.nav-fill > .nav-link {
    text-align: left;
}

.nav-pills .nav-link {
    color: #ffffff;
    font-weight: 600;
}

    .nav-pills .nav-link span.number {
        width: 32px;
        height: 32px;
        display: inline-grid;
        text-align: center;
        align-items: center;
        margin-right: 10px;
        border: 2px solid #00c583;
    }

    .nav-pills .nav-link.active span.number {
        background-color: #ffffff;
        color: black;
    }


p {
    color: #0000009c;
    font-weight: 500;
}

h2 {
    font-weight: 700;
}

.card-footer {
    background: transparent;
    padding: 20px 0px;
}

.thank-you {
    width: 125px;
    max-width: 100%;
    margin: auto;
}

#signatureCanvas {
    max-width: 100%;
    height: 150px;
}

form input {
    max-width: 100%;
}

.tabs-side::after {
    width: 100%;
    height: 100%;
    content: '';
    background: #1c1c1c38;
    top: 0;
    position: absolute;
    left: 0;
}

.z-index {
    z-index: 1;
}

.row.form-row {
    flex-wrap: nowrap;
    padding: 15px;
    background-color: #fff;
    gap: 30px;
}

a.nav-link.tab-pills.active {
    border: 2px solid #35c16d;
    background: #35c16d;
    color: white !important;
}

a.nav-link.tab-pills {
    border: 2px solid #fff;
    background: #ffffff;
    color: #000;
}

.card-body {
    padding: 0 !important;
}

@media (max-width: 992px) {
    .nav-pills .nav-link {
        display: inline;
        padding: 10px;
    }

    section.main-sec {
        height: auto;
    }

    .row.form-row {
        flex-wrap: wrap;
        min-height: auto;
    }

    .radius-15 {
        border-radius: 0;
    }

    .tabs-side {
        background-image: none;
        box-shadow: 0 0 10px #00000024;
        border-radius: 6px;
    }

        .tabs-side::after {
            display: none;
        }

    a.nav-link.tab-pills {
        border: 2px solid #fff;
        background: #0000000d;
        color: #000;
        border-radius: 6px;
    }

    .row.form-row {
        --bs-gutter-x: 0 !important;
    }
}


@media (min-width: 575px) {
    .radius-15 {
        border-radius: 15px;
    }
}

@media (max-width: 575px) {

    .card-body {
        padding: 0px;
    }

    .field-header {
        padding: 0px;
    }

    a.nav-link.tab-pills {
        width: 100%;
    }
}


@media(min-width:700px) {
    #steps-form {
        margin-top: 20% !important;
    }
}