/*Version 1.0.0*/
/*Politicas privacidad CSS*/
.politicas-privacidad-section{
    margin: 40px 0;
}
.pp-text-intro{
    font-weight: bold;
    color: rgb(0 107 179);
    text-align: justify;
    margin-bottom: 15px;
}
.pp-fondo {
    background-color: #ACB2F8;
    padding: 35px 35px;
}
.pp-img-fondo{
    max-width: 100%;
    height: auto;
    padding: 15px 20px;
}
.pp-overlay-text {
    position: absolute;
    top: 50%;
    left: 15%; /* Ajustar dependiendo del tamaño del círculo en tu imagen de fondo */
    transform: translateY(-50%);
    width: calc(100% - 30%); /* El 100% es el ancho total, y 30% es el espacio que dejamos para el círculo y el logo */
    color: #636161; /* O el color que corresponda al diseño */
    padding-left: 0px;
    padding-right: 0px;
}
.pp-overlay-text h5 {
    margin-bottom: 15px;
}

.clasificacion-riesgo-gray{
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background-color: #ededed;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.clasificacion-riesgo-gray h1{
    color: #046bb0;
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
}
.clasificacion-riesgo-gray .text-title{
    color: #046bb0;
    text-align: center;
    font-weight: bold;
}
.clasificacion-riesgo-gray .text-subtitle{
    color: #046bb0;
    text-align: center;
    font-size: 0.7rem;
}

.clasificacion-riesgo-blue{
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background-color: #046bb0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.clasificacion-riesgo-blue h1{
    color: white;
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
}
.clasificacion-riesgo-blue .text-title{
    color: white;
    text-align: center;
    font-weight: bold;
}
.clasificacion-riesgo-blue .text-subtitle{
    color: white;
    text-align: center;
    font-size: 0.7rem;
}
/*Start Media Query*/
/*Movil*/
@media only screen and (max-width: 768px) {
    .pp-img-fondo{
        max-width: 100%;
        height: 250px;
    }
    .pp-overlay-text {
        left: 10%; /* Ajustar para pantallas más pequeñas */
        width: calc(100% - 20%); /* Aumentar el espacio para el texto en pantallas más pequeñas */
        font-size: x-small;
        padding-left: 0px;
    }
    .pp-overlay-text h5 {
        margin-bottom: 2px;
        margin-top: 5px;
        font-size: small;
    }
    .clasificacion-riesgo-title{
        /* color: red !important; */
        font-size: 1rem !important;
    }
    .clasificacion-riesgo-text{
        /* color: red !important; */
        font-size: 0.8rem !important;
    }
}
/*Tablet*/
@media only screen and (min-width: 767px) and (max-width: 991px) {
    .pp-overlay-text {
        padding-left: 0px;
        padding-right: 0px;
        font-size: smaller;
    }

}
/*Laptop*/
@media only screen and (min-width: 992px) and (max-width: 1023px) {
    
}
/*Laptop O Tablet (caso especial)*/
@media only screen and (min-width: 930px) and (max-width: 991px) {
}
/* @media only screen and (max-width: 1199px) {
    .clasificacion-riesgo-blue{background-color: red; width: 25%;}
    .clasificacion-riesgo-gray{background-color: red; width: 25%;}
} */
/*Desktop*/
@media only screen and (min-width: 1024px) {

}
/*Desktop HD*/
@media only screen and (min-width: 1440px) {
    .dn-overlay-logo {
        padding-left: 15px;
        margin-right: 135px;
    }
}
@media only screen and (min-width: 1840px) {
    
}