@charset "utf-8";

.link__yellow {
    --color-title: #9B5800;
    --color-point: #FFAC0D;
}

.link__blue {
    --color-title: #194687;
    --color-point: #7074FF;;
}

.link__pink {
    --color-title:#8E095E;
    --color-point:#C41284;
}
/* st 20250115 수정 */
.link__green {
    --color-title:#0B7D62;
    --color-point:#0B7D62;
}
/* st 20250115 수정 */

body {
    font-family: "pretendard", "Nanum Gothic", "Apple SD Gothic Neo", Helvetica, Arial, sans-serif;
}

body:has(.dim.active) {
    overflow-y: hidden;
}

#wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 320px;
}


.btn {
    font-weight: 500;
    border-radius: 3px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    box-sizing: border-box;
    font-family: inherit;
}

.dim {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    transition: all .15s ease-in;
}

.dim.active {
    visibility: visible;
    opacity: .3;
}

/* 헤더 */
.header-stage {
    box-sizing: border-box;
    padding: 0 20px;
    position: fixed;
    z-index: 9; /* 20250115 수정 */
    top: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    max-width: 1780px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    margin: 0 auto;
}

.header__left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 160px;
}

.header__logo {
    display: block;
}

.header__logo>img {
    width: 100%;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 0 80px;
}

.header__navi {
    display: block;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    padding: 10px;
    color: #000000;
}

.header__right {
    display: flex;
    align-items: center;
}

.header-sns__lists {
    display: flex;
    align-items: center;
    gap: 0 13px;
}

.header-sns__link {
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.header-sub__btn {
    display: none;
    border: 0;
    background-color: #fff;
    width: 35px;
    height: 35px;
    position: relative;
    padding: 0;
    cursor: pointer;
}

.header-sub-bar {
    background-color: #333;
    width: 25px;
    height: 2px;
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 50%;
    left: calc(50%);
    transform: translate(-50%, -50%);
    transition: all .15s ease-in;
}

.header-sub-bar::before,
.header-sub-bar::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 2px;
    background-color: #333;
    position: absolute;
    left: 50%;
    transition: all .15s ease-in;
    transform: translate(-50%, -50%);
}

.header-sub-bar::before {
    top: calc(50% - 8px);
}

.header-sub-bar::after {
    top: calc(50% + 8px);
}

.header-sub__btn.active .header-sub-bar {
    height: 0;
}

.header-sub__btn.active .header-sub-bar::before,
.header-sub__btn.active .header-sub-bar::after  {
    top: 50%;
}

.header-sub__btn.active .header-sub-bar::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.header-sub__btn.active .header-sub-bar::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.header-sub-wrapper {
    position: absolute;
    background-color: #fff;
    width: 100%;
    top: 71px;
    left: 0;
    padding: 10px 10px 20px;
    border-radius: 0 0 20px 20px;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transition: all .15s ease-in;
}

.header-sub-wrapper.active {
    visibility: visible;
    opacity: 1;
}

.header-sub__list+ .header-sub__list {
    padding-top: 10px;
}

.header-sub {
    display: block;
    padding: 10px;
    color: #333;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    
}

@media screen and (min-width : 1024px) {
    .header__navi:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width : 1399px) {
    .header__left {
        gap: 0 100px;
    }
    .header__nav {
        gap: 0 36px;
    }
}
@media screen and (max-width : 1199px) {
    .header__left {
        gap: 0 30px;
    }
    .header__navi {
        font-size: 18px;
    }
    .header-sns__lists {
        gap: 0 10px;
    }

    .header__nav {
        gap: 0 30px;
    }
}

@media screen and (max-width : 1023px) {
    .header-wrapper {
        height: 70px;
    }
    .header-sns__lists,
    .header__nav {
        display: none;
    }
    .header-sub__btn {
        display: block;
    }
    .header__logo {
        width: 120px;   
    }
}

/* 푸터 */
.footer-stage {
    background-color: #F3F3F3;
    padding: 46px 0;
}

.footer-wrapper {
    max-width: 1555px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px 10px;
}

.footer__fnb {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__sns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 3px;
}

.footer__btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
}

