.title{
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 4rem;
    height: 700px;
}

.title h1{
    font-size: 5rem;
    line-height: 4rem;
    margin: 0;
    box-sizing: border-box;
    font-weight: 600;
    text-shadow: 0 0 1rem var(--black-color);
    text-align: center;
}

.title-logo{
    margin-right: 4rem;
    display: flex;
    width: 50rem;
    height: 20rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/icon/powerdoom-logo.png);
    animation: lightning 1s infinite alternate;
}

#elite{
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#elite::before{
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url(../img/main/main_2.jpg);
    filter: grayscale(100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

#whoweare .row,
#elite .row{
    display: flex;
    padding: 2rem 0 2rem 0;
    width: 100%;
    justify-content: center;
}

#whoweare .image,
#elite .image{
    padding: 1rem;
    display: flex;
    width: 60rem;
    height: 21rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
}

#whoweare .image,
.slider-container{
    box-shadow: 0 0 2rem rgb(0 0 0 / 25%);
}

.slider-container{
    border-radius: 1rem;
    border: 4px solid var(--red-color);
}

#whoweare .image{
    background-image: url(../img/main/main_1.jpg);
}

#elite .image{
    background-image: url(../img/main/main_2.jpg);
}

#comunity {
    min-height: 40rem;
    text-align: center;
}

#comunity .title-text{
    font-size: 3rem;
    line-height: 8rem;
    margin: 0;
    box-sizing: border-box;
    font-weight: 600;
    text-shadow: 0 0 1rem white;
    text-align: center;
    color: var(--black-color);
}

#comunity .paragraph{
    text-shadow: 0 0 1rem white;
    color: var(--black-color);
    box-sizing: border-box;
}

#reviews{
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(1rem);
    min-height: 50vh;
}

.reviews{
    width: 100%;
    max-width: 80rem;
    min-height: 60vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.card{
    display: flex;
    flex-direction: column;
    width: 25%;
    height: 50%;
    background-color: var(--black-color);
    font-family: var(--heading-font);
    color: white;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    margin: 1rem;
    min-height: 20rem;
    justify-content: center;
}

.review{
    font-size: 1.2rem;
    font-style: italic;
}

.author{
    color: var(--red-color);
}

.author .material-symbols-outlined{
    vertical-align: -2.5px;
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .title{
        height: 400px;
    }

    .title h1{
        font-size: 3rem;
    }

    .title-logo {
        width: 20rem !important;
        height: 10rem !important;
        margin-right: 0;
    }

    .row{
        flex-direction: column;
    }

    #whoweare .image,
    #elite .image{
        margin-left: 0.25rem;
        width: 88%;
        height: 10rem;
    }

    #elite .row{
        align-items: center;
    }

    .reviews{
        flex-direction: column;
    }

    .card{
        width: 80%;
    }
}

@keyframes lightning {
    0% { filter: drop-shadow(0 0 10px white); }
    100% { filter: drop-shadow(0 0 40px white); }
}

