body {
    font-family: "Inter", serif;
}

header {
    background-color: #fff;
}

#header {
    min-height: 95px;
}

.logo {
    width: 300px;
}

.nav-pills .nav-link {
    background-color: #ebebeb;
    color: #656565;
    border-radius: 0;
    margin-right: 10px;
    margin-right: 10px;
    padding: 10px 30px;
}

.nav-pills .nav-link.active {
    background-color: #295fe6;
    border-radius: 0;
}
.bg-secondary{
    background-color: #f7f8fa !important;
}
@media (max-width: 576px) {

    .nav-pills .nav-link {
        padding: 8px 15px;
    }

    header {
        position: sticky;
        z-index: 999;
        top: 0;
        background-color: #fff;
    }

    #header {
        min-height: 75px;
    }

    .logo {
        width: 185px;
    }
}

.action-buttons a {
    border-radius: 10px !important;
}

.container {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
}

footer .nav-link.active,
footer .nav-link:hover {
    color: #2563eb !important;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.nav-link {
    color: #11181c;
    transition: color 0.3s, font-weight 0.3s;
}

@media(min-width:1200px) {

    footer .nav-link.active::after,
    footer .nav-link:hover::after {
        content: '';
        display: block;
        width: 70%;
        height: 2px;
        background-color: #2563eb;
        position: absolute;
        bottom: 0px;
        left: 18px;
        animation: slideIn 0.3s forwards;
    }

    @keyframes slideIn {
        from {
            width: 0;
        }

        to {
            width: 70%;

        }
    }
}

.btn-secondary {
    color: black;
    /*    border-radius: 0px;*/
    background-color: #f1f5ff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

.btn-secondary:hover {
    color: black;
    background-color: rgba(195, 202, 216, .3);
}

.btn-primary {
    background-color: #2e69ff;
}

input[type='text'] {
    margin-bottom: 20px;
}

.was-submitted input:invalid,
.was-submitted select:invalid {
    border: 2px solid #e94c3d !important;
    outline: none;
}

.form-control,
.form-check,
.form-select {
    background-color: #f1f5ff;
    border: 0.8px solid #b8bdc9;
    padding: 7px;
    padding-left: 12px !important;
    border-radius: 0;
    height: 40px;
}

.form-control,
.form-check {
    margin-bottom: 12px;
}

label {
    font-family: "Inter", sans-serif;
    font-weight: 500 !important;
    margin-left: 3px;
    margin-bottom: 5px;
    display: inline-block;
    word-break: break-word;
    font-weight: 600;
    color: #2c3345;
    font-size: 15px;
}

.form-check-label {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label span {
    color: red;
}

.checkbox {
    margin-left: 20px
}

hr {
    margin: 15px 0px;
}

.sub-label {
    font-size: 13px;
    margin-top: 10px;
    margin-left: 2px;
    display: block;
    word-break: break-word;
}

#pills-tab {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#pills-tab .nav-item {
    flex-shrink: 0;
}

.remove-applicant-btn,
.remove-benf-owner-btn {
    position: absolute;
    right: 10px;
    bottom: 11px;
    display: none;
}

.card-header,
.card-footer {
    background-color: #f1f5ff;
}

#card-header-title {
    color: #303749;
    font-family: "Inter", sans-serif;
    font-weight: 600 !important;
}

#card-header-desc {
    font-family: "Inter", sans-serif;
    font-size: .875em !important;
    color: #57647e;
    font-weight: 500;
    line-height: 1.6;
}

@media(max-width: 768px) {
    footer .text p {
        font-size: 10px !important;
        margin-bottom: 0px;
    }

    footer .nav-link,
    footer .nav-link.active {
        text-decoration: underline;
        color: #44494c !important;
        padding: 2px;
        font-weight: 400;
    }

    footer .container hr.mt-5 {
        margin-top: 1rem !important;
    }
}


.overlay {
    width: 100%;
    height: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 70px;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 8%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* From Uiverse.io by Cevorob */
.burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: block;
}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666666;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.burger input:checked~span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}

.burger input:checked~span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-down {
    animation: slideDown 0.5s ease-out;
}