@charset "utf-8"; #Main #footer {
    padding: 30px 0 100px;
}

@media(min-width: 768px) {
    #Main #footer {
        padding: 30px 0;
    }
}

/* common */
section {
    position: relative
}

a:hover, a:focus {
    font-weight: 600;
}

button:focus {
    outline: none;
}

button:focus-visible {
    outline: 5px auto -webkit-focus-ring-color;
}

.main-tit, .sub-tit {
    position: relative;
    z-index: 10
}

.main-tit {
    font-family: var(--font-type02);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sub-tit {
    display: inline-block;
    margin-bottom: 11px;
    font-size: 17px;
    font-weight: 400;
    color: #58668A
}

.more-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    transition: .3s all;
    background: var(--gray-color01);
    border-radius: 50%;
}

.more-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
    background-color: #222;
}

.more-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
    background-color: #222;
}

.more-btn:hover, .more-btn:focus {
    transform: rotate(90deg);
}

.more-btn:hover, .more-btn:focus {
    background: var(--gray-color03);
}

.control {
    position: relative;
    display: flex;
    gap: 0 12px;
    justify-content: center;
    align-items: center;
}

.control button {
    position: relative;
    width: 16px;
    height: 16px;
    border: none;
    background: transparent;
    padding: 0
}

.control button.prev-btn, .control button.next-btn {
    position: relative;
    width: 16px;
    height: 16px;
}

.control button.prev-btn:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url('/template/t008000/images/ctl-prev.svg') center no-repeat;
    background-size: 9px;
}

.control button.next-btn:before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url('/template/t008000/images/ctl-next.svg') center no-repeat;
    background-size: 9px;
}

.control button.play-pause.stop:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-block;
    width: 9px;
    height: 15px;
    border-width: 0 2px;
    border-color: #111;
    border-style: solid;
    transform: translate(calc(-50% + .5px), -50%);
}

.control button.play-pause.play:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    border-width: 6px 0 6px 10px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #111;
    transform: translate(-50%, -50%);
}

.control .swiper-pagination {
    position: relative;
    width: auto;
    min-width: 48px;
    top: 0px;
    color: rgba(17,17,17,.5);
}

.control .swiper-pagination .swiper-pagination-current {
    font-weight: 500;
    color: #111;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
}

@media(min-width: 468px) {
    .main-tit {
        font-size: 24px;
    }
}

@media(min-width: 992px) {
    .main-tit {
        font-size: 30px;
    }

    .more-btn span {
        font-size: 16px;
        padding-right: 20px;
    }

    .more-btn span::after {
        width: 9px;
        background-size: auto;
    }
}

@media(min-width: 1600px) {
    .main-tit .tit {
        font-size: 48px;
    }

    .more-btn span {
        font-size: 17px;
    }
}

.main-container .main-bg {
    position: absolute;
    top: 65px;
    left: 0;
    margin: 15px;
    width: calc(100% - 30px);
    height: 700px;
    background: url(/template/t008000/images/main-pt.png) no-repeat center top, linear-gradient(-135deg, #E9FFF1, #E9F4FF);
    border-radius: 20px;
}

@media(min-width: 992px) {
    .main-container .main-bg {
        top:0;
        border-bottom-left-radius: 80px;
    }
}

@media(min-width: 1500px) {
    .main-container .main-bg {
        border-bottom-left-radius: 140px;
    }
}

/* ==============================
* program
================================= */
#program {
    margin: 0 15px;
    padding: 50px 0 70px;
    text-align: center;
}

#program .main-tit {
    color: #222;
    line-height: 1.2;
    word-break: keep-all;
}

#program .form-header {
    position: relative;
}

#program .form-header .sub-tit {
    margin-bottom: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-type03);
}

#program .form-header .btn-link {
    width: 100%;
    padding: 30px;
}

#program .form-header .btn-link:hover, #program .form-header .btn-link:focus {
    text-decoration: none
}

#program .form-header .bi {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 40px;
    color: #fff;
    background: #94acc7;
    border-radius: 17px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 3px 30px rgba(0,0,0,0.20);
    font-weight: 800;
}

#program .form-header .btn-link[aria-expanded="true"] .bi {
    transform: rotate(-180deg)
}

