.image-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 20px;
        }

        .one {
            position: relative;
            width: calc(20% - 10px); /* Five images per row */
            max-width: 200px;
            margin: 5px;
        }

        .image {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .overlay {
            position: absolute;
            bottom: 100%; /* Start hidden */
            left: 0;
            right: 0;
            background-color: rgba(0, 140, 186, 0.8);
            overflow: hidden;
            width: 100%;
            height: 0;
            transition: .5s ease;
            border-radius: 5px;
        }

        .one:hover .overlay {
            bottom: 0;
            height: 100%;
        }

        .text {
            color: white;
            font-size: 16px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .line-breaks {
            display: block;
            margin-bottom: 20px; /* Adjust this value to control the line spacing */
        }

    .tick-mark {
        color: red;
    }
