html {
    font-size: 13px;
}

@media (min-width: 768px) {
    html {
        font-size: 13px;
    }
}

.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: 60px;
}

#loaderInner,
.loader.loaderInner {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--k-theme-loader-overlay, rgba(255, 255, 255, 0.88));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden !important;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

#loaderInner.is-hiding,
.loader.loaderInner.is-hiding {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#loaderInner .ui.image,
.loader.loaderInner .ui.image {
    width: min(220px, 46vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

#loaderInner .ui.image img,
.loader.loaderInner .ui.image img {
    width: 100%;
    max-width: 220px;
    height: auto;
    animation: websites-loader-bounce 1.45s ease-in-out infinite;
    filter: drop-shadow(0 16px 36px rgba(25, 47, 89, 0.18));
}

@keyframes websites-loader-bounce {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-14px) scale(1.02);
    }
}


.mb2{
    margin-bottom:2em!important;
}

.p2 {
    padding: 2em 2em;
}

