/*! 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%;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

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

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

.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;
}

.pt-\[200px\] {
    padding-top: 200px;
}

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

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

.ml-4 {
    margin-left: 1rem;
}

/* Gap */
.gap-x-16 {
    column-gap: 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-\[\#002FA7\] {
    background-color: #002FA7;
}

/* Colors - Text */
.text-\[\#002FA7\] {
    color: #002FA7;
}

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

.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;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

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

.transform {
    transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
}

/* Hover States */
.hover\:opacity-100:hover {
    opacity: 1;
}

.hover\:scale-110:hover {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
}

/* Active States */
.active\:scale-95:active {
    --tw-scale-x: 0.95;
    --tw-scale-y: 0.95;
    transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
}

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

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

/* Placeholder */
.placeholder-\[\#002FA7\]\/30::placeholder {
    color: rgba(0, 47, 167, 0.3);
}

/* Responsive - sm: */
@media (min-width: 640px) {
    .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) {
        margin-top: 3rem;
    }
    
    .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
        margin-left: 1.5rem;
    }
    
    .sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

/* Responsive - md: */
@media (min-width: 768px) {
    .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
        margin-left: 1.5rem;
    }
}

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