.hero_banner{}
.hero_banner .container {
    max-width: 1720px;
}
.hero_banner__inner {
    position: relative;
}
.hero_banner__banner_list {
    --slick-scale-factor: 1.075;
    overflow: hidden;
    margin-bottom: 0;
}

.hero_banner__banner_list .slick-active .image {
    animation: zoomIn 6s 0s ease-in-out forwards;
    transform-origin: 50% 50%;
}

.hero_banner__banner_list .slick-active .image[data-zoom="out"] {
    animation: zoomOut 6s 0s ease-in-out forwards;
    transform: scale(var(--slick-scale-factor));
}

.hero_banner__banner_list .slick-slide[aria-hidden="true"] .image {
    transform: scale(var(--slick-scale-factor));
    /*visibility: hidden;*/
}

.hero_banner__banner_list .slick-slide[aria-hidden="true"] .image[data-zoom="out"] {
    transform: scale(1);
}

.hero_banner__banner_list .image {
    /* position: relative; */
	display: block;
}
.hero_banner__banner_list .image::after {
    content: '';
    display: block;
    padding-bottom: 39.95%;
    background: linear-gradient(260.91deg, rgba(0, 0, 0, 0) 15.78%, rgba(0, 0, 0, 0.6) 82.58%);
}
.hero_banner__banner_list .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
	object-position: 50% 22%;
}
.hero_banner__content {
    position: absolute;
    left: 0;
    bottom: 15%;
    width: 100%;
}
.hero_banner__content .tag_line {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.58;
    margin-bottom: 24px;
}
.hero_banner__content .heading {
    color: #FFFFFF;
    margin-bottom: 24px;

    /* font-family: 'Saira Semi Condensed', sans-serif; */
    font-weight: 700;
    font-size: 90px;
    line-height: 1.06;
    text-transform: uppercase;
}
.hero_banner__content .arrow {
    cursor: pointer;
    max-width: 72px;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(var(--slick-scale-factor));
    }
}

@keyframes zoomOut {
    from {
        transform: scale(var(--slick-scale-factor));
    }

    to {
        transform: scale(1);
    }
}

@media (max-width: 1550px) {
    .hero_banner__content {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }
    .hero_banner__content .heading {
        font-size: 82px;
    }
}
@media (max-width: 1440px) {
    .hero_banner__banner_list .image::after {
        padding-bottom: 677px;
    }
    .hero_banner__content .heading {
        font-size: 74px;
    }
    .hero_banner__content .tag_line {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

}
@media (max-width: 1199px) {
    .hero_banner__banner_list .image::after {
        padding-bottom: 560px;
    }
    .hero_banner__content .heading {
        font-size: 62px;
    }
    .hero_banner__content .arrow svg {
        max-width: 100%;
        height: auto;
    }
    .hero_banner__content .arrow {
        max-width: 62px;
        line-height: 0;
    }
}
@media (max-width: 991px) {
    .hero_banner__content .heading {
        font-size: 48px;
    }
    .hero_banner__content .tag_line {
        font-size: 18px;
    }
    .hero_banner__banner_list .image::after {
        padding-bottom: 480px;
    }
    .hero_banner__content .arrow {
        max-width: 48px;
    }
}
@media (max-width: 767px) {
    .hero_banner__content .heading {
        font-size: 34px;
        margin-bottom: 20px;
    }
    .hero_banner__content .heading br {
        display: none;
    }
    .hero_banner__content .tag_line {
        font-size: 16px;
        margin-bottom: 18px;
    }
    .hero_banner__content .arrow {
        max-width: 42px;
    }
}