html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 20px;
}

.bg-cc-main {
    background-color: #22436b;
}

#scroll-btn {
    opacity: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #0d6efd;
    position: fixed;
    bottom: 3%;
    right: 1.5%;
    border: 2px solid #fff;
    border-radius: 50%;
    font: bold 20px monospace;
    transition: opacity 0.5s, transform 0.5s;
}

    #scroll-btn.show {
        opacity: 1;
        transition: opacity 1s, transform 1s;
    }

.navbar .nav-link {
    color: white !important;
}

    .navbar .nav-link.active,
    .navbar .nav-link:hover {
        color: #ddd !important;
    }

.conceal {
    display: none;
}

.navbar .nav-link {
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

    .navbar .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .navbar .nav-link.active {
        background-color: #1a2e4a;
        border-radius: 0.5rem;
    }

.cc-seal {
    height: 70px;
    max-height: 70px;
    width: auto;
    aspect-ratio: auto;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .cc-seal {
        height: 60px;
        max-height: 60px;
    }
}

.nav-pills .nav-link.active {
    background-color: #22436b !important;
}

.nav-pills .nav-link {
    color: #22436b;
    transition: all 0.2s ease-in-out;
}

    .nav-pills .nav-link:hover {
        background-color: #dce6f3;
    }
