.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.carousel-indicators button {
    cursor: pointer;
    height: 32px;
    width: 32px;
    margin: 5px;
    border-radius: 100%;
    background-color: transparent;
    position: relative;
}


.carousel-indicators button:hover::after {
    position: absolute;
    height:26px;
    width:26px;
    display:block;
    content:'';
    background-color: rgba(255,255,255,.5);
    border-radius: 100%;
    top: 2px;
    left: 2px;
}
.carousel-indicators button:hover {
    background-color: rgba(255,255,255,.25);
    transition: all 0.5s ease;

}
.carousel-indicators button.active::after {
    position: absolute;
    height:26px;
    width:26px;
    display:block;
    content:'';
    background-color: rgba(255,255,255,.9);
    border-radius: 100%;
    top: 2px;
    left: 2px;
    transition: all 0.5s ease;
}
.carousel-inner {
    position: relative;
    width: 100%;
    height:100%;
    overflow: hidden;
    margin: 0 auto;
}
.carousel-inner::before {
    position: absolute;
    top: -40px;
    content: '';
    display: block;
    width: 100%;
    height: 40px;
    z-index: 0;
    background-image: linear-gradient(160deg, rgba(0,0,0,.5) 0%,rgba(0,0,0,0) 50%);

}

.carousel-item {
    transition-duration: 1s ease;
}
.carousel-inner::after {
        position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .22), transparent);
    z-index: -1;
    bottom: 0;
}
.carousel-item .link-button {
    width: auto;
    min-width: 270px;
    z-index:99;
    margin: 5px 5px 15px;
}
.carousel-caption {
    position: absolute;
    right: 0;
    left: 0;
    width:100%;
    z-index: 10;
    color: #fff;
    text-align: center;
    padding:0 0 10px 0;
    margin:1rem 0;
}
.carousel-caption.pos-rel {
  position: relative !important;
}
.carousel-content h4,
.carousel-content h5,
.carousel-content ol,
.carousel-content ul
 {
    width: 75%;
    max-width:1200px;
    margin: 10px auto;
 }


.carousel-indicators button {
    border: 2px solid rgba(255,255,255,.5);
}
.carousel-content, .carousel-inner {
  min-height: 480px;
}

.carousel-control-next, 
.carousel-control-prev {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
    width: 100px;
    height: 100px;
    top: 35%;
    min-width: 40px;
    border-radius: 100%;
}
.carousel-control-prev {
    left: 10px;
}
.carousel-control-next {
    right: 10px;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: transparent no-repeat center center;
    background-size: 50%;
}

span.carousel-control-prev-icon::before,
span.carousel-control-next-icon::before {
    position: absolute;
    top: 42px;
    right: 33.3%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-left: 3px solid transparent;
    transform: rotate(45deg);
    border-radius: 1px;
}
span.carousel-control-prev-icon::before {
  transform: rotate(225deg);
  left:33.33%;
}

.carousel-condensed {
  min-height:380px;
}
.carousel-control-next, 
.carousel-control-prev {
    background-color:rgba(0,0,0,.75);
}

a.carousel-control-next>*:hover, 
a.carousel-control-prev>*:hover {
    border-radius: 100%;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 30px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--bs-carousel-indicator-active-bg);
    background-clip: padding-box;
    border: 1px solid rgba(255,255,255,.5);
    opacity: .75 !important;
}

.sr-only {
    display:none;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
@media screen and (max-width:480px) {

.carousel-control-next, 
.carousel-control-prev {
    width: 50px;
    height: 50px;
}
.carousel-control-next {
    right: 5px;
}
.carousel-control-prev {
    left: 5px;
}
span.carousel-control-prev-icon::before,
span.carousel-control-next-icon::before {
    position: absolute;
    top: 16px;
}

.carousel-control-next, .carousel-control-prev {
    background-color: transparent;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
}

@media screen and (min-width:480px) {


.carousel-control-next {
    right: 5px;
}
.carousel-control-prev {
    left: 5px;
}
.carousel-control-next, .carousel-control-prev {
    width: 50px;
    height: 50px;
}
span.carousel-control-prev-icon::before,
span.carousel-control-next-icon::before {
    position: absolute;
    top: 16px;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
}

@media screen and (min-width:600px) {

.carousel-item .link-button {
    font-size: 18px;
}
.carousel-control-next {
    right: 10px;
}
.carousel-control-prev {
    left: 10px;
}
.carousel-content, .carousel-inner {
  min-height: 400px;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
}

@media screen and (min-width:768px) {

.carousel-content, .carousel-inner {
  min-height: 300px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

}
@media screen and (min-width:992px) {

span.carousel-control-prev-icon::before, span.carousel-control-next-icon::before {
    position: absolute;
        top: 30%;
}
span.carousel-control-prev-icon::before {
    left: 40%;
}
span.carousel-control-next-icon::before {
    right: 40%;
}

.carousel-content, .carousel-inner {
  min-height: 450px;
}
.carousel-caption {
    
    bottom: 46px;
}
.carousel-content > div {
        max-width: 1400px;
        margin:  auto;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

@media screen and (min-width:1200px) {

span.carousel-control-prev-icon::before,
span.carousel-control-next-icon::before {
    height:40px;
    width:40px;
    transition: all ease-out .15s;
}
.carousel-control-next, .carousel-control-prev {
    width: 100px;
    height: 100px;
}

}