.carousel-item {
    flex: 0 0 auto;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.carousel-item:hover {
    scale: 105%;
    z-index: 10;

}

.carousel-container {
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 70px;
    margin-top: -70px;
    margin-bottom: -70px;
}

:nth-last-child(1 of .carousel-container) {
    margin-bottom: 70px;
}

.image-box {
    position:relative;
    border-radius: calc(clamp(2.188rem, 0.938vw + 2rem, 3.125rem));
    overflow: visible;
    height: calc(clamp(7.5rem, 8.125vw + 5.875rem, 15.625rem));
    transition: all 0.3s ease-in-out;

}

.carousel-item.image-box--double {
}

.image-overflow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-box-img {
    border-radius: calc(clamp(2.188rem, 0.938vw + 2rem, 3.125rem));
    width: 100%;
    height: auto;
    position:absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
}

.image-box--single {
    height: calc(clamp(7.5rem, 8.125vw + 5.875rem, 15.625rem));
    width: calc(clamp(7.5rem, 8.125vw + 5.875rem, 15.625rem));
}

.image-box--double {
    width: calc(2 * clamp(7.5rem, 8.125vw + 5.875rem, 15.625rem));
    height: calc(clamp(7.5rem, 8.125vw + 5.875rem, 15.625rem));
}

.image-overflow .image-box-img {
    margin-top: -70px;
    margin-right: -70px;
}   

.image-boxes-wrapper {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    max-width: 100vw;
}

.no-overflow .image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.no-overflow .image-overflow-wrapper {
    position: static;
    width: auto;
    height: auto;
    overflow: hidden;
}

.no-overflow .image-box-img {
    position: static;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    overflow: hidden;
}

@media (min-width: 360px) {
}
@media (min-width: 480px) {
    
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
    /* .carousel-item {
        height: 150px
    } */
    /* .image-box {
        height: 150px;
    }
    .image-box--single {
        width: 150px;
        height: 150px;
    }
    .image-box--double {
        width: 300px;
        height: 150px;
    } */
}
@media (min-width: 1280px) {
}
@media (min-width: 1440px) {
    /* .carousel-item {
        height: 200px;
    } */
    /* .image-box {
        height: 200px;
        border-radius: 50px;
    }
    .image-box--single {
        width: 200px;
        height: 200px;
    }
    .image-box--double {
        width: 400px;
        height: 200px;
    } */
    .image-boxes-wrapper {
        gap: 15px;
        margin-bottom: 15px;
    }
}

@media (min-width: 1920px) {
}
