/*index banner*/
.banner-container {
    position: relative;
    overflow: hidden;
}
@media only screen and (max-width: 1400px) {
    .banner-container {
        }
}



/*@media only screen and (max-width: 480px) {
    .banner-container {
        height: fill-available;
        height: -moz-available;
        height: -webkit-fill-available;
    }
}*/

.banner-box {
    position: relative;
    visibility: visible !important;
}

.banner-box .true .banner__img{
    animation-name: none;
    animation-duration: 0s;
}
.banner-box .true .banner__img img{

}
.banner {
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.-paused{
    animation-play-state: paused; /* running */
  }


.banner__img {
    width: 100%;
    display: block;
    position: relative;
    height: 40vw;
    overflow: hidden;
    z-index: 2;
}

.banner__img img {
    width: 100%;
    height: auto;
}
@media only screen and (max-width: 1200px) {
    .banner-container,.banner__img {
        height: 465px;
    }
}
@media only screen and (max-width: 768px) {
    .banner-container,.banner__img {
        height: 507px;
    }
}

.banner__cover-box {
    width: 86%;
    position: absolute;
    left: -18%;
    top: -84%;
    z-index: 2;
    pointer-events: none;
}

.banner__cover-box .banner__cover {
    width: 100%;
    padding-bottom: 100%;
    background-color: #323232;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
    border-radius: 100%;
    display: block;
}

.banner__cover-box2 {
    width: 100%;
    height: 100%;
    background-color: #323232;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
    display: none;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.banner .banner__textbox {
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    left: 50%;
    right: 0;
    width: 1215px;
    margin-left: -607.5px;
    z-index: 3;
}

.banner .banner__textbox .text {
    color: #fff;
    max-width: 500px;
}

.banner .banner__textbox .text .title {
    font-size: 48px;
    font-weight: 800;
    line-height: 53px;
}

.banner .banner__textbox .text .txt {
    font-size: 18px;
    line-height: 30px;
    margin: 20px 0;
}

.banner__text {
    width: 95%;
    height: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.banner__title {
    width: 100%;
    font-size: 5.313em;
    font-weight: 300;
    line-height: 1.118em;
}

.banner__subtitle {
    width: 100%;
    margin-bottom: 5%;
    font-size: 1.875em;
    line-height: 1.5em;
    font-weight: 300;
}

.banner__btn {
    padding: 20px 50px;
    font-size: 1.25em;
    line-height: 1em;
    pointer-events: auto;
}

.banner__btn:hover {
    border-color: transparent !important;
}

.banner__btn::after {
    background-color: #f08c00;
}

.banner--style2 .banner__cover-box {
    top: auto;
    bottom: -84%;
}

.banner--style2 .banner__textbox {
    padding-top: 0;
    padding-bottom: 7%;
}

.banner--style2 .banner__textbox .banner__text {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.banner-container .banner__barbox {
    width: 100%;
    position: absolute;
    bottom: 50px;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.banner__barlist {
    margin: 0 2px;
    display: flex;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.3);
    width: 36px;
    justify-content: center;
}

.banner__bar {
    width: 36px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    display: block;
}

.inProgress {
    background-color: #ff3427;
    width: 0%;
    height: 3px;
}

.banner-box .banner__prev,
.banner-box .banner__next {
    width: 110px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    bottom: 40px;
    z-index: 7;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.banner-box .banner__prev .icon-arrow,
.banner-box .banner__next .icon-arrow {
    font-size: 22px;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.banner-box .banner__prev:hover,
.banner-box .banner__next:hover {
    background-color: white;
}

.banner-box .banner__prev:hover .icon-arrow,
.banner-box .banner__next:hover .icon-arrow {
    color: #323232;
}

.banner-box .banner__prev:active,
.banner-box .banner__next:active {
    background-color: #828282;
}

.banner-box .banner__prev:active .icon-arrow,
.banner-box .banner__next:active .icon-arrow {
    color: #fff;
}

.banner-box .banner__prev {
    border-radius: 10px 0 0 10px;
    right: calc(8% + 110px);
}

.banner-box .banner__prev .icon-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.banner-box .banner__prev::after {
    content: '';
    width: 1px;
    height: 40px;
    background-color: #828282;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.banner-box .banner__next {
    border-radius: 0 10px 10px 0;
    right: 8%;
}

@media only screen and (max-width: 1500px) {
    .banner__title {
        font-size: 3.75em;
    }

    .banner__subtitle {
        font-size: 1.563em;
    }

    .banner__btn {
        padding: 22px 50px;
        font-size: 1.25em;
    }
}

@media only screen and (max-width: 1215px) {
    .banner .banner__textbox {
        width: 100%;
        margin-left: -50%;
        padding: 0 30px;
    }

}

@media only screen and (max-width: 960px) {
    .banner__title {
        font-size: 2.875em;
    }

    .banner__subtitle {
        font-size: 1.375em;
    }

    .banner__btn {
        padding: 13px 40px;
    }
}

@media only screen and (max-width: 768px) {
    .banner .banner__textbox {
        padding-top: 60px;
        padding: 60px 30px 30px 30px;
        display: block;
    }

    .banner__cover-box {
        width: 133%;
        left: -37.5%;
        top: -30%;
    }

    .banner__text {
        width: 90%;
        padding: 0 0 0 20px;
    }

    .banner--style2 .banner__textbox {
        padding-top: 0;
        padding-bottom: 11%;
    }

    .banner--style2 .banner__cover-box {
        top: auto;
        bottom: -30%;
    }

    .banner-box .banner__prev,
    .banner-box .banner__next {
        bottom: 30px;
    }

    .banner-box .banner__prev {
        right: 125px;
    }

    .banner-box .banner__next {
        right: 15px;
    }
}

@media only screen and (max-width: 480px) {

    .banner__cover-box {
        display: none;
    }

    .banner__cover-box2 {
        display: block;
    }

    .banner__text {
        width: 100%;
        padding: 0 15px;
    }

    .banner__title {
        font-size: 1.875em;
    }

    .banner__subtitle {
        font-size: 1.25em;
    }

    .banner__btn {
        display: none;
    }

    .banner--style2 .banner__textbox {
        padding: 15% 0 0 0;
    }

    .banner--style2 .banner__textbox .banner__text {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
    }

    .banner--style2 .banner__cover-box {
        top: 0;
        bottom: auto;
    }

    .banner-box .banner__prev,
    .banner-box .banner__next {
        width: 75px;
        height: 40px;
        bottom: 20px;
    }

    .banner-box .banner__prev .icon-arrow,
    .banner-box .banner__next .icon-arrow {
        font-size: 16px;
    }

    .banner-box .banner__prev {
        right: 90px;
    }

    .banner-box .banner__prev::after {
        height: 27px;
    }
}