* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px red solid; */
}

body {
    animation: loading 2s;
}

@keyframes loading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.mobile_text_break {
    display: none;

    @media (max-width: 768px) {
        display: block;
    }
}

.contact_base_contaier {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(/src/eyes_v3pages/image/bg_v3ad_contact_background_pc_01.jpg);
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;

    .base_section_textarea {
        padding: 2rem 0;
        text-align: center;
    }

    .form_flex_container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 95svw;
        text-align: center;

        @media (max-width: 768px) {
            flex-direction: column;
        }

        .image_inner {

            width: 40svw;

            @media (max-width: 768px) {
                width: 100svw;
            }

            .qa_text_contens {
                width: 40svw;

                @media (max-width: 768px) {
                    width: 100svw;
                }

                h3 {
                    padding: 0.5rem;

                    @media (max-width: 768px) {
                        font-size: 1rem;
                    }
                }

                .icon_flex{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
            }
        }

        .form_inner {
            width: 50svw;

            @media (max-width: 768px) {
                width: 100svw;
                margin-top: 2rem;
            }
        }


    }
}

.image_width_200px {
    width: 200px;
    padding-bottom: 1rem;
}

.image_width_20svw {
    width: 30svw;
    padding-bottom: 1rem;

    @media (max-width: 768px) {
        width: 90svw;
    }
}