/*=========================
	IMAGE GALLERY BLOCK
=========================*/

.block-image-gallery .image-gallery__content{
    overflow: hidden;
}

.block-image-gallery.height__standard .image-gallery__content .swiper {
	height: 650px;
}
.block-image-gallery.height__large .image-gallery__content .swiper {
	height: 850px;
}
.block-image-gallery.height__extra-large .image-gallery__content .swiper {
	height: calc(90vh - 95px);
}

.image-gallery__contentImage {
    display: flex;
    height: 100%;
}
.image-gallery__contentImage a{
    display: flex;
    width: 100%;
}
.block-image-gallery .image-gallery__content .swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    min-height: 650px;
}
.block-image-gallery .swiper .swiper-arrow {
    bottom: 20px;
    top: unset;
	border: 1px solid white;
    padding: 7px 21px;
    border-radius: 10px;
    height: auto;
}
.block-image-gallery .swiper .swiper-button-next{
	right: 25px;
}
.block-image-gallery .swiper .swiper-button-prev{
    left: 28px;
}
.block-image-gallery .swiper-button-next:after, 
.block-image-gallery .swiper-button-prev:after {
	font-size: 16px;
    color: var(--color-n-white);
}

.block-image-gallery .block-link{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:10;
}

/*** If SLIDER is 2 or 3 images ***/

.block-image-gallery .image-gallery__header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.block-image-gallery .title {
  text-align: left;
  margin-bottom: var(--space-5);
}

.block-image-gallery .swiper-slide {
  color: var(--color-t);
  background: var(--color-t-60);
  /* padding: var(--space-3); */
  border-radius: 20px;
   width: 465px;
}

.block-image-gallery .image-gallery__contentbox {
    display: flex;
    position: relative;
}
.block-image-gallery .image-gallery__contentbox .content {
    padding: 25px;
    overflow: hidden;
    position: relative;
}

.block-image-gallery.numSlider__2 .image-gallery__contentbox .image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.block-image-gallery.numSlider__3 .image-gallery__contentbox .image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}



/* Swiper Pagination */
.block-image-gallery .swiper-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    column-gap: 12px;
}
.block-image-gallery .swiper-buttons div{
    opacity: 1;
    transition: 0.3s ease;
}
.block-image-gallery .swiper-buttons div:hover{
    opacity: 0.8;
}

/* Swiper Navigation */
.block-image-gallery .image-gallery__multipleSlides .swiper-button-prev,
.block-image-gallery .image-gallery__multipleSlides .swiper-button-next {
    border: 1px solid var(--color-n-white);
    border-radius: 10px;
    width: 45px;
    height: 32px;

    position: relative !important;
    inset: 0;
    color: var(--color-n-white);
}
.block-image-gallery .image-gallery__multipleSlides .swiper-button-prev svg path,
.block-image-gallery .image-gallery__multipleSlides  .swiper-button-next svg path {
  stroke: var(--color-p);
}
.block-image-gallery.bg-color-n-white .image-gallery__multipleSlides .swiper-button-prev svg path,
.block-image-gallery.bg-color-n-white .image-gallery__multipleSlides .swiper-button-next svg path {
  stroke: var(--color-p);
}
.block-image-gallery .image-gallery__multipleSlides .swiper-button-next:after, 
.block-image-gallery .image-gallery__multipleSlides .swiper-button-prev:after{
    font-size: 12px;
    font-weight: 800;    
}

@media (max-width: 768px){
    .block-image-gallery.height__standard .image-gallery__content .swiper {
        height: 450px;
    }
    .block-image-gallery .image-gallery__content .swiper img{
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .block-image-gallery {
        padding-top: var(--space-5);
        padding-bottom: var(--space-5);
    }
}