
.swiper-container {
    position: relative;
    height: 100%;
    border-radius: 12px;
}

.swiper-Image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.swiper-dotContainer {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    z-index: 2;
}

.swiper-dot {
    width: 10px;
    height: 10px;
    background-color: #ef3121;
    border-radius: 50000px;
    margin-right: 8px;
    transition: 0.5s;
}

.swiper-dot:hover {
    background-color: #d62828;
}

.swiper-TextContainer {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

    .swiper-TextContainer h1 {
        font-family: 'IranSans';
    }

.swiper-texts {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

