.header-main {
    width: 100%;
}

.contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px 10px 50px;
}

.contact .con-left {
    background: linear-gradient(to right, #258995, #2076c6);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.contact .con-left span {
    position: relative;
}

.contact .con-left span:nth-child(1)::before {
    font-family: "Font Awesome 6 Free";
    content: '\f095';
    font-weight: 900;
    padding-right: 10px;
}

.contact .con-left span:nth-child(2) {
    padding-left: 6px;
}

.contact .con-left span:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1px;
    transform: translate(0, -50%);
    width: 1px;
    height: 10px;
    background: #fff;

}

.contact .con-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact .con-right .info {

    display: flex;
    margin-right: 30px;
}

.contact .con-right .info a {
    display: inline-block;
    padding-right: 10px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.contact .con-right .con-sns a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f6f6f6;
    padding: 12px;
    border-radius: 50px;
    margin-right: 10px;
}

.contact .con-right .con-sns a:last-child {
    margin-right: 0px;
}

.contact .con-right .con-sns a i {
    font-size: 18px;
}

.head-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url(../images/header_back.jpg)no-repeat;
    width: 100%;
    max-width: 1820px;
    margin: 0 auto;
}

.active {
    position: fixed;
    height: 110px;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ececec;
    z-index: 99;
    background: #ffffffe0;
    transition: all 500ms ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: unset;
    padding: 0 50px;
}

.active-m {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    border-bottom: 1px solid #ececec;
    z-index: 99;
    background: #fff;
    transition: all 500ms ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.head-nav .logo {
    padding: 30px 0px 0px 50px;
}

.head-nav.active .logo {
    padding: 0;
}

.head-nav .logo img {
    width: 90%;
    max-width: 330px;
}

.head-nav .nav {
    display: flex;
    gap: 60px;
}

.head-nav .nav>li {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    position: relative;
    padding: 20px 0;
}

.head-nav .nav>li>a {
    white-space: nowrap;
}

.head-nav .nav>li>ul {
    display: none;
    position: absolute;
    opacity: 0;
    z-index: 5;
    left: 50%;
    top: 60px;
    min-width: 160px;
    transform: translateX(-50%);
    padding: 8px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #ddd;
    background: #fff;
    transition: top .3s ease;
}


.head-nav .nav>li>ul>li {
    font-size: 16px;
    margin: 10px 0;
}

.head-nav .nav>li>ul>li>a {
    display: block;
    padding: 10px 0;
    border-radius: 5px;
    transition: all .3s ease;
    font-weight: 500;
}

.head-nav .nav>li>ul>li:hover>a {
    background: #f3f8f8;
    color: #222;
}

.head-nav .search-bar {
    padding-right: 50px;
}

.head-nav.active .search-bar {
    padding-right: 0;
}


.head-nav .search-bar i {
    font-size: 26px;
}

.head-nav .logo .m_logo {
    display: none;
}

@media (max-width:1500px) {
    .head-nav .nav {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .contact {
        display: none;
    }

    .head-nav {
        width: 100% !important;
        background: #ffffffe6;
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
    }

    .head-nav .nav {
        display: none;
    }

    .head-nav .logo {
        padding: 0px !important;
    }

    .head-nav .search-bar {
        padding-top: 0;
        padding-right: 0;
    }

    .head-nav .search-bar a:last-child {
        padding-left: 0px;
    }

    .head-nav .logo .pc_logo {
        display: none;
    }

    .head-nav .logo .m_logo {
        display: block;
        width: 83px;
        height: 48px;
    }

}

/* 모바일 슬라이드 네비게이션 */

.sidebar-overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
}

.sidebar {
    position: fixed;
    background: #fff;
    top: 0;
    right: -100%;
    width: 25%;
    height: 100%;
    padding: 50px;
    z-index: 99999;
    transition: all 0.8s;
    overflow: scroll;
}

.sidebar .side-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.sidebar .side-top .side-logo img {
    width: 60%;
}

.sidebar .side-top i {
    font-size: 24px;
    cursor: pointer;
}



.sidebar .side-nav .down-icon {
    color: #b9b9b9;
}

.sub-mobile>li>a {
    display: block;
    line-height: 40px;
    font-size: 14px;
}

.sidebar .sub-mobile {
    display: none;
}

.sidebar .sub-mobile li {
    color: #555;
    padding-left: 16px;
    border-bottom: 1px solid #f1f1f1;
}

.sidebar .side-expand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ececec;
    padding: 15px 0;
}

