
  .banner-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../img/banner/banner4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .breadcrumb {
    border-radius: 6px;
    position: relative;
    bottom: -51px;
  }

  .breadcrumb a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
  }
  .breadcrumb a:hover{
    color:var(--rt-primary-color);
  }

  .breadcrumb a::after {
    content: "/";
    margin-left: 8px;
    color: #ddd;
  }

  .breadcrumb a:last-child::after {
    content: "";
  }
  .heading a, .heading {
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 2;
    margin: 0 8px;
    font-size:35px;
    text-shadow: 3px 1px 0 #000;
    font-weight:500;
    bottom:-40px;
    line-height: 1.1;
  }
  .heading a:hover{
    color:var(--rt-primary-color);
  }
  
  .main-div {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: left;
    text-align: left;
    bottom:-93px;
  }
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  /* ============ breadcrumb css=================== */
  
  @media only screen and (max-width: 600px) {
 .heading a, .heading {

    margin: 0;
    font-size: 28px;
   
    bottom: 0;
   
}

.banner-section {
  
    height: auto;
   
    padding: 60px 0;
}
}