/*  edit button */
    button.editable, button.editable-right {
        position: absolute;
        z-index: 19;
        border: solid 1px #fff;
        line-height: 1rem;
        font-size: small;
        font-weight: bold;
        background: rgba(220,53,69,0.8);
    }
    button.editable-right {
        right: 0;
    }

/*  edit-main */
    .new-win-head-title {
        font-weight: bold;
        font-size: large;
        background-color: #f8f9fa;
        color: #343a40;
        border-bottom: solid 1px #dee2e6;
        margin: 0;
        padding: .5rem 1rem;
        line-height: 1em;
        text-shadow: 0px 0px 2px #adb5bd;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .cat-wrap {
        display: flex;
        align-items: center;
    }
    .cat-wrap input {
        margin-right: .2rem
    }
    .cat-wrap span {
        margin-right: 1rem
    }

/*  main-section */
    .main-section {
        padding-top: 50px;
    }

    .pb-100 {
        padding-bottom: 50px
    }

    .gray-bg {
        background-color: rgb(247,247,247);
    }

    .section-header {
        width: 100%;
    }
    .section-header .section-title {
        font-size: 1.35rem;
        line-height: 1.35;
        text-align: center;
        margin-bottom: 2rem;
    }
    .section-header .section-title a {
        text-decoration: none;
        color: #101010;
    }

    @media only screen and (min-width: 576px) {
        .main-section {
            padding-top: 100px;
        }
        .pb-100 {
            padding-bottom: 100px
        }
        .section-header .section-title {
            font-size: 28pt;
            text-align: center;
            margin-bottom: 3rem
        }
    }

/*  carousel */
    .carousel-item {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: 360px;
        position: relative;
    }
    .carousel-item .carousel-content-wrap {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        display: flex;
    }
    .carousel-item .carousel-content {
        padding-top: 3rem;
        padding-left: 10%;
    }
    .carousel-item .carousel-content p {
        margin-bottom: 0;
        font-size: 12pt;
        color: #fff;
        text-shadow: 0px 0px 2px rgba(0,0,0,0.7);
    }
    .carousel-item .carousel-content h2 {
        font-size: 26pt;
        color: #fff;
        text-shadow: 0 0 4px #000;
        margin-left: -5px;
        margin-bottom: 1rem;
    }
    .carousel-item .carousel-content a {
        color: #fff;
    }
    .carousel-item .carousel-content a:hover {
        color: #fff !important;
        background-color: var(--gray-800)
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    @media only screen and (min-width: 576px) {
        .carousel-item .carousel-content {
            padding-left: 20%;
        }

        .carousel-control-prev,
        .carousel-control-next {
            display: flex;
            opacity: 0.7
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            padding: 1.5rem;
        }

        .carousel-item .carousel-content p {
            margin-bottom: 0;
            font-size: 15pt;
        }
        .carousel-item .carousel-content h2 {
            font-size: 38pt;
            margin-left: -5px;
            margin-bottom: 3rem
        }

        .carousel-item .carousel-content-wrap {
            align-items: center;
        }
    }

/*  common */
    .img-box {
        position: relative;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transition: all .5s;
        height: 180px
    }

    .overlay {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0,0,0,0.6);
        width: 100%;
        height: 180px;
        padding: 1rem;
        padding-bottom: 0;
        transition: all .5s;
    }

    .cat-title {
        padding: 0;
        list-style: none;
        display: flex;
        justify-content: center;
    }
    .cat-title li {
        font-size: 9pt;
        padding: 0 .3rem;
        font-weight: 700;
        color: var(--gray-500)
    }
    .cat-title li:hover {
        cursor: pointer;
        color: var(--gray-600)
    }
    .cat-title li.active {
        color: var(--gray-900)
    }

    .cont-box {
        padding: 1rem 0
    }
    .cont-box .-category {
        font-size: 9pt;
        margin-bottom: .3rem
    }
    .cont-box .-title {
        font-size: 12pt;
        font-weight: 700;
        line-height: 1.4;
        word-break: keep-all;
        margin-bottom: .5rem
    }

    @media only screen and (min-width: 576px) {
        .cat-title {
            justify-content: center;
        }
        .cat-title li {
            font-size: 14pt;
            padding: 0 1rem;
        }
        .img-box, .overlay {
            height: 220px
        }
        .cont-box .-category {
            font-size: 11pt;
            margin-bottom: .5rem
        }
        .cont-box .-title {
             font-size: 16pt;
        }
    }

