.demo{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 4%;
}

.demo-images{
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-images img{
    width: 100%;
}

.material-rule {
    display: inline-block;
    width: 3em; /* Adjust as needed */
    border: none;
    border-top: 0.5rem solid #120101; /* Change thickness and color as desired */
    margin: 0 0.5em; /* Adjust spacing as needed */
    border-radius: 1rem; /* Rounded edges */
}

.no-bullet{
    list-style: none;
}
.no-bullet li{
    padding: 1%;
}

.project-info{
    text-align: left;
    justify-content: center;
    align-items: center;
}

.project-info h2{
    padding-top: 2%;
    padding-bottom: 2%;
    text-align: center;
}

.project-info p{
    padding-bottom: 20%;
}







.custom-image-continaer img{
    transition: 0.5s ease;
    object-fit: cover;
}

.custom-image-continaer:hover img{
    transform: scale(1.1);
}


.custom-image-container:hover .numbertext {
    visibility: visible;
}

.slide-show-container{
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 40vw;
    height: 70vh;
}

.prev, .next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.6);
}

.prev:hover, .next:hover{
    background-color: rgba(0,0,0,0.9);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}


.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
  
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.6);
}

.my-slide{
    display: none;
}




@media screen and (max-width: 960px) { 
    .demo{
        display: grid;
        grid-template-columns: 1fr;
    }

    .slide-show-container{
        width: 100%;
        height: 35vh;
    }
}