.block-info-component {
    display: flex;
    position: relative;
    min-height: 400px;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
}
.block-info-component img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 30px;
}
.content-info-component{
    position: relative;
    z-index: 1;
    color: var(--blue-color);
    padding: 15px;
}
.content-info-component a{
    background-color: var(--blue-color);
    color: var(--gold-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
}
.content-info-component a:hover{
    background-color: var(--gold-color);
    color: var(--blue-color);
}
.content-info-component h3{
    font-size: 2rem;
}