
#section_00 {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #343434;
    padding-top: 213px;
    padding-bottom: 164px;
}

    #section_00 > .title {
        margin-bottom: 52px;
        font-size: calc(47.5px * var(--resizeFloat));
        line-height: 1.66;
        font-weight: 600;
        color: white;
    }

    #section_00 > .description {
        font-size: calc(17px * var(--resizeFloat));
        line-height: 2;
        color: #a6a6a6;
    }

        #section_00 > div {
            position: relative;
        }

        #section_00 > .bg {
            position: absolute;
            top: 0px;
            bottom: 0px;
            overflow: hidden;
            overflow-x: hidden;
        }

            #section_00 > .bg.left {
                width: 271px;
                right: calc(100% - 271px);
            }

                #section_00 > .bg.left > img {
                    height: 100%;
                    float: right;
                }

            #section_00 > .bg.right {
                width: 380px;
                left: calc(100% - 380px);
            }

                #section_00 > .bg.right > img {
                    height: 100%;
                }
                
@media screen and (max-width: 1550px) {
    #section_00 {}

}

@media screen and (max-width: 1024px) {
    #section_00 > .bg.left {
        width: 100px;
        right: calc(100% - 100px);
    }

    #section_00 > .bg.right {
        width: 100px;
        left: calc(100% - 100px);
    }

}

@media screen and (max-width: 425px) {
    #section_00 > .title {
        font-size: 30px;
    }
    #section_00 > .description {
        font-size: 14px;
    }
}

@media screen and (max-width: 375px) {
    #section_00 > .title {
        font-size: 26px;
    }
    #section_00 > .description {
        font-size: 12px;
    }
}

@media screen and (max-width: 320px) {
    #section_00 {}
}