/* 팝업 ============================================================================ */
.pop-parent {
    position: fixed;
    z-index: 9999999;
    transition: all 0.2s;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
}

.pop-parent.active {
    display: none;
}

.pop-parent .pop {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
}

.pop-parent .m-ratioBox-wrap {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.pop-parent .m-ratioBox-wrap .m-ratioBox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.pop-parent .m-ratioBox-wrap img {
    display: block;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}

.pop-parent .m-ratioBox-wrap iframe {
    width: 105%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}

.pop-parent .swiper {
    overflow: visible;
}

.pop-parent .swiper-container {
    overflow: visible;
    padding-bottom: 40px;
}

.pop-parent .swiper-pagination {
    display: flex;
}

.pop-parent .pop .btn-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    background-color: black;
    cursor: pointer;
}

.pop-parent .pop .btn-toggle img {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transition: all 0.3s;
}

.pop-parent .pop-btns {
    display: flex;
    background-color: #3c3c3c;
    opacity: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    justify-content: space-between;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow: hidden;
    z-index: 33;
}

.pop-parent .pop-btns a {
    color: #fff;
    padding: 7px 14px;
}

.pop-parent .pop-btns #oneday_check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.pop-parent .pop-btns #oneday_check + label {
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.pop-parent .pop-btns #oneday_check + label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border: 1px solid #fff;
}

.pop-parent .pop-btns #oneday_check:checked + label .icon {
    position: absolute;
    left: 7px;
    top: 7px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("/images/check_checked.png") no-repeat center center;
}

.pop-parent .pop .swiper-btn-control {
    width: 8px;
    height: 11px;
    margin-left: 16px;
    position: relative;
    top: 2px;
}

.pop-parent .swiper-control {
    display: flex;
    align-items: center;
    position: absolute;
    top: 21px;
    right: 20px;
    z-index: 2;
}

.pop-parent .swiper-control .swiper-pagination {
    display: none;
}

.pop-parent .swiper-pagination-bullet {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 0;
    border: 1px solid white;
    opacity: 0.5;
    background-color: transparent;
}

.pop-parent .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}

.pop-parent.active .btn-toggle {
    transform: rotate(180deg);
}

@media screen and (max-width: 1200px) {
    .pop-parent .pop {
        width: 310px;
    }
}

/* 공통 */

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1480px;
    padding: 0 20px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- 버튼 */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    height: 56px;
    line-height: 56px;
    font-size: 17px;
    font-weight: bold;
    white-space: nowrap;
}

.btn-between {
    justify-content: space-between;
}

.btn-group {
    display: flex;
    align-items: center;
}

.btn-active {
    max-width: 280px;
    background-color: #e4e4e4;
    color: #aeaeae;
}

.btn-active.active {
    background-color: #496781;
    color: #fff;
}

.btn-active:hover {
    background-color: #496781;
    color: #fff;
    transition: 0.3s;
}

.active-type2:hover {
    border: 1px solid #496781;
}

.active-type2:hover i {
    color: #fff;
}

.btn-outline-default {
    border: 1px solid #202020;
    background-color: #fff;
}

.btn-more {
    justify-content: space-between;
    max-width: 187px;
    padding: 0 26px;
}

.btn-more i {
    font-size: 19px;
    color: #202020;
}

.btn-card {
    justify-content: space-between;
    max-width: 128px;
    padding: 0 16px;
}

.btn-card i {
    font-size: 19px;
    color: #202020;
}

@media screen and (max-width: 768px) {
    .btn-outline-default {
        background-color: #496781;
        color: #fff;
        border: unset;
    }

    .btn-outline-default i {
        color: #fff;
    }

    .card-type4 .btn-card {
        height: 35px;
        line-height: 35px;
    }
}

.list-group {
    display: flex;
    flex-direction: column;
}

.card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
}

.card .fluid-img-wrap {
    background-color: #f5f5f5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 50%;
}

.symbol-img-wrap {
    background-image: url("/images/bg-symbol.png");
}

.symbol-img-wrap.hide-background {
    background-image: none;
}

.symbol-img-wrap img {
    display: none;
}

