.cont {
    display: flex;
    justify-content: center;
    gap: 13vw;
    margin: 154px 0 250px;
    padding: 0 12.24vw;
    position: relative;
    
}
.mo-cont-box {
    position: relative;
}
.mo-cont-box .spot {
    position: absolute;
    top: -35%;
    left: 0;
    width: 1px;
    height: 1px;
}
.web_dev .more-btn {
    margin: 40px 0 0;
    width: 158px;
    height: 42px;
}
.web_dev .more-btn .text {
    font-size: 18px;
}
.web_dev .more-btn span.arrow {
    font-size: 18px;
    width: 28px;
    height: 28px;
}
.cont .imgbox {
    position: sticky;
    top: 220px;
    width: 24.48vw;
    max-width: 470px;
    height: 28.125vw;
    border-radius: 30px;
    overflow: hidden;
}
.cont .imgbox img {
    position: absolute;
    object-fit: cover;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
/* 활성 이미지 */
.imgbox img.active {
    opacity: 1;
}

.cont .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 35vw;
    min-height: 65vh;
}
.cont .text h2 {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cont .text .number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0F0F0F;
    color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}
.cont .text span {
    font-size: 32px;
    letter-spacing: 0.03em;
    line-height: 1.5;
}
.cont .text p {
    font-size: 18px;
    line-height: 1.7em;
    font-family: 'pret-l';
    word-break: keep-all;
}
.cont .text p b {
    font-family: 'pret-sb';
}

@media(max-width:1200px){
    
    .cont .text h2 {
        margin-bottom: 14px;
        gap: 10px;
    }

    .cont .text .number {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
    .cont .text span {
        font-size: 20px;
        letter-spacing: 0.03em;
    }
    .cont .text p {
        font-size: 14px;
        padding-left: 10px;
    }
}

@media(max-width:768px){
    .cont {
        flex-direction: column;
        margin: 100px 0 120px;
        padding: 0 7vw;
        gap: 30px;
    }
    .cont .imgbox {
        border-radius: 15px;
        width: 86vw;
        max-width: 86vw;
        height: 56.75vw;
        position: static;
    }
    .cont .imgbox img {
        position: relative;
        opacity: 1;
    }
    .cont .text_wrap {
        display: flex;
        flex-direction: column;
        gap: 100px;
    }
    .cont .text {
        max-width: 86vw;
    }
    .mo-cont-box {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .mo-cont-box .spot {
        top: -25%;
    }
    .cont .text {
        min-height: 1px;
    }
}