section.banner__blog {
  display:flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner__blog--image{
  width: 100%;
  height: 500px;
  border-radius: 50px;
  margin-top: 50px;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.banner__blog--text {
  max-width: 70%;
}

.banner__blog--text h4 {
  color: #000000;
}

.banner_blog--text {
  width: 50%;
}
.breadcrumb{
  margin-bottom:50px;
}
.breadcrumb a:hover{
  text-decoration:none;
}

.banner__blog--cta{
  margin-top:0px;
}


{#Tablet Breakpoint#}
@media(max-width:992px){
  section.banner__blog{
    grid-template-columns: 1fr;
  }
}


{#Mobile Breakpoint#}
@media(max-width:767px){
  .banner__blog--text {
    max-width: 100%;
  }
  
  .banner__blog--image{
    height:300px;
  }
}