/* 1
2
3 */
/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: bisque;
} */
.demobody {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: bisque; */
}

.slide-container {
    /* max-width: 1120px; */
    width: 100%;
    height: 490px;
    /* background-color: grey; */
    padding: 40px 0;
    /* border: 2px solid blueviolet; */
}

.slide-content {
    margin: 0 40px;
    /* background-color: red; */
    overflow: hidden;
    border-radius: 25px;
}

.demo-card {
    border-radius: 25px;
    background-color: #fff;
}

.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
    background-color: #def9ec;
    border-radius: 30px 25px 0px 25px;
    /* border: 2px solid red; */
}

.image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #3BB77E;
    border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #3BB77E;
}

.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #DEF9EC;
}

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #3BB77E;
}

.name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}

.demobutton {
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: #3BB77E;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demobutton:hover {
    background: #FDC040;
}

.swiper-navBtn {
    color: #6e93f7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover {
    color: red;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 40px;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-pagination-bullet {
    background-color: #FDC040;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

/* .swiper-pagination-bullet-active {
    background-color: #3BB77E;
} */

@media screen and (max-width: 768px) {
    .slide-content {
        margin: 0 10px;
    }

    .swiper-navBtn {
        display: none;
    }
}

/* .swiper-pagination {
    background-color: red;
    margin: 10px 10px 10px 10px;
} */