:root{
    --grifols_blue: #004186;
}

@font-face {
    font-family: AnekLatin;
    src: url('../assets/fonts/AnekLatin/AnekLatin-Medium.ttf');
}

@font-face {
    font-family: AnekLatinBold;
    src: url('../assets/fonts/AnekLatin/AnekLatin-ExtraBold.ttf');
}

@font-face {
    font-family: AnekLatinThin;
    src: url('../assets/fonts/AnekLatin/AnekLatin-Thin.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: AnekLatin;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: AnekLatinBold;
}

.main {
    height: 100svh;
    width: 100vw;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: transform 0.5s;
    background-color: #fff;
}

.main_wrapper {
    position: relative;
    width: 100vw;
    min-height: 100svh;
    transition: transform 0.5s;
}

section {
    height: 100svh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    max-width: 992px;
    background-color: #fff;
    margin: 0 auto;
}

.logo {
    height: 65px;
}

.spacer {
    height: 50px;
}

h2,
span {
    max-width: 75%;
    text-align: center;
}

/* .last_text {
    margin-top: 20px;
} */

.background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(62.5%);
    z-index: -1;
}

.turn_device {
    height: 25svh;
}

button {
    border: 0px;
    width: 40%;
    padding: 10px 0px;
    color: #fff;
    background-color: var(--grifols_blue);
    font-size: 1.2rem;
    border-radius: 20px;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: none;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* loading */

h3 {
    margin-top: 25px;
    letter-spacing: 0.05rem;
    color: var(--grifols_blue);
}

.dots_container {
    display: flex;
    justify-content: space-evenly;
    width: 50%;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: var(--grifols_blue);
    border-radius: 50%;
}

.dot:nth-child(1) {
    animation: bounce linear 2s infinite;
}

.dot:nth-child(2) {
    animation: bounce linear 2s infinite 0.25s;
}

.dot:nth-child(3) {
    animation: bounce linear 2s infinite 0.5s;
}

.dot:nth-child(4) {
    animation: bounce linear 2s infinite 0.75s;
}

.dot:nth-child(5) {
    animation: bounce linear 2s infinite 1s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* irame */

iframe {
    max-width: 100vw;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.desktop_cover {
    display: none;
}

@media screen and (min-width: 992px) {
    .desktop_cover {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000000;
        height: 100vh;
        width: 100vw;
        display: flex;
        background-color: #fff;
        overflow: hidden;

        .col {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-bottom: 12.5svh;
            color: var(--grifols_blue);

            .logo {
                height: 100px;
            }

            span {
                width: 500px;
                font-size: 1.5rem;
            }

            h2 {
                margin: 110px 0;
                font-size: 3.25rem;
            }

            #qrcode {
                width: 50%;
                aspect-ratio: 1/1;
                margin: 0 auto;

                img {
                    margin: 0;
                    width: 100%;
                    aspect-ratio: 1/1;
                }
            }

        }
    }


}