/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.main {
    height: 90vh;
    width: auto;
    margin: 0.5rem 4rem 0.5rem;
    border-radius: 1rem;
}

.wrapper,
.slide {
    width: 100%;
    height: 100%;
}

.slide {
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
}

.slide .image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    user-select: none;
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    color: #333;
    background: #fff;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}

a.button:hover {
    color: #fff;
    background-color: #C87E4F;
}

/* swiper button css */
.nav-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(40, 34, 34, 0.8);
}

.nav-btn:hover {
    background: rgba(255,255,255,0.4);
}

.swiper-button-next {
    right: 50px;
}
.swiper-button-prev {
    left: 50px;
}

.nav-btn::before,
.nav-btn::after {
    font-size: 25px;
    color: #fff;
}

.swiper-pagination-bullet {
    opacity: 1;
    height: 12px;
    width: 12px;
    background-color: #fff;
    visibility: hidden;
}

.swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: #461dd0;
}

@media screen and (max-width: 768px) {
    .nav-btn {
        visibility: hidden;
    }

    .swiper-pagination-bullet {
        visibility: visible;
    }

    .main {
        margin: 20px 40px 20px;
        width: auto;
        height: 275px;
    }
    
    .wrapper,
    .slide {
        width: 100%;
        height: 100%;
    }
} 