
        .zoom-in {
            animation: zoomIn 0.3s;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* The Modal (background) */
        .modal {
            display: none;
            /* Hidden by default */
            position: fixed;
            /* Stay in place */
            z-index: 1;
            /* Sit on top */
            left: 0;
            top: 0;
            width: 100%;
            /* Full width */
            height: 100%;
            /* Full height */
            overflow: auto;
            /* Enable scroll if needed */
            background-color: rgb(0, 0, 0);
            /* Fallback color */
            background-color: rgba(0, 0, 0, 0.9);
            /* Black w/ opacity */
        }

        /* Modal Content/Box */
        .modal-content {
            background-color: #cdc7cc;
            margin: 10% auto;
            margin-top: 30px;
            /* 15% from the top and centered */
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 1080px;
            font-family: 'Poppins', sans-serif;
            /* Could be more or less, depending on screen size */
        }

        /* The Close Button */
        .close {
            color: black;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        .flex-mod {
            display: flex;
            justify-content: center;
        }

        .separator {
            height: 2px;
            width: auto;
            background-color: red;
            margin-left: 10px;
            margin-right: 10px;
        }

        .dl-btn {
            font-size: 14px;
            border-radius: 25px;
            padding: 15px 25px;
            background-color: #ec2929;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            width: 100%;
        }

        .dl-btn-premium {
            font-size: 14px;
            border-radius: 25px;
            padding: 15px 25px;
            background-color: #ffd700;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            width: 100%;
        }

        .link-dl {
            transition: 0.3s;
            text-decoration: none;
            border: none;
            color: white;
            background-color: #ec2929;
            padding: 10px;
            border-radius: 10px;
            margin-top: 10px;
        }
        /* classic hover style */
        .link-dl:hover {
            transition: 0.3s;
            background-color: white;
            color: #ec2929;
        }
        .c-link {
            transition: 0.3s;
        }
        .c-link:hover {
            transition: 0.3s;
            cursor: pointer;
            transform: scale(1.1);
            
        }

        .zoom-out {
            transform: scale(0.8);
            opacity: 0;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }