.nav_btm2 {
    display: flex;
    z-index: 5;
    align-items: center;
}

.main_swiper {
    width: 100%;
    height: 100%;
}

.main_swiper .img_zone {
    width: 100%;
    height: 100%;
}

.main_swiper .img_zone img {
    width: 100%;
    height: 100%;
    position: absolute;
    /* 이미지의 위치 설정 */
    top: 50%;
    /* 부모 요소의 중앙으로 이동하기 위한 값 */
    left: 50%;
    /* 부모 요소의 중앙으로 이동하기 위한 값 */
    transform: translate(-50%, -50%);
    /* 이미지를 가운데 정렬 */
    max-width: 100%;
    /* 이미지가 원본 크기보다 클 경우 최대 너비 설정 */
    max-height: 100%;
    /* 이미지가 원본 크기보다 클 경우 최대 높이 설정 */
}
.swiper-button-prev{
    background-image: url('../../images/btn_prev.png');
    width:69px;
    height:138px;
    background-size: 130% 130%;
}
.swiper-button-next {
    background-image: url('../../images/btn_next.png');
    width:69px;
    height:138px;
    background-size: 130% 130%;
    
}
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}


.swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    color: #000;
    opacity: 1;
    background: #FFFFFF;
    border: 4px solid #2C3B74;
    margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #2C3B74;
}

.container.quiz .box_result p {
    font-size: 45px;
    line-height: 70px;
    width: 1100px;
    height: 250px;
    overflow: auto;
}

.container.quiz .box_final {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 50px 170px 0 170px;
    width: 100%;
    height: 400px;
    text-align: center;
    background-color: #333;
    color: #FBCD3E;
    box-sizing: border-box;
}

.container.quiz .box_final .btn_zone {
    margin-top: 50px;
}

.container.quiz .btn_end,
.container.quiz .btn_restart {
    width: 480px;
    height: 165px;
    background: transparent linear-gradient(180deg, #44C8FF 0%, #0089C4 100%) 0% 0% no-repeat padding-box;
    box-shadow: 5px 5px 10px #00000029;
    border: 10px solid #FFFFFF;
    border-radius: 97px;
    font-size: 55px;
    color: #fff;
    font-weight: 600;
}

.container.quiz .btn_end {
    margin-right: 50px;
}

.container.quiz .btn_restart {
    margin-left: 50px;
}
