.home-carousel {
    margin-bottom: 12px;
    padding-top: 76px;
}

.hc {
    max-width: 100%;
    margin-bottom: 50px;
}

.hc__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}

.hc__track {
    display: flex;
    width: 100%;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform 520ms ease;
}

.hc__slide {
    position: relative;
    flex: 0 0 100%;
    min-height: 610px;
    height: clamp(320px, 38vw, 430px);
    color: #FFF;
    overflow: hidden;
}

.hc__slide-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.hc__img-shadow {
    position: absolute;
    width: 100%;
    height: 418px;
    bottom: 0;
    background: var(--img-shadow);
    z-index: 1;
}

.hc__img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.01);
    inset: 0;
    transition: transform 200ms ease;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.10) 72%,
            rgba(0, 0, 0, 0) 100%);
}

.hc:hover .hc__img {
    transition: transform 200ms ease;
    transform: scale(1.02);
    object-fit: cover;
}

.hc__content {
    position: absolute;
    left: 72px;
    right: 26px;
    bottom: 162px;
    max-width: 760px;
    z-index: 999;
}

.hc__title {
    margin-bottom: 20px;
    font-family: "Inter";
    font-size: 28px;
    line-height: 150%;
    font-weight: 600;
    color: #FFF;
    z-index: 2;
}

.hc__text {
    font-family: 'Inter';
    font-size: 15px;
    line-height: 175%;
    font-weight: 300;
    text-align: justify;
    color: #FFF;
    z-index: 2;
}

.hc__read-more {
    position: absolute;
    left: 72px;
    bottom: 63px;
    padding: 12px 41px;
    border: none;
    border-radius: 999px;
    font-family: "Inter";
    font-size: 15px;
    font-weight: 300;
    color: #FFF;
    background: var(--orange-link);
    transition: color 200ms ease, background 200ms ease;
    z-index: 2;
    cursor: pointer;
}

.hc__read-more:hover {
    background: #FFF;
    color: var(--main-color);
    font-weight: 500;
    padding: 12px 40px;
}

.hc__btn {
    position: absolute;
    display: grid;
    place-items: center;
    bottom: 60px;
    padding: 24px 26px;
    width: 63px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.77);
    transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
    cursor: pointer;
}

.hc__btn:hover {
    background: rgba(255, 255, 255, 0.87);
}

.hc__btn:focus-visible {
    background: rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.hc__btn--prev {
    right: 142px;
}

.hc__btn--next {
    right: 72px;
}

@media (max-width: 1240px) {

    .hc__content {
        left: 42px;
        bottom: 200px;
    }

    .hc__btn--prev {
        left: 42px;
    }

    .hc__btn--next {
        left: 112px;
    }
}

@media (max-width: 700px) {
    .hc__content {
        left: 24px;
        bottom: 170px;
    }

    .hc__btn--prev {
        left: 24px;
    }

    .hc__btn--next {
        left: 94px;
    }

}