.sidebar .side-nav-inner {
    display: none;
}

.sidebar .side-nav>li>a {
    font-size: 20px;
    font-weight: 600;

    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ececec;
    padding: 15px 0;
}

.sidebar .side-nav>li>ul>li>a {
    display: block;
    border-bottom: 1px solid #f5f5f5;
    line-height: 24px;
    font-size: 16px;

    padding: 10px 0 10px 8px;
    font-weight: 500;
    color: #333;
}

.sidebar .links {
    display: flex;
    gap: 10px;
    font-size: 14px;
    padding: 20px 0;
    font-weight: 500;
    color: #555;

}

.sidebar-btn {
    background: none;
    border: none;
}

.sidebar.on {
    right: 0;
}

.on {
    display: block;
}

.move {
    transform: rotate(180deg);
}

.sidebar .side-nav .side-expand.on .down-icon {
    transform: rotate(180deg);
}


@media screen and (max-width: 1024px) {
    .sidebar {
        width: 100%;
        padding: 40px;
    }

    .sidebar .side-close-btn {
        margin-top: 20px;
    }

    .sidebar .side-top i {
        font-size: 28px;
    }

    .sidebar .links {
        display: flex;
        gap: 10px;
        font-size: 14px;
        font-weight: 500;
        color: #555;
    }

    .sidebar .side-nav>li>a {
        font-size: 16px;
    }

    .sidebar .side-nav>li>ul>li {
        font-size: 14px;
    }

    .sidebar .mobile-expand {
        padding: 10px 0;
        font-weight: 500;
        font-size: 14px;
        box-sizing: border-box;
        color: #333;
    }

    .sub-mobile>li>a {
        font-size: 12px;
    }

    .sidebar .side-nav>li>ul>li>a {
        font-size: 14px;
    }



}

/* 메인슬라이드 */
.main-slide {
    max-width: 1820px;
    padding: 0 50px;
}

.color1 {
    color: #555;
}

.color2 {
    color: #0e49a1;
}

.color3 {
    color: #0a246d;
}

.color4 {
    color: #0e49a1;
    font-weight: 800;
}


.main-slide .slide-txt {
    position: relative;

    border-radius: 0 36px 36px 36px;
}

