.hero_banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    min-height: 780px;


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

        &.left {
            align-items: flex-start;
            text-align: left;
            min-height: 780px;
            height: 100%;
        }

        &.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: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: clamp(40px, 6vw, 40px);
            height: 100%;
            min-height: 780px;
            width: 100%;
            padding-top: 60px;
            padding-bottom: 60px;

            @media (min-width: 992px) {
                &.top {
                    align-items: flex-start;
                }

                &.middle {
                    align-items: center;
                }

                &.bottom {
                    align-items: flex-end;
                }
            }

            @media (max-width: 991px) {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                gap: clamp(20px, 4vw, 30px);
            }

            & .hero_banner_left {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: inherit;

                @media (max-width: 991px) {
                    flex: 0 0 auto;
                    width: 100%;
                    text-align: center;
                }
            }

            & .hero_banner_right {
                @media (max-width: 991px) {
                    width: 100%;
                    align-items: center;
                }
            }

            & .hero_banner_title,
            & h1, & h2, & h3 {
                line-height: 1.15;
                color: inherit;
                margin: 0;
                font-size: 60px;

                @media (max-width: 1024px) {
                    font-size: 40px;
                }
                @media (max-width: 768px) {
                    font-size: 30px;
                }
                @media (max-width: 480px) {
                    font-size: 26px;
                }
            }

            & .text_area {
                margin-bottom: clamp(24px, 4vw, 20px);
                max-width: 442px;
                & p {
                    font-size: clamp(1.8rem, 3vw, 2.2rem);
                    line-height: 1.6;
                    color: inherit;
                    margin: 0;
                }
            }

            & .btn_wrapper {
                display: flex;
                flex-direction: row;
                gap: clamp(16px, 2vw, 20px);
                flex-wrap: wrap;

                @media (max-width: 991px) {
                    justify-content: center;
                    width: 100%;
                }

                & .btn_primary,
                & .btn_secondary {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 16px;
                    min-width: 230px;
                    padding: 16px 32px;
                    min-height: 60px;
                    text-decoration: none;
                    font-weight: 600;
                    text-transform: uppercase;
                    transition: all 0.3s ease;
                    border-radius: 500px;
                    font-size: 14px;
                    height: 60px!important;
                    & span {
                        font-size: 14px;
                    }
                }

                & .btn_primary {
                    background: #FFEB01;
                    color: #0A3956;
                    
                    &:hover {
                        background: #002446; 
                        color: #fff;
                    }
                }

                & .btn_secondary {
                    background: transparent;
                    color: var(--white);
                    border: 2px solid var(--white);
                    
                    &:hover {
                        background: rgba(255, 255, 255, 0.1);
                    }
                }
            }
        }
    }
    & .cover_gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg,rgba(0, 0, 0, 0.2) 12%, rgba(0, 0, 0, 0.25) 91%);
        z-index: 2;
    } 
    & .cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 57%);
        z-index: 1;
    } 
	
	& 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;
    }
}