.swiper {
    width: 100%;
    height: 100%;
}

.mySwiper {
    overflow: hidden !important;
    cursor: pointer;
    height: 100vh;
}

.swiper-slide {
    text-align: left;
    font-size: 18px;
    /* Center slide text vertically */
    display: block;
    height: 100vh !important;
    background-color: var(--primary);
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.flex_centre {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    height: 100%;
    width: 100%;
}

.text_section {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.section {
    display: grid;
    justify-content: center;
}

.slider_title {
    color: var(--primary-text);
    font-size: 33px;
    text-transform: uppercase;
}

.slider_btn {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    border: 1px solid var(--primary-text);
    border-radius: 100px;
    padding: 5px 40px;
    background-color: transparent;
}

.swiper-slide img {
    display: block;
    object-fit: contain;
    height: 100%;
    width: 100%;
    position: relative !important;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@media(max-width: 768px) {
    .swiper-slide img {
        max-width: none !important;
    }

}

@media(max-width: 500px) {
    .slider_title {
        font-size: 25px;
        padding: 0 15px;
        padding-top: 20px;
        text-align: center;
    }

    .slider_btn {
        margin-top: 7px;
        padding: 3px 35px;
    }
}