*{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

body, html {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.lado1, .lado2{
    position: relative;
    z-index: 2;
}

.lado1 {
    width: 30%;
    background-color: #ffffff77;
    filter: blur(0.5px);
    height: 100%;
    padding: 40px 30px;
    border-right: 1px solid #ddd;
}

.lado2 {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.boton{
    background-color: #ff343b;
    color: #ffffff;
    border: 1px solid #ff343b;
    padding: 6px 15px;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boton i{
    margin-right: 10px;
}

.boton:hover{
    background-color: #a4191d;
    border: 1px solid #a4191d;
    color: #ffffff !important;
    font-weight: 600;
}

.cajas{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    width: 80%;
}

.cajaFinal{
    display: flex;
    justify-content: center;
    justify-content: center;
    padding: 10px 0;
}

.caja2{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.cajas label{
    margin-bottom: 5px;
    width: fit-content;
}

.logo{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 200px;
}

video{
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom left;
    position: fixed;
}

p.h1 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    color: #ff343b;
    display: flex;
    align-items: center;
    justify-content: center;
}

p.h2{
    font-size: 25px;
    font-weight: 600;
}

.h1 i{
    font-size: 35px;
    margin: 0 15px;
}

.lista{
    border: 2px solid #ff343b;
    border-radius: 10px;
    padding: 20px;
    max-height: 470px;
    overflow-y: scroll;
    margin: 20px 0 20px 0;
}

#vistas{
    width: 100%;
    display: none;
}

.vistas{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vista {
    width: 80%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.vista img {
    max-height: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vista iframe {
    width: 900px;
    height: 600px;
}

.redes{
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    z-index: 10;
}

.red{
    width: 35px;
    height: 35px;
    background-color: #FFFFFF;
    margin: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}

.red i{
    font-size: 16px;
}

@media (max-width: 119em){
    .vista {
        height: 600px;
    }
}

@media (max-width: 90em) {
    .vista {
        height: 500px;
    }
}

@media (max-width: 70em) {
    .vista {
        height: 400px;
    }
}

@media (max-width: 67em) {
    body {
        display: block;
    }

    .lado1 {
        width: 100%;
        height: fit-content;
        margin-top: 40px;
    }
    
    .lado2 {
        width: 100%;
        height: fit-content;
        margin-bottom: 40px;
        border-top: 2px solid #ff343b;
    }

    .redes{
        position: relative;
        width: 100%;
        right: 0;
        bottom: 0;
        background-color: #ff343b;
        padding: 15px 40px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    hr{
        display: none;
    }
    
    .vista {
        width: 100%;
        height: 400px;
    }
    
    .vista img {
        max-width: 100%;
    }
}

@media (max-width: 50em) {}

@media (max-width: 33em) {}