.container_text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;

    .title {
        font-weight: 500;
        text-align: end;
        max-width: 300px;
        text-transform: math-auto;
        color: var(--primary-color);
    }

    p {
        width: 539px;
        text-align: justify;
        color: var(--primary-color);

        &:first-child {
            margin-bottom: 25px;
        }
    }
}

.main_template_about_home {
    .container_text {
        margin: 30px 0 80px 0;
    }
}


/* Portrait */
@media (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) {
    .container_text {
        flex-direction: column;

        .title {

            text-align: center;
            max-width: 100%;
        }

        p {
            width: 100%;
        }
    }
}




@media (max-width: 767px) {
    .container_text {
        flex-direction: column;

        .title {

            text-align: center;
            max-width: 100%;
        }

        p {
            width: 100%;
        }
    }
}