 /* Gallery Carousel */
/* Prevent stacking if Swiper fails */
.swiper {
    width: 100%;
	margin-right:0 !important;
}

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

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
    text-align: center;
    border-radius: 0 0 10px 10px;
    font-family: 'proxima-nova', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
	background: rgba(255, 255, 255, 0.4);
   width: 44px !important;
  height: 44px !important;
   border-radius: 50% !important;
   top: 50% !important;
   transform: translateY(-50%)!important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
box-shadow: 0 0 10px rgba(255,255,255,0.6);
}
.gallery-carousel .swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex: 0 0 100%;
}
.slick-dots {
    position: absolute;
    bottom: -65px !important;
}
.gallery-carousel-block {
    padding: 6rem 2rem;
    color: #fff;
    position: relative;
}

.gallery-carousel-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
	margin:auto !important;
	max-width:1250px;
}

.gallery-carousel-title {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
	display: flex;
   align-items: center;
   justify-content: center;
   padding: 1rem;
}

.gallery-carousel-title h2 {
  text-transform:uppercase;
    font-weight: 700;
	text-align:left;
	line-height: 1;
	font-size: 3.8rem;
	font-family: 'proxima-nova', sans-serif;
    margin: 0;
}

.gallery-carousel {
    flex: 1 1 600px;
    max-width: 850px;
    overflow: hidden;
}

.gallery-carousel img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

/* Responsive stacking */
@media (max-width: 768px) {
	.swiper-button-next, .swiper-button-prev {
		margin-top: 0 !important;}
	.gallery-carousel-block {
		padding: 2rem 2rem 3rem;}
	.gallery-carousel-inner {
		display: block;}
    .gallery-carousel-inner {
        flex-direction: column;
    }

    .gallery-carousel-title,
    .gallery-carousel {
        max-width: 100%;
        text-align: center;
    }
	.gallery-carousel-title h2{  font-size: 2.8rem;}
}