.categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-wrap: nowrap;
    width: 100vw;
}

.subcategories {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    height:25em;
}

.sc-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 33%;
    font-weight: 950;
    text-align: center;
}

.sc-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 67%;
}

.subcategories h1 {
    font-size:2.5em;
}

.subcategories img {
    width: 200%;
    height: 25em;
    box-sizing: border-box;
    object-fit: cover;
}

.tailormade {
    background: var(--gold);
}

.provence {
    background: var(--gold);
}

.cotedazur {
    background: var(--gold);
}

.categories button {
    position: relative;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    border-radius: 0px 10px 0px 10px;
    font-size: 15px;
    cursor: pointer;
    background-color: transparent;
    color: white;
}

.categories button:hover {
    color:var(--gold);
    background:var(--white);
    cursor:pointer;
}

.white {
    color: var(--white);
    font-weight: 700;
}

@media screen and (max-width: 700px) {
    .sc-img, .sc-title {
        width: 50vw;
    }

    .sc-title {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .categories button {
        position: relative;
    }

    .subcategories h1 {
        font-size:1.5em;
    }

    .subcategories img {
        width: 50vw;
        height: 50vw;
        box-sizing: border-box;
        object-fit: cover;
    }

    .subcategories {
        height:50vw;
    }
}
