﻿body {
    font-family: Poppins, Arial, sans-serif !important;
}
.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    min-width: 180px;
    border: none;
    outline: none;
    border-radius: 10px;
    min-height: 220px;
    overflow: hidden;
    margin-top:20px;
}

.benefit-card {
    margin-top: 25px;
    padding: 20px 30px;
}

.active, .collapsible:hover {
    background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
    padding: 18px 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    color: black !important;
    font-size: 18px;
    border-radius: 10px;
    text-align: left;
    min-width: 180px;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    border-radius: 10px;
    margin-top:50px;
}

.secondary{
    width: 250px !important;
    height: 250px !important;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    border-radius: 10px;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: rgb(240, 240, 240);
    color: black;
    border-radius: 10px;
    overflow:hidden;
}

/* Style the back side */
.flip-card-back {
    background-color: rgb(240, 240, 240);
    color: white;
    transform: rotateY(180deg);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}

.flip-card-back p{
    margin:0 !important;
}

#another-block ul{
    list-style-type:disc;
    padding-left:4%;
}

#another-block li{
    font-size: 18px; 
    line-height: 25px; 
    color: rgb(21, 47, 46); 
    font-style: normal; 
    font-weight: 400;
}

