#wks-main-cont {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-image: url("../images/carousel/footer_bg.png");
    background-color: rgba(1, 1, 1, 0.6);
    background-blend-mode: multiply;
    color: white;
    text-align: center;
    overflow: hidden;
}
#wks-main-cont h1 {
    z-index: 1;
}
#wks-blend-one {
    position: absolute;
    width: 40rem;
    left: -35rem;
    transform: rotate(250deg);
    z-index: 0;
}
#wks-blend-two {
    position: absolute;
    width: 40rem;
    left: -35rem;
    top: -33rem;
    transform: rotate(120deg);
    z-index: 0;
}
#wks-card-cont {
    color: black;
    display: grid;
    grid-template-columns: repeat(auto-fill, 19rem);
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    z-index: 1;
    max-width: 59rem;
}
.wks-card {
    background-color: #4cef2c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 12rem;
    border-radius: 0.2rem;
    text-align: center;
    width: 19rem;
}
.wks-title {
    font-weight: 700;
    font-size: 1.25rem;
}
.wks-txt {
    margin-top: 0.5rem;
    margin-inline: 1rem;
    font-size: 0.875rem;
}
.wks-btn {
    border: 2px solid black;
    border-radius: 0.2rem;
    background-color: transparent;
    padding-inline: 0.5rem;
    width: 7rem;
    height: 2rem;
    margin-top: 1rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 860px) and (min-width: 500px) {
    #wks-card-cont {
        grid-template-columns: repeat(2, 19rem);
    }
}

@media screen and (max-width: 500px) {
    #wks-card-cont {
        grid-template-columns: repeat(1, 19rem);
    }
    #wks-main-cont h1 {
        font-size: 2.5rem;
        font-weight: 600;
    }
}
