/* Main Presentation */

.main-presentation__home {
    background-color: #000;
    padding: 50px 0;
    display: flex;
    width: 100%;
    height: 656px;
    justify-content: center;
    align-items: center;
}

.container-main-presentation__home {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin-top: 315px;
}

.text-content {
    font-family: "PP Monument Extended", sans-serif;
    position: absolute;
    top: 35%;
    left: 32%;
    transform: translate(-50%, -50%);
    color: white;
    width: 28%;
}

.text-content h1 {
    font-size: 48px;
    font-weight: bold;
    font-family: "PP Monument Extended", sans-serif;
    padding-top: 87px;
}

.text-content p {
    font-size: 1rem;
    color: #ccc;
    margin-top: 15px;
    font-family: "PP Monument Extended", sans-serif;
}

.text-content .highlight {
    color: #65675C;
}

.container-main-presentation__home img {
    width: 68%;
    margin-left: 482px;
    margin-top: -34px;
}

@media (max-width: 768px) {

    .main-presentation__home {
        background-color: #000;
        display: flex;
        width: 100%;
        height: 623px;
        justify-content: center;
        align-items: center;
    }

    .container-main-presentation__home {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin: 0;
    }

    .container-main-presentation__home .text-content {
        order: 1;
        text-align: center;
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .container-main-presentation__home img {
        width: auto;
        height: auto;
        margin-left: -38px;
        max-width: 538px;
        margin-top: 57px;
    }

    .text-content p {
        width: 80%;
        margin: 0 auto;
    }
}