/**
 * Add any custom CSS here.
 *
 * This file will be loaded after all other theme stylesheets.
 */


/*Sticky Header*/

#site_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    will-change: transform;
}

#site_header.hidden {
    transform: translateY(-100%);
}

#site_header .section-container {
    transition: all 0.3s ease-in-out;
}

/* logo base */
#site_header #logo {
    transition: transform 0.3s ease-in-out;
    transform-origin: left center; /* or center center */
}

/* when scrolled past 50px */

#site_header.shrink .section-container {
    padding-top: 0;
    padding-bottom: 0;
}

#site_header.shrink #logo {
    transform: scale(0.7);
}

.icdbh_gallery_thumb {
    height: 300px !important;
    width: auto !important;
}

.icdbh_gallery {
    position: relative;
    --swiper-pagination-bottom: -20px;
}

.icdbh_gallery .swiper-slide {
    width: auto;
}

.icdbh_gallery .swiper-button-next,
.icdbh_gallery .swiper-button-prev {
    color: #670F24
}

.icdbh_gallery .swiper-pagination {
    bottom: -20px !important;
}

@media (max-width: 768px) {
    .icdbh_gallery_thumb {
        height: 200px !important;
    }
}

@media (min-width: 768px) {
    .icdbh_gallery .swiper-button-prev {
        left: -40px
    }

    .icdbh_gallery .swiper-button-next {
        right: -40px
    }
}