#program .step-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

#program .step-wrap .step-con {
    flex: 0 1 calc(33.3% - 10px);
    min-width: 0;
    background: #fff;
    box-shadow: 0px 3px 30px rgba(0,0,0,0.20);
    border-radius: 20px;
}

#program .step-wrap .step-con .main-tit {
    margin-bottom: 0;
    color: #222
}

#program .step-wrap .form-box {
    padding: 0 30px 30px;
    overflow-y: auto;
    max-height: 350px;
    gap:0;
}
#program .step-wrap .step-con .form-check:not(.form-switch) {
    flex: 0 0 auto;
    width: 100%;
}

#program .step-wrap .form-check:not(.form-switch) label {
    position: relative;
    padding: 20px 15px;
    border-radius: 15px;
    width: 100%;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -.05em;
}

#program .step-wrap .form-check:not(.form-switch):hover label, #program .step-wrap .form-check:not(.form-switch):focus label {
    cursor: pointer !important;
}

#program .step-wrap .form-check:not(.form-switch) label::after {
    width: 21px;
    height: 21px;
}

#program .step-wrap .form-check:not(.form-switch) [type="radio"]:checked + label::after {
    border-width: 4px;
}

#program .form-check:not(.form-switch) [type="radio"]:checked + label::before {
    width: 12px;
    height: 12px;
    background-color: #fff;
}

#program .step-wrap .step-con.step-01 {
    background: var(--main-color01);
}

#program .step-wrap .step-con.step-01 .main-tit, #program .step-wrap .step-con.step-02 .main-tit {
    color: #fff
}

#program .step-wrap .step-con.step-01 .form-box::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

#program .step-wrap .step-con.step-01 .form-box::-webkit-scrollbar-thumb {
    background-color: var(--main-color02);
    border-radius: 8px;
}

#program .step-wrap .step-con.step-01 .form-box::-webkit-scrollbar-button {
    display: none
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch) {
    position: relative;
    margin-bottom: 12px;
    background: #1A4CC0;
    border-radius: 15px;
    overflow: hidden;
    z-index: 0;
}

#program .step-wrap .step-con.step-01 .form-check:last-child {
    margin-bottom: 0;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #368BE9 50%, transparent 50%);
    background-size: 200% 200%;
    background-position: top left;
    transition: background-position .6s ease;
    z-index: -1;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch):hover::before, #program .step-wrap .step-con.step-01 .form-check:not(.form-switch):focus::before {
    background-position: bottom right;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch) label {
    padding-left: 60px;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch) [type="radio"]:checked + label::before {
    top: 50%;
    left: auto;
    right: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    background: url("/template/t008000/images/reserve-check.png") no-repeat center;
    background-size: 80%;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch) label::after {
    content: '';
    display: inline-block;
    width: 34px;
    height: 30px;
    border-radius: 0;
    border: none;
    left: 20px;
    background-color: transparent;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch):nth-child(1) label::after {
    background: url(/template/t008000/images/reserve-icon01.png) no-repeat center;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch):nth-child(2) label::after {
    background: url(/template/t008000/images/reserve-icon02.png) no-repeat left -2px center;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch):nth-child(3) label::after {
    background: url(/template/t008000/images/reserve-icon03.png) no-repeat left -2px center;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch):nth-child(4) label::after {
    background: url(/template/t008000/images/reserve-icon04.png) no-repeat center;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch):nth-child(1) [type="radio"]:checked + label::after {
    background: url(/template/t008000/images/reserve-icon01-on.png) no-repeat center;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch):nth-child(2) [type="radio"]:checked + label::after {
    background: url(/template/t008000/images/reserve-icon02-on.png) no-repeat center;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch):nth-child(3) [type="radio"]:checked + label::after {
    background: url(/template/t008000/images/reserve-icon03-on.png) no-repeat center;
}

#program .step-wrap .step-con.step-01 .form-check:not(.form-switch):nth-child(4) [type="radio"]:checked + label::after {
    background: url(/template/t008000/images/reserve-icon04-on.png) no-repeat center;
}

#program .step-wrap .step-con.step-02 {
    background: var(--main-color02);
}

