.frTitle{
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: center;
    border-bottom: .1rem solid #faaf3b;
    margin: 1.5rem 1rem;
    padding-bottom: .1rem;
    color: #faaf3b;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
}
@media screen and (min-width:500px){
    .frTitle{
        font-size: 3.5rem;
        margin: 2rem 1.5rem;
    }
}
.handShake{
    background-image: url('../images/handshake.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: #faaf3b;
    width: 100%;
    height: 15rem;
}
@media screen and (min-width:500px){
    .handShake{
        height: 25rem;
    }
}
@media screen and (min-width:900px){
    .handShake{
        height: 30rem;
    }
}
@media screen and (min-width:1200px){
    .handShake{
        height: 40rem;
    }
}
.frText{
    color: #742e16;
    margin: 1rem;
}
@media screen and (min-width:500px){
    .frText{
        margin: 1.5rem;
    }
}
.frText p{
    font-size: .9rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-align: justify;
}
@media screen and (min-width:500px){
    .frText p{
        font-size: 1.2rem;
    }
}
.frButtons{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 2rem;
}
@media screen and (min-width:500px){
    .frButtons{
        margin-top: 2.5rem;
    }
}
.frBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #742e16;
    border-radius: .5rem;
    width: 8rem;
    height: 4rem;
    transition: all 0.3s ease;
}
@media screen and (min-width:500px){
    .frBtn{
        width: 10rem;
        height: 5rem;
    }
}
@media screen and (min-width:1200px){
    .frBtn{
        width: 11rem;
        height: 6rem;
    }
}
.frBtn:hover{
    transform: scale(1.15);
}
.frBtn a{
    text-decoration: none;
}
.frBtn div{
    font-size: 1.15rem;
    color: #fff;
}
@media screen and (min-width:500px){
    .frBtn div{
        font-size: 1.75rem;
    }
}