.hero_slider {

    position: relative;
    overflow: hidden;
    height: 75vh;
    overflow: visible;
}

.hero_slider > * {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.hero_slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero_slide.active {
    opacity: 1;
}

.hero_slide:first-child {
    background-image: url('../../public/website_assets/images/slide-4.jpg');
    background-repeat: no-repeat;
}

.hero_slide:nth-child(2) {
    background-image: url('../../public/website_assets/images/slide-2.jpg');
}

.hero_slide:nth-child(3) {
    background-image: url('../../public/website_assets/images/slide-3.jpg');
}

.hero_slide:nth-child(4) {
    background-image: url('../../public/website_assets/images/slide-1.jpg');
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 100%;
    margin: auto;
    color: white;
}

.content-left, .content-right {
    flex: 1;
}

.hero_slider-controls {
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0;
}

.hero_slider-control {
    color: black;
    font-size: 40px;
    font-weight: bolder;
    cursor: pointer;
    background: red;
    padding: 0px 12px 6px 12px;
    border-radius: 100px;
    color: white;
    opacity: 0.0;
    transition: opacity 0.3s ease;
}

.hero_slider:hover .prev,
.hero_slider:hover .next {
    opacity: 1;
    transition: opacity 0.6s ease;
}

.prev {
    position: absolute;
    bottom: 46%;
    left: 8%;
    transform: translateX(-50%);
}

.next {
    position: absolute;
    bottom: 46%;
    right: 8%;
    transform: translateX(50%);
}

.pause-button {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 100px;
    /*    border: 10px solid green !important;*/
    background: #f00;
    color: white;
    font-size: 18px;
    padding: 0px 0px;
    cursor: pointer;
    bottom: -50px;
    right: 50%;
    transform: translateX(50%);
    z-index: 500 !important;
}