.default-infograph-carousel .slide-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.default-infograph-carousel .infograph-card {
    display: block;
    width: 380px;
    padding: 40px;
    font-family: 'Comic Sans MS', 'Comic Neue', Arial, Helvetica, sans-serif;
}

.default-infograph-carousel .infograph-card .header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: #0B2240;
    border-radius: 50%;
    margin: 0 auto;
    transition: background-color 0.5s ease-in-out;
}

.default-infograph-carousel .infograph-card .header img {
    max-height: 80%;
    max-height: 80%;
}

.default-infograph-carousel .infograph-card .header .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: #D0002C;
    border-radius: 50%;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.default-infograph-carousel .infograph-card .body {
    text-align: center;
    color: #0B2240;
}

.default-infograph-carousel .infograph-card .body .value {
    color: #D0002C;
    font-size: 35px;
    transition: color 0.5s ease-in-out;
}

.default-infograph-carousel .infograph-card .body .description {
    font-size: 18px;
    transition: color 0.5s ease-in-out;
}

.default-infograph-carousel .infograph-card:hover .header {
    background-color: #D0002C;
}

.default-infograph-carousel .infograph-card:hover .header .overlay {
    opacity: 1;
}

.default-infograph-carousel .infograph-card:hover .body .value {
    color: #0B2240;
    text-shadow: 1px 1px #fff, -1px 1px #fff, 1px -1px #fff, -1px -1px #fff, 1px 1px 5px #555;
}

.default-infograph-carousel .infograph-card:hover .body .description {
    color: #D0002C;
    text-shadow: 1px 1px #fff, -1px 1px #fff, 1px -1px #fff, -1px -1px #fff, 1px 1px 5px #555;
}