/*Version 1.0.0*/
/*Creditos CSS*/
/*Table, Title CSS*/
  .credito-card{
    /* background-color: red; */
    align-items: center;
    padding: 0;
    gap: 20px;
  }
  .credito-card img{
    background-color: #046bb0;
    border-radius: 20px;
    width: 40%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .credito-card p{
    color: #046bb0;
    text-align: center;
    font-weight: bold;
    font-size: 120%;
    margin: 0;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .credito-card a{
     background-color: #00569a;
    /* color: white;  */
    font-size: 10pt;
  }
  .credito-card div{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 60%;
 }
  .credito-mype-section{
    margin: 50px 0;
  }
  .credito-header-section h1{
    color: #055D83;
    font-weight: bold;
    margin-bottom: 25px;
  }
  .credito-header-section p{
    color: #80888C;
    text-align: justify;
  }
  .credito-table-header {
    background-color: #055D83; /* Color de fondo para las cabeceras de la tabla */
    color: white;
    text-align: center;

  }
  .credito-table-header th{
    border: 5px solid #fff;
  }

  .credito-table-row-bg {
    background-color: #e9ecef; /* Color de fondo alterno para las filas de la tabla */
  }
  .credito-table-row-bg .credito-color-especial{
    background-color: #055D83;
    color: #fff;
  }
  .credito-table-container{
    padding: 20px 80px;
  }
  .credito-table td {
    text-align: center;
    border: 5px solid #fff;
    background-color: #9BC9DE;
    color: #055D83;
  }
  /* Image, text*/
  .credito-background-container {
    position: relative;
    height: auto; /* Puedes ajustar la altura según necesites */
    color: white; /* El color del texto, asegúrate de que contraste con tu imagen */
    margin: 0 0;
  }
  .credito-background-image {
    /*position: absolute;
    top: 0;
    left: 0;*/
    max-width: 100%;
    height: auto;
    /*background-size: cover;
    background-position: center;*/

  }
  .credito-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #055D83;
    text-align: center;
    z-index: 10; /* Asegura que el texto esté sobre la imagen */
  }

  /*Start Media Query*/
/*Movil small*/
@media only screen and (max-width: 576px) {
  .credito-card p{
    font-size: 90% !important;
    /* color: red; */
  }
  .credito-card a{
    font-size: 60%;
  }
}
/*Movil*/
@media only screen and (max-width: 768px) {
  .credito-card p{
    font-size: 120%;
  }
  .credito-card a{
    font-size: 60%;
  }
}
/*Tablet*/
@media only screen and (min-width: 769px) and (max-width: 991px) {
/* .credito-card p{
    font-size: 100%;
  }
  .credito-card a{
    font-size: 60%;
  } */
}
/*Laptop S*/
@media only screen and (min-width: 992px) and (max-width: 1023px) {

}
/*Laptop XS O Tablet (caso especial)*/
@media only screen and (min-width: 930px) and (max-width: 991px) {

}
/*Desktop*/
@media only screen and (min-width: 1024px) {
  .credito-card p{
    font-size: 130%;
  }
  .credito-card a{
    font-size: 80%;
  }
}
/*Desktop HD*/
@media only screen and (min-width: 1440px) {
  .credito-card p{
    font-size: 150%;
  }
  .credito-card a{
    font-size: 80%;
  }
}
/*Desktop 27*/
@media only screen and (min-width: 1840px) {
  .credito-card p{
    font-size: 180%;
  }
  .credito-card a{
    font-size: 80%;
  }
}