/*=========================
	IMAGE CAROUSEL COPY BLOCK
=========================*/

.block-image-carousel-copy.height__standard .image-carousel-copy__content {
	height: 600px;
}
.block-image-carousel-copy.height__large .image-carousel-copy__content {
	height: 850px;
}
.block-image-carousel-copy.height__full .image-carousel-copy__content {
	height: calc(100vh - 95px);
}

.block-image-carousel-copy .image-carousel-copy__content.swap-content{
	flex-direction: row-reverse;
}
.block-image-carousel-copy .image-carousel-copy__content.top-dent::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid white; /* Arrow color */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.block-image-carousel-copy .image-carousel-copy__content {
    grid-template-columns: 1fr 1fr;
}
.block-image-carousel-copy .image-carousel-copy__content .title {
  text-align: left;
  margin-bottom: var(--space-5);
}
.block-image-carousel-copy .image-carousel-copy__contentLeft {
	width: 50%;
    max-width: 100%;      

}

.block-image-carousel-copy .image-carousel-copy__contentRight {
	width: 50%;
    max-width: 100%;
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}
.block-image-carousel-copy .image-carousel-copy__contentRight.text-left {
    align-items: baseline;
    text-align: left;
}

.block-image-carousel-copy .image-carousel-copy__rightcontent.richtext {
    text-align: left;
}

.block-image-carousel-copy .image-carousel-copy__contentLeft .swiper{
	height: 100%;
}
.block-image-carousel-copy .image-carousel-copy__contentLeft .swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block-image-carousel-copy .swiper .swiper-arrow {
    bottom: 20px;
    top: unset;
	border: 1px solid white;
    padding: 7px 21px;
    border-radius: 10px;
    height: auto;
}
.block-image-carousel-copy .swiper .swiper-button-next{
	right: 25px;
}
.block-image-carousel-copy .swiper .swiper-button-prev{
    left: 28px;
}
.block-image-carousel-copy .swiper-button-next:after, 
.block-image-carousel-copy .swiper-button-prev:after {
	font-size: 16px;
    color: var(--color-n-white);
}

.block-image-carousel-copy .image-carousel-copy__contentLeft .single-image {
	width: 100%;
	height: 100%;
}
.block-image-carousel-copy .image-carousel-copy__contentLeft .single-image img{
	object-fit: cover;
}

.block-image-carousel-copy .image-carousel-copy__contentRight .image-carousel-copy__button {
    display: flex;
    gap: 20px;
}

@media (max-width: 992px) {
    .block-image-carousel-copy.height__standard .image-carousel-copy__content{
		height: auto;
	}
	.block-image-carousel-copy .image-carousel-copy__content.swap-content{
		flex-direction: column;
	}
	.block-image-carousel-copy .image-carousel-copy__content.top-dent::before{
		display: none;
	}
    .block-image-carousel-copy .image-carousel-copy__contentRight{
        width: 100%;
    }
    .block-image-carousel-copy .image-carousel-copy__content{
        flex-direction: column;
		height: auto !important;
    }
	.block-image-carousel-copy .image-carousel-copy__contentLeft{
		width: 100%;
		height: 450px;
		overflow: hidden;
		display: flex;
        align-items: center;
		min-height: 400px;
	}
	.block-image-carousel-copy .image-carousel-copy__contentRight {
	    padding: var(--space-5);
	}
}