body {
    background-color: #0c0c0c;
}

:root {
    --perspective: 2000px;
    --grid-item-ratio: 16 / 8;
    --grid-width: 100%;
    --grid-height: auto;
    --grid-gap: 1vw;
    --grid-columns: 4;
    --grid-inner-scale: 1;
}

.grid {
    display: grid;
    place-items: center;
    padding: 2rem;
    width: 100%;
    perspective: var(--perspective);
    position: relative;
    z-index: 8;
}

.grid-wrap {
    height: var(--grid-height);
    width: var(--grid-width);
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
    transform-style: preserve-3d;
}

.grid__item {
    aspect-ratio: var(--grid-item-ratio);
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    display: grid;
    place-items: center;
    box-shadow: 0 0px 80px rgb(0 0 0 / 85%);
}

.grid__item-inner {
    position: relative;
    width: calc(1 / var(--grid-inner-scale) * 100%);
    height: calc(1 / var(--grid-inner-scale) * 100%);
    background-size: cover;
    background-position: 50% 50%;
    opacity: 1;
}

.scroll3d {
    overflow: hidden;
}

.overlay-grad {
    position: absolute;
    bottom: -20px;
    height: 600px;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(12, 12, 12, 0) 100%);
    z-index: 100;
}

.overlay-grad.full-grad {
    height: 100vh;
    background: linear-gradient(0deg, rgba(12, 12, 12, 1) 0%, rgba(12, 12, 12, 0.15) 100%);
}

.overlay-grad.reverse {
    position: absolute;
    bottom: auto;
    height: 250px;
    width: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 12, 1) 0%, rgba(12, 12, 12, 0) 100%);
    z-index: 0;
}

.content {
    position: relative;
    /* margin-bottom: 20vh; */
    z-index: 99;
}

.content--spacing {
    /* margin-bottom: 0; */
}

.content-max-width {
    box-sizing:border-box;
    padding-left:80px;
    padding-right:80px;
    max-width:1600px;
}

.content-full-width {
    box-sizing:border-box;
    padding-left:80px;
    padding-right:80px;
    max-width:100%;
}

