
#content_history{
    display: flex;
    flex-direction: row;
}

#content_history_text{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px;
    width: 50%;
}

#content_history_text > h2 {
    font-size: xx-large;
    color: #AC7F5E;
}

#Content_Products{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 482px;
    background-image: url("../img/products.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

#Content_Products > a > button{
    margin-bottom: 25px;
    align-self: center;
    color: white;
    background-color: #2C2C2C;
    border: none;
    border-radius: 10px;
    width: 300px;
    height: 50px;
    font-size: 25px;
}

#content_history > img{
    width: 50%;
    margin: 50px;
}


#see-more{
    margin-top: 25px;
    color: white;
    background-color: #AC7F5E;
    border: solid 1px black;
    border-radius: 10px;
    width: 256px;
    height: 50px;
    font-size: x-large;
}

#content_carroussel{
    display: flex;
    justify-content: center;
}

#content_carroussel > button{
    align-self: center;
    margin: 50px;
    width: 40px;
    height: 40px;
}

#next-btn, #previous-btn{
    background: none;
    border: none;
}
#next-btn > img, #previous-btn > img{
    width: 50px;
}

#previous-btn > img{
    rotate: 180deg;
}

#next-btn{
    background: none;
    border: none;
}
#next-btn > img{
    width: 50px;
}

#carrousel {
    display: grid;
    grid-template-columns: 1fr;
    border: solid 1px black;
    width: 75%;
    height: 350px;
    margin-top: 75px;
    margin-bottom: 75px;
    overflow: auto;
}

#carrousel > img{
    grid-column-start: 1;
    grid-row-start: 1;
    width: 100%;
    height: 350px;
    position: relative;
    left: 0;
}

.slide-active{
    transition: opacity 0.8s ease-in-out;
    opacity: 1;
}


.slide-hidden{
    transition: opacity 0.8s ease-in-out;
    opacity: 0;

}


p{
    margin: 10px;
    font-size: x-large;
}

