*,
:after,
:before {
    box-sizing: border-box
}

:focus {
    outline: none
}

blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
p {
    margin: 0
}

h1, h2 {
    font-family: Mont;
}

h2 {
    font-size: 36px;
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    background: #fff
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img,
picture {
    max-width: 100%;
    display: block
}

button,
input,
select,
textarea {
    font: inherit;
    border: inherit
}

@media(prefers-reduced-motion:reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *,
    :after,
    :before {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

* {
    font-family: "Inter";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: normal;
}

body,
html {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: clip
}

button {
    cursor: pointer;
    border: 0;
    background-color: transparent;
    color: inherit
}

h1 {
    color: #00023d;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

ol,
ul {
    list-style: none
}

a {
    text-decoration: none;
    color: inherit
}

.loaderCnt {
    z-index: 9999999 !important;
    background-color: #f6f5ff;
    position: fixed;
    height: 150vh;
    width: 100vw;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50vh
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    border: 5px solid #00023d !important;
    border-bottom-color: transparent;
    border-radius: 50% !important;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 99999999 !important
}

.loader:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #f6f5ff;
    top: 0
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

#nprogress {
    position: relative;
    z-index: 9999999
}