#program .step-wrap .step-con.step-02 .sub-tit, #program .step-wrap .step-con.step-03 .sub-tit {
    color: var(--main-color01)
}

#program .step-wrap .step-con.step-02 .form-check:not(.form-switch) label {
    padding-left: 40px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#program .step-wrap .step-con.step-02 .form-check:not(.form-switch) [type="radio"]:checked + label {
    color: #3E9AFF;
    border-bottom: 1px solid #6BB0FF
}

#program .step-wrap .step-con.step-02 .form-check:not(.form-switch)::before, #program .step-wrap .step-con.step-03 .form-check:not(.form-switch)::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
    transform: inherit;
    transition: .3s;
}

#program .step-wrap .step-con.step-02 .form-check:not(.form-switch):hover::before, #program .step-wrap .step-con.step-02 .form-check:not(.form-switch):focus::before, #program .step-wrap .step-con.step-02 .form-check:not(.form-switch) [type="radio"]:checked {
    width: 100%;
    background: #6BB0FF;
}


#program .step-wrap .step-con.step-03 .form-check:not(.form-switch) label {
    color: #666
}

#program .step-wrap .step-con.step-03 .form-check:not(.form-switch) label {
    padding-left: 40px;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

#program .step-wrap .step-con.step-03 .form-check:not(.form-switch) [type="radio"]:checked + label {
    color: var(--main-color01);
    ; border-bottom: 1px solid var(--main-color01);
}

#program .step-wrap .step-con.step-03 .form-check:not(.form-switch):hover::before, #program .step-wrap .step-con.step-03 .form-check:not(.form-switch):focus::before, #program .step-wrap .step-con.step-03 .form-check:not(.form-switch) [type="radio"]:checked {
    width: 100%;
    background: var(--main-color01);
}

#program .btn-wrap {
    display: flex;
    justify-content: center;
    gap: 14px;
}

#program .btn-wrap .btn {
    position: relative;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    overflow: hidden;
    background: var(--gray-color02);
    font-weight: 600;
}

#program .btn-wrap .btn::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: 0.3s;
    z-index: 0;
}

#program .btn-wrap .btn span {
    position: relative;
    padding: 10px 0;
    padding-left: 30px;
    z-index: 2;
}

#program .btn-wrap .btn span::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

#program .btn-wrap .btn-reserve {
    position: relative;
    display: inline-block;
    border: none;
    color: #fff;
    background: linear-gradient(to right,var(--main-color01),#7FD66A);
    cursor: pointer;
}

#program .btn-wrap .btn-reserve span::before {
    background: url(/template/t008000/images/reserve-btn-icon.png) no-repeat left center;
}

#program .btn-wrap .btn-reserve:hover::after, #program .btn-wrap .btn-reserve:focus::after {
    width: 100%;
    background: var(--main-color01)
}

#program .btn-wrap .btn-refresh {
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--main-color02);
}

#program .btn-wrap .btn-refresh:hover::after, #program .btn-wrap .btn-refresh:focus::after {
    width: 100%;
    background: #6c757d ;
}

#program .btn-wrap .btn-refresh:hover span, #program .btn-wrap .btn-refresh:focus span {
    color: #fff
}

#program .btn-wrap .btn-refresh span {
    color: var(--main-color02)
}

#program .btn-wrap .btn-refresh span::before {
    background: url(/template/t008000/images/icon-refresh.png) no-repeat left center;
}

#program .btn-wrap .btn-refresh:hover span::before, #program .btn-refresh:focus span::before {
    background: url(/template/t008000/images/icon-refresh-w.png) no-repeat left center;
}

#program .non-info {
    width: 100%;
    background: url('/template/t008000/images/main-non-board.png') no-repeat center top;
    background-size: 150px;
    border-radius: 50%;
    padding-top: 170px;
    font-size: 17px;
    font-weight: 600;
}

