.cardGlass {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 30px;
    padding-top: 30px;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    /* background: rgba(255, 255, 255, 0.1); */
    /* background: linear-gradient(#00ccff, #d500f9); */
    /* background: rgba(0, 85, 255, 0.6); */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: start;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.cardGlass .contentGlass {
    padding: 20px;
    text-align: center;
    transition: 0.5s;
}

.cardGlass .contentGlass h2 {
    font-size: 1.8em;
    color: #fff;
    z-index: 1;
}

.cardGlass .contentGlass p {
    font-size: 1em;
    color: #fff;
    font-weight: 300;
}

.cardGlass .contentGlass a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 15px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.cardGlass .contentGlass .titleContentGlass {
    position: relative;
    top: 0px;
    height: 200px;
    width: 100%;
    padding-bottom: 20px;
}

/*************************************************/

.cardGlass2 {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 30px;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    /* background: rgba(70, 180, 255, 0.3); */
    /* background: linear-gradient(#00ccff, #d500f9); */
    background: rgba(0, 85, 255, 0.6);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.cardGlass2 .contentGlass2 {
    padding: 20px;
    text-align: center;
    transition: 0.5s;
}

.cardGlass2 .contentGlass2 h2 {
    font-size: 1.8em;
    color: #fff;
    z-index: 1;
}

.cardGlass2 .contentGlass2 p {
    font-size: 1em;
    color: #fff;
    font-weight: 300;
}

.cardGlass2 .contentGlass2 a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 15px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* .cardGlass::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 400px;
    background: linear-gradient(#00ccff, #d500f9);
    z-index: -1;
    transition: 0.3s;
    animation: animate 2s linear infinite;
    border-radius: 20px;
}

.cardGlass:hover::before {
    width: 105%;
    height: 410px;
    padding: 5px;
}

.cardGlass::after {
    content: '';
    position: absolute;
    inset: 5px;
    background-color: transparent;
    border-radius: 16px;
} */
