.resourcesHero {
    text-align: center;
    padding-top: 20px;
    background-color: #598896;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.resourcesHero h2 {
    font-size: 32px;
    color: #ffffff;
}

.resourcesContainer {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.resourcesCard-listContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1700px;
    padding: 10px;
}

.resourcesCard {
    
    padding: 10px;
    width: 330px;
    margin: 10px;
    transition: all 0.3s ease;
    text-align: left;
    text-decoration: none;
    color: #111111;
    cursor: pointer;
    position: relative;
}

.resourcesCard p {
    margin: 12px 0px 0px 0px;
    padding: 0px;
}

.resourcesImage-container {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111111;
}

.resourcesImage {
    width: 100%;
    height: 250px;
    transition: all 0.3s ease;
}

.resourcesCard:hover .resourcesImage{
    scale: 105%;
    opacity: 0.6;
}

.downloadButton-container {
    width: 100%;
    margin-top: 12px;
    height: auto;
}

.downloadButton {
    display: flex;
    flex-direction: row;
    background-color: #598896;
    border-radius: 999px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    transition: all 0.4s ease;
    overflow: hidden;
}

.downloadButton:hover {
    background-color: #111111;
    transition: 0.3s ease;
}

.downloadButton p {
    margin-top: 0px;
    display: none;
}

.downloadButton .material-symbols-outlined {
    margin: 0px;
    padding: 0px;
    font-size: 28px;
    padding: 5px;
}

.resourcesCard:hover .downloadButton {
    width: 100%;
}

.resourcesCard:hover .downloadButton p {
    display: block;
    margin-right: 10px;
}