
.center {
    position: absolute;
    top: 90%;
    left: 90%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.down {
    position: relative;
    width: 25px;
    height: 40px;
    border-radius: 25px;
    background: transparent;
    border: 3px solid #fff;
    overflow: hidden;
    cursor: pointer;
}

.down::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ffff;
    left: 50%;
    top: 10px;
    transform: translate(-50%, 0);
    animation: animate 2s linear infinite;
}


.down::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 10px;
    border-radius: 3px;
    background: #ffff;
    left: 50%;
    top: 5px;
    transform: translate(-50%, 0);
}

@keyframes animate {
    0% {
        transform: translate(-50%, 100%);
        opacity: 1;
    }

    80% {
        opacity: 1;
        transform: translate(-50%, 350%);
    }

    100% {
        transform: translate(-50%, 450%);
        opacity: 0;
    }
}


.slide {
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: center;
    align-items: flex-end;
    text-transform: uppercase;
    padding: 10px;

}

.slide .titleS {
    font-size: 5rem;
    font-weight: 800;
    width: 50%;
    text-align: right;


}

.slide .descriptionS {
    font-size: 5rem;
    font-family: 'Lato Light';
    width: 60%;
    font-weight: 800;
    text-align: right;

}


.misionVision,
.valores,
.repuestos,
.nosotros,
.contacto {
    padding-left: 2rem;
    padding-right: 2rem;
}

.repuestos,
.nosotros,
.contacto {
    margin: 0 20px;
}

.contacto .title {
    margin-top: 4rem;
    margin-bottom: 0;

}

.contacto h2.title {
    margin-top: 1rem;
    font-size: 1.5rem;
}


.valores {
    background: var(--colorPrincipalBG);
    padding-left: calc(2rem + 20px);
}

.valores>div {
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0 10px;
}

.valores>div>div {
    min-width: 350px;
    width: 30%;
    margin: 10px 10px;
}

.valores p {
    text-align: center;

}

.valores h3 {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    margin: 0;
    font-weight: 100;
}

.valores img {
    width: 125px;
}

.title {
    font-family: 'Lato Light', sans-serif;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 4rem;
    color: var(--colorPrincipal);
    /* letter-spacing: 5px; */
}

h2.title {
    font-size: 2.5rem;
}

.repuestos p,
.nosotros p,
p {
    font-size: 1.5rem;
    text-align: justify;
}

.nosotros p,
.misionVision p {
    margin-right: 5vw;
}

.repuestos p,
.misionVision div {
    flex: 1 510px;
}

.misionVision div {
    margin: 0 25px;
}

.misionVision {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.container .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*CALCULAR CON JAVASCRIPT*/
    height: 100%;
    float: left;
    /* animation: animate 10s linear infinite; */
}

.container .slider .slide {
    position: relative;
    width: 100%;
    /*CALCULAR CON JAVASCRIPT*/
    height: 100%;
    float: left;
    text-align: left;
}

.container .slider .slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


/* repuestos */
.contenidoCircle {
    background: #fff;
    position: absolute;
    width: 300px;
    height: 200px;
    transform: translate(-270px, -20px);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    padding: 20px;
    transition: .5s;
    visibility: hidden;
    opacity: 0;
    cursor: context-menu;
    z-index: -2;

}

.contenidoCircle.right {
    transform: translate(-20px, -20px);

}

.contenidoCircle.right h1 {
    text-align: right !important;
    width: 100%;
}

.contenidoCircle.right p {
    text-align: right !important;

}

.contenidoCircle h1 {
    color: var(--colorPrincipal);
    font-family: 'Lato Light', 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

.contenidoCircle p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    padding-top: 2px;
}

.contenidoCircle img {
    position: absolute;
    bottom: 8px;
    width: 300px !important;
    height: 70px;
}

.circlePlus.active .contenidoCircle {
    transition: .5s;
    visibility: visible;
    opacity: 1;

}



.plus {
    width: 20px;
    height: 5px;
    /* background-color: var(--colorPrincipalDark); */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
    box-shadow: 0 .2px .5px rbga(0, 0, 0, .2);
}

.plus::before,
.plus::after {
    content: ' ';
    width: 20px;
    height: 5px;
    background-color: var(--colorPrincipalDark);
    position: absolute;
    transition: .5s;
    box-shadow: 0 .2px .5px rbga(0, 0, 0, .2);
}

.plus::before {
    top: 0;
}

.plus::after {
    top: 0;
    transform: rotate(90deg);
}

.circlePlus.active .plus:before {
    top: 0;
    transform: rotate(225deg);
}

.circlePlus.active .plus:after {
    top: 0;
    transform: rotate(315deg);
}



.circlePlus.active .circle1 {
    border: 2px solid var(--colorPrincipal);

}


.circle1 {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    border: 2px dashed var(--colorPrincipal);
    animation: animateCircle1 10s linear infinite;
}

@keyframes animateCircle1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.sectionRepuestos,
.sectionRepuesto1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.circlePlus {
    width: 40px;
    height: 40px;
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: white;
    border: 6px solid rgba(255, 255, 255, .2);
    background-clip: content-box;
    transition: .5s;
    cursor: pointer;
}

.circlePlus.active {
    width: 42px;
    height: 42px;
    border: 8px solid rgba(255, 255, 255, .2);

}

.circlePlus1 {
    top: 419px;
    left: 84px;
}

.circlePlus2 {
    top: 387px;
    left: 250px;
}

.circlePlus3 {
    top: 447px;
    left: 340px;
}

.circlePlus5 {
    top: 266px;
    left: 530px;
}

.circlePlus4 {
    top: 408px;
    left: 530px;
}


.sectionRepuesto1 div:first-child {
    flex: 1 40%;
}

.soluciones {
    position: relative;
}

.soluciones,
.soluciones img {
    width: 700px;



}

.marcas {
    display: flex;
    flex-direction: row;
    padding-top: 25px;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.marcas .cat {
    width: 200px;
}

.marcas .komatsu {
    width: 400px;

}


.soluciones {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.sectionRepuestos div {
    display: flex;
    flex: 1 33%;
    min-width: 400px;
    flex-direction: column;
    align-items: center;
}

.sectionRepuestos span {
    /* border: 1px solid #000; */
    width: 60%;
    font-size: 1.5rem;
    line-height: 4rem;
    height: 4rem;
    text-align: center;
    position: relative;
    transition: 0.5s;
    font-weight: bold;
}

.sectionRepuestos div:hover span {
    transition: 0.5s;
    color: white;
}

.sectionRepuestos span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorPrincipal);
    transition: 0.5s;
    transform-origin: top;
    transform: scaleY(.15);
    z-index: -1;
}

.sectionRepuestos div:hover span:before {
    top: 0;
    transition: 0.5s;
    transform: scaleY(1);
}

/* fin repuestos */
.directionP {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

}

.direction {
    display: flex;
    flex-direction: row;
    min-width: 530px;
    align-items: flex-start;
    font-size: 1.5rem;
    margin: 25px 50px;
}

.direction img {
    width: 55px;
    margin: 0 25px;
    /* border: 1px solid red; */
}

.contacto>div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.form {
    display: flex;
    flex: 1 40%;
    flex-direction: column;
}

.form input,
.form textarea {
    font-family: 'Lato';
    padding: 8px;
    background: transparent;
    margin: 8px 0;
    font-size: 1.5rem;
    border: 1px solid var(--colorPrincipalDark);
    resize: none;
    border-radius: 2.5px;
}

.form button[type="submit"] {
    font-family: 'Lato';
    padding: 8px;
    background: transparent;
    margin: 8px 0;
    font-size: 1.5rem;
    border: 1px solid var(--colorPrincipalDark);
    width: 90px;
    cursor: pointer;
    position: relative;
    transition: .5s;
}

.section {
    margin-top: 4rem;
}



.banner {
    margin-top: 15vh;
    height: 25vh;
    width: 100vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.principal:after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 2.5rem;
    transform: translateX(105%);
    right: 0;
    top: 15px;
    opacity: .3;
    background: var(--colorPrincipal);

}

.form button[type="submit"] span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--colorPrincipal);
    transition: 0.5s;
    transform-origin: top;
    transform: scaleY(0);
    z-index: -1;
}

.form button[type="submit"]:hover {
    border-color: var(--colorPrincipal);
    transition: .5s;
}

.form button[type="submit"]:hover span:before {
    top: 0;
    transition: 0.5s;
    transform: scaleY(1);
}

.form button[type="submit"]:hover span {
    color: #fff;
    transition: .5s;
}


.next>div {
    margin-top: 8rem;
    padding: 1rem 2rem;
    background-color: var(--colorPrincipal);
}

.next h2 {
    color: #fff;
    margin: 0 20px;

}

.next p {
    color: #fff;
    margin: 0 20px;
}


