.loadweb {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    background-color: white;
}

.loadweb>div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid var(--color-text);
    border-right-color: rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    animation: loadweb .5s linear infinite;
}

.intro {
    width: 100%;
    height: 100vh;
    font-size: 16px;
    position: fixed;
    z-index: 99999;
    animation: intrologoHiden 1s 1.5s linear forwards;
    font-family: "Rubik", sans-serif;
}

img {
    width: 100%;
}

.introlofogen {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 50px;
    width: 10%;
    height: max-content;
    animation: logogen .3s linear forwards;
}

.introlofogen img {
    width: 100%;
    animation: logogen .5s .6s linear forwards;
}

.intrologo {
    width: 100%;
    background-color: #0e2141;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100vh;
    animation: intrologoHiden 1s 1s ease-out forwards;
    z-index: 99999;
}

.introone {
    width: 100%;
    background-color: white;
    height: 100vh;
    animation: intrologoHiden 1s 1.3s ease-out forwards;
    z-index: 99999;
}

.intrologo h2 {
    color: var(--color-text);
    font-weight: 600;
    font-size: 4em;
    transition: all .3s linear;
}

.intrologo p {
    color: white;
    font-size: 0;
    margin: 0 10px;
    animation: introh2 0.5s 0.4s linear forwards;
    font-weight: 600;
}

.intrologo span {
    color: white;
    font-size: 0;
    animation: introh2 0.5s 0.6s linear forwards;
    font-weight: 600;
}

.intrologo>div {
    display: flex;
    animation: introopacity 0.5s 1.1s linear forwards;
    align-items: center;
}

@media (max-width: 640px) {
    .intrologo>div {
        flex-direction: column;
        justify-content: center;
    }

    .introlofogen {
        width: 40%;
    }
}

@keyframes intrologoHiden {
    0% {
        visibility: visible;
        height: 100vh;
    }

    40% {
        height: 20vh;
    }

    100% {
        visibility: hidden;
        height: 0vh;
    }
}

@keyframes introbanner {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logogen {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loadweb {
    0% {
        transform: rotate(160deg);
    }

    100% {
        transform: rotate(-160deg);
    }
}

@keyframes introh2 {
    0% {
        transform: translateX(20px);
        font-size: 2em;
        opacity: 0;
    }

    25% {
        opacity: 0;
        font-size: 3em;
    }

    50% {
        opacity: 0.5;
        font-size: 3em;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
        font-size: 3em;
    }
}

@keyframes introopacity {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-30px);
        opacity: 0;
        height: 0;
    }
}



.introTemplate {
    width: 100%;
    height: 100vh;
    font-size: 16px;
    position: fixed;
    z-index: 99999;
    background-color: blue;
    animation: intrologomain 1s 1.5s linear forwards;
    font-family: "Rubik", sans-serif;
}

.intrologoTemplate {
    width: 100%;
    background-color: var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    animation: intrologoHidenTemplate 1s 1s linear forwards;
    transition: all 1s linear;
    z-index: 99999;
    position: relative;
    bottom: 0;
}

.introoneTemplate {
    width: 100%;
    background-color: var(--color-text);
    height: 100vh;
    animation: intrologovisi 1.5s .1s ease-out forwards;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.introoneTemplate h2 {
    color: var(--color-main);
    font-weight: 400;
    font-size: 4em;
}

.introoneTemplate p {
    color: white;
    font-size: 0;
    margin: 0 10px;
    animation: introh2Template 0.5s 0.4s linear forwards;
    font-weight: 400;
}

.introoneTemplate span {
    color: var(--color-main);
    font-size: 0;
    animation: introh2Template 0.5s 0.6s linear forwards;
    font-weight: 400;
}

.introoneTemplate>div {
    display: flex;
    animation: introopacityTemplate 0.5s 1.2s linear forwards;
    align-items: center;
}


@keyframes intrologoHidenTemplate {
    0% {
        transform: translateY(100vh);
    }

    100% {
        transform: translateY(-100vh);
    }
}

@keyframes intrologovisi {
    0% {
        height: 0vh;
    }

    50% {
        height: 100vh;
        visibility: hidden;
    }
}

@keyframes intrologomain {
    0% {
        height: 100vh;
        visibility: visible;
    }

    100% {
        height: 0vh;
        visibility: hidden;
        transform: translateY(-100vh);
    }
}

@keyframes introh2Template {
    0% {
        transform: translateX(20px);
        font-size: 2em;
        opacity: 0;
    }

    25% {
        opacity: 0;
        font-size: 4em;
    }

    50% {
        opacity: 0.5;
        font-size: 4em;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
        font-size: 4em;
    }
}

@keyframes introopacityTemplate {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-30px);
        opacity: 0;
        height: 0;
    }
}