.carousel {
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(70vw - 15px);
    height: calc(100vh - 30px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: rgba(0,0,0,0.9);
    text-shadow: 0px 0px 5px rgba(255,255,255,0.07);
    z-index: 1;
}


.carousel-indicators {
    padding: 15px 30px 15px 15px;
    margin: 0px;
    width: 100%;
    justify-content: flex-end;
    z-index: 99;
}

.carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: rgba(0, 0, 0, 0.4);
}

.carousel .glow-btn {
    margin-top: 15px;
    position: relative;
    display: inline-flex;
    align-items: center;
    float: center;
    gap: 14px;
    padding: 5px 20px;
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.carousel .glow-btn::after {
    content: "";
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 80px;
    background: radial-gradient(
            ellipse at center,
            rgba(255, 0, 0, 0.1),
            rgba(255, 0, 0, 0.2),
            transparent 70%
    );
    filter: blur(20px);
    pointer-events: none;
}

.carousel .icon i {
    color: #ff2b2b;
    font-size: 14px;
    font-weight: 400;
}

.carousel .text.muted {
    color: rgba(255, 255, 255, 0.75);
    font-size: 9px;
}

.carousel .divider {
    width: 2px;
    height: 24px;
    background: #ff2b2b;
    box-shadow: 0 0 10px rgba(255, 43, 43, 0.8);
}

.carousel .title {
    margin-top: 35px;
    font-size: 15px;
    font-family:"glacialBold" !important;
    text-align: center !important;
    padding-left: 5px;
    z-index: 1;
}

.carousel .shortText {
    margin-top: 5px;
    padding-left: 5px;
    font-size: 10px;
    text-align: center !important;
    color: rgba(0,0,0,0.5);
    z-index: 1;
}

.carousel .img {
    position: relative;
    height: 20vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: -1;
}

.carousel .img img {
    /*padding-left: 5px;*/
    /*max-width: 50%;*/
    /*width: 10%;*/
    /*max-height: 60%*/
    height: 100%;
}

.carousel .line {
    position: fixed;
    bottom: 4vh;
    margin-top: 10vh;
    left: 50%;
    width: 2px;
    height: 27vh;
    background: rgba(255,255,255,0.15);
    z-index: 9999 !important;
}

.animate-me {
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.animate-me.active-anim {
    animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-text::before {
    content: "[ ";
    transform: translateX(5px);
}

.hover-text::after {
    content: " ]";
    transform: translateX(-5px);
}

.hover-text::before,
.hover-text::after {
    opacity: 0;
    color: red;
    transition: all 0.2s ease;
}

.hover-text:hover::before,
.hover-text:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media only screen and (max-width: 600px) {
    .carousel {
        position: absolute;
        top: 0px;
        left: 0px;
        width: calc(96vw - 15px);
        height: calc(100vh - 30px);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 10px;
        color: rgba(0, 0, 0, 0.9);
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.07);
        z-index: 1;
    }
}


