:root {
    --bs-border-radius: 0.2rem;
    --bs-body-font-family: 'Inter', sans-serif;
}

.hero {
    background: url('/images/header.jpg') no-repeat center center;
    background-size: cover;
    padding: 8rem 1rem;
    color: white;
    text-align: left;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: bold;
}

.card-icon {
    font-size: 2rem;
}

.gradient-section {
    background: url('/images/btm.jpg') no-repeat center center;
    background-size: cover;
    padding: 3rem 0;
    min-height: 350px;
}

body {
    font-family: var(--bs-body-font-family) !important;
}

.btn-primary {
    background-color: #0f62fe; /* your desired color */
    border-color: #0f62fe;     /* match border too */
}

.btn-primary:hover {
    background-color: #0c4ecb;
    border-color: #0c4ecb;
}

body {
    background-color: #f9fafb;
}

main {
    min-height: calc(100vh - 121px);
}

footer {
    border-top: 1px solid #d3d3d3;
    font-size: 14px;
}


.nav-progress {
    display: flex;
    position: relative;
    justify-content: space-between;
    margin-top: 5em;
    margin-bottom: 5em;
    padding: 0 5em;

    .nav-link {
        width: 150px;
        position: relative;
        color: #222;
        font-size: 0.75em;
        text-align: center;
    }

    .nav-link:before {
        width: 20px;
        height: 20px;
        display: inline-block;
        position: absolute;
        content: ' ';
        left: calc(50% - 10px);
        top: -20px;
        border-radius: 10px;
        outline: 6px solid #f9fafb;
        border: 1px solid #ccc;
        background-color: #f9fafb;
        z-index: 1;
    }

    .nav-link:after {
        width:8px;
        height: 8px;
        display: inline-block;
        position: absolute;
        content: ' ';
        left: calc(50% - 4px);
        top: -14px;
        border-radius: 10px;
        background-color: #ccc;
        z-index: 1;
    }

    .nav-link.active:before {
        background-color: #f9fafb;
        border: 6px solid #0c4ecb;
    }

    .nav-link.active:after {
        content: none;
    }
}

.nav-progress:before {
    width: calc(100% - 150px);
    height: 2px;
    display: inline-block;
    position: absolute;
    content: ' ';
    background-color: #ccc;
    top: -12px;
    left: calc(50% - calc(50% - 74px));
    z-index: 1;
}

.file-input {
    position: relative;

    .progress {
        position: absolute;
        bottom: 0px;
        left: 1px;
        height: 4px;
        background-color: #0c4ecb;
        z-index: 1;
    }
}

.show-print {
    display: none;
}

@media (max-width: 767px) {
    .site-title {
        display: none;
    }

    .nav-progress {
        padding: 0px 1em 0px 3em;
        margin: 1em 0px 2em 0px;
        flex-direction: column;

        &::before {
            left: calc(3em - 3px);
            width: 2px;
            height: 7em;
            top: calc(-0.5em + 2px);
        }

        .nav-link {
            text-align: start;

            &::before {
                top: .5em;
                left: -1em;
            }

            &::after {
                left: calc(-1em + 6px);
                top: 12px;
            }
        }
    }
}

@media print {
    /* All your print styles go here */
    footer,
    .back-btn,
    .nav-user,
    .submit-btn,
    .nav-progress,
    .print-btn,
    .isytihar
    {
        display: none !important;
    }

    .show-print {
        display: inline-block !important;
    }

    html {
        padding: 0px;
        margin: 0px;
        font-size: 11px;
    }

    body {
        background-color: white!important;
    }

    .container {
        max-width: 100%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    * {
        color: #000!important;
    }

    p {
        text-align: justify;
    }

    .site-title {
        display: block;
    }
}