:root {
    --d: 0.1s;
    --e: ease-in-out;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    display: grid;
    place-items: start;
    background-color: white !important;
}

p {
    text-align: justify;
}

a {
    text-decoration: none;
}

.page-content {
    margin-top: 2rem !important;
    display: grid;
    grid-gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow-y: auto;
    max-height: 65vh;
    min-height: auto;
}

@media (min-width: 600px) {
    .page-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 800px) {
    .page-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
    color: whitesmoke;
    background-color: whitesmoke;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
    height: 340px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    max-width: 280px;
    width: 100%;
}

.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(var(--d) * 1.5) var(--e);
    pointer-events: none;
}

.card:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.616) 50%,
            rgba(0, 0, 0, 0) 100%);
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
}

@media(max-width:869px) {
    .card:after {

        background-image: linear-gradient(to top,
                rgba(0, 0, 0, 0.993) 0%,
                rgba(0, 0, 0, 0.322) 50%,
                rgba(0, 0, 0, 0) 100%);

    }
    
.page-content {
 
    max-height: 60vh !important;
    min-height: auto;
}

}

.content {
    top: 15%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform var(--d) var(--e);
    z-index: 1;
}

.content>*+* {
    margin-top: 1rem;
}

.title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.title-en {
    font-size: 20px !important;
}

.btn {
    cursor: pointer;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    background-color: rgba(241, 241, 241, 0.911);
    border: none;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #c5c5c5;
    transform: scale(1.05);
}

@media (hover: hover) and (min-width: 600px) {
    .card:after {
        transform: translateY(0);
    }

    .content {
        transform: translateY(calc(100% - 4.5rem));
    }

    .content>*:not(.title) {
        opacity: 0;
        transform: translateY(1rem);
        transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    }

    .card:hover,
    .card:focus-within {
        align-items: center;
    }

    .card:hover:before,
    .card:focus-within:before {
        transform: translateY(-4%);
    }

    .card:hover:after,
    .card:focus-within:after {
        transform: translateY(-50%);
    }

    .card:hover .content,
    .card:focus-within .content {
        transform: translateY(0);
    }

    .card:hover .content>*:not(.title),
    .card:focus-within .content>*:not(.title) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--d) / 8);
    }

    .card:focus-within:before,
    .card:focus-within:after,
    .card:focus-within .content,
    .card:focus-within .content>*:not(.title) {
        transition-duration: 0s;
    }
}

.background-layer {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.wpb_wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 5rem auto 2rem auto;
    padding: 0 2rem;
    min-height: 100vh;
}

@media (max-width: 868px) {
    .wpb_wrapper {
        width: 90% !important;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .title-subtitle {
        font-size: 16px !important;
    }

    .about-us-title {
        font-size: 14px !important;

    }

    .woodmart-title-container {
        font-size: 20px !important;
    }


}

.title-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.title-subtitle {
    text-align: center;
    margin-bottom: 15px;
    color: black;
    font-size: 20px;
}

.about-us-title {
    width: 80%;
    text-align: center;
    font-size: 18px;
    color: black;
}

.woodmart-title-container {
    color: black;
    font-size: 2rem;
}