.symbol-img-wrap.show-image img {
    display: block;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-wrap {
    position: relative;
}

.search-input {
    width: 344px;
    border: solid 1px #1d1d1d;
    height: 52px;
    padding: 0 16px;
    font-size: 17px;
    background-color: #fff;
    padding-right: 40px;
}

.search-input::placeholder {
    color: #aeaeae;
}

.search-btn {
    position: absolute;
    font-size: 20px;
    color: #1d1e1e;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

select {
    border: solid 1px #1d1d1d;
    width: 168px;
    height: 52px;
    padding: 0 16px;
    outline: unset;
    font-size: 17px;
    font-weight: 300;
    color: #1d1e1e;
}

.search-input-wrap select {
    -webkit-appearance: none;
    /* for chrome */
    -moz-appearance: none;
    /*for firefox*/
    appearance: none;
    background: transparent;
    background: url("/images/down-arrow-50.png") no-repeat 90% 50%/15px auto;
}

@media screen and (max-width: 1080px) {
    .search-wrap {
        width: 100%;
    }

    .search-input {
        width: 100%;
        height: 50px;
        padding: 0 10px;
    }

    select {
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    select {
        width: 100%;
        max-width: 76px;
        font-size: 15px;
        padding: 0 5px;
    }
    .search-input::placeholder {
        font-size: 15px;
    }
    .search-input-wrap {
        gap: 8px;
    }
    .search-input {
        padding-right: 40px;
    }

    .search-input-wrap select {
        background: url(/images/down-arrow-50.png) no-repeat 95% 50%/13px auto;
    }
}

.sectionTitle {
    position: relative;
    /* font-family: "Tenada , sans-serif"; */
    font-size: 40px;
    font-weight: 800;
    color: #202020;
    padding-left: 20px;
}

.sectionTitle::before {
    position: absolute;
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    background-color: #496781;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-body .btn-group {
    gap: 8px;
}

/* 카드  */

/* ---- members card-type2 */

.card-type1 {
    max-width: 400px;
}

.card-type1 .fluid-img-wrap::before {
    padding-top: 135%;
}

.card-type1 .card-body.top {
    position: relative;
    margin-top: 40px;
    margin-bottom: 24px;
    padding-left: 20px;
}

.card-type1 .card-body.top::before {
    position: absolute;
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    background-color: #496781;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.card-type1 .card-body.top .card-text {
    font-size: 20px;
    font-weight: 300;
    color: #aeaeae;
    margin-bottom: 8px;
}

.card-type1 .card-body.top .card-title {
    font-size: 40px;
    font-weight: bold;
    color: #202020;
}

.card-type1 .infoListGroup {
    padding-bottom: unset;
    border-bottom: unset;
    margin-bottom: 40px;
}

@media screen and (max-width: 1080px) {
    .card-type1 .card-body.top {
        margin-top: 30px;
        padding-left: 16px;
        margin-bottom: 20px;
    }

    .card-type1 .card-body.top .card-text {
        font-size: 15px;
    }

    .card-type1 .card-body.top .card-title {
        font-size: 28px;
    }

    .card-type1 .infoListGroup {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .card-type1 .card-body.top .card-title {
        font-size: 24px;
    }
}
/* ---- members card-type2 */

.card-type2 {
    max-width: 330px;
}

.card-type2 .fluid-img-wrap::before {
    /* padding-top: 24.41%; */
}

.card-type2 .card-body {
    padding-top: 24px;
}

.card-type2 .card-body.top {
    padding-bottom: 21px;
}

.card-type2 .card-body.top .card-text {
    font-size: 17px;
    font-weight: 300;
    color: #aeaeae;
    margin-bottom: 8px;
}

.card-type2 .card-body.top .card-title {
    font-size: 30px;
    font-weight: bold;
    color: #202020;
}

.card-type2 .card-body.btm .card-title {
    font-size: 18px;
    font-weight: bold;
    color: #202020;
    margin-bottom: 16px;
}

@media screen and (max-width: 1080px) {
    .card-type2 {
        max-width: unset;
    }

    .card-type2 .inner-wrap {
        display: flex;
        gap: 16px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e4e4e4;
        align-items: start;
    }

    .card-type2 .dep-inner-wrap {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        justify-content: space-between;
    }

    .card-type2 .fluid-img-wrap {
        width: 30%;
        min-width: 105px;
        min-height: 130px;
    }

    .card-type2 .infoListGroup {
        border: unset;
        padding-bottom: unset;
    }

    .card-type2 .card-body.top .card-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .card-type2 .card-body.top .card-title {
        font-size: 24px;
    }

    .card-type2 .card-body.btm .card-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* ----  card-type3 */

.card-type3 {
    max-width: 330px;
}

.card-type3 .fluid-img-wrap::before {
    /* padding-top: 24.41%; */
}

.card-type3 .card-body.top {
    padding: 24px 0 14px;
}

.card-type3 .card-body.top .card-text {
    font-size: 17px;
    font-weight: 300;
    color: #aeaeae;
    margin-bottom: 8px;
}

.card-type3 .card-body.top .card-title {
    font-size: 32px;
    font-weight: bold;
    color: #202020;
}

.card-type3 .infoListGroup {
    padding-bottom: 18px;
    margin-bottom: 24px;
    gap: 24px;
}

.card-type3 .infoListGroup .list-group-item {
    gap: 16px;
}

.card-type3 .alumni-list-group {
    padding-bottom: unset;
    border-bottom: unset;
}

.card-type3 .alumni-list-group .item-title {
    font-size: 17px;
    font-weight: bold;
    color: #202020;
    min-width: unset;
}

@media screen and (max-width: 1090px) {
    .card-type3 .card-body.top .card-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .card-type3 .card-body.top {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .card-type3 .card-body.top .card-text {
        font-size: 15px;
    }
    .card-type3 .card-body.top .card-title {
        font-size: 28px;
    }
    .card-type3 .alumni-list-group .item-title {
        font-size: 14px;
    }
    .card-type3 .alumni-list-group {
        gap: 16px;
        margin-bottom: unset;
    }

    .card-type3:last-child .alumni-list-group {
        margin-bottom: 30px;
    }
}
/* ----  card-type4 */

.card-type4 {
    max-width: 453px;
    border: 1px solid #e4e4e4;
}

.card-type4 .fluid-img-wrap {
    border: unset;
}

.card-type4 .fluid-img-wrap::before {
    padding-top: 61.82%;
}

.card-type4 .card-body {
    padding: 24px;
}

.card-type4 .card-body .card-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.card-type4 .card-body .card-text {
    font-size: 16px;
    font-weight: 300;
    color: #aeaeae;
    margin-top: 16px;
}

.card-type4 .btn-card {
    max-width: 140px;
    height: 40px;
    font-size: 14px;
}

.card-type4 .btn-card i {
    font-size: 16px;
}

.card-type4 .card-txt {
    font-size: 16px;
    font-weight: 300;
    color: #333;
    line-height: 1.5;
    margin-top: 16px;
}

@media screen and (max-width: 768px) {
    .card-type4 {
        border: unset;
    }

    .card-type4:not(:last-child) {
        border-bottom: 1px solid #e4e4e4;
    }

    .card-type4 .card-body {
        padding: 20px;
        padding-left: unset;
    }

    .card-type4 .btn-card-body {
        padding: unset;
    }

    .card-type4 .card-body .card-title {
        font-size: 20px;
    }

    .card-type4 .card-txt {
        font-size: 14px;
        line-height: 1.43;
    }
    .card-type4 .btn-group {
        margin: 10px 0 30px;
    }
    .card-type4:last-child .btn-group {
        margin-bottom: 20px;
    }
}

/* ----  card-type5 */

.card-type5 {
    max-width: 342px;
    cursor: pointer;
    border: 1px solid #e4e4e4;
}

.card-type5 .fluid-img-wrap {
    border: unset;
}

.card-type5 .fluid-img-wrap::before {
    padding-top: 100%;
}

.card-type5 .card-body {
    padding: 18px;
}

.card-type5 .card-body .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.card-type5 .card-body .card-date {
    font-size: 11px;
    font-weight: 300;
    color: #aeaeae;
    margin-top: 8px;
}

.card-type5 .dark-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.card-type5 .dark-bg .icon-wrap {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-type5 .dark-bg i {
    font-size: 34px;
    color: #fff;
}

.card-type5:hover .dark-bg {
    display: flex;
}

@media screen and (max-width: 1080px) {
    .card-type5 .card-body {
        padding: unset;
        margin-top: 20px;
    }

    .card-type5 .card-body .card-date {
        font-size: 14px;
        margin-top: 10px;
    }
}

/* ----  card-type6 */

.card-type6 {
    max-width: 330px;
}
.card-type6 .fluid-img-wrap img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.card-type6 .fluid-img-wrap::before {
    padding-top: 95.16%;
}

.card-type6 .card-body.top {
    padding: 24px 0;
    border-bottom: 1px solid #e4e4e4;
}

.card-type6 .card-body.top .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #202020;
}

.ws-list-group {
    padding-top: 24px;
    gap: 8px;
}

.ws-list-group .mark-text {
    font-size: 17px;
    font-weight: 300;
}

@media screen and (max-width: 1080px) {
    .card-type6 .card-body.top {
        padding: 20px 0;
    }

    .card-type6 .card-body.top .card-title {
        font-size: 20px;
    }

    .ws-list-group {
        padding-top: 20px;
        gap: 16px;
    }

    .ws-list-group .mark-text {
        font-size: 14px;
    }
}

/* ----  card-type7 */

.card-type7 {
    max-width: 330px;
}

.card-type7.fluid-img-wrap::before {
    padding-top: 95.16%;
}

.card-type7 .card-body {
    padding-top: 24px;
    text-align: center;
}

.card-type7 .card-body .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #202020;
}

.card-type7 .card-body .card-txt {
    font-size: 17px;
    font-weight: 300;
    color: #333;
    line-height: 1.65;
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    .card-type7 .card-body .card-title {
        font-size: 20px;
    }

    .card-type7 .card-body {
        padding-top: 20px;
    }

    .card-type7 .card-body .card-txt {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.43;
    }
}
/* ----  card-type8 */

.card-type8 {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 24px;
    border: 1px solid #e4e4e4;
}

.card-type8:hover {
    border: solid 1px #496781;
    background-color: #f5f5f5;
}

.card-type8 .fluid-img-wrap {
    max-width: 136px;
    width: 136px;
    min-width: 136px;
    min-height: 190px;
    border: 1px solid #e4e4e4;
}

.card-type8 .card-type-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.card-type8 .card-type-wrap .card-num {
    margin-bottom: unset;
}

.card-type8 .card-type {
    font-size: 17px;
    font-weight: bold;
    color: #496781;
}

.card-type8 .card-num {
    font-size: 16px;
    font-weight: 500;
    color: #aeaeae;
    margin-bottom: 8px;
}

.card-type8 .card-title {
    font-size: 18px;
    font-weight: bold;
    color: #202020;
    margin-bottom: 24px;
}

.card-type8 .detailListGroup {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.card-type8 .detailListGroup .list-group-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.card-type8 .detailListGroup .item-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-type8 .detailListGroup .detail-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-type8 .detailListGroup .title-icon {
    width: 16px;
    color: #aeaeae;
}

.card-type8 .detailListGroup .title {
    font-size: 16px;
    font-weight: 500;
    color: #aeaeae;
}

.card-type8 .detailListGroup .detail-info {
    font-size: 16px;
    font-weight: 300;
    color: #202020;
    word-break: keep-all;
    line-height: 1.33;
}

.card-type8 .btn {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #202020;
}

.card-type8 .btn-card {
    max-width: 112px;
}

.card-type8 .btn-card i {
    font-size: 16px;
    color: #202020;
}

.card-type8:hover .btn {
    color: #fff;
}

.card-type8:hover .btn-card i {
    color: #fff;
}

.card-type8:hover .btn-outline-default {
    border: 1px solid #496781;
    background-color: #496781;
}

@media screen and (max-width: 768px) {
    .card-type8 {
        flex-direction: column;
        border: unset;
        padding: unset;
        padding-bottom: 30px;
        gap: 20px;
    }

    .card-type8:not(:last-child) {
        border-bottom: 1px solid #e4e4e4;
    }

    .card-type8:hover {
        border: unset;
        border-bottom: 1px solid #e4e4e4;
        background-color: #fff;
    }

    .card-type8 .btn,
    .card-type8 .btn i {
        color: #fff;
    }

    .card-type8:hover .btn-outline-default {
        border: unset;
    }

    .card-type8 .card-num {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .card-type8 .card-title {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.33;
        margin-bottom: 30px;
    }

    .card-type8 .detailListGroup .list-group-item {
        flex-direction: column;
        gap: 16px;
        align-items: start;
    }

    .card-type8 .detailListGroup .title-icon {
        font-size: 16px;
    }
    .card-type8 .detailListGroup .title {
        font-size: 14px;
    }
    .card-type8 .detailListGroup .detail-info {
        font-size: 14px;
    }

    .card-type8 .detailListGroup {
        margin-bottom: 40px;
    }
    .card-type8 .btn {
        height: 35px;
        line-height: 35px;
    }
    .card-type8 .btn-card i {
        font-size: 15px;
    }

    .card-type8 .fluid-img-wrap {
        max-width: unset;
        width: 100%;
        min-height: 469px;
    }

    .card-type8 .detailListGroup .item-detail {
        align-items: baseline;
    }

    .booksSection .card-type8 .detail-title {
        gap: 6px;
    }
}
/* ----  card-type9 */

.card-type9 {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 24px;
    border: 1px solid #e4e4e4;
}

.card-type9 .card-type-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.card-type9 .card-type-wrap .card-num {
    margin-bottom: unset;
}

.card-type9 .card-type {
    font-size: 16px;
    font-weight: 500;
    color: #496781;
}

.card-type9 .card-num {
    font-size: 16px;
    font-weight: 500;
    color: #aeaeae;
    margin-bottom: 8px;
}

.card-type9 .card-title {
    font-size: 18px;
    font-weight: bold;
    color: #202020;
    margin-bottom: 24px;
    line-height: 1.33;
}

.card-type9 .detailListGroup {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.card-type9 .detailListGroup .list-group-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.card-type9 .detailListGroup .item-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-type9 .detailListGroup .detail-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-type9 .detailListGroup .title-icon {
    font-size: 19px;
    color: #aeaeae;
}

.card-type9 .detailListGroup .title {
    font-size: 16px;
    font-weight: 500;
    color: #aeaeae;
}

.card-type9 .detailListGroup .detail-info {
    font-size: 16px;
    font-weight: 300;
    color: #202020;
}

.card-type9 .btn {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #202020;
    margin-top: 24px;
}

.card-type9 .btn-card {
    max-width: 154px;
}

.card-type9 .btn-card i {
    font-size: 16px;
    color: #202020;
}

/* .card-type9-1 .detailListGroup {
    margin-bottom: unset;
} */

@media screen and (max-width: 874px) {
    .card-type9 .detailListGroup .list-group-item,
    .card-type9 .detailListGroup {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .card-type9 {
        padding: unset;
        border: unset;
    }

    .card-type9:not(:last-child) {
        border-bottom: 1px solid #e4e4e4;
        padding-bottom: 30px;
    }

    .card-type9 .detailListGroup,
    .card-type9 .detailListGroup .list-group-item {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }

    .card-type9 .btn,
    .card-type9 .btn i {
        color: #fff;
    }

    .card-type9 .card-type-wrap {
        margin-bottom: 10px;
        gap: 16px;
    }
    .card-type9 .card-num,
    .card-type9 .card-type,
    .card-type9 .detailListGroup .title,
    .card-type9 .detailListGroup .detail-info {
        font-size: 14px;
    }

    .card-type9 .card-title {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .card-type9 .detailListGroup .title-icon {
        font-size: 16px;
    }
}

/* researchBox */

.researchBoxSection {
    position: relative;
    margin-bottom: 120px;
}

.researchBox {
    background-color: #f5f5f5;
}

.researchBox .deco-img {
    position: absolute;
    max-width: 282px;
    top: 42px;
    left: 82px;
}

.researchBox .deco-img2 {
    position: absolute;
    max-width: 307px;
    bottom: -45%;
    right: 0;
}

.researchBox .container {
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 132px;
}

.researchBox .fluid-img-wrap {
    width: 100%;
    max-width: 560px;
}

.researchBox .fluid-img-wrap img {
    border-radius: 40px;
}
.researchBox .content-wrap {
    width: 100%;
}

.researchBox .sub-title {
    font-size: 20px;
    font-weight: bold;
    color: #496781;
    margin-bottom: 32px;
}

.researchBox .box-title {
    /* font-family: "Tenada , sans-serif"; */
    font-size: 40px;
    font-weight: 800;
    color: #202020;
    margin-bottom: 35px;
}

.researchBox .info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.researchBox .info-list-item {
    position: relative;
    padding-left: 16px;
}

.researchBox .info-list-item::before {
    position: absolute;
    content: "";
    display: block;
    width: 2px;
    height: 90%;
    background-color: #202020;
    top: 0;
    left: 0;
    transform: rotate(20deg);
}

.researchBox .item-txt {
    font-size: 17px;
    font-weight: 300;
    color: #202020;
}

@media screen and (max-width: 1280px) {
    .researchBox .container {
        gap: 64px;
    }
}

@media screen and (max-width: 1080px) {
    .researchBoxSection {
        margin-bottom: 60px;
    }

    .sectionTitle {
        font-size: 28px;
        padding-left: 16px;
    }

    .researchBox .container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .researchBox .deco-img {
        min-width: 104px;
        max-width: 38%;
        top: 0;
        left: -40px;
    }

    .researchBox .deco-img2 {
        display: none;
    }

    .researchBox .fluid-img-wrap {
        max-width: 320px;
    }

    .researchBox .sub-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .researchBox .box-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .researchBox .item-txt {
        font-size: 14px;
        line-height: 1.71;
    }

    .researchBox .info-list-item::before {
        height: 100%;
        max-height: 15.7px;
    }
    .researchBox .info-list-item {
        padding-left: 9.3px;
    }
}

@media screen and (max-width: 768px) {
    .researchBox .fluid-img-wrap {
        max-width: 260px;
    }
}

/* //// */

.infoListGroup {
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e4e4e4;
}

.infoListGroup .list-group-item {
    display: flex;
    align-items: center;
    gap: 22px;
}

.infoListGroup .item-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.infoListGroup .icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infoListGroup .icon-wrap i {
    font-size: 17px;
    color: #333;
}

.infoListGroup .item-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    min-width: 48px;
}

.infoListGroup .item-content {
    font-size: 17px;
    font-weight: 300;
    color: #333;
}

@media screen and (max-width: 1080px) {
    .infoListGroup .list-group-item {
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .infoListGroup .icon-wrap {
        width: 24px;
        height: 24px;
    }
    .infoListGroup .icon-wrap i {
        font-size: 15px;
    }
}

.researchListGroup {
    gap: 8px;
}

.researchListGroup .mark-wrap {
    display: flex;
    align-items: center;
}

.researchListGroup .mark {
    font-size: 18px;
    color: #333;
}

.researchListGroup .mark-text {
    font-size: 17px;
    font-weight: 300;
    color: #333;
}

/* 서브 탑 메뉴 */
.sub-nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 32px;
    text-align: center;
    width: 100%;
    height: 64px;
    margin-top: -64px;
    z-index: 99;
    background-color: #fff;
    border-bottom: 1px solid #e4e4e4;
    box-sizing: content-box;
}

.sub-nav-wrap .container {
    padding: unset;
}

.sub-top-nav * {
    transition: 0.2s;
}

.sub-top-nav .container {
    display: flex;
    padding: 0;
}

.sub-top-nav .container > * {
    border-right: 1px solid #e4e4e4;
}

.sub-top-nav .home-btn {
    width: 64px;
    height: 64px;
    text-align: center;
    background-color: #496781;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 0;
}

.sub-top-gnb-wrap {
    position: relative;
}

.sub-top-gnb-default {
    width: 360px;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 4px;
}

.sub-top-gnb-default * {
    font-size: 18px;
    color: #202020;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.sub-top-gnb {
    display: none;
}

.sub-top-gnb-list {
    position: absolute;
    width: 100%;
    left: 0;
    top: 56px;
    background: #333;
    display: none;
}

.sub-top-gnb-list.active,
.sub-top-gnb-wrap.default .sub-top-gnb-list {
    display: flex;
    flex-direction: column;
}

.sub-top-gnb-item {
    width: 100%;
    height: 52px;
    padding: 0 24px;
    line-height: 48px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.sub-top-gnb-item:hover {
    background: #222;
}

.sub-top-gnb-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.sub-top-gnb-default svg {
    margin-left: auto;
}
.sub-top-gnb-wrap.active .sub-top-gnb {
    display: block;
}

.sub-top-gnb-wrap.active .sub-top-gnb-default {
    background: #333;
}

.sub-top-gnb-wrap.active .sub-top-gnb-default * {
    color: #fff;
}
.sub-top-gnb-wrap.active .sub-top-gnb-default p {
    display: none;
}

.sub-top-gnb-wrap.active .sub-top-gnb-default svg {
    transform: rotate(180deg);
}

@media screen and (max-width: 1080px) {
    .sub-top-gnb-list {
        top: 41.5px;
    }

    .sub-top-gnb-item {
        height: 40px;
        line-height: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .sub-nav-wrap .container {
        padding: unset;
    }

    .sub-top-nav .home-btn {
        width: 48px;
        height: 48px;
    }
    .sub-top-nav .home-btn i {
        font-size: 20px;
        line-height: 48px;
    }
    .sub-top-gnb-default * {
        font-size: 14px;
    }

    .sub-top-gnb-wrap {
        width: calc((100% - 40px) / 2);
    }
    .sub-top-gnb-default {
        width: 100%;
        padding: 0 16px;
        height: 48px;
    }
    .sub-top-gnb-list {
        top: 40.14px;
    }
    .sub-top-gnb-item {
        font-size: 14px;
        padding-left: 16px;
    }
}

@media screen and (max-width: 768px) {
    .sub-top-nav {
        top: 56px;
    }

    .sub-top-nav .container {
        padding: 0;
    }

    .sub-top-nav .container > * {
        border-right: 0;
    }

    .sub-top-nav .home-btn {
        border-left: 0;
    }

    .sub-top-nav .home-btn i {
        line-height: 48px;
        font-size: 20px;
    }

    .sub-top-gnb-default {
        width: 100%;
        padding: 0 16px;
    }

    .sub-top-gnb-default * {
        font-size: 15px;
    }

    .sub-top-gnb-default .txt {
        white-space: inherit;
        overflow: inherit;
        text-overflow: inherit;
        text-align: left;
    }

    .sub-top-gnb-item {
        padding: unset;
        padding-left: 16px;
        font-size: 14px;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.scroll-wrap {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-wrap::-webkit-scrollbar {
    display: none;
}

.bold {
    font-weight: bold;
}

.blue-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    max-width: 270px;
    border-radius: 22.5px;
    background-color: #1e86ff;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 48px;
}

@media screen and (max-width: 1024px) {
    .blue-btn {
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        max-width: 270px;
    }
}

/* pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}

.pagination .page-btn {
    display: flex;
    width: 40px;
    height: 40px;
    background: transparent;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 300;
    transition: 0.2s;
    color: #333;
}

.pagination .page-btn svg {
    color: #333;
    font-size: 20px;
    width: 20px;
    line-height: 40px;
}

.pagination .page-btn:hover {
    background: #496781;
    color: #fff;
}
.pagination .page-btn:hover svg {
    color: #fff;
}

.pagination .page-btn.active {
    color: #fff;
    background: #496781;
}

@media screen and (max-width: 1080px) {
    .pagination {
        margin-top: 40px;
    }

    .pagination .page-btn {
        width: 32px;
        height: 32px;
        font-size: 11px;
        line-height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pagination .page-btn svg {
        width: 14px;
    }

    .pagination .nav-btn {
        width: 20px;
        height: 20px;
    }
}

.fluid-img-wrap {
    position: relative;
}

.fluid-img-wrap::before {
    width: 100%;
    display: block;
    content: "";
    padding-top: 100%;
}

.fluid-img-wrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.title-typ1 {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}

.title-typ2 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
}

.title-typ3 {
    font-size: 26px;
    font-weight: bold;
    color: #000;
}

@media screen and (max-width: 1080px) {
    .title-typ1 {
        font-size: 26px;
    }

    .title-typ2 {
        font-size: 16px;
        text-align: center;
    }

    .title-typ3 {
        font-size: 20px;
    }
}

.mark-wrap {
    display: flex;
    align-items: center;
}

.mark-wrap .mark {
    width: 4px;
    height: 4px;
    min-width: 4px;
    min-height: 4px;
    border-radius: 50%;
    background-color: #333;
    margin-right: 8px;
    transform: translateY(-3px);
}

@media screen and (max-width: 1080px) {
    .mark-wrap .mark {
        width: 3px;
        height: 3px;
        min-width: 3px;
        min-height: 3px;
    }
}

/* 메인페이지 - 풀페이지 */

.bg-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 팝업 */

.popup-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.popup-bg.open {
    display: flex;
}

.loginPopup-bg.open {
    display: flex;
}

.pop-container {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: 960px;
    background-color: #f4f5f8;
}

@media screen and (max-width: 768px) {
    .popup-bg {
        padding: 40px 24px;
    }

    .popup-bg .popUp_btn_wrap * {
        width: 140px;
        height: 48px;
    }

    .popup-bg .popUp-sub {
        margin-bottom: 40px;
    }

    .popup-bg .popUp_title {
        margin-bottom: 8px;
    }
}

/* // */

.title-content-wrap {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #333;
    border-top: 2px solid #333;
}

.subTitle {
    position: relative;
    font-family: "Tenada , sans-serif";
    font-size: 32px;
    font-weight: 800;
    color: #202020;
    padding-left: 20px;
    margin-top: 40px;
}

.subTitle::after {
    position: absolute;
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    background: #496781;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1080px) {
    .subTitle {
        font-size: 25px;
        margin-top: 30px;
        line-height: 1.4;
    }
}

/* ============================
 bannerSection
 ============================*/

.bannerSection {
    /* margin-top: -80px; */
    position: relative;
    max-height: 568px;
    overflow: hidden;
}

.bannerSection img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.bannerSection .mb {
    display: none;
}

.bannerSection .dark-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.3;
}

.bannerSection .bs-title-wrap {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
}

.bannerSection .bs-title-wrap.left {
    text-align: left;
}

.bannerSection .bs-title-wrap .sub {
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin-top: 9px;
}

.bannerSection .bs-title-wrap .title {
    font-family: "Tenada , sans-serif";
    font-size: 56px;
    font-weight: 800;
    color: #fff;
}

.bannerSection .bs-mark {
    position: absolute;
    bottom: -77px;
    right: 41px;
    width: 25vw;
    max-width: 427px;
}

@media (max-width: 1080px) {
    .bannerSection .bs-title-wrap .sub {
        display: none;
    }
}

/* ============================
 titleSection
 ============================*/

.titleSection {
    margin-top: 80px;
}

.titleSection .container {
    padding-bottom: 40px;
}

.titleSection .title {
    /* font-family: "Tenada , sans-serif"; */
    font-size: 40px;
    font-weight: 800;
    color: #202020;
}

.titleSection .title-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.titleSection .btn-wrap {
    display: flex;
    min-width: 100%;
    gap: 16px;
}

.titleSection .search-title-wrap {
    flex-direction: row;
    justify-content: space-between;
}

.titleSection .complex-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1284px) {
    .titleSection .complex-wrap .btn-active {
        max-width: 240px;
    }
}

@media screen and (max-width: 1080px) {
    .bannerSection {
        min-height: 240px;
    }

    .bannerSection img {
        min-height: 240px;
    }

    .bannerSection .bs-title-wrap .title {
        font-size: 32px;
    }

    .sub-nav-wrap {
        margin-top: -40px;
    }

    .sub-nav-wrap,
    .sub-top-gnb-default {
        height: 40px;
    }

    .sub-top-nav .home-btn i {
        line-height: 40px;
    }

    .sub-top-nav .home-btn {
        height: 40px;
        width: 40px;
    }

    .titleSection .container {
        padding-bottom: 30px;
    }

    .titleSection .search-title-wrap {
        flex-direction: column;
        gap: 15px;
    }

    .titleSection .title {
        font-size: 28px;
    }

    .titleSection .complex-wrap .btn-active {
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    .titleSection .container {
        padding-bottom: 14px;
    }

    .bannerSection .mb {
        display: block;
    }

    .bannerSection .pc {
        display: none;
    }

    .bannerSection .bs-title-wrap .sub {
        display: none;
    }
}
/* ============================
 professerSection
 ============================*/

.professerSection {
    padding-bottom: 120px;
}

.professerSection .content-wrap {
    display: flex;
    gap: 100px;
    padding-bottom: 80px;
    padding-top: 80px;
    border-bottom: 2px solid #333;
}

.professerSection .content-wrap:first-child {
    border-top: 2px solid #333;
}

.professerSection .content-wrap.top {
    padding-top: 40px;
}

.professerSection .item-title {
    font-size: 20px;
    font-weight: bold;
    color: #202020;
}

.professerSection .content-item {
    padding-bottom: 30px;
}

.professerSection .content-item:not(:last-child) {
    border-bottom: 1px solid #aeaeae;
}

.professerSection .content-item:not(:first-child) {
    padding-top: 30px;
}

.professerSection .content-item .list-group-item {
    margin-top: 8px;
}

.professerSection .mark-wrap {
    align-items: baseline;
}

.professerSection .mark {
    margin-right: 8px;
}

.professerSection .mark-text {
    font-size: 17px;
    font-weight: 300;
    color: #333;
    line-height: 1.53;
}

@media screen and (max-width: 1080px) {
    .professerSection {
        padding-bottom: 80px;
    }

    .professerSection .content-wrap.top {
        padding-top: 30px;
    }

    .professerSection .inner-wrap {
        display: flex;
        align-items: start;
        gap: 16px;
        margin-bottom: 20px;
        width: 100%;
    }

    .card-type1 .fluid-img-wrap {
        width: 30%;
        min-width: 105px;
        min-height: 130px;
    }

    .card-type1 .fluid-img-wrap::before {
        padding-top: 100%;
    }

    .professerSection .card-type1 .card-body.top {
        margin-top: unset;
    }

    .professerSection .card-type1 .infoListGroup {
        margin-bottom: unset;
    }

    .professerSection .card-type1 .fluid-img-wrap::before {
        padding-top: 140%;
    }

    .professerSection .content-wrap {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 10px;
        padding-top: 30px;
    }

    .professerSection .item-title {
        font-size: 14px;
    }

    .professerSection .content .item-title {
        font-size: 16px;
    }

    .professerSection .infoListGroup .item-content {
        font-size: 14px;
    }

    .professerSection .btn-outline-default {
        background-color: #496781;
        color: #fff;
        border: unset;
        height: 45px;
        line-height: 45px;
        font-size: 14px;
    }

    .professerSection .btn-outline-default i {
        color: #fff;
    }

    .professerSection .content-item {
        padding-bottom: 20px;
    }

    .professerSection .content-item:not(:first-child) {
        padding-top: 20px;
    }

    .professerSection .mark {
        width: 3px;
        height: 3px;
        min-width: 3px;
        min-height: 3px;
    }

    .professerSection .mark-text {
        font-size: 14px;
        line-height: 1.43;
    }
}

@media screen and (max-width: 768px) {
    .professerSection .content-wrap {
        padding-bottom: unset;
    }
    .professerSection .infoListGroup .item-content {
        font-size: 12px;
    }
    .professerSection .item-title {
        font-size: 12px;
        min-width: unset;
    }
    .professerSection .btn-outline-default {
        max-width: 105px;
        height: 35px;
    }
}

/* ============================
membersSection
 ============================*/

.membersSection {
    padding-bottom: 120px;
}

.membersSection .content-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px 0;
    border-top: 2px solid #333;
}

.membersSection .content-wrap:not(:first-child) {
    border-top: 2px solid #333;
}
.membersSection .content-wrap:last-child {
    border-bottom: 2px solid #333;
}
@media screen and (max-width: 1280px) {
    .membersSection .content-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 860px) {
    .membersSection .content-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .membersSection .content-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 1080px) {
    .membersSection {
        padding-bottom: 80px;
    }

    .membersSection .content-wrap {
        padding: 30px 0;
    }

    /* .membersSection .content-wrap:last-child:not(:first-child) {
        padding-bottom: unset;
    } */

    .membersSection .btn-outline-default {
        background-color: #496781;
        color: #fff;
        border: unset;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }

    .membersSection .btn-outline-default i {
        color: #fff;
    }

    .membersSection .card-type2 .card-body.top {
        position: relative;
        padding: unset;
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .membersSection .card-type2 .card-body.top::after {
        position: absolute;
        content: "";
        display: block;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background-color: #496781;
    }

    .membersSection .infoListGroup .icon-wrap {
        width: 25px;
        height: 15px;
    }

    .membersSection .infoListGroup .icon-wrap i {
        font-size: 15px;
    }

    .membersSection .infoListGroup .item-title {
        font-size: 12px;
        min-width: 36px;
    }

    .membersSection .infoListGroup .item-content {
        font-size: 12px;
    }

    .membersSection .researchListGroup .mark-text {
        font-size: 14px;
    }

    .membersSection .mark-wrap .mark {
        width: 3px;
        height: 3px;
        min-width: 3px;
        min-height: 3px;
    }

    .membersSection .researchListGroup {
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .infoListGroup .list-group-item {
        gap: 10px;
    }
}

/* ============================
 alumniSection
 ============================*/

.alumniSection {
    padding-bottom: 120px;
}

.alumniSection .content-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px 0;
    border-bottom: 2px solid #333;
    border-top: 2px solid #333;
}
@media screen and (max-width: 1280px) {
    .alumniSection .content-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 860px) {
    .alumniSection .content-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .alumniSection .content-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}
.alumniSection .card-type3 {
    width: calc((100% - 40px * 3) / 4);
}

@media screen and (max-width: 1080px) {
    .alumniSection .content-wrap {
        gap: 20px;
    }

    .alumniSection .card-type3 {
        width: calc((100% - 20px * 1) / 2);
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    .alumniSection {
        padding-bottom: 80px;
    }

    .alumniSection .content-wrap {
        gap: 30px;
        padding-bottom: 6px;
        padding-top: 30px;
    }

    .alumniSection .card-type3 {
        width: 100%;
    }

    .alumniSection .infoListGroup .item-content {
        font-size: 14px;
    }
}

/* ============================
 softwareSection
 ============================*/

.softwareSection {
    padding-bottom: 120px;
}

.softwareSection .title-content-wrap.top {
    margin-bottom: 120px;
}

.softwareSection .inner-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
}

.softwareSection .inner-wrap .card {
    width: calc((100% - 40px * 2) / 3);
}

@media screen and (max-width: 1080px) {
    .softwareSection .inner-wrap {
        gap: 20px;
        padding: 20px 0 10px;
    }

    .softwareSection .inner-wrap .card {
        width: calc((100% - 20px * 1) / 2);
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    .softwareSection .inner-wrap {
        gap: 30px;
    }

    .softwareSection .inner-wrap .card {
        width: 100%;
    }

    .softwareSection .title-content-wrap.top {
        margin-bottom: 56px;
    }
}
/* ============================
worksSection
 ============================*/

.worksSection .title-content-wrap.top {
    margin-bottom: 120px;
}

.worksSection .inner-wrap.top {
    padding: 40px 0 80px;
    border-top: unset;
}

.worksSection .inner-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px dotted #aeaeae;
    padding: 80px 0;
}

.worksSection .inner-wrap.btm .fluid-img-wrap::before {
    padding-top: 60.61%;
}

.worksSection .inner-wrap .card {
    width: calc((100% - 40px * 3) / 4);
}

@media screen and (max-width: 1080px) {
    .worksSection .inner-wrap.top {
        padding: 30px 0 48px;
    }

    .worksSection .inner-wrap {
        gap: 30px 40px;
    }

    .worksSection .inner-wrap .card {
        width: calc((100% - 40px * 1) / 2);
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    .worksSection .title-content-wrap.top {
        margin-bottom: 80px;
    }

    .worksSection .inner-wrap {
        gap: 30px;
        padding: 48px 0 28px;
    }

    .worksSection .inner-wrap .card {
        width: 100%;
    }
}

/* ============================
experSection
 ============================*/
.experSection {
    padding-bottom: 120px;
}

.experSection .inner-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0 60px;
}

.experSection .inner-wrap .card {
    width: calc((100% - 40px * 3) / 4);
}

@media screen and (max-width: 1080px) {
    .experSection .inner-wrap {
        gap: 20px;
    }

    .experSection .inner-wrap .card {
        width: calc((100% - 20px * 1) / 2);
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    .experSection {
        padding-bottom: 80px;
    }

    .experSection .inner-wrap {
        gap: 30px;
        padding: 30px 0;
    }

    .experSection .inner-wrap .card {
        width: 100%;
    }
}

/* ============================
photoSection
 ============================*/

.photoSection {
    padding-bottom: 120px;
}

.photoSection .content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 24px;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    padding: 40px 0 48px;
}

.photoSection .card {
    width: calc((100% - 24px * 3) / 4);
    border: 0;
}

.photoSection .card-body {
    padding: 0;
    gap: 12px;
    margin-top: 24px;
}
.photoSection .card-body .card-date {
    font-size: 14px;
}

@media screen and (max-width: 1080px) {
    .photoSection {
        padding-bottom: 80px;
    }

    .photoSection .content-wrap {
        padding: 30px 0 0;
        border-bottom: unset;
        gap: 30px;
    }

    .photoSection .card {
        width: calc((100% - 30px * 1) / 2);
        max-width: unset;
        border: unset;
    }
}

@media screen and (max-width: 768px) {
    .photoSection .card {
        width: 100%;
    }
}

/* ============================
reacherSection
 ============================*/
.selectedSection {
    margin-bottom: 120px;
}

.selectedSection .selected-list {
    margin-top: 24px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.selectedSection .selected-list .selected-list-item {
    padding: 40px 0;
}

.selectedSection .selected-list .item-title {
    font-size: 24px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 24px;
}

.item-detail-wrap {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    gap: 20px 40px;
}

.selectedSection .selected-list-item:not(:last-child) {
    border-bottom: 1px dotted #aeaeae;
}

.item-detail-wrap .item-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-detail-wrap .item-detail .detail-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-detail-wrap .item-detail .title-icon {
    width: 16px;
    color: #aeaeae;
}

.item-detail-wrap .item-detail .title {
    font-size: 16px;
    font-weight: 500;
    color: #aeaeae;
    line-height: 1.5;
}

.item-detail-wrap .item-detail .detail-info {
    font-size: 16px;
    font-weight: 300;
    color: #202020;
}

@media screen and (max-width: 1080px) {
    .selectedSection {
        margin-bottom: 60px;
    }
    .selectedSection .selected-list .selected-list-item {
        padding: 30px 0;
    }

    .selectedSection .selected-list {
        margin-top: 18px;
    }

    .selectedSection .selected-list .item-title {
        font-size: 20px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .selectedSection .item-detail {
        align-items: start;
    }
    .item-detail-wrap {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }
    .item-detail-wrap .item-detail {
        align-items: flex-start;
    }
    .item-detail-wrap .item-detail .title-icon {
        font-size: 16px;
    }

    .item-detail-wrap .item-detail .title {
        font-size: 14px;
    }

    .item-detail-wrap .item-detail .detail-info {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ============================
projectSection
 ============================*/

.projectSection {
    margin-bottom: 120px;
}

.projectSection table {
    width: 100%;
    min-width: 1024px;
    font-size: 10px;
    margin-top: 20px;
    border-collapse: collapse;
}

.projectSection thead {
    text-align: center;
    background-color: #484848;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.projectSection tbody {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
}

.projectSection th {
    padding: 8px;
    padding: 18px 10px;
    border: 1px solid #e4e4e4;
}

.projectSection td {
    padding: 8px;
    line-height: 1.5;
    padding: 32px 8px;
    border: 1px solid #e4e4e4;
}

.projectSection table .bold {
    font-weight: 600;
}

.projectSection th:first-child,
.projectSection td:first-child {
    border-left: none;
}

.projectSection th:last-child,
.projectSection td:last-child {
    border-right: none;
}

.projectSection tr:last-child td {
    border-bottom: 2px solid #333;
}

@media screen and (max-width: 1080px) {
    .projectSection {
        margin-bottom: 80px;
    }

    .projectSection th {
        font-size: 16px;
        padding: 16px 10px;
    }
    .projectSection td {
        font-size: 14px;
        line-height: 1.71;
        padding: 22px 8px;
    }
    .projectSection .scroll-wrap {
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: thin;
        padding-bottom: 18px;
    }

    .projectSection .scroll-wrap::-webkit-scrollbar {
        display: block;
    }
}

/* ============================
journalsSection
 ============================*/
.journalsSection {
    padding-bottom: 120px;
}

.journalsSection .content-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.titleSection .journals-btn-wrap .btn { height: 40px; }

@media screen and (max-width: 1080px) {
    .journalsSection {
        padding-bottom: 80px;
    }
    .titleSection .journals-btn-wrap .btn { height: 32px; }
}

/* ============================
booksSection
 ============================*/
.booksSection {
    padding-bottom: 120px;
}

.booksSection .content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    padding: 40px 0;
}

.booksSection .card-type8 {
    align-items: center;
}

.booksSection .card-type8 .detail-title {
    gap: 8px;
}

.booksSection .card-type8 .title {
    min-width: 98px;
}

.booksSection .fluid-img-wrap {
    max-width: 245px;
    min-width: 245px;
    min-height: 341px;
}

.booksSection .detailListGroup {
    flex-direction: column;
    margin-top: 40px;
}

.booksSection .detailListGroup .list-group-item {
    flex-direction: column;
    align-items: start;
    gap: 16px;
}

.card-type8 .card-title .card-type {
    display: none;
}

@media screen and (max-width: 768px) {
    .booksSection {
        padding-bottom: 80px;
    }

    .booksSection .fluid-img-wrap {
        max-width: 335px;
        min-width: 245px;
    }

    .booksSection .content-wrap {
        padding: 30px 0 0;
        border-bottom: unset;
    }

    .booksSection .card-body {
        width: 100%;
    }

    .booksSection .card-type8 .card-type-wrap {
        flex-direction: column;
        align-items: start;
        margin-bottom: 10px;
    }

    .card-type8 .card-type {
        display: none;
    }

    .card-type8 .card-title .card-type {
        display: flex;
        width: fit-content;
        font-size: 15px;
    }

    .booksSection .card-type8 .card-title {
        display: flex;
        align-items: baseline;
        gap: 15px;
    }
    .booksSection .card-type8 .fluid-img-wrap::before {
        padding-top: 142%;
    }
    .booksSection .detailListGroup {
        margin-top: unset;
    }

    .booksSection .card-type8 .title {
        min-width: 68px;
    }

    .booksSection .card-type8 .detailListGroup {
        margin-bottom: unset;
    }

    .booksSection .card-type8:last-child {
        border-bottom: 1px solid #e4e4e4;
    }
}

/* ============================
patentsSection
 ============================*/

.patentsSection {
    padding-bottom: 120px;
}

.patentsSection .content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    padding: 20px 0;
}

@media screen and (max-width: 768px) {
    .patentsSection {
        padding-bottom: 80px;
    }

    .patentsSection .content-wrap {
        padding: 20px 0 30px;
    }
}

/* ============================
conferencesSection
 ============================*/

.conferencesSection {
    padding-bottom: 120px;
}

.conferencesSection .content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 2px solid #333;
}

.conference-list-wrap {
    width: 100%;
}

.conference-list-wrap .conference-list_hd {
    display: flex;
    width: 100%;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}

.conference-list-wrap .conference-list_hd li {
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.conference-list-wrap .conference-list_hd li:not(:last-child) {
    border-right: 1px solid #e4e4e4;
}

.conference-list-wrap .conference-list_hd li p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.conference-list-wrap .list-row-item:not(:last-child) {
    border-right: 1px solid #e4e4e4;
}

/* .conference-list-wrap .list-row-item {
    padding: 0 8px;
} */

.conference-list-wrap .inner-wrap {
    display: flex;
    background-color: #fff;
}

.conference-list-wrap .inner-wrap p {
    text-align: center;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    color: #333;
    padding: 24px 4px;
    height: 100%;
    line-height: 1.43;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.conference-list-wrap .conference-list_body {
    display: flex;
    flex-direction: column;
}

.conference-list-wrap .eb-row_item2 .title,
.conference-list-wrap .eb-row_item3 .title {
    opacity: unset;
}

.conference-list-wrap .inner-wrap .row_item2 .title,
.conference-list-wrap .inner-wrap .row_item4 .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.43;
}

.conference-list-wrap .inner-wrap:hover {
    background-color: #8ea4b91a;
}

.conference-list-wrap .conference-list_item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.conference-list-wrap .conference-list_item:not(:last-child) {
    border-bottom: 1px solid #e4e4e4;
}

.conference-list-wrap p.mb-list-title {
    display: none;
}

@media screen and (max-width: 1280px) {
    .conferencesSection {
        padding-bottom: 80px;
    }

    .conference-list-wrap .conference-list_hd {
        display: none;
    }
    .conference-list-wrap .conference-list_body {
        padding-top: 30px;
        border-top: 2px solid #333;
    }
    .conference-list-wrap .conference-list_item {
        padding: 30px 0;
    }
    .conference-list-wrap .conference-list_item:first-child {
        padding-top: unset;
    }
    .conference-list-wrap .list-row-item:not(:last-child) {
        border-right: unset;
    }

    .conference-list-wrap .inner-wrap {
        flex-direction: column;
        gap: 16px;
    }
    .conference-list-wrap .inner-wrap p {
        text-align: start;
    }

    .conference-list-wrap .list-row-item {
        display: flex;
        align-items: center;
        /* gap: 20px; */
    }

    /* 모바일용 타이틀 */
    .conference-list-wrap .inner-wrap .mb-list-title {
        display: flex;
        font-size: 15px;
        font-weight: bold;
        color: #333;
        min-width: 84px;
        padding: unset;
        justify-content: start;
        white-space: nowrap;
        width: 120px;
    }

    .conference-list-wrap .inner-wrap p {
        padding: unset;
        width: calc( 100% - 120px );
        justify-content: start;
    }
    .conference-list-wrap .inner-wrap .row_item1,
    .conference-list_hd li:nth-child(1) {
        width: 100%;
    }

    .conference-list-wrap .inner-wrap .row_item2,
    .conference-list_hd li:nth-child(2) {
        width: 100%;
        min-width: unset;
    }

    .conference-list-wrap .inner-wrap .row_item3,
    .conference-list_hd li:nth-child(3) {
        width: 100%;
    }

    .conference-list-wrap .inner-wrap .row_item4,
    .conference-list_hd li:nth-child(4) {
        width: 100%;
    }

    .conference-list-wrap .inner-wrap .row_item5,
    .conference-list_hd li:nth-child(5) {
        width: 100%;
    }

    .conference-list-wrap .inner-wrap .row_item6,
    .conference-list_hd li:nth-child(6) {
        width: 100%;
        min-width: unset;
    }

    .conference-list-wrap .inner-wrap .row_item7,
    .conference-list_hd li:nth-child(7) {
        width: 100%;
    }
}

/* ============================
lectureSection
 ============================*/
.lectureSection {
    padding-bottom: 120px;
}

.lectureSection .content-wrap {
    display: flex;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}

.lectureTabs li {
    cursor: pointer;
}

.lectureTabs li.current {
    color: #fff;
    background-color: #496781;
}

.lectureSection .tab-content {
    display: none;
}

.lectureSection .tab-content.current {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.lectureSection .tab-item-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 24px;
}

.lectureSection .tab-item-wrap:not(:last-child) {
    border-bottom: 1px solid #e4e4e4;
}

.lectureSection .fixed-item {
    background-color: #f5f5f5;
}

.lectureSection .inner-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.lectureSection .icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background-color: #496781;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lectureSection .icon-wrap i {
    font-size: 24px;
    color: #fff;
}

.lectureSection .item-content {
    width: 100%;
    max-width: 869px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lectureSection .item-content p {
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.lectureSection .plus-icon {
    font-size: 32px;
    color: #333;
}

.lectureSection .item-date-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lectureSection .item-date-wrap .item-day {
    font-size: 40px;
    font-weight: bold;
    color: #a4a4a4;
}

.lectureSection .item-date-wrap .item-date {
    font-size: 17px;
    font-weight: 300;
    color: #a4a4a4;
}

.lectureSection .tab-item-wrap:hover {
    background-color: #8ea4b91a;
}

@media screen and (max-width: 1284px) {
    .lectureTabs li {
        max-width: 220px;
    }

    .complex-wrap .search-input {
        width: 300px;
    }
}

@media screen and (max-width: 1080px) {
    .lectureTabs li {
        max-width: unset;
        justify-content: start;
        padding-left: 20px;
        height: 45px;
        line-height: 45px;
    }

    .lectureSection .plus-icon {
        display: none;
    }

    .lectureSection .tab-item-wrap {
        padding: 15px;
    }

    .lectureSection .icon-wrap {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
    }

    .lectureSection .icon-wrap i {
        font-size: 15px;
    }

    .lectureSection .inner-wrap {
        gap: 16px;
    }

    .lectureSection .item-content p {
        font-size: 15px;
    }

    .lectureSection .item-date-wrap .item-day {
        font-size: 32px;
    }

    .lectureSection .item-date-wrap .item-date {
        font-size: 13px;
    }

    .complex-wrap .search-input {
        width: 100%;
    }

    .complex-wrap .search-input-wrap {
        width: 100%;
    }

    .titleSection .complex-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .titleSection .btn-wrap {
        gap: 10px;
    }

    .titleSection .btn-active {
        max-width: unset;
        justify-content: start;
        padding: 0 20px;
        height: 45px;
        line-height: 45px;
        font-size: 14px;
    }
}
/* --------
  디테일페이지 공통  detailSection
--------- */

.detailSection {
    margin-top: 128px;
    padding-bottom: 120px;
}

.detailSection .detail-content-wrap {
    width: 100%;
    border-top: 2px solid #202020;
}

.detail-content-wrap .title-wrap {
    padding: 40px 0 27px;
    text-align: center;
}

.detail-content-wrap .content-type {
    font-size: 18px;
    font-weight: bold;
    color: #1d1e1e;
}

.detail-content-wrap .title {
    font-size: 24px;
    font-weight: 600;
    color: #1d1e1e;
    line-height: 1.33;
}

.detail-content-wrap .info-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid #dedede;
}

.detail-content-wrap .info-wrap .info-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.detail-content-wrap .info-wrap .info-title {
    font-size: 16px;
    font-weight: 600;
    color: #202020;
}

.detail-content-wrap .info-wrap .info-content {
    font-size: 16px;
    font-weight: 300;
    color: #202020;
}

.detail-content-wrap .user-content-wrap {
    padding-top: 40px;
    text-align: center;
}

.detail-content-wrap .user-content-wrap img {
    max-width: 1068px;
    margin: 0 auto;
}

.detail-form-item .file-download-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    margin-top: 80px;
    border-radius: 4px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
    background-color: #f5f5f5;
}

.detail-form-item .file-download-wrap:not(:first-child) {
    margin-top: 16px;
}

.detail-form-item .le-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-form-item .le-wrap i {
    font-size: 20px;
    color: #a4a4a4;
}

.detail-form-item .le-wrap .file-name {
    font-size: 17px;
    font-weight: 600;
    color: #202020;
}

.detail-form-item .ri-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-form-item .ri-wrap i {
    font-size: 20px;
    color: #a4a4a4;
}

.detail-form-item .ri-wrap .download-count {
    font-size: 16px;
    color: #aeaeae;
}

@media screen and (max-width: 1024px) {
    .detailSection {
        padding-bottom: 80px;
        margin-top: 40px;
    }

    .detailSection .detail-content-wrap {
        /* border-top: unset; */
    }

    .detail-content-wrap .content-type {
        font-size: 13px;
    }

    .detail-content-wrap .title {
        font-size: 16px;
        line-height: 1.5;
        /* margin-top: 16px; */
    }

    .detail-content-wrap .info-wrap .info-title {
        font-size: 13px;
    }

    .detail-content-wrap .info-wrap .info-content {
        font-size: 13px;
    }

    .detail-content-wrap .user-content-wrap {
        padding-top: 24px;
    }

    .detail-form-item .le-wrap i {
        font-size: 17px;
    }

    .detail-form-item .le-wrap .file-name {
        font-size: 14px;
    }

    .detail-form-item .ri-wrap .download-count.pc {
        display: none;
    }

    .detail-form-item .download-count.mb {
        display: block;
        font-size: 13px;
        font-weight: 300;
        color: #aeaeae;
        margin-top: 8px;
        text-align: right;
        padding-right: 24px;
    }

    .detail-content-wrap .info-wrap {
        border-top-color: #202020;
        border-bottom-color: #202020;
        flex-wrap: wrap;
        gap: 20px;
    }

    .detail-content-wrap .info-wrap .info-item {
        gap: 8px;
    }

    .detail-content-wrap .re-info-item {
        width: 100%;
        justify-content: center;
    }

    .detail-form-item .ri-wrap.pc .download-count {
        display: none;
    }

    .detail-form-item .ri-wrap i {
        font-size: 17px;
    }
}

.detail-content-wrap .nav-content-wrap {
    margin-top: 40px;
    border-top: 1px solid #dedede;
}

.detail-content-wrap .nav-content {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #dedede;
}

/* .detail-content-wrap .nav-up-content {
    border-bottom: 1px solid #dedede;
} */

.detail-content-wrap .nav-content-wrap i {
    font-size: 20px;
    color: #404040;
    margin-right: 8px;
}

.detail-content-wrap .nav-content-wrap .nav-title {
    font-size: 17px;
    color: #202020;
    font-weight: bold;
    min-width: 44.8px;
}

.detail-content-wrap .nav-content-wrap .nav-detail-title {
    max-width: calc(100% - 72px);
    font-size: 17px;
    color: #a4a4a4;
    font-weight: 300;
    padding-left: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-content-wrap .listCirBtn {
    width: 129px;
    height: 56px;
    border: 1px solid #e4e4e4;
    background-color: #fff;
    margin: 40px auto 0;
    font-size: 17px;
    font-weight: 300;
    color: #a4a4a4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.detail-content-wrap .listCirBtn i {
    font-size: 20px;
    color: #a4a4a4;
}

@media screen and (max-width: 1024px) {
    .detail-content-wrap .nav-content-wrap .nav-title {
        font-size: 14px;
        min-width: 36.8px;
    }

    .detail-content-wrap .nav-content-wrap .nav-detail-title {
        font-size: 13px;
    }

    .detail-content-wrap .nav-content-wrap i {
        font-size: 16px;
        margin-right: 11px;
    }

    .detail-content-wrap .nav-content-wrap .nav-detail-title {
        font-size: 13px;
    }

    .detail-content-wrap .nav-content {
        border-bottom: 1px solid #dedede;
    }

    .detail-form-item .file-download-wrap {
        padding: 16px 24px;
    }
}

.photo-detail-wrap .nav-content-wrap {
    margin-top: 80px;
}

@media screen and (max-width: 1024px) {
    .detail-content-wrap .title-wrap {
        padding: 20px 0 0;
    }

    .photoDetailSection {
        margin-top: 80px;
    }

    .photoDetailSection .photo-detail-wrap {
        border-top: 2px solid #333;
    }

    .photoDetailSection .detail-content-wrap .title {
        margin-top: unset;
        font-size: 20px;
        color: #303030;
    }

    .photoDetailSection .detail-content-wrap .info-wrap .info-title {
        font-size: 14px;
    }

    .photoDetailSection .detail-content-wrap .info-wrap .info-content {
        font-size: 14px;
    }

    .photoDetailSection .detail-content-wrap .user-content-wrap {
        padding-top: 30px;
    }
    .photo-detail-wrap .nav-content-wrap {
        margin-top: 30px;
    }

    .detail-content-wrap .nav-content-wrap i {
        font-size: 17px;
    }

    .photo-detail-wrap .detail-content-wrap .nav-content-wrap .nav-title {
        font-size: 14px;
    }

    .photo-detail-wrap
        .detail-content-wrap
        .nav-content-wrap
        .nav-detail-title {
        font-size: 14px;
    }

    .detail-content-wrap .listCirBtn {
        margin-top: 30px;
        width: 120px;
        height: 40px;
        font-size: 15px;
    }

    .detail-content-wrap .listCirBtn i {
        font-size: 18px;
    }
}

/* --------
  mapSection
--------- */

.mapSection {
    margin-top: 80px;
}
.mapSection .wrap_map ,
.mapSection .root_daum_roughmap {
    width: 100%;
    height: 600px !important;
}

.root_daum_roughmap .cont .section.lst, .root_daum_roughmap .wrap_controllers { display: none; }
.roughmap_maker_label .roughmap_lebel_text { font-size: 14px !important; }
/* --------
 contactSection
--------- */

.contactSection {
    margin-top: 80px;
}

.laboratorySection .subTitle {
    margin-bottom: 40px;
}

.contactSection .container {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.contactSection .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: #484848;
}

.contactSection .info-wrap {
    width: 50%;
    padding-right: 12px;
}

.contactSection .contact-wrap {
    width: 50%;
    padding-left: 56px;
}

.contactSection .info-wrap .title {
    font-size: 40px;
    font-weight: bold;
    color: #202020;
    margin-top: 40px;
}

.contactSection .symbol-img {
    max-width: 107px;
}

.contactSection .info-wrap .content {
    font-size: 17px;
    font-weight: 300;
    color: #202020;
    line-height: 1.53;
    margin-top: 24px;
    max-width: 600px;
}

.contactSection .contact-item-wrap {
    display: flex;
    align-items: start;
    gap: 24px;
}

.contactSection .contact-item-wrap.top {
    margin-bottom: 56px;
}

.contactSection .contact-item-wrap .title {
    margin-top: unset;
    font-size: 24px;
    font-weight: bold;
    color: #202020;
    margin-bottom: 10px;
}

.contactSection .icon-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactSection .item-icon {
    max-width: 40px;
}

.contactSection .contact-info-wrap {
    width: 100%;
}

.contactSection .contact-info-wrap .info {
    line-height: 1.53;
    font-size: 17px;
    font-weight: 300;
    color: #202020;
    white-space: pre-line;
}

@media screen and (max-width: 1080px) {
    .contactSection .container {
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }

    .contactSection .container::after {
        position: unset;
    }

    .contactSection .info-wrap {
        padding-right: unset;
        width: 100%;
        padding-bottom: 30px;
        border-bottom: 1px solid #484848;
    }

    .contactSection .contact-wrap {
        padding-left: unset;
        width: 100%;
    }

    .contactSection .symbol-img {
        max-width: 88px;
    }

    .contactSection .info-wrap .title {
        margin-top: 30px;
        font-size: 28px;
    }

    .contactSection .info-wrap .content {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.43;
        max-width: 90%;
    }

    .contactSection .icon-wrap {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }

    .contactSection .item-icon {
        max-width: 25px;
    }

    .contactSection .contact-item-wrap {
        gap: 15px;
    }

    .contactSection .contact-item-wrap.top {
        margin-bottom: 24px;
    }

    .contactSection .contact-item-wrap .title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .contactSection .contact-info-wrap .info {
        font-size: 14px;
        line-height: 1.53;
        max-width: 90%;
    }

    .mapSection {
        margin-top: 0px;
    }

    .mapSection iframe {
        height: 700px;
    }
}

.laboratorySection {
    padding-bottom: 80px;
}

.laboratorySection .title-content-wrap {
    border: unset;
}

.laboratorySection .inner-wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

@media screen and (max-width: 1080px) {
    .laboratorySection {
        padding-bottom: 40px;
    }

    .laboratorySection .inner-wrap {
        gap: 30px;
    }

    .laboratorySection .title-content-wrap {
        border-top: 2px solid #333;
    }

    .laboratorySection .subTitle {
        margin-bottom: 20px;
    }

    .laboratorySection .card-type10:first-child {
        padding-top: 30px;
    }
    .laboratorySection .card-type10 .card-body {
        gap: 0;
    }
    .laboratorySection .card-type10 .content-wrap {
        padding: 24px;
    }
}

/* card-type10 */

.card-type10 {
    position: relative;
    border: 1px solid #e4e4e4;
}

.card-type10 .card-body {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.card-type10 .lab-deco-img {
    position: absolute;
    max-width: 280px;
    right: 24px;
    top: 40px;
}

.card-type10 .slide-wrap {
    width: 50%;
    max-width: 720px;
}

.card-type10 .fluid-img-wrap::before {
    width: 100%;
    display: block;
    content: "";
    padding-top: 58.89%;
}

.card-type10 .content-wrap {
    width: 50%;
    z-index: 2;
    padding: 48px;
}

.card-type10 .card-title {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    color: #202020;
    margin-bottom: 16px;
}

.card-type10 .card-title::after {
    position: absolute;
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background-color: #496781;
    top: -24px;
    left: 0;
}

.card-type10 .card-sub {
    font-size: 16px;
    font-weight: 500;
    color: #aeaeae;
    margin-bottom: 24px;
}

.card-type10 .card-info {
    font-size: 17px;
    font-weight: 300;
    color: #484848;
    max-width: 510px;
    line-height: 1.53;
}

.card-type10 .swiper-nav-wrap {
    position: relative;
    bottom: 48px;
    width: 100%;
    /* height: 48px; */
    display: flex;
    align-items: center;
    z-index: 9;
}

.card-type10 .swiper-button-prev:after,
.card-type10 .swiper-button-next:after {
    font-size: 16px;
    opacity: unset;
    color: #fff;
}

.card-type10 .swiper-btn {
    position: absolute;
    top: 0;
    right: unset;
    left: unset;
    margin-top: unset;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.48);
}

.card-type10 .swiper-button-prev {
    opacity: unset;
    right: 49px;
}

.card-type10 .swiper-button-next {
    right: 0;
}

.card-type10-1 .content-wrap p {
    text-align: right;
}

.card-type10-1 .card-info {
    max-width: unset;
}

.card-type10-1 .card-title::after {
    position: absolute;
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background-color: #496781;
    top: -24px;
    right: 0;
    left: unset;
}

.card-type10-1 .lab-deco-img {
    position: absolute;
    max-width: 280px;
    right: unset;
    left: 24px;
    top: 40px;
}

@media screen and (max-width: 1080px) {
    .card-type10 {
        border: unset;
        padding-bottom: 30px;
        border-bottom: 1px solid #e4e4e4;
    }

    .card-type10 .card-body {
        flex-direction: column;
        gap: 44px;
    }

    .card-type10 .lab-deco-img {
        display: none;
    }

    .card-type10 .slide-wrap {
        width: 100%;
        max-width: unset;
    }

    .card-type10 .content-wrap {
        width: 100%;
        z-index: 1;
    }

    .card-type10 .swiper-nav-wrap {
        /* height: 40px; */
        bottom: 40px;
    }

    .card-type10 .swiper-btn {
        height: 40px;
        width: 40px;
    }

    .card-type10 .swiper-button-prev {
        right: 41px;
    }

    .card-type10-1 .content-wrap {
        order: 2;
    }

    .card-type10 .content-wrap p {
        font-size: 14px;
        line-height: 1.43;
    }

    .card-type10-1 .content-wrap p {
        text-align: left;
    }

    .card-type10-1 .card-title::after {
        right: unset;
        left: 0;
    }

    .card-type10 .content-wrap .card-title {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .card-type10 .card-sub {
        margin: 15px 0 20px;
    }

    .card-type10 .swiper-button-prev:after,
    .card-type10 .swiper-button-next:after {
        font-size: 13px;
    }
}

/* 메인 */

.slideSection {
    padding-top: -80px;
}

.slideSection .swiper-slide.mb {
    display: none;
}

.slideSection .swiper {
    height: 100%;
}
.slideSection .slide-inner {
    position: relative;
    height: 100%;
}

.slideSection .flued-img-wrap {
    position: relative;
    height: 100%;
}

.slideSection .flued-img-wrap::before {
    width: 100%;
    display: block;
    content: "";
    padding-top: 50%;
}

.slideSection .flued-img-wrap img,
.slideSection .flued-img-wrap video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slideSection .slide-content-wrap {
    position: absolute;
    top: 50%;
    left: 240px;
    transform: translateY(-50%);
}

.slideSection .slide-content-wrap .content-title {
    font-family: "Tenada , sans-serif";
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 40px;
}

.slideSection .slide-content-wrap .content-sub {
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    line-height: 1.41;
}

.slideSection .swiper-controll-wrap {
    z-index: 2;
    position: absolute;
    top: 70% !important;
    bottom: unset !important;
    position: absolute;
    left: 240px !important;
    display: flex;
    gap: 8px;
    justify-content: start;
    align-items: center;
}

.slideSection .swiper-controll-wrap .swiper-pagination {
    position: unset;
    text-align: unset;
    width: unset;
}

.slideSection .swiper-controll-wrap .swiper-pause i {
    font-size: 17px;
    color: #fff;
    cursor: pointer;
    opacity: unset;
}

.slideSection .swiper-controll-wrap .swiper-play i {
    font-size: 17px;
    color: #fff;
    cursor: pointer;
    opacity: unset;
}

.slideSection .index-pagination .swiper-pagination-bullet {
    width: unset;
    height: unset;
    background: none;
    margin: 0;
    font-size: 17px;
    font-weight: 300;
    position: relative;
    opacity: unset;
    color: #fff;
}

.slideSection .index-pagination .swiper-pagination-bullet::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    left: calc(100% - 94px);
    top: 50%;
    transform: translateY(-50%);
}

.slideSection .index-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    padding-right: 104px;
}

.slideSection .index-pagination .swiper-pagination-bullet-active::after {
    content: "";
    display: block;
    position: absolute;
    width: 94px;
    height: 2px;
    background: #fff;
    opacity: 0.5;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.slideSection .index-pagination .swiper-pagination-bullet-active::before {
    animation: pagi_ani 5.5s ease;
}

@keyframes pagi_ani {
    0% {
        width: 0;
    }

    100% {
        width: 94px;
    }
}

#fp-nav {
    position: absolute;
    top: calc(50% + 80px);
    transform: translateY(-50%);
    left: 66px;
}

#fp-nav ul {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

#fp-nav span {
    position: relative;
    display: flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #aeaeae;
}

#fp-nav .active span::after {
    position: absolute;
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #aeaeae;
    background-color: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bgSection .section-container {
    position: relative;
    height: 100%;
    /* padding-top: 80px; */
    overflow: hidden;
}

.bgSection .bg-box {
    position: absolute;
    right: 0;
    height: 100%;
    background-color: #f5f5f5;
    width: 100%;
    width: 39%;
    /* max-width: 780px; */
}

.bgSection .section-num {
    position: absolute;
    font-family: "Tenada , sans-serif";
    font-size: 200px;
    font-weight: 800;
    font-size: 200px;
    color: #f5f5f5;
    writing-mode: vertical-rl;
    line-height: 1;
    left: -48px;
    top: 80px;
    z-index: -1;
}

.bgSection .inner-wrap {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bgSection .inner-wrap .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1642px; */
    max-width: 1760px;
    padding-left: 100px;
    gap: 680px;
}

.bgSection .inner-wrap .fluid-img-wrap {
    width: 100%;
    max-width: 560px;
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
}

.bgSection .inner-wrap .fluid-img-wrap img {
    border-radius: 50%;
}

.bgSection .content-wrap .sub-title {
    font-size: 20px;
    font-weight: bold;
    color: #496781;
    margin-bottom: 32px;
}

.bgSection .content-wrap .box-title {
    font-family: "Tenada , sans-serif";
    font-size: 40px;
    font-weight: 800;
    color: #202020;
    margin-bottom: 35px;
}

.bgSection .content-wrap .info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* max-width: 558px; */
}

.bgSection .content-wrap .info-list-item {
    position: relative;
    padding-left: 16px;
}

.bgSection .content-wrap .info-list-item::before {
    position: absolute;
    content: "";
    display: block;
    width: 2.5px;
    height: 90%;
    max-height: 16px;
    background-color: #496781;
    top: 0;
    left: 0;
    transform: rotate(20deg);
}

.bgSection .content-wrap .item-txt {
    font-size: 17px;
    font-weight: 300;
    color: #202020;
    line-height: 1.71;
}

.bgSection .content-wrap .btn-group {
    margin-top: 80px;
}

.bgSection .type-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bgSection .type-list .item-txt {
    font-size: 17px;
    color: #3d3d3d;
}

.bgSection .type-list .type-list-item.now .item-txt {
    font-weight: bold;
}

.bgSection .type-list .type-list-item.now {
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
}

.introSection {
    position: relative;
    background-image: url("/images/section-bg_2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.introSection .section-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1500px;
}

.introSection .inner-wrap {
    position: relative;
    display: flex;
    width: 100%;
    padding: 0 20px;
    margin-left: 80px;
}

.introSection .inner-wrap:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 1px;
    height: 100%;
    background-color: #fff;
}

.introSection .le-wrap,
.introSection .ri-wrap {
    width: 50%;
}

.introSection .ri-wrap {
    padding-left: 18.9%;
}

.introSection .intro-icon {
    max-width: 148px;
}

.introSection .intro-title {
    font-family: "Tenada , sans-serif";
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-top: 40px;
}

.introSection .intro-info {
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin-top: 24px;
    line-height: 1.41;
}

.introSection .btn-group {
    margin-top: 48px;
}

#fullpage .introSection .btn {
    font-size: 14px;
    color: #fff;
}

#fullpage .introSection .btn-more i {
    font-size: 19px;
    color: #fff;
}

.introSection .btn-outline-default {
    background-color: transparent;
    border: 1px solid #fff;
}

#fullpage .btn {
    color: #202020;
}

#fullpage .btn:hover {
    color: #fff;
}

#section4 .btn:hover {
    background-color: #496781;
    border: 1px solid #496781;
    transition: 0.3s;
}

@media screen and (max-width: 1664px) {
    .introSection .ri-wrap {
        padding-left: 5%;
    }
}

@media screen and (max-width: 1638px) {
    #fp-nav {
        left: 40px;
    }
    .bgSection .inner-wrap .container {
        padding-left: 80px;
    }
}

@media screen and (max-width: 1298px) {
    .bgSection .inner-wrap .fluid-img-wrap {
        max-width: 480px;
    }

    .bgSection .inner-wrap .container {
        gap: 520px;
    }
}

@media screen and (max-width: 1080px) {
    .slideSection {
        min-height: 812px;
        height: 100%;
    }

    .slideSection .swiper-slide.mb {
        display: block;
    }

    .slideSection .swiper-slide.pc {
        display: none;
    }

    .slideSection .flued-img-wrap {
        min-height: 812px;
    }

    .slideSection .flued-img-wrap::before {
        padding-top: 100%;
    }

    #fullpage .introSection .btn {
        max-width: 170px;
        height: 45px;
        line-height: 45px;
        padding: 0 20px;
        font-size: 14px;
    }

    .slideSection .slide-content-wrap {
        left: 2%;
        top: unset;
        bottom: 40px;
        width: 90%;
    }

    .slideSection .slide-content-wrap .content-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .slideSection .slide-content-wrap .content-sub {
        font-size: 14px;
        line-height: 1.31;
    }

    .slideSection .swiper-controll-wrap {
        top: unset !important;
        left: 2% !important;
        bottom: 5% !important;
        width: fit-content;
    }

    .slideSection .index-pagination .swiper-pagination-bullet {
        font-size: 12px;
    }

    .introSection .le-wrap,
    .introSection .ri-wrap {
        width: 100%;
    }

    .introSection .inner-wrap {
        flex-direction: column;
        gap: 50px;
        margin-left: unset;
    }
    .introSection .ri-wrap {
        padding-left: unset;
    }

    .introSection .inner-wrap:after {
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        height: 1px;
        width: calc(100% - 40px);
    }

    .introSection .intro-icon {
        max-width: 80px;
    }

    .introSection .intro-title {
        font-size: 28px;
        margin-top: 30px;
    }

    .introSection .intro-info {
        font-size: 14px;
        line-height: 1.43;
        margin-top: 10px;
    }

    .introSection .btn-group {
        margin-top: 30px;
    }

    #fp-nav {
        display: none;
    }

    .bgSection:not(:last-child) {
        margin-bottom: 80px;
    }

    .bgSection .section-num {
        display: none;
    }

    .bgSection .type-list {
        display: none;
    }

    .bgSection .bg-box {
        display: none;
    }

    .bgSection .inner-wrap .container {
        gap: unset;
        max-width: unset;
        flex-direction: column;
        padding: unset;
        gap: 30px;
    }

    .bgSection .inner-wrap .fluid-img-wrap {
        position: relative;
        transform: unset;
        order: 1;
        max-width: unset;
        left: unset;
    }

    .bgSection .inner-wrap .fluid-img-wrap img {
        border-radius: unset;
    }

    .bgSection .inner-wrap {
        position: unset;
        transform: unset;
    }

    .bgSection .content-wrap {
        order: 2;
        width: 100%;
        padding: 0 20px;
    }

    .introSection .section-container {
        position: unset;
        transform: unset;
        padding: 64px 0;
    }

    .introSection .btn-outline-default,
    .introSection .btn-outline-default i {
        color: #fff;
    }

    .introSection .btn-outline-default {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .bgSection .content-wrap .sub-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .bgSection .content-wrap .box-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .bgSection .content-wrap .item-txt {
        font-size: 14px;
    }

    .bgSection .content-wrap .btn-group {
        margin-top: 40px;
    }

    .bgSection .btn-outline-default {
        max-width: 170px;
        height: 45px;
        line-height: 45px;
        padding: 0 20px;
        font-size: 14px;
    }

    #fullpage .bgSection .btn-outline-default {
        color: #fff;
    }

    .bgSection .content-wrap .info-list-item::before {
        width: 1.5px;
    }

    .introSection .btn-outline-default {
        max-width: 170px;
        height: 45px;
        line-height: 45px;
        color: #fff;
        padding: 0 20px;
    }
}

/* 251217 2차 개발 수정 내용 */

/* 메인페이지 */
.index-slide {
    margin: 0;
    position: absolute;
}
.index-slide .index-slide-pagiantion {
    opacity: 0;
    position: absolute;
    left: 8.125vw;
    top: 40vh;
    bottom: unset;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9;
}
.index-slide .index-slide-pagiantion .swiper-pagination-bullet {
    margin: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: none;
    position: relative;
    opacity: 1;
    transition: 0.3s;
}
.index-slide .index-slide-pagiantion .swiper-pagination-bullet::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
}
.index-slide .index-slide-pagiantion .swiper-pagination-bullet-active {
    border-color: #fff;
}

.index-txt-slide {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.index-txt-slide .swiper-wrapper {
    transition-timing-function: linear;
    display: flex;
    align-items: center;
}

.index-txt-slide .swiper-slide {
    width: auto;
    flex-shrink: 0;
}

.index-txt-storke {
    font-size: 120px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #bec1d2;
    text-stroke: 1px #bec1d2;
    white-space: nowrap;
    margin: 0;
    line-height: 1.4;
    margin-top: -0.3em;
}

/* 풀페이지 수정 본 */
.index { background: #484848; }
.s1 .circle { opacity: 0; }
.index-slide { position: static; width: 100vw; height: 100vh; border-radius: 0; }
.s1 .txt-wrap, .s1 .index-slide-pagiantion { opacity: 1; }
.s2 { height: 100vh; background-color: #fff; }
.s3 .img-wrap { width: 100vw; height: 100vh; border-radius: 0; bottom: 0; }
.s3 .s3-txt-wrap { y: 0; }
.s3 .s3-txt { opacity: 1; }
.s3 .s3-btn { opacity: 1; }
.s4 .fp-tableCell { width: 100%; height: auto !important; }
.fp-section {
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media screen and (max-width: 1536px) {
    .index-slide .index-slide-pagiantion {
        top: 24vh;
    }
    .index-txt-storke {
        font-size: 80px;
    }
}

@media screen and (max-width: 1280px) {
    .index-slide .index-slide-pagiantion {
        left: 16px;
        top: unset;
        bottom: 464px;
    }
    .index-txt-storke {
        font-size: 96px;
    }

    /* 풀페이지 수정 본 */
    .s2 { height: auto; }
    .fp-section, .fp-tableCell { height: auto !important; min-height: 100vh; }
    .fp-auto-height, .fp-auto-height .fp-tableCell { min-height: unset; }
}

/* Publications */
.btn-wrap.per6 {
    gap: 5px;
}
.btn-wrap.per6 .btn {
    width: calc((100% - 5px * 5) / 6);
}

@media screen and (max-width: 768px) {
    .btn-wrap.per6 {
        margin-bottom: 24px;
    }
    .btn-wrap.per6 .btn {
        width: calc((100% - 5px * 2) / 3);
    }
}

/* resources - Grants */
/* .project-list-wrap .inner-wrap .list-row-item:nth-child(1),
.project-list-wrap .conference-list_hd li:nth-child(1) {
    width: 5%;
}
.project-list-wrap .inner-wrap .list-row-item:nth-child(2),
.project-list-wrap .conference-list_hd li:nth-child(2) {
    width: 5%;
}
.project-list-wrap .inner-wrap .list-row-item:nth-child(3),
.project-list-wrap .conference-list_hd li:nth-child(3) {
    width: 15%;
}
.project-list-wrap .inner-wrap .list-row-item:nth-child(4),
.project-list-wrap .conference-list_hd li:nth-child(4),
.project-list-wrap .inner-wrap .list-row-item:nth-child(n + 6),
.project-list-wrap .conference-list_hd li:nth-child(n + 6) {
    width: 10%;
}
.project-list-wrap .inner-wrap .list-row-item:nth-child(5),
.project-list-wrap .conference-list_hd li:nth-child(5) {
    width: 35%;
} */

/* board - photo */
.photo-slide-container {
    position: relative;
    padding: 0 160px;
    padding-bottom: 64px;
}
.photo-slide {
    width: 700px;
}
.photo-slide .swiper-slide {
    width: 100%;
    padding-top: 100%;
    position: relative;
}
.photo-slide .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.photo-slide-button-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.photo-slide-button-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.photo-slide-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.photo-slide-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
    transition: 0.3s;
    margin: 0;
}
.photo-slide-pagination .swiper-pagination-bullet-active {
    background: #496781;
}

@media screen and (max-width: 768px) {
    .photo-slide-container {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 32px;
        width: 100%;
    }
    .photo-slide {
        width: 100%;
    }
    .photo-slide-button-prev,
    .photo-slide-button-next {
        display: none;
    }
    .photo-slide-pagination {
        gap: 8px;
    }
    .photo-slide-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}
