.wesf_main_cont {
    padding: 23px 0 122px;
}

.wesf_main_cont .title_area {
    margin-bottom: 30px;
    text-align: center;
}

.wesf_main_cont .title_area .title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;

}

/* intro */
.wesf_main_cont .intro_sect {
    margin-bottom: 85px;
}

.intro_sect .top_banner {
    margin-bottom: 43px;
    background-color: #1b1b1b;
    border-radius: 20px;
    padding: 9px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.intro_sect .top_banner .title {
    color: #fff;
    font-size: 14px;
}

.intro_sect .top_banner .lang_list,
.intro_sect .top_banner .lang_list .btn_lang:not(:last-child) {
    display: flex;
    gap: 6px;
    align-items: center;
}

.intro_sect .top_banner .btn_lang {
    color: #676767;
    font-size: 12px;
    background-color: transparent;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.intro_sect .top_banner .btn_lang.highlight {
    color: #fff;
}

.intro_sect .top_banner .lang_list .btn_lang:not(:last-child)::after {
    content: "";
    display: block;
    height: 8px;
    border: 1px solid #676767;
}

.intro_sect .intro_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 0;
}

.intro_sect .intro_item {
    width: 50%;
    background-color: #F1F1F1;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 50px;
    min-height: 64px;
}

.intro_sect .intro_item.left_item {
    flex-direction: row-reverse;
}

.intro_sect .intro_item .type {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 64px;
    height: 64px;
    background-color: #1b1b1b;
    border-radius: 50px;
    transition: width 0.5s ease;
}

.intro_sect .intro_item.left_item .type {
    left: auto;
    right: 0;
}

.intro_sect .intro_item.active .type {
    width: 100%;
    background-color: var(--main-color, #ea7200);
    transition-duration: 1.5s;
}

.intro_sect .intro_item .type_text {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 22px;
}

.intro_sect .intro_item.left_item .type_text {
    left: auto;
    right: 22px;
}

.intro_sect .intro_item.left_item[data-index='0'] .type_text {
    right: 29px;
}

.intro_sect .intro_item .type_desc {
    color: #676767;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
    line-height: 1.3;
    transition: color 1s ease;
    padding: 0 44px;
    position: relative;
    z-index: 2;
    width: 100%;
    word-break: break-word;
}

.intro_sect .intro_item.left_item .type_desc {
    /* right: auto;
    left: 44px; */
    text-align: left;
}

.intro_sect .intro_item.active .type_desc {
    color: #fff;
    transition-delay: 0.3s;
}

/* slide */
.wesf_main_cont .slide_sect {
    margin-bottom: 85px;
}

.slide_sect .slide_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slide_wrap .marquee_slide {
    overflow: hidden;
}

.slide_wrap .marquee_slide .slide_list {
    display: flex;
    gap: 0 16px;
}

.slide_wrap .slide_item {
    width: 155px;
    height: 160px;
    background-color: #F1F1F1;
    border-radius: 6px;
    padding: 23px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide_wrap .slide_item.img07 {
    padding: 18px 0 22px;
}

.slide_wrap .slide_item.img15 {
    padding: 10px 0 5px;
}

.slide_wrap .slide_item.img16 {
    padding: 32px 0 14px;
}

.slide_wrap .slide_item .img_wrap {
    display: flex;
    max-width: 130px;
    height: 100%;
}

.slide_wrap .slide_item .img_wrap img {
    object-fit: contain;
}

/* 테스트 설명 */
.test_info_sect .info_wrap {
    position: relative;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.02);
    padding: 32px 22px 29px;
    overflow: hidden;
}

.info_wrap::after {
    content: "";
    display: block;
    width: 250px;
    height: 250px;
    background: url("/static/app_www/base/img/img_circle_in_gray.png") center / cover no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(100px, 120px);
    z-index: 1;
}

.info_wrap .info_area {
    position: relative;
    z-index: 2;
}

.info_wrap .info_list {
    text-align: center;
    margin-bottom: 28px;
}

.info_wrap .info_list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    font-size: 14px;
}

.info_wrap .info_list li:not(:last-child) {
    margin-bottom: 4px;
}

.info_wrap .info_list li::before {
    content: "•";
}


.info_wrap .btn_default {
    display: block;
}

@media screen and (max-width:767px) {
    .intro_sect .intro_item .type_desc {
        padding: 0 20px;
        padding-left: 64px;
    }

    .intro_sect .intro_item.left_item .type_desc {
        padding: 0 20px;
        padding-right: 64px;
    }
}