#hero {
    width: 100%;
    position: relative;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page_title {
    position: absolute;
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    z-index: -3;
    top: 0;
    opacity: 0.05;
}

#page_title h2 {
    font-size: 150px;
    text-align: right;
    color: #333;
}

.hero_content {
    width: 100%;
    height: 40%;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    max-width: 1600px;
}

.hero_content p {
    width: 40%;
    text-align: justify;
}

#hero img {
    position: absolute;
    z-index: -1;
    -webkit-filter: brightness(.4);
    filter: brightness(.4);
}

#hero h1,
#hero p {
    color: white;
}

h3 {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#hero .call-to-action {
    border: solid 2px white;
    color: white;
    width: 40%;
}

#hero .call-to-action::after {
    background-color: white;
}

#hero .call-to-action:hover {
    color: black;
}

.call-to-action {
    max-width: 200px;
}

#maisons h2:not(#page_title h2),
.link--kukuri::before {
    font-size: 36px;
}

.link {
    outline: none;
    text-decoration: none;
    position: relative;
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.link--kukuri {
    text-transform: uppercase;
    font-weight: 900;
    overflow: hidden;
    color: #E50815;
}

.link--kukuri::after {
    content: '';
    position: absolute;
    height: 16px;
    width: 100%;
    top: 50%;
    margin-top: -8px;
    right: 0;
    background: #F5F5F5;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.4s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.product:hover .link--kukuri::after {
    transform: translate3d(100%, 0, 0);
}

.link--kukuri::before {
    content: attr(data-letters);
    position: absolute;
    z-index: 2;
    overflow: hidden;
    color: #E50815;
    white-space: nowrap;
    width: 0%;
    transition: width 0.4s 0.3s;
}

.product:hover .link--kukuri::before {
    width: 100%;
}

#maisons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 2500px;
    overflow-x: hidden;
}

#maisons .call-to-action {
    background-color: #E50815;
    color: white;
    width: 40%;
}

#maisons .call-to-action::after {
    background-color: white;
}

#maisons .call-to-action:hover {
    color: #E50815;
}

.product {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 50px;
    margin-bottom: 50px;
}

.product div {
    width: 40%;
}

.image_product_container {
    height: 400px;
}

.content_product_container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.content_product_container h2 {
    text-align: left;
}

.content_product_container p {
    text-align: justify;
}

.content_product_container *:not(h2) {
    margin-top: 20px;
    margin-bottom: 20px;
}

.left_content *:not(a, h2) {
    text-align: right;
}

.left_content {
    align-items: flex-end;
}