.swiper {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: -998; */
    /* z-index: -100; */
    z-index: 0;
    -ms-overflow-style: none;  /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}
.swiper::-webkit-scrollbar {
    display: none; /* 크롬, 사파리, 오페라, 엣지 */
}
.swiper-container-no-flexbox .swiper-slide {
    float: left;
}
.swiper-container-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}
.swiper .btn {
    /* z-index: 30; */
}
div.swiper-slide {
    display: block;
    text-align: center;
}
.main .main-slide section {
    position: relative;
    width: 100%;
    height: 100vh;
}

section .section-img.section1-img {
    background: url(/imgs/web/main/main01.png);
}
section .section-img.section2-img {
    background: url(/imgs/web/main/main02.png);
}

section .section-img.section3-img {
    background: url(/imgs/web/main/main03.png);
}

section .section-img.section4-img {
    background: url(/imgs/web/main/main04.png);
}

section .section-img.section5-img {
    background: url(/imgs/web/main/main05.png);
}
.main-slide section .section-img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.main-slide section .section-img img {
    width: 100%;
    height: 100%;
}


/* .section-img.section1-img {
    background: url(/imgs/web/main/main01.png);
} */
.main-slide section .section-title .logo {
    margin: 0 auto;
    z-index: 2;
    position: absolute;
    width: 25%;
    height: 50%;
}
.main-slide section .section-title .logo img {
    width: 100%;
    height: 100%;
}

.main-slide section .section-title{
    width: 100%;
    height: 100vh;
    
    text-align: center;
    color: #ffffff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.swiper-pagination {
    display: block;
    width: 67px;
    /* padding-left: 50px; */
    text-align: center;
    right: 0 !important;
}
.swiper-pagination > span{
    margin-top: 20px !important;
    margin-bottom: 25px !important;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    left: 46.9%;
    border-bottom: 2px solid rgb(255, 255, 255);
    padding: 3% 0;
    opacity: 0.3;
}
.swiper-pagination > span.swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid rgb(255, 255, 255);
    opacity: 0.502;
    background-color: rgba(255,255,255, 0.1);
    margin: 0 20px; 
    z-index: 20;

}
.swiper-pagination-bullet-active {
    background-color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
}
.swiper-pagination > span.swiper-pagination-bullet .newSpanTag {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -10px;
    right: -10px;
    z-index: 60;

    background-color: rgb(255, 255, 255);
    opacity: 0.302 !important;
    border-radius: 50%;
} 

/* 화면 가운데 텍스트 */
.swiper-slide > .section-title{
    /* padding-bottom: 70px; */
    /* margin-top: 200px; */
}
.swiper-slide > .section-title> h1{
    font-size: 70px;
    margin-bottom: 20px;
}
.swiper-slide > .section-title> h1 > b {
    display: inline-block;
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-transition: all 2s; /*글자 보여지는 속도*/
    transition: all 2s;
    font-weight: bold;
}
.swiper-slide > .section-title .subTextBox {
    height: 40px;
    z-index: 5;
    /* width: 60%; */
}
.swiper-slide > .section-title > .subTextBox > p.subText {
    display: none;
    height: 40px;
    font-size: 20px;
    font-weight: 200;
}
.swiper-slide > .section-title > .subTextBox > p.subText.on {
    display: block;
    animation: anim-lineUp 2s;
    z-index: 200;
}
@keyframes anim-lineUp {
    0% {
        opacity: 0;
        transform: translateY(80%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 하단 아이콘 */
.swiper .bottom-icon {
    position: absolute;
    bottom: 15vh;
    width: 55%;
    padding: 0 22.5%;
}
.swiper .bottom-icon ul {
    width: 100%;
    height: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.swiper .bottom-icon ul li {
    display: block;
    width: 260px;
}
.swiper .bottom-icon ul li h5 {
    font-size: 20px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    /* text-transform: uppercase; */
    line-height: 1;
    text-align: center;
    z-index: 18;
    margin-top: 15px;
}
.swiper .bottom-icon ul li > .iconBox  {
    display: inline-block;
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0); 
    -o-transform: scale(1.0);
    transition: transform 0.3s;
}
.swiper .bottom-icon ul li .iconBox:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05); /* IE 9 */
    -o-transform: scale(1.05);
    transition: transform 0.3s;
}