.footer__btn {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border-radius: 5px;
    padding: 0 10px;
}

.footer__btn + .footer__btn {
    margin-left: 16px;
}

.btn-top {
    margin-left: 25px;
}

.footer__bottom {
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 20px 13px;
    justify-content: center;
}

.copyright {
    font-size: 14px;
    line-height: 1.215;
    color: #000000;
    word-break: keep-all;
    letter-spacing: -0.02em;
}

@media screen and (max-width : 1199px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 12px 0;
    }
    .footer__fnb {
        width: 100%;
        justify-content: space-between;
    }
    .footer-stage {
        padding: 20px 0;
    }
    .footer__link {
        justify-content: center;
    }
}
@media screen and (max-width : 1023px) {
    .copyright {
        text-align: center;
    }
}

@media screen and (max-width : 639px) {
    .footer__fnb {
        flex-direction: column;
    }
    .footer__copyright {
        flex-direction: column;
    }
    .footer__btns {
        width: 100%;
        gap: 0 10px;
    }
    .footer__btn {
        flex: 1 0;
    }
    .btn-top {
        margin-left: 0;
    }
    .footer__btn + .footer__btn {
        margin-left: 0;
    }
}
@media screen and (max-width : 576px)  {
    .footer__sns {
        width: 100%;
        justify-content: center;
    }
    .footer__bottom {
        flex-direction: column;
    }
    .footer__btn {
        font-size: 12px;;
    }

}

/* 메인 */
.main-stage {
    padding: 91px 20px 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    background-color: #F3FAFF;
    min-height: calc(100% - 140px);
    background: url(../images/main/main-wrapper__bg.png) no-repeat center;
    background-size: cover;
}

.main-wrapper {
    padding: 164px 0 74px;
    box-sizing: border-box;
    border-radius: 50px 0 0 84px;
    transition: all .15s ease-in;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 20px;
    min-height: calc(100vh - 236px);
    max-width: 1515px;
    margin: 0 auto;
    position: relative;
}

.main-wrapper .main-banner {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-color: #1C2A42;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-wrapper .main-banner .text {
    max-width: 896px;
    width: calc(100% - 40px);
    height: 56px;
    background: url('../images/main_banner_pc.png') no-repeat center/100%;
}

