.Slider-principal{
    width: 100%;
    overflow: hidden;
}

.slider-contenedor{
    width: 100%;
    display: flex;
}

.contenido-slider{
    width: 100%;
    height: 68vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.contenido-slider:nth-child(1){
    background: #00167C; 
    color: #fff;
}

.contenido-slider:nth-child(2){
    background: #00224D;
    color: #3F06C8;
}


.contenido-slider:nth-child(3){
    background: #092e60;
    color: #fff;
}

.contenido-slider:nth-child(4){
    background:#022d93;
    color: #fff;
}


.contenido-slider div{
    width: 50%;
    margin-left:100px;
}


.contenido-slider img{
    width: 50%;
}


.contenido-slider h2{
    font-size: 3rem;
    font-weight:900;
    text-align: left;
    line-height:60px;
    color: #fff;
    margin-bottom:20px;
    letter-spacing:1px;
}

.contenido-slider span{
    font-size: 3rem;
    font-weight:900;
    text-align: left;
    line-height:60px;
    color: #FFC436;
    letter-spacing:1px;
    margin-bottom: 20px;
}

.contenido-slider p{
    font-size:1.5rem;
    text-align: left;
    line-height: 30px;
    letter-spacing:2px;
    color: #FFF;
}

.contenido-slider a{
    color: #003399;
    background: #FFC436;
    width:200px;
    display: block;
    padding: 25px 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 3px 3px 16px 0px rgb(7, 7, 7);
}

.contenido-slider:nth-child(1) a:hover{
    background: #FFF;
    color: #003399;
}

.contenido-slider:nth-child(2) a:hover{
    background: #FFF;
    color: #003399;
}

.contenido-slider:nth-child(3) a:hover{
    background: #FFC436;
    color: #003399;
}


.contenido-slider:nth-child(4) a:hover{
    background: #fff;
    color: #332863;
}

.contenido-slider:nth-child(3) a{
    background:#FFF;
    color: #003399;
}

.contenido-slider:nth-child(3) span{
    color:#FFC436;
}


@media screen and (max-width:400px){

    .Slider-principal{
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .contenido-slider{
        width: 100%;
        height: 200px;
        justify-content: space-around;
     }

     .contenido-slider div{
        width: 50%;
        margin:10px;
    }

    .contenido-slider img{
        width:50%;
        height: 200px;
    }

    .contenido-slider h2{
        font-size: 1rem;
        font-weight:900;
        text-align:left;
        color: #fff;
        line-height: 15px;
        margin-bottom: 5px;
    }

  
    .contenido-slider span{
            font-size: 1rem;
            font-weight:900;
            text-align: left;
            color:#FFC436;
            line-height:15px;
    }  
    
    .contenido-slider p{
        font-size:0.5rem;
        text-align: left;
        line-height:15px;
        margin-top:5px;
        width: 12rem;
    }

    .contenido-slider a{
        width:5rem;
        padding: 5px 5px;
        margin-top:5px;
        font-size: 0.8rem;
    }

    
}


