
.carousel-wrapper {
    height: 500px;
    width:100%;
}
#carousel {
    position: relative;
    height: 400px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}
#carousel div {
    position: absolute;
    display: inline;
    transition: transform 1s, left 1s, opacity 1s, z-index 0s;
    opacity: 1;
}
#carousel div img {
    height: 400px;
    transition: width 2s;
}
#carousel div.hideLeft {
    left: 0%;
    opacity: 0;
    transform: translateY(50%) translateX(-50%);
}
#carousel div.hideLeft img {
    width: 200px;
}
#carousel div.hideRight {
    left: 100%;
    opacity: 0;
    transform: translateY(50%) translateX(-50%);
}
#carousel div.hideRight img {
    width: 200px;
}
#carousel div.prev {
    z-index: 5;
    left: 30%;
    transform: translateY(50px) translateX(-50%);
}
#carousel div.prev img {
    width: 300px;
}
#carousel div.prevLeftSecond {
    z-index: 4;
    left: 15%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0.7;
}
#carousel div.prevLeftSecond img {
    width: 200px;
}
#carousel div.selected {
    z-index: 10;
    left: 50%;
    transform: translateY(0px) translateX(-50%);
}
#carousel div.next {
    z-index: 5;
    left: 70%;
    transform: translateY(50px) translateX(-50%);
}
#carousel div.next img {
    width: 300px;
}
#carousel div.nextRightSecond {
    z-index: 4;
    left: 85%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0.7;
}
#carousel div.nextRightSecond img {
    width: 200px;
}
.container {
    padding-top: 4rem;
}
.carousel-butts {
    position: relative;
    color: black;
    border: 1px solid black;
    font-size: .75rem;
}
.carousel-butts:hover {
    color: white;
    background-color: black;
    cursor: pointer;
}

/* carousel title CSS BT feb24 */

.hideLeftTitle {
    display: none;
}
.prevLeftSecondTitle {
    display: none;
}
.prevTitle {
    display: none;
}
.selectedTitle {
    display: block;
    text-align: center;
}
.nextTitle {
    display: none;
}
.nextRightSecondTitle {
    display: none;
}
.hideRightTitle {
    display: none;
}
