.viziune-image {
    display: block;
    background-color: #fff;
}

.viziune-image img {
    display: block;
    max-width: 90%;
    max-height: 600px;
    margin: 0px auto;
}
/* 
.viziune-text-section {
    padding-bottom: 24px;
} */

.viziune-text-section p {
    color: #616161;
}

.download-file {
    display: block;
    padding: 24px;
    background-color: #fff;
    text-align: center;
}

.download-file a {
    text-decoration: none;
    margin: 4px auto;
    width: fit-content;
}

.subtitle {
    font-size: 22px;
    color: #2a3d8b;
    
    display: flex;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 0.75rem 3.5rem;
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,43,99);
    background: linear-gradient(240deg, rgba(0,43,99,1) 0%, rgba(1,66,149,1) 61%);
    border-radius: 5px;
    border-bottom: 4px solid rgb(0,43,99);
    /* text-transform: uppercase; */
    z-index: -2;
}

.button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 5px;
    background-color: #2a3d8b;
    transition: all 0.3s;
    z-index: -1;
}

.button:hover {
    color: #fff;
}

.button:hover:before {
    width: 100%;
}