/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 15/03/2021, 09:28:21 PM
    Author     : Leandro
*/

.inicioPanel{
    display: block;
    margin: 90px 0px 0px 0px;
    width: auto;
    padding: 10px;
}

/*
    Título del Panel principal en la zona roja
*/
.inicioPanelTitulo{
    width: 490px;
    font-weight: bolder;
    font-size: 36px;
    text-shadow: 4px 4px 3px rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    margin: 0px auto 0px auto;
}

/*------------------------------------------*/
/* SLIDER                                   */
/*------------------------------------------*/
    
.containerSlider{
    width: 100%;
    max-width: 1000px;
    height: 700px;
    overflow: hidden;
    margin: 10px auto auto auto;
    box-shadow: 0px 0px 0px 5px white,0 15px 50px;
    position: relative;
    transition-duration: 0.5s;
}

.slider{
    display: flex;
    width: 900%;
    height: 100%;
    margin-left: -100%;
}

.sliderSection{
    width: 100%;
    text-decoration: none;
}

.sliderImg{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sliderBtn{
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.7);
    top:50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    font-family: monospace;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;

}

    .sliderBtn:hover{
        background: rgba(255,255,255,1);
    }

.sliderBtnAnterior{
    left: 10px;
}
    
.sliderBtnSiguiente{
    right: 10px;
}
    
.pCollage{
    position: relative;
    width: 100%;
    height: 80px;
    margin: 0px;
    padding: 0px;
    top: -95px;
    bottom: 0px;
    right: 5px;
    font-size: 30px;
    color: rgba(255,255,255,1);
    background: rgba(0,0,0,0.5);
    text-align: right;
    text-shadow: 1px 1px 3px rgba(0,0,0,1);
    
}    

/******************************************/
/*  RESPONSIVE MEDIANO - GRANDE */
@media screen and (min-width:1000px) and (max-width:1400px){
    .containerSlider{
        height: 700px;
        margin: 10px auto auto auto;
    }
}

/******************************************/
/*  RESPONSIVE MEDIANO  */
@media screen and (min-width:640px) and (max-width:1000px){
    .containerSlider{
        height: 600px;
        margin: 60px auto auto auto;
    }
}

/******************************************/
/*  RESPONSIVE PEQUEÑO  */
@media screen and (max-width:640px) {
    .containerSlider{
        height: 450px;
        margin: 120px auto auto auto;
    }
}

