#craouselContainer {
    border-radius: 5px;
    width: 90%;
    overflow: hidden;
    height: fit-content;
    font-size: 16px;
    position: relative;
    padding-top: 50px;
    margin: auto;
}

#craouselContainer .swiper-slide {
    width: auto;
    height: fit-content;
    display: flex;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    align-items: flex-start;
    flex-direction: column;
    padding: 0px;
    background-color: rgba(108, 174, 76, 0.5);
    /* backdrop-filter: blur(30px); */
    border: 1px solid #858585;
    background: linear-gradient(180deg, rgb(154 223 121) 0%, rgb(100 122 173) 100%);
}

#craouselContainer .swiper-slide .ImgHolder {
    /* background: linear-gradient(
        135deg,
        rgba(108, 176, 75, 1) 0%,
        rgba(219, 246, 206, 1) 100%
    ); */
    display: flex;
    width: 100%;
    height: auto;
    padding: 20px;
    border-bottom-left-radius: 20px;
}

#craouselContainer .ContentHolder::before {
    /* background-color: rgba(219, 246, 206, 1); */
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: -5px;
    z-index: -1;
    right: 0px;
}

#craouselContainer .ContentHolder {
    position: relative;
    padding: 0px 10px 10px;
    /* background-color: white; */
    border-top-right-radius: 20px;
    text-align: center;
    color: #fff;
}

#craouselContainer .swiper-pagination-bullet {
    background-color: white;
    opacity: 1;
    border: 1px solid #4361ee;
}

#craouselContainer .swiper-pagination-bullet-active {
    background-color: #4361ee;
}

#craouselContainer .swiper-button {
    border: 1px solid white;
}

#craouselContainer .swiper-slide img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin: auto;
    object-fit: contain;
    outline: 2px solid white;
    background: #fff;
}

#craouselContainer .swiper-slide h3 {
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
}
#craouselContainer .swiper-slide h5 {
    text-align: center;
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 300;
}

#craouselContainer .swiper-slide p {
    padding: 0px;
    margin-bottom: 15px;
    color: #fff;
}
#craouselContainer .swiper-slide p .toggle-text{
    color: #ffffff;
    border-bottom: 1px solid #fff;
}

@media (max-width: 638px) {
    #craouselContainer {
        width: 95%;
    }
}

@media (max-width: 576px) {
    #craouselContainer {
        width: 95%;
        padding-top: 0px;
    }
    
    
}

@media (max-width: 300px) {
    #craouselContainer {
        width: 95%;
    }

    #craouselContainer .swiper-slide {
        border-radius: 0px;
    }

    #craouselContainer .swiper-container .ImgHolder {
        border-radius: 0px;
    }

    #craouselContainer .ContentHolder {
        border-radius: 0px;
    }
}
