.custom-carousel-wrapper {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
	padding-bottom: 22px;
}
.custom-carousel-slides {
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 250px;
}
.carousel-slide {
    min-width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.carousel-slide.active {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.carousel-slide img {
    max-width: 90%;
    margin: 0 8px 12px 8px;
    border-radius: 6px;
    position: relative;
    max-height: 480px;
    /* filter: drop-shadow(0 7px 2px rgb(0 0 0 / .5)); */
}

.closer .carousel-slide .image{
     z-index: 1;
}

.closer .carousel-slide .image:first-child {
    margin-right: -40px;
    z-index: 2;
}
.carousel-slide .image {
    padding: 0;
    position: relative;
    display: inline-block;
}
.carousel-slide .image img{
    z-index: 2;
}
.carousel-slide .slide-label {
    font-size: 1em;
    color: #ffffff;
	text-align: center;
}
.carousel-slide .slide-text{
    position: absolute;
    right: 0;
	font-size: 16px;
    color: white;
	top:26vh;
}

.image::after {
    content: '';
    position: absolute;
    bottom: 0;
    margin-left: -104%;
    width: 215%;
    height: 25px;
    background: radial-gradient(ellipse at center, rgb(0 0 0 / 42%) 20%, #fff0 70%);
    z-index: 1;
}

.carousel-slide .slide-text1,
.carousel-slide .slide-text2 {
    background: #003a6f;
    width: 120px;
    text-align: center;
    z-index: 2;
    position: relative;
}
.carousel-slide .slide-text2{
	background: #1a6eba;
}

.carousel-slide .slide-text1 span,
.carousel-slide .slide-text2 span{
	padding: 10px 14px;
    display: flex;
    min-height: 80px;
    text-align: left;
    justify-content: flex-start;
    line-height: normal;
    align-items: center;
}
.custom-carousel-thumbs {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
.carousel-thumb {
    cursor: pointer;
    border-radius: 4px;
    padding: 2px 4px 4px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 13%;
}
.carousel-thumb.active svg path {
    fill: white;
}
.carousel-thumb svg {
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.carousel-thumb .thumb-label {
    font-size: .8em;
    color: #2e6db6;
    line-height: 1.1;
    position: absolute;
    bottom: -1px;
    width: 60px;
    display: flex;
    align-items: flex-start;
    height: 28px;
    justify-content: center;
	text-align: center;
}
.carousel-thumb.active .thumb-label{
	color:white;
}
.carousel-arrow {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    border: none;
    font-size: 2em;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    color: #00529c;
    border-radius: 50%;
    background: #fff;
    font-weight: 700;
    line-height: 1.5em;
    height: 45px;
    width: 45px;
    text-align: center;
}
.carousel-arrow.left {
    left: 10px;
}
.carousel-arrow.right:after{
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
}
.carousel-arrow.left:after{
    content: "\f104";
    font-family: "Font Awesome 5 Pro";
}
.carousel-arrow.right {
    right: 10px;
}
.carousel-arrow:hover {
    color: #fff;
	background: none;
}
.carousel-arrow:focus {
    color: #00529c !important;
    background: #fff !important;
}
@media (max-width: 600px) {

    .carousel-slide img {
        max-height: 45vh;
    }
    .carousel-thumbs {
        gap: 5px;
    }
    .carousel-arrow {
        top: 10%;
    }
    .carousel-slide .slide-text{
        top:23vh;
    }
}
.dragging .custom-carousel-slides {
    cursor: grabbing;
    user-select: none;
    background: rgba(0, 0, 0, 0.03);
}
.dragging .carousel-slide {
    pointer-events: none;
    opacity: 0.85;
}