.content__container {
    width: 100%;
    top: 69px;
    color: #2C292F;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image__container {
    width: 936px;
    height: 653px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C2CBCE;
    overflow: hidden;
}

.image__container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.row-artifact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Center children horizontally */
    align-items: center;
    /* Center children vertically */
    gap: 30px;
    /* Gap between artifact containers */
    margin: 0 auto;
    /* Center the row itself */
    width: 100%;
    /* Ensure it takes the full width of the parent container */
}

.artifact__container {
    width: 286px;
    height: 340px;
    background-color: #EEE2D4;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.artifact__container img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.icon__container {
    position: relative;
    top: 10px;
    /* Adjust the top position as needed */
    right: 10px;
    /* Adjust the right position as needed */
    z-index: 2;
    /* Ensure the icon is above other content */
}

.icon__container img {
    position: absolute;
    top: 0px;
    right: 4px;
    width: 22px;
    height: 40px;
    opacity: 60%;
    object-fit: cover;
    /* Adjust the object-fit property based on your icon's size and aspect ratio */
    cursor: pointer;
}

.artifact__showcase {
    position: fixed;
    width: 1040px;
    height: 700px;
    display: block;
    background-color: #FFFFFF;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -2px 2px 10px #5F5A55;
    /* Add drop shadow */
    z-index: 10 !important;
    visibility: hidden;
}

.open-artifact__showcase {
    visibility: visible;
}


.artifact__showcase img {
    position: relative;
    width: 511px !important;
    height: 306px;
    margin-top: 140px;
}

.artifact-description-text {
    margin-left: 96px;
    width: 363px;
}

.showcase__background {
    position: absolute;
    top: 0;
    /* Adjust as needed */
    right: 0;
    /* Align to the right */
    width: 529px;
    height: 100%;
    z-index: 1;
    border-radius: 10px;
    background-color: #FEDE49;
    color: #2C292F !;
    transform: translateY(0);
}

.showcase__background h2 {
    margin-top: 140px;
    font-weight: 300;
    font-size: 39.2px;
    margin-left: 96px;
    color: #2C292F !important;
}

.carousel-inner2 {
    position: relative;
    width: 512px !important;
    overflow: hidden;
    border-radius: 0 !important;
}

.carousel-inner img {
    border-radius: 0 !important;
    object-fit: cover;
}

.fade-in {
    animation: fadeIn ease 2s;
    -webkit-animation: fadeIn ease 2s;
    -moz-animation: fadeIn ease 2s;
    -o-animation: fadeIn ease 2s;
    -ms-animation: fadeIn ease 2s;
}

.category-filter {
    background-color: var(--primary-color1);
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: center;
    border: none;
    text-transform: uppercase;
}

.card-body {
    background-color: #EEE2D4;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}