.section-home-block {
	position: relative;
	padding-top: var(--mt-mobile, 0);
	padding-bottom: var(--mb-mobile, 0);
	display: flex;
	width: 100%;
	height: 100vh;
}
.section-home-block--beige {
    background-color: var(--wp--preset--color--background);
}
.section-home-block--bordeaux {
    background-color: var(--wp--preset--color--bordeau);
}
.section-home-block--white {
    background-color: var(--wp--preset--color--white);
}

@media (min-width: 851px) {
	.section-home-block {
		padding-top: var(--mt-desktop, 0);
		padding-bottom: var(--mb-desktop, 0);
	}
}

.section-home-block__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 var(--gutters);
    position: relative;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.section-home-block__blazon--top{
    width: 125px;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translate(-50%, 0%);
}
.section-home-block__blazon--bottom img{
    width: 60px;
    object-fit: contain;
}
@media (min-height: 900px) {
    .section-home-block__blazon--top{
        top: 50px;
    }
}
.section-home-block__content{
    display: flex;
    justify-content: space-around;
}
.section-home-block__text--primary{
    display: flex;
    position: relative;
    width: 50%;
    justify-content: center;
}
.section-home-block__text--secondary{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 50%;
}
.section-home-block__text--secondary p{
    margin: 0.75rem 0;
}
.section-home-block__image-behind{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}
.section-home-block__image-behind img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}
.section-home-block__image-behind img::after{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(241, 236, 230, 0.8);
}
.section-home-block__text--primary p{
    position: relative;
    z-index: 1;
}
.section-home-block--has-illustration .section-home-block__inner{
    flex-direction: row;
    padding: 0;
    align-items: center;
}
.section-home-block--has-illustration .section-home-block__content{
    width: 50%;
    flex-direction: column;
    justify-content: center;
}
.section-home-block--has-illustration .section-home-block__text--primary{
    flex-direction: column;
}
.section-home-block__illustration{
    display: flex;
    width: 50%;
    height: 100%;
}
.section-home-block--has-illustration .section-home-block__text--primary{
    width: 100%;
}
.section-home-block--text-right .section-home-block__inner{
    flex-direction: row-reverse;
}
.section-home-block__text--primary h2{
    margin: 0;
    line-height: 1.1;
}
.section-home-block__text--primary p:nth-child(2){
    margin: 0;
}
.section-home-block__illustration img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-home-block--text-right .section-home-block__content--single{
    padding-left: var(--gutters);
}
.section-home-block--text-left .section-home-block__content--single{
    padding-left: var(--gutters);
}
.section-home-block-cta{
    display: flex;
    font-size: 12px;
    font-weight: 500;
    color: var(--wp--preset--color--blanc);
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    width: fit-content;
    margin-top: 1rem;
    font-family: "Montserrat", sans-serif;
}
.section-home-block-cta::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--blanc);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.section-home-block-cta:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.section-home-block-cta:hover{
    cursor: pointer;
}
.section-home-block--white .section-home-block-cta{
    color: var(--wp--preset--color--bordeau);
}
.section-home-block--white .section-home-block-cta::before{
    background-color: var(--wp--preset--color--bordeau);
}
.section-home-block--text-centered .section-home-block__content{
    flex-direction: column;
    align-items: center;
    padding-top: 15vh;
}
.section-home-block--text-centered .section-home-block__blazon{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: auto;
}
.section-home-block--text-centered .section-home-block__text--primary{
    display: flex;
    flex-direction: column;
}
.section-home-block--two-columns .section-home-block__text--primary{
    align-items: center;
}
.section-home-block__illustration-asset{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-height: 1080px) {
    .section-home-block {
        height: 80vh;
    }
}
@media (min-width: 1600px) {
    .section-home-block--text-right .section-home-block__content--single{
        padding-left: calc(var(--gutters) / 2);
    }
    .section-home-block--text-left .section-home-block__content--single{
        padding-left: calc(var(--gutters) / 2);
    }
}

.section-home-block--text-left .section-home-block__illustration {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    max-width: 750px;
    max-height: 1000px;
}
@media (max-width: 768px) {
    .section-home-block__image-behind{
        width: 100%;
        height: 100%;
    }
    .section-home-block--text-left .section-home-block__illustration {
        clip-path: none;
        max-width: none;
        max-height: none;
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .section-home-block--text-right .section-home-block__illustration {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .section-home-block--text-left .section-home-block__content--single {
        padding-left: 0;
        background-color: var(--wp--preset--color--blanc);
        position: relative;
        z-index: 1;
        padding: 2rem;
        width: calc(100% - calc(var(--gutters) * 2));
    }
    .section-home-block--text-right .section-home-block__content--single {
        padding-left: 0;
        background-color: var(--wp--preset--color--bordeau);
        position: relative;
        z-index: 1;
        padding: 2rem;
        width: calc(100% - calc(var(--gutters) * 2));
    }
    .section-home-block--two-columns .section-home-block__content{
        flex-direction: column;
        align-items: center;
    }
    .section-home-block--two-columns .section-home-block__text--primary, .section-home-block--two-columns .section-home-block__text--secondary{
        width: 100%;
    }
    .section-home-block--two-columns .section-home-block__text--primary{
        height: 300px;
    }
    .section-home-block__blazon--top{
        top: 1rem;
        transform: translate(-50%, 0);
        width: 100px;
    }
}
@media (max-width: 576px) {
    .section-home-block__blazon--top{
        position: initial;
        transform: none;
        width: 100%;
        justify-content: center;
        display: flex;
    }
    .section-home-block__blazon--top img{
        width: 75px;
        object-fit: contain;
    }
    .section-home-block--two-columns .section-home-block__text--primary{
        height: 250px;
    }
    .section-home-block{
        height: auto;
        min-height: 100vh;
    }
    .section-home-block--two-columns .section-home-block__inner{
        gap: 2rem;
    }
    .section-home-block--text-centered .section-home-block__text--primary{
        width: 100%;
    }
    .section-home-block__text--primary p br{
        display: none;
    }
}