
.credit-rating {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    background-color: #dbd4d423;
}

.credit-rating-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.credit-rating-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
}

.credit-rating-content .body {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 20px;
    justify-content: start;
    align-items: center;
    margin-top: 20px;
}

.credit-rating-content .body .card {
    width: 100%;
    height: 100%;
    display: flex;

    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 10px;
    height: 180px;
    width: 450px;
}

.credit-rating-content .body .card .image {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
}

.credit-rating-content .body .card .content {
    width: 100%;
    height: 30%;
    display: flex;
    /*    flex-direction: column; */
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}