/* --- LANDING SECTION --- */

#landing {
    width: 100%;
    height: 100vh;
    background-image: url("/img/bg.png");
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.mainHeader {
    text-align: center;
}



/* --- ABOUT ASOCIATION SECTION --- */

#about {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sectionHeader {
    width: 100%;
    padding: 7rem 0 5rem 0;
    text-align: center;
}

.text {
    width: 75%;
    margin-bottom: 3rem;
    text-align: center;
}



/* --- MEMBERS SECTION --- */

#members {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 7rem;
}

.membersWrapper {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.member {
    width: 35rem;
    height: 21rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 1.3rem;
    box-shadow: 0 0 10px rgba(70, 70, 70, 0.2);
    transition: 0.25s;
}

.member:hover {
    box-shadow: 0 0 17px rgba(70, 70, 70, 0.3);
}

.member img {
    width: 12rem;
    height: 12rem;
    margin-bottom: 2rem;
}



/* --- CONTACT SECTION --- */

#contact {
    width: 100%;
    background-color: #505bff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactWrapper {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
}

.contactItem {
    width: 18%;
    min-height: 100px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 0 10px rgba(70, 70, 70, 0.2);
}

.pHeader {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pContact {
    font-size: 1.4rem;
    font-weight: 400;
}

.copyrightWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.copyright {
    font-size: 1.3rem;
    font-weight: 400;
}



/* --- RESPONSIVE --- */

/* --- 1170px --- */
@media only screen and (max-width: 1170px) {
    .member {
        width: 25%;
    }

    .contactItem {
        width: 25%;
    }
}

/* --- 660px --- */
@media only screen and (max-width: 660px) {
    .membersWrapper {
        flex-direction: column;
    }

    .member {
        width: 50%;
        margin-bottom: 4%;
    }

    .contactWrapper {
        flex-direction: column;
    }

    .contactItem {
        width: 50%;
        margin-bottom: 4%;
    }
}

/* --- 390px --- */

@media only screen and (max-width: 390px) {
    .member {
        width: 75%;
    }

    .contactItem {
        width: 75%;
    }
}
