    /* 폰트 임포트 필요 */
    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Righteous&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

    .material-symbols-sharp {
        font-size: 1.4vw;;
    }

    #Poppins {
        font-family: 'Poppins';
    }

    #Inter {
        font-family: 'inter';
    }

    #Righteous {
        font-family: 'Righteous';
    }

    .text span {
        display: block;
    }

    .hero {
        width: 100%;
        position: relative; /* 자식요소 기준점 이미지 위에 글자 올릴 때 자주 사용 */
    }

    .hero .text {
        position: absolute; /* 부모요소 따르겠다는 의미 */
        top: 53%;
        left: 50%;
        transform: translate(-50%, -50%); /* 위치 시작점 조절 중앙 정렬용 */
        color: white;
    }

    .hero1 {
        position: relative; /* 자식요소 기준점 이미지 위에 글자 올릴 때 자주 사용 */
        background-color: black;
    }

    .hero1 button {
        font-family: 'inter'; 
        font-size: 1.04vw; 
        padding: 0.6vw 1.5vw;
        border-radius: 40px;
        border: none;
    }

    .hero1-outbox {
        width: 89%;
        margin: 0 auto;
        border-style: solid none;
        border-width: 0.1vw;
        padding: 6.5vw 0;
    }

    .hero1-inbox {
        border-style: none solid;
        border-width: 0.4vw;

        width: 83%;
        margin: 0 auto;
        padding: 5vw 0;
    }

    .hero1-inbox img {
        width: 50%;
    }

    .main button {
        font-family: 'inter'; 
        font-size: 1.04vw; 
        padding: 0.6vw 1.5vw;
        border-radius: 40px;
        border: none;
    }

    .main1 {
        position: relative; /* 자식요소 기준점 이미지 위에 글자 올릴 때 자주 사용 */
    }

    .main2 {
        display: flex;
        justify-content: space-between;
        gap: 0;
    }

    .main2-left,
    .main2-right {
        flex: 1;
        position: relative;
    }

    .main2 .title {
        font-family: 'Righteous'; 
        font-size: 7.55vw;
        line-height: 0.9;
    }

    .main2 .sub {
        font-family: 'inter'; 
        font-weight: 500; 
        font-size: 1.56vw;
    }

    .main2 button {
        margin-top: 12%;
    }

    .mission {
        position: relative; /* 자식요소 기준점 이미지 위에 글자 올릴 때 자주 사용 */
        background-color: #95FF8D;
    }

    .mission .line {
        display: block;
        font-family: 'inter';
        font-weight: 450;
        font-size: 2.19vw;
        line-height: 1.2;
        color: #202020;
    }

    .mission .text {
        width: 95%;

        top: 14%;
        left: 3%;

        text-align: left;
        transform: none;
    }

    .partners {
        position: relative; /* 자식요소 기준점 이미지 위에 글자 올릴 때 자주 사용 */
        background-color: white;
    }

    .partners .text {
        font-family: 'inter';
        font-size: 4.95vw;
        font-weight: 700;
        color: #2B2B2B;
        top: 47%;
        width: 90%;
    }

    .partnersbtns { 
        display: flex;
        flex-direction: column;
        gap: 4.95vw;
        margin-top: 8.3vw;
    }

    .partnersbtn1 img,
    .partnersbtn2 img {
        width: 12vw;
    }

    .partnersbtn3 img {
        width: 14.55vw;
    }

    .partnersbtn4 img {
        width: 10.4vw
    }

    .partnersbtn5 img {
        width: 6vw;
    }

    .partnersbtn1,
    .partnersbtn2,
    .partnersbtn3,
    .partnersbtn4,
    .partnersbtn5 {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .section-line {
        width: 90%;          /* 양쪽 여백 */
        margin: 0 auto;
        border: none;
        border-top: 0.2vw solid #000;
    }

@media screen and (max-width: 920px) {
    .mission .line {
        font-size: 2.05vw;
    }
}