@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out
}

body {
    margin: 0;
    padding: 0;
    font-family: ui-sans-serif, system-ui, sans-serif;
    color: #1f2937;
    font-display: swap
}

.fixed {
    position: fixed
}

.top-0 {
    top: 0
}

.left-0 {
    left: 0
}

.w-full {
    width: 100%
}

.z-50 {
    z-index: 50
}

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

.text-white {
    color: #fff
}

.hidden {
    display: none
}

.max-w-7xl {
    max-width: 80rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.flex {
    display: flex
}

.justify-between {
    justify-content: space-between
}

.items-center {
    align-items: center
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.font-bold {
    font-weight: 700
}

.bg-\[#1d3244\] {
    background-color: #1d3244
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}

.grid {
    display: grid
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.text-center {
    text-align: center
}

.gap-8 {
    gap: 2rem
}

.space-x-1>:not(:last-child) {
    margin-right: 0.25rem
}

.h-10 {
    height: 2.5rem
}

.space-x-6>:not(:last-child) {
    margin-right: 1.5rem
}

.hover\:text-\[#8ED3F0\]:hover {
    color: #8ed3f0
}

.bg-white {
    background-color: #fff
}

.text-\[#052E52\] {
    color: #052e52
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
}

.rounded-xl {
    border-radius: 0.75rem
}

.font-semibold {
    font-weight: 600
}

.shadow {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)
}

.hover\:bg-\[#052E52\]:hover {
    background-color: #052e52
}

.hover\:text-white:hover {
    color: #fff
}

@media(min-width:768px) {
    .md\:block {
        display: block
    }

    .md\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr))
    }

    .md\:justify-start {
        justify-content: flex-start
    }

    .md\:col-span-6 {
        grid-column: span 6 / span 6
    }
}