.stripe{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row;
    position: relative;
    height: 30.7vh;
    width: 100%;
    margin-bottom: 4vh;
}
.stripe::before{
    content: '';
    background-repeat: no-repeat;
    background-position:bottom;
    background-size: cover;
    position: absolute;
    background-image: url('https://www.raeto.com.br/images/raeto/grupo-raeto/Grupo-Raeto.jpg');
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.stripe-text{
    z-index: 1;
    color: white;
    text-shadow: 0px 0px 7px rgb(0 0 0 / 60%);
    font-size: 5vh;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}
.container-empresa{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
    height: 35vh;
    background-color: #f9f9f9;
    border: 4px solid #202c20;
    box-shadow: 0px 12px 16px 0px rgba(0,0,0,0.2);
    border-radius: 3vh;
    margin: 6vh;
}
.empresa-text{
    font-size: 2.6vh;
    width: 80%;
    color: #263426;
    text-align: center;
}
.container-site{
    display: flex;
    align-items: center;
    flex-flow: row;
    width: 60vw;
    height: auto;
    margin: 6vh 0 0 0 ;
    border-radius: 2vh;
    background-color: #f5f5f5;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.site-title{
    color: #263426;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-size: 3vh;
    font-weight: bolder;
    margin: 0 0 1vh 2.5vw;
}
.site-text{
    width: 85%;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8vh;
    margin-left: 2.5vw;
    line-height: 2.5vh;
}
.site-img{
    width: 31.7vw;
    border-top-right-radius: 2vh;
    border-bottom-right-radius: 2vh;
}
.site-img-reverse{
    width: 31.7vw;
    border-top-left-radius: 2vh;
    border-bottom-left-radius: 2vh;
}
.site-buttom{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7vw;
    height: 4.5vh;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-decoration: none;
    background-color: #263426;
    color: #FFF;
    border-radius: 3vh;
    cursor: pointer;
    margin: 2vh 0 0 10.7vw;
}
.site-buttom:hover{
    background-color: #0eb58e;
    transition: all 0.3s ease 0s;
}