
.office__space>.header__wrapper{
    justify-content: center;
}
.office_wrapper{
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.office_wrapper .office_slider{
    width: 100%;
    height: calc(100% - 80px);
    position: relative;
    overflow: hidden;
}
.office_wrapper .office_slider img{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
.office_wrapper .office_slider img:not(.active){
    top: 0;
    left: -100%;
}
span.office_next, span.office_prev{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 14px;
    color: #eee;
    font-size: 24px;
    font-weight: bold;
    transition: 0.5s;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    z-index: 1;
}
span.office_next{
    right: 20px;
}
span.office_prev{
    left: 20px;
}
span.office_next:hover, span.office_prev:hover{
    background-color: #ede6d6;
    opacity: 0.8;
    color: var(--body-black);
} 
.dotsContainer{
    position: absolute;
    bottom: 5px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
}
.dotsContainer .dot{
    width: 10px;
    height: 10px;
    margin: 0px 2px;
    border: 3px solid #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.6s ease;
}
.dotsContainer .active{
    background-color: var(--body-black);
}

@keyframes next1{
    from{
        left: 0%
    }
    to{
        left: -100%;
    }
}
@keyframes next2{
    from{
        left: 100%
    }
    to{
        left: 0%;
    }
}

@keyframes prev1{
    from{
        left: 0%
    }
    to{
        left: 100%;
    }
}
@keyframes prev2{
    from{
        left: -100%
    }
    to{
        left: 0%;
    }
}

