.carousel {
    position: relative;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-inner > .carousel-item {
    position: relative;
    display: none;
    animation: 0.6s ease-in-out;
    height: fit-content;
    /*max-height: calc(100dvh - 85px);*/
    overflow: hidden;

}
.carousel-item > .carousel-img {
    /*min-width: 100%;*/
    width: 100%;
    /*min-height: 100%;*/
    height: auto;
}
.carousel-inner > .active,
.carousel-inner > .next {
    display: block;
}
.carousel-inner > .next {
    position: absolute;
    top: 0;
    width: 100%;
}
.carousel-inner > .to-left {
    animation-name: left;
}
.carousel-inner > .from-right {
    animation-name: right;
}
.carousel-inner > .to-right {
    animation-name: right;
    animation-direction: reverse;
}
.carousel-inner > .from-left {
    animation-name: left;
    animation-direction: reverse;
}
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    cursor: pointer;
}
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}
.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.8 !important;
}
.carousel-control-prev {
    top: calc(50% - 27.5px);
    left: 5%;
    height: fit-content;
    width: fit-content;
    padding: 20px;
    display: flex;
    background-color: #fff;
    border-radius: 50%;
}
.carousel-control-next {
    top: calc(50% - 27.5px);
    right: 5%;
    height: fit-content;
    width: fit-content;
    padding: 20px;
    display: flex;
    background-color: #fff;
    border-radius: 50%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: no-repeat 50% / 100% 100%;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23A98236' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23A98236' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}
@keyframes left {
    from {left: 0;}
    to {left: -100%;}
}
@keyframes right {
    from {left: 100%;}
    to {left: 0;}
}
.carousel-video {
    /*display: block;*/
    /*object-fit: cover;*/
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*min-width: 100%;*/
    /*min-height: 100%;*/
    /*width: auto;*/
    /*height: auto;*/
    /*z-index: 0;*/
    /*-webkit-transform: translateX(-50%) translateY(-50%);*/
    /*transform: translateX(-50%) translateY(-50%);*/
    /*!* uncomment the following line if you want to prevent mouse (or touch) clicks *!*/
    /*pointer-events: none;*/

    height: 100%;
    width: 100%;
    pointer-events: none;
}

@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next{
        top: calc(50% - 7.5px);
        padding: 10px;
    }
}
