.pergola{
    margin-top: 150px;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tente{
    width: 80px;
    height: 120px;
    background-color: black;
    border-radius: 0 0 100px 100px;
}











/* --- BUSINESS DESCRIPTION START --- */
.businessDescription{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.businessDescription p{
    width: 525px;
    font-size: 23px;
    line-height: 33px;
    text-align: center;
}
/* --- BUSINESS DESCRIPTION END --- */










/* --- BOSS DESCRIPTION START --- */
.bossPhoto{
    display: flex;
    justify-content: end;
    align-items: center;
}
.bossPhoto img{
    width: 450px;
    height: 650px;
    padding: 50px;
    object-fit: cover;
}
.bossText{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    height: 650px;
    padding: 50px;
}
.bossText h1{
    font-size: 40px;
}
.bossText p{
    font-size: 23px;
    line-height: 33px;
    width: 85%;
    padding: 50px 50px 0 0;
}
/* --- BOSS DESCRIPTION END --- */




















/* --- RESPONSIVE START --- */
@media all and (max-width: 600px) and (min-width: 30px) {
    .pergola{
        margin-top: 100px;
    }
    .bossPhoto{
        justify-content: center;
    }
    .bossPhoto img{
        width: 100%;
        padding: 27px;
    }
    .bossText{
        padding: 20px;
        align-items: center;
        height: auto;
    }
    .bossText p{
        text-align: center;
        padding: 40px 0 0 0;
    }
    .bottomHr{
        display: none;
    }
}