@media (max-width: 992px) {

    .repuestos p,
    .misionVision div {
        flex: 1 100vw;
    }


    .slide .titleS {
        font-size: 3rem;

        width: 80%;



    }

    .slide .descriptionS {
        font-size: 3rem;

        width: 90%;


    }
}

@media (max-width: 602px) {
    h1 {
        font-size: 2.5rem !important;
    }

    p {
        font-size: 1.3rem !important;
    }

    .marcas img {
        width: 100% !important;
    }

    .soluciones {
        width: 100% !important;
        overflow: none;
        display: none;
    }

    .form {
        width: 100% !important;

    }

    .directionP,
    .direction {
        width: 100% !important;
        min-width: 0;
        margin: 0;
        padding: 10px 0;
        font-size: 1rem;

    }

    .sectionRepuestos div {
        width: 100% !important;
        min-width: 0;
        flex: 1 100%;
    }

    .slide .titleS {
        font-size: 2rem;

        width: 80%;



    }

    .slide .descriptionS {
        font-size: 2rem;

        width: 90%;


    }
}

html {
    scroll-behavior: smooth;
}

/* riple */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    scrollbar-color: var(--colorPrincipal) #b8b8ba;
    scrollbar-width: thin;
    color: var(--fontColorPrincipal);
    -webkit-font-feature-settings: "liga"0;
    -moz-font-feature-settings: "liga"0;
    /* -ms-font-feature-settings: "liga"1; */
    font-feature-settings: "liga"0;
}

:root {
    --colorPrincipal: #e2ad2f;
    --colorPrincipalBG: #e2ad2f26;
    --colorPrincipalDark: #423f40;
    --colorPrincipalLight: #1ea29a;
    --fontColorPrincipal: #423f40;
    --fontColorPrincipalDark: #fff;
    --fontColorPrincipalLight: #787576;
}

/* border */
.border {
    border: 1px solid #000;
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SCROLLBAR */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* SCROLLBAR - ancho */
::-webkit-scrollbar {
    width: 6px;
    border-radius: 50%;
}

/* SCROLLBAR - seccion superior e inferior */
::-webkit-scrollbar-track {
    background: #b8b8ba;
}

/* SCROLLBAR - seccion seleccionable central */
::-webkit-scrollbar-thumb {
    background: var(--colorPrincipal);
}

/* SCROLLBAR - seccion seleccionable central - hover o click*/
::-webkit-scrollbar-thumb:hover {
    background: var(--colorPrincipalLight);
}


.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid black;
    border-radius: 50%;
    cursor: pointer;
    transition: .5s;
    border: 2px solid darkgray;
}

.swiper-pagination-bullet-active {
    background-color: var(--colorPrincipal) !important;
    width: 10px;
    transition: .5s;
    height: 10px;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
supported by Chrome and Opera */
}


.bannerLogo {
    height: 25vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


html {
    overflow-x: hidden;
    scrollbar-color: var(--colorPrincipal) #b8b8ba;
    scrollbar-width: thin;
}

.swiper-container{margin:0 auto;position:relative;overflow:hidden;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-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:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition-property:-webkit-transform;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translateZ(0);transform:translateZ(0)}.swiper-container-multirow>.swiper-wrapper{-webkit-box-lines:multiple;-moz-box-lines:multiple;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-flex-shrink:0;-ms-flex:0 0 auto;flex-shrink:0;width:100%;height:100%;position:relative}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-wp8-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:50%;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");left:10px;right:auto}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");right:10px;left:auto}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s;transition:.3s;-webkit-transform:translateZ(0);transform:translateZ(0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination{bottom:10px;left:0;width:100%}.swiper-container-horizontal>.swiper-pagination .swiper-pagination-bullet{margin:0 5px}.swiper-container-3d{-webkit-perspective:1200px;-o-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(transparent));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),transparent);background-image:linear-gradient(270deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(transparent));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),transparent);background-image:linear-gradient(90deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(transparent));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),transparent);background-image:linear-gradient(0deg,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(transparent));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),transparent);background-image:linear-gradient(180deg,rgba(0,0,0,.5),transparent)}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide,.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;visibility:hidden;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;backface-visibility:hidden;width:100%;height:100%}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-cube.swiper-container-vertical .swiper-cube-shadow{z-index:0}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;transform-origin:50%;-webkit-animation:a 1s steps(12,end) infinite;animation:a 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn)}}@keyframes a{to{transform:rotate(1turn)}}.swiper-container{width:100%;height:100%}.swiper-slide{text-align:center;font-size:18px;background:#fff;display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;background-position:50%;background-size:cover}