@charset "utf-8";
/* CSS Document */
/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container for cards */
.card-container {
	padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Individual card styles */
.card {
    width: calc(33.33% - 250px); /* Adjust as needed */
    margin-bottom: 20px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 390px; /* Adjust card height */
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    background-color: #fff;
    border: 0 solid #ddd;
}

.card-back {
    transform: rotateY(180deg);
}

/* Additional styling (customize as needed) */
.card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.card p {
	padding-top: 10px;
    text-align: center;
    font-size: 16px;
    color: #333;
}
.card p.small  {
	padding-top: 10px;
    text-align: center;
    font-size: 15px;
    color: #333;
}
.card quote {
    text-align: center;
    font-size: 16px;
	font-weight: bold;
    color: #333;
}
.card h2 {
    text-align: center;
    font-size: 18px;
    color: #333;
}
.card h3 {
    text-align: center;
    font-size: 14px;
    color: #333;
}


