  

.card-about {
    position: relative;
    width: 700px;
    height: 400px;
    background: #fff;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    box-shadow: 10px 20px 40px rgba(0,0,0,0.25);
    transition: 1s;
    left: 24%;
    padding: 10px 10px;
    /* overflow: hidden;  */
    /* margin: 0 auto;  */
}

.card-about:hover {
    transform: translateX(50%);
}

.card-about .imgBox-about {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform-origin: left;
    transform-style: preserve-3d;
    background: #000;
    transition: 1s;
}

.card-about:hover .imgBox-about {
    transform: rotateY(-180deg);
}

.card-about .imgBox-about img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-style: preserve-3d;
}

.card-about .details-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-about .details-about .content-about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-about .details-about .content-about h2 {
    text-align: center;
    font-weight: 700;
    line-height: 1em;
    font-size: 25px;

}

.card-about .details-about .content-about h2 span {
    color: #e21212;
    font-size: 0.8em;    
    font-size: 30px;
/* margin-bottom: 100px; */
}

 /* ... Your existing styles ... */

.card-about .details-about .content-about .domains-list .columns {
    display: flex;
    /* justify-content: space-between; */
}

.card-about .details-about .content-about .domains-list .column {
    list-style: none;
    padding: 0;
    flex: 1;
    /* margin: 0 10px; */
}

 
 

/* Rest of your styles... */

@media (max-width: 768px) {
 .card-about{
        display: none;

 }
}
