/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 28 2025 | 15:04:49 */

        .iw-fiesta-cards-container {
            font-family: 'Ubuntu', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 90px 0;
            box-sizing: border-box;
            gap: 40px;
            flex-wrap: wrap;
        }

        .iw-fiesta-card {
            width: 350px;
            height: 450px;
            perspective: 1000px;
        }

        .iw-fiesta-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .iw-fiesta-card:hover .iw-fiesta-card-inner {
            transform: rotateY(180deg);
        }

        .iw-fiesta-card-front, .iw-fiesta-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 20px;
            background: linear-gradient(135deg, hsl(36, 63%, 64%) 10%, #C0914A 30%, #FFDE00 90%, hsl(36, 63%, 64%) 100%);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            box-sizing: border-box;
        }

        .iw-fiesta-card-back {
            transform: rotateY(180deg);
            justify-content: flex-start;
            padding-top: 50px;
        }

        .iw-fiesta-card-front .iw-fiesta-icon {
            font-size: 80px;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .iw-fiesta-card-front .iw-fiesta-title {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            text-align: center;
            line-height: 1.2;
        }

        .iw-fiesta-card-back .iw-fiesta-back-title {
            color: #fff;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .iw-fiesta-card-back .iw-fiesta-description {
            color: #fff;
            font-size: 16px;
            line-height: 1.6;
            margin: 10px 0;
            text-align: left;
            font-weight: regular; 
        }

        .iw-fiesta-flip-hint {
            position: absolute;
            bottom: 15px;
            right: 15px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .iw-fiesta-flip-hint .iw-fiesta-hint-icon {
            font-size: 14px !important;
            margin: 0 !important;
            text-shadow: none !important;
        }

        @media (max-width: 768px) {
            .iw-fiesta-cards-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .iw-fiesta-card {
                width: 280px;
                height: 500px;
            }
            
            .iw-fiesta-card-front .iw-fiesta-title {
                font-size: 20px;
            }
            
            .iw-fiesta-card-back .iw-fiesta-description {
                font-size: 14px;
            }
           .iw-fiesta-separator {
                background-color:#C0914A;
                border: 10px;
                width: 50%;
            }
        }