.banner
{
    width: 100%;
    height: 50vw;
}

.bannerImage
{
    position: absolute;
    order: 0;
    width: 100%;

    top: 60px;
}

.bannerGradient
{
    position: relative;
    width: 100%;
    height: 100%;

    background: linear-gradient(0deg, 
    #DBDBC1 0%, 
    #DBDBC1cc 10%, 
    #DBDBC166 30%, 
    #DBDBC100 50%, 
    #DBDBC100 100%);

    z-index: 1;
}

.profileBorder
{
    position: absolute;
    width: 15%;

    padding: 20px;
    padding-right: 30px;

    top: 200px;
    left: 20%;

    border-radius: 200px 200px 0% 0%;

    overflow: hidden;

    border: 5px solid #FFFFFF;

    z-index: 2;
}

.profileImage
{
    width: 100%;
    height: 100%;

    border-radius: 200px 200px 0% 0%;

    border: 5px solid #FFFFFF;
}

.profileIntro
{
    position: absolute;

    width: 40%;
    height: auto;

    top: 450px;
    left: 40%;

    font-size: 1.5vw;

    z-index: 2;
}

.profileIntro .title
{
    font-size: 5vw;
    margin-bottom: 10px;

    color: #FFFFFF;

    font-family: 'Salsa', 'Noto Sans', 'sans-serif';
}

.therapy
{
    top: 350px;
    left: 45%;
    width: 40%;
    padding: 10px;
    padding-right: calc(15% - 10px);

    color: #FFFFFF;

    background-color: #00000077;
}

.therapy .title, .coaching .title
{
    color: var(--highlight);
}

.coaching
{
    top: 350px;
    left: 0%;
    width: 40%;
    padding: 10px;
    padding-left: 15%;

    text-align: right;

    color: #FFFFFF;

    background-color: #00000055;
}

@media only screen and (max-width: 1000px) 
{
    .therapy, .coaching
    {
        top: 20vw;
        left: 10%;
        width: 70%;
        padding: 0px 5%;
        text-align: center;
    }

    .titleBanner
    {
        top: 20vw;
        left: 30%;
        width: 60%;
        padding: 0px 5%;
        text-align: center;
    }

    .profileIntro
    {
        font-size: 2vw;
        padding-bottom: 5px;
    }

    .profileIntro .title
    {
        font-size: 7vw;
    }

    .profileBorder
    {
        top: 13vw;
        left: 20px;
    }
}