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

.viziune-image img {
    display: block;
    max-width: 90%;
    max-height: 400px;
    margin: 24px auto;
    padding: 24px;
}

.viziune-text-section {
    padding-bottom: 24px;
}

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

.home-second-section {
    display: block;
    text-align: center;
}
.categories-2 {
    max-width: 1200px;
    margin: 64px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.categories-2 a {
    width: 25%;
    min-height: 200px;
    color: #2a3d8b;
    padding: 16px;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-second-section {
    display: block;
    text-align: center;
}
.categories-2 {
    max-width: 1200px;
    margin: 64px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.categories-2 a {
    width: 25%;
    min-height: 200px;
    color: #2a3d8b;
    padding: 16px;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}.home-second-section {
    display: block;
    text-align: center;
}
.categories-2 {
    max-width: 1200px;
    margin: 64px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.categories-2 a {
    width: 25%;
    min-height: 200px;
    color: #2a3d8b;
    padding: 16px;
    text-decoration: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle {
    font-size: 22px;
    color: #2a3d8b;
}

.big-title {
    font-size: 18px;
}

.small-title {
    font-size: 12px;
    font-style: italic;
    margin-bottom: 32px;
}


.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) !important;
    /* text-transform: uppercase; */
    z-index: -2;
}

.button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 5px;
    background-color: rgb(51, 91, 143);
    transition: all 0.3s;
    z-index: -1;
}

.button:hover {
    color: #fff;
}

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


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

.download-file a {
    text-decoration: none;
    
}

.plan-main-container {
    margin: 32px auto;
    max-width: 1170px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
}

.plan-card {
    min-height: 597px;
    width: 22%;
    /* border: 1px solid rgba(0, 0, 0, 0.3); */
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.176);;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}

.plan-card-header {
    width: 100%;
    max-width: 100%;
    padding: 15px 0px;
    height: 37px;
    /* border: 1px solid red; */
    background-color: #014295;
    border-radius: 4px 4px 0 0;
    display: flex;
    justify-content: center;
}

.plan-card-image {
    width: 100%;
    height: 200px;
    /* border: 1px solid red; */
}

.plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-card-content {
    padding: 25px;
    height: 300px;
}

.plan-card-content-title {
    color: black;
    line-height: 22px;
}

.plan-card-content-continut {
    font-size: 13px;
    font-weight: 200;
    line-height: 22px;
    color: #818181;
}

.plan-card-footer {
    height: 60px;
    font-weight: 800;
    color: #f58c04;
    padding: 0 25px;
}

.plan-card-footer a, .plan-card-footer a:hover, .plan-card-footer a:before {
    text-decoration: none;
    color: #f58c04;

}

@media only screen and (max-width: 900px) {
    .plan-card {
        width: 90%;
    }

    .plan-main-container {
        flex-direction: column;
        gap: 20px;
    }


}