/*  h-list */
    .h-list {
        flex-wrap: nowrap;
        overflow-y: hidden
    }
    .h-list .item {
        overflow: hidden;
        min-width: 90%;
    }
    .h-list .item .overlay {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .h-list .item:hover .img-box {
        /*transform: scale(1.1);*/
    }
    .h-list .item:hover .overlay {
        background-color: rgba(0,0,0,0.1);
    }
    .h-list .item .-category {
        font-size: 0.8rem;
        color: #fff;
        margin-bottom: .5rem
    }
    .h-list .item .-title {
        color: #fff;
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.35;
        word-break: keep-all;
    }

    @media only screen and (min-width: 576px) {
        .h-list .item {
            min-width: auto
        }
        .h-list .item .overlay {
            height: 220px
        }
        .h-list .item .-category {
            font-size: 1rem
        }
        .h-list .item .-title {
            font-size: 1.35rem;
        }
    }

/*  h-list-seminar */
    .h-list-seminar {
        flex-wrap: nowrap;
        overflow-y: hidden
    }
    .h-list-seminar .item {
        overflow: hidden;
        min-width: 90%;
    }
    .h-list-seminar .img-box {
        position: relative;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .h-list-seminar .img-box .-status {
        position: absolute;
        right: 0;
        background-color: var(--red);
        color: #fff;
        padding: .5rem 1rem
    }
    .h-list-seminar .img-box .-status.-expired {
        background-color: #000
    }

    .h-list-seminar .cont-box {
        padding: 1rem;
    }
    .h-list-seminar .cont-box .-title {
        font-size: 14pt;
        line-height: 1.2;
        word-break: keep-all;
        margin-bottom: .5rem
    }
    .h-list-seminar .cont-box .-abstract {
        color: var(--gray-600);
        font-size: 11pt;
        line-height: 1.5;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
    .h-list-seminar .cont-box .-when {
        font-weight: 700;
        font-size: 12pt
    }
    .h-list-seminar .cont-box .-countdown {
        color: var(--red);
        margin-right: .5rem
    }

    @media only screen and (min-width: 576px) {
        .h-list-seminar .item {
            min-width: auto
        }
        .h-list-seminar .img-box {
            height: 360px
        }
        .h-list-seminar .cont-box .-title {
            font-size: 20pt;
        }
        .h-list-seminar .cont-box .-when {
            font-size: 14pt
        }
    }

/*  recommend-program */
    .recommend-program {
        flex-wrap: wrap;
    }
    .recommend-program .item {
        overflow: hidden;
        min-width: 50%;
        margin-bottom: 2rem
    }
    .recommend-program .item .overlay {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .recommend-program .item:hover .overlay {
        background-color: rgba(0,0,0,0.1);
    }
    .recommend-program .item:hover .img-box {
        /*transform: scale(1.1);*/
    }
    .recommend-program .item .-category {
        font-size: 0.8rem;
        color: #fff;
        margin-bottom: .5rem
    }
    .recommend-program .item .-title {
        color: #fff;
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.35;
        word-break: keep-all;
    }

    @media only screen and (min-width: 768px) {
        .recommend-program .item {
            min-width: auto;
        }
    }

/*  review-list */
    .review-list {
        flex-wrap: nowrap;
        overflow-y: hidden;
        padding-bottom: 2rem
    }
    .review-list .item {
        overflow: hidden;
        margin-bottom: 1rem;
        min-width: 90%;
    }
    .review-list .review-text {
        height: 400px;
        overflow-y: auto;
    }
    .review-list .review-text-cont-box {
        background-color: #fff;
        padding: 1rem;
    }
    .review-list .review-text a {
        display: block;
        border-bottom: solid 1px var(--gray-200);
        margin-bottom: 1rem
    }
    .review-list .review-text .-date {
        font-size: 11px;
        color: #acacac;
        margin-bottom: 5px
    }
    .review-list .review-text .-title {
        line-height: 1.4
    }
    .review-list .review-text .-title:last-child {
        border-bottom: none;
        padding-bottom: 0
    }
    .review-list .img-box {
        position: relative;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .review-list .cont-box {
        background-color: #fff;
        padding: 1rem;
    }
    .review-list .tag-box {
        padding: 0;
        align-items: flex-start;
    }

    .my-school-list .cont-box {
        padding: 1rem 0
    }

    .main-section h4 {
        font-size: 11pt;
        font-weight: 700
    }

    @media only screen and (min-width: 576px) {
        .review-list .item {
            min-width: 45%
        }
        .review-list .img-box {
            height: 260px;
        }
        .review-list .review-text {
            height: 480px
        }

        .my-school-list .img-box {
            height: 360px
        }
        .my-school-list .cont-box .-category {
            margin-bottom: 0
        }
        .my-school-list .cont-box .-title {
            margin-bottom: .5rem
        }
        .my-school-list .tag-box {
            padding: 0;
            min-height: auto
        }
    }

    @media only screen and (min-width: 768px) {
        .review-list .item {
            min-width: 30%
        }
    }

    @media only screen and (min-width: 992px) {
        .review-list .item {
            min-width: auto
        }
    }

/*  banner */
    .banner-wrap {
        overflow: hidden;
    }
    .banner {
        position: relative;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transition: all .5s;
    }
    .banner .overlay {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(0,0,0,0.6);
        width: 100%;
        height: 80px;
        padding: 1rem;
        padding-bottom: 0;
        transition: all .5s;
    }
    .banner:hover {
        /*transform: scale(1.1);*/
    }
    .banner:hover .overlay {
        background-color: rgba(0,0,0,0.1);
    }
    .banner .-title {
        color: #fff;
        font-size: 1rem;
        margin: 0;
    }
    .banner .-more {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.7);
    }
    .banner .-category {
        display: none;
    }

    @media only screen and (min-width: 576px) {
        .banner .overlay {
            height: 220px;
        }
        .banner .-more {
            display: none;
        }
        .banner .-category {
            display: block;
            color: #fff;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0
        }
        .banner .-title {
            font-size: 2rem;
        }
    }

/*  story-list */
    .story-list {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-y: hidden;
        position: relative;
    }
    .story-list .prev,
    .story-list .next {
        display: none;
    }
    .story-list .img-box {
        width: 100%;
        height: auto;
    }
    .story-list .story-1d {
        flex: 1 0 90%;
        display: flex;
    }
    .story-list .story-1d .overlay {
        width: 100%;
        height: 340px;
        flex-direction: column;
    }
    .story-list .story-2d .overlay {
        height: 170px
    }
    .story-list .story-2d {
        flex: 1 0 90%;
    }
    .story-list .-title {
        color: #fff;
        font-size: 12pt;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
        word-break: keep-all;
        margin: 0 2rem;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
    .story-list .-abstract {
        display: none;
    }
    .story-list .img-box:hover {
        /*transform: scale(1.1);*/
    }
    .story-list .overlay:hover {
        background-color: rgba(0,0,0,0.1);
    }

    .story-btn {
        text-align: center;
    }
    .story-btn a {
        width: 100%;
        padding: .5rem
    }

    @media (min-width: 576px) {
        .story-list {
            overflow: hidden
        }
        .story-list .next {
            display: block;
        }
        .story-list .next,
        .story-list .prev {
            position: absolute;
            top: calc(50% - 25px);
            right: calc(10% - 25px);
            z-index: 3;
            background-color: rgba(255,255,255,0.6);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            line-height: 50px;
            text-align: center;
            font-size: 16pt
        }
        .story-list .next:hover,
        .story-list .prev:hover {
            background-color: rgba(255,255,255,1);
            cursor: pointer;
        }

        .story-list .story-1d,
        .story-list .story-2d {
            flex: 1 0 30%;
        }
        .story-list .story-1d .overlay {
            height: 520px;
        }
        .story-list .story-2d .overlay {
            height: 260px
        }

        .story-list .-title {
            font-size: 12pt;
            margin: 0 .2rem;
        }
        .story-list .-abstract {
            color: #fff;
            font-size: 0.9rem;
            margin: 1rem .2rem;
            word-break: break-all;
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
        }

        .story-btn {
            margin-top: 2rem;
        }
        .story-btn a {
            width: 50%;
            padding: 1rem
        }
    }

    @media (min-width: 768px) {
        .story-list .-title {
            font-size: 16pt;
        }
    }

    @media (min-width: 992px) {
        .story-list .-title {
            margin: 0 2rem;
        }
        .story-list .-abstract {
            margin: 1rem 2rem;
        }
    }

    /*

    @media (min-width: 768px) {
        .story-list .story-1d,
        .story-list .story-2d {
            flex: 1 0 45%;
        }
    }*/

/*  tag-box */
    .tag-box {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        background-color: #fff;
        padding: 1rem
    }

/*  major-list */
    .major-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        overflow-y: hidden;
    }
    .major-list::-webkit-scrollbar {
        width: 2px;
        height: 2px
    }
    .major-list::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    .major-list::-webkit-scrollbar-thumb {
        background: #888;
    }
    .major-list::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .major-list li {
        padding: .5rem;
    }
    .major-list li a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .major-list li .img-box {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        transition: all .5s;
    }
    .major-list li .major-name {
        text-transform: uppercase;
        font-size: 12px;
        font-stretch: normal;
        font-weight: bold;
        color: var(--gray-700);
        letter-spacing: -0.5px;
        line-height: 1.2;
        text-align: center;
        margin-top: 1rem;
        margin-bottom: .5rem
    }
    .major-list li .major-name-ko {
        font-size: 22px;
        font-weight: bold;
        line-height: 1.2;
        text-align: center;
    }
    .major-list li a:hover .img-box {
        /*transform: scale(1.1);*/
    }
    .major-list li a:hover .major-name {
        color: red
    }

    @media (min-width: 576px) {
        .major-list {
            justify-content: space-between;
        }
        .major-list li {
            /*margin-bottom: 80px*/
        }
    }


/*  special-offer */
    .special-offer {
        flex-wrap: wrap;
    }
    .special-offer .item {
        min-width: 50%
    }

    .expired-at {
        color: red;
        font-weight: bold;
        margin-right: 1rem
    }
    .expired-already {
        color: var(--gray-600);
        margin-right: 1rem
    }

    @media (min-width: 768px) {
        .special-offer .item {
            min-width: auto
        }
    }

/*  process-review */
    .process-review h4 span {
        color: var(--red)
    }
    .process-review .pr-cont {
        display: flex;
        overflow-x: auto;
        margin-left: -15px;
        margin-right: -15px;
    }
    .process-review .pr-cont .item {
        min-width: 90%;
        max-height: 460px;
        padding-right: 15px;
        padding-left: 15px
    }
    .process-review .pr-txt .pr-cont {
        overflow: hidden;
    }
    .process-review .pr-txt .pr-cont .cont-box {
        overflow-x: auto;
    }
    .process-review .col-lg {
        margin-bottom: 2rem
    }
    .process-review .pr-cont .cont-box {
        background-color: #fff;
        padding: 0;
        height: 100%;
    }
    .process-review .pr-img .pr-cont .cont-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .process-review .pr-cont .tag-box {
        min-height: auto;
        padding-top: 0
    }
    .process-review .pr-cont a.-title {
        display: block;
        padding: 1rem;
        line-height: 1.4
    }
    .process-review .pr-txt .cont-box {
        padding: 1rem
    }
    .process-review .pr-txt .-date {
        color: var(--gray-500);
        font-size: small;
        margin-bottom: 0
    }
    .process-review .pr-txt .-title {
        font-weight: normal;
        display: block;
        border-bottom: solid 1px var(--gray-200);
        padding-bottom: 1rem
    }
    .process-review .pr-txt .cont-box a:last-child .-title {
        border-bottom: none;
        padding-bottom: 0
    }

    @media (min-width: 576px) {
        .process-review {
            padding-bottom: 50px
        }
        .process-review h4 {
            font-size: 16pt
        }
        .process-review .pr-cont .item {
            min-width: auto;
            flex: 1 1 50%;
        }
        .process-review .pr-cont .-title {
            font-size: 12pt
        }
    }

    @media (min-width: 992px) {
        .process-review .pr-cont .item {
            height: 460px
        }
        .process-review .pr-img {
            flex-basis: 66.66666%
        }
        .process-review .pr-txt {
            flex-basis: 33.33333%
        }
        .process-review .pr-img .-title {
            font-size: 16pt
        }
    }