@keyframes mainteIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.w-full{
    width: 100%;
}

.flex{
    display: flex;
    justify-content: space-around;
}

.img-logo{
    width: 200px;
}

@media screen and (max-width: 480px) {
    .flex {
            display: flex;
            justify-content: space-between;
        }
    .img-logo {
            width: 150px;
        }
}


.m-4{
    margin: 1rem;
}

.ml-auto{
    margin-left: auto;
}

.mainte {
    position: fixed;
    height: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
    z-index: 1;
}

.mainte a {
    cursor: pointer;
    color: var(--mt-accent, #e6e943);
}

.mainte .i {
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-width: 2;
    width: var(--mt-icon-size, 26px);
    height: var(--mt-icon-size, 26px);
    display: block;
}

.mainte-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: var(--mt-content, 728px);
    gap: var(--mt-gap, 1.5rem);
    position: relative;
    z-index: 1;
}

.mainte-content *:not(:where(svg, svg *)) {
    margin: 0;
    opacity: 0;
    transform: translateY(var(--mt-aty, -2rem));
    animation: mainteIn 1s ease forwards;
}

.mainte-title {
    font-weight: 500;
    color: var(--mt-color-title, #fff);
    font-size: var(--mt-title-size, 2rem);
}

.mainte-text {
    color: var(--mt-color-text, #fff);
    font-size: var(--mt-text-size, 1.125rem);
    animation-delay: 1s;
    line-height: 1.5;
    --mt-aty: 0;
}

.mainte-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    --mt-aty: 2rem;
}

.mainte-social>*:nth-child(odd) {
    animation-delay: 0.3s;
}

.mainte-social-item {
    transition: color var(--mt-transition, 0.3s);
}

.mainte-social-item:hover {
    color: #fff;
}

@keyframes wave {
    to {
        transform: rotate(360deg);
    }
}

.wave {
    --wave-size: 380rem;
    --wave-color: #0d8e94;
    width: 100%;
    position: absolute;
    overflow: hidden;
    min-height: 100vh;
    inset: 0;
    pointer-events: none;
}

.wave-item,
.wave-item::after,
.wave-item::before {
    content: "";
    position: absolute;
    opacity: var(--wave-opacity);
    width: var(--wave-size);
    height: var(--wave-size);
    background: var(--wave-color);
    transform-origin: 48% 50%;
    border-radius: 46%;
    animation: wave var(--wave-duration, 15s) infinite linear;
    pointer-events: none;
}

.wave-item {
    top: 75%;
    left: 50%;
    margin-left: calc((var(--wave-size) / 2) * -1);
}

.wave-item::after {
    --wave-duration: 28s;
    --wave-opacity: .5;
}

.wave-item::before {
    --wave-duration: 20s;
    --wave-opacity: .1;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--mt-bg, rgb(22 78 99));
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}