* {
    padding: 0;
    border: none;
    margin: 0;
}

html,
body {
    width: 100%;
    height: 100%;
}

img {
    object-fit: cover;
    user-select: none; 
    -webkit-user-drag: none;
}

.page {
    width: 100%;
    max-width: 550px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow-y: auto;
}

.page::-webkit-scrollbar {
    display: none;
}

.page_content {
    background: url('../img/bg.js');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 20%;
    position: relative;
}

.main_img {
    width: 100%;
    margin-top: 10px;
}

.btn_box {
    margin-top: -30px;
    position: relative;
}

.btn_box .middle_img {
    display: block;
    width: calc(100% - 32px);
    margin: 0 auto;
}

.btn_box .btn_btn {
    width: 16%;
    position: absolute;
    top: 50%;
    right: 36px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_box .btn_btn .btn_img {
    width: 100%;
    animation: pulse-scale 1s ease-in-out infinite alternate;
}

.middle_img_2 {
    display: block;
    width: calc(100% - 60px);
    margin: 0 auto;
    margin-top: 20px;
}

.text_img {
    display: block;
    width: calc(100% - 60px);
    margin: 10px auto;
}

.swiper {
    display: block;
    width: calc(100% - 32px);
    aspect-ratio: 701 / 418;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid #ebb347;
}

.swiper .swiper-wrapper {
    display: flex;
    will-change: transform;
    transition: transform 0.5s ease;
}

.swiper .swiper-slide img {
    width: 100%;
    flex: 0 0 100%;
    display: block;
}

.service_btn {
    width: 17%;
    max-width: calc(550px * 0.17);
    position: fixed;
    right: 10px;
    top: 50%;
    z-index: 9999;
    animation: moveUpDown 0.6s infinite alternate;
}
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(5px);
    }
}
.service_btn .service_img {
    width: 100%;
}

@keyframes pulse-scale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}