@media(min-width: 992px) {
    #program {
        padding: 15px;
        padding-top: 200px;
        margin: 0;
        margin-bottom: 270px;
        border-bottom-left-radius: 80px;
        max-height: 700px;
    }

    #program .step-wrap {
        flex-direction: row;
        margin: 0 auto 40px;
    }

    #program .step-wrap .step-con {
        height: 480px;
    }

    #program .step-wrap .collapse:not(.show) {
        display: block;
    }

    #program .form-header .btn-link {
        pointer-events: none;
        padding: 40px 0 24px;
    }

    #program .form-header .bi {
        display: none
    }

    #program .step-wrap .form-check:not(.form-switch) label {
        padding: 22px 15px;
        height: auto;
        font-size:19px;
    }

    #program .step-wrap .step-con.step-01 .form-check:not(.form-switch) label {
        padding-left: 80px
    }

    #program .step-wrap .step-con.step-01 .form-check:not(.form-switch) label::after {
        left: 30px;
    }

    #program .btn {
        padding: 17px 40px;
        font-size: 20px;
        width: 170px;
    }

    #program .non-info {
        font-size: 21px;
        background: url('/template/t008000/images/main-non-board.png') no-repeat center top 45px;
        padding-top: 225px;
    }
}

@media(min-width: 1200px) {
    #program .step-wrap .form-check:not(.form-switch) label {
        font-size: 21px;
    }
}

@media(min-width: 1500px) {
    #program {
        margin-bottom: 350px;
        padding: 0 60px;
        padding-top: 235px;
    }

    #program > .main-tit {
        margin-bottom: 50px;
        font-size: 34px;
    }

    #program .step-wrap {
        gap: 40px
    }
}

/* ==============================
* site-link
================================= */
#site-link {
    margin-bottom: 50px
}

.reserve-info {
    margin-bottom: 20px;
}
/* 251117 내용없어 삭제조치 */
.reserve-info {
    display: none;
}

.reserve-info > a {
    position: relative;
    display: block;
    width: fit-content;
    height: 110px;
    margin: 0 auto;
    padding: 30px 50px 30px 155px;
    background: url(/template/t008000/images/site-link-icon.png) no-repeat left center;
    color: var(--main-color02);
    font-family: var(--font-type02);
}

.reserve-info > a .txt {
    position: relative;
    padding-right: 60px;
    font-weight: 700;
}

.reserve-info > a .txt::before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 8px;
    right: 0;
    width: 24px;
    height: 15px;
    background: url(/template/t008000/images/icon-arr.png) no-repeat right center;
    transition: .3s;
}

.reserve-info > a:hover .txt::before, .reserve-info > a:focus .txt::before {
    right: 10px
}

.reserve-info > a .txt strong {
    color: #FF5378
}

.flow-banner {
    position: relative;
    padding: 0 70px;
    display: flex;
    align-items: center;
    width: 100%;
}

.flow-banner .sw-banner .swiper-slide {
    width: auto;
}

.flow-banner .bn-ctl button.prev-btn, .flow-banner .bn-ctl button.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var( --white);
    border-radius: 50%;
    box-shadow: 4px 4px 12px rgba(51,51,51,.12);
    z-index: 10;
    transition: .3s all
}

.flow-banner .bn-ctl button:hover, .flow-banner .bn-ctl button:focus {
    background: var(--gray-color01)
}

.flow-banner .bn-ctl button.prev-btn {
    left: 0;
}

.flow-banner .bn-ctl button.next-btn {
    right: 0
}

.flow-banner .bn-ctl button.prev-btn:before, .flow-banner .bn-ctl button.next-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 9px;
}

.flow-banner .bn-ctl button.prev-btn:before {
    left: calc(50% - 1px);
    background-image: url('/template/t008000/images/program-prev.svg');
}

.flow-banner .bn-ctl button.next-btn:before {
    left: calc(50% + 1px);
    background-image: url('/template/t008000/images/program-next.svg');
}

@media(min-width: 768px) {
    #site-link {
        margin-bottom:64px
    }
}

@media(min-width: 992px) {
    #site-link {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 60px;
    }

    .reserve-info {
        display: flex;
        width: 400px;
        flex-shrink: 0;
        margin: 0;
    }
    /* 251117 내용없어 삭제조치 */
    .reserve-info {
        display: none;
    }

    .reserve-info > a {
        margin: 0;
        padding-right: 40px;
    }

    .reserve-info > a::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 53px;
        background-color: #E9E9E9
    }

    .flow-banner {
        flex: 1;
        /* width: calc(100% - 460px); */
        width: 100%;
    }
}

