.home-second-section {
    display: block;
    text-align: center;
}
.categories-2 {
    max-width: 1200px;
    margin: 0px 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;
}

@media screen and (max-width: 920px) {
    .file {
        width: 100% !important;
    }

    .categories-2 a {
        width: 100% !important;
        height: fit-content !important;
        min-height: 100px;
    }
}

.files-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.files-container .file:hover {
background-color: #f6f6f6;
}

.files-container .file {
    width: 32%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 12px;
}

.management-section {
    padding: 12px 0px;
    padding-bottom: 24px;
}

.download-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px;
    gap: 8px;
    transition-duration: 0.5s;
}

.download-link:hover {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.fixed {
    width: 100px;
    height: 100px;
}

.image-section{
    text-align: center;
    margin-bottom: 20px;
}


.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-title p {
    color: black;
    line-height: 22px;
    text-align: left;
}


.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;
    }
}
