body{
    overflow-x: hidden;
}

.story{
    width: 100vw;
    align-self: center;
    margin: 0px;
    margin-top: var(--header-height);
    padding: 0px;
}

.story-title{
    width: 100%;
    align-self: center;
    background-image: url(/assets/images/80s_retro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    text-align: center;
    position: relative;
    max-height: 300px;
}

.story-title-txt{
    width: 100%;
    overflow: hidden;
    align-self: center;
    position: absolute;
    align-content: center;
    font-size: min(10vw, 150px);
    font-weight: 700;
    text-transform: lowercase;
    line-height: 130%;
    letter-spacing: 40px;
}


.section{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.section > div{
    min-width: 300px;
    width: 100%;
    flex-grow: 1;
    flex-basis: 40%;
    display: flex;
    align-items: center;
    align-content: center;
}

.section > img{
    padding: 0%;
    width: 40%;
    min-width: 300px;
    flex-grow: 1;
}

.section > div > div > .txtcontent{
    /*padding: 30px;*/
    padding-left: 50px;
    width: calc(100% - 80px);
}

.mtttxt{
    padding: 30px;
    font-size: 30px;
    text-transform: uppercase;
    line-height: .99em;
    letter-spacing: -.8px;
    font-weight: 700;
    padding-left: 50px;
    padding-top: 50px;
}

.card_container{
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-around;
}

.card{
    margin: 50px;
    flex-grow: 1;
    flex-shrink: 1;
    background-image: linear-gradient(to top, #222, rgba(33,33,33,0)), url("/assets/images/team/black.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-basis: 20%;
    min-width: 200px;
    max-width: 300px;
    position: relative;
}

.card_txt_container{
    position: absolute;
    bottom: 7%;
    margin-left: 7%;
    width: 100%;
}

.firstname{
    height: 100%;
    font-size: 1.8rem;
}

.lastname{
    font-size: 22px;
}

.underscore{
    margin-top: 10px;
    width: 15%;
    border-bottom: 2px solid rgb(91,229,146);
}


.profession{
    margin-top: 10px;
    font-size: 17px;
    color: rgb(91,229,146);
    font-weight: 700;
    text-transform: uppercase;
    line-height: .99em;
    letter-spacing: -.8px;
}