﻿/* Ana sayfdaki slide  */
.main-page-swiper {
    width: 100%;
    max-width: 100%;
    height: 880px;
}

    .main-page-swiper .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        
    }

        .main-page-swiper .swiper-slide img {
            max-width: 100%;
            max-height: 100%;
            display: block;
        }


/* typical phone screen resolution */
@media screen and (max-width : 860px) {
    .main-page-swiper {
        width: 100%;
        max-width: 680px;
        max-height: 340px;
    }

        .main-page-swiper .swiper-slide {
        }

            .main-page-swiper .swiper-slide img {
                display: block;
                -o-object-fit: cover;
                object-fit: cover;
                max-width: 680px;
                max-height: 340px;
            }
}