.main-wrapper .headline {
    font-family: 'GangwonEduPower';
    word-break: keep-all;
    flex: 1 0;
    max-width: fit-content;
}
.main-wrapper .headline .text {
    width: fit-content;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #0081EA;
    color: #FFFFFF;
    font-size: 21px;
    font-weight: 600;
    font-family: 'pretendard';
    line-height: 1.191;
    margin: 0 auto;
}
.main-wrapper .headline .title-area {
    margin-top: 24px;
}
.main-wrapper .headline .title-area p {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    color: #272727;
    letter-spacing: -0.02em;
    line-height: 1.033;
    font-size: 61px;
}
.main-wrapper .headline .title-area p br {
    display: none;
}
.main-wrapper .headline .title-area p span {
    display: inline-block;
    font-size: 84px;
    line-height: 1.23;
}
.main-wrapper .headline .title-area p:nth-of-type(1)::after {
    content: "";
    width: 59px;
    height: 59px;
    background: url('../images/main_deco.png') no-repeat center/100%;
    position: absolute;
    right: 0;
    top: -19px;
    transform: translateX(100%);
}
.main-wrapper .headline .title-area p:nth-of-type(1) span {
    background: linear-gradient(to bottom, #746BC2, #0B0066);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.main-wrapper .headline .title-area p:nth-of-type(2) span {
    background: linear-gradient(to bottom, #FFC13C, #E59A0F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main__tit {
    padding-bottom: 40px;
}

.main__tit>p {
    font-size: 66px;
    line-height: 75px;
    font-weight: 900;
    text-align: center;
}

.blue {
    color: #005EB1;
}

.darkblue {
    color: #221752;
}

.main-link__links {
    box-sizing: border-box;
    max-width: 500px;
    width: 33.004%;
    flex: none;
}

.main-link__links .main_btn {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 14px;
    width: 100%;
}

.main-link__links .main_btn li {
    width: calc(calc(100% - 14px)/2)
}
.main-link__links .main_btn li a {
    display: block;
    background-color: #ffffff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 55px 0 30px;
    text-align: center;
    transition: all .15s ease-in;
}
.main-link__links .main_btn li a img {
    width: 65px;
    display: block;
    margin: 0 auto;
}
.main-link__links .main_btn li a p {
    text-align: center;
    margin-top: 32px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}
.main-link__links .link-event {
    display: block;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}
.main-link__links .link-event img {
    width: 100%;
    display: block;
}

.main-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 35px 30px 50px 40px;
    box-sizing: border-box;
    width: 370px;
    height: 225px;
    border-radius: 35px;
    background-color: #fff;
    transition: all .15s ease-in;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.main-link.link__yellow {
    background-image: url(../images/main/main-link_deco-1.svg);
    background-position: left 28px bottom 38px;
}

.main-link.link__blue {
    background-image: url(../images/main/main-link_deco-2.svg);
    background-position: left 41px bottom 40px;
}

.main-link.link__pink {
    background-image: url(../images/main/main-link_deco-3.svg);
    background-position: left 42px bottom 47px;
}
/* st 20250115 수정 */
.main-link.link__green {
    justify-content: flex-end;
    align-items: center;
    background-image: url(../images/main/main-link_deco-4.svg);
    background-position: top 40px center;
    width: 290px;
}
/* ed 20250115 수정 */

.main-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 16px;
    border-radius: 0 0 35px;
    background-color: var(--color-point);
    position: absolute;
    bottom: 0;
    left: 0;
}

.main-link__sub {
    font-size: 20px;
    font-weight: 600;
    line-height: 29px;
    color: #3E3E3E;/* st 20250115 수정 */
}

.main-link__tit {
    font-size: 50px;
    line-height: 59px;
    font-weight: 900;
    text-align: right;
    color: var(--color-title);
}

@media screen and (min-width:1024px) {
    .main-link__links .main_btn li a:hover {
        box-shadow: 0 0 15px #ffb158;
    }
}

/* st 20250115 수정 */
@media screen and (max-width: 1439px) {
    .main-link__tit {
        font-size: 38px;
        line-height: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .main-wrapper {
        gap: 80px 15px;
    }
    .main-wrapper .headline {
        max-width: 100%;
    }
    .main-link__links .main_btn li a {
        padding: 40px 0 30px;
    }
    .main-link__links .main_btn li a img {
        width: 55px;
    }
    .main-link__links .main_btn li a p {
        margin-top: 20px;
    font-size: 20px;
    }
    .main-link {
        flex:  1 1 calc(50% - 10px);
        width: 25%;
        padding: 35px 20px 30px;
        background-position: left 20px bottom 30px;
    }
}

@media screen and (max-width:1023px) {
    .main-stage {
        padding: 71px 20px 0;
    }
    .main-wrapper {
        flex-direction: column;
    }
    .main-wrapper .headline .title-area p br {
        display: block;
    }
    .main-link__links {
        max-width: 100%;
        width: 100%;
    }
    /* ed 20250115 수정 */
    .main__tit>p {
        font-size: 40px;
        line-height: 50px;
    }
    .main__tit {
        padding-bottom: 20px;
    }
    .main-link__sub {
        font-size: 18px;
        line-height: 24px;
    }
    .main-link__tit {
        font-size: 30px;
        line-height: 36px;
    }
    
}

@media screen and (max-width:767px) {
    .main-link__links {
        flex-direction: column;
    }
    .main__tit>p {
        font-size: 30px;
        line-height: 40px;
    }
    /* st 20250115 최유림 수정 */
    .main-link.link__green,
    .main-link {
        width: 100%;
        min-height: 180px;
        background-size: auto 60px;
        border-radius: 30px;
    }
    .main-link:not(.link__green)  {
        background-position: left 30px bottom 30px;
    }
}

@media screen and (max-width: 641px) {
    .main-wrapper {
        padding: 195px 0 60px;
        gap: 56px 15px;
    }
    

    .main-wrapper .main-banner {
        height: auto;
        padding: 25px 0;
    }

    .main-wrapper .main-banner .text {
        max-width: 360px;
        height: 85px;
        background: url('../images/main_banner_mo.png') no-repeat center/100%;
    }

    .main-wrapper .headline .text {
        padding: 8px 24px;
        font-size: 18px;
    }
    .main-wrapper .headline .title-area p {
        font-size: 45px;
    }
    .main-wrapper .headline .title-area p:nth-of-type(1)::after {
        width: 46px;
        height: 46px;
        top: -12px;
    }
    .main-wrapper .headline .title-area p span {
        font-size: 60px;
    }
}

@media screen and (max-width: 576px) {
     .main-link.link__green,
     .main-link {
         background-size: auto 50px;
     }
     /* ed 20250115 최유림 수정 */
}

@media screen and (max-width: 481px) {
    .main-wrapper {
        padding: 155px 0 45px;
        gap: 40px 15px;
    }
    .main-wrapper .main-banner {
        padding: 15px 0;
    }
    .main-wrapper .main-banner .text {
        height: auto;
        padding-top: 20%;
    }
    .main-wrapper .headline .text {
        padding: 5px 16px;
        font-size: 15px;
    }
    .main-wrapper .headline .title-area p {
        font-size: 30px;
    }
    .main-wrapper .headline .title-area p span {
        font-size: 38px;
    }
    .main-wrapper .headline .title-area p:nth-of-type(1)::after {
        width: 30px;
        height: 30px;
        top: -5px;
    }
    .main-link__links .main_btn li a {
        padding: 30px 0;
    }
    .main-link__links .main_btn li a img {
        width: 48px;
    }
    .main-link__links .main_btn li a p {
        margin-top: 16px;
        font-size: 16px;
    }
}

/* 서브 */
.sub-tit-stage {
    margin-top: 90px;
    height: 210px;
    background-color: #F3FAFF;
    background-image: url(../images/sub-tit_bg.jpg);
    background-repeat: no-repeat;
    position: relative;
}

.sub-tit-stage > p {
    font-size: 55px;
    line-height: 65px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #22184F;
    transform: translate(-50%, -50%);
}

.section-wrapper {
    padding: 50px 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.section-wrapper>.title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.section-wrapper .title-wrap h3.title {
    font-family: 'pretendard';
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.section-wrapper .title-wrap>*:nth-child(2) {
    margin: 0 1rem;
}

.section-wrapper .title-wrap .btn-down {
    color: #194687;
    padding: .5rem 1rem;
    cursor: pointer;
}

.section-wrapper .title-wrap .btn-down:hover {
    background-color: #ccc;
}

@media screen and (max-width : 1199px) {
    .sub-tit-stage > p {
        font-size: 40px;
        line-height: 50px;
    }
}

@media screen and (max-width : 1023px) {
    .sub-tit-stage {
        margin-top: 70px;
        background-position: right 0;
    }
    .sub-tit-stage > p {
        font-size: 32px;
        line-height: 44px;
    }
}
/* 슬라이드 */
.slide-wrapper {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.slide-wrapper .next {
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 2em;
    color: gray;
    cursor: pointer;
}

.slide-wrapper .prev {
    position: absolute;
    top: 50%;
    left: 30px;
    font-size: 2em;
    color: gray;
    cursor: pointer;
}

.slide-wrapper .post-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slide-wrapper .post-wrapper .post {
    display: inline-block;
}

.slide-wrapper .post-wrapper .post .post-info {
    font-size: 15px;
    height: 30%;
    padding-left: 10px;
}

.slide-wrapper .post-wrapper .post .slider-image {
    width: 100%;
    height: 100%;
}

/* st 20250115 수정 */
.slide-wrapper .slick-arrow {
    z-index: 8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background-color: transparent;
    padding: 0;
}
/* ed 20250115 수정 */

.slide-wrapper .slick-arrow.slick-prev::after {
    content: '';
    display: block;
    background: url('../images/btn_prev.png');
    width: 44px;
    height: 84px;
    cursor: pointer;
}

.slide-wrapper .slick-arrow.slick-prev {
    left: 5%;
}

.slide-wrapper .slick-arrow.slick-next {
    right: 5%;
}

.slide-wrapper .slick-arrow.slick-next::after {
    content: '';
    display: block;
    background: url('../images/btn_next.png') no-repeat;
    width: 44px;
    height: 84px;
    cursor: pointer;
}

.slide-wrapper .slick-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0 10px;
    gap: 10px 5px;
}

.slide-wrapper .slick-dots li button {
    cursor: pointer;
    width: 34px;
    height: 36px;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.slide-wrapper .slick-dots li.slick-active button {
    background-color: #4991D0;
    font-weight: 600;
    color: #fff;
}

/* 보도자료 */
.report-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.report-wrapper .report-wrap {
    width: 80%;
    margin: 0 auto;
}

.report-wrapper .report-wrap .report img {
    display: block;
    width: 100%;
}

.report-wrapper .up-down-wrap {
    top: 50%;
    z-index: 999;
    position: fixed;
    right: 20%;
    display: flex;
    flex-direction: column;
}

.report-wrapper .up-down-wrap a {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 3px 9px 0px #00000030;
    background-color: #fff;
    border-radius: .5rem;
    padding: .5rem .75rem;
    border: 1px solid #ccc;
}

.report-wrapper .up-down-wrap a:hover {
    background-color: #eee;
}

.report-wrapper .up-down-wrap a span {
    font-size: 14px;
    font-family: 'pretendard';
    color: #000;
    font-weight: 500;
}

/* 카드 & 동영상 */
.tab-menu-wrapper {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

.tab-menu-wrapper .menu {
    cursor: pointer;
    display: block;
    font: 24px 'GongGothic';
    width: 300px;
    border: 1px solid #ccc;
    padding: .8rem 0;
}

.tab-menu-wrapper .menu.active {
    background-color: #eee
}

.tab-menu-wrapper .menu:first-child {
    border-top-left-radius: 5px;
}

.tab-menu-wrapper .menu:last-child {
    border-top-right-radius: 5px;
}

.tab-menu-wrapper .menu:not(:last-child) {
    border-right: 0;
}


/* 카드 뉴스 */
.card__lists {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    justify-content: center;
}

.card__list {
    flex: 1 1 calc(33.33% - 20px*3 / 4);
    max-width: calc(33.33% - 20px*3 / 4);
    width: 100%;
}

.card__link {
    display: block;
}

.card__link>img {
    width: 100%;
}

.card__tit {
    border: 1px solid #ddd;
    border-top: 0;
    padding: 20px 10px;
    box-sizing: border-box;
}

.card__tit > p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
} 

@media all and (max-width: 1199px) {
    .card__tit>p {
        font-size: 16px;
        line-height: 20px;
    }
    
}
@media all and (max-width: 1023px) {
    .card__list {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}
@media all and (max-width: 576px) {
    .card__list {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/****************************** 반응형 ******************************/
@media all and (max-width: 1440px) {
    .report-wrapper .up-down-wrap {
        right: 15%;
    }

    .footer-wrapper .bottom-wrap {
        position: relative;
    }
}

@media all and (max-width: 1280px) {
    .report-wrapper .up-down-wrap {
        right: 10%;
    }
}



@media all and (max-width: 767px) {
    .report-wrapper .up-down-wrap a {
        padding: .25rem .5rem;
    }

    .post-slider .post-wrapper .post img {
        display: block;
        width: 100%;
    }

    .slide-wrapper .post-wrapper .post img {
        max-width: 100%;
    }

}

@media all and (max-width: 480px) {
    .section-wrapper .title-wrap {
        flex-direction: column;
    }

    .section-wrapper .title-wrap h3.title {
        margin-bottom: 1rem;
    }

    .slide-wrapper .slick-arrow {
        display: none !important;
    }

    .report-wrapper .report-wrap {
        width: 100%;
    }
    .post-slider .slick-arrow {
        display: none !important;
    }

    .tab-menu-wrapper .menu {
        width: 200px;
        font-size: 18px;
    }

}

.img-view-stage {
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
}
.img-view-stage img {
    width: calc(100% - 40px);
    max-width: 800px;
}