@charset "utf-8";
/* CSS Document */

html {
    overflow-y: scroll;
}

.company-concerning {
    color: white;
}

.mySwiper {
    height: 500px;
}

.mySwiper2 .swiper-pagination-bullets {
    /*transform: translate(150px,-40px);*/
    position: absolute;
    left: 10%;
    bottom: 15%;
    width: auto;
}


.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: none;
    border: 1px solid #fff;
    opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.mySwiper2 .txt.center {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

.mySwiper2 .txt {
    position: absolute;
    width: 900px;
    left: 10%;
    top: 54%;
    margin-top: -167px;
    z-index: 1000;
}

.mySwiper2 .txt h4 {
    color: #00bf86;
    margin: 0;
    font-size: 18px;
    animation: txt-animation 0.3s ease-in-out;
}

.mySwiper2 .txt h2 {
    animation: txt-animation 0.5s ease-in-out;
}

.mySwiper2 .txt h2{
    font-size: 60px;
    color: #fff;
    padding: 10px 0 25px 0;
    margin: 0;
    line-height: 70px;
    font-weight: bold;
}

.mySwiper2 .txt.center .line {
    position: absolute;
    left: 410px;
}

.mySwiper2 .txt .line {
    animation: txt-animation 0.7s ease-in-out;
}

.mySwiper2 .txt .line {
    width: 80px;
    height: 4px;
    background: #00bf86;
    margin: 10px 0;
}

.mySwiper2 .txt h3 {
    animation: txt-animation 0.8s ease-in-out;
}

.mySwiper2 .txt h3 {
    font-size: 20px;
    color: #fff;
    padding: 25px 0;
    margin: 0;
    font-weight: normal;
    line-height: 30px;
}

.mySwiper2 .txt.center h3 {
    position: relative;
    top: 20px;
}

@keyframes txt-animation {
    0% {
        transform: translateY(200px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}