/* .textBox {
    background-image: url('/assets/img/busBanner1.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
} */
.textBox {
    font-size: 28px;
    line-height: 46px;
    display: grid;
    grid-template-columns: 7fr 3fr;
}

.textBox .imgBox {
    position: relative;
    width: 100%;
}

.textBox .imgBox::after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.textBox .imgBox > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.textBox .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
}

.contItem {
    font-family: 'Noto Sans KR';
    font-size: 32px;
    display: grid;
    grid-template-columns: .2fr 1fr;
    gap: 3%;
    align-items: center;
    position: relative;
    padding: 3% 0;
    width: 100%;
}

.contItem::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--gray);
    position: absolute;
    top: 0;
}

.contItem:last-child::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--gray);
    position: absolute;
    bottom: 0;
}

.contItem > .left {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 5px solid;
    width: 476px;
    height: 187px;
    border-image: linear-gradient(90deg, rgba(155, 255, 228, 1) 7%, rgba(0, 232, 177, 1) 24%, rgba(40, 62, 255, 1) 100%);
    border-image-slice: 1;
}

.contItem > .left > p {
	font-size: 24px;
}

.contItem > .left > p >span {
	font-size: 32px;
}

.contItem>.right {
    font-size: 28px;
}

.loadMore {
    margin: 5% auto;
    text-align: center;
    position: relative;
}

.loadMore>button {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    width: 220px;
    height: 61px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    cursor: pointer;
}

.loadMore::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--gray);
    top: 50%;
    left: 0;
    z-index: -1;
}

@media screen and (max-width: 1210px) {
    .textBox {
            font-size: 26px;
            line-height: 44px;
        }
}



@media screen and (max-width: 1090px) {
    .textBox {
        grid-template-columns: 6fr 4fr;
    }
}

@media screen and (max-width: 1024px) {
    .textBox {
            font-size: 24px;
        }
.contItem>.right {
    font-size: 24px;
}

.contItem>.left {
font-size: 24px;
            width: 400px;
            height: 187px;
        }


}


@media screen and (max-width: 870px) {
.textBox .imgBox {
        display: none;
    }
.textBox {
    grid-template-columns: 1fr;
    padding-bottom: 2%;
}

.contItem {
    grid-template-columns: 1fr;
    justify-items: center;
}
}

@media  screen and (max-width: 520px) {
    .contItem>.left {
            width: 368px;
            height: 168px;
        }
    
}

@media screen and (max-width: 407px) {
    .contItem {
        font-size: 26px;
    }

    .contItem>.right {
        font-size: 24px;
    }

        .contItem>.left {
            width: 308px;
            height: 136px;
        }

}

@media screen and (max-width: 360px) {
    .textBox {
        font-size: 24px;
        line-height: 32px;
    }
    .contItem {
        font-size: 24px;
    }
    .contItem>.left {
        width: 90%;
        height: 114px;
    }
}