*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    text-decoration: none;
    list-style: none;
}

body{
    background-color: #0c52a6;
    font-family: "Helvetica Newe",Helvetica,sans-serif;
    font-size: 14px;
}

img{
    width: 100%;
    
}

.main_cronologia{
    max-width: 100%;
    padding: 50px 20px;
    margin: 0 auto;
}

h1, h2{
    margin: 0;
    color:#fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;    
}

h1{
    font-size: 1.8rem;
}

h1 span{
    font-weight: 600;    
}

.container_slider{
    border-radius: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.carousel{
    background-color: white;
    border-radius: 15px;
    padding: 30px;
}

.items-text{
    display: grid;
    grid-template-columns: 90%;
    grid-template-rows: 450px;
    justify-content: space-evenly;
    grid-gap: 5px;
    width:90%;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
}

.items-row{
    display: grid;
    grid-template-columns: 30% 65%;
    grid-template-rows: 450px;
    justify-content: space-evenly;
    grid-gap: 5px;
    width:90%;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
}

.item_img{
    background-color: white;
    border:1px solid #eee;
    border-radius: 15px;
}

.item_img img{
    width:100%;
}

.item_text{
    border:1px solid #eee;
    border-radius: 15px;
    
   
}

.item_text h4{
    color:#0c52a6;
    font-size: 2em;
    border-bottom:2px solid #0c52a6;
    padding-bottom: 10px;
} 

.item_text blockquote{
    color:#0c52a6;
    font-size:1.5em;
    border-top:1px solid #0c52a6;
    padding-top: 10px;
}

.item_text p{
    font-size:1.2em;
    border-top:1px solid #0c52a6;
    padding-top: 10px;
    text-align: justify;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #0c52a6!important;
    border-radius:5px;
}

.container_anios{
    background-color: white;
    border-radius: 15px;
    padding-top: 20px;
    text-align: center;
    width:90%;
}   

.container_anios .item_anios{
    display:inline-block;
    text-align: center;
    margin-bottom: 20px;
}

.container_anios .item_anios a{
    border: 1px solid #0c52a6;
    padding: 10px 20px;
    text-decoration: none;
    color:#0c52a6;
}

.container_anios .item_anios a:hover{
    background-color: #0c52a6;
    color:#fff;
}

/* Media Querys */
/* "xxl" applies to x-large devices (large desktops, less than 1400px) */
@media (min-width:1200px) and (max-width:1399.98px){
    
    
}

/* "xl" applies to large devices (desktops, less than 1200px) */
@media (min-width:992px) and (max-width:1199.98px){
    
   
}

/* "lg" applies to medium devices (tablets, less than 992px) */
@media (min-width:768px) and (max-width:991.98px){
    
    
}

/* "md" applies to small devices (landscape phones, less than 768px) */
@media(min-width:576px) and (max-width:767.98px){
    
    .item_img img:hover{
        position:absolute;
        left: 0;
        bottom: 0;
        cursor:pointer;
        transform: scale(1);
    }
}

/* "sm" applies to x-small devices (portrait phones, less than 576px) */
@media(min-width:420px) and (max-width:575.98px){
    
    .item_img img:hover{
        position:absolute;
        left: 0;
        bottom: 0;
        cursor:pointer;
        transform: scale(1);
    }
}

/* "xs" smartphomn muy pequeños */
@media(min-width:360px) and (max-width:419.98px){
    
    .item_img img:hover{
        position:absolute;
        left: 0;
        bottom: 0;
        cursor:pointer;
        transform: scale(1);
    }
}

/* "xxs" smartphomn muy pequeños */
@media (max-width:359.98px){
    
    .item_img img:hover{
        position:absolute;
        left: 0;
        bottom: 0;
        cursor:pointer;
        transform: scale(1);
    }
}

