.image-carousel-section {
    width: 100%;
    position: relative;
}

.image-carousel-section .image-carousel-container {
    max-height: 560px;
    height: 560px;
    position: relative;
}

.image-carousel-section .image-carousel-item-wrapper {
    height: inherit;
    position: relative;
}

.image-carousel-section .image-carousel-item-wrapper {
    width: calc(100% - 25%);
    margin-left: auto;
    height: 100%;
    z-index: 1;
}

.image-carousel-section .image-carousel-item-wrapper .slick-list, .image-carousel-section .image-carousel-item-wrapper .slick-track, .image-carousel-section .image-carousel-item-wrapper .slick-slide, .image-carousel-section .image-carousel-item-wrapper .slick-slide > div, .image-carousel-section .image-carousel-item-wrapper .image-carousel-item, .image-carousel-section .image-carousel-item-wrapper .image-carousel-item-img {
    height: 100%;
}

.image-carousel-section .image-carousel-content-wrapper .slick-list, .image-carousel-section .image-carousel-content-wrapper .slick-track, .image-carousel-section .image-carousel-content-wrapper .slick-slide, .image-carousel-section .image-carousel-content-wrapper .slick-slide > div, .image-carousel-section .image-carousel-content-wrapper .image-carousel-item-content {
    height: 100%;
}

.image-carousel-section .image-carousel-item-wrapper .image-carousel-item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.image-carousel-section .image-carousel-content-wrapper {
    position: absolute;
    background: white;
    width: 35%;
    height: calc(100% - 60px);
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
    z-index: 2;
}

.image-carousel-content-wrapper .slick-prev {
    left: 30px;
    top: unset;
    bottom: 0;
}

.image-carousel-content-wrapper .slick-next:before, .image-carousel-content-wrapper .slick-prev:before {
    color: black;
}

.image-carousel-content-wrapper .slick-next {
    left: 50px;
    top: unset;
    bottom: 0;
}

.image-carousel-section .pagination-container {
    width: 35%;
    height: auto;
    top: calc(100% - 60px);
    transform: translateY(-50%);
    padding: 30px;
    z-index: 3;
    position: absolute;
}

.image-carousel-section .pagination-container .pagination-n-arrows {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 30px;
    left: 30px;
    justify-content: space-between;
    column-gap: 2px;
    width: calc(100% - 60px);
    align-items: center;
}

.image-carousel-section .slick-arrow {
    cursor: pointer;
}

.image-carousel-section .slick-disabled {
    opacity: 0.3;
    cursor: auto;
}

.image-carousel-section .pagination-container .pagination-n-arrows .blue-arrow-prev {
    transform: scale(-1);
}

.image-carousel-section .slick-list {
    margin: 0 -5px;
}
.image-carousel-section .slick-slide>div {
    padding: 0 5px;
}

.image-carousel-section .image-carousel-content-wrapper.slick-slider {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
.image-carousel-section .image-carousel-content-wrapper .slick-list.draggable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (max-width:1023px) {
    .image-carousel-section .image-carousel-container {
        width: 100%;
        height: auto;
        max-height: unset;
        max-width: 100%;
        padding: 0;
    }

    .image-carousel-section .image-carousel-item-wrapper {
        width: 100%;
        height: calc(100% - 25%);
    }

    .image-carousel-section .image-carousel-content-wrapper {
        width: calc(100% - 30px);
        top: unset;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 80%);
        height: auto;
        padding: 20px 20px 90px 20px;
    }

    .image-carousel-section .image-carousel-content-wrapper .image-carousel-item-content .image-carousel-item-content__contents {
        font-size: 15px;
    }

    .image-carousel-section .pagination-container {
        width: calc(100% - 30px);
        top: unset;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 80%);
        height: auto;
        padding: 20px;
        pointer-events: none;
    }

    .image-carousel-section .pagination-container .pagination-n-arrows {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
        pointer-events: all;
    }
}