@import url('http://fonts.googleapis.com/css2?family=Poppins&family=Righteous&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}
.container{
width: 100%;
height: 100vh;

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

}
.slides::before{
content: "";
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);

}
.slides img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img_overlay{
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
 /* padding: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.img_overlay p{
    color: #eb79c7;
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
margin-bottom: 2px;
}

.img_overlay h1{
    color: #ffff;
    font-size: 3.25rem;
    font-weight: 600;
    text-align: center;
    /* margin-bottom: 2px; */
}
.img_overlay h3{
    color: #f9ff10;
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    /* margin-bottom: 2px; */
}
.img_overlay a{
    background-color:#8975ea;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding-inline: 0.8rem 1.5rem;
    display: inline-block; 
    /* margin-bottom: 2px; */
    margin-top: 2rem;
    border-radius: 4rem;
    transition: all 0.5s ease-in-out;
}
.img_overlay a:hover{
    /* color: #eb79c7; */
    color: #0000;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    /* margin-bottom: 2px; */
}

.btn{
    background-color: rgba(0,0,0,0.6);
    padding: 2rem;
    color: #fff; 
    border-radius: 50%;
}
.btn::after{
    /* content: ""; */
    color: #fff;
}

.swiper-button-next{
    margin-right: 50px;
}
.swiper-button-prev{
    margin-left: 50px;
}
.swiper-button-next::after{
    color: #fff;
}
.swiper-button-prev::after{
    color: #fff;
}

@media screen and (max-width: 900px) {
    .swiper-button-next {
            margin-right: 20px;
        }
    
        .swiper-button-prev {
            margin-left: 20px;
        }
.img_overlay p {
    color: #eb79c7;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2px;
}

.img_overlay h1 {
    color: #ffff;
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    /* margin-bottom: 2px; */
}

.img_overlay h3 {
    color: #f9ff10;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    /* margin-bottom: 2px; */
}
}

@media screen and (max-width: 768px) {
    .swiper-button-next {
        margin-right: 10px;
    }

    .swiper-button-prev {
        margin-left: 10px;
    }

    .img_overlay p {
        color: #eb79c7;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 2px;
    }

    .img_overlay h1 {
        color: #ffff;
        font-size: 1.25rem;
        font-weight: 600;
        text-align: center;
        /* margin-bottom: 2px; */
    }

    .img_overlay h3 {
        color: #f9ff10;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        /* margin-bottom: 2px; */
    }
}