.bg-custom {
    background-color: #d1d1d1;
}

.bg-purple {
    background-color: #ae70ff;
}

.text-purple {
    color: #ae70ff;
}

.border-custom {
    border-color: #ae70ff !important;
}

.btn-purple {
    background-color: #ae70ff;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #ae70ff;
    color: black;
}

.flip-card-back {
    color: white;
    transform: rotateY(180deg);
}

@media only screen and (max-width: 800px) {
    .carousel-caption {
        display: none !important;
    }
}