@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    resize: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
font-family: 'Poppins', sans-serif;
};

:root {
    --black:#1D1D1B;
}

body{
    background-color:#1D1D1B;
}

    #presentation{
        width: 100vw;
        height: 100vh;
        display: grid;
        place-items: center;
        position: relative;
    }
    
    #presentation .marca{
        position: absolute;
        right: 0;
        bottom: 10%;
        width: fit-content;
        height: 40vh;
    }
    
    #presentation .container{
        width: 80%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
    }

    #presentation .container .text2{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 1rem;
    }

    #presentation .container .text2 h1{
        color: #fff;
        text-align: center;
        width: 100%;
        font-size: 18px;
        line-height: 1.2;
    }

    #presentation .container .text2 p{
        color: #fff;
        text-align: center;
        font-size: 14px;
        width: 100%;
    }
    
    
    #presentation .container .logo{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    #presentation .container .logo img{
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 80px;
        height: fit-content;
    }

    #presentation .container .video{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: fit-content;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        box-shadow: 10px 10px 150px -38px rgba(255,255,255,1);
        border: 1px solid #eeeeee21;
        z-index: 999999999999999;
    }

    #presentation .container .video .controls{
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 10px;
        height: 10px;
        position: absolute;
        left: 10px;
        bottom: 30px;
        z-index: 99999999999999;
        transition: all .5s ease;
    }

    #presentation .container .video .controls .play{
        display: none;
        transition: all .5s ease;
    } 
    
    #presentation .container .video .controls .pause{
        display: flex;
        width: 30px;
        height: 30px;
        transition: all .5s ease;
    }

    #presentation .container .video .controls[data-active='true'] .play{
    width: 30px;
    height: 30px;
    display: flex;
    }

    #presentation .container .video .controls[data-active='true'] .pause{
        display: none;
    }

    #presentation .container .video .controls2{
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 10px;
        height: 10px;
        position: absolute;
        right: 25px;
        bottom: 25px;
        z-index: 99999999999999;
        transition: all .5s ease;
    }

    #presentation .container .video .controls2 .max{
        display: flex;
        width: 25px;
        height: 25px;
        transition: all .5s ease;
    }

    
        #presentation .container .video .controls2[data-active='true'] .max{
            display: flex;
        }

    
    #presentation .container .video .text{
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        gap: 1rem;
        width: 100%;
        height: 100%;
        color: #fff;
        background-color: #0a0a08b6;
        z-index: 999999999999999;
        transition: all .5s ease;
    }

    #presentation .container .video .text[data-active='true']{
        opacity: 0;
        display: none;
    }

    #presentation .container .video h1{
        color: #fff;
        background-color: transparent;
        font-size: 10px;
        right: auto;
        z-index: 99;
    }

    #presentation .container .video video{
        width: 100%;
        height: 100%;
    }

@media(min-width:768px){
    #presentation{
        width: 100vw;
        height: 100vh;
        display: grid;
        place-items: center;
        position: relative;
    }
    
    
    #presentation .container{
        width: 60%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    #presentation .container .text2{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 80%;
    }

    #presentation .container .text2 h1{
        color: #fff;
        text-align: center;
        width: 100%;
        line-height: 1.2;
        font-size: 28px;
    }

    #presentation .container .text2 p{
        color: #fff;
        text-align: center;
        font-size: 18px;
    }
    
    #presentation .container .logo{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    #presentation .container .logo img{
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 80px;
        height: fit-content;
    }

    #presentation .container .video{
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: fit-content;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        box-shadow: 10px 10px 100px -48px rgba(255, 255, 255, 0.575);
        border: 1px solid #eeeeee21;
        cursor: pointer;
    }

    #presentation .container .video .controls{
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 10px;
        height: 10px;
        position: absolute;
        left: 40px;
        bottom: 50px;
        z-index: 99999999999999;
        transition: all .5s ease;
    }

    #presentation .container .video .controls2{
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 10px;
        height: 10px;
        position: absolute;
        right: 40px;
        bottom: 40px;
        z-index: 99999999999999;
        transition: all .5s ease;
    }

    #presentation .container .video .controls2 .max{
        display: flex;
        width: 30px;
        height: 30px;
        transition: all .5s ease;
    }

    
        #presentation .container .video .controls2[data-active='true'] .max{
            display: flex;
        }


    #presentation .container .video .controls .play{
        display: none;
        transition: all .5s ease;
    } 
    
    #presentation .container .video .controls .pause{
        display: flex;
        width: 40px;
        height: 40px;
        transition: all .5s ease;
    }

    #presentation .container .video .controls[data-active='true'] .play{
    width: 40px;
    height: 40px;
    display: flex;
    }

    #presentation .container .video .controls[data-active='true'] .pause{
        display: none;
    }
    
    #presentation .container .video .text{
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        gap: 1rem;
        width: 100%;
        height: 100%;
        color: #fff;
        background-color: #0a0a08d7;
        transition: all .5s ease;
        z-index: 99999999999999;
        cursor: pointer;
    }

    #presentation .container .video .text[data-active='true']{
        opacity: 0;
        display: none;
    }

    #presentation .container .video .text img{
        width: 30px;
        height: fit-content;
    }

    #presentation .container .video h1{
        color: #fff;
        background-color: transparent;
        font-size: 16px;
        right: auto;
        z-index: 99;
    }



    #presentation .container .video video{
        width: 100%;
        height: 100%;
    }
}