.home-rei {
    height: 100vh;
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-flow: column;
    background-image: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)), url(/assets/image/436336990_760494889522218_4207625492478626379_n.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 30rem;

}

.home-rei .content {
    position: relative;
    z-index: 1000;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.home-rei .content h1 {
    color: #edf2fc;
    margin: 0;
    margin-bottom: 30px;
    padding: 0;
    font-size: 2.7em;
    text-transform: uppercase;
}

.home-rei .content p {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
    font-size: 1.3em;
}











.service {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service h1 {
    color: #edf2fc;
    font-size: 5rem;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: transparent;
    letter-spacing: 4px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 80px;
}

.card {
    background: transparent;
    border-radius: 20px;
    border: 4px solid #09B0DA;
    padding: 5% 8%;
    transition: .6s;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    top: 150%;
    left: -200px;
    width: 120%;
    transform: rotate(50deg);
    background: #fff;
    height: 18px;
    filter: blur(30px);
    opacity: 0.5;
    transition: 1s;
}

.card:hover::after {
    width: 225%;
    top: -100%;
}

.card img {
    width: 150px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.card h2 {
    color: #edf2fc;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.card p {
    line-height: 30px;
    text-align: center;
    width: 100%;
    margin: 12px 0;
}

.card .btn {
    padding: 10px 15px;
}

.card:hover {
    background-color: var(--bd-color);
    transform: translateY(-8px);
    border: 1px solid #fff;
}






@media screen and (max-width:1200px) {
    .cards {
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width:900px) {
    .cards {
        grid-template-columns: repeat(1,1fr);
    }

    .service h1 {
        font-size: 3.5rem;
    }
}