.container_banner{
    padding: 0 2rem;
}
.hero_banner{
	background: var(--main_colour);
}
.background_rounded{
	background: var(--light_grey_tone);
	border-radius: 0 0 5rem 5rem;
    width: 100%;
    position:relative;
    display: flex;
    align-items: center;
}
.banner_small{
    height: 25vh;
}
.banner_medium{
    height: 40vh;
}
.banner_large{
    height: 60vh;
}
.center_title{
    position:relative;
    z-index:1;
}
.center_title_sidebar{
    top: unset;
    position: relative;
    z-index: 1;
}
.banner-text {
    color: var(--white_tone);  
    justify-items: anchor-center;
}
.background-shadow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}
.hero_img_background{
    object-fit: cover;
    width:100%;
    height:100%;
    top: 0;
    left:0;
    right:0;
    bottom:0;
    position:absolute;
    z-index: -1;
    border-radius: 5rem;
}
.banner-text h1 {
    font-size: 4rem;
    line-height: 1;
    margin: 1rem 0;
    color: #0300a7;
}
.banner-text h2{
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0.5rem 0;
    color: #0300a7;
}
@media(max-width:1300px){
    .banner-text h1{
        font-size: 2.5rem;
    }
    .homepage_hero{
        margin-top:-7rem;
        height:80vh;
    }
}
@media(max-width:798px){
    .banner-text{
        width:100%;
    }
}