/* PC (해상도 1025px)*/
@media all and (min-width:1025px) {
    .swipper_area {
        display: flex;
        width: 100%; 
        height: 900px;
        justify-content: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .swipper_item_background {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-repeat: no-repeat;
        background-position: 50% 0;
        background-size: cover;
        transform: scale(1.1) rotate(-0.01deg);
        transition: 0.3s;
        opacity: 1;
        animation: fadeInBg 10s linear both;
    }

    .swipper_item_background:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .swipper_item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    @keyframes fadeInBg {
        0% {
            transform: scale(1.2) rotate(-0.01deg);
        }

        100% {
            transform: scale(1) rotate(-0.01deg);
        }
    }

    .swipper_contents {
        display: flex;
        flex-direction: column;
        width: 75%;
        margin-top: 300px;
    }

    .swipper_title {
        font-family: "LibreBaskerville";
        font-size: 60px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: -0.29px;
        text-align: left;
        color: #fff;
        display: none;
    }

    .swipper_title_typing {
        display: inline-block;
        animation-name: cursor;
        animation-duration: 0.3s;
        animation-iteration-count: infinite;
        font-family: "LibreBaskerville";
        font-size: 60px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: -0.29px;
        text-align: left;
        color: #fff;
        text-shadow: 1px 1px 8px rgba(58, 60, 70, 0.6);
      }
    }

    .swipper_explanation {
        display: flex;
        align-items: center;
        width: 97%;
        justify-content: space-between;
    }

    .swipper_text {
        width: 100%;
        display: flex;
        flex-direction: column;
        animation: swipper_text_fadeIn 1.8s;
        text-shadow: 1px 1px 8px rgba(58, 60, 70, 0.9);
    }
    
    @keyframes swipper_text_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
            transition-duration: 1s;
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    }

    .swipper_text_item {
        width: 100%;
        display: flex;
        font-family: "Pretendard";
        font-size: 26px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;

        letter-spacing: normal;
        text-align: left;
        color: #fff;
        align-items: center;
        gap: 31px;
    }

    .swipper_text_item:first-child {
        margin-left: 142px;
        width: calc(100% - 142px);
        line-height: 1.07;
    }

    .swipper_text_item:last-child {
        margin-left: 264px;
        width: calc(100% - 264px);
        line-height: 1.25;
    }

    .swipper_border {
        display: flex;
        width: 90px;
        height: 1px;
        background-color: #ffffff;
    }

    .rotate_item {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        transition: all 0.5s ease;
        animation: rotate_item_fadeIn 1s;
    }

    @keyframes rotate_item_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .rotate_item:hover {
        transform: scale(1.1);
    }

    .rotate_img {
        animation: rotate_image 10s linear infinite;
        transform-origin: 50% 50%;
    }

    .arrow_img {
        position: absolute;
        width: auto;
        height: auto;
    }

    @keyframes rotate_image {
        100% {
            transform: rotate(360deg);
        }
    }

    .counting_area_wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: calc(100% - 200px);
        padding: 100px 100px 50px;
        gap: 60px;
        background-color: #F2F6FF;
        justify-content: center;
        overflow: hidden;
    }

    .counting_area {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
    }

    .text_description {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 14px;
        color:#a2a6b9;
    }

    .count_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 16px;
        gap: 18px;
    }

    .count_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 23px;
    }

    .count_value {
        font-family: "LibreBaskerville";
        font-size: 55px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: -0.28px;
        text-align: center;
        color: #1f299c;
    }

    .count_title {
        font-family: "Pretendard";
        font-size: 24px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: -0.12px;
        text-align: center;
        color: #1f299c;
    }

    .count_text {
        font-family: "Pretendard";
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.3;
        letter-spacing: -0.08px;
        text-align: center;
        color: rgba(31, 41, 156, 0.8);
    }

    .webinar_area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: calc(100% - 228px);
        border-bottom: 1px solid #e2e2eb;
        padding: 110px 114px 100px;
        gap: 45px;
    }

    .webinar_title {
        font-family: "LibreBaskerville";
        font-size: 60px;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        color: #1f299c;
        margin-bottom: 15px;
    }

    .webinar_content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        height: 100%;
    }

    .webinar_register_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #eeeff7;
        padding-right: 3%;
        animation: join_fadeIn 1s;
    }

    @keyframes join_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .webinar_register_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .webinar_register_item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        max-width: 720px;
        position: relative;
    }

    .webinar_register_label {
        font-family: "LibreBaskerville";
        font-size: 27px;
        font-stretch: normal;
        font-style: normal;
        text-align: left;
        color: #06a7e1;
        line-height: 23px;
        margin-top: 27px;padding-bottom: 5px;
    }

    .webinar_register_title {
        font-family: "LibreBaskerville";
        font-size: 35px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
        margin-bottom: 30px;
        margin-top: 12px;
    }

    .webinar_register_title>span {
        font-weight: bold;font-size: 45px;
    }

    .webinar_register_text {
        font-family: "Pretendard";
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        margin-bottom: 39px;
        color: #555;
    }

    .webinar_register_img {
        width: 100%;
    }

    .webinar_view_more_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        padding:18px 10px;
        background-color: #1f299c;
        border:1px solid #1f299c;
        font-family: "Pretendard";
        font-size: 17px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: center;
        color: #fff;
        margin: 50px 0 20px;
        cursor: pointer;
        transition: all 0.5s;border-radius: 3px;
        animation: view_more_btn_fadeIn 0.8s;
    }

    @keyframes view_more_btn_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    }         

    .webinar_view_more_btn:hover {
        background-color: #fff;
        border:1px solid #1f299c;
        color: #1f299c;
    }

    .webinar_library_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 3%;
    }

    .webinar_library_label {
        font-family: "LibreBaskerville";
        font-size: 27px;
        font-stretch: normal;
        font-style: normal;
        text-align: left;
        color: #06a7e1;
        line-height: 23px;
        margin-top: 27px;
        animation: library_label_fadeIn 0.8s;
    }

    @keyframes library_label_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .webinar_library_list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .webinar_library_item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid #dddef0;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .webinar_library_item:nth-child(1) {
        animation: library_item_fadeIn 1s;
    }

    .webinar_library_item:nth-child(2) {
        animation: library_item_fadeIn 1s;
    }

    .webinar_library_item:nth-child(3) {
        animation: library_item_fadeIn 1s;
    }

    @keyframes library_item_fadeIn {
        0% {
            opacity: 0;
            transform: translateX(-200px) scale(0.5) translateZ(0px);;
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .webinar_library_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .webinar_library_img_skeleton {
        width: 177px;
        height: 175px;
    }

    .webinar_library_info_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        height: 100%;
    }

    .webinar_library_info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        padding: 15px 0 ;
    }

    .webinar_library_info_text {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .webinar_library_index {
        font-family: "LibreBaskerville";
        font-size: 30px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        color: #1f299c;
    }

    .webinar_library_title {
        font-family: "Pretendard";
        font-size: 22px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        color: #1f299c;
    }

    .webinar_library_datetime {
        font-family: "Pretendard";
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.4;
        letter-spacing: normal;
        padding:14px 0 0;
        color: #444;
    }

    .webinar_library_btn_wrap {
        display: flex;
        align-items: flex-end;
        height: 100%;
    }

    .webinar_library_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 57px;
        height: 57px;
        border: solid 1px #c0c0c0;
        border-radius: 50%;
        cursor: pointer;
    }
    .webinar_library_btn:hover{border:1px solid #1f299c;transition: 0.3s;}

    .about_jam_area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .about_jam_preview {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        /*width: calc(100% - 228px);*/
        padding: 130px 5% 130px;
    }

    .about_jam_preview_text_wrap {
        padding-top: 5%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width:50%;
        padding-right: 150px;
    }

    .about_jam_preview_label_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 19px;
        margin-bottom: 35px;
        animation: preview_label_fadeIn 1s;
    }

    @keyframes preview_label_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    }     

    .about_jam_preview_border {
        width: 90px;
        height: 1px;
        background-color: #1f299c;
    }

    .about_jam_preview_label {
        font-family: "Pretendard";
        font-size: 19px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: 15px;
        letter-spacing: normal;
        color: #1f299c;
    }

    .about_jam_preview_title {
        animation: preview_title_fadeIn 1s;
    }

    @keyframes preview_title_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .about_jam_preview_title {
        font-family: "LibreBaskerville";
        font-size: 65px;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        text-align: left;
        color: #1f299c;
    }

    .about_jam_preview_title:last-child {
        font-size: 50px;
        line-height: 1.4;
    }

    .about_jam_preview_text_item {
        display: flex;
        width: 100%;
        animation: preview_text_item_fadeIn 1s;
    }

    @keyframes preview_text_item_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .about_jam_preview_text {
        margin-top: 35px;
        font-family: "Pretendard";
        font-size: 22px;
        font-weight: 300;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        line-height: 1.5;
    }

    .about_jam_preview_text>div:first-child {
        text-align: left;
    }

    .about_jam_preview_text>div:last-child {
        text-align: right;
    }

    .about_jam_preview_text>div>span {
        font-weight: 600;
    }

    .about_jam_preview_img_wrap {
        display: flex;
        align-items: flex-end;
        /*width: calc(50% - 125px);*/
        position: relative;
        max-width: 730px;
    }

    .about_jam_preview_img {
        width: 100%;
        animation: preview_img_fadeIn 1s;
    }

    @keyframes preview_img_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .about_jam_preview_img_wrap .rotate_item {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        cursor: pointer;
        left: -22%;
        z-index: 2;
        transition: none;
        bottom: 40px;
        transition: all .5s ease;
    }

    .about_jam_description {
        display: flex;
        align-items: center;
        width: calc(100% - 228px);
        padding: 100px 100px;
        background: #19249D;
        gap: 115px;
        justify-content:space-around;
    }

    .about_jam_description_img_wrap {
        display: flex;
        align-items: flex-end;
        max-width: 700px;
    }

    .about_jam_description_img {
        margin-left: 15%;
        max-width: 580px;
        width: 50%;
        animation: description_img_fadeIn 1s;
    }

    @keyframes description_img_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .about_jam_description_wrap {
        display: flex;
        flex-direction: column;
        width: 50%;
        gap: 80px;
    }

    .about_jam_description_content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        animation: description_content_fadeIn 1s;
    }

    @keyframes description_content_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .about_jam_description_item {
        font-family: "Pretendard";
        font-size: 20px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
        max-width: 730px;
    }

    .about_jam_description_summary_content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        animation: description_summary_content_fadeIn 1s;
    }

    @keyframes description_summary_content_fadeIn {
        0% {
            opacity: 0;
            transform: scale(0.5) translateZ(0px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateZ(none);
        }
    } 

    .about_jam_description_summary_item {
        display: flex;
        gap: 12px;
    }

    .about_jam_description_summary_label {
        width: 13px;
        height: 13px;
        background-color: #f4361e;
        border-radius: 50%;
    }

    .about_jam_description_summary_text_wrap {
        display: flex;
        flex-direction: column;
    }

    .about_jam_description_summary_text {
        font-family: "LibreBaskerville";
        font-size: 22px;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
    }

    .products_area {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: calc(100% - 228px);
        background-color: #F5F5F5;
        padding: 130px 114px 130px;
        gap: 50px;
    }

    .products_title_wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 35px;
    }

    .products_title {
        font-family: "LibreBaskerville";
        font-size: 60px;
        font-stretch: normal;
        font-style: normal;
        text-align: left;
        color: #1f299c;
    }

    .products_explanation {
        display: flex;
        align-items: center;
        gap: 19px;
    }

    .products_explanation>div {
        width: 90px;
        height: 1px;
        background-color: #1f299c;
    }

    .products_explanation>span {
        font-size: 18px;
        color:#1f299c;
        font-family: "Pretendard";
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
    }

    .products_area .swiper {
        width: calc(100% - 86px) !important;
        height: 100% !important;
    }

    .product_swiper_area {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        gap: 25px;
    }

    .product_swiper_prev_btn,
    .product_swiper_next_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 57px;
        height: 57px;
        border: solid 1px #c0c0c0;
        border-radius: 50%;
        cursor: pointer;
    }
    .product_swiper_prev_btn:hover,.product_swiper_next_btn:hover {border:1px solid #1f299c;transition: 0.3s;}

    .product_swiper_prev_btn>img {
        transform: rotate(180deg);
    }

    .product_swiper_item_img_wrapper {
        display: flex;
        width: 100%;
        height: calc(100% - 93px);
        justify-content: center;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

    .product_swiper_item_img {
        width: 100%;
        transition: all 0.5s ease;
    }

    .product_swiper_item_img:hover {
        transform: scale(1.1);
    }

    .product_swiper_item {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 40px;
        cursor: pointer;
        max-width: 360px;
    }

    .product_swiper_item_text {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .product_swiper_name {
        font-family: "Pretendard";
        font-size: 24px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: center;
        color: #1f299c;
    }

    .product_swiper_explain {
        font-size: 16px;
    }

    .newsletter_img {
        width: 442px;
    }

    .newsletter_swiper_slide {
        margin-right: 44px;
    }

    .newsletter_area_wrapper {
        width: 100%;
        height: 300vh;
        position: relative;
    }

    .newsletter_area {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        width: calc(100% - 113px);
        padding: 180px 0px 180px 113px;
        gap: 111px;
    }

    .newsletter_area .swiper-wrapper {
        width: auto;
    }

    .newsletter_area .newsletter_swiper_slide {
        width: auto !important;
    }

    .newsletter_title_wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 35px;
    }

    .newsletter_title {
        font-family: "LibreBaskerville";
        font-size: 60px;
        font-stretch: normal;
        font-style: normal;
        line-height: 51px;
        letter-spacing: -0.6px;
        text-align: left;
        color: #1f299c;
    }

    .newsletter_explanation {
        display: flex;
    }

    /*.newsletter_explanation>div {
        width: 90px;
        height: 1px;
        background-color: #f4361e;
        margin-top: 15px;
    }*/

    .newsletter_explanation>span {
        width: 306px;
        font-family: "Pretendard";
        font-size: 18px;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.4;
        letter-spacing: normal;
        text-align: left;
        color:#303038;
    }

    .newsletter_viewall {
        display: flex;
        align-items: center;
        gap: 17px;
        margin-top: 22px;
    }

    .newsletter_viewall>span {
        height: 15px;
        font-family: "Pretendard";
        font-size: 19px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 15px;
        letter-spacing: normal;
        text-align: left;
        color: #f4361e;
    }

    .newsletter_viewall_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 57px;
        height: 57px;
        border: solid 1px #f4361e;
        border-radius: 50%;
    }

    .newletter_list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
    }

    .newsletter_list_container {
        width: 100%;
        height: 300vh;
        padding: 0 16px;
    }

    .newsletter_list_wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
    }

    .newsletter_list_carousel {
        display: flex;
        gap: 48px;
    }

    .newsletter_item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
        gap: 15px;
        max-width: 442px;
    }

    .newsletter_img_wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        margin-bottom: 8px;
        cursor: pointer;
    }

    .newsletter_img {
        transition: all 0.5s ease;
    }

    .newsletter_img:hover {
        transform: scale(1.1);
    }

    .newsletter_item_title {
        font-family: "Pretendard";
        font-size: 20px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
        cursor: pointer;
    }

    .newsletter_item_text {
        font-family: "Pretendard";
        font-size: 17px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.4;
        text-align: left;
        cursor: pointer;
        color: #444;
    }

    .newsletter_swiper_prev_btn,.newsletter_swiper_next_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 57px;
        height: 57px;
        border: solid 1px #c0c0c0;
        border-radius: 50%;
        cursor: pointer;
    }

    .newsletter_swiper_prev_btn:hover,.newsletter_swiper_next_btn:hover{border:1px solid #1f299c;}

    .newsletter_swiper_prev_btn>img {
        transform: rotate(180deg);
    }

    /* 움직이는 텍스트 */
    .slideText_area {
        height: 86px;
        background-color: #f4361e;

        font-size: 60px;
        font-family: 'Raleway', Sans-serif;
        font-weight: 300;
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .slide_list {
        position: absolute;
        white-space: nowrap;
        will-change: transform;
        animation: marquee 60s linear infinite;
        height: 100%;
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .TextSwiper {
        width: 100%;
        height: 100%;
    }

    .slide_list_content {
        display: flex !important;
        height: 100%;
        align-items: center;
        gap: 50px;
    }

    .slide_text {
        font-family: "Pretendard";
        font-size: 23px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        color: #fff;
        position: relative;
    }

    .slide_middot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #fff;
    }

    .webinar_library_info_wrap .ant-image {
        width: 162px;
        height: 162px;
        border-radius: 10px;
        overflow: hidden;
    }

    .webinar_library_info_wrap .ant-image .ant-image-img {
        width: 100%;
    }

/* PC (해상도 1920px)*/
@media all and (min-width:1920px) {
    .about_jam_description {
        display: flex;
        width: calc(100% - 335px);
        padding: 100px 221px 100px 114px;
        background: #19249D;
        gap: 110px;
    }
}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/
@media all and (min-width:768px) and (max-width:1024px) {
    .swipper_area {
        display: flex;
        width: 100%;
        height: 480px;
        justify-content: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .webinar_library_label{padding-bottom: 15px;}
    .webinar_register_content{padding-bottom: 50px;margin-bottom: 30px;}

    .swipper_item_background {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-repeat: no-repeat;
        background-position: 50% 0;
        background-size: cover;
        transform: scale(1.1) rotate(-0.01deg);
        transition: 0.3s;
        opacity: 1;
        animation: fadeInBg 10s linear both;
    }

    .swipper_item_background:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .swipper_item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    @keyframes fadeInBg {
        0% {
            transform: scale(1.2) rotate(-0.01deg);
        }

        100% {
            transform: scale(1) rotate(-0.01deg);
        }
    }

    .swipper_contents {
        display: flex;
        flex-direction: column;
        width: 80%;
        margin-top: 275px;
        gap: 7.2px;
    }

    .swipper_title {
        font-family: "LibreBaskerville";
        font-size: 34px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 42px;
        height: 42px;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
        display: none;
    }

    .swipper_title_typing {
        display: inline-block;
        animation-name: cursor;
        animation-duration: 0.3s;
        animation-iteration-count: infinite;
        font-family: "LibreBaskerville";
        font-size: 34px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: -0.29px;
        text-align: left;
        color: #fff;
      }

    .swipper_explanation {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .swipper_text {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .swipper_text_item {
        width: 100%;
        display: flex;
        font-size: 17px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.41;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
        align-items: center;
        gap: 31px;
    }

    .swipper_text_item:first-child {
        margin-left: 85.5px;
        width: calc(100% - 85.5px);
        line-height: 1.07;
    }

    .swipper_text_item:last-child {
        margin-left: 264px;
        width: calc(100% - 264px);
        line-height: 1.25;
    }

    .swipper_border {
        display: flex;
        width: 55px;
        height: 1px;
        background-color: #ffffff;
    }

    .rotate_item {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        transition: all 0.5s ease;
    }

    .rotate_item:hover {
        transform: scale(1.1);
    }

    .rotate_img {
        animation: rotate_image 10s linear infinite;
        transform-origin: 50% 50%;
        width: 100px;
    }

    .arrow_img {
        position: absolute;
        width: 26.4px;
        height: 15.1px;
    }

    @keyframes rotate_image {
        100% {
            transform: rotate(360deg);
        }
    }

    .counting_area_wrapper {
        width: 100%;
        padding: 40px 0;
        gap: 20px;
    }

    .counting_area {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
    }

    .text_description {
        width: calc(100% - 20px);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 10px;
        padding-right: 20px;
    }

    .count_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 16px;
        gap: 18px;
    }

    .count_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .count_value {
        font-size: 32px;
        letter-spacing: normal;
    }

    .count_title {
        font-size: 14px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: center;
        color: #1f299c;
    }

    .count_text {
        font-family: "Pretendard";
        font-size: 11px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.36;
        letter-spacing: normal;
        text-align: center;
        color: #434ba9;
        white-space: pre-line;
    }

    .webinar_area {
        width: calc(100% - 120px);
        padding: 44px 60px 0;
        gap: 21.5px;
    }

    .webinar_title {
        font-size: 38px;
        height: 40px;
        line-height: 40px;
        letter-spacing: normal;
        text-align: center;
    }

    .webinar_register_wrap {
        padding-right: 0
    }

    .webinar_register_item {
        justify-content: flex-start;
    }

    .webinar_register_title {
        font-family: "LibreBaskerville";
        font-size: 25px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
        margin-bottom: 12px;
    }

    .webinar_register_title>span {
        font-weight: bold;
    }

    .webinar_register_text {
        font-family: "Pretendard";
        font-size: 15px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        height: 14px;
        line-height: 14px;
        letter-spacing: -0.06px;
        text-align: left;
        margin-bottom: 34.6px;
    }

    .webinar_register_img {
        width: 100%;
    }

    .webinar_library_wrap {
        padding-left:2%;
    }


    .webinar_library_info_wrap .ant-image {
        width: 94px;
        height: 94px;
        border-radius: 10px;
        overflow: hidden;
    }

    .webinar_library_item {
        padding-top: 12.5px;
        padding-bottom: 12.5px;
    }

    .webinar_library_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .webinar_library_img_skeleton {
        width: 94px;
        height: 94px;
    }

    .webinar_library_info_wrap {
        gap: 23px;
        height: 100%;
    }

    .webinar_library_info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        height: calc(100% - 10px);
        padding: 4px 0 6px;
    }

    .webinar_library_info_text {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .webinar_library_index {
        font-size: 26px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
    }

    .webinar_library_title {
        font-family: "Pretendard";
        font-size: 15px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        height: 18px;
        line-height: 18px;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
    }

    .webinar_library_datetime {
        font-family: "Pretendard";
        font-size: 12px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        height: 14px;
        line-height: 14px;
        letter-spacing: normal;
        text-align: left;
    }

    .webinar_library_btn_wrap {
        display: flex;
        align-items: flex-end;
        height: 100%;
    }

    .webinar_library_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        border: solid 1px #c0c0c0;
        border-radius: 50%;
        cursor: pointer;
    }

    .webinar_library_btn>img {
        width: 12.5px;
        height: 11.8px;
    }

    .about_jam_area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .about_jam_preview {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        /*width: calc(100% - 120px);*/
        padding: 50px 60px 50px;
    }

    .about_jam_preview_text_wrap {
        padding-top: 5%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: calc(50% - 34px);
        height: 100%;
        padding-right: 34px;
    }

    .about_jam_preview_label_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 27px;
    }

    .about_jam_preview_border {
        width: 48px;
        height: 1px;
        background-color: #1f299c;
    }

    .about_jam_preview_label {
        font-family: "Pretendard";
        font-size: 14px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        height: 16px;
        line-height: 16px;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
    }

    .about_jam_preview_title {
        font-family: "LibreBaskerville";
        font-size: 34px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        height: 42px;
        line-height: 42px;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
    }

    .about_jam_preview_title:last-child {
        font-size: 26px;
        height: 32px;
        line-height: 32px;
        margin-left: 56px;
    }

    .about_jam_preview_text_item {
        display: flex;
        width: 100%;
        justify-content: flex-end;
        padding-left: 0;
    }

    .about_jam_preview_text {
        margin-top: 56px;
        font-family: "Pretendard";
        font-size: 17px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.41;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
        height: 44px;
    }

    .about_jam_preview_text>div:first-child {
        text-align: left;
    }

    .about_jam_preview_text>div:last-child {
        text-align: right;
    }

    .about_jam_preview_text>div>span {
        font-weight: 600;
    }

    .about_jam_preview_img_wrap {
        display: flex;
        align-items: flex-end;
        width: calc(50% - 67px);
        position: relative;
        padding-left: 67px;
    }

    .about_jam_preview_img {
        width: 100%;
    }

    .about_jam_preview_img_wrap .rotate_item {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        cursor: pointer;
        left: 0;
        z-index: 2;
    }

    .about_jam_description {
        display: flex;
        align-items: center;
        width: calc(100% - 120px);
        padding: 49px 60px 48px;
        background: #19249D;
        gap: 61px;
    }

    .about_jam_description_img {
        margin-left: 12%;
        width: 50%;
    }

    .about_jam_description_wrap {
        display: flex;
        flex-direction: column;
        gap: 41px;
        width: 50%;
    }

    .about_jam_description_content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about_jam_description_item {
        font-family: "Pretendard";
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
    }

    .about_jam_description_summary_content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .about_jam_description_summary_item {
        display: flex;
        gap: 12px;
    }

    .about_jam_description_summary_label {
        width: 9px;
        height: 9px;
        background-color: #f4361e;
        border-radius: 50%;
    }

    .about_jam_description_summary_text_wrap {
        margin-top: 6px;
    }

    .about_jam_description_summary_text {
        font-size: 14px;
    }

    .products_area {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: calc(100% - 120px);
        background-color: #F5F5F5;
        padding: 51px 60px 62px;
        gap: 40px;
    }

    .products_title {
        font-size: 31px;
        height: 38px;
        line-height: 38px;
        letter-spacing: normal;
    }

    .products_explanation {
        padding-left: 39px;
        display: flex;
        align-items: center;
        gap: 10.5px;
    }

    .products_explanation>div {
        width: 48px;
        height: 1px;
        background-color: #1f299c;
    }

    .products_explanation>span {
        height: 16px;
        font-size: 14px;
        font-weight: 500;
        line-height: 16px;
    }

    .products_area .swiper {
        width: calc(100% - 114px) !important;
        height: 100% !important;
    }

    .product_swiper_area {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        gap: 13px;
    }

    .product_swiper_prev_btn,.product_swiper_next_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border: solid 1px #c0c0c0;
        border-radius: 50%;
        cursor: pointer;
    }
    .product_swiper_prev_btn:hover,.product_swiper_next_btn:hover {border:1px solid #1f299c !important;}

    .product_swiper_prev_btn>img,
    .product_swiper_next_btn>img {
        width: 12.5px;
        height: 11.8px;
    }

    .product_swiper_prev_btn>img {
        transform: rotate(180deg);
    }

    .product_swiper_item_img_wrapper {
        display: flex;
        width: 100%;
        height: calc(100% - 54px);
        justify-content: center;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

    .product_swiper_item_img {
        width: 100%;
        transition: all 0.5s ease;
    }

    .product_swiper_item_img:hover {
        transform: scale(1.1);
    }

    .product_swiper_item {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 13px;
        cursor: pointer;
    }

    .product_swiper_item_text {
        display: flex;
        flex-direction: column;
        gap: 7px;
        align-items: center;
        justify-content: center;
    }

    .product_swiper_name {
        font-size: 18px;
        height: 21px;
        line-height: 21px;
    }

    .product_swiper_explain {
        font-size: 14px;
    }

    .newsletter_area {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        width: calc(100% - 61px);
        height: 230px;
        padding: 81px 0px 100px 60px;
        gap: 60.5px;
    }

    .newsletter_area .swiper-wrapper {
        width: auto;
    }

    .newsletter_area .newsletter_swiper_slide {
        width: auto !important;
        margin-left: 16px;
        margin-right: 0;
    }

    .newsletter_area .newsletter_swiper_slide:first-child {
        margin-left: 0;
    }

    .newsletter_swiper_prev_btn,
    .newsletter_swiper_next_btn {
        width: 30px;
        height: 30px;
    }

    .newsletter_swiper_prev_btn > img,
    .newsletter_swiper_next_btn > img {
        width: 12.5px;
        height: 11.8px;
    }

    .newsletter_title_wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 10px;
    }

    .newsletter_title {
        font-family: "LibreBaskerville";
        font-size: 31px;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
    }

    .newsletter_explanation {
        display: flex;
    }

    /*.newsletter_explanation>div {
        width: 48px;
        height: 1px;
        background-color: #f4361e;
        margin-top: 8.5px;
    }*/

    .newsletter_explanation>span {
        width: 163px;
        height: 73px;
        font-family: "Pretendard";
        font-size: 14px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.36;
        letter-spacing: normal;
        text-align: left;
    }

    .newsletter_viewall {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 21px;
    }

    .newsletter_viewall>span {
        font-family: "Pretendard";
        font-size: 12px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        height: 14px;
        line-height: 14px;
        letter-spacing: normal;
        text-align: left;
        color: #f4361e;
    }

    .newsletter_viewall_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border: solid 1px #f4361e;
        border-radius: 50%;
    }

    .newsletter_viewall_btn>img {
        width: 12.5px;
        height: 11.8px;
    }

    .newletter_list {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
    }

    .newsletter_list_wrapper {
        display: flex;
        gap: 23px;
    }

    .newsletter_item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
        gap: 5px;
        max-width: 235px;
    }

    .newsletter_img_wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
    }

    .newsletter_img {
        width: 100%;
        transition: all 0.5s ease;
    }

    .newsletter_img:hover {
        transform: scale(1.1);
    }

    .newsletter_item_title {
        font-family: "Pretendard";
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        color: #1f299c;
        cursor: pointer;
    }

    .newsletter_item_text {
        font-family: "Pretendard";
        font-size: 13px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.4;
        letter-spacing: normal;
        text-align: left;
        cursor: pointer;
    }

    /* 움직이는 텍스트 */
    .slideText_area {
        height: 63px;
        background-color: #f4361e;
        font-size: 60px;
        font-family: 'Raleway', Sans-serif;
        font-weight: 300;
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .slide_list {
        position: absolute;
        white-space: nowrap;
        will-change: transform;
        animation: marquee 60s linear infinite;
        height: 100%;
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .TextSwiper {
        width: 100%;
        height: 100%;
    }

    .slide_list_content {
        display: flex !important;
        height: 100%;
        align-items: center;
        gap: 28px;
    }

    .slide_text {
        font-family: "Pretendard";
        font-size: 14px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
        position: relative;
    }

    .slide_middot {
        width: 2px;
        height: 2px;
        border-radius: 50%;
        background-color: #fff;
    }
}

/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media all and (max-width:767px) {
    .swipper_area {
        display: flex;
        width: 100%;
        height: 634px;
        justify-content: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .swipper_item_background {
        background: url('/images/main-visual.png') no-repeat 50% 0;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-repeat: no-repeat;
        background-position: 50% 0;
        background-size: cover;
        transform: scale(1.1) rotate(-0.01deg);
        transition: 0.3s;
        opacity: 1;
        animation: fadeInBg 10s linear both;
    }

    .swipper_item_background:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .swipper_item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    @keyframes fadeInBg {
        0% {
            transform: scale(1.2) rotate(-0.01deg);
        }

        100% {
            transform: scale(1) rotate(-0.01deg);
        }
    }

    .swipper_contents {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 290px;
        gap: 27px;
    }

    .swipper_border {
        display: none;
    }

    .swipper_title_area {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
    }

    .swipper_title {
        font-family: "LibreBaskerville";
        font-size: 29px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
        white-space: pre-line;
        display: none;
    }

    .swipper_title_typing {
        display: inline-block;
        animation-name: cursor;
        animation-duration: 0.3s;
        animation-iteration-count: infinite;
        font-family: "LibreBaskerville";
        font-size: 29px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: -0.29px;
        text-align: left;
        color: #fff;
        padding-left: 20px;
      }

    .swipper_explanation {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: calc(100% - 40px);
        padding: 0 20px;
        gap: 37px;
    }

    .swipper_text {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .swipper_text_item {
        width: 100%;
        display: flex;
        font-family: "Pretendard";
        font-size: 17px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.41;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
        gap: 10px;
    }

    .swipper_text_item:first-child {
        width: 100%;
        line-height: 1.07;
        margin-left: 0;
    }

    .swipper_text_item:last-child {
        width: 100%;
        line-height: 1.25;
        margin-left: 0;
    }

    .newsletter_img_wrapper {
        display: none;
    }

    .newsletter_area > .swiper {
        display: none;
    }

    .rotate_item {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
    }

    .rotate_img {
        width: 112px;
        height: 112px;
        animation: rotate_image 10s linear infinite;
        transform-origin: 50% 50%;
    }

    .arrow_img {
        position: absolute;
        width: 29.3px !important;
        height: 16.7px !important;
    }

    @keyframes rotate_image {
        100% {
            transform: rotate(360deg);
        }
    }

    .counting_area_wrapper {
        width: calc(100% - 40px);
        padding: 41px 20px 20px;
        gap: 20px;
    }

    .counting_area {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 40px);
        gap: 9px;
    }

    .text_description {
        width: calc(100% - 20px);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 10px;
        padding-right: 20px;
    }

    .count_item {
        width: 100%;
        height: 150px;
        gap: 18px;
        background-color: #ffffff;
    }

    .count_content {
        gap: 5px;
    }

    .count_value {
        font-size: 27px;
        letter-spacing: normal;
    }

    .count_title {
        font-size: 15px;
        letter-spacing: normal;
    }

    .count_text {
        font-size: 10px;
        line-height: 1.35;
        letter-spacing: normal;
        white-space: pre-line;
    }

    .webinar_area {
        width: calc(100% - 40px);
        border-bottom: 1px solid #e2e2eb;
        padding: 37px 20px 42.5px;
        gap: 25px;
    }

    .webinar_title {
        font-size: 30px;
        height: 35px;
        line-height: 35px;
        letter-spacing: normal;
    }

    .webinar_content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        height: 100%;
        gap: 25px;
    }

    .webinar_register_wrap {
        width: 100%;
        height: 100%;
        border-right: none;
        padding-right: 0;
    }

    .webinar_register_item {
        justify-content: flex-start;
    }

    .webinar_register_label {
        font-size: 20px;
        letter-spacing: normal;
        margin-bottom: 0;
        margin-top: 0;
    }

    .webinar_register_title {
        font-size: 20px;
        text-align: left;
        margin-bottom: 9px;
    }

    .webinar_register_text {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: center;
    }

    .webinar_view_more_btn {
        font-size: 15px;
        font-weight: 500;
        margin-top:55px;margin-bottom: 0;
    }

    .webinar_view_more_btn:hover {
        background-color: #fff;
        border:1px solid #1f299c;
        color: #1f299c;
    }

    .webinar_library_wrap {
        width: 100%;
        height: 100%;
        padding-left: 0;
        margin: 40px 0 0;
        border-top:1px solid #eee;
    }


    /*.webinar_library_info_wrap .ant-image {
        width: 138px;
        height: 138px;
    }

    .webinar_library_info_wrap .ant-image .ant-image-img {
        height: 138px;
    }*/
    
    .webinar_library_label {
        font-size: 20px;
        letter-spacing: normal;
        text-align: left;
        margin-bottom: 5px;margin-top: 20px;
    }

    .webinar_library_item {
        border-bottom: 1px solid #dfdfdf;
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .webinar_library_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .webinar_library_img_skeleton {
        width: 138px;
        height: 138px;
    }

    .webinar_library_info_wrap {
        gap: 13px;
    }

    .webinar_library_info {
        justify-content: space-evenly;
        padding: 9px 0 8px;
    }

    .webinar_library_info_text {
        gap: 2px;
    }

    .webinar_library_index {
        font-size: 24px;
        font-weight: 600;
    }

    .webinar_library_title {
        font-size: 16px;
    }

    .webinar_library_datetime {
        font-size: 14px;
    }

    .webinar_library_btn {
        width: 40px;
        height:40px;
    }

    .webinar_library_btn>img {
        width: 12.5px;
        height: 11.8px;

    }

    .about_jam_area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .about_jam_preview {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        width: calc(100% - 40px);
        padding: 35.5px 20px 99.7px;
        gap: 37px;
    }

    .about_jam_preview_text_wrap {
        display: flex;
        flex-direction: column;
        align-items:center;
        justify-content: center;
        width: 100%;
        padding-right: 0;
    }

    .about_jam_preview_label_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10.5px;
        margin-bottom: 21px;
    }

    .about_jam_preview_border {
        width: 36px;
        height: 1px;
        background-color: #1f299c;
    }

    .about_jam_preview_label {
        font-family: "Pretendard";
        font-size: 14px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        height: 15px;
        line-height: 15px;
        letter-spacing: normal;
        color: #1f299c;
    }

    .about_jam_preview_title {
        font-family: "LibreBaskerville";
        font-size: 31px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        height: 38px;
        line-height: 38px;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;

    }

    .about_jam_preview_title:last-child {
        font-size: 22px;
        height: 27px;
        line-height: 27px;
        margin-left: 44px;
    }

    .about_jam_preview_text_item {
        display: flex;
        width: 100%;
        justify-content:center;
        padding-left: 0;
    }

    .about_jam_preview_text {
        margin-top: 31px;
        font-family: "Pretendard";
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
    }

    .about_jam_preview_text>div:last-child {
        text-align: right;
    }

    .about_jam_preview_text>div>span {
        font-weight: 600;
    }

    .about_jam_preview_img_wrap {
        display: flex;
        align-items: flex-end;
        width: 100%;
        position: relative;
        padding-left: 0;
    }

    .about_jam_preview_img {
        width: 100%;
    }

    .about_jam_preview_img_wrap .rotate_item {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        cursor: pointer;
        right: 90px;
        left: auto;
        bottom:40px;
        z-index: 2;
    }

    .about_jam_description {
        display: flex;
        flex-direction: column;
        width: calc(100% - 40px);
        padding: 36px 20px 60px;
        background: #19249D;
        gap: 31px;
    }

    .about_jam_description_img_wrap {
        display: flex;
        align-items: flex-end;
        max-width: 720px;
    }

    .about_jam_description_img {
        width: 100%;
        margin-top: 14px;
    }

    .about_jam_description_wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about_jam_description_content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about_jam_description_item {
        font-family: "Pretendard";
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.71;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
    }

    .about_jam_description_summary_content {
        padding-left: 23px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .about_jam_description_summary_item {
        display: flex;
        gap: 12px;
    }

    .about_jam_description_summary_label {
        width: 11px;
        height: 11px;
        background-color: #f4361e;
        border-radius: 50%;
    }

    .about_jam_description_summary_text {
        font-size: 15px;
        line-height: 1;
        color: #fff;
    }

    .products_area {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: calc(100% - 40px);
        background-color: #F5F5F5;
        padding:60px 20px;
        gap: 27px;
    }

    .products_title_wrap {
        gap: 12px;
    }

    .products_title {
        font-size: 28px;
        height: 35px;
        line-height: 35px;
        letter-spacing: normal;
    }

    .products_explanation {
        padding-left: 23px;
        padding-right: 39.5px;
        display: flex;
        align-items: flex-start;
        gap: 10.5px;
    }

    .products_explanation>div {
        width: 36px;
        height: 1px;
        background-color: #1f299c;
        margin-top: 7.5px;
    }

    .products_explanation>span {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.46;
    }

    .product_swiper_area {
        display: flex;
        width: 75%;
        height: 100%;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin: 0 auto;
    }

    .product_swiper_prev_btn,
    .product_swiper_next_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 50px;
        border: solid 1px #c0c0c0;
        border-radius: 50%;
        cursor: pointer;
    }
    .product_swiper_prev_btn:hover,.product_swiper_next_btn:hover {border:1px solid #1f299c;}

    .product_swiper_prev_btn>img,
    .product_swiper_next_btn>img {
        width: 16px;
    }

    .product_swiper_prev_btn>img {
        transform: rotate(180deg);
    }

    .product_swiper_item_img_wrapper {
        display: flex;
        width: 100%;
        height: calc(100% - 93px);
        justify-content: center;
        border-radius: 10px;
    }

    .product_swiper_item {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 13px;
        cursor: pointer;
    }

    .product_swiper_item_text {
        display: flex;
        flex-direction: column;
        gap: 7px;
        align-items: center;
        justify-content: center;
    }

    .product_swiper_slide {
        width: 100% !important;
        height: 100%;
    }

    .product_swiper_name {
        font-size: 20px;
        font-weight: 600;
        height: 24px;
        line-height: 24px;
    }

    .product_swiper_explain {
        height: 14px;
        font-size: 12px;
        line-height: 14px;
        color: #1f299c;
    }

    .newsletter_area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: calc(100% - 80px);
        padding: 60px 40px;
        gap: 20px;
    }

    .newsletter_title_wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        gap: 12px;
    }

    .newsletter_title {
        font-family: "LibreBaskerville";
        font-size: 28px;
        font-stretch: normal;
        font-style: normal;
        height: 35px;
        line-height: 35px;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
    }

    .newsletter_explanation {
        padding-right: 65px;
        display: flex;
    }

    /*.newsletter_explanation>div {
        width: 36px;
        height: 1px;
        background-color: #f4361e;
        margin-top: 7.5px;
    }*/

    .newsletter_explanation>span {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.46;
        letter-spacing: normal;
    }

    .newsletter_viewall {
        margin-top: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: flex-end;
        display: none;
    }

    .newsletter_viewall>span {
        height: 14px;
        font-size: 12px;
        font-weight: 500;
        line-height: 14px;
        letter-spacing: normal;
    }

    .newsletter_viewall_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border: solid 1px #f4361e;
        border-radius: 50%;
    }

    .newletter_list {
        display: flex;
        align-items: flex-start;
        width: 100%;
        gap: 9px;
    }

    .newletter_item {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 9px;
    }

    .newsletter_item_title {
        height: 18px;
        font-family: "Pretendard";
        font-size: 15px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: 18px;
        letter-spacing: normal;
        text-align: left;
        color: #1f299c;
        cursor: pointer;
    }

    .newsletter_item_text {
        font-family: "Pretendard";
        font-size: 13px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.4;
        letter-spacing: normal;
        text-align: left;
        cursor: pointer;
    }

    .newsletter_list_wrapper {
        display: flex;
        gap: 48px;
    }

    .newsletter_item {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    /* 움직이는 텍스트 */
    .slideText_area {
        height: 63px;
        background-color: #f4361e;
        position: relative;
        width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .TextSwiper {
        width: 100%;
        height: 100%;
    }

    .TextSwiper .swiper_wrapper {
        gap: 10px;
    }

    .slide_list {
        position: absolute;
        white-space: nowrap;
        will-change: transform;
        animation: marquee 60s linear infinite;
        /* width: 100%; */
        height: 100%;
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .slide_list_content {
        display: flex !important;
        height: 100%;
        align-items: center;
        gap: 20px;
    }

    .slide_text {
        font-family: "Pretendard";
        font-size: 14px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: left;
        color: #fff;
        position: relative;
    }

    .slide_middot {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background-color: #fff;
    }

    .ant-image-img {
        width: 90%;vertical-align: middle;margin: 0 auto;text-align: center;
      }
    .ant-image{text-align: center;}
    .about_jam_description_item{padding:0 3%;}
    .webinar_area{width:90% !important;}
    .newsletter_m_all{display:none !important;}
    .webinar_register_title>span {font-weight: bold;font-size: 35px;}
    .webinar_register_item{align-items: center;}

    .webinar_register_item .webinar_library_label{margin-top: 60px;}
}


@media all and (max-width:515px) {
    .product_swiper_area{width: 98%;}
    .webinar_library_info_wrap .ant-image .ant-image-img{width:80%;}
    .webinar_library_info{padding: 0;}
    .webinar_library_info_wrap .ant-image{height: 100%;}
    .webinar_library_info_wrap{gap: 0;}
    .webinar_library_index{padding-top: 5px;font-size: 22px;}
    .webinar_library_title {font-size: 14px;}
    .webinar_library_datetime{color: #666;}
    .webinar_library_btn_wrap{margin-top: -20px;margin-right: 3px;}
    .webinar_library_btn{width:33px;height: 33px;}
}