/* Image Carousel Section */
.fc_image_carousel{
    padding-top: var(--settings_padding_top);
	padding-bottom: var(--settings_padding_bottom);
	margin-top: var(--settings_margin_top);
	margin-bottom: var(--settings_margin_bottom);
	background-color: var(--settings_background_color);
	color: var(--settings_text_color);
}
.image-carousel {
	position: relative;
	padding: 40px 0;
}
.image-carousel .owl-carousel.images .owl-item {
    width: auto !important;
}
.image-carousel .owl-carousel.images .owl-item img {
    height: 220px;
    width: auto;
    object-fit: cover;
    display: block;
}
.image-carousel .images{
    padding-left: 5%;
}
.image-carousel .bottom-row-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.image-carousel .bottom-row-inner .content{
    color: var(--settings_text_color);
    font-family: "League Script", cursive;
    margin: 60px 0 20px 0;
}
.image-carousel .bottom-row-inner .content h2{
    color: var(--settings_text_color);
    font-family: "League Script", cursive;
}
.image-carousel .custom-nav{
	position: relative;
    display: flex;
    gap: 30px;
}
.image-carousel .custom-nav button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 20px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-indent: -9999px;
}
.image-carousel .custom-nav button:hover {
    opacity: 0.6;
    transform: translateX(5px);
}
.image-carousel .custom-nav .prev-btn:hover {
    transform: translateX(-5px);
}
.image-carousel .custom-nav button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--settings_text_color);;
}
.image-carousel .custom-nav button::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--settings_text_color);;
    border-bottom: 1px solid var(--settings_text_color);;
    border-radius: 0;
}
.image-carousel .next-btn::after {
    right: 0;
    transform: rotate(-45deg) scaleX(1);
}
.image-carousel .prev-btn::after {
    left: 0;
    transform: rotate(135deg) scaleX(1);
}
@media (min-width: 768px) {
    .image-carousel .owl-carousel.images .owl-item img {
        height: 300px;
    }
}
@media (min-width: 992px) {
    .owl-carousel.images .owl-item img {
        height: 380px;
    }
}
@media (max-width: 768px) {
    .image-carousel .bottom-row-inner{
        margin-top: 30px;
        flex-direction: column-reverse;
    }
    .image-carousel .bottom-row-inner .content {
        margin: 30px 0 20px 0;
    }
}