.realisation-single-head{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100vh;
    width: 100%;
    position: relative;
}
.realisation-single-head img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.realisation-single-head .realisation-single-head-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 0;
}
.realisation-single-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--wp--preset--color--beige);
    text-align: center;
}
.realisation-single-title h1{
    font-size: 30px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    margin: 0;
}
.realisation-single-title span{
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2.25px;
    text-transform: uppercase;
}
.realisation-single-scroll-indicator{
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    gap: 0.5rem;
}
.realisation-single-scroll-indicator-arrow{
    display: flex;
    width: 11px;
    height: 90px;
    background-image: url(../svg/down-arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.realisation-single-scroll-indicator-text{
    font-family: 'Inter', sans-serif;
    color: var(--wp--preset--color--beige);
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    text-transform: uppercase;
    writing-mode: sideways-lr;
    text-orientation: sideways;
    line-height: 1;
}
@media (max-width: 768px) {
    .realisation-single-title h1, .realisation-single-title{
        width: 100%;
    }
}