@media only screen and (max-width: 1466px) {
    .content-max-width, .content-full-width {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/*--------------------------------------------------
	와커스와 홈페이지 제작을 진행하고 싶으신가요?
---------------------------------------------------*/

.sc4 {
   
}
.dark-section-wrapper {
    margin-left: calc(50% - 50vw)!important;
    margin-right: calc(50% - 50vw)!important;
    max-width: 1000%!important;
    width: 100vw!important;
}

.dark-section-container {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
}

.content-row {
    padding: 80px 0;
    /* overflow: visible; */
    position:relative;
    width:100%;
    margin:0 auto;
    z-index:1;
    opacity:1;
    box-sizing:border-box;
}

.clip-effects {
    overflow:hidden;
    clip-path: inset(4% 10% round 40px);
}

.content-row::after {
    clear: both;
    content: " ";
    display: table;
}

.small {
    max-width:820px;
    width:100%;
    margin:0 auto;
}

.large {
    max-width:1380px;
    width:100%;
    margin:0 auto;
}

.full {
    margin-left: calc(50% - 50vw)!important;
    margin-right: calc(50% - 50vw)!important;
    max-width: 1000%!important;
    width: 100vw!important;
}

.row_padding_top {
    padding-top:9vw;
}

.row_padding_bottom {
    /* padding-bottom:9vw; */
}

.row_padding_left {
    padding-left:80px;
}

.row_padding_right {
    padding-right:80px;
}

.row_padding_all {
    padding-top: 4vw;
    padding-bottom: 4vw;
    padding-left: 80px;
    padding-right: 80px;
}
    .pb-1rem {
    padding-bottom: 1rem;
}
.pb-2rem {
    padding-bottom: 2rem;
}
.pb-3rem {
    padding-bottom: 3rem;
}
.pb-4rem {
    padding-bottom: 4rem;
}
.pb-5rem {
    padding-bottom: 5rem;
}
.mb-1rem {
    margin-bottom: 1rem;
}
.mb-2rem {
    margin-bottom: 2rem;
}
.mb-3rem {
    margin-bottom: 3rem;
}
.mb-4rem {
    margin-bottom: 4rem;
}
.mb-5rem {
    margin-bottom: 5rem;
}

.grid--3 {
    /*overflow: hidden;*/
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.content__title {
    z-index: 20;
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 0;
    display: grid;
    place-items: center;
    text-align: center;
    align-content: center;
}

.dark-section h2 {
    color: #fff;
    font-size: 60px;
    line-height: 160%;
    font-family: inherit;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    z-index: 999;
    letter-spacing: -1.68px;
}

.has-mask-fill > span {
    position: relative;
    display: inline;
    -webkit-text-fill-color: rgba(0,0,0,0.1);
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-image: linear-gradient(#000, #000);
      background-size: 0% 100%;
}

.has-mask-fill.block-title > span {
    display: block;
}

.light-content .has-mask-fill > span, .dark-section .has-mask-fill > span {
    -webkit-text-fill-color: rgba(255,255,255,0.1);
    background-image: linear-gradient(#fff, #fff);;
}

.light-content .light-section .has-mask-fill > span {
    -webkit-text-fill-color: rgba(0,0,0,0.1);
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-image: linear-gradient(#000, #000);
}

.grid__item:nth-child(1) .grid__item-inner {
    background-image: url(/img/web/s4_img_1.webp);
}
.grid__item:nth-child(2) .grid__item-inner {
    background-image: url(/img/web/s4_img_2.webp);
}
.grid__item:nth-child(3) .grid__item-inner {
    background-image: url(/img/web/s4_img_3.webp);
}
.grid__item:nth-child(4) .grid__item-inner {
    background-image: url(/img/web/s4_img_4.webp);
}
.grid__item:nth-child(5) .grid__item-inner {
    background-image: url(/img/web/s4_img_5.webp);
}
.grid__item:nth-child(6) .grid__item-inner {
    background-image: url(/img/web/s4_img_6.webp);
}
.grid__item:nth-child(7) .grid__item-inner {
    background-image: url(/img/web/s4_img_7.webp);
}
.grid__item:nth-child(8) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(9) .grid__item-inner {
    background-image: url(/img/web/s4_img_1.webp);
}
.grid__item:nth-child(10) .grid__item-inner {
    background-image: url(/img/web/s4_img_2.webp);
}
.grid__item:nth-child(11) .grid__item-inner {
    background-image: url(/img/web/s4_img_3.webp);
}
.grid__item:nth-child(12) .grid__item-inner {
    background-image: url(/img/web/s4_img_4.webp);
}
.grid__item:nth-child(13) .grid__item-inner {
    background-image: url(/img/web/s4_img_5.webp);
}
.grid__item:nth-child(14) .grid__item-inner {
    background-image: url(/img/web/s4_img_6.webp);
}
.grid__item:nth-child(15) .grid__item-inner {
    background-image: url(/img/web/s4_img_7.webp);
}
.grid__item:nth-child(16) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(16) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(17) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(18) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(19) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(20) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(21) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(22) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(23) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}
.grid__item:nth-child(23) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(23) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(24) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(25) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(26) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(27) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(28) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(29) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(30) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(31) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(32) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(33) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(34) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(35) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}.grid__item:nth-child(36) .grid__item-inner {
    background-image: url(/img/web/s4_img_8.webp);
}

.sc_full {
    height: 100vh;
}

@media screen and (max-width:980px) {
    .content__title h2 {
        font-size: 26px;
        line-height: 150%;
    }

    .grid__item {
        border-radius: 4px;
    }
       
    .grid__item:nth-child(6) {
        display: none;
    }

    .grid__item:nth-child(7) {
        display: none;
    }

    .grid__item:nth-child(8) {
        display: none;
    }
    .grid__item:nth-child(9) {
        display: none;
    }
    .grid__item:nth-child(10) {
        display: none;
    }
    .grid__item:nth-child(11) {
        display: none;
    }
    .grid__item:nth-child(12) {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .overlay-grad { 
        height: 200px;
    }
}