@media(min-width: 1200px) {
    .flow-banner {
        padding:0 120px;
    }

    .flow-banner .bn-ctl button.prev-btn, .flow-banner .bn-ctl button.next-btn {
        width: 70px;
        height: 70px;
    }
}

/* ==============================
* quick-link
================================= */
#quick-link {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    gap: 20px;
}

.quick-link-con {
    position: relative;
    padding: 30px 36px;
    background: var(--gray-color02);
    border-radius: 24px;
    border-top-right-radius: 100px;
}

.quick-link-con .main-tit {
    position: relative;
    z-index: 2;
    line-height: 1;
}

.quick-link-con::after {
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    width: 178px;
    height: 113px;
    position: absolute;
    top: 40px;
    right: 70px;
}

.quick-link-con.ql-01::after {
    background-image: url(/template/t008000/images/quick-link-bg01.png)
}

.quick-link-con.ql-02:after {
    top: 15px;
    background-image: url(/template/t008000/images/quick-link-bg02.png)
}

.quick-link-inner {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    color: #58668A;
    z-index: 1;
}

.quick-link-inner .list-style01 > li {
    color: #58668A
}

.quick-link-inner .list-style01 > li > a {
    word-break: keep-all;
    display: inline-block;
    width: 100%
}

.qna-wrap .list-style01 > li {
    padding-left: 36px;
}

.qna-wrap .list-style01 > li::after {
    content: 'Q';
    top: 0;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.quick-link-inner .non-info {
    padding: 120px 40px 0px;
    background-position: 50% 0;
    background-size: 150px;
    font-size: 16px;
}
@media(min-width: 768px) {
    #quick-link {
        margin-bottom:80px
    }

    .quick-link-con.ql-01 .list-style01 {
        display: flex;
        flex-wrap: wrap;
    }

    .quick-link-con .list-style01 > li:not(:last-child) {
        margin-bottom: 15px;
    }

    .quick-link-con.ql-01 .list-style01 > li {
        flex: 0 0 50%;
    }

    .quick-link-con.ql-01 .list-style01 > li:nth-last-child(2) {
        margin-bottom: 6px;
    }
}

@media(min-width: 1200px) {
    #quick-link {
        flex-direction:row;
        gap: 50px;
    }

    .quick-link-con {
        flex: 1;
        padding: 48px 36px 30px;
    }

    .quick-link-inner .list-style01 > li > a {
        font-size: 17px;
    }
    .quick-link-inner .non-info {
        padding: 80px 40px 0px;
        background-position: 50% -12px;
        background-size: 110px;
        font-size: 18px;
    }
}

/* ==============================
* news
================================= */
#news {
    margin-bottom: 50px;
}

#news .main-tit {
    display: inline-block
}

.news-list ul {
    border-top: 1px solid #222
}

.news-list ul li {
    position: relative;
    flex: 0 0 50%;
    border-bottom: 1px solid var(--gray-color04)
}

.news-list ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
}

.news-list ul li a .tit {
    flex: 0 0 80%;
    width: 80%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    font-weight: 500;
}

.news-list ul li a .date {
    flex: 0 0 20%;
    width: 20%;
    font-size: 15px;
    color: #999;
    text-align: right;
}

.news-list ul li a .tit .category {
    display: inline-block;
    min-width: 130px;
    margin-right: 10px;
    padding: 5px 10px;
    color: var(--main-color01);
    background: var(--blue-color01);
    border-radius: 50px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
}

@media(min-width: 768px) {
    #news {
        margin-bottom: 75px;
    }
}

@media(min-width: 992px) {
    .news-list ul {
        display: flex;
        flex-wrap: wrap;
    }

    .news-list ul li a {
        padding: 11px 25px;
    }

    .news-list ul li:nth-child(even)::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 15px;
        background-color: #CECECE
    }
}

@media(min-width: 1200px) {
    .news-list ul li a {
        padding: 17px 20px;
        font-size: 19px
    }

    .news-list ul li:nth-child(even)::after {
        left: 0;
    }
}
