@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fontsMontserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.image-banner-carousel-wrapper {
    background-color: #000000;
}
.ibcw__banner-item {
    padding: 40px 20px;
    min-height: 800px;
    display: flex;
    align-items: center;
	position: relative;
	z-index: 0;
}
.ibcw__banner-item .ibcw__banner-img{
	position: absolute;
	z-index: -1;
	object-fit: cover;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
    height: 100%;
}

.ibcw__banner-item .ibcw__banner-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.ibcw__banner-item .ibcw__banner-title h2 {
    font-size: 58px;
	line-height: 1;
    color: #ffffff;
    font-family: 'Montserrat';
    font-weight: bold;
}

.ibcw__banner-item .ibcw__banner-text {
    font-size: 26px;
    color: #ffffff;
    font-family: 'Montserrat';
    line-height: 1.2;
}
.ibcw__banner-item .ibcw__banner-title h2 span {
    color: #f6931e;
}

.ibcw__banner-item .btn {
    padding: 12px 30px 14px;
    font-size: 16px;
}

.image-banner-carousel-wrapper .splide__pagination__page {
    transform: none;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    padding: 0;
    line-height: 1;
    margin: 0;
    min-height: 0;
    opacity: 0.6;
    --size: 60px;
    background-color: transparent !important;
    background-image: radial-gradient(#ffffff var(--size), transparent calc(var(--size) + 1px)) !important;
    outline: 2px solid transparent;
    outline-offset: 0px;
    margin: 0;
}

.image-banner-carousel-wrapper .splide__pagination__page.is-active {
    --size: 3px;
    transform: none;
    outline: 2px solid #ffffff;
    opacity: 1;
}

.image-banner-carousel-wrapper .splide__pagination {
    gap: 6px;
    margin-bottom: 15px;
}

.image-banner-carousel-wrapper .ibcw__banner-title {
    opacity: 0;
    transform: translateY(-100%);
    transition: 0s;
}
.image-banner-carousel-wrapper .ibcw__banner-text {
    opacity: 0;
    transform: translateY(100%);
    transition: 0s;
}
.image-banner-carousel-wrapper .ibcw__banner-btn {
    opacity: 0;
    transform: translateY(100px);
    transition: 0s;
}

.image-banner-carousel-wrapper .splide__slide.is-active .ibcw__banner-title {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s 0.3s ease-out;
}
.image-banner-carousel-wrapper .splide__slide.is-active .ibcw__banner-text {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s 0.7s ease-out;
}
.image-banner-carousel-wrapper .splide__slide.is-active .ibcw__banner-btn {
    opacity: 1;
    transform: translateY(0);
    transition: 0.3s 0.9s ease-out;
}
@media screen and (max-width: 1024px){
	.image-banner-carousel-wrapper .ibcw__banner-title h2{
		font-size: 48px;
	}
	.image-banner-carousel-wrapper .ibcw__banner-text{
		font-size: 23px;	
	}
	.ibcw__banner-item {
		min-height: 600px;
	}
}
@media screen and (max-width: 767px){
	
	.image-banner-carousel-wrapper .ibcw__banner-title h2{
		font-size: 26px;	
	}
	.image-banner-carousel-wrapper .ibcw__banner-text{
		font-size: 12px;	
	}
	.ibcw__banner-item .ibcw__banner-container{
		text-align: center;
	}
	.ibcw__banner-item {
		min-height: 500px;
	}
}
