.bgHome {
    background: url(../img/BG.jpg) no-repeat;
    background-size: cover;
    height: 500px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    margin-top: 100px;
}

.bgHome h1 {
    color: white;
    font-size: 3rem;
    text-transform: uppercase;
    margin-left: 40px;
}

.bgHome p {
    color: white;
    font-size: 1.8rem;
    text-transform: uppercase;
    width: 50%;
    text-align: center;
    margin-top: 40px;
    margin-left: 60px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.bgHome button {
    align-self: center;
    margin-top: 40px;
    color: white;
    cursor: pointer;
}

.products {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.products small {
    font-style: italic;
}

.products h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-top: 80px;
}

.products .imagesProducts {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 80px;
}

.containerProduct p {
    text-align: center;
    margin-bottom: 30px;
}

.segments {
    width: 100%;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.segments>h2 {
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-top: 80px;
}

.cardsSegments {
    display: flex;
    width: 100%;
    margin: 80px 0;
    justify-content: space-evenly;
}


/* .segments button{
  margin: 80px 0;
  color: #7b101e;
  cursor: pointer;
}

.segments button:hover{
  color: white;
} */

.appMobile {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.appMobile h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-top: 80px;
}

.containerAPP {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin: 80px 0;
}

.containerAPP p {
    width: 50%;
    text-align: justify;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.containerAPP button {
    width: 40%;
    margin-bottom: 40px;
}


/* Medias */

@media (max-width:375px) {
    .bgHome h1 {
        font-size: 1.4rem;
         margin-left: 30px;
    }
    .bgHome p {
        font-size: 1.2rem;
        width: 80%;
        margin-left: 35px;

    }
    .products h2 {
        font-size: 1.2rem;
        text-transform: uppercase;
        margin-top: 80px;
    }
    .containerProduct img {
        max-width: 100%;
    }
    .products .imagesProducts {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .imagesProducts .containerProduct:last-child{
        margin-top: 80px;
    }

    .segments > h2 {
        text-transform: uppercase;
        font-size: 1.4rem;
        margin-top: 80px;
        text-align: center;
    }

    .cardsSegments {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cardsSegments .card:last-child{
        margin-top: 80px;
    }

    .appMobile h2 {
        font-size: 1.4rem;
        text-transform: uppercase;
        margin-top: 80px;
        text-align: center;
    }

    .containerAPP {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    } 

    .containerAPP p {
        width: 90%;
        text-align: justify;
        line-height: 24px;
        display: flex;
        flex-direction: column;
        margin-top: 80px;
    }

    .containerAPP button {
        width: 40%;
        margin-bottom: 40px;
        margin-top: 40px;
        align-self: center;
    }
}