body {
    padding-bottom: 9rem;
}

.bg-light {
    background-color: #fff !important;
}

.btn-blur {
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}

section.home-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.home-content {
    margin-bottom: 104px;
    padding: 100px 0 0;
}

.blue-border {
    border-top: 5px solid #007cc3;
    border-bottom: 5px solid #007cc3;
}

section.home-hero video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    /* filter: blur(4px); */
}

.btn-green {
    background-color: #c2e25d;
}

.btn-green:hover {
    background-color: #a9c650;
}

footer {
    width: 100%;
    background-color: #007CC3;
    border-top: 5px solid #003896;
    border-width: 5px;
    color: white;
    text-align: center;
}

#subNav.nav-tabs .nav-link {
    color: white;
}

#subNav.nav-tabs .nav-link.active {
    color: black;
    font-weight: bold;
    background-color: #f5f5f5;
}

@media (min-width: 1080px) {
    [id^="altEditor-modal-"]>div:first-of-type {
        max-width: 60%;
    }
}
@media (min-width: 575.98px) {
     .btn-md-sm{
            padding: 0.25rem 0.5rem;
            font-size: 0.875rem;
            line-height: 1.5;
            border-radius: 0.2rem;
        }
}
[id^="alteditor-row-"] {
    margin-bottom: -1rem !important;
}

[id^="altEditor-delete-"] .form-group {
    margin-bottom: 0rem !important;
}

.step-container {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
    margin: 20px 0;
    padding: 1em 0;
}

.step {
    text-align: center;
    width: 100%;
}

.step-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #007cc3;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #000;
    display: inline-block;
    margin-bottom: 10px;
}

.step-active .step-circle {
    background-color: #007cc3;
    color: #fff;
}

.step-label {
    display: block;
    font-size: 14px;
}

.step-section {
    display: none;
}

.step-section.active {
    display: block;
}

div:has(~ div > input[data-special='requiredIndicator']:required:enabled:read-write) label::after,
div:has(~ div > select[data-special='requiredIndicator']:required:enabled) label::after,
.required-symbol::after {
    content: "*";
    color: red;
}