.sec_contents
{
    display: flex;
    justify-content: flex-start; /* Left or Right Placement */
    position: relative;
    width: 100%;
    min-height: 20rem;
    overflow: hidden;
    background-color: #000;
    color: #FFF;
    margin-top: -4.6rem;
	padding: 5rem 20rem 0 20rem;
	box-sizing: border-box;
}

.sc_right
{
	justify-content: flex-end; /* Left or Right Placement */
}

.sec_bg_img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://global.ecdn.ltd/ync/v2/img/section_imgs/bg_about_intro.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.sec_bg_img::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
}

.sec_60p_wrapper
{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 60%;
	z-index: 1;
	position: relative;
	padding: 2rem;
	box-sizing: border-box;
	gap: 1rem;
}

.sec_component_para,
.sec_component_lang
{
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0.8rem;
    padding: 1rem;
    box-sizing: border-box;
    color: #FFF;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.2rem;
	backdrop-filter: blur(1rem);
}

.sec_component_lang
{
    backdrop-filter: blur(0.4rem);
    background-color: rgba(0, 0, 0, 0.4);
}

section
{
	scroll-margin-top: 4.2rem;
}

.sec_component_lang .fa-solid
{
	margin-right: 0.5rem;
}

.sec_component_lang h2,
.sec_component_lang h3
{
	margin-top: 0;
	margin-bottom: 1rem;
}

.language_container
{
	margin-bottom: 0.8rem;
}

.language_container:last-child
{
	margin-bottom: 0;
}

.language_flag
{
	height: 1rem;
	vertical-align: middle;
	margin-right: 0.3rem;
	border: 1px solid black;
}

.language_name
{
	display: block;
    transform: skew(-3deg);
}

.language_level
{
	display: block;
}

#sec_about_intro_lang_update_date
{
	margin-top: 1.5rem;
}

/* Original: 1920px */
@media (max-width: 120em)
{
	.sec_60p_wrapper
    {
        padding: 2rem 0 2rem 0;
    }
	
	.sec_contents
	{
		padding: 4rem 6rem 0 6rem;
	}
}

/* Original: 1280px */
@media (max-width: 80em)
{
	.sec_60p_wrapper
    {
        width: 100%;
    }
	
	.sec_contents
	{
		padding: 4rem 2rem 0 2rem;
	}
}

/* Original: 768px */
@media (max-width: 48em)
{
    .sec_60p_wrapper
    {
        width: 100%;
    }

    .sec_component_para,
    .sec_component_lang
    {
        min-width: 100%;
        flex-grow: 0;
        flex-basis: auto;
    }
	
	.sec_contents
	{
		padding: 4rem 2rem 0 2rem;
	}
}
