.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-duration: 0.5s;
}

.z-10 {
    z-index: 10;
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.not-visible {
    visibility: hidden;
}

.og-slider {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 20px;
    margin-bottom: 40px;
    min-height: 400px;
}

.og-slider--controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
}

.og-slider--prev,
.og-slider--next {
    cursor: pointer;
    background-color: transparent;
    font-family: "slick";
    height: 20px;
    width: 20px;
    font-size: 20px;
    z-index: 20;

}

.og-slide--content {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 783px) {
    .og-slide--content {
        padding: 0 3rem 0 0;
    }
}

.og-slider--prev {
    left: 0;
    top: 50%;
}

.og-slider--prev::before {
    content: "←";
}

.og-slider--next {
    right: 0;
    top: 50%;
}

.og-slider--next::before {
    content: "→";
}

.og-slider--dots {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.og-slider--dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    margin: 10px;
    cursor: pointer;
    border: 1px solid black;
}

.og-slider--dot--active {
    background-color: black;
}


.og-slide {
    min-height: 400px;
    background-color:  #a02d2c;
    display: flex;
    transition: opacity 0.5s linear;
}
.og-slider--rental .og-slide--wrapper {
    position: absolute !important;
}
.og-slide--wrapper {
    opacity: 0;
    width: calc(100% - 40px);
    top: 0;
    left: 0;
    right: 0px;
    padding: 0 20px;
    z-index: 0;
    transition: opacity 0.5s linear;
}

.og-slide--active,
.og-slide--next {
    z-index: 1;
}

.og-slide--active {
    opacity: 1;
}

.og-slide>div {
    width: 100%;
}

.og-slide--image {
    width: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    .wp-block-cover {
        width: 100%;
    }
}

.og-slide--text {
    width: 50%;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.og-slide--text p {
    color: inherit;
}
.og-slide {
    font-size: 20px;
}
.og-slide > div{
    width: 100%;
}

.og-slide--black {
 background-color: #575757;
}
.og-slide--red {
    background-color: #a02d2c;
}
.og-slide--yellow {
    background-color:  #ecb100;
}
