/* 테마 유틸 css */
.hidden-box{
    position: absolute;
    clip-path: polygon(0 0, 0 0, 0 0);
}
.hidden-text{
    clip-path: polygon(0 0, 0 0, 0 0);
}

.hidden-vi{
    visibility: hidden;
}

.layout1{
    max-width: 1920px;
    margin: 0 auto;
}

.back{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.img{
    object-fit: cover;
    object-position: center;
}


.w100{
    width: 100%;
}
.h100{
    height: 100%;
}
.block{
    display: block;
}
.none{
    display: none;
}

.title-style{
    font-size: 60px;
    font-family: var(--font-3);
}
.content-style{
    font-size: var(--f-size-14);
    line-height: 2;
}
@media(width > 1400px){
    .p-block{
        display: unset;
    }
    .p-none{
        display: none;
    }
}
@media(width < 1400px){
    .l-block{
        display: unset;
    }
    .l-none{
        display: none;
    }
}
@media(width < 1024px){
    .t-block{
        display: unset;
    }
    .t-none{
        display: none;
    }

    .title-style{
        font-size: 32px;
    }
    .content-style{
        font-size: 14px;
    }
}
@media(width < 768px){
    .m-block{
        display: unset;
    }
    .m-none{
        display: none;
    }
}
@media(width < 400px){
    .sm-block{
        display: unset;
    }
    .sm-none{
        display: none;
    }
}