.main-slide .slide01 {
    background-image: url(../images/main_slide01.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 689px;

}

.main-slide .slide01 h2 {
    font-size: 50px;
    font-weight: 700;
}

.main-slide .slide-txt p {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
}

.main-slide .slide02 {
    background-image: url(../images/main_slide02.png);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 689px;

}

.main-slide .slide03 {
    background-image: url(../images/main_slide03.png);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 689px;

}

.main-slide .slide04 {
    background-image: url(../images/main_slide04.png);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 689px;

}

.main-slide .slide05 {
    background-image: url(../images/main_slide05.png);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 689px;

}


.main-slide .slide-txt .slg {
    position: absolute;
    top: 200px;
    left: 150px;
    width: 100%;
    padding: 0;
    transform: translate(0, 0);
}

.main-slide .slide-txt h2 {
    font-size: 50px;
    font-weight: 700;
    color: #0a246d;
}

.main-slide .slide-txt a {
    width: 230px;
    height: 60px;
    background: linear-gradient(to right, #258995, #2076c6);
    color: #fff;
    margin-top: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.swiper-button-next:after {
    font-size: 22px !important;
    font-weight: 600;
}

.swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    background: #fff;
    border-radius: 50px;
    color: #222 !important;
    font-size: 14px !important;
    right: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after {
    font-size: 22px !important;
    font-weight: 600;
}

.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: #fff;
    border-radius: 50px;
    color: #222 !important;
    font-size: 14px !important;
    left: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-slide .main_next {
    right: 20px;
}

.main-slide .main_prev {
    left: 20px;
}

.m_br {
    display: none;
}

@media screen and (max-width: 1024px) {
    .main-slide {
        width: 100%;
        padding: 0px;
    }

    .main-slide .slide-txt {
        height: 100vh;
        border-radius: 0;
    }

    .main-slide .slide01 {
        background: url(../images/main-banner01-m.png)no-repeat center center/cover;
    }

    .main-slide .slide02 {
        background: url(../images/main-banner02-m.png)no-repeat center center/cover;
    }

    .main-slide .slide03 {
        background: url(../images/main-banner03-m.png)no-repeat center center/cover;
    }

    .main-slide .slide04 {
        background: url(../images/main-banner04-m.png)no-repeat center center/cover;
    }


    .main-slide .slide05 {
        background: url(../images/main-banner05-m.png)no-repeat center center/cover;
    }

    .main-slide .slide-txt .slg {
        position: absolute;
        top: 100px;
        left: 50%;
        width: 100%;
        padding: 0 20px;
        transform: translate(-50%, 0);
    }

    .main-slide .slide-txt p {
        margin-top: 8px;
        font-size: 16px;
        text-align: center;

        word-break: keep-all;
    }

    .main-slide .slide-txt h2 {
        font-size: 24px;
        text-align: center;
    }

    .main-slide .slide-txt a {
        width: 150px;
        height: 40px;
        font-size: 14px;

        margin-top: 0;

        position: absolute;
        top: 100px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .swiper-button-next:after {
        font-size: 12px !important;
        font-weight: 600;
    }

    .swiper-button-next {
        width: 24px !important;
        height: 24px !important;
        font-size: 14px !important;
        right: 20px;
    }

    .swiper-button-prev:after {
        font-size: 12px !important;
        font-weight: 600;
    }

    .swiper-button-prev {
        width: 24px !important;
        height: 24px !important;
        font-size: 14px !important;
        left: 20px;
    }

    .main-slide .main_next {
        right: 15px;
        top: 23%;
    }

    .main-slide .main_prev {
        left: 15px;
        top: 23%;
    }



    .main-slide .slide01 .slide-br {
        display: block;
    }


    .main-slide .slide03 .slide-br {
        display: block;
    }
}

@media(max-width: 480px) {
    .main-slide .slide-txt .slg {
        top: 30px;
    }

    .main-slide .slide-txt {
        height: 600px;
    }

    .main-slide .slide-txt h2 {
        font-size: 20px;
    }

    .main-slide .slide-txt p {
        font-size: 14px;
    }

    .main-slide .slide-br {
        display: none;
    }

    .main-slide .slide01 .slide-br {
        display: none;
    }

    .main-slide .slide02 .m_br {
        display: block;
    }

    .main-slide .main_next {
        right: 15px;
        top: 26%;
    }

    .main-slide .main_prev {
        left: 15px;
        top: 26%;
    }
}

@media (max-width: 400px) {



    .main-slide .slide-txt p {
        font-size: 13px;
    }

}

@media (max-width: 340px) {
    .main-slide .slide-br {
        display: none;
    }

    .main-slide .slide-txt .m_br {
        display: none;
    }

    .main-slide .slide03 .slide-br {
        display: none;
    }
}


/* 색션- 텍스트 about */
.section_txt {
    text-align: center;
    padding: 100px 0 10px;
}

.section_txt p {
    color: #ff6243;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section_txt h2 {
    color: #002c5a;
    font-size: 32px;
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .section_txt {
        padding: 30px 20px 0;
    }

    .section_txt h2 {
        color: #002c5a;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: -1px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 30px;
    }

}

/* 섹션1 진행교육 */
.section01 {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.section01 .title {
    max-width: 1320px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section01 .title h2 {
    font-size: 32px;
    font-weight: 700;
}

.section01 .title p {
    width: 100px;
    height: 42px;
}

.section01 .title p>a {
    font-size: 16px;
    line-height: 42px;
    text-align: center;
    display: block;
    border: 1px solid #cacaca;
    font-weight: 500;
}

.section01 .first-slide {
    text-align: center;
}

.section01 .ft-txt img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .section01 {
        padding: 30px 20px;
    }

    .section01 .title {
        padding: 0;
        margin-bottom: 20px;
    }

    .section01 .title h2 {
        font-size: 16px;
    }

    .section01 .title p {
        width: 80px;
        height: 26px;
    }

    .section01 .title p>a {
        font-size: 12px;
        line-height: 26px;
        font-weight: 500;
        text-align: center;
    }


}

/* 섹션2 기업후기 */
.section02 {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffece7, #ffffe8, #ebffe7);
    overflow-x: hidden;
}

.section02 img {
    width: 100%;
}



.section02 .title {
    text-align: center;
    margin-bottom: 50px;
}

.section02 .title h2 {
    font-size: 32px;
    font-weight: 700;
}

.section02 .title p {
    font-size: 18px;
    margin-top: 20px;
    font-weight: 500;
    color: #555;
    line-height: 30px;
}

.section02 .content {
    max-width: 100%;
    padding: 0 0;
}

.section02 .review {
    max-width: 600px;
    transition: 1s;
    background: #fff;
    margin: 0 20px;
    padding: 50px;
    border: 2px solid #dfdfdf;
    border-radius: 20px;

    /* 09.24 수정*/
    height: 860px;

    /* 09.25 수정*/
    display: flex !important;
    flex-direction: column;
    justify-content: space-between
}

.section02 .review img {
    width: 40%;
}

.center .review {
    opacity: 0.8;
    transition: all 300ms ease;
}

.center .review span {
    color: #555;
    display: block;
    margin-top: 20px;
    font-size: 16px;
}

.section02 .review.slick-center {
    background: #084b88;
    color: #fff;
    opacity: 1;
}


.section02 .review p {
    line-height: 38px;
    font-size: 26px;
    font-family: 'GangwonEdu_OTFBoldA';
    margin-bottom: 8px;
}


.section02 .review.slick-center span {
    color: #fff;
}

.section02 .review .se-img {
    margin-top: 50px;
    padding: 20px 0;
}

.section02 .review .util {
    position: relative;
    min-height: 108px;
}

.section02 .review .util::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #002c5a;
}

.section02 .review.slick-center .util::before {
    background: #fff;
}

.section02 .review .se-img span {
    margin-top: 10px;
    display: block;
}

.section02 .review .se-img img {
    display: block;
    width: 150px;
}

/* * {
    outline: 1px solid tomato;
} */

@media screen and (max-width: 1024px) {
    .section02 .title h2 {
        font-size: 16px;
    }

    .section02 {
        padding: 30px 0;
    }

    .section02 .title p {
        font-size: 13px;
        margin-top: 8px;
        padding: 0 20px;
        line-height: 16px;
    }

    .section02 .review {
        max-width: 378px;
        transition: 1s;
        background: #fff;
        padding: 20px;
        /* margin: 0 20px; */
        border: 2px solid #dfdfdf;
        border-radius: 20px;

        height: 460px;
    }

    .section02 .review p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 4px;
    }

    .section02 .title {
        margin-bottom: 20px;
    }

    .ft-txt p {
        font-size: 14px;
    }

    .center .review span {
        font-size: 14px;
    }

    .section02 .review .util::before {
        top: -40px;
    }

    .section02 .review .util {
        min-height: unset;
    }
}

@media (max-width: 390px) {
    .section02 .review {
        max-width: 350px;
    }

    .section02 .review p {
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .section02 .review {
        max-width: 335px;
    }
}

@media (max-width: 350px) {
    .section02 .review {
        max-width: 310px;
    }
}

/* 섹션3 기업 고객사 */
.section03 {
    background: url(../images/section3-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.section-inner {
    max-width: 1320px;
    padding: 100px 0;
    margin: 0 auto;
}

.section03 .title {
    text-align: center;
    margin-bottom: 50px;
}

.section03 .title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.section03 .logo-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.section03 .logo-slide .partner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.section03 .logo-slide .partner img {
    width: 70%;
}

.section03 .sec03_next {
    right: 0;
}

.section03 .sec03_prev {
    left: 0;
}

@media screen and (max-width: 1024px) {
    .section03 {
        background-size: cover;
    }

    .section03 .title {
        margin-bottom: 20px;
    }

    .section03 .title h2 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .section03 .logo-slide {
        grid-template-columns: repeat(2, 1fr);
    }

    .section03 .logo-slide .partner img {
        width: 100%;
    }

    .section03 .logo-slide .partner {
        padding: 20px 20px 0;
    }
}

/* 섹션4 기관현황 */
.section04 {
    background: url(../images/section4-bg.png)no-repeat center center/cover;
}

.section04 .title {
    text-align: center;
    margin-bottom: 50px;
}

.section04 .title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section04 .title p {
    line-height: 30px;
    font-size: 18px;
    color: #555;
}

.section04 .section4-main picture img {
    width: 100%;
    max-width: 1320px;
}

@media screen and (max-width: 1024px) {
    .section04 {
        background-size: cover;
        background-position: center;
    }

    .section04 .title {
        margin-bottom: 20px;
    }

    .section4-main img {
        width: 100%;
    }

    .section04 .title h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .section04 .title p {
        font-size: 13px;
        line-height: 18px;
    }
}

/* 섹션5 교육과정 */

.section05 .title {
    text-align: center;
    margin-bottom: 50px;
}

.section05 .title h2 {
    font-size: 32px;
    font-weight: 700;
}

.section05 .subject-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.section05 .subject-img img {
    border-radius: 20px;
    border: 1px solid #ececec;
    width: 100%;
}

.section05 .subject-txt {
    margin-top: 8px;
    text-align: center;
}

.section05 .subject-main p {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.section05 .subject-main span {
    display: inline-block;
    border: 1px solid #ececec;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 50px;
}

.section05 .more-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.section05 .more-btn button {
    background: transparent;
    width: 160px;
    height: 50px;
    border: 1px solid #555;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
}

.subject-main.toggle {
    display: none;
    opacity: 0;
    padding-top: 24px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media screen and (max-width: 1024px) {
    .section-inner {
        padding: 30px 20px;
    }

    .section05 .subject-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section05 .title h2 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .section05 .title {
        margin-bottom: 20px;
    }

    .section05 .subject-main p {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .subject-main.toggle {
        padding-top: 10px;
    }

    .section05 .subject-main span {
        font-size: 12px;
        padding: 0px 4px 0 0;
        border: none;
    }

    .section05 .subject-txt {
        text-align: center;
        margin-top: 4px;
    }

    .section05 .more-btn {
        margin-top: 20px;
    }

    .section05 .more-btn button {
        width: 80px;
        height: 26px;
        font-size: 12px;
    }
}

@media (max-width:480px) {

    .section05 .subject-main span {
        font-size: 10px;
    }


}

@media (max-width:360px) {
    .section05 .title h2 .main-br {
        display: block;
    }
}

/* 섹션6 기업수치표 */

.section06 {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #ffece7, #ffffe8, #ebffe7);
}

.section06 .section-inner {
    display: flex;
    justify-content: space-between;

    overflow: hidden;
}

.section06 .edu-left {
    width: 45%;
    background: #252525;
    border-radius: 20px;
    color: #fff;
    padding: 80px 50px;
}

.section06 .edu-left span {
    color: #9c9c9c;
    font-size: 16px;
}

.section06 .edu-left h1 {
    font-size: 32px;
    font-weight: 600;
    margin: 20px 0;
    line-height: 40px;
}

.section06 .edu-left p {
    word-break: break-all;
    line-height: 22px;
    font-size: 14px;
}

.section06 .edu-left a {
    width: 160px;
    height: 50px;
    background: #fb7044;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-top: 50px;
    font-weight: 600;
    font-size: 16px;
}

.section06 .section6-txt strong {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -50%) rotate(90deg);

    font-family: 'Roboto',
        'Noto Sans KR',
        sans-serif;
    font-size: 55px;
    font-weight: 800;
    color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: orange;

}

.section06 .section6-txt strong {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -50%) rotate(90deg);

    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    font-size: 55px;
    font-weight: 800;

    background: -webkit-linear-gradient(-86deg, #fb7044 5%, #ffb84d 53%, #ffd9b3 91%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    color: #ffffff;


}

.section06 .edu-right {
    width: 50%;
    padding: 0 50px;
}

.section06 .edu-right ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    position: relative;
}

.section06 .edu-right li {
    border: 5px solid #fb7044;
    width: 50%;
    height: 220px;
    border-radius: 20px;
    padding: 50px;
    position: absolute;
}

.section06 .edu-right li:nth-child(1) {
    top: 0;
    left: 0;
}

.section06 .edu-right li:nth-child(2) {
    top: 120px;
    left: 330px;
}

.section06 .edu-right li:nth-child(3) {
    top: 300px;
    left: 0;
}

.section06 .edu-right li span {
    font-size: 40px;
    font-weight: 700;
    color: #fb7044;
}

.section06 .edu-right li i {
    font-size: 26px;
    font-weight: 700;
    color: #fb7044;
}

.section06 .edu-right li p {
    font-weight: 600;
    margin-top: 24px;
    font-size: 18px;
}

.section06 .edu-right dl {
    display: inline;
    font-size: 28px;
    font-weight: 500;
    color: #fb7044;
}

.section06 .edu-right .icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0px 0px 10px #cecece;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

@media screen and (max-width: 1024px) {
    .section06 .edu-right ul {
        gap: 40px;
    }

    .section06 .section6-txt {
        display: none;
    }

    .section06 .section-inner {
        flex-direction: column;
        padding: 30px 20px;
    }

    .section06 .edu-left {
        width: 100%;
        padding: 30px;

        text-align: center;
    }

    .section06 .edu-left span {
        font-size: 14px;
    }

    .section06 .edu-left h1 {
        font-size: 14px;
        line-height: 20px;
        margin: 8px 0;
    }

    .section06 .edu-right {
        width: 100%;
        padding: 20px 0;
    }

    .section06 .edu-right li {
        position: static;
        width: 100%;
        height: 180px;
    }

    .section06 .edu-right .icon {
        margin: 0 auto;
        position: static;
        transform: none;
        margin-top: 50px;
        margin-top: 35px;
    }

    .section06 .edu-left a {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 90px;
        height: 26px;
        margin-top: 16px;
        font-size: 12px;
    }

    .section06 .edu-left p {
        font-size: 14px;
        line-height: 21px;
        text-align: justify;
    }

    .section06 .edu-right li span {
        font-size: 20px;
    }

    .section06 .edu-right dl {
        font-size: 20px;
    }

    .section06 .edu-right li p {
        font-size: 14px;
    }

    .section06 .edu-right li i {
        font-size: 20px;
    }

    .section06 .edu-left h1:nth-child(3) {
        padding-bottom: 30px;
    }
}

@media(max-width:480px) {
    .section06 .edu-left {
        text-align: unset;
    }

    .section06 .edu-left a {
        position: static;
        width: 90px;
        height: 26px;
        margin-top: 16px;
        font-size: 12px;
        transform: translate(0, 0);
    }

    .section06 .edu-left h1:nth-child(3) {
        padding-bottom: 0;
    }
}

/* 섹션07 공지사항 */

.section07 .section-inner {
    display: flex;
}

.section07 .notice-left {
    width: 40%;
    padding-top: 0px;
}

.section07 .notice-left span {
    color: #9c9c9c;
    font-size: 16px;
}

.section07 .notice-left h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 40px;
    color: #002c5a;
}

.section07 .notice-left a {
    width: 160px;
    height: 50px;
    background: #fb7044;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-top: 30px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.section07 .notice-right {
    width: 60%;
    display: flex;
    justify-content: center;
}

.section07 .edu {
    margin-right: 20px;
}

.section07 .top {
    display: flex;
}

.section07 .top-edu {
    width: 160px;
    font-weight: 600;
    height: 50px;
    background: #252525;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    float: left;
    margin-bottom: 20px;
    font-size: 16px;
}

.section07 .top-edu>a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 50px;
    text-align: center;
}

.section07 .top-society {
    width: 160px;
    height: 50px;
    background: #002c5a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    float: left;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.section07 .top-society>a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 50px;
    text-align: center;
}

.section07 .notice-main {
    background: #fff;
    box-shadow: 0px 0px 10px #cecece;
    padding: 15px;
    border-radius: 20px;
    clear: both;
}

.section07 .notice-main img {
    width: 100%;
    border-radius: 10px;
}

.section07 .notice-main ul {
    padding: 20px;
}

.section07 .notice-main li {
    padding: 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.section07 .notice-main li::before {
    content: '•';
}

.main-br {
    display: none;
}

@media screen and (max-width: 1024px) {
    .section07 .section-inner {
        flex-direction: column;
        padding: 30px 20px;
    }

    .section07 .notice-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;

        border-bottom: 1px solid #ddd;
    }

    .section07 .notice-right {
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
        gap: 20px;
    }

    .section07 .edu {
        margin-right: 0px;
    }

    .section07 .top-edu {
        width: 80px;
        height: 26px;
        float: none;
        margin: 0 auto 20px;
        font-size: 12px;
    }

    .section07 .top-edu>a {
        line-height: 26px;
    }

    .section07 .top-society {
        width: 80px;
        height: 26px;
        float: none;
        margin: 0 auto 20px;
        font-size: 12px;
    }

    .section07 .top-society>a {
        line-height: 26px;
    }

    .section07 .notice-left a {
        width: 100px;
        height: 26px;
        font-size: 12px;
        line-height: 10px;
        margin-top: 0;
    }

    .section07 .notice-main ul {
        padding: 10px;
    }

    .section07 .notice-left h1 {
        font-size: 16px;
        line-height: 20px;
        margin: 8px 0;
    }

    .section07 .notice-main li {
        font-size: 14px;
    }



    .section07 .notice-left span {
        font-size: 14px;
    }

}

/* information */

.info-section {
    background: url(../images/info-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 100px 0;
}

.info-section .info-main {
    max-width: 1320px;
    margin: 0 auto;
    background-color: #002c5a;
    border-radius: 20px;
    padding: 100px;
    color: #fff;
    background: url(../images/info-inner-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
}

.info-section .info-left {
    width: 50%;
    border-right: 1px solid #b1b1b1;
}

.info-section .info-left span {
    color: #9c9c9c;
    font-size: 14px;
}

.info-section .info-left h1 {
    margin-top: 10px;
    font-size: 32px;
    font-weight: 500;
    line-height: 44px;
}

strong {
    font-weight: 800;
}

.info-section .info-right {
    width: 50%;
    padding-left: 150px;
}

.info-section .info-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-section .info-icon i {
    font-size: 22px;
}


.info-section .info-right li {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
    align-items: center;
}

.info-section .info-right li:last-child {
    margin-bottom: 0px;
}

.info-section .info-txt p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-section .info-txt span {
    font-size: 14px;
    color: #c2c2c2;
}

@media screen and (max-width: 1024px) {
    .info-section {
        padding: 30px 20px;
        background-size: cover;

    }

    .info-section .info-main {
        padding: 30px;
        flex-direction: column;
        height: auto;
        background-size: cover;
        background-position: center;
    }

    .info-section .info-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #b1b1b1;
    }

    .info-section .info-right {
        width: 100%;
        padding-left: 0px;
        margin-top: 30px;
    }

    .info-section .info-left h1 {
        font-size: 16px;
        line-height: 20px;
        margin: 10px 0;
    }

    .info-section .info-txt p {
        font-size: 14px;
    }

    .info-section .info-icon {
        width: 30px;
        height: 30px;
    }

    .info-section .info-icon i {
        font-size: 14px;
    }

    .info-section .info-txt span {
        font-size: 12px;
    }
}

/* 오시는길 */
.location-section {
    text-align: center;
    padding-top: 0px;
}

.location-section h1 {
    font-size: 32px;
    font-weight: 600;
    color: #002c5a;
    margin-bottom: 20px;
}

.location-section p {
    color: #555;
    font-size: 16px;
}

.location-section .map {
    width: 100%;
    margin-top: 50px;
}

.location-section .map iframe {
    width: 100%;
    display: block;
}

@media screen and (max-width: 1024px) {
    .location-section {
        padding-top: 30px;
    }

    .location-section h1 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .location-section .map {
        margin-top: 20px;
    }

    .location-section p {
        font-size: 13px;
    }
}

/* footer */
.footer {
    background: #252525;
    color: #fff;
}

.footer .section-inner {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}

.footer .logo-area .ft-logo {
    margin-bottom: 20px;
    width: 220px;
}

.footer .logo-area .ft-logo img {
    width: 100%;
}

.footer .logo-area p {
    padding-left: 20px;
    margin-bottom: 5px;
    color: #bdbdbd;
    font-size: 16px;
}

.footer .logo-area p:last-child {
    margin-top: 20px;
    color: #888888;
}

.footer .site-sns {
    margin: 50px 0 20px 0;
    float: right;
}

.footer .site-sns a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #858585;
    padding: 10px;
    border-radius: 50px;
    margin-right: 10px;
}

.footer .site-sns a:last-child {
    margin-right: 0px;
}

.footer .site-sns a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    opacity: 0.5;
}

.footer .site-txt {
    clear: both;
    font-size: 15px;
}

@media screen and (max-width: 1024px) {
    .footer .section-inner {
        padding: 50px 20px;
        flex-direction: column-reverse;
    }

    .footer .site-sns {
        float: none;
        margin: 0px 0 20px 0;
    }

    .footer .links {
        margin-bottom: 30px;
    }

    .footer .site-txt {
        font-size: 12px;
    }

    .footer .logo-area .ft-logo {
        display: none;
    }

    .footer .logo-area p {
        font-size: 12px;
        padding-left: 0px;
    }
}

/* top 버튼 */

.to_top {
    position: fixed;
    z-index: 999;
    bottom: 50px;
    right: 50px;

    opacity: 0;
    visibility: hidden;

    transition: 0.1s;
}

.to_top.on {
    opacity: 1;
    visibility: visible;

    transition: 0.5s;
}

.to_top button {
    border: none;
    background: transparent;
}

.to_top button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    background: #0a246d;
}

.to_top button img {
    max-width: 24px;
}


.aside {
    width: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    right: 28px;
   bottom: 0%;
    transform: translateY(-50%);
    text-align: center;
    transition-duration: 0.5s;
    z-index: 995;
    flex-direction: column;
}

.aside .logo {
    height: auto;
    background: #0a246d;
    padding: 13px 0;
}

.aside .logo img{
    width: 70%;
}


.aside-item {
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
    font-size: 0.8rem;
    width: 100%;
    border-bottom: 1px solid #ccc;
}
.aside-item:last-child{border: none;}


.aside-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;

}



.aside-item p {
    margin-top: 0;
    margin-bottom: 0;
}

.aside-item .icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.aside img {
    width: 100%;
}



@media(max-width:1024px) {
    .to_top {
        right: 20px;
        bottom: 6%;
    }

    .to_top button {
        height: 32px;
        width: 32px;
        padding: 0;
    }

    .to_top button img {
        max-width: 16px;
    }

    .aside{
        right: -3%;
        bottom: -2%;
    }
    .aside-item a{
        gap: 0.1rem;
    }
    .aside img {
        width: 80%;}

        .aside-item{
            height: 75px;
            width: 60%;
        }
        .aside-item p{
            font-size: 11px;
        }
        .aside .logo{
            width: 60%;
        }

}

