.resource-page{
    background-color: #FDFBFA;
}
.resource-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 0px;
}
.resource-card {
    flex: 0 0 calc(((100% - 240px) / 12) * 4 + 60px);
    border: 1px solid #e4dcd9;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease-out;
    background-color: #fefbf7;
}
.resource-card:hover {
    box-shadow: 0 20px 40px -12px oklch(42% .14 25 / .28), 0 4px 10px oklch(0% 0 0 / .06);
    transform: translateY(-10px);
    transition: all 0.2s ease-out;
}
.resource-text {
    color: #1a1a1a;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100px;
    background-color:#e0e0e0;
}
.resource-text h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 125%;
    font-family: var(--font-title) !important;
}
.resource-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    margin: 20px 20px 0px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
}
.resource-card:hover .resource-img{
    box-shadow: 0px 0px 5px #e4dcd9;
}
.resource-img img {
    height: 300px;
    object-fit: contain;
    max-width: 100%;
    border-radius: 5px;
}
.resource-bottom {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 5px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: #4b4b4b;
}
.resource-view {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.resource-view svg {
    width: 20px;
    transition:all 0.5s ease-out;
}
.resource-card:hover .resource-view svg{
    transform: rotate(45deg);
    transition:all 0.5s ease-out;
}
.core-value-box.reveal:nth-child(1) {
    transition-delay: 0s;
}
.core-value-box.reveal:nth-child(2) {
    transition-delay: 0.25s;
}
.core-value-box.reveal:nth-child(3) {
    transition-delay: .5s;
}
.core-value-box.reveal:nth-child(4) {
    transition-delay: 0.75s;
}
.core-value-box.reveal:nth-child(5) {
    transition-delay: 1s;
}

@media (max-width:1200px){
    .resource-card {
        flex: 0 0 calc(((100% - 150px) / 12) * 6 + 60px);
    }
}
@media (max-width:767px){
    .resource-card {
        flex: 100%;
    }
}


