.webaboutus_environment {
    width: 100%;
    background: #ffffff;
    padding: 50px 0;
}

.office-environment {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
}

.swiper-container-office {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.swiper-container-office .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
    transform: scale(1);
}

.swiper-container-office .swiper-slide-active {
    transform: scale(1);
}

.swiper-container-office .swiper-slide img,
.swiper-container-office .swiper-slide .office-img {
    width: 100%;
    height: 250px;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.swiper-button-next-office,
.swiper-button-prev-office {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    background-color: rgba(255,255,255,0.8);
    background-size: 15px 25px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next-office:hover,
.swiper-button-prev-office:hover {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.swiper-button-next-office {
    right: 10px;
}

.swiper-button-prev-office {
    left: 10px;
}

@media screen and (max-width: 768px) {
    .webaboutus_environment {
        padding: 30px 0;
    }
    
    .office-environment {
        margin: 20px auto;
    }
    
    .swiper-button-next-office,
    .swiper-button-prev-office {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        background-size: 10px 20px;
    }
}