.site-footer {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.08vw 17.5vw 3.75vw; /* 40px 336px 72px -> 2.08vw 17.5vw 3.75vw로 변경 */
    gap: 0.42vw; /* 8px -> 0.42vw로 변경 */

    width: 65vw; /* 1248px -> 65vw로 변경 */
    height: 16.67vw; /* 116px -> 6.04vw로 변경 */
    position: relative;
    bottom: 0;


    background: #212121;
}
.footer-container {
    /* Frame 162915 */

    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 1.25vw;

    width: 65vw;
    height: 10.83vw;
}
.footer-logo {
    width: 8.66vw;
    height: 2.08vw;
    padding-bottom: 1.25vw; /* 24px -> 1.25vw로 변경 */
}

.footer-description {
    width: 65vw; /* 1248px -> 65vw로 변경 */
    height: 7.5vw;
    color: #D1D7DC;
}

.footer-description p {
    width: 65vw; /* 1248px -> 65vw로 변경 */
    /* kind-web/body2 */
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 500;
    font-size: 0.83vw; /* 16px -> 0.83vw로 변경 */
    line-height: 1.35vw; /* 26px -> 1.35vw로 변경 */

    /* or 162% */

    margin-top: 0;
    margin-bottom: 0;

    color: #D1D7DC;
}
.footer-p {
    /* kind-web/body2 */
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 500;
    font-size: 1.04vw; /* 20px -> 1.04vw로 변경 */
    line-height: 1.67vw; /* 32px -> 1.67vw로 변경 */

    /* or 160% */
    letter-spacing: -0.01em;

    color: #FFFFFF;


    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;

}

.site-footer-mobile {
    /* Auto layout */
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 10.26vw 4.10vw 18.46vw;
    gap: 2.05vw;

    width: 100vw;
    height: 56.41vw;
    position: relative;
    bottom: 0;


    background: #212121;
}
.footer-container-mobile {
    /* Frame 162915 */

    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 6.15vw;

    width: 91.79vw;
    height: 27.69vw;
}
.footer-logo-mobile {
    width: 42.64vw;
    height: 10.26vw;
}

.footer-description-mobile {
    width: 91.79vw;
    height: 11.28vw;
    color: #D1D7DC;
}

.footer-description-mobile p {
    width: 91vw; /* 1248px -> 65vw로 변경 */
    /* kind-web/body2 */
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 500;
    font-size: 3.59vw;
    line-height: 5.64vw;

    /* or 162% */

    margin-top: 0;
    margin-bottom: 0;

    color: #D1D7DC;
}

@media screen and (max-width: 768px) {
    .footer-logo-mobile {
        width: initial;
        height : initial;
    }
    .site-footer {
        display: none;
    }
    .site-footer-mobile {
        display: flex;
    }
}

/* 모바일 화면 */
@media screen and (max-width: 576px) {
    .footer-description-mobile p {
        font-size:initial;
    }
}

