.hero_banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    min-height: 939px;

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 90%);
        z-index: 1;
        pointer-events: none;
    }


    & > .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 32px);
        align-items: flex-start;
        z-index: 2;

        &.left {
            align-items: flex-start;
            text-align: left;
        }

        &.center {
            align-items: center;
            text-align: center;
        }

        &.right {
            align-items: flex-end;
            text-align: right;
        }

        @media (max-width: 991px) {
            align-items: center !important;
            text-align: center !important;
        }

        & .hero_banner_inner {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            align-items: center;
            gap: clamp(24px, 5vw, 64px);

            @media (max-width: 991px) {
                grid-template-columns: 1fr;
                text-align: center;
            }

            & .hero_banner_left {
                display: flex;
                flex-direction: column;
                gap: clamp(12px, 2vw, 16px);
                & .sub-title{
                    font-size: 24px;
                    font-weight: 400;
                    line-height: 112%;
                    letter-spacing: 0.10em;
                    color: #fff;
                    margin: 0;
                    text-transform: uppercase;
                }
                & .date_text {
                    font-size: 20px;
                    font-weight: 400;
                    line-height: 112%;
                    letter-spacing: 0.10em;
                    margin-top: 20rem;
                    color: #fff;
                }
            }

            & .hero_banner_right {
                display: flex;
                flex-direction: column;
                gap: clamp(16px, 3vw, 24px);
                justify-self: end;
                @media (max-width: 991px) {
                    justify-self: center;
                    max-width: 100%;
                }
            }


            & h1 {
                font-style: normal;
                font-weight: 400;
                line-height: 1.1;
                color: var(--white);
                font-size: clamp(3.4rem, 6vw, 6rem);
                margin: 0;
            }

            & .text_area {
                & p {
                    font-size: clamp(1.8rem, 3vw, 2.2rem);
                    line-height: 1.6;
                    color: var(--white);
                    margin: 0;
                }
            }

            & .btn_wrapper {
                margin-top: clamp(16px, 3vw, 32px);

                & .btn_primary {
                    display: inline-flex;
                    align-items: center;
                    gap: 16px;
                    min-width: 250px;
                }
            }
        }
    }
	
	& img {
        width: 100%;
        height: auto;
        bottom: 0;
        left: 0;
        object-fit: cover;
        object-position: center;
        position: absolute;
        z-index: 0;
	}
}
@media (max-width: 1024px) {
    .hero_banner > .container {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .hero_banner > img {
        bottom: unset;
        top: 0;
        height: 100%!important;
	}
}
@media (max-width: 767px) {
    .hero_banner {
        min-height: 469px;
    }
}
@media (max-width: 650px) {
    .hero_banner {
        min-height: 729px;
    }
}