@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans KR", sans-serif;
    font-size: inherit;
    word-break: keep-all;
}

a {
    text-decoration: none;
    color: #fff;
}

li {
    list-style: none;
}

button {
    outline: none;
    border: none;
    cursor: pointer;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    /* min-width: 128rem; */
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Layout */
.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    
    max-width: 1280px;
    margin: 0 auto;
}

section{
	
}

section article {
    position: relative;
    width: 100%;
    height: 50rem;
    margin: 15rem 0;
    display: flex;
    gap: 10rem;
}

section article img,
section article video {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: .5s;
}

.article-text,
.article-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.article-text {
    width: 36%;
}

.article-media {
    width: 64%;
}

.article-media p {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4.5rem 0 0 4.5rem;
    overflow: hidden;
}

/* Article 1 */
section article:nth-of-type(1) {
    height: 62rem;
    margin-top: 10rem;
    
    display: block;
}

section article:nth-of-type(1) .article-text {
    /* width: calc(100% - 85rem); */
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section article:nth-of-type(1) .article-text p:first-of-type {
    font-size: 7rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

section article:nth-of-type(1) .article-text p:nth-of-type(2) {
	width: 100%;
	margin-top: 4rem;
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
}

section article:nth-of-type(1) .article-text p:nth-of-type(2) span {
    display: block;
    margin-bottom: 1.5rem;
}

section article:nth-of-type(1) .article-media {
	position: relative;
    width: 100%;
    height: 100%;
    margin-top: 5rem;
}

section article:nth-of-type(1) .article-media > div{
	width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 2rem;
    background-color: rgb(0 0 0 / 0.4);
}


section article:nth-of-type(1) .box-shadow{display: block; border-radius: 2rem; box-shadow: 0px 0px 2rem #bbb;}

section article:nth-of-type(1) .box-shadow video{object-fit: cover;}

/* Article 2 */
section article:nth-of-type(2) {
    height: auto;
    justify-content: center;
}

section article:nth-of-type(2) p {
    font-size: 3.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(13rem);
}

section article:nth-of-type(2) p:first-of-type {
    margin-bottom: 5rem;
}

section article:nth-of-type(2) p:first-of-type span {
    font-weight: bold;
}

section article:nth-of-type(2) p:last-of-type {
    font-size: 4rem;
    font-weight: bold;
}

section article:nth-of-type(2) p:last-of-type i {
	margin-bottom: 3rem;
    opacity: 0;
    animation: fade-in-down 1.5s cubic-bezier(0, 0.01, 0.77, 1.03) infinite;
}

/* Article 3 */
section article:nth-of-type(3) {
    height: 65.8rem;
    flex-direction: row-reverse;
}

section article:nth-of-type(3) .article-media {
    width: 54rem;
}

section article:nth-of-type(3) .article-media p {
    border-radius: 4.5rem;
    opacity: 0;
    transition: 1.2s cubic-bezier(0.35, 0.37, 0.58, 1);
}

section article:nth-of-type(3).on .article-media p {
    opacity: 1;
}

section article:nth-of-type(3).on .article-media p:hover img {
    transform: scale(1.1);
}

section article:nth-of-type(3) .article-text {
    width: calc(100% - 54rem);
    align-items: flex-start;
    justify-content: flex-end;
}

section article:nth-of-type(3) .article-text p {
    font-size: 1.8rem;
}

section article:nth-of-type(3) .article-text p:nth-of-type(1),
section article:nth-of-type(3) .article-text p:nth-of-type(2) {
    font-size: 2.4rem;
    font-weight: bold;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(5rem);
}

section article:nth-of-type(3) .article-text ul {
    margin-top: 3rem;
}

section article:nth-of-type(3) .article-text ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 3rem 0;
    border-bottom: 1px solid #ccc;
    font-size: 2.5rem;
}

section article:nth-of-type(3) .article-text ul li span {
    display: inline-block;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    text-align: center;
    line-height: 5rem;
    font-size: 2.5rem;
    color: #777;
    border: 1px solid #ccc;
}

/* Article 4 */
section article:nth-of-type(4) {
    height: auto;
    margin-bottom: 0;
}

section article:nth-of-type(4) div {
    display: flex;
    flex-direction: column;
}

section article:nth-of-type(4) div p:first-of-type {
    margin-bottom: 5rem;
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
}

/* Article 5 */
section article:nth-of-type(5) {
    height: auto;
    margin-top: 0;
}

section article:nth-of-type(5) div p {
	padding-top: 4rem;
    font-size: 3.5rem;
    font-weight: 500;
    text-align: left;
}

/* Keyframes */
@keyframes fade-in-down {
    0% {
        opacity: 0;
        transform: translateY(-2rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
 
 /* Article 6 */
section article:nth-of-type(6) {
    width: 100%;
}

section article:nth-of-type(6) div {
    position: relative;
    width: 100%;
    height: 100%;
}

section article:nth-of-type(6) ul {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    display: flex; /* Flexbox 사용 */
    flex-wrap: wrap; /* Flexbox 사용 */
}

section article:nth-of-type(6) ul > li {
    width: calc(100% / 3);
    height: calc(100% / 2);
    padding: 2.5rem; /* rem 단위로 변경 */
    box-sizing: border-box;
    position: relative; /* before, after를 위한 position */
}

section article:nth-of-type(6) ul > li p {
    font-size: 2.5rem; /* rem 단위로 변경 */
    color: #2196f3;
    transition: 0.15s;
}

section article:nth-of-type(6) ul > li strong {
    display: block;
    margin-bottom: 1rem; /* rem 단위로 변경 */
    font-size: 2rem; /* rem 단위로 변경 */
}

section article:nth-of-type(6) ul > li span {
    display: block;
    font-size: 1.6rem; /* rem 단위로 변경 */
}

section article:nth-of-type(6).on ul > li p,
section article:nth-of-type(6).on ul > li strong,
section article:nth-of-type(6).on ul > li span {
    animation: fade-in-up 0.8s cubic-bezier(0.35, 0.37, 0.58, 1) forwards; /* keyframes 이름 변경 */
}

section article:nth-of-type(6).on ul > li p {
    animation-delay: 0.3s;
}

section article:nth-of-type(6).on ul > li strong {
    animation-delay: 0.6s;
}

section article:nth-of-type(6).on ul > li span {
    animation-delay: 0.9s;
}

section article:nth-of-type(6) ul > li:before,
section article:nth-of-type(6) ul > li:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section article:nth-of-type(6) ul > li:nth-of-type(1):before,
section article:nth-of-type(6) ul > li:nth-of-type(2):before,
section article:nth-of-type(6) ul > li:nth-of-type(4):before,
section article:nth-of-type(6) ul > li:nth-of-type(5):before {
    top: 50%;
    height: calc(100% - 4rem); /* rem 단위로 변경 */
    border-right: 2px solid #ccc;
    transform: translateY(-50%);
}

section article:nth-of-type(6) ul > li:nth-of-type(1):after,
section article:nth-of-type(6) ul > li:nth-of-type(2):after,
section article:nth-of-type(6) ul > li:nth-of-type(3):after {
    left: 50%;
    width: calc(100% - 4rem); /* rem 단위로 변경 */
    border-bottom: 2px solid #ccc;
    transform: translateX(-50%);
}

section article:nth-of-type(6) ul > li:last-child {
	padding: 0;
}

section article:nth-of-type(6) ul > li p {
    position: relative;
    z-index: 2;
    color: #2196f3;
    transition: 0.15s;
}

section article:nth-of-type(6) ul > li:hover p {
    /* font-weight: bold; */
}

section article:nth-of-type(6) ul > li:last-child p {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem; /* rem 단위로 변경 */
    overflow: hidden;
}

section article:nth-of-type(6) ul > li:last-child p img {
    width: 100%;
    height: 100%;
    transition: 0.15s ease-out;
}

section article:nth-of-type(6) ul > li:last-child p:hover img {
    transform: scale(1.1);
}

/* Keyframes */
/* @keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(5rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
} */
 
 /* Article 7, 8, 10, 11 */
section article:nth-of-type(7),
section article:nth-of-type(8),
section article:nth-of-type(10),
section article:nth-of-type(11) {
    height: 40rem; /* rem 단위로 변경 */
}

section article:nth-of-type(7) .article-text,
section article:nth-of-type(8) .article-text,
section article:nth-of-type(10) .article-text,
section article:nth-of-type(11) .article-text {
    width: calc(100% - 60rem); /* rem 단위로 변경 */
}

section article:nth-of-type(7) .article-text p,
section article:nth-of-type(8) .article-text p,
section article:nth-of-type(10) .article-text p,
section article:nth-of-type(11) .article-text p {
    font-size: 2rem; /* rem 단위로 변경 */
    opacity: 0;
    transform: translateY(13rem); /* rem 단위로 변경 */
}

section article:nth-of-type(7) .article-text p span,
section article:nth-of-type(8) .article-text p span,
section article:nth-of-type(10) .article-text p span,
section article:nth-of-type(11) .article-text p span {
    display: block;
    margin-bottom: 3rem; /* rem 단위로 변경 */
    font-size: 4rem; /* rem 단위로 변경 */
    font-weight: bold;
}

section article:nth-of-type(7).on .article-text p,
section article:nth-of-type(8).on .article-text p,
section article:nth-of-type(10).on .article-text p,
section article:nth-of-type(11).on .article-text p {
    animation: fade-in-up 0.8s cubic-bezier(0.35, 0.37, 0.58, 1) forwards; /* keyframes 이름 변경 */
    animation-delay: 0.9s;
}

section article:nth-of-type(7).on .article-text span,
section article:nth-of-type(8).on .article-text span,
section article:nth-of-type(10).on .article-text span,
section article:nth-of-type(11).on .article-text span {
    animation-delay: 0.5s;
}

section article:nth-of-type(7) .article-media,
section article:nth-of-type(8) .article-media,
section article:nth-of-type(10) .article-media,
section article:nth-of-type(11) .article-media {
    width: 60rem; /* rem 단위로 변경 */
}

section article:nth-of-type(7) .article-media p,
section article:nth-of-type(8) .article-media p,
section article:nth-of-type(10) .article-media p,
section article:nth-of-type(11) .article-media p {
    opacity: 0;
    transition: 1.2s cubic-bezier(0.35, 0.37, 0.58, 1);
}

section article:nth-of-type(7).on .article-media p,
section article:nth-of-type(8).on .article-media p,
section article:nth-of-type(10).on .article-media p,
section article:nth-of-type(11).on .article-media p {
    opacity: 1;
}

section article:nth-of-type(7) .article-media img,
section article:nth-of-type(8) .article-media img,
section article:nth-of-type(10) .article-media img,
section article:nth-of-type(11) .article-media img {
    width: 100%;
    height: 100%;
}

section article:nth-of-type(8),
section article:nth-of-type(11) {
    flex-direction: row-reverse;
}

section article:nth-of-type(8) .article-media p,
section article:nth-of-type(11) .article-media p {
    border-radius: 0 4.5rem 4.5rem 0; /* rem 단위로 변경 */
}

section article:nth-of-type(8) .article-media img,
section article:nth-of-type(11) .article-media img {
    border-radius: 0 2rem 2rem 0; /* rem 단위로 변경 */
}

/* Keyframes */
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(13rem); /* rem 단위로 변경 */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
 
 /* Article 9 */
section article:nth-of-type(9) {
    height: auto;
    flex-wrap: wrap;
}

section article:nth-of-type(9) > p {
    margin: 0 auto;
    text-align: center;
    font-size: 3.5rem; /* rem 단위로 변경 */
    font-weight: bold;
}

section article:nth-of-type(9) .img-div { /* 클래스 이름 변경 */
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

section article:nth-of-type(9) .img-div p { /* 클래스 이름 변경 */
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1.2s cubic-bezier(0.35, 0.37, 0.58, 1);
}

section article:nth-of-type(9) .img-div p img { /* 클래스 이름 변경 */
    width: 100%;
    height: 100%;
}

section article:nth-of-type(9).on .img-div p { /* 클래스 이름 변경 */
    opacity: 1;
}

section article:nth-of-type(9).on > p {
    animation: fade-in-up 0.8s cubic-bezier(0.35, 0.37, 0.58, 1) forwards; /* keyframes 이름 변경 */
    animation-delay: 0.3s;
}

/* Last Article */
section article:last-child {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20rem;
    margin-bottom: 10rem;
}

/* Utility Classes */
.font-size-15 { font-size: 1.5rem; }
.font-size-18 { font-size: 1.8rem; }
.font-size-21 { font-size: 2.1rem; }
.font-size-35 { font-size: 3.5rem; }
.font-size-40 { font-size: 4rem; }

.font-bold { font-weight: bold; }
.font-normal { font-weight: normal; }
.display-block { display: block; }
.row-reverse { flex-direction: row-reverse; }
.align-items { align-items: center; }
.justify-content { justify-content: center; }
.text-align-center { text-align: center; }
.margin-top-30 { margin-top: 3rem; }
.margin-bottom-50 { margin-bottom: 5rem; }
.box-shadow {box-shadow: 4px 4px 1.3rem #bbb;}
.flex-wrap {flex-wrap: wrap;}
.height-auto {height: auto;}

/* Partner Section */
.partner {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.partner div {
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.partner ul {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-shrink: 0;
    flex-basis: content;
    animation: loop1 60s linear infinite;
}

@keyframes loop1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

 .partner ul li{
 	
 }
 
/* Partner Section Image */
.partner ul li img {
    width: 100%;
    height: 100%;
}

/* Keyframes */
@keyframes downArrow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opac {
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Common Keyframes (transY) START */
section article:nth-of-type(2).on p,
section article:nth-of-type(3).on p,
section article:nth-of-type(3).on ul li,
section article:nth-of-type(4).on p,
section article:nth-of-type(5).on p {
    animation: fade-in-up 0.8s cubic-bezier(0.35, 0.37, 0.58, 1) forwards; /* keyframes 이름 변경 */
    animation-delay: 0.8s;
}

section article:nth-of-type(2).on p:nth-of-type(2),
section article:nth-of-type(3).on p:nth-of-type(2),
section article:nth-of-type(4).on p:nth-of-type(2) {
    animation-delay: 1s;
}

section article:nth-of-type(3).on p:nth-of-type(3) {
    animation-delay: 1.2s;
}

section article:nth-of-type(3).on p:nth-of-type(4) {
    animation-delay: 1.4s;
}

section article:nth-of-type(3).on ul li:nth-of-type(1) {
    animation-delay: 1.6s;
}

section article:nth-of-type(3).on ul li:nth-of-type(2) {
    animation-delay: 1.8s;
}

section article:nth-of-type(3).on ul li:nth-of-type(3) {
    animation-delay: 2s;
}

.keyFrameTransY{
 	opacity: 0;
    transform: translateY(5rem);
 }

@keyframes fade-in-up {
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
/* Common Keyframes (transY) END */

@keyframes loop1 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}


 /* 태블릿 버전 (768px ~ 1023px) */
@media screen and (max-width: 1280px) {
	html{font-size: 45%;}
	
	section article{
		height: auto;
		margin: 10rem 0;
		padding: 0 1rem;
	}
	
	section article:nth-of-type(1){
		/* height: 45rem; */
		height: 500px;
		margin-top: 2rem;
	}
	
	section article:nth-of-type(1) .article-text{
		width: 40%;
	}
	
	section article:nth-of-type(1) .article-text h2{
		width: 80%;
	}
	
	section article:nth-of-type(1) .article-media{
		width: 100%;
	}
	
	
	section article:nth-of-type(3){
		height: auto;
	}
	
	section article:nth-of-type(3) .article-text{
		width: 60%;
	}
	
	section article:nth-of-type(3) .article-text ul li{
		padding: 2rem 0;
	}
	
	section article:nth-of-type(3) .article-media{
		width: 40%;
	}
	
	section article:nth-of-type(4) div p:first-of-type{
		margin-bottom: 1rem;
	}
	
	section article:nth-of-type(6) ul{
		overflow: hidden;
	}
	
	section article:nth-of-type(6) ul > li{
		width: 50%;
		height: auto;
	}
	
	section article:nth-of-type(6) ul > li:nth-of-type(3):before{
		top: 50%;
	    height: calc(100% - 4rem);
	    border-right: 2px solid #ccc;
	    transform: translateY(-50%);
	}
	
	section article:nth-of-type(7) .article-text p span,
	section article:nth-of-type(8) .article-text p span,
	section article:nth-of-type(10) .article-text p span,
	section article:nth-of-type(11) .article-text p span{
		font-size: 3rem;
	}

    .partner{
        width: 100%; /* 파트너 영역 전체 너비 사용 */
    }

    .partner ul li {
        width: 100%; /* 목록 항목 전체 너비 사용 */
    }
}

/* 모바일 버전 (767px 이하) */
@media (max-width: 767px) {
	html{font-size: 45%;}
	body{min-width:100%;}
	.section{min-width:100%;}
	.wrapper{width:100%; margin: 0;}
	
    section article {
    	height: auto !important;
        padding: 1rem;
        margin: 5rem 0;
        gap: 3rem;
    }
    
    .article-media p{
    	border-radius: 0.7rem;
    }
    
    /* 박스 쉐도우 제거 */
    .article-media p.box-shadow{
    	box-shadow: unset;
    }
    
    /* Article 1 */
    section article:nth-of-type(1){
    	margin-top: 0;
    	flex-direction: column-reverse;
    }
    
	section article:nth-of-type(1) .article-media {
        width: 100%;
        height: 500px;
        margin-top: 0;
    }

    section article:nth-of-type(1) .article-text {
        width: 100%; /* 텍스트 영역 전체 너비 사용 */
        text-align: center; /* 텍스트 가운데 정렬 */
        align-items: center;
    }
    
    section article:nth-of-type(1) .article-text h2{
    	width: 80%;
    }
    
    section article:nth-of-type(1) .article-text p:first-of-type{
    	/* font-size: 5rem; */
    }

    section article:nth-of-type(1) .article-text p:nth-of-type(2){
    	text-align: center;
    	/* font-size: 2rem; */
    }
    
    /* Article 2 */
    section article:nth-of-type(2) p:nth-of-type(1){
    	/* font-size: 2.5rem;
   		margin-bottom: 1rem; */
    }
    
    section article:nth-of-type(2) p:nth-of-type(2){
    	/* font-size: 3rem; */
    }
    
    /* Article 3 */
    section article:nth-of-type(3){
    	flex-wrap: wrap;
    	flex-direction: column-reverse;
    	gap: 2rem;
    }
    
    section article:nth-of-type(3) .article-media{
    	height: 40rem;
    }
    
    section article:nth-of-type(3) .article-media p{
    	border-radius: 0.7rem;
    }
    
    section article:nth-of-type(3).on .article-media p:hover img{
    	transform: scale(1);
    }
    
    section article:nth-of-type(3) .article-text {
        width: 100%; /* 텍스트 영역 전체 너비 사용 */
    }
    
    section article:nth-of-type(3) .article-text p:nth-of-type(1),
    section article:nth-of-type(3) .article-text p:nth-of-type(2){
    	/* font-size: 2rem; */
    }
    
    section article:nth-of-type(3) .article-text p{
    	/* font-size: 1.4rem; */
    }
    
    section article:nth-of-type(3) .article-text ul{
    	width: 100%;
    	margin-top: 1rem;
    }
    
    section article:nth-of-type(3) .article-text ul li{
    	padding: 1rem 0;
    	/* font-size: 1.7rem; */
    }
    
    section article:nth-of-type(3) .article-text ul li span{
	    /* width: 4rem;
	    height: 4rem;
	    line-height: 3.5rem;
    	font-size: 1.7rem; */
    }
    
    section article:nth-of-type(3).on p:nth-of-type(3),
    section article:nth-of-type(3).on p:nth-of-type(4){font-size: 2.2rem;}

    section article:nth-of-type(3) .article-media {
        width: 100%; /* 미디어 영역 전체 너비 사용 */
    }
    
    /* Article 4 */
    section article:nth-of-type(4) div p:nth-of-type(1){
    	margin-bottom: 2rem;
    	/* font-size: 3rem; */
    }
    
    /* Article 5 */
    section article:nth-of-type(4) div p:nth-of-type(1){
    
    }
	
	/* Article 6 */
    section article:nth-of-type(6) ul {
        flex-direction: column; /* 목록 세로로 배치 */
    }

    section article:nth-of-type(6) ul li {
        width: 100%; /* 목록 항목 전체 너비 사용 */
    }
    
    section article:nth-of-type(6) ul > li p{
    	font-size: 3.8rem;
    }
    
    section article:nth-of-type(6) ul > li strong{
    	font-size: 2.6rem;
    }
    
    section article:nth-of-type(6) ul > li span{
    	font-size: 2.1rem;
    }
    
    section article:nth-of-type(6) ul > li:nth-of-type(1):before,
    section article:nth-of-type(6) ul > li:nth-of-type(2):before,
    section article:nth-of-type(6) ul > li:nth-of-type(4):before,
    section article:nth-of-type(6) ul > li:nth-of-type(5):before{
    	border-right: unset;
    }
    
    section article:nth-of-type(6) ul > li:nth-of-type(4):after,
    section article:nth-of-type(6) ul > li:nth-of-type(5):after{
    	left: 50%;
	    width: calc(100% - 4rem);
	    border-bottom: 2px solid #ccc;
	    transform: translateX(-50%);
    }
    
    section article:nth-of-type(9) > p{font-size: 3rem;}
    
	/* Article 7,8,11,12 */
	section article:nth-of-type(7),
	section article:nth-of-type(8),
	section article:nth-of-type(10),
	section article:nth-of-type(11){
		flex-wrap: wrap;
    	flex-direction: column-reverse;
	}
	
    section article:nth-of-type(7) .article-text,
    section article:nth-of-type(8) .article-text,
    section article:nth-of-type(11) .article-text,
    section article:nth-of-type(12) .article-text {
        width: 100%;
    }
    
    section article:nth-of-type(7) .article-text p,
    section article:nth-of-type(8) .article-text p,
    section article:nth-of-type(10) .article-text p,
    section article:nth-of-type(11) .article-text p{
    	font-size: 2rem;
    }
    
    section article:nth-of-type(7) .article-text p span,
    section article:nth-of-type(8) .article-text p span,
    section article:nth-of-type(10) .article-text p span,
    section article:nth-of-type(11) .article-text p span{
    	font-size: 3rem;
    	margin-bottom: 2rem;
    }

    section article:nth-of-type(7) .article-media,
    section article:nth-of-type(8) .article-media,
    section article:nth-of-type(10) .article-media,
    section article:nth-of-type(11) .article-media {
        width: 100% !important;
        height: 40rem;
    }
    
    section article:nth-of-type(7) .article-media p,
    section article:nth-of-type(8) .article-media p,
    section article:nth-of-type(10) .article-media p,
    section article:nth-of-type(11) .article-media p{
    	border-radius: .7rem;
    }
    
    section article:nth-of-type(7) .article-media img,
    section article:nth-of-type(8) .article-media img,
    section article:nth-of-type(10) .article-media img,
    section article:nth-of-type(11) .article-media img{
    	object-fit: fill;
    }
    
    section article:nth-of-type(8) .article-media img,
    section article:nth-of-type(11) .article-media img{
    	border-radius: .7rem;
    }
    
    section article:nth-of-type(7) .article-text,
    section article:nth-of-type(8) .article-text,
    section article:nth-of-type(10) .article-text,
    section article:nth-of-type(11) .article-text{
    	width: 100%;
    }

    .partner{
    	display: none;
        width: 100%; /* 파트너 영역 전체 너비 사용 */
    }

    .partner ul {
        flex-direction: column; /* 파트너 목록 세로로 배치 */
    }

    .partner ul li {
        width: 100%; /* 목록 항목 전체 너비 사용 */
    }
}