
*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

:root {
    --color-primary: #1b684a;
    --color-success: #00bf8e;
    --color-warning: #f7c94b;
    --color-danger: #f75843;
    --color-white: #fff;
    --color-light: rgba(255,255,255, 0.7);
    --color-black: #000;
    --color-bg: #1f2641;
    --color-bg1: #e8f5ee;
    --color-bg2: #424890;
    --color-bg3: #daeeda;
    --color-bg4: #e2e2e2;


    --fontsize-min: 1.2rem;

    --container-width-lg: 75%;
    --container-width-md: 78%;
    --container-width-sm: 94%;

    --transition:all 400ms ease;

}

body {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.7;
    color: var(--color-black);
    background: var(--color-bg1);
}


.container {
    width: var(--container-width-lg);
    margin:0 auto;
    
}

/* .marketplace__container {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1000 !important;
} */



/* Marketplace header */
.Marketplace  {
    margin-top: 1rem;
}

.Marketplace h2 p {
    text-align: center;
}

/* Card styling */
.card {
    background-color: var(--color-white);
    box-shadow: 0 0 2.5rem rgba(0,0,0, 0.3);
    margin-bottom: 5rem;
}

.card-image {
    height: 50vh;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 2rem;
}



.project-details {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-direction: column !important;
    align-items: flex-start;
}


.icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}


.icon-text .text {
    display: flex;
    margin-right: 1rem;
    font-size: .8rem;
    font-weight: 1000;
}

.icon-text .icon {
    color: var(--color-primary);
    margin-right: 0.6rem;
}


.project-title {
    margin-bottom: 1rem;
}

.project-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-button {
    width: 5rem;
    height: 5rem;
    border: 0.1rem solid var(--color-success);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    color: var(--color-primary);
    outline: none;
    transition: all 0.3 ease-in-out;
}

.share-button:focus {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.marketplace__cards .card::before {
    content: "";
    position: absolute;
    top: 6;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/Images/WordPress-Coming-Soon-.png");
    background-repeat: no-repeat;
    background-size: 90%;
    opacity: 0.5; /* Adjust the opacity value as needed */
    z-index: 1;
}

.marketplace__cards .card {
    position: relative;
}




/* MEDIA QUERY */

@media screen and (min-width: 900px) {
    .card {
        display: flex;
        height: 25rem;
        overflow: hidden;
    }
    .card-image {
        height: auto;
        flex: 1; 
    }

    .card-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* project */

    .project-details {
        display: flex;
        flex-direction: row !important;
    }
    .project-about {
    font-size: 1rem;
    }
    .icon-text .icon{
    font-size: .9rem;
    } 
    
    .marketplace__cards .card::before {
        background-size: 78%;

    }
   
    

}











