
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.contentcaroussel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
}

.slide-container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
  background-color: blue;
}

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

.card {
    /* width: 320px; */
    margin: 0px;
    border-radius: 0px 0px 10px 10px;
    background-color: GreenYellow;
}

.image-content, .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

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

.card-image {
    position: relative;
    height: 150px;
    width: 100%;
    background: #FFFFFF;
    padding: 0px;
}

    .card-image .card-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border: 4px solid #4070F4;
    }

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

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

.button {
    border: none;
    font-size: 16px;
    color: #FFFFFF;
    padding: 8px 16px;
    background-color: #4070F4;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all .3s ease;
}

    .button:hover { background: #265DF2; }

.swiper-navBtn {
    color: #6E93F7 !important;
    transition: all .3s ease;
}

    .swiper-navBtn:hover { color: #4070F4 !important; }

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

.swiper-button-next { right: 0 !important; }
.swiper-button-prev { left: 0 !important; }

.swiper-pagination-bullet { background-color: #6E93F7 !important; opacity: 1 !important; }
    .swiper-pagination-bullet-active { background-color: #4070F4 !important; }

@media screen and (max-width: 768px) {
    .slide-content { margin: 0 10px; }
    .swiper-navBtn { display: none !important; }
}