 @keyframes glow {
            0% {
                text-shadow: 0 0 5px #d4efdf, 0 0 10px #d4efdf, 0 0 15px #d4efdf, 0 0 20px #27ae60, 0 0 30px #27ae60, 0 0 40px #27ae60, 0 0 55px #27ae60;
            }
            50% {
                text-shadow: 0 0 10px #d4efdf, 0 0 20px #d4efdf, 0 0 30px #d4efdf, 0 0 40px #27ae60, 0 0 50px #27ae60, 0 0 60px #27ae60, 0 0 75px #27ae60;
            }
            100% {
                text-shadow: 0 0 5px #d4efdf, 0 0 10px #d4efdf, 0 0 15px #d4efdf, 0 0 20px #27ae60, 0 0 30px #27ae60, 0 0 40px #27ae60, 0 0 55px #27ae60;
            }
        }

        .glowing-text {
            color: #2c3e50;
            font-weight: bold;
            animation: glow 1.5s ease-in-out infinite alternate;
        }
        
        .join_img {
            position: relative;
            overflow: hidden;
        }

        .join_img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
        }

        .join_img img:hover {
            transform: scale(1.1);
            filter: brightness(1.2);
        }

        .join_img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(45deg, rgba(39, 174, 96, 0.3), rgba(212, 239, 223, 0.3));
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .join_img:hover::after {
            opacity: 1;
        }
.vert .container {
    padding-top: 10%;
    padding-bottom: 10%;
}

.vert .layer {
    margin: 0px;
    padding: 0px;
}

.vert h3 {
    display: flex;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
}

.vert .frame {
    height: 280px;
    width: 180px;
    border-radius: 10px;
    background-color: rgba(240, 248, 255, 0.24);
    margin: 0px;
    padding: 0px;
    align-items: center;
    box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.288);
    transition: 0.7s;
}
.vert .frame:hover {
    box-shadow: -2px 20px 20px 5px rgba(0, 0, 0, 0.301);
}

.vert .content .img-fluid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: -1px 4px 4px 1px rgba(0, 0, 0, 0.274);
    height: 100px;
    width: 200px;
    border: 2px solid brown;
    border-radius: 40px 0px 40px 0px;
}

.vert h5 {
    font-size: 18px;
    font-weight: 700;
    padding-top: 10px;
    margin-left: 10px;
}

.vert .info a {
    color: rgb(74, 117, 207);
    transition: 0.7s;
}
.vert .info a:hover {
    color: aliceblue;
}

@media (max-width: 768px) {
    .vert .layer {
        margin: 0px;
        padding: 0px;
    }
    .vert h5 {
        font-size: 21px;
    }
    .vert .frame {
        height: auto;
        width: auto;
        margin: 20px;
        padding: 20px;
    }
    .vert .content .img-fluid {
        height: auto;
        width: auto;
        box-shadow: -1px 5px 5px 1px rgba(0, 0, 0, 0.274);
    }
}
