.slider {
    position: relative;
    display: flex;
    justify-content: center;
    height: 434px;
}

.slider > .container {
    height: 100%;
}

#slider {
    width: 100%;
}

.slider-bg {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: no-repeat;
    background-position: left -40px top -190px;
    transition: .75s;
}

.slide-h2-container {
    display: flex;
    justify-content: flex-end;
    width: 1200px;
    text-shadow: 0px 0px 5px rgba(255,255,255,0.70);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide > .h2 {
    padding-right: 30px;
}

.slider-controls {
    position: absolute;
    left: 50%;
    bottom: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    height: 20px;    
    transform: translateX(-50%);
}

.control {
    width: 30px;
    height: 5px;
    border-radius: 4px;
    background-color: var(--main-text-color);
    opacity: .25;
    cursor: pointer;
    transition: .75s;
}

.active-control {
    opacity: 1;
}

.hidden {
    opacity: 0;
}
