.message-container {
    padding: 12rem 0 16rem;

    .message-container-top {
        width: 100%;
        background-color: #fff;
        border-radius: 1.6rem;
        margin-bottom: 16rem;
        padding: 12rem 8rem;
        display: flex;
        justify-content: space-between;

        .text-cotnainer-left {
            max-width: 84rem;

            .title-red {
                font-style: normal;
                font-weight: 700;
                font-size: 4rem;
                line-height: 150%;
                letter-spacing: 0.1em;
                color: #D62328;
                padding-bottom: 8rem;
            }

            & p {
                font-style: normal;
                font-weight: 500;
                font-size: 1.8rem;
                line-height: 200%;
                letter-spacing: 0.1em;
                color: #000000;
                padding-bottom: 8rem;
            }

            .name {
                font-style: normal;
                font-weight: 700;
                font-size: 2rem;
                line-height: 200%;
                letter-spacing: 0.1em;
                color: #000000;

                .name-big {
                    font-style: normal;
                    font-weight: 700;
                    font-size: 2.4rem;
                    line-height: 200%;
                    letter-spacing: 0.1em;
                    color: #000000;
                }
            }
        }

        .message-img-container {
            width: 38.9rem;
        }
    }

    .message-bottom-container {
        display: flex;
        justify-content: space-between;

        .message-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 4rem;
            width: 69.6rem;

            background: #FFFFFF;
            box-shadow: 0px 0.2rem 0.4rem rgba(0, 0, 0, 0.15);
            border-radius: 0.8rem;

            .text {
                font-style: normal;
                font-weight: 700;
                font-size: 2.6rem;
                /* line-height: 150%; */
                letter-spacing: 0.09em;
                color: #D62328;
            }

            .btn-icon {
                width: 4.4rem;
            }
        }
    }
}

@media screen and (max-width: 767px) {
    .message-container {
        padding: 8rem 0 8rem;
    }

    .message-container .message-container-top {
        flex-direction: column;
        padding: 4rem 2rem;
        margin-bottom: 4rem;
    }

    .message-container .message-container-top .text-cotnainer-left {
        max-width: 100%;
    }

    .message-container .message-container-top .text-cotnainer-left .title-red {
        font-size: 1.9rem;
        line-height: 150%;
        padding-bottom: 2rem;
    }

    .message-container .message-container-top .text-cotnainer-left p {
        font-size: 1.4rem;
        line-height: 150%;
        padding-bottom: 2rem;
    }

    .message-container .message-container-top .text-cotnainer-left .name {
        font-size: 1.8rem;
        line-height: 200%;
    }

    .message-container .message-container-top .text-cotnainer-left .name .name-big {
        font-size: 2rem;
        line-height: 200%;
    }

    .message-container .message-container-top .message-img-container {
        width: 100%;
        margin-top: 2rem;
    }

    .message-container .message-bottom-container {
        flex-direction: column;
        gap: 2rem;
    }

    .message-container .message-bottom-container .message-btn {
        width: 100%;
        padding: 2rem;
    }

    .message-container .message-bottom-container .message-btn .text {
        font-size: 2rem;
    }

    .message-container .message-bottom-container .message-btn .btn-icon {
        width: 3.2rem;
    }
}