/*! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com */
*,
*::before,
*::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;
}
body {
    margin: 0;
    line-height: inherit;
}
hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}
abbr:where([title]) {
    text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}
a {
    color: inherit;
    text-decoration: inherit;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp,
pre {
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}
:-moz-focusring {
    outline: auto;
}
:-moz-ui-invalid {
    box-shadow: none;
}
progress {
    vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
summary {
    display: list-item;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0;
}
fieldset {
    margin: 0;
    padding: 0;
}
legend {
    padding: 0;
}
ol,
ul,
menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
textarea {
    resize: vertical;
}
input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af;
}
button,
[role="button"] {
    cursor: pointer;
}
:disabled {
    cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle;
}
img,
video {
    max-width: 100%;
    height: auto;
}
[hidden] {
    display: none;
}

/* Layout */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.flex-1 {
    flex: 1 1 0%;
}

.shrink-0 {
    flex-shrink: 0;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Width & Height */
.w-full {
    width: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

/* Max Width */
.max-w-\[1280px\] {
    max-width: 1280px;
}

.max-w-\[720px\] {
    max-width: 720px;
}

/* Spacing */
.px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-16 {
    padding-top: 4rem;
}

/* Space */
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 2rem;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.75rem;
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 1.5rem;
}

/* Colors - Background */
.bg-white {
    background-color: #ffffff;
}

.bg-transparent {
    background-color: transparent;
}

.bg-\[\#043BC8\] {
    background-color: #043bc8;
}

/* Colors - Text */
.text-\[\#043BC8\] {
    color: #043bc8;
}

.text-\[5rem\] {
    font-size: 4.75rem;
}

.text-\[12px\] {
    font-size: 12px;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

/* Typography */
.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-\[0\.1em\] {
    letter-spacing: 0.1em;
}

.leading-none {
    line-height: 1;
}

.uppercase {
    text-transform: uppercase;
}

/* Borders */
.border {
    border-width: 1px;
}

.border-none {
    border-style: none;
}

.border-white {
    border-color: #ffffff;
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.rounded-full {
    border-radius: 9999px;
}

/* Effects */
.opacity-70 {
    opacity: 0.7;
}

/* Transitions */
.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Interactivity */
.cursor-default {
    cursor: default;
}

.select-none {
    user-select: none;
    -webkit-user-select: none;
}

/* Placeholder */
.placeholder-\[\#043BC8\]\/30::placeholder {
    color: rgba(4, 59, 200, 0.3);
}

/* Responsive - sm: */
@media (min-width: 640px) {
    .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) {
        margin-top: 3rem;
    }

    .sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

/* Custom widths */
.w-\[3rem\] {
    width: 3rem;
}
