
.swiper-slide {
    width: 100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-background-size: cover;
    /* kutu zemin görüntüsü yayılma biçimi değer: cover / contain / 100% 100% / auto  ------- */
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color:#fff!important;

}

.slider-text p{
    color:#fff!important;
    color: inherit;
    text-align: left;

}

.slider-next ,
.slider-prev {
    position: absolute;
    top: 0%;
    height:100%;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    font-size: 40px;
}

.slider-next i,
.slider-prev i{
    font-size: 40px;
    color:#fff;
}


.slider-prev {
    left:20px;
}

.slider-next {
    right:20px;
}


.swiper-pagination  .swiper-pagination-bullet 
    {
    background-color: #ccc;
    opacity: 1 !important;
    border-radius: 0;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background:#ccc;
    width: 40px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}