.section6 .gallery_section .title {
    text-align: center;
    padding-bottom: 80px;
    font-size: x-large;
}

.section6 .gallery_section .title h5 {
    font-size: xx-large;
}

.section6 .container-fluid {
    background-image: linear-gradient(rgb(164, 155, 247), rgb(143, 245, 240), rgb(161, 248, 197));
    padding: 50px 100px;
}

.section6 .col-md-3  {
    padding: 5px;
}

.section6 .gallery_card .card {
    position: relative;
    top: 50%;
    width: 100%;
    height: 400px;
    background: #000;
}
.section6 .gallery_card .card .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.section6 .gallery_card .card .image img {
    width: 100%;
    transition: .5s;
}
.section6 .gallery_card .card:hover .image img {
    opacity: .5;
    transform: translateX(30%);
}
.section6 .gallery_card .card .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;/*100%*/
    height: 100%;
    /* background: #ffc107; */
    background: linear-gradient(to right, #1a2a6c , #b21f1f, #fdbb2d);
    transition: .5s;
    transform-origin: left;
    transform: perspective(2000px) rotateY(-90deg);
}
.section6 .gallery_card .card:hover .details {
    transform: perspective(2000px) rotateY(0deg);
}
.section6 .gallery_card .card .details .center {
    padding: 20px;
    text-align: center;
    /* background: #fff; */
    background: linear-gradient(to right, #1a2a6c , #b21f1f, #fdbb2d);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.section6 .gallery_card .card .details .center h1 {
    margin: 0;
    padding: 0;
    /* color: #ff3636; */
    color: white;
    /* color: linear-gradient(to left, #1a2a6c , #b21f1f, #fdbb2d); */
    line-height: 20px;
    font-size: 20px;
    text-transform: uppercase;
}
.section6 .gallery_card .card .details .center h1 span {
    font-size: 14px;
    color: #faf8f8;
}
.card .details .center p {
    margin: 10px 0;
    padding: 0;
    color: black;
}

.card .details .center a:hover {
    text-decoration: none;
}
.section6 .gallery_card .card .details .center ul {
    margin: 10px auto 0;
    padding: 0;
    display: table;
}
.section6 .gallery_card .card .details .center ul li {
    list-style: none;
    margin: 0 5px;
    float: left;
}
.section6 .gallery_card .card .details .center ul li a {
    display: block;
    background: #262626;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform: .5s;
}
.section6 .gallery_card .card .details .center ul li a:hover {
    background: #ff3636;
}