/* banner section */
.banner {
    width: 100%;
    height: 300px;
    background-image: url('/images/the_boys.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;

    display: none;
}

/* team section */
.team {
    padding: 30px;
}

.team h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
}

.member {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-bottom: var(--text) solid 1px;
    margin-top: 30px;
    padding-bottom: 30px;
}

.member:first-child {
    margin-top: 0;
}

.member:last-child {
    border-bottom: none;
}

.member:last-child p {
    margin-bottom: 0;
}

.member img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3);
}

.member h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.member h3,
.member p {
    font-size: 16px;
    font-weight: 300;
}

.member h3 {
    margin-bottom: 20px;
}

.member p {
    margin-bottom: 0;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .team {
        padding: 50px;
    }
    
	.member {
        align-items: center;
        flex-direction: row;
    }

    .member div:nth-child(1) {
        margin-right: 20px;
    }

    .member img {
        margin-bottom: 0;
    }

    .member p {
        margin-bottom: 0;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 1024px) {

	.team {
        padding: 50px 120px;
    }

}

/* Extra large devices (laptops) */
@media only screen and (min-width: 1250px) {

    .team {
        padding: 60px 200px;
    }

}

/* Extra large devices (large laptops) */
@media only screen and (min-width: 1440px) {

    .team {
        padding: 60px 300px;
    }

}

/* Extra large devices (Desktops) */
@media only screen and (min-width: 1920px) {

    .team {
        padding: 60px 500px;
    }

    .team h1 {
        font-size: 50px;
    }

    .member img {
        width: 270px;
        height: 270px;
    }

    .member h2 {
        font-size: 27px;
        font-weight: 600;
    }
    
    .member h3,
    .member p {
        font-size: 20px;
        font-weight: 300;
    }

}

/* Extra large devices (Large Desktops) */
@media only screen and (min-width: 2560px) {

    .team {
        padding: 60px 800px;
    }

}