.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: -220px;
    left: 0;
    width: 1px;
    height: 1px;
}
.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 1.2s ease;
}
/* 활성 이미지 */
.imgbox img.active {
    opacity: 1;
}

.cont .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 35vw;
    padding-bottom: 200px;
    /* 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;
    word-break: keep-all;
}
.cont .text h3 {
    padding: 10px 30px 10px 67px;
    font-size: 25px;
    letter-spacing: 0.03em;
    line-height: 1.8;
    color: #EFEFEF;
    background: linear-gradient(180deg, #111, #0b0b0b);
    box-shadow: inset 0px 6px 6px #FFFFFF4D;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    width: max-content;
    margin-bottom: 35px;
    margin-left: 34px;
    word-break: keep-all;
}
.cont .text h3::before {
    content: "Q";
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%);
    width: 34px;
    height: 34px;
    font-size: 23px;
    line-height: 34px;
    text-align: center;
    border-radius: 100%;
    color: #0F0F0F;
    background-color: #EFEFEF;
    transition: all 0.4s ease;
}
.cont .text h3.no-before {
    padding-left: 30px;
}
.cont .text h3.no-before::before {
    content: "";
    width: 0;
    height: 0;
}
.cont .text h3:hover {
    background: linear-gradient(180deg, #1a1a1a, #0e0e0e);
}
.cont .text h4 {
    font-size: 25px;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    margin-left: 34px;
}
.cont .text p {
    font-size: 18px;
    line-height: 1.7em;
    font-family: 'pret-l';
    word-break: keep-all;
    margin-bottom: 50px;
    margin-left: 59px;
}
.cont .text p b {
    font-family: 'pret-sb';
}

@media(max-width:1400px){
    .cont {
        gap: 8vw;
    }
    .cont .text {
        max-width: 42vw;
    }
    .cont .text h2 {
        margin-bottom: 14px;
        gap: 10px;
    }
    .cont .text .number {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
    .cont .text span {
        font-size: 20px;
    }
    .cont .text h3, .cont .text h4 {
        font-size: 18px;
        margin-left: 20px;
    }
    .cont .text p {
        font-size: 14px;
        margin-left: 40px;
    }

}


@media(max-width:768px){
    .cont {
        flex-direction: column;
        margin: 100px 0 120px;
        padding: 0 3vw 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: 90vw;
    }
    .mo-cont-box {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .cont .text {
        min-height: 1px;
        padding-bottom: 0;
    }
    .cont .text h3 {
        border-radius: 25px;
        margin-bottom: 18px;
        padding-left: 55px;
        font-size: 17px;
    }
    .cont .text h4 {
        margin-bottom: 5px;
        font-size: 16px;
        word-break: keep-all;
    }
    .cont .text p {
        margin-bottom: 30px;
    }
}

@media (max-width:500px){
    .cont .text h3, .cont .text h4, .cont .text p { margin-left: 0;}
}

@media(max-width:400px){
    .cont .text h3 {
        font-size: 14px;
    }
}