@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@300;400;700&family=Roboto:wght@100&display=swap');

* {
    font-family: "Roboto", sans-serif;
}

html,
body {
    position: relative;
    height: 100%;
}

body {
    background: #fffefe;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

footer {
    position: absolute;
}

main .box-slider {
    margin-top: 10rem;
}

.swiper {
    width: 850px;
    height: 600px;
    border-radius: 30px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


.swiper-slide button {
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    width: 80px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid #ffffff;
    background: #007aff;
    cursor: pointer;
    margin-bottom: 10rem;

}


.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.swiper-wrapper .swiper-slide .container-text {
    margin-bottom: 10rem;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: 900;
    color: #000000;
    opacity: 1;
    background: rgb(255, 252, 252);
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
}


@media(max-width: 900px) {
    .swiper {
        display: inline-block;
        bottom: 10rem;
        z-index: 2;

    }

    .swiper .swiper-wrapper {}
}