/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
/*리셋 css*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* --------여기까지 reset css------------- */


:root {
    --navbar_height: 64px;
    --navbar_height_media: 60px;
    --navbar_menu_height: 24px;
    --navbar_sidebar_menu_height: 62px;
    --footer_height: 60px;
    --title_height: 79px;
    --title_text_height: 38px;
    --title_text_bottom_margin: 40px;
    --title_line_height: 1px;
    --content_width: 1440px;
    --content_top_margin: 60px;
    --color_black: #111111;
    --color_white: #ffffff;
    --color_clear: rgba(255, 255, 255, 0);/*완전히 투명한 배경*/
    --color_gray40: rgba(0, 0, 0, 0.4);
    --color_gray04: #999999;
    --color_gray01: #F5F5F5;
    --color_gray03: #cccccc;
    --color_gradient:linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 31.87%);
    


}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Pretendard', sans-serif;
    overflow-x: hidden;
}



a {
    text-decoration: none;
}

/* --------------------------------------------------------------------------- */
/*navbar*/
.navbar {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    width: 100%;
    max-width: calc((100vh + var(--footer_height)) * (1920 / 1000));
    left: 50%;
    transform: translateX(-50%);
    height: var(--navbar_height);
    transition: box-shadow 0.3s ease-in-out;
    z-index: 2;
}

.navbar.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

.page_with_image .navbar{
    background-color: var(--color_clear);
}
.page_no_image .navbar{
    background-color: var(--color_white);
}

.logo {
    width: 80px;
    height: auto;
    z-index: 3;
    position: relative;
    /*비율 고정*/
}

.navbar_menu {
    width: auto;
    height: var(--navbar_menu_height);
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-start;
    /* 왼쪽정렬 */
    padding: 0;
    /* padding 제거 */
    margin: 0;
    /* margin 제거 */
    gap: 24px;
    text-align: center;

}


.navbar_menu a {
    color: var(--color_gray40);
    /*h_16_M*/
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--navbar_menu_height);
    letter-spacing: -0.16px;
}

.navbar_menu a:hover {
    color: var(--color_black);
    transition: color 0.3s, font-weight 0.3s;
    /* h_16_B */
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--navbar_menu_height);
    letter-spacing: -0.16px;


}

/* 각 메뉴에 대한 박스 사이즈 */
.navbar_menu li:nth-child(1),
.navbar_menu li:nth-child(2) {
    width: 60px;
    height: var(--navbar_menu_height);

}

.navbar_menu li:nth-child(3) {
    width: 76px;
    height: var(--navbar_menu_height);
}

.navbar_menu li:nth-child(4) {
    width: 83px;
    height: var(--navbar_menu_height);
}



/*navbar 모바일용 사이드메뉴 버튼*/
input[id="menuicon"] {
    display: none;
}

input[id="menuicon"]+label {
    display: none;
    margin: 0px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    /* position: relative; */
    cursor: pointer;
}

input[id="menuicon"]+label svg {
    transition: all .35s;
}

.close {
    display: none;
    /* 기본적으로 X 아이콘 숨기기 */
}

input[id="menuicon"]:checked+label .close {
    display: block;
    /* 체크된 상태에서는 X 아이콘 보이기 */
}

input[id="menuicon"]:checked+label .menu {
    display: none;
    /* 체크된 상태에서는 햄버거 아이콘 숨기기 */
}

input[id="menuicon"]:checked+label {
    z-index: 2;
}

/*navbar 모바일용 사이드메뉴 버튼*/
.sidebar {
    display: none;
    width: 100%;
    height: calc(var(--navbar_height_media) + (var(--navbar_sidebar_menu_height) * 4) + 24px);
    background: var(--color_white);
    padding-bottom: 24px;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1;
    transition: all.35s;
}



input[id="menuicon"]:checked+label+div {
    right: 0;
}

#sidebar_menu {

    list-style: none;
    padding-top: var(--navbar_height_media);



    li {
        display: flex;
        height: var(--navbar_sidebar_menu_height);
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        align-self: stretch;
    }

    li a {
        color: var(--color_gray40);
        /* h_20_M */
        font-family: Pretendard;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 30px */
        letter-spacing: -0.2px;
    }

    li a:hover {
        color: var(--color_black);
        /* h_20_B */
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 30px */
        letter-spacing: -0.2px;
    }
}


/* --------------------------------------------------------------------------- */

/* 푸터 */
footer {
    background-color: var(--color_clear);
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 3;
    bottom: calc(-1 * var(--footer_height));
}

.footer_container {
    display: flex;
    width: 100%;
    height: var(--footer_height);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.copyright {

    color: var(--color_gray40);
    /* h_14_M */
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;

}

/* --------------------------------------------------------------------------- */
/*Home 화면 style*/
.main_content {
    display: flex;
    /* position: relative; */
    justify-content: center;
    z-index: 1;
}


.image_container {
    display: flex;
    justify-content: center;
    position: relative;
    /* margin: 0;
    padding: 0; */
    width: auto;
    height: calc(100vh + var(--footer_height));
    overflow: hidden;
    z-index: 1;
}

.main_image {
    width: auto;
    height: 100%;
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

.main_text {
    width: 520px;
    height: 135px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    
}




.text1 {
    color: var(--color_black);
    text-align: center;
    /* h_68_EB */
    font-size: 68px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;/* 88.4px */
    letter-spacing: -0.68px;
    

}

.text2 {
    color: var(--color_black);
    text-align: center;
    /* h_18_M */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;/* 27px */
    letter-spacing: -0.18px;
    
}

/* --------------------------------------------------------------------------- */
/*About 화면 style*/
.about_container{
    display: flex;
    position: relative;
    width: var(--content_width);
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    top: calc(var(--navbar_height) + 100px);
    margin: 0 auto; /* 가로 중앙 정렬 */
    z-index: 1;
}

.page_title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    height: var(--title_height);
}

.page_name {
    display: flex;
    height: var(--title_text_height);
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: var(--color_black);
    /* h_48_EB */
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;/* 62.4px */
    letter-spacing: -0.48px;
}

.page_line {
    margin-top: var(--title_text_bottom_margin);
    margin-bottom: 0;
    width: 100%;
    color: var(--color_black);
    height: var(--title_line_height);
    align-self: stretch;
}
    
.about_content {
    display: flex;
    margin-top: var(--content_top_margin);
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}
    
.about_text {
    width: 502px;
    height: auto;
    padding-top: 20px;
    flex-direction: column;
    align-items: flex-start;

}
    
.about_text1 {
    width: 444px;
    margin-bottom: 32px;
    color: var(--color_black);
    /* h_20_R */
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;/* 30px */
    letter-spacing: -0.2px;
}

.about_text2 {
    
    color: var(--color_black);
    /* h_20_R */
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;/* 30px */
    letter-spacing: -0.2px;
}


.about_image{
    width: 760px;
    height: 470px;
}
/* --------------------------------------------------------------------------- */
/*Project 화면 style*/
.project_container{
    display: flex;
    position: relative;
    width: var(--content_width);
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    /* align-items: stretch; */
    align-items: center;
    top: calc(var(--navbar_height) + 80px);
    margin: 0 auto; /* 가로 중앙 정렬 */
    z-index: 1;
}
.project_content {
    display: flex;
    margin-top: var(--content_top_margin);
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.filter_container {
    position: relative;
    width:100%;
    height: 58px;
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.filter_container::before,
.filter_container::after {
    display: none; /* 기본적으로 그라데이션은 보이지 않음 */
}

.filter_container button {
    border: none;
    display: flex;
    border-radius: 100px;
    height: 40px;
    padding: 0px 20px;
    justify-content: center;
    align-items: center;
    background-color: var(--color_gray01);

    color: var(--color_gray04);
    /* h_16_M */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;/* 24px */
    letter-spacing: -0.16px;

}


.filter_container button:hover {
    background-color: var(--color_black);
    color: var(--color_white);
}
.filter_container button.active{
    background-color: var(--color_black);
    color: var(--color_white);
}

.right_gradation, 
.left_gradation{
    display: none;
}


.project_card_area {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 60px 42px; /* 첫 번째 값은 위아래 간격, 두 번째 값은 좌우 간격 */
    flex-wrap: wrap;
}


.project_card {
    width: 452px;
    height: 368px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* 카드에 호버 효과 추가 */
.project_card:hover {
    transform: scale(1.05); /* 카드를 약간 확대 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 그림자 추가 */
    border-radius: 20px;
}


.project_card img {
    width: 100%;
    height: 281px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.project_card .content {
    padding: 0px 12px;
}

.project_card .content h2 {
    margin-bottom: 8px;
    color: var(--color_black);
    
    /* h_20_B */
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;/* 30px */
    letter-spacing: -0.2px;
}

.project_card .content p {

    color: var(--color_gray04);
    /* h_14_M */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;/* 21px */
}

.project_detail {
    display: flex;
    position: relative;
    width: 1024px;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}
.project_head{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.back_button{
    width: 40px;
    height: 40px;
    background: none; /* 기본 배경 제거 */
    border: none; /* 기본 테두리 제거 */
    cursor: pointer; /* 커서 모양 변경 */
    padding: 0; /* 여백 제거 */
    display: flex; /* 아이콘 중앙 정렬 */
    justify-content: center; /* 수평 중앙 정렬 */
    align-items: center; /* 수직 중앙 정렬 */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="41" viewBox="0 0 40 41" fill="none"><path d="M14.9999 32.5003L3.57129 20.5002L14.9999 8.5" stroke="%23111111" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 20.5L22.4164 20.5L35 20.5" stroke="%23111111" stroke-width="4" stroke-linecap="round"/></svg>');
    background-size: contain; /* 아이콘 크기 조절 */
    background-repeat: no-repeat; /* 배경 반복 방지 */
}

.project_name {
    color: var(--color_black);
    /* h_36_EB */
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;/* 46.8px */
    letter-spacing: -0.36px;
}

.project_explain {
    display: flex;
    padding: 28px 24px;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    background-color: var(--color_gray01);
    border-radius: 12px;
    margin-bottom: 60px;
}

.project_note {
    color: var(--color_black);
    /* h_20_B */
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;/* 30px */
    letter-spacing: -0.2px;
}
.separator{
    width: 2px;
height: 18px;
background-color: var(--color_gray03);
}

.project_tags {
    color: var(--color_gray04);
    /* h_18_M */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;/* 27px */
    letter-spacing: -0.18px;
}

.project_movie_name {
    color: var(--color_black);
    margin-bottom: 28px;
    /* h_28_EB */
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;/* 36.4px */
    letter-spacing: -0.28px;
}

.project_movie {
    width: 1024px;
    height: 576px;
    border-radius: 20px;
    margin-bottom: 80px;
}


/* --------------------------------------------------------------------------- */
/*Contact 화면 style*/
.contact_container{
    display: flex;
    position: relative;
    margin-top: 0;
    padding-top: 0;
    width: var(--content_width);
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    top: calc(var(--navbar_height) + 100px);
    margin: 0 auto; /* 가로 중앙 정렬 */
    z-index: 1;
}

.contact_content {
    display: flex;
    margin-top: var(--content_top_margin);
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.contact_text {
    width: 373px;
    height: auto;
    padding-top: 20px;
    flex-direction: column;
    align-items: flex-start;

}
    
.contact_text1 {
    margin-bottom: 8px;
    color: var(--color_black);
    /* h_40_EB */
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 52px */
    letter-spacing: -0.4px;
}

.contact_text2 {
    
    color: var(--color_black);
   /* h_40_EB */
   font-size: 40px;
   font-style: normal;
   font-weight: 800;
   line-height: 130%; /* 52px */
   letter-spacing: -0.4px;
}


.contact_image{
    width: 760px;
    height: 470px;
}

/* --------------------------------------------------------------------------- */
/*모바일용 화면*/

@media screen and (max-width:768px) {

    body,
    html {
        height: (var(--vh, 1vh) * 100);
        width: 100vw;
        margin: 0;
        padding: 0;
        /* overflow-x: hidden; */
        overflow-x: clip;
    }

    .navbar {
        position: fixed;/* 상단에 고정 */
        padding: 0px 16px;
        height: var(--navbar_height_media);
        align-self: stretch;
        z-index: 2;/* 높은 z-index로 다른 요소들보다 위에 배치 */
    }

    

    /*모바일 navbar 햄버거 메뉴 */
    .navbar_menu {
        display: none;
    }


    input[id="menuicon"]+label {
        display: inline-block;
    }

    .sidebar {
        display: inline-block;
    }

    /* .footer{
        position: fixed;
    } */
    /*모바일 Home 화면 style*/

    .main_content{
        height : calc((var(--vh, 1vh) * 100) + var(--footer_height));
        
    }

    .image_container{
        width: auto;
        height : calc((var(--vh, 1vh) * 100) + var(--footer_height));
        left: 0;
    }
    .main_image{
        width: auto;
        height : calc((var(--vh, 1vh) * 100) + var(--footer_height));
        left: 0;
    }

    
    .main_text {
        width: 276px;
        height: 117px;
        gap: 16px;
    }

    .text1 {
        width: 276px;
        height: 47px;
        /* h_36_EB */
        font-size: 36px;
        font-style: normal;
        font-weight: 800;
        line-height: 130%;/* 46.8px */
        letter-spacing: -0.36px;
    }

    .text2 {
        width: 200px;
        height: 54px;
    }

    /*모바일 About 화면 style*/
    .about_container{
        height: calc((var(--vh, 1vh) * 100) - var(--navbar_height_media));
        overflow : hidden;
        top: var(--navbar_height_media);
    }
    .page_title{
        width:100vw;
        height: 78px;
        padding: 16px 16px 24px 16px;
        
    }
    .page_line{
        display: none;
    }

    .about_content{
        flex-direction: column-reverse;
        margin-top: 0;
    }

    .about_image{
        width: 100vw;
        height: auto;
    }

    .about_text{
        width: 100vw;
        height: 282px;
        padding: 40px 16px 60px 16px;
    }

    .about_text1{
        width: auto;
        margin-bottom: 20px;
        color: var(--Black, #111);
        /* h_18_R */
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;/* 27px */
        letter-spacing: -0.18px;
     }

     .about_text2{
        width: auto;
        color: var(--Black, #111);
        /* h_18_R */
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;/* 27px */
        letter-spacing: -0.18px;
     }
     /*모바일 Project 화면 style*/
     .project_container{
        width: 100vw;
        height: 100%;
        /* overflow : hidden; */
        top: var(--navbar_height_media);
    }

    .project_content{
        position: relative;
        margin-top: 0;
    }

    .right_gradation, 
    .left_gradation{
    display: block;
    position: absolute;
    width: 80px;
    height: 46px;
    pointer-events: none; /* 그라데이션 박스는 클릭되지 않음 */
    z-index: 3;
    }   

    .right_gradation{
    right: 0;
    background: linear-gradient(to left, #FFF 15%, rgba(225,225,225,0)); /* 그라데이션 효과 */
    }   
    .left_gradation{
    left: 0;
    background: linear-gradient(to right, #FFF 15%, rgba(225,225,225,0)); /* 그라데이션 효과 */
    }

    .filter_container{
        position: relative;
        width: 100%;
        height: 46px;
        gap: 6px;
        padding: 0px 16px;
        overflow-x: auto;
        white-space: nowrap;
        z-index: 2;
    }
    
    .filter_container::-webkit-scrollbar{
        display: none; 
    }

    .filter_container button{
        height: 46px;
    }



    .project_card_area{
        grid-template-columns: 1fr;
        margin-top: 28px;
        gap: 40px;
        place-items: center;
    }
   
    .project_card{
        width: 328px;
        height: 271px;
    }

    .project_card:hover{
        transform: none;
        box-shadow: none;
    }

    .project_card img{
        width: 328px;
        height: 204px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .project_card .content h2 {
        margin-bottom: 0;
        /* h_18_B */
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;/* 27px */
        letter-spacing: -0.18px;
        }

    .project_card .content p{
        /* h_16_M */
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 24px */
        letter-spacing: -0.16px;
    }  
    
    .project_detail{
        width: 360px;
        padding: 20px 16px 60px 16px;
    }

    .project_head{
        gap: 12px;
        margin-bottom: 24px;
    }

    .back_button {
        width: 20px;
        height: 20px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M8 17L1 10L8 3" stroke="%23111111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 10L11.9724 10L19 10" stroke="%23111111" stroke-width="2" stroke-linecap="round"/></svg>');
    }

    .project_name {
        /* h_20_B */
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;/* 30px */
        letter-spacing: -0.2px;
    }

    .project_explain{
        padding: 16px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 4px;
        border-radius: 8px;
        margin-bottom: 40px;
    }
    
    .separator{
        display: none;
    }
    .project_note {
        /* h_16_B */
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;/* 24px */
        letter-spacing: -0.16px;
    }
    .project_tags{
        /* h_14_M */
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 21px */
    }

    .project_movie_name{
        margin-bottom: 12px;
        /* h_18_B */
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; /* 27px */
        letter-spacing: -0.18px;
    }

    .project_movie{
        width: 328px;
        height: 185px;
        border-radius: 8px;
        margin-bottom: 40px;
    }
     /*모바일 Contact 화면 style*/
     .contact_container{
        height: calc((var(--vh, 1vh) * 100) - var(--navbar_height_media));
        overflow : hidden;
        top: var(--navbar_height_media);
    }

    .contact_content{
        flex-direction: column-reverse;
        margin-top: 0;
    }
    .contact_image{
        width: 100vw;
        height: auto;
    }
    .contact_text{
        width: 100vw;
        height: 282px;
        padding: 32px 16px 0px 16px;
    }
    .contact_text1{
        width: auto;
        margin-bottom: 20px;
        color: var(--Black, #111);
        /* h_24_EB */
        font-size: 24px;
        font-style: normal;
        font-weight: 800;
        line-height: 130%; /* 31.2px */
        letter-spacing: -0.24px;
        
     }

     .contact_text2{
        width: auto;
        color: var(--Black, #111);
        /* h_24_EB */
        font-size: 24px;
        font-style: normal;
        font-weight: 800;
        line-height: 130%; /* 31.2px */
        letter-spacing: -0.24px;
     }


}