.carousel {
    position: relative;
    padding-top: var(--sky_header_height);
    overflow-x: hidden;
}

.carousel .swiper-container {
    overflow: hidden;
}
.carousel .swiper-slide {
    height: auto;
}
.carousel .swiper-pagination {
    text-align: center;
    width: auto;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
}
.carousel img.img {
    width: 100%;
    height: calc(100vh - var(--sky_header_height));
}

.carousel video.img {
    width: 100%;
    height: calc(100vh - var(--sky_header_height) - 8px);
}
.carousel .note {
    padding-top: 130px;
    padding-left: 20px;
    width: 100%;
    max-width: 575px;
}

.carousel .note .title {
    color: var(--sky_txt_dark);
    font-size: 36px;
    line-height: 1.5;
}

.carousel .note .title .big {
    font-size: 48px;
}

.carousel .note .cont {
    color: var(--sky_txt_color);
    font-size: 18px;
    line-height: 2;
    margin-top: 15px;
}

.carousel .note .more {
    margin-top: 30px;
}

.carousel .note .more a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 136px;
    height: 46px;
    border: 1px solid var(--sky_txt_dark);
    font-size: 14px;
    line-height: 44px;
    padding-left: 19px;
    color: var(--sky_txt_dark);
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.carousel .note .more a:after {
    content: '';
    display: block;
    margin-left: 10px;
    width: 8px;
    height: 7px;
    background: url(../images/r3.png) no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.carousel .note .more a:hover:after {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}

.carousel .swiper-pagination-bullet {
    background: #fff;
    opacity: .9;
    margin: 0 0 0 8px;
    width: 12px;
    height: 12px;
}

.carousel .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--sky_primary_color);
}

@media (max-width: 1199.98px) {
    .carousel .note {
        padding-left: 0;
    }
    .carousel .img {
        width: 100%;
        object-fit: cover;
        height: unset !important;
    }
    .carousel .swiper-pagination {
        bottom: 15px;
    }
}
@media (max-width: 767.98px) {
    .carousel .swiper-pagination {
        margin-right: unset;
    }
}


@-webkit-keyframes slide_on1 {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes slide_on1 {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.slide_on1 {
    -webkit-animation-name: slide_on1;
    animation-name: slide_on1;
}

.carousel .swiper-slide-active .img {
    animation: slide_on1 5.5s linear;
    -webkit-animation: slide_on1 5.5s linear;
    -ms-animation: slide_on1 5.5s linear;
    -moz-animation: slide_on1 5.5s linear;
    -o-animation: slide_on1 5.5s linear;
}