*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #fff;
    margin-top: 80px;
    font-family: 'Cabin', sans-serif;
}

.contentCreationChild{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.presentationCreation{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ff3131;
    padding: 50px;
    gap:20px;
    color: white;
}

.imageCreationBanniere{
    margin-top: 40px;
}

.imageCreationBanniere img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center calc(100% - 20px);
}

.imageWrapperBanniere{
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 80vh;
}

.presentationCreation h1{
    font-size: 50px;
}

.row, .row > .column {
    padding: 8px;
}

.column {
    float: left;
    width: 33.33%;
    display: none;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.content {
    background-color: white;
    padding: 10px;
    position: relative;

}

.filter {
    display: none;
}

.show {
    display: block;
}

#myBtnContainer{
    margin: 10em 0 6em;
    border-bottom: 1px solid #ccc;
}

.btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
    font-size: 30px;
}

.btn:hover {
    background-color: #ddd;
}

.btn.active {
    background-color: #666;
    color: white;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.imageCreation {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(211, 83, 72, 0.7);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.image-wrapper:hover .overlay {
    height: 60%;
}

.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.casa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ligne{
    display: flex;
    flex-direction: row;
}

.image-wrapperX {
    width: 100%;
    overflow: hidden;
}

.image-wrapperX img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* Responsive*/

@media screen and (max-width: 767px) {

    .ligne{
        flex-direction: column;
    }

    .column {
        width: 100%;
        float: none;
    }

    .overlau{
        height: 60%;
    }

    #myBtnContainer {
        margin: 5em 0 5em;
        display: flex;
        flex-direction: column;
    }

    .horizontal {
        grid-template-columns: 1fr;
    }
}