.hiw__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.hiw__wrapper > * {
    flex: 0 1 45%;
}

.hiw__pagination {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 5px;

    max-width: 36%;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
}
.hiw__pagination > * {
    height: 3px;
    width: 100%;
    background-color: var(--graySecond);
    transition: all 1.1s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
}
.hiw__pagination > *:hover {
    height: 12px;
}
.pagActive {
    background-color: var(--greenPrimary);
}
.hiw__slider_container {
    overflow: hidden;
    overflow-y: visible;
    align-items: stretch;
    align-self: stretch;
}
.hiw__slider {
    width: 100%;
    align-items: stretch;
    align-self: stretch;
    height: 93%;
}
.hiw__slider .swiper-slide {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-self: stretch;
    gap: 5px;
    height: unset !important;
}

@media (max-width: 768px) {
    .hiw__wrapper {
        flex-direction: column;
    }
    .hiw__pagination {
        margin-top: 16px;
        margin-bottom: 16px;
        position: relative;
        transform: unset;
        left: 0;
    }
    .hiw__pagination > *:hover {
        height: unset;
    }
}
