body, html 
{
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

#cont_slider
{
    width: 100%;
    height: auto;   
}

#cont_slider div
{
    width: calc(100% - 60vw);
    height: 35vw;
    float: left;
    background: #F3F1F1;
}

#cont_slider div:first-child
{
    width: 60vw;
    overflow: hidden;
}

#cont_slider div:first-child div 
{
    /*width: calc(60vw * 15);*/
    height: 100%;
    overflow:hidden;
}

#cont_slider div:first-child div figure
{
    width: 60vw;
    height: 100%;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: cover;
    float: left;
    margin: 0;
    padding: 0;
}

#cont_textos p, #cont_textos h1
{
    font-family: 'Montserrat', sans-serif;
    text-align: justify;
    color: #333333;
    font-size: 1.9vh;
    padding: 30px;
    margin-top: 0;
}

#cont_textos h1
{
    text-transform: uppercase;
    font-size: 1.2vw;
    margin-bottom: 0;
    padding-bottom: 0;
}

.slider_progress
{
    width: 100%;
    height: 5px;
    display: flex;
}

#progress_bar
{
    width: 0%;
    height: 5px;
    background: #4B3939;
    -webkit-transition: width 10s ease-in-out;
    -moz-transition: width 10s ease-in-out;
    -o-transition: width 10s ease-in-out;
    transition: width 10s ease-in-out;
}

.arrow
{
    background: #333333;
    color: #F3F1F1;
    font-size: 1.8vw;
    cursor: pointer;
    position: absolute;
    top: 32.5vw;
    left: 0.4vw;
    opacity: 0.8;
    transition: opacity 1s ease;  
}

.arrow i 
{
    width: 100%;
    font-size: 1.8vw;
}

.arrow_right{left: 2vw}

.arrow_pause{left:4vw;}

#cont_textos
{
    overflow-y: auto;
    overflow-x: hidden;
}

.arrow:hover{opacity: 1}

@media (max-width:1025px)
{
    #cont_slider div
    {
        width: 100%;
        height: calc(100vh - 50vw - 112px); /*112px es el height actual del menu movil*/
        display: block;
    }
    
    #cont_slider div:first-child
    {
        width: 100%;
        height: 50vw;
    }

    #cont_slider div:first-child div figure
    {
        width: 100vw;
        height: 50vw;
        background-position: center top;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

    
    #cont_textos p, #cont_textos h1
    {
        font-size: 3.3vw!important;
    }

    #progress_bar
    {
        position: absolute;
        top: 50vw;
    }

    .arrow
    {
        font-size: 6vw;
        top: 41vw;
        left: 0.4vw;
        opacity: 0.8;
    }

    .arrow_right{left: 6vw}

    .arrow_pause{left:12vw}
    .arrow i 
    {
        font-size: 6vw;
    }

}