@font-face {
    font-family: zizou-slab-regular;
    src: url(../fonts/zizou-slab-regular.woff);
}

@font-face {
    font-family: zizou-slab-bold;
    src: url(../fonts/zizou-slab-bold.woff);
}

@font-face {
    font-family: sgothic-bdcap;
    src: url(../fonts/upc_sgothic-bdcap-webfont.woff);
}

@font-face {
    font-family: sgothic-mvb-stdbd;
    src: url(../fonts/SolanoGothicMVBStdBd.woff);
}

body {
    height: 100vh;
    background: black;
    background-image: url(../images/summit_fondo.png);
    background-repeat: no-repeat;
    background-size: cover;
}

@keyframes bodyBG {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*body::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(120deg, rgba(231,43,136,1) 0%, rgba(228,20,27,1) 38%, #FFFF00 100%);   
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    animation: bodyBG 10s ease infinite;
}
body::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/blobsbg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}*/
.colLogo {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.colLogo img {
    height: 100%;
    width: auto;
}

.colHero {
    height: calc(100vh - 200px);
    padding: 0rem 0rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.colLeft {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
}

.colLeft img {
    height: auto;
    width: 95%;
    animation: pulseAnim 0.5s ease-in-out infinite alternate;
}

.downloadOptions {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;

}

.thickLine {
    height: 10px;
    width: 100%;
    background-color: #C9AA6F;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.lastText {
    color: white;
    font-family: sgothic-mvb-stdbd;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 0;
}

@keyframes pulseAnim {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.04);
    }
}

.colForm {
    font-family: zizou-slab-regular;
    display: flex;
    justify-content: center;
    align-items: center;

}

form {
    color: white;
    background-color: #C9AA6F;
    padding: 3rem 1rem;
}

.form-group p {
    font-size: 1.5rem;
    line-height: 1.1;
}

.form-group input {
    border-radius: 4px;
    border: 1px solid black;
    background-color: white;
    color: white;
}

.form-group input::placeholder {
    color: grey;
}

.submitButton {
    font-family: sgothic-mvb-stdbd;
    color: white;
    background-color: black;
    border-radius: 4px;
    padding: 0.25rem 2rem;
    font-size: 1.2rem;
    border: none;
    width: 100%;
}



.textForm {
    font-family: sgothic-bdcap;
    text-align: center;
    color: black;
}

.finalQR {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.teEsperamos {
    font-family: zizou-slab-bold;
    font-size: 3rem;
    margin-bottom: 0;
    text-align: center;
    line-height: 1;
}

.noOlvides {
    font-family: zizou-slab-regular;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1;
}

#qrcode {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}

.descargar {
    font-family: sgothic-bdcap;
    color: black;
    background-color: #C9AA6F;
    border-radius: 4px;
    padding: 0.2rem 2rem;
    font-size: 1.2rem;
    border: none;
}

#canvas {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: red;
    background-image: url(../images/invqr.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 760px;
    height: 1024px;
    border: 1px solid black;
}

.innovateMob {
    /* display: none; */
}

.loading-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 199999999999;
    background-color: rgba(0, 0, 0, 0.37);
    display: none;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.loading-block img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto auto;
    width: 200px;
    height: auto;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.tag-text-red {
    color: white;
}

@media (max-width: 768px) {
    html {
        height: 100%;
    }

    body {
        height: 100%;
        background: black;
        background-image: url(../images/summit_fondo.png);
        background-repeat: no-repeat;
        background-size: cover;
    }



    /*body::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-image: url(../images/blobsbg.svg);
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 0;
        pointer-events: none;
    }*/
    .colLogo {
        height: 100px;
        display: flex;
    }

    .colLogo img {
        height: 100%;
        width: auto;
    }

    .contMob {
        height: 100%;
    }

    .rowMob {
        height: 100%;
    }

    .colHero {
        height: calc(100%-100px);
        padding: 0rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .colForm {}

    .colLeft {
        /* display: none; */
    }

    .colLeft img {
        margin-bottom: 2rem;
    }

    .descargar {
        margin-bottom: 5rem;
    }

    .lastText {
        text-align: center;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .innovateMob {
        display: flex;
        width: 50% !important;
        height: auto !important;
    }

    .offset-2 {
        margin-left: 0 !important;
    }

    .teEsperamos {
        font-family: zizou-slab-bold;
        font-size: 2.2rem;
        margin-bottom: 0;
        text-align: center;
        line-height: 1;
        margin-bottom: 10px;
    }
}