
.igc-wrap {
    --igc-inner: 1320px;
    --igc-arrow-offset: 120px;
    --igc-gap: 50px;
    --igc-radius: 20px;
    --igc-slides: 4;
    position: relative;
    margin: 5px 0 0
}
.igc-inner {
    position: relative;
    width: min(var(--igc-inner), 92vw);
    margin-inline: auto;
}
.igc-viewport {
    overflow: hidden;
    width: 100%;
}
.igc-track {
    display: flex;
    gap: var(--igc-gap);
    padding: 0;
    margin: 0;
    list-style: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform .42s ease;
}
.igc-slide {
    flex: 0 0 calc((100% - (var(--igc-slides) - 1) * var(--igc-gap)) / var(--igc-slides));
}
.igc-slide a {
    display: block;
}
.igc-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    border-radius: var(--igc-radius);
}
.igc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0;
    margin-right: -12px;
    margin-left: -12px;
    cursor: pointer;
    z-index: 2;
    opacity: .9;
    transition: opacity .2s ease;
}
.igc-arrow.igc-next {
    width: 10px;
}
.igc-arrow:hover {
    opacity: 1;
}
.igc-prev {
    left: calc(-1 * var(--igc-arrow-offset));
}
.igc-next {
    right: calc(-1 * var(--igc-arrow-offset));
}
@media only screen and (max-width: 1600px) {
    button.igc-arrow.igc-next svg {
        width: 70px;
        margin-right: 35px;
    }
    button.igc-arrow.igc-prev svg {
        width: 70px;
        margin-left: 35px;
    }
}
@media only screen and (max-width: 1500px) {
    button.igc-arrow.igc-next svg,
    button.igc-arrow.igc-prev svg {
        display: none;
    }
}
@media (max-width: 1280px) {
    .igc-wrap {
        --igc-arrow-offset: 70px;
    }
}
@media (max-width: 768px) {
    .igc-wrap {
        --igc-arrow-offset: 6px;
    }
    /* tuck inside on small screens */
}
@media only screen and (max-width: 1320px) {
    button.igc-arrow.igc-next svg,
    button.igc-arrow.igc-prev svg {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    .content-inner.padding-reset .igc-wrap h2 {
        margin-top: 15px
    }
}
/* Dots */
.igc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
.igc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 0, 0, .35);
    opacity: .7;
    cursor: pointer;
    padding: 0;
}
.igc-dot.is-active,
.igc-dot[aria-selected="true"] {
    background: #000;
    opacity: 1;
    transform: scale(1.15);
}
.igc-dot:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}


