.flex1{
    display: flex;
}
.swiper-prev1{
    width: 140px;
    z-index: 10;
}
.swiper1{
    width: 820px;
    /* height: 600px; */
    border: 2px solid rgb(202, 202, 202);
    overflow: hidden;
}
.swiper-next1{
    width: 140px;
    z-index: 10;
}
.swiper-arrow1{
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
}
.swiper-arrow1:hover{
    opacity: 0.5; 
}
.swiper-arrow1 img{
    height: 68px;
}
.swiper-content1{
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 10px;
}
.swiper-img1 {
    height: 470px;
    width: 100%;
    overflow: hidden;
    padding: 5px;
    box-sizing: border-box; 
}
.swiper-img1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center; 
}
.swiper-text1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.swiper-text1-1{
    font-size: 14px;
    font-weight: 700;
}
.swiper-text1-2{
    font-size: 22px;
    font-weight: 700;
}
.swiper-buttons1{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
}
.swiper-button1-1, .swiper-button1-2{
    color: white;
    border-radius: 5px;
    background-color: rgba(232, 95, 92, 1);
    padding: 12px;
    width: 210px;
}
.swiper-button1-1:hover, .swiper-button1-2:hover{
    opacity: 0.5; 
}
.swiper-button1-1{
    background-color: rgba(189, 189, 189, 1);
}
.swiper-dots1{
    display: none;
}

@media only screen and (max-width: 768px) {
    .swiper-img1 {
        height: auto;
        padding: 2px;
    }
    .swiper-arrow1{
        display: none;
    }
    .swiper1{
        width: 100%;
        height: fit-content;
        border: 0.65vw solid rgb(202, 202, 202);
    }
    .swiper-content1{
        padding: 0 5vw;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
    .swiper-text1{
        margin: 15px 0;
    }
    .swiper-text1-1{
        font-size: 4vw;
    }
    .swiper-text1-2{
        font-size: 4.5vw;
    }
    .swiper-buttons1{
        font-size: 4vw;
        width: 100%;
        margin-bottom: 20px;
    }
    .swiper-button1-1, .swiper-button1-2{
        width: 100%;
        padding: 4vw;
        border-radius: 5px;
    }
    .swiper-dots1 .swiper-pagination-bullet{
        --swiper-theme-color: rgba(232, 95, 92, 1);
        width: 2.5vw;
        height: 2.6vw;
    }
    .swiper-dots1{
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 30px 0 